Test Failed
Pull Request — master (#444)
by Kiran
17:04
created
tests/test-Check_Shortcodes.php 2 patches
Indentation   +136 added lines, -136 removed lines patch added patch discarded remove patch
@@ -1,141 +1,141 @@
 block discarded – undo
1 1
 <?php
2 2
 class CheckShortcodes extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-        wp_set_current_user(1);
8
-
9
-    }
10
-
11
-    public function testHomeMapShortcode()
12
-    {
13
-        $output = do_shortcode('[gd_homepage_map width=100% height=300 scrollwheel=false]');
14
-        $this->assertContains( 'geodir-map-home-page', $output );
15
-    }
16
-
17
-    public function testListingMapShortcode()
18
-    {
19
-        $output = do_shortcode('[gd_listing_map width=100% height=300 scrollwheel=false sticky=true]');
20
-        $this->assertContains( 'geodir-map-listing-page', $output );
21
-    }
22
-
23
-    public function testListingSliderShortcode()
24
-    {
25
-        $output = do_shortcode('[gd_listing_slider post_number=5 category=3 slideshow=true show_featured_only=true]');
26
-        $this->assertContains( 'geodir_widget_carousel', $output );
27
-    }
28
-
29
-    public function testLoginBoxShortcode()
30
-    {
31
-        $output = do_shortcode('[gd_login_box]');
32
-        $this->assertContains( 'geodir-loginbox-list', $output );
33
-    }
34
-
35
-    public function testPopPostCatShortcode()
36
-    {
37
-        global $geodir_post_type;
38
-        $geodir_post_type = 'gd_place';
39
-        $output = do_shortcode('[gd_popular_post_category category_limit=30]');
40
-        $this->assertContains( 'geodir-popular-cat-list', $output );
41
-    }
42
-
43
-    public function testPopPostViewShortcode()
44
-    {
45
-        $output = do_shortcode('[gd_popular_post_view category=3 layout=5 add_location_filter=true character_count=0 show_featured_only=true]');
46
-        $this->assertContains( 'geodir_category_list_view', $output );
47
-    }
48
-
49
-    public function testRecentReviewsShortcode()
50
-    {
51
-        $query_args = array(
52
-            'post_status' => 'publish',
53
-            'post_type' => 'gd_place',
54
-            'posts_per_page' => 1,
55
-        );
56
-
57
-        $all_posts = new WP_Query( $query_args );
58
-        $post_id = null;
59
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
60
-            $post_id = get_the_ID();
61
-        endwhile;
62
-
63
-        $this->assertTrue(is_int($post_id));
64
-
65
-        $time = current_time('mysql');
66
-
67
-        $data = array(
68
-            'comment_post_ID' => $post_id,
69
-            'comment_author' => 'admin',
70
-            'comment_author_email' => '[email protected]',
71
-            'comment_author_url' => 'http://wpgeodirectory.com',
72
-            'comment_content' => 'content here testtcc',
73
-            'comment_type' => '',
74
-            'comment_parent' => 0,
75
-            'user_id' => 1,
76
-            'comment_author_IP' => '127.0.0.1',
77
-            'comment_agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)',
78
-            'comment_date' => $time,
79
-            'comment_approved' => 1,
80
-        );
81
-
82
-        $comment_id = wp_insert_comment($data);
83
-
84
-        $_REQUEST['geodir_overallrating'] = 5.0;
85
-        geodir_save_rating($comment_id);
86
-
87
-        $output = do_shortcode('[gd_recent_reviews count=5]');
88
-        $this->assertContains( 'geodir_sc_recent_reviews', $output );
89
-    }
90
-
91
-    public function testRelatedListingsShortcode()
92
-    {
93
-        $query_args = array(
94
-            'post_status' => 'publish',
95
-            'post_type' => 'gd_place',
96
-            'posts_per_page' => 1,
97
-        );
98
-
99
-        $all_posts = new WP_Query( $query_args );
100
-        $post_id = null;
101
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
102
-            $post_id = get_the_ID();
103
-            global $post;
104
-            $post =  geodir_get_post_info($post_id);
105
-            setup_postdata($post);
106
-            $output = do_shortcode('[gd_related_listings relate_to=category layout=3 add_location_filter=0 list_sort=featured character_count=0]');
107
-            $this->assertContains( 'geodir_location_listing', $output );
108
-        endwhile;
109
-
110
-        $this->assertTrue(is_int($post_id));
111
-
112
-    }
113
-
114
-    public function testListingsShortcode()
115
-    {
116
-        $output = do_shortcode('[gd_listings post_type="gd_place" category="1,3" post_number="10" list_sort="high_review"]');
117
-        $this->assertContains( 'geodir-sc-gd-listings', $output );
118
-    }
119
-
120
-    public function texstBestOfWidgetShortcode()
121
-    {
122
-        $template = geodir_plugin_path() . '/geodirectory-widgets/geodirectory_bestof_widget.php';
123
-        include_once($template);
124
-
125
-        $output = do_shortcode('[gd_bestof_widget title="widget title" post_type=gd_hotel post_limit=5 categ_limit=6 character_count=50 use_viewing_post_type=true add_location_filter=true tab_layout=bestof-tabs-as-dropdown]');
126
-        $this->assertContains( 'geodir_bestof_widget', $output );
127
-    }
128
-
129
-    public function testAddListingShortcode()
130
-    {
131
-        $_REQUEST['listing_type'] = 'gd_place';
132
-        $output = do_shortcode('[gd_add_listing listing_type=gd_place login_msg="Please register and login to submit listings" show_login=true]');
133
-        $this->assertContains( 'geodir-add-listing-submit', $output );
134
-    }
135
-
136
-    public function tearDown()
137
-    {
138
-        parent::tearDown();
139
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+		wp_set_current_user(1);
8
+
9
+	}
10
+
11
+	public function testHomeMapShortcode()
12
+	{
13
+		$output = do_shortcode('[gd_homepage_map width=100% height=300 scrollwheel=false]');
14
+		$this->assertContains( 'geodir-map-home-page', $output );
15
+	}
16
+
17
+	public function testListingMapShortcode()
18
+	{
19
+		$output = do_shortcode('[gd_listing_map width=100% height=300 scrollwheel=false sticky=true]');
20
+		$this->assertContains( 'geodir-map-listing-page', $output );
21
+	}
22
+
23
+	public function testListingSliderShortcode()
24
+	{
25
+		$output = do_shortcode('[gd_listing_slider post_number=5 category=3 slideshow=true show_featured_only=true]');
26
+		$this->assertContains( 'geodir_widget_carousel', $output );
27
+	}
28
+
29
+	public function testLoginBoxShortcode()
30
+	{
31
+		$output = do_shortcode('[gd_login_box]');
32
+		$this->assertContains( 'geodir-loginbox-list', $output );
33
+	}
34
+
35
+	public function testPopPostCatShortcode()
36
+	{
37
+		global $geodir_post_type;
38
+		$geodir_post_type = 'gd_place';
39
+		$output = do_shortcode('[gd_popular_post_category category_limit=30]');
40
+		$this->assertContains( 'geodir-popular-cat-list', $output );
41
+	}
42
+
43
+	public function testPopPostViewShortcode()
44
+	{
45
+		$output = do_shortcode('[gd_popular_post_view category=3 layout=5 add_location_filter=true character_count=0 show_featured_only=true]');
46
+		$this->assertContains( 'geodir_category_list_view', $output );
47
+	}
48
+
49
+	public function testRecentReviewsShortcode()
50
+	{
51
+		$query_args = array(
52
+			'post_status' => 'publish',
53
+			'post_type' => 'gd_place',
54
+			'posts_per_page' => 1,
55
+		);
56
+
57
+		$all_posts = new WP_Query( $query_args );
58
+		$post_id = null;
59
+		while ( $all_posts->have_posts() ) : $all_posts->the_post();
60
+			$post_id = get_the_ID();
61
+		endwhile;
62
+
63
+		$this->assertTrue(is_int($post_id));
64
+
65
+		$time = current_time('mysql');
66
+
67
+		$data = array(
68
+			'comment_post_ID' => $post_id,
69
+			'comment_author' => 'admin',
70
+			'comment_author_email' => '[email protected]',
71
+			'comment_author_url' => 'http://wpgeodirectory.com',
72
+			'comment_content' => 'content here testtcc',
73
+			'comment_type' => '',
74
+			'comment_parent' => 0,
75
+			'user_id' => 1,
76
+			'comment_author_IP' => '127.0.0.1',
77
+			'comment_agent' => 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10 (.NET CLR 3.5.30729)',
78
+			'comment_date' => $time,
79
+			'comment_approved' => 1,
80
+		);
81
+
82
+		$comment_id = wp_insert_comment($data);
83
+
84
+		$_REQUEST['geodir_overallrating'] = 5.0;
85
+		geodir_save_rating($comment_id);
86
+
87
+		$output = do_shortcode('[gd_recent_reviews count=5]');
88
+		$this->assertContains( 'geodir_sc_recent_reviews', $output );
89
+	}
90
+
91
+	public function testRelatedListingsShortcode()
92
+	{
93
+		$query_args = array(
94
+			'post_status' => 'publish',
95
+			'post_type' => 'gd_place',
96
+			'posts_per_page' => 1,
97
+		);
98
+
99
+		$all_posts = new WP_Query( $query_args );
100
+		$post_id = null;
101
+		while ( $all_posts->have_posts() ) : $all_posts->the_post();
102
+			$post_id = get_the_ID();
103
+			global $post;
104
+			$post =  geodir_get_post_info($post_id);
105
+			setup_postdata($post);
106
+			$output = do_shortcode('[gd_related_listings relate_to=category layout=3 add_location_filter=0 list_sort=featured character_count=0]');
107
+			$this->assertContains( 'geodir_location_listing', $output );
108
+		endwhile;
109
+
110
+		$this->assertTrue(is_int($post_id));
111
+
112
+	}
113
+
114
+	public function testListingsShortcode()
115
+	{
116
+		$output = do_shortcode('[gd_listings post_type="gd_place" category="1,3" post_number="10" list_sort="high_review"]');
117
+		$this->assertContains( 'geodir-sc-gd-listings', $output );
118
+	}
119
+
120
+	public function texstBestOfWidgetShortcode()
121
+	{
122
+		$template = geodir_plugin_path() . '/geodirectory-widgets/geodirectory_bestof_widget.php';
123
+		include_once($template);
124
+
125
+		$output = do_shortcode('[gd_bestof_widget title="widget title" post_type=gd_hotel post_limit=5 categ_limit=6 character_count=50 use_viewing_post_type=true add_location_filter=true tab_layout=bestof-tabs-as-dropdown]');
126
+		$this->assertContains( 'geodir_bestof_widget', $output );
127
+	}
128
+
129
+	public function testAddListingShortcode()
130
+	{
131
+		$_REQUEST['listing_type'] = 'gd_place';
132
+		$output = do_shortcode('[gd_add_listing listing_type=gd_place login_msg="Please register and login to submit listings" show_login=true]');
133
+		$this->assertContains( 'geodir-add-listing-submit', $output );
134
+	}
135
+
136
+	public function tearDown()
137
+	{
138
+		parent::tearDown();
139
+	}
140 140
 }
141 141
 ?>
142 142
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -11,25 +11,25 @@  discard block
 block discarded – undo
11 11
     public function testHomeMapShortcode()
12 12
     {
13 13
         $output = do_shortcode('[gd_homepage_map width=100% height=300 scrollwheel=false]');
14
-        $this->assertContains( 'geodir-map-home-page', $output );
14
+        $this->assertContains('geodir-map-home-page', $output);
15 15
     }
16 16
 
17 17
     public function testListingMapShortcode()
18 18
     {
19 19
         $output = do_shortcode('[gd_listing_map width=100% height=300 scrollwheel=false sticky=true]');
20
-        $this->assertContains( 'geodir-map-listing-page', $output );
20
+        $this->assertContains('geodir-map-listing-page', $output);
21 21
     }
22 22
 
23 23
     public function testListingSliderShortcode()
24 24
     {
25 25
         $output = do_shortcode('[gd_listing_slider post_number=5 category=3 slideshow=true show_featured_only=true]');
26
-        $this->assertContains( 'geodir_widget_carousel', $output );
26
+        $this->assertContains('geodir_widget_carousel', $output);
27 27
     }
28 28
 
29 29
     public function testLoginBoxShortcode()
30 30
     {
31 31
         $output = do_shortcode('[gd_login_box]');
32
-        $this->assertContains( 'geodir-loginbox-list', $output );
32
+        $this->assertContains('geodir-loginbox-list', $output);
33 33
     }
34 34
 
35 35
     public function testPopPostCatShortcode()
@@ -37,13 +37,13 @@  discard block
 block discarded – undo
37 37
         global $geodir_post_type;
38 38
         $geodir_post_type = 'gd_place';
39 39
         $output = do_shortcode('[gd_popular_post_category category_limit=30]');
40
-        $this->assertContains( 'geodir-popular-cat-list', $output );
40
+        $this->assertContains('geodir-popular-cat-list', $output);
41 41
     }
42 42
 
43 43
     public function testPopPostViewShortcode()
44 44
     {
45 45
         $output = do_shortcode('[gd_popular_post_view category=3 layout=5 add_location_filter=true character_count=0 show_featured_only=true]');
46
-        $this->assertContains( 'geodir_category_list_view', $output );
46
+        $this->assertContains('geodir_category_list_view', $output);
47 47
     }
48 48
 
49 49
     public function testRecentReviewsShortcode()
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
             'posts_per_page' => 1,
55 55
         );
56 56
 
57
-        $all_posts = new WP_Query( $query_args );
57
+        $all_posts = new WP_Query($query_args);
58 58
         $post_id = null;
59
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
59
+        while ($all_posts->have_posts()) : $all_posts->the_post();
60 60
             $post_id = get_the_ID();
61 61
         endwhile;
62 62
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         geodir_save_rating($comment_id);
86 86
 
87 87
         $output = do_shortcode('[gd_recent_reviews count=5]');
88
-        $this->assertContains( 'geodir_sc_recent_reviews', $output );
88
+        $this->assertContains('geodir_sc_recent_reviews', $output);
89 89
     }
90 90
 
91 91
     public function testRelatedListingsShortcode()
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
             'posts_per_page' => 1,
97 97
         );
98 98
 
99
-        $all_posts = new WP_Query( $query_args );
99
+        $all_posts = new WP_Query($query_args);
100 100
         $post_id = null;
101
-        while ( $all_posts->have_posts() ) : $all_posts->the_post();
101
+        while ($all_posts->have_posts()) : $all_posts->the_post();
102 102
             $post_id = get_the_ID();
103 103
             global $post;
104
-            $post =  geodir_get_post_info($post_id);
104
+            $post = geodir_get_post_info($post_id);
105 105
             setup_postdata($post);
106 106
             $output = do_shortcode('[gd_related_listings relate_to=category layout=3 add_location_filter=0 list_sort=featured character_count=0]');
107
-            $this->assertContains( 'geodir_location_listing', $output );
107
+            $this->assertContains('geodir_location_listing', $output);
108 108
         endwhile;
109 109
 
110 110
         $this->assertTrue(is_int($post_id));
@@ -114,23 +114,23 @@  discard block
 block discarded – undo
114 114
     public function testListingsShortcode()
115 115
     {
116 116
         $output = do_shortcode('[gd_listings post_type="gd_place" category="1,3" post_number="10" list_sort="high_review"]');
117
-        $this->assertContains( 'geodir-sc-gd-listings', $output );
117
+        $this->assertContains('geodir-sc-gd-listings', $output);
118 118
     }
119 119
 
120 120
     public function texstBestOfWidgetShortcode()
121 121
     {
122
-        $template = geodir_plugin_path() . '/geodirectory-widgets/geodirectory_bestof_widget.php';
122
+        $template = geodir_plugin_path().'/geodirectory-widgets/geodirectory_bestof_widget.php';
123 123
         include_once($template);
124 124
 
125 125
         $output = do_shortcode('[gd_bestof_widget title="widget title" post_type=gd_hotel post_limit=5 categ_limit=6 character_count=50 use_viewing_post_type=true add_location_filter=true tab_layout=bestof-tabs-as-dropdown]');
126
-        $this->assertContains( 'geodir_bestof_widget', $output );
126
+        $this->assertContains('geodir_bestof_widget', $output);
127 127
     }
128 128
 
129 129
     public function testAddListingShortcode()
130 130
     {
131 131
         $_REQUEST['listing_type'] = 'gd_place';
132 132
         $output = do_shortcode('[gd_add_listing listing_type=gd_place login_msg="Please register and login to submit listings" show_login=true]');
133
-        $this->assertContains( 'geodir-add-listing-submit', $output );
133
+        $this->assertContains('geodir-add-listing-submit', $output);
134 134
     }
135 135
 
136 136
     public function tearDown()
Please login to merge, or discard this patch.
tests/test-Author_Page.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -1,53 +1,53 @@
 block discarded – undo
1 1
 <?php
2 2
 class AuthorPage extends WP_UnitTestCase
3 3
 {
4
-    public function setUp()
5
-    {
6
-        parent::setUp();
7
-    }
4
+	public function setUp()
5
+	{
6
+		parent::setUp();
7
+	}
8 8
 
9
-    public function testAuthorPage()
10
-    {
11
-        global $current_user;
9
+	public function testAuthorPage()
10
+	{
11
+		global $current_user;
12 12
 
13
-        $user_id = $current_user->ID;
13
+		$user_id = $current_user->ID;
14 14
 
15 15
 
16 16
 
17
-        // Add listing
17
+		// Add listing
18 18
 
19
-        $args = array(
20
-            'listing_type' => 'gd_place',
21
-            'post_title' => 'Test Listing Title 2',
22
-            'post_desc' => 'Test Desc',
23
-            'post_tags' => 'test1,test2',
24
-            'post_address' => 'New York City Hall',
25
-            'post_zip' => '10007',
26
-            'post_mapview' => 'ROADMAP',
27
-            'post_mapzoom' => '10',
28
-            'geodir_timing' => '10.00 am to 6 pm every day',
29
-            'geodir_contact' => '1234567890',
30
-            'geodir_email' => '[email protected]',
31
-            'geodir_website' => 'http://test.com',
32
-            'geodir_twitter' => 'http://twitter.com/test',
33
-            'geodir_facebook' => 'http://facebook.com/test',
34
-            'geodir_special_offers' => 'Test offer'
35
-        );
36
-        $post_id = geodir_save_listing($args, true);
19
+		$args = array(
20
+			'listing_type' => 'gd_place',
21
+			'post_title' => 'Test Listing Title 2',
22
+			'post_desc' => 'Test Desc',
23
+			'post_tags' => 'test1,test2',
24
+			'post_address' => 'New York City Hall',
25
+			'post_zip' => '10007',
26
+			'post_mapview' => 'ROADMAP',
27
+			'post_mapzoom' => '10',
28
+			'geodir_timing' => '10.00 am to 6 pm every day',
29
+			'geodir_contact' => '1234567890',
30
+			'geodir_email' => '[email protected]',
31
+			'geodir_website' => 'http://test.com',
32
+			'geodir_twitter' => 'http://twitter.com/test',
33
+			'geodir_facebook' => 'http://facebook.com/test',
34
+			'geodir_special_offers' => 'Test offer'
35
+		);
36
+		$post_id = geodir_save_listing($args, true);
37 37
 
38
-        $this->assertTrue(is_int($post_id));
38
+		$this->assertTrue(is_int($post_id));
39 39
 
40
-        $count = count_user_posts( $user_id, "gd_place"  );
40
+		$count = count_user_posts( $user_id, "gd_place"  );
41 41
 
42
-        $this->assertTrue(is_int((int) $count));
42
+		$this->assertTrue(is_int((int) $count));
43 43
 
44 44
 
45 45
 
46
-    }
46
+	}
47 47
 
48
-    public function tearDown()
49
-    {
50
-        parent::tearDown();
51
-    }
48
+	public function tearDown()
49
+	{
50
+		parent::tearDown();
51
+	}
52 52
 }
53 53
 ?>
54 54
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
         $this->assertTrue(is_int($post_id));
39 39
 
40
-        $count = count_user_posts( $user_id, "gd_place"  );
40
+        $count = count_user_posts($user_id, "gd_place");
41 41
 
42 42
         $this->assertTrue(is_int((int) $count));
43 43
 
Please login to merge, or discard this patch.
language.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 define('LISTING_DETAILS_TEXT', __('Enter Listing Details', 'geodirectory'));
42 42
 
43 43
 define('PLACE_TITLE_TEXT', __('Listing Title', 'geodirectory')); // depreciated @since 1.6.3
44
-define('PLACE_DESC_TEXT', __('Listing Description', 'geodirectory'));// depreciated @since 1.6.3
44
+define('PLACE_DESC_TEXT', __('Listing Description', 'geodirectory')); // depreciated @since 1.6.3
45 45
 
46 46
 define('LISTING_ADDRESS_TEXT', __('Listing Address:', 'geodirectory'));
47 47
 define('PLACE_ADDRESS', __('Address:', 'geodirectory'));
Please login to merge, or discard this patch.
geodirectory-templates/listing-detail.php 2 patches
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 // We are submitting iframes etc so we turn this off to allow them to show on preview.
13 13
 if(geodir_is_page('preview')){
14
-    header("X-XSS-Protection: 0");
14
+	header("X-XSS-Protection: 0");
15 15
 }
16 16
 
17 17
 
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 
39 39
 ###### SIDEBAR ON LEFT ######
40 40
 if (get_option('geodir_detail_sidebar_left_section')) {
41
-    /**
42
-     * Adds the details page sidebar to the details template page.
43
-     *
44
-     * @since 1.1.0
45
-     */
46
-    do_action('geodir_detail_sidebar');
41
+	/**
42
+	 * Adds the details page sidebar to the details template page.
43
+	 *
44
+	 * @since 1.1.0
45
+	 */
46
+	do_action('geodir_detail_sidebar');
47 47
 }
48 48
 
49 49
 ###### MAIN CONTENT WRAPPERS OPEN ######
@@ -72,29 +72,29 @@  discard block
 block discarded – undo
72 72
 // this call the main page content
73 73
 global $preview;
74 74
 if (have_posts() && !$preview) {
75
-    the_post();
76
-    global $post, $post_images;
77
-    /**
78
-     * Calls the details page main content on the details template page.
79
-     *
80
-     * @since 1.1.0
81
-     * @param object $post The current post object.
82
-     */
83
-    do_action('geodir_details_main_content', $post);
75
+	the_post();
76
+	global $post, $post_images;
77
+	/**
78
+	 * Calls the details page main content on the details template page.
79
+	 *
80
+	 * @since 1.1.0
81
+	 * @param object $post The current post object.
82
+	 */
83
+	do_action('geodir_details_main_content', $post);
84 84
 } elseif ($preview) {
85
-    /**
86
-     * Called on the details page if the page is being previewed.
87
-     *
88
-     * This sets the value of `$post` to the preview values before the main content is called.
89
-     *
90
-     * @since 1.1.0
91
-     */
92
-    do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values
93
-    if (defined( 'GD_TESTING_MODE' )) {
94
-        global $post;
95
-    }
96
-    /** This action is documented in geodirectory-templates/listing-detail.php */
97
-    do_action('geodir_details_main_content', $post);
85
+	/**
86
+	 * Called on the details page if the page is being previewed.
87
+	 *
88
+	 * This sets the value of `$post` to the preview values before the main content is called.
89
+	 *
90
+	 * @since 1.1.0
91
+	 */
92
+	do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values
93
+	if (defined( 'GD_TESTING_MODE' )) {
94
+		global $post;
95
+	}
96
+	/** This action is documented in geodirectory-templates/listing-detail.php */
97
+	do_action('geodir_details_main_content', $post);
98 98
 }
99 99
 
100 100
 /** This action is documented in geodirectory-templates/geodir-home.php */
@@ -118,8 +118,8 @@  discard block
 block discarded – undo
118 118
 
119 119
 ###### SIDEBAR ON RIGHT ######
120 120
 if (!get_option('geodir_detail_sidebar_left_section')) {
121
-    /** This action is documented in geodirectory-templates/listing-detail.php */
122
-    do_action('geodir_detail_sidebar');
121
+	/** This action is documented in geodirectory-templates/listing-detail.php */
122
+	do_action('geodir_detail_sidebar');
123 123
 }
124 124
 
125 125
 
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
 
12 12
 // We are submitting iframes etc so we turn this off to allow them to show on preview.
13
-if(geodir_is_page('preview')){
13
+if (geodir_is_page('preview')) {
14 14
     header("X-XSS-Protection: 0");
15 15
 }
16 16
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
  * @param string $itemtype The itemtype value of the HTML element.
64 64
  * @see 'geodir_article_close'
65 65
  */
66
-do_action('geodir_article_open', 'details-page', 'post-' . get_the_ID(), get_post_class(), '');
66
+do_action('geodir_article_open', 'details-page', 'post-'.get_the_ID(), get_post_class(), '');
67 67
 
68 68
 ###### MAIN CONTENT ######
69 69
 /** This action is documented in geodirectory-templates/geodir-home.php */
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * @since 1.1.0
91 91
      */
92 92
     do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values
93
-    if (defined( 'GD_TESTING_MODE' )) {
93
+    if (defined('GD_TESTING_MODE')) {
94 94
         global $post;
95 95
     }
96 96
     /** This action is documented in geodirectory-templates/listing-detail.php */
Please login to merge, or discard this patch.
geodirectory-templates/popup-forms.php 2 patches
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@  discard block
 block discarded – undo
19 19
  * @param int $post_id The post id requested by the popup.
20 20
  * @param object $post_info The post object requested by the popup.
21 21
  */
22
-do_action('geodir_popup_forms_template_start',$post_id,$post_info);
22
+do_action('geodir_popup_forms_template_start', $post_id, $post_info);
23 23
 
24 24
 if ($_REQUEST['popuptype'] == 'b_sendtofriend') { ?>
25 25
 
26 26
     <div id="basic-modal-content" class="clearfix">
27 27
         <form name="send_to_frnd" id="send_to_frnd" action="<?php echo get_permalink($post_info->ID); ?>" method="post">
28 28
             <input type="hidden" name="sendact" value="email_frnd"/>
29
-            <input type="hidden" id="send_to_Frnd_pid" name="pid" value="<?php echo $post_info->ID;?>"/>
29
+            <input type="hidden" id="send_to_Frnd_pid" name="pid" value="<?php echo $post_info->ID; ?>"/>
30 30
 
31 31
             <h3><?php
32 32
                 /**
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                  * @since 1.0.0
36 36
                  * @param string $title The title for the form, defaults to global `SEND_TO_FRIEND` text.
37 37
                  */
38
-                echo apply_filters('geodir_send_to_friend_page_title', SEND_TO_FRIEND);?></h3>
38
+                echo apply_filters('geodir_send_to_friend_page_title', SEND_TO_FRIEND); ?></h3>
39 39
 
40 40
             <p id="reply_send_success" class="sucess_msg" style="display:none;"></p>
41 41
             <?php
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
              * @since 1.0.0
46 46
              * @param string $field The field name the actions is called before.
47 47
              */
48
-            do_action('geodir_before_stf_form_field', 'to_name');?>
48
+            do_action('geodir_before_stf_form_field', 'to_name'); ?>
49 49
             <div class="row clearfix">
50
-                    <input required field_type="text" name="to_name" id="to_name" type="text" value="" placeholder="<?php _e('Friend Name', 'geodirectory');?>"/>
50
+                    <input required field_type="text" name="to_name" id="to_name" type="text" value="" placeholder="<?php _e('Friend Name', 'geodirectory'); ?>"/>
51 51
             </div>
52 52
             <?php
53 53
             /**
@@ -56,55 +56,55 @@  discard block
 block discarded – undo
56 56
              * @since 1.0.0
57 57
              * @param string $field The field name the actions is called after.
58 58
              */
59
-            do_action('geodir_after_stf_form_field', 'to_name');?>
59
+            do_action('geodir_after_stf_form_field', 'to_name'); ?>
60 60
             <?php
61 61
             /** This action is documented in geodirectory-templates/popup-forms.php */
62
-            do_action('geodir_before_stf_form_field', 'to_email');?>
62
+            do_action('geodir_before_stf_form_field', 'to_email'); ?>
63 63
             <div class="row  clearfix">
64
-                    <input required field_type="email" name="to_email" id="to_email" type="email" value="" placeholder="<?php _e('Friend Email', 'geodirectory');?>"/>
64
+                    <input required field_type="email" name="to_email" id="to_email" type="email" value="" placeholder="<?php _e('Friend Email', 'geodirectory'); ?>"/>
65 65
             </div>
66 66
             <?php
67 67
             /** This action is documented in geodirectory-templates/popup-forms.php */
68
-            do_action('geodir_after_stf_form_field', 'to_email');?>
68
+            do_action('geodir_after_stf_form_field', 'to_email'); ?>
69 69
             <?php
70 70
             /** This action is documented in geodirectory-templates/popup-forms.php */
71
-            do_action('geodir_before_stf_form_field', 'yourname');?>
71
+            do_action('geodir_before_stf_form_field', 'yourname'); ?>
72 72
             <div class="row  clearfix">
73
-                    <input required field_type="text" name="yourname" id="yourname" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory');?>"/>
73
+                    <input required field_type="text" name="yourname" id="yourname" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory'); ?>"/>
74 74
             </div>
75 75
             <?php
76 76
             /** This action is documented in geodirectory-templates/popup-forms.php */
77
-            do_action('geodir_after_stf_form_field', 'yourname');?>
77
+            do_action('geodir_after_stf_form_field', 'yourname'); ?>
78 78
             <?php
79 79
             /** This action is documented in geodirectory-templates/popup-forms.php */
80
-            do_action('geodir_before_stf_form_field', 'youremail');?>
80
+            do_action('geodir_before_stf_form_field', 'youremail'); ?>
81 81
             <div class="row  clearfix">
82
-                    <input required field_type="email" name="youremail" id="youremail" type="email" value="" placeholder="<?php _e('Your Email', 'geodirectory');?>"/>
82
+                    <input required field_type="email" name="youremail" id="youremail" type="email" value="" placeholder="<?php _e('Your Email', 'geodirectory'); ?>"/>
83 83
             </div>
84 84
             <?php
85 85
             /** This action is documented in geodirectory-templates/popup-forms.php */
86
-            do_action('geodir_after_stf_form_field', 'youremail');?>
86
+            do_action('geodir_after_stf_form_field', 'youremail'); ?>
87 87
             <?php
88 88
             /** This action is documented in geodirectory-templates/popup-forms.php */
89
-            do_action('geodir_before_stf_form_field', 'frnd_subject');?>
89
+            do_action('geodir_before_stf_form_field', 'frnd_subject'); ?>
90 90
             <div class="row  clearfix">
91 91
                     <input required field_type="text" name="frnd_subject"
92
-                           value="<?php echo __('About', 'geodirectory') . ' ' . $post_info->post_title;?>"
93
-                           id="frnd_subject" type="text"  placeholder="<?php _e('Subject', 'geodirectory');?>"/>
92
+                           value="<?php echo __('About', 'geodirectory').' '.$post_info->post_title; ?>"
93
+                           id="frnd_subject" type="text"  placeholder="<?php _e('Subject', 'geodirectory'); ?>"/>
94 94
             </div>
95 95
             <?php
96 96
             /** This action is documented in geodirectory-templates/popup-forms.php */
97
-            do_action('geodir_after_stf_form_field', 'frnd_subject');?>
97
+            do_action('geodir_after_stf_form_field', 'frnd_subject'); ?>
98 98
             <?php
99 99
             /** This action is documented in geodirectory-templates/popup-forms.php */
100
-            do_action('geodir_before_stf_form_field', 'frnd_comments');?>
100
+            do_action('geodir_before_stf_form_field', 'frnd_comments'); ?>
101 101
             <div class="row  clearfix">
102 102
                     <textarea required field_type="textarea" name="frnd_comments" id="frnd_comments" cols=""
103
-                              rows="" placeholder="<?php echo SEND_TO_FRIEND_SAMPLE_CONTENT;?>"><?php echo SEND_TO_FRIEND_SAMPLE_CONTENT;?></textarea>
103
+                              rows="" placeholder="<?php echo SEND_TO_FRIEND_SAMPLE_CONTENT; ?>"><?php echo SEND_TO_FRIEND_SAMPLE_CONTENT; ?></textarea>
104 104
             </div>
105 105
             <?php
106 106
             /** This action is documented in geodirectory-templates/popup-forms.php */
107
-            do_action('geodir_after_stf_form_field', 'frnd_comments');?>
107
+            do_action('geodir_after_stf_form_field', 'frnd_comments'); ?>
108 108
             <?php if (function_exists('geodir_get_captch')) {
109 109
                 geodir_get_captch('-1');
110 110
             }?>
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         <form method="post" name="agt_mail_agent" id="agt_mail_agent"
119 119
               action="<?php echo get_permalink($post_info->ID); ?>">
120 120
             <input type="hidden" name="sendact" value="send_inqury"/>
121
-            <input type="hidden" name="pid" value="<?php echo $post_info->ID;?>"/>
121
+            <input type="hidden" name="pid" value="<?php echo $post_info->ID; ?>"/>
122 122
 
123 123
             <h3><?php
124 124
                 /**
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                  * @since 1.0.0
128 128
                  * @param string $title The title for the form, defaults to global `SEND_INQUIRY` text.
129 129
                  */
130
-                echo apply_filters('geodir_send_inquiry_page_title', SEND_INQUIRY);?> </h3>
130
+                echo apply_filters('geodir_send_inquiry_page_title', SEND_INQUIRY); ?> </h3>
131 131
 
132 132
             <p id="inquiry_send_success" class="sucess_msg" style="display:none;"></p>
133 133
             <?php
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
              * @since 1.0.0
138 138
              * @param string $field The field name the actions is called before.
139 139
              */
140
-            do_action('geodir_before_inquiry_form_field', 'inq_name');?>
140
+            do_action('geodir_before_inquiry_form_field', 'inq_name'); ?>
141 141
             <div class="row  clearfix">
142
-                    <input required field_type="text" name="inq_name" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory');?>"/>
142
+                    <input required field_type="text" name="inq_name" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory'); ?>"/>
143 143
             </div>
144 144
             <?php
145 145
             /**
@@ -148,36 +148,36 @@  discard block
 block discarded – undo
148 148
              * @since 1.0.0
149 149
              * @param string $field The field name the actions is called after.
150 150
              */
151
-            do_action('geodir_after_inquiry_form_field', 'inq_name');?>
151
+            do_action('geodir_after_inquiry_form_field', 'inq_name'); ?>
152 152
             <?php
153 153
             /** This action is documented in geodirectory-templates/popup-forms.php */
154
-            do_action('geodir_before_inquiry_form_field', 'inq_email');?>
154
+            do_action('geodir_before_inquiry_form_field', 'inq_email'); ?>
155 155
             <div class="row  clearfix">
156
-                    <input required field_type="email" name="inq_email" type="email" value="" placeholder="<?php _e('Email', 'geodirectory');?>"/>
156
+                    <input required field_type="email" name="inq_email" type="email" value="" placeholder="<?php _e('Email', 'geodirectory'); ?>"/>
157 157
             </div>
158 158
             <?php
159 159
             /** This action is documented in geodirectory-templates/popup-forms.php */
160
-            do_action('geodir_after_inquiry_form_field', 'inq_email');?>
160
+            do_action('geodir_after_inquiry_form_field', 'inq_email'); ?>
161 161
             <?php
162 162
             /** This action is documented in geodirectory-templates/popup-forms.php */
163
-            do_action('geodir_before_inquiry_form_field', 'inq_phone');?>
163
+            do_action('geodir_before_inquiry_form_field', 'inq_phone'); ?>
164 164
             <div class="row  clearfix">
165
-                    <input name="inq_phone" id="agt_mail_phone" type="text" value="" placeholder="<?php _e('Phone number', 'geodirectory');?>"/>
165
+                    <input name="inq_phone" id="agt_mail_phone" type="text" value="" placeholder="<?php _e('Phone number', 'geodirectory'); ?>"/>
166 166
             </div>
167 167
             <?php
168 168
             /** This action is documented in geodirectory-templates/popup-forms.php */
169
-            do_action('geodir_after_inquiry_form_field', 'inq_phone');?>
169
+            do_action('geodir_after_inquiry_form_field', 'inq_phone'); ?>
170 170
             <?php
171 171
             /** This action is documented in geodirectory-templates/popup-forms.php */
172
-            do_action('geodir_before_inquiry_form_field', 'inq_msg');?>
172
+            do_action('geodir_before_inquiry_form_field', 'inq_msg'); ?>
173 173
             <div class="row  clearfix">
174 174
                     <textarea required field_type="textarea" name="inq_msg" cols=""
175
-                              rows="" placeholder="<?php echo SEND_INQUIRY_SAMPLE_CONTENT;?>"></textarea>
175
+                              rows="" placeholder="<?php echo SEND_INQUIRY_SAMPLE_CONTENT; ?>"></textarea>
176 176
             </div>
177 177
             <?php
178 178
             /** This action is documented in geodirectory-templates/popup-forms.php */
179
-            do_action('geodir_after_inquiry_form_field', 'inq_msg');?>
180
-            <input name="Send" type="submit" value="<?php _e('Send', 'geodirectory');?>"
179
+            do_action('geodir_after_inquiry_form_field', 'inq_msg'); ?>
180
+            <input name="Send" type="submit" value="<?php _e('Send', 'geodirectory'); ?>"
181 181
                    class="button clearfix"/>
182 182
         </form>
183 183
     </div> <?php
Please login to merge, or discard this patch.
Indentation   +76 added lines, -76 removed lines patch added patch discarded remove patch
@@ -29,85 +29,85 @@  discard block
 block discarded – undo
29 29
             <input type="hidden" id="send_to_Frnd_pid" name="pid" value="<?php echo $post_info->ID;?>"/>
30 30
 
31 31
             <h3><?php
32
-                /**
33
-                 * Filter the title for the send to friend popup form.
34
-                 *
35
-                 * @since 1.0.0
36
-                 * @param string $title The title for the form, defaults to global `SEND_TO_FRIEND` text.
37
-                 */
38
-                echo apply_filters('geodir_send_to_friend_page_title', SEND_TO_FRIEND);?></h3>
32
+				/**
33
+				 * Filter the title for the send to friend popup form.
34
+				 *
35
+				 * @since 1.0.0
36
+				 * @param string $title The title for the form, defaults to global `SEND_TO_FRIEND` text.
37
+				 */
38
+				echo apply_filters('geodir_send_to_friend_page_title', SEND_TO_FRIEND);?></h3>
39 39
 
40 40
             <p id="reply_send_success" class="sucess_msg" style="display:none;"></p>
41 41
             <?php
42
-            /**
43
-             * Called before each field in the send to friend popup template.
44
-             *
45
-             * @since 1.0.0
46
-             * @param string $field The field name the actions is called before.
47
-             */
48
-            do_action('geodir_before_stf_form_field', 'to_name');?>
42
+			/**
43
+			 * Called before each field in the send to friend popup template.
44
+			 *
45
+			 * @since 1.0.0
46
+			 * @param string $field The field name the actions is called before.
47
+			 */
48
+			do_action('geodir_before_stf_form_field', 'to_name');?>
49 49
             <div class="row clearfix">
50 50
                     <input required field_type="text" name="to_name" id="to_name" type="text" value="" placeholder="<?php _e('Friend Name', 'geodirectory');?>"/>
51 51
             </div>
52 52
             <?php
53
-            /**
54
-             * Called after each field in the send to friend popup template.
55
-             *
56
-             * @since 1.0.0
57
-             * @param string $field The field name the actions is called after.
58
-             */
59
-            do_action('geodir_after_stf_form_field', 'to_name');?>
53
+			/**
54
+			 * Called after each field in the send to friend popup template.
55
+			 *
56
+			 * @since 1.0.0
57
+			 * @param string $field The field name the actions is called after.
58
+			 */
59
+			do_action('geodir_after_stf_form_field', 'to_name');?>
60 60
             <?php
61
-            /** This action is documented in geodirectory-templates/popup-forms.php */
62
-            do_action('geodir_before_stf_form_field', 'to_email');?>
61
+			/** This action is documented in geodirectory-templates/popup-forms.php */
62
+			do_action('geodir_before_stf_form_field', 'to_email');?>
63 63
             <div class="row  clearfix">
64 64
                     <input required field_type="email" name="to_email" id="to_email" type="email" value="" placeholder="<?php _e('Friend Email', 'geodirectory');?>"/>
65 65
             </div>
66 66
             <?php
67
-            /** This action is documented in geodirectory-templates/popup-forms.php */
68
-            do_action('geodir_after_stf_form_field', 'to_email');?>
67
+			/** This action is documented in geodirectory-templates/popup-forms.php */
68
+			do_action('geodir_after_stf_form_field', 'to_email');?>
69 69
             <?php
70
-            /** This action is documented in geodirectory-templates/popup-forms.php */
71
-            do_action('geodir_before_stf_form_field', 'yourname');?>
70
+			/** This action is documented in geodirectory-templates/popup-forms.php */
71
+			do_action('geodir_before_stf_form_field', 'yourname');?>
72 72
             <div class="row  clearfix">
73 73
                     <input required field_type="text" name="yourname" id="yourname" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory');?>"/>
74 74
             </div>
75 75
             <?php
76
-            /** This action is documented in geodirectory-templates/popup-forms.php */
77
-            do_action('geodir_after_stf_form_field', 'yourname');?>
76
+			/** This action is documented in geodirectory-templates/popup-forms.php */
77
+			do_action('geodir_after_stf_form_field', 'yourname');?>
78 78
             <?php
79
-            /** This action is documented in geodirectory-templates/popup-forms.php */
80
-            do_action('geodir_before_stf_form_field', 'youremail');?>
79
+			/** This action is documented in geodirectory-templates/popup-forms.php */
80
+			do_action('geodir_before_stf_form_field', 'youremail');?>
81 81
             <div class="row  clearfix">
82 82
                     <input required field_type="email" name="youremail" id="youremail" type="email" value="" placeholder="<?php _e('Your Email', 'geodirectory');?>"/>
83 83
             </div>
84 84
             <?php
85
-            /** This action is documented in geodirectory-templates/popup-forms.php */
86
-            do_action('geodir_after_stf_form_field', 'youremail');?>
85
+			/** This action is documented in geodirectory-templates/popup-forms.php */
86
+			do_action('geodir_after_stf_form_field', 'youremail');?>
87 87
             <?php
88
-            /** This action is documented in geodirectory-templates/popup-forms.php */
89
-            do_action('geodir_before_stf_form_field', 'frnd_subject');?>
88
+			/** This action is documented in geodirectory-templates/popup-forms.php */
89
+			do_action('geodir_before_stf_form_field', 'frnd_subject');?>
90 90
             <div class="row  clearfix">
91 91
                     <input required field_type="text" name="frnd_subject"
92 92
                            value="<?php echo __('About', 'geodirectory') . ' ' . $post_info->post_title;?>"
93 93
                            id="frnd_subject" type="text"  placeholder="<?php _e('Subject', 'geodirectory');?>"/>
94 94
             </div>
95 95
             <?php
96
-            /** This action is documented in geodirectory-templates/popup-forms.php */
97
-            do_action('geodir_after_stf_form_field', 'frnd_subject');?>
96
+			/** This action is documented in geodirectory-templates/popup-forms.php */
97
+			do_action('geodir_after_stf_form_field', 'frnd_subject');?>
98 98
             <?php
99
-            /** This action is documented in geodirectory-templates/popup-forms.php */
100
-            do_action('geodir_before_stf_form_field', 'frnd_comments');?>
99
+			/** This action is documented in geodirectory-templates/popup-forms.php */
100
+			do_action('geodir_before_stf_form_field', 'frnd_comments');?>
101 101
             <div class="row  clearfix">
102 102
                     <textarea required field_type="textarea" name="frnd_comments" id="frnd_comments" cols=""
103 103
                               rows="" placeholder="<?php echo SEND_TO_FRIEND_SAMPLE_CONTENT;?>"><?php echo SEND_TO_FRIEND_SAMPLE_CONTENT;?></textarea>
104 104
             </div>
105 105
             <?php
106
-            /** This action is documented in geodirectory-templates/popup-forms.php */
107
-            do_action('geodir_after_stf_form_field', 'frnd_comments');?>
106
+			/** This action is documented in geodirectory-templates/popup-forms.php */
107
+			do_action('geodir_after_stf_form_field', 'frnd_comments');?>
108 108
             <?php if (function_exists('geodir_get_captch')) {
109
-                geodir_get_captch('-1');
110
-            }?>
109
+				geodir_get_captch('-1');
110
+			}?>
111 111
             <input name="Send" type="submit" value="<?php _e('Send', 'geodirectory')?> " class="button "/>
112 112
         </form>
113 113
     </div> <?php
@@ -121,62 +121,62 @@  discard block
 block discarded – undo
121 121
             <input type="hidden" name="pid" value="<?php echo $post_info->ID;?>"/>
122 122
 
123 123
             <h3><?php
124
-                /**
125
-                 * Filter the title for the send inquiry popup form.
126
-                 *
127
-                 * @since 1.0.0
128
-                 * @param string $title The title for the form, defaults to global `SEND_INQUIRY` text.
129
-                 */
130
-                echo apply_filters('geodir_send_inquiry_page_title', SEND_INQUIRY);?> </h3>
124
+				/**
125
+				 * Filter the title for the send inquiry popup form.
126
+				 *
127
+				 * @since 1.0.0
128
+				 * @param string $title The title for the form, defaults to global `SEND_INQUIRY` text.
129
+				 */
130
+				echo apply_filters('geodir_send_inquiry_page_title', SEND_INQUIRY);?> </h3>
131 131
 
132 132
             <p id="inquiry_send_success" class="sucess_msg" style="display:none;"></p>
133 133
             <?php
134
-            /**
135
-             * Called before each field in the send to friend inquiry template.
136
-             *
137
-             * @since 1.0.0
138
-             * @param string $field The field name the actions is called before.
139
-             */
140
-            do_action('geodir_before_inquiry_form_field', 'inq_name');?>
134
+			/**
135
+			 * Called before each field in the send to friend inquiry template.
136
+			 *
137
+			 * @since 1.0.0
138
+			 * @param string $field The field name the actions is called before.
139
+			 */
140
+			do_action('geodir_before_inquiry_form_field', 'inq_name');?>
141 141
             <div class="row  clearfix">
142 142
                     <input required field_type="text" name="inq_name" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory');?>"/>
143 143
             </div>
144 144
             <?php
145
-            /**
146
-             * Called after each field in the send to friend inquiry template.
147
-             *
148
-             * @since 1.0.0
149
-             * @param string $field The field name the actions is called after.
150
-             */
151
-            do_action('geodir_after_inquiry_form_field', 'inq_name');?>
145
+			/**
146
+			 * Called after each field in the send to friend inquiry template.
147
+			 *
148
+			 * @since 1.0.0
149
+			 * @param string $field The field name the actions is called after.
150
+			 */
151
+			do_action('geodir_after_inquiry_form_field', 'inq_name');?>
152 152
             <?php
153
-            /** This action is documented in geodirectory-templates/popup-forms.php */
154
-            do_action('geodir_before_inquiry_form_field', 'inq_email');?>
153
+			/** This action is documented in geodirectory-templates/popup-forms.php */
154
+			do_action('geodir_before_inquiry_form_field', 'inq_email');?>
155 155
             <div class="row  clearfix">
156 156
                     <input required field_type="email" name="inq_email" type="email" value="" placeholder="<?php _e('Email', 'geodirectory');?>"/>
157 157
             </div>
158 158
             <?php
159
-            /** This action is documented in geodirectory-templates/popup-forms.php */
160
-            do_action('geodir_after_inquiry_form_field', 'inq_email');?>
159
+			/** This action is documented in geodirectory-templates/popup-forms.php */
160
+			do_action('geodir_after_inquiry_form_field', 'inq_email');?>
161 161
             <?php
162
-            /** This action is documented in geodirectory-templates/popup-forms.php */
163
-            do_action('geodir_before_inquiry_form_field', 'inq_phone');?>
162
+			/** This action is documented in geodirectory-templates/popup-forms.php */
163
+			do_action('geodir_before_inquiry_form_field', 'inq_phone');?>
164 164
             <div class="row  clearfix">
165 165
                     <input name="inq_phone" id="agt_mail_phone" type="text" value="" placeholder="<?php _e('Phone number', 'geodirectory');?>"/>
166 166
             </div>
167 167
             <?php
168
-            /** This action is documented in geodirectory-templates/popup-forms.php */
169
-            do_action('geodir_after_inquiry_form_field', 'inq_phone');?>
168
+			/** This action is documented in geodirectory-templates/popup-forms.php */
169
+			do_action('geodir_after_inquiry_form_field', 'inq_phone');?>
170 170
             <?php
171
-            /** This action is documented in geodirectory-templates/popup-forms.php */
172
-            do_action('geodir_before_inquiry_form_field', 'inq_msg');?>
171
+			/** This action is documented in geodirectory-templates/popup-forms.php */
172
+			do_action('geodir_before_inquiry_form_field', 'inq_msg');?>
173 173
             <div class="row  clearfix">
174 174
                     <textarea required field_type="textarea" name="inq_msg" cols=""
175 175
                               rows="" placeholder="<?php echo SEND_INQUIRY_SAMPLE_CONTENT;?>"></textarea>
176 176
             </div>
177 177
             <?php
178
-            /** This action is documented in geodirectory-templates/popup-forms.php */
179
-            do_action('geodir_after_inquiry_form_field', 'inq_msg');?>
178
+			/** This action is documented in geodirectory-templates/popup-forms.php */
179
+			do_action('geodir_after_inquiry_form_field', 'inq_msg');?>
180 180
             <input name="Send" type="submit" value="<?php _e('Send', 'geodirectory');?>"
181 181
                    class="button clearfix"/>
182 182
         </form>
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 4 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2301,7 +2301,7 @@  discard block
 block discarded – undo
2301 2301
  * @global string $table_prefix  WordPress Database Table prefix.
2302 2302
  *
2303 2303
  * @param array $query_args      The query array.
2304
- * @param  int|bool $count_only  If true returns listings count only, otherwise returns array
2304
+ * @param  boolean $count_only  If true returns listings count only, otherwise returns array
2305 2305
  *
2306 2306
  * @return mixed Result object.
2307 2307
  */
@@ -3958,7 +3958,7 @@  discard block
 block discarded – undo
3958 3958
  * @since   1.0.0
3959 3959
  * @since   1.6.1 Fixed add listing page load time.
3960 3960
  * @package GeoDirectory
3961
- * @return bool
3961
+ * @return null|boolean
3962 3962
  */
3963 3963
 function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3964 3964
 	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
Please login to merge, or discard this patch.
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   +1307 added lines, -1307 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,95 +745,95 @@  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_friend' ) {
756
-			$subject = get_option( 'geodir_email_friend_subject' );
757
-			$message = get_option( 'geodir_email_friend_content' );
758
-		} elseif ( $message_type == 'send_enquiry' ) {
759
-			$subject = get_option( 'geodir_email_enquiry_subject' );
760
-			$message = get_option( 'geodir_email_enquiry_content' );
755
+		if ($message_type == 'send_friend') {
756
+			$subject = get_option('geodir_email_friend_subject');
757
+			$message = get_option('geodir_email_friend_content');
758
+		} elseif ($message_type == 'send_enquiry') {
759
+			$subject = get_option('geodir_email_enquiry_subject');
760
+			$message = get_option('geodir_email_enquiry_content');
761 761
 
762 762
 			// change to name in some cases
763
-			$post_author = get_post_field( 'post_author', $post_id );
764
-			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
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
767
-				$toEmailName = __('Business Owner','geodirectory');
763
+			$post_author = get_post_field('post_author', $post_id);
764
+			if (is_super_admin($post_author)) {// if admin probably not the post author so change name
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
767
+				$toEmailName = __('Business Owner', 'geodirectory');
768 768
 			}
769 769
 
770 770
 
771
-		} elseif ( $message_type == 'forgot_password' ) {
772
-			$subject       = get_option( 'geodir_forgot_password_subject' );
773
-			$message       = get_option( 'geodir_forgot_password_content' );
771
+		} elseif ($message_type == 'forgot_password') {
772
+			$subject       = get_option('geodir_forgot_password_subject');
773
+			$message       = get_option('geodir_forgot_password_content');
774 774
 			$login_details = $to_message;
775
-		} elseif ( $message_type == 'registration' ) {
776
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
777
-			$message       = get_option( 'geodir_registration_success_email_content' );
775
+		} elseif ($message_type == 'registration') {
776
+			$subject       = get_option('geodir_registration_success_email_subject');
777
+			$message       = get_option('geodir_registration_success_email_content');
778 778
 			$login_details = $to_message;
779
-		} elseif ( $message_type == 'post_submit' ) {
780
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
781
-			$message = get_option( 'geodir_post_submited_success_email_content' );
782
-		} elseif ( $message_type == 'listing_published' ) {
783
-			$subject = get_option( 'geodir_post_published_email_subject' );
784
-			$message = get_option( 'geodir_post_published_email_content' );
785
-		} elseif ( $message_type == 'listing_edited' ) {
786
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
787
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
779
+		} elseif ($message_type == 'post_submit') {
780
+			$subject = get_option('geodir_post_submited_success_email_subject');
781
+			$message = get_option('geodir_post_submited_success_email_content');
782
+		} elseif ($message_type == 'listing_published') {
783
+			$subject = get_option('geodir_post_published_email_subject');
784
+			$message = get_option('geodir_post_published_email_content');
785
+		} elseif ($message_type == 'listing_edited') {
786
+			$subject = get_option('geodir_post_edited_email_subject_admin');
787
+			$message = get_option('geodir_post_edited_email_content_admin');
788 788
 		}
789 789
 
790
-		if ( ! empty( $subject ) ) {
791
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
790
+		if (!empty($subject)) {
791
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
792 792
 		}
793 793
 
794
-		if ( ! empty( $message ) ) {
795
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
794
+		if (!empty($message)) {
795
+			$message = __(stripslashes_deep($message), 'geodirectory');
796 796
 		}
797 797
 
798
-		$to_message        = nl2br( $to_message );
799
-		$sitefromEmail     = get_option( 'site_email' );
798
+		$to_message        = nl2br($to_message);
799
+		$sitefromEmail     = get_option('site_email');
800 800
 		$sitefromEmailName = get_site_emailName();
801
-		$productlink       = get_permalink( $post_id );
801
+		$productlink       = get_permalink($post_id);
802 802
 
803 803
 		$user_login = '';
804
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
804
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
805 805
 			$user_login = $user_info->user_login;
806 806
 		}
807 807
 
808 808
 		$posted_date = '';
809 809
 		$listingLink = '';
810 810
 
811
-		$post_info = get_post( $post_id );
811
+		$post_info = get_post($post_id);
812 812
 
813
-		if ( $post_info ) {
813
+		if ($post_info) {
814 814
 			$posted_date = $post_info->post_date;
815
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
815
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
816 816
 		}
817 817
 		$siteurl       = home_url();
818
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
818
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
819 819
 		$loginurl      = geodir_login_url();
820
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
820
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
821 821
         
822
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
823
-		$post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL;
824
-		$post_author_name = geodir_get_client_name( $post_author_id );
825
-		$post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : '';
826
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
827
-
828
-		if ( $fromEmail == '' ) {
829
-			$fromEmail = get_option( 'site_email' );
822
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
823
+		$post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL;
824
+		$post_author_name = geodir_get_client_name($post_author_id);
825
+		$post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : '';
826
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
827
+
828
+		if ($fromEmail == '') {
829
+			$fromEmail = get_option('site_email');
830 830
 		}
831 831
 
832
-		if ( $fromEmailName == '' ) {
833
-			$fromEmailName = get_option( 'site_email_name' );
832
+		if ($fromEmailName == '') {
833
+			$fromEmailName = get_option('site_email_name');
834 834
 		}
835 835
 
836
-		$search_array  = array(
836
+		$search_array = array(
837 837
 			'[#listing_link#]',
838 838
 			'[#site_name_url#]',
839 839
 			'[#post_id#]',
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 			$post_author_email,
876 876
 			$current_date,
877 877
 		);
878
-		$message       = str_replace( $search_array, $replace_array, $message );
878
+		$message       = str_replace($search_array, $replace_array, $message);
879 879
 
880 880
 		$search_array  = array(
881 881
 			'[#listing_link#]',
@@ -913,12 +913,12 @@  discard block
 block discarded – undo
913 913
 			$post_author_email,
914 914
 			$current_date
915 915
 		);
916
-		$subject       = str_replace( $search_array, $replace_array, $subject );
916
+		$subject = str_replace($search_array, $replace_array, $subject);
917 917
 
918
-		$headers =  array();
918
+		$headers = array();
919 919
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
920
-		$headers[] = "Reply-To: " . $fromEmail;
921
-		$headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>';
920
+		$headers[] = "Reply-To: ".$fromEmail;
921
+		$headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>';
922 922
 
923 923
 		$to = $toEmail;
924 924
 
@@ -940,7 +940,7 @@  discard block
 block discarded – undo
940 940
 		 * @param string $post_id       The post ID.
941 941
 		 * @param string $user_id       The user ID.
942 942
 		 */
943
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
943
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
944 944
 		/**
945 945
 		 * Filter the client email subject.
946 946
 		 *
@@ -959,7 +959,7 @@  discard block
 block discarded – undo
959 959
 		 * @param string $post_id       The post ID.
960 960
 		 * @param string $user_id       The user ID.
961 961
 		 */
962
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
962
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
963 963
 		/**
964 964
 		 * Filter the client email message.
965 965
 		 *
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
 		 * @param string $post_id       The post ID.
979 979
 		 * @param string $user_id       The user ID.
980 980
 		 */
981
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
981
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
982 982
 		/**
983 983
 		 * Filter the client email headers.
984 984
 		 *
@@ -997,39 +997,39 @@  discard block
 block discarded – undo
997 997
 		 * @param string $post_id       The post ID.
998 998
 		 * @param string $user_id       The user ID.
999 999
 		 */
1000
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1000
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1001 1001
 
1002
-		$sent = wp_mail( $to, $subject, $message, $headers );
1002
+		$sent = wp_mail($to, $subject, $message, $headers);
1003 1003
 
1004
-		if ( ! $sent ) {
1005
-			if ( is_array( $to ) ) {
1006
-				$to = implode( ',', $to );
1004
+		if (!$sent) {
1005
+			if (is_array($to)) {
1006
+				$to = implode(',', $to);
1007 1007
 			}
1008 1008
 			$log_message = sprintf(
1009
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1009
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1010 1010
 				$message_type,
1011
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1011
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1012 1012
 				$to,
1013 1013
 				$subject
1014 1014
 			);
1015
-			geodir_error_log( $log_message );
1015
+			geodir_error_log($log_message);
1016 1016
 		}
1017 1017
 
1018 1018
 		///////// ADMIN BCC EMIALS
1019
-		$adminEmail = get_bloginfo( 'admin_email' );
1019
+		$adminEmail = get_bloginfo('admin_email');
1020 1020
 		$to         = $adminEmail;
1021 1021
 
1022 1022
 		$admin_bcc = false;
1023
-		if ( $message_type == 'registration' ) {
1024
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1025
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1026
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1023
+		if ($message_type == 'registration') {
1024
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1025
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1026
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1027 1027
 		}
1028
-		if ( $message_type == 'post_submit' && ( get_option( 'geodir_notify_post_submit' ) || get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) ) {
1029
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1030
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1028
+		if ($message_type == 'post_submit' && (get_option('geodir_notify_post_submit') || get_option('geodir_notify_post_submit', '-1') == '-1')) {
1029
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1030
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1031 1031
 
1032
-			$search_array  = array(
1032
+			$search_array = array(
1033 1033
 				'[#listing_link#]',
1034 1034
 				'[#site_name_url#]',
1035 1035
 				'[#post_id#]',
@@ -1065,7 +1065,7 @@  discard block
 block discarded – undo
1065 1065
 				$user_login,
1066 1066
 				$post_author_email,
1067 1067
 			);
1068
-			$message       = str_replace( $search_array, $replace_array, $message );
1068
+			$message       = str_replace($search_array, $replace_array, $message);
1069 1069
 
1070 1070
 			$search_array  = array(
1071 1071
 				'[#listing_link#]',
@@ -1097,26 +1097,26 @@  discard block
 block discarded – undo
1097 1097
 				$user_login,
1098 1098
 				$post_author_email,
1099 1099
 			);
1100
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1100
+			$subject = str_replace($search_array, $replace_array, $subject);
1101 1101
 
1102 1102
 			$subject .= ' - ADMIN BCC COPY';
1103 1103
 			$admin_bcc = true;
1104 1104
 
1105
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1105
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1106 1106
 			$subject .= ' - ADMIN BCC COPY';
1107 1107
 			$admin_bcc = true;
1108
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1108
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1109 1109
 			$subject .= ' - ADMIN BCC COPY';
1110 1110
 			$admin_bcc = true;
1111
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1111
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1112 1112
 			$subject .= ' - ADMIN BCC COPY';
1113 1113
 			$admin_bcc = true;
1114
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1114
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1115 1115
 			$subject .= ' - ADMIN BCC COPY';
1116 1116
 			$admin_bcc = true;
1117 1117
 		}
1118 1118
 
1119
-		if ( $admin_bcc === true ) {
1119
+		if ($admin_bcc === true) {
1120 1120
 
1121 1121
 			/**
1122 1122
 			 * Filter the client email subject.
@@ -1136,7 +1136,7 @@  discard block
 block discarded – undo
1136 1136
 			 * @param string $post_id       The post ID.
1137 1137
 			 * @param string $user_id       The user ID.
1138 1138
 			 */
1139
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1139
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1140 1140
 			/**
1141 1141
 			 * Filter the client email message.
1142 1142
 			 *
@@ -1155,23 +1155,23 @@  discard block
 block discarded – undo
1155 1155
 			 * @param string $post_id       The post ID.
1156 1156
 			 * @param string $user_id       The user ID.
1157 1157
 			 */
1158
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1158
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1159 1159
 
1160 1160
 
1161
-			$sent = wp_mail( $to, $subject, $message, $headers );
1161
+			$sent = wp_mail($to, $subject, $message, $headers);
1162 1162
 
1163
-			if ( ! $sent ) {
1164
-				if ( is_array( $to ) ) {
1165
-					$to = implode( ',', $to );
1163
+			if (!$sent) {
1164
+				if (is_array($to)) {
1165
+					$to = implode(',', $to);
1166 1166
 				}
1167 1167
 				$log_message = sprintf(
1168
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1168
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1169 1169
 					$message_type,
1170
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1170
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1171 1171
 					$to,
1172 1172
 					$subject
1173 1173
 				);
1174
-				geodir_error_log( $log_message );
1174
+				geodir_error_log($log_message);
1175 1175
 			}
1176 1176
 		}
1177 1177
 
@@ -1187,51 +1187,51 @@  discard block
 block discarded – undo
1187 1187
  */
1188 1188
 function geodir_taxonomy_breadcrumb() {
1189 1189
 
1190
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1190
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1191 1191
 	$parent = $term->parent;
1192 1192
 
1193
-	while ( $parent ):
1193
+	while ($parent):
1194 1194
 		$parents[]  = $parent;
1195
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1195
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1196 1196
 		$parent     = $new_parent->parent;
1197 1197
 	endwhile;
1198 1198
 
1199
-	if ( ! empty( $parents ) ):
1200
-		$parents = array_reverse( $parents );
1199
+	if (!empty($parents)):
1200
+		$parents = array_reverse($parents);
1201 1201
 
1202
-		foreach ( $parents as $parent ):
1203
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1204
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1205
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1202
+		foreach ($parents as $parent):
1203
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1204
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1205
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1206 1206
 		endforeach;
1207 1207
 
1208 1208
 	endif;
1209 1209
 
1210
-	echo '<li> > ' . $term->name . '</li>';
1210
+	echo '<li> > '.$term->name.'</li>';
1211 1211
 }
1212 1212
 
1213
-function geodir_wpml_post_type_archive_link($link, $post_type){
1213
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1214 1214
 	if (geodir_is_wpml()) {
1215
-		$post_types   = get_option( 'geodir_post_types' );
1215
+		$post_types = get_option('geodir_post_types');
1216 1216
 		
1217
-		if ( isset( $post_types[ $post_type ] ) ) {
1218
-			$slug = $post_types[ $post_type ]['rewrite']['slug'];
1217
+		if (isset($post_types[$post_type])) {
1218
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1219 1219
 
1220 1220
 			// Alter the CPT slug if WPML is set to do so
1221
-			if ( geodir_wpml_is_post_type_translated( $post_type ) ) {
1222
-				if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1221
+			if (geodir_wpml_is_post_type_translated($post_type)) {
1222
+				if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1223 1223
 
1224 1224
 					$org_slug = $slug;
1225
-					$slug     = apply_filters( 'wpml_translate_single_string',
1225
+					$slug     = apply_filters('wpml_translate_single_string',
1226 1226
 						$slug,
1227 1227
 						'WordPress',
1228
-						'URL slug: ' . $slug,
1229
-						$language_code );
1228
+						'URL slug: '.$slug,
1229
+						$language_code);
1230 1230
                     
1231
-					if ( ! $slug ) {
1231
+					if (!$slug) {
1232 1232
 						$slug = $org_slug;
1233 1233
 					} else {
1234
-						$link = str_replace( $org_slug, $slug, $link );
1234
+						$link = str_replace($org_slug, $slug, $link);
1235 1235
 					}
1236 1236
 				}
1237 1237
 			}
@@ -1240,7 +1240,7 @@  discard block
 block discarded – undo
1240 1240
 
1241 1241
 	return $link;
1242 1242
 }
1243
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1243
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1244 1244
 
1245 1245
 /**
1246 1246
  * Main function that generates breadcrumb for all pages.
@@ -1261,9 +1261,9 @@  discard block
 block discarded – undo
1261 1261
 	 *
1262 1262
 	 * @since 1.0.0
1263 1263
 	 */
1264
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1264
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1265 1265
 
1266
-	if ( ! geodir_is_page( 'home' ) ) {
1266
+	if (!geodir_is_page('home')) {
1267 1267
 		$breadcrumb    = '';
1268 1268
 		$url_categoris = '';
1269 1269
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1272,167 +1272,167 @@  discard block
 block discarded – undo
1272 1272
 		 *
1273 1273
 		 * @since 1.0.0
1274 1274
 		 */
1275
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1275
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1276 1276
 
1277 1277
 		$gd_post_type   = geodir_get_current_posttype();
1278
-		$post_type_info = get_post_type_object( $gd_post_type );
1278
+		$post_type_info = get_post_type_object($gd_post_type);
1279 1279
 
1280
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1280
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1281 1281
 
1282
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1282
+		$listing_link = get_post_type_archive_link($gd_post_type);
1283 1283
 
1284
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1285
-		$listing_link = rtrim( $listing_link, '/' );
1284
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1285
+		$listing_link = rtrim($listing_link, '/');
1286 1286
 		$listing_link .= '/';
1287 1287
 
1288 1288
 		$post_type_for_location_link = $listing_link;
1289
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1289
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1290 1290
 
1291 1291
 		global $wp, $gd_session;
1292 1292
 		$location_link = $post_type_for_location_link;
1293 1293
 
1294
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1294
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1295 1295
 			global $post;
1296
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1297
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1296
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1297
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1298 1298
 
1299
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1299
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1300 1300
 				$location_terms = array(
1301 1301
 					'gd_country' => $post->country_slug,
1302 1302
 					'gd_region'  => $post->region_slug,
1303 1303
 					'gd_city'    => $post->city_slug
1304 1304
 				);
1305 1305
 
1306
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1306
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1307 1307
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1308 1308
 				}
1309 1309
 			}
1310 1310
 
1311
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1311
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1312 1312
 
1313 1313
 			$hide_url_part = array();
1314
-			if ( $location_manager ) {
1315
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1316
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1317
-
1318
-				if ( $hide_region_part && $hide_country_part ) {
1319
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1320
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1321
-					$hide_url_part = array( 'gd_region' );
1322
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1323
-					$hide_url_part = array( 'gd_country' );
1314
+			if ($location_manager) {
1315
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1316
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1317
+
1318
+				if ($hide_region_part && $hide_country_part) {
1319
+					$hide_url_part = array('gd_country', 'gd_region');
1320
+				} else if ($hide_region_part && !$hide_country_part) {
1321
+					$hide_url_part = array('gd_region');
1322
+				} else if (!$hide_region_part && $hide_country_part) {
1323
+					$hide_url_part = array('gd_country');
1324 1324
 				}
1325 1325
 			}
1326 1326
 
1327 1327
 			$hide_text_part = array();
1328
-			if ( $geodir_show_location_url == 'country_city' ) {
1329
-				$hide_text_part = array( 'gd_region' );
1328
+			if ($geodir_show_location_url == 'country_city') {
1329
+				$hide_text_part = array('gd_region');
1330 1330
 
1331
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1332
-					unset( $location_terms['gd_region'] );
1331
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1332
+					unset($location_terms['gd_region']);
1333 1333
 				}
1334
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1335
-				$hide_text_part = array( 'gd_country' );
1334
+			} else if ($geodir_show_location_url == 'region_city') {
1335
+				$hide_text_part = array('gd_country');
1336 1336
 
1337
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1338
-					unset( $location_terms['gd_country'] );
1337
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1338
+					unset($location_terms['gd_country']);
1339 1339
 				}
1340
-			} else if ( $geodir_show_location_url == 'city' ) {
1341
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1340
+			} else if ($geodir_show_location_url == 'city') {
1341
+				$hide_text_part = array('gd_country', 'gd_region');
1342 1342
 
1343
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1344
-					unset( $location_terms['gd_country'] );
1343
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1344
+					unset($location_terms['gd_country']);
1345 1345
 				}
1346
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1347
-					unset( $location_terms['gd_region'] );
1346
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1347
+					unset($location_terms['gd_region']);
1348 1348
 				}
1349 1349
 			}
1350 1350
 
1351 1351
 			$is_location_last = '';
1352 1352
 			$is_taxonomy_last = '';
1353 1353
 			$breadcrumb .= '<li>';
1354
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1355
-				$gd_taxonomy = $gd_post_type . 'category';
1356
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1357
-				$gd_taxonomy = $gd_post_type . '_tags';
1354
+			if (get_query_var($gd_post_type.'category')) {
1355
+				$gd_taxonomy = $gd_post_type.'category';
1356
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1357
+				$gd_taxonomy = $gd_post_type.'_tags';
1358 1358
 			}
1359 1359
 
1360
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1361
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1360
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1361
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1362 1362
 				$is_location_last = false;
1363 1363
 			} else {
1364 1364
 				$is_location_last = true;
1365 1365
 			}
1366 1366
 
1367
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1367
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1368 1368
 				$is_taxonomy_last = true;
1369 1369
 			} else {
1370 1370
 				$is_taxonomy_last = false;
1371 1371
 			}
1372 1372
 
1373
-			if ( ! empty( $location_terms ) ) {
1374
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1373
+			if (!empty($location_terms)) {
1374
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1375 1375
 
1376
-				foreach ( $location_terms as $key => $location_term ) {
1377
-					if ( $location_term != '' ) {
1378
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1376
+				foreach ($location_terms as $key => $location_term) {
1377
+					if ($location_term != '') {
1378
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1379 1379
 							continue;
1380 1380
 						}
1381 1381
 
1382
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1383
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1384
-						$gd_location_link_text = geodir_utf8_ucfirst( $gd_location_link_text );
1382
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1383
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1384
+						$gd_location_link_text = geodir_utf8_ucfirst($gd_location_link_text);
1385 1385
 
1386 1386
 						$location_term_actual_country = '';
1387 1387
 						$location_term_actual_region  = '';
1388 1388
 						$location_term_actual_city    = '';
1389 1389
 						$location_term_actual_neighbourhood = '';
1390
-						if ( $geodir_get_locations ) {
1391
-							if ( $key == 'gd_country' ) {
1392
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1393
-							} else if ( $key == 'gd_region' ) {
1394
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1395
-							} else if ( $key == 'gd_city' ) {
1396
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1397
-							} else if ( $key == 'gd_neighbourhood' ) {
1398
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1390
+						if ($geodir_get_locations) {
1391
+							if ($key == 'gd_country') {
1392
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1393
+							} else if ($key == 'gd_region') {
1394
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1395
+							} else if ($key == 'gd_city') {
1396
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1397
+							} else if ($key == 'gd_neighbourhood') {
1398
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1399 1399
 							}
1400 1400
 						} else {
1401 1401
 							$location_info = geodir_get_location();
1402 1402
 
1403
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1404
-								if ( $key == 'gd_country' ) {
1405
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1406
-								} else if ( $key == 'gd_region' ) {
1407
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1408
-								} else if ( $key == 'gd_city' ) {
1409
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1403
+							if (!empty($location_info) && isset($location_info->location_id)) {
1404
+								if ($key == 'gd_country') {
1405
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1406
+								} else if ($key == 'gd_region') {
1407
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1408
+								} else if ($key == 'gd_city') {
1409
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1410 1410
 								}
1411 1411
 							}
1412 1412
 						}
1413 1413
 
1414
-						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'] != '' ) ) {
1415
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1416
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1417
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1418
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1419
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1420
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1421
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1414
+						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'] != '')) {
1415
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1416
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1417
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1418
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1419
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1420
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1421
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1422 1422
 						} else {
1423
-							if ( get_option( 'permalink_structure' ) != '' ) {
1424
-								$location_link .= $location_term . '/';
1423
+							if (get_option('permalink_structure') != '') {
1424
+								$location_link .= $location_term.'/';
1425 1425
 							} else {
1426
-								$location_link .= "&$key=" . $location_term;
1426
+								$location_link .= "&$key=".$location_term;
1427 1427
 							}
1428 1428
 
1429
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1429
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1430 1430
 								$gd_location_link_text = $location_term_actual_country;
1431
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1431
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1432 1432
 								$gd_location_link_text = $location_term_actual_region;
1433
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1433
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1434 1434
 								$gd_location_link_text = $location_term_actual_city;
1435
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1435
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1436 1436
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1437 1437
 							}
1438 1438
 
@@ -1442,77 +1442,77 @@  discard block
 block discarded – undo
1442 1442
                             }
1443 1443
                             */
1444 1444
 
1445
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1445
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1446 1446
 						}
1447 1447
 					}
1448 1448
 				}
1449 1449
 			}
1450 1450
 
1451
-			if ( ! empty( $gd_taxonomy ) ) {
1451
+			if (!empty($gd_taxonomy)) {
1452 1452
 				$term_index = 1;
1453 1453
 
1454 1454
 				//if(get_option('geodir_add_categories_url'))
1455 1455
 				{
1456
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1457
-						$cat_link = $listing_link . 'tags/';
1456
+					if (get_query_var($gd_post_type.'_tags')) {
1457
+						$cat_link = $listing_link.'tags/';
1458 1458
 					} else {
1459 1459
 						$cat_link = $listing_link;
1460 1460
 					}
1461 1461
 
1462
-					foreach ( $location_terms as $key => $location_term ) {
1463
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1462
+					foreach ($location_terms as $key => $location_term) {
1463
+						if ($location_manager && in_array($key, $hide_url_part)) {
1464 1464
 							continue;
1465 1465
 						}
1466 1466
 
1467
-						if ( $location_term != '' ) {
1468
-							if ( get_option( 'permalink_structure' ) != '' ) {
1469
-								$cat_link .= $location_term . '/';
1467
+						if ($location_term != '') {
1468
+							if (get_option('permalink_structure') != '') {
1469
+								$cat_link .= $location_term.'/';
1470 1470
 							}
1471 1471
 						}
1472 1472
 					}
1473 1473
 
1474
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1475
-					foreach ( $term_array as $term ) {
1476
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1477
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1474
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1475
+					foreach ($term_array as $term) {
1476
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1477
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1478 1478
 
1479 1479
 						// get term actual name
1480
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1481
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1482
-							$term_link_text = urldecode( $term_info['name'] );
1480
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1481
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1482
+							$term_link_text = urldecode($term_info['name']);
1483 1483
 						} else {
1484 1484
 							continue;
1485 1485
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1486 1486
 						}
1487 1487
 
1488
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1489
-							$breadcrumb .= $separator . $term_link_text;
1488
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1489
+							$breadcrumb .= $separator.$term_link_text;
1490 1490
 						} else {
1491
-							$cat_link .= $term . '/';
1492
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1491
+							$cat_link .= $term.'/';
1492
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1493 1493
 						}
1494
-						$term_index ++;
1494
+						$term_index++;
1495 1495
 					}
1496 1496
 				}
1497 1497
 
1498 1498
 
1499 1499
 			}
1500 1500
 
1501
-			if ( geodir_is_page( 'detail' ) ) {
1502
-				$breadcrumb .= $separator . get_the_title();
1501
+			if (geodir_is_page('detail')) {
1502
+				$breadcrumb .= $separator.get_the_title();
1503 1503
 			}
1504 1504
 
1505 1505
 			$breadcrumb .= '</li>';
1506 1506
 
1507 1507
 
1508
-		} elseif ( geodir_is_page( 'author' ) ) {
1508
+		} elseif (geodir_is_page('author')) {
1509 1509
 			$dashboard_post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : $gd_post_type;
1510 1510
 			$user_id             = get_current_user_id();
1511
-			$author_link         = get_author_posts_url( $user_id );
1512
-			$default_author_link = geodir_getlink( $author_link, array(
1511
+			$author_link         = get_author_posts_url($user_id);
1512
+			$default_author_link = geodir_getlink($author_link, array(
1513 1513
 				'geodir_dashbord' => 'true',
1514 1514
 				'stype'           => $dashboard_post_type
1515
-			), false );
1515
+			), false);
1516 1516
 
1517 1517
 			/**
1518 1518
 			 * Filter author page link.
@@ -1522,16 +1522,16 @@  discard block
 block discarded – undo
1522 1522
 			 * @param string $default_author_link Default author link.
1523 1523
 			 * @param int $user_id                Author ID.
1524 1524
 			 */
1525
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1525
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1526 1526
 
1527 1527
 			$breadcrumb .= '<li>';
1528
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1528
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1529 1529
 
1530
-			if ( isset( $_REQUEST['list'] ) ) {
1531
-				$author_link = geodir_getlink( $author_link, array(
1530
+			if (isset($_REQUEST['list'])) {
1531
+				$author_link = geodir_getlink($author_link, array(
1532 1532
 					'geodir_dashbord' => 'true',
1533 1533
 					'stype'           => $_REQUEST['stype']
1534
-				), false );
1534
+				), false);
1535 1535
 
1536 1536
 				/**
1537 1537
 				 * Filter author page link.
@@ -1542,61 +1542,61 @@  discard block
 block discarded – undo
1542 1542
 				 * @param int $user_id        Author ID.
1543 1543
 				 * @param string $_REQUEST    ['stype'] Post type.
1544 1544
 				 */
1545
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1545
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1546 1546
 
1547
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1548
-				$breadcrumb .= $separator . geodir_utf8_ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1547
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1548
+				$breadcrumb .= $separator.geodir_utf8_ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
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,120 +2869,120 @@  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 2976
 				$hide = '';
2977
-				if ( $cat_count < $category_limit ) {
2977
+				if ($cat_count < $category_limit) {
2978 2978
 					$hide = 'style="display:none;"';
2979 2979
 				}
2980 2980
 				echo "<div class='geodir-cat-list-more' $hide >";
2981
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2982
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2981
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2982
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2983 2983
 				echo "</div>";
2984 2984
 				/* add scripts */
2985
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2985
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2986 2986
 				?>
2987 2987
 			</div>
2988 2988
 			<?php
@@ -3002,28 +3002,28 @@  discard block
 block discarded – undo
3002 3002
  * @param int $category_limit               Number of categories to display by default.
3003 3003
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
3004 3004
  */
3005
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
3005
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
3006 3006
 	global $geodir_post_category_str, $cat_count;
3007 3007
 	$term_icons = geodir_get_term_icon();
3008 3008
 
3009 3009
 	$geodir_post_category_str = array();
3010 3010
 
3011 3011
 
3012
-	foreach ( $terms as $cat ) {
3013
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
3014
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
3012
+	foreach ($terms as $cat) {
3013
+		$post_type     = str_replace("category", "", $cat->taxonomy);
3014
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
3015 3015
 
3016
-		$cat_count ++;
3016
+		$cat_count++;
3017 3017
 
3018
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
3018
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
3019 3019
 
3020
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3021
-		if($category_restrict && $cat_count > $category_limit ){
3020
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3021
+		if ($category_restrict && $cat_count > $category_limit) {
3022 3022
 			continue;
3023 3023
 		}
3024 3024
 		$total_post = $cat->count;
3025 3025
 
3026
-		$term_link = get_term_link( $cat, $cat->taxonomy );
3026
+		$term_link = get_term_link($cat, $cat->taxonomy);
3027 3027
 		/**
3028 3028
 		 * Filer the category term link.
3029 3029
 		 *
@@ -3033,11 +3033,11 @@  discard block
 block discarded – undo
3033 3033
 		 * @param int $cat          ->term_id The term id.
3034 3034
 		 * @param string $post_type Wordpress post type.
3035 3035
 		 */
3036
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
3036
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
3037 3037
 
3038
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
3039
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
3040
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
3038
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
3039
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
3040
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
3041 3041
 		echo '</a></li>';
3042 3042
 	}
3043 3043
 }
@@ -3052,14 +3052,14 @@  discard block
 block discarded – undo
3052 3052
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3053 3053
  * @param array|string $instance The settings for the particular instance of the widget.
3054 3054
  */
3055
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3055
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3056 3056
 	// prints the widget
3057
-	extract( $args, EXTR_SKIP );
3057
+	extract($args, EXTR_SKIP);
3058 3058
 
3059 3059
 	echo $before_widget;
3060 3060
 
3061 3061
 	/** This filter is documented in geodirectory_widgets.php */
3062
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3062
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3063 3063
 	/**
3064 3064
 	 * Filter the widget post type.
3065 3065
 	 *
@@ -3067,7 +3067,7 @@  discard block
 block discarded – undo
3067 3067
 	 *
3068 3068
 	 * @param string $instance ['post_type'] Post type of listing.
3069 3069
 	 */
3070
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3070
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3071 3071
 	/**
3072 3072
 	 * Filter the widget's term.
3073 3073
 	 *
@@ -3075,7 +3075,7 @@  discard block
 block discarded – undo
3075 3075
 	 *
3076 3076
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3077 3077
 	 */
3078
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3078
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3079 3079
 	/**
3080 3080
 	 * Filter widget's "add_location_filter" value.
3081 3081
 	 *
@@ -3083,7 +3083,7 @@  discard block
 block discarded – undo
3083 3083
 	 *
3084 3084
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3085 3085
 	 */
3086
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3086
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3087 3087
 	/**
3088 3088
 	 * Filter the widget listings limit.
3089 3089
 	 *
@@ -3091,7 +3091,7 @@  discard block
 block discarded – undo
3091 3091
 	 *
3092 3092
 	 * @param string $instance ['post_number'] Number of listings to display.
3093 3093
 	 */
3094
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3094
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3095 3095
 	/**
3096 3096
 	 * Filter the widget listings limit shown at one time.
3097 3097
 	 *
@@ -3099,7 +3099,7 @@  discard block
 block discarded – undo
3099 3099
 	 *
3100 3100
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3101 3101
 	 */
3102
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3102
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3103 3103
 	/**
3104 3104
 	 * Filter the widget slide width.
3105 3105
 	 *
@@ -3107,7 +3107,7 @@  discard block
 block discarded – undo
3107 3107
 	 *
3108 3108
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3109 3109
 	 */
3110
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3110
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3111 3111
 	/**
3112 3112
 	 * Filter widget's "show title" value.
3113 3113
 	 *
@@ -3115,7 +3115,7 @@  discard block
 block discarded – undo
3115 3115
 	 *
3116 3116
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3117 3117
 	 */
3118
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3118
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3119 3119
 	/**
3120 3120
 	 * Filter widget's "slideshow" value.
3121 3121
 	 *
@@ -3123,7 +3123,7 @@  discard block
 block discarded – undo
3123 3123
 	 *
3124 3124
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3125 3125
 	 */
3126
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3126
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3127 3127
 	/**
3128 3128
 	 * Filter widget's "animationLoop" value.
3129 3129
 	 *
@@ -3131,7 +3131,7 @@  discard block
 block discarded – undo
3131 3131
 	 *
3132 3132
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3133 3133
 	 */
3134
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3134
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3135 3135
 	/**
3136 3136
 	 * Filter widget's "directionNav" value.
3137 3137
 	 *
@@ -3139,7 +3139,7 @@  discard block
 block discarded – undo
3139 3139
 	 *
3140 3140
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3141 3141
 	 */
3142
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3142
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3143 3143
 	/**
3144 3144
 	 * Filter widget's "slideshowSpeed" value.
3145 3145
 	 *
@@ -3147,7 +3147,7 @@  discard block
 block discarded – undo
3147 3147
 	 *
3148 3148
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3149 3149
 	 */
3150
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3150
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3151 3151
 	/**
3152 3152
 	 * Filter widget's "animationSpeed" value.
3153 3153
 	 *
@@ -3155,7 +3155,7 @@  discard block
 block discarded – undo
3155 3155
 	 *
3156 3156
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3157 3157
 	 */
3158
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3158
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3159 3159
 	/**
3160 3160
 	 * Filter widget's "animation" value.
3161 3161
 	 *
@@ -3163,7 +3163,7 @@  discard block
 block discarded – undo
3163 3163
 	 *
3164 3164
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3165 3165
 	 */
3166
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3166
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3167 3167
 	/**
3168 3168
 	 * Filter widget's "list_sort" type.
3169 3169
 	 *
@@ -3171,10 +3171,10 @@  discard block
 block discarded – undo
3171 3171
 	 *
3172 3172
 	 * @param string $instance ['list_sort'] Listing sort by type.
3173 3173
 	 */
3174
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3175
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3174
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3175
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3176 3176
 
3177
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3177
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3178 3178
 	?>
3179 3179
 		<script type="text/javascript">
3180 3180
 		jQuery(window).load(function () {
@@ -3193,7 +3193,7 @@  discard block
 block discarded – undo
3193 3193
 				itemWidth: 75,
3194 3194
 				itemMargin: 5,
3195 3195
 				asNavFor: '#geodir_widget_slider',
3196
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3196
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3197 3197
 				start: function (slider) {
3198 3198
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3199 3199
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3201,19 +3201,19 @@  discard block
 block discarded – undo
3201 3201
 			});
3202 3202
 			
3203 3203
 			jQuery('#geodir_widget_slider').flexslider({
3204
-				animation: "<?php echo $animation;?>",
3204
+				animation: "<?php echo $animation; ?>",
3205 3205
 				selector: ".geodir-slides > li",
3206 3206
 				namespace: "geodir-",
3207 3207
 				controlNav: true,
3208
-				animationLoop: <?php echo $animationLoop;?>,
3209
-				slideshow: <?php echo $slideshow;?>,
3210
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3211
-				animationSpeed: <?php echo $animationSpeed;?>,
3212
-				directionNav: <?php echo $directionNav;?>,
3213
-				maxItems: <?php echo $max_show;?>,
3208
+				animationLoop: <?php echo $animationLoop; ?>,
3209
+				slideshow: <?php echo $slideshow; ?>,
3210
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3211
+				animationSpeed: <?php echo $animationSpeed; ?>,
3212
+				directionNav: <?php echo $directionNav; ?>,
3213
+				maxItems: <?php echo $max_show; ?>,
3214 3214
 				move: 1,
3215
-				<?php if ( $slide_width ) {
3216
-				echo "itemWidth: " . $slide_width . ",";
3215
+				<?php if ($slide_width) {
3216
+				echo "itemWidth: ".$slide_width.",";
3217 3217
 			}?>
3218 3218
 				sync: "#geodir_widget_carousel",
3219 3219
 				start: function (slider) {
@@ -3224,7 +3224,7 @@  discard block
 block discarded – undo
3224 3224
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3225 3225
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3226 3226
 				},
3227
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3227
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3228 3228
 			});
3229 3229
 		});
3230 3230
 	</script>
@@ -3237,62 +3237,62 @@  discard block
 block discarded – undo
3237 3237
 		'order_by'       => $list_sort
3238 3238
 	);
3239 3239
 
3240
-	if ( $show_featured_only ) {
3240
+	if ($show_featured_only) {
3241 3241
 		$query_args['show_featured_only'] = 1;
3242 3242
 	}
3243 3243
 
3244
-	if ( $category != 0 || $category != '' ) {
3245
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3244
+	if ($category != 0 || $category != '') {
3245
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3246 3246
 		$tax_query         = array(
3247 3247
 			'taxonomy' => $category_taxonomy[0],
3248 3248
 			'field'    => 'id',
3249 3249
 			'terms'    => $category
3250 3250
 		);
3251 3251
 
3252
-		$query_args['tax_query'] = array( $tax_query );
3252
+		$query_args['tax_query'] = array($tax_query);
3253 3253
 	}
3254 3254
 
3255 3255
 	// we want listings with featured image only
3256 3256
 	$query_args['featured_image_only'] = 1;
3257 3257
 
3258
-	if ( $post_type == 'gd_event' ) {
3258
+	if ($post_type == 'gd_event') {
3259 3259
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3260 3260
 	}// show only upcoming events
3261 3261
 
3262
-	$widget_listings = geodir_get_widget_listings( $query_args );
3263
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3264
-		if ( $title ) {
3265
-			echo $before_title . $title . $after_title;
3262
+	$widget_listings = geodir_get_widget_listings($query_args);
3263
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3264
+		if ($title) {
3265
+			echo $before_title.$title.$after_title;
3266 3266
 		}
3267 3267
 
3268 3268
 		global $post;
3269 3269
 
3270
-		$current_post = $post;// keep current post info
3270
+		$current_post = $post; // keep current post info
3271 3271
 
3272 3272
 		$widget_main_slides = '';
3273 3273
 		$nav_slides         = '';
3274 3274
 		$widget_slides      = 0;
3275 3275
 
3276
-		foreach ( $widget_listings as $widget_listing ) {
3276
+		foreach ($widget_listings as $widget_listing) {
3277 3277
 			global $gd_widget_listing_type;
3278 3278
 			$post         = $widget_listing;
3279
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3279
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3280 3280
 
3281
-			if ( ! empty( $widget_image ) ) {
3282
-				if ( $widget_image->height >= 200 ) {
3281
+			if (!empty($widget_image)) {
3282
+				if ($widget_image->height >= 200) {
3283 3283
 					$widget_spacer_height = 0;
3284 3284
 				} else {
3285
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3285
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3286 3286
 				}
3287 3287
 
3288
-				$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" />';
3288
+				$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" />';
3289 3289
 
3290 3290
 				$title = '';
3291
-				if ( $show_title ) {
3292
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3291
+				if ($show_title) {
3292
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3293 3293
 					$post_id        = $post->ID;
3294
-					$post_permalink = get_permalink( $post->ID );
3295
-					$post_title     = get_the_title( $post->ID );
3294
+					$post_permalink = get_permalink($post->ID);
3295
+					$post_title     = get_the_title($post->ID);
3296 3296
 					/**
3297 3297
 					 * Filter the listing slider widget title.
3298 3298
 					 *
@@ -3303,12 +3303,12 @@  discard block
 block discarded – undo
3303 3303
 					 * @param string $post_permalink The post permalink url.
3304 3304
 					 * @param string $post_title     The post title text.
3305 3305
 					 */
3306
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3306
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3307 3307
 				}
3308 3308
 
3309
-				$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>';
3310
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3311
-				$widget_slides ++;
3309
+				$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>';
3310
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3311
+				$widget_slides++;
3312 3312
 			}
3313 3313
 		}
3314 3314
 		?>
@@ -3317,7 +3317,7 @@  discard block
 block discarded – undo
3317 3317
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3318 3318
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3319 3319
 			</div>
3320
-			<?php if ( $widget_slides > 1 ) { ?>
3320
+			<?php if ($widget_slides > 1) { ?>
3321 3321
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3322 3322
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3323 3323
 				</div>
@@ -3325,7 +3325,7 @@  discard block
 block discarded – undo
3325 3325
 		</div>
3326 3326
 		<?php
3327 3327
 		$GLOBALS['post'] = $current_post;
3328
-		setup_postdata( $current_post );
3328
+		setup_postdata($current_post);
3329 3329
 	}
3330 3330
 	echo $after_widget;
3331 3331
 }
@@ -3341,50 +3341,50 @@  discard block
 block discarded – undo
3341 3341
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3342 3342
  * @param array|string $instance The settings for the particular instance of the widget.
3343 3343
  */
3344
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3344
+function geodir_loginwidget_output($args = '', $instance = '') {
3345 3345
 	//print_r($args);
3346 3346
 	//print_r($instance);
3347 3347
 	// prints the widget
3348
-	extract( $args, EXTR_SKIP );
3348
+	extract($args, EXTR_SKIP);
3349 3349
 
3350 3350
 	/** This filter is documented in geodirectory_widgets.php */
3351
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3351
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3352 3352
 
3353 3353
 	echo $before_widget;
3354
-	echo $before_title . $title . $after_title;
3354
+	echo $before_title.$title.$after_title;
3355 3355
 
3356 3356
 //	global $gd_session;
3357 3357
 //	print_r($gd_session);
3358 3358
 //	print_r($_SESSION);
3359 3359
 
3360
-	if ( is_user_logged_in() ) {
3360
+	if (is_user_logged_in()) {
3361 3361
 		global $current_user;
3362 3362
 
3363
-		$author_link = get_author_posts_url( $current_user->data->ID );
3364
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3363
+		$author_link = get_author_posts_url($current_user->data->ID);
3364
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3365 3365
 
3366 3366
 		echo '<ul class="geodir-loginbox-list">';
3367 3367
 		ob_start();
3368 3368
 		?>
3369 3369
 		<li><a class="signin"
3370
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3370
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3371 3371
 		<?php
3372
-		$post_types                           = geodir_get_posttypes( 'object' );
3373
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3374
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3372
+		$post_types                           = geodir_get_posttypes('object');
3373
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3374
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3375 3375
 
3376
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3376
+		if (!empty($show_add_listing_post_types_main_nav)) {
3377 3377
 			$addlisting_links = '';
3378
-			foreach ( $post_types as $key => $postobj ) {
3378
+			foreach ($post_types as $key => $postobj) {
3379 3379
 
3380
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3380
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3381 3381
 
3382
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3382
+					if ($add_link = geodir_get_addlisting_link($key)) {
3383 3383
 
3384 3384
 						$name = $postobj->labels->name;
3385 3385
 
3386 3386
 						$selected = '';
3387
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3387
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3388 3388
 							$selected = 'selected="selected"';
3389 3389
 						}
3390 3390
 
@@ -3397,23 +3397,23 @@  discard block
 block discarded – undo
3397 3397
 						 * @param string $key       Add listing array key.
3398 3398
 						 * @param int $current_user ->ID Current user ID.
3399 3399
 						 */
3400
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3401
-						$name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID );
3400
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3401
+						$name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
3402 3402
 
3403
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3403
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3404 3404
 
3405 3405
 					}
3406 3406
 				}
3407 3407
 
3408 3408
 			}
3409 3409
 
3410
-			if ( $addlisting_links != '' ) { ?>
3410
+			if ($addlisting_links != '') { ?>
3411 3411
 
3412 3412
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3413 3413
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3414
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3414
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3415 3415
 						<option value="" disabled="disabled" selected="selected"
3416
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3416
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3417 3417
 						<?php echo $addlisting_links; ?>
3418 3418
 					</select></li> <?php
3419 3419
 
@@ -3421,24 +3421,24 @@  discard block
 block discarded – undo
3421 3421
 
3422 3422
 		}
3423 3423
 		// My Favourites in Dashboard
3424
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3424
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3425 3425
 		$user_favourite                    = geodir_user_favourite_listing_count();
3426 3426
 
3427
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3427
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3428 3428
 			$favourite_links = '';
3429 3429
 
3430
-			foreach ( $post_types as $key => $postobj ) {
3431
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3430
+			foreach ($post_types as $key => $postobj) {
3431
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3432 3432
 					$name           = $postobj->labels->name;
3433 3433
 					$fav_author_link = apply_filters('gd_dash_fav_author_link', $author_link, $current_user->data->ID);
3434
-					$post_type_link = geodir_getlink( $fav_author_link, array(
3434
+					$post_type_link = geodir_getlink($fav_author_link, array(
3435 3435
 						'stype' => $key,
3436 3436
 						'list'  => 'favourite'
3437
-					), false );
3437
+					), false);
3438 3438
 
3439 3439
 					$selected = '';
3440 3440
 
3441
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3441
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3442 3442
 						$selected = 'selected="selected"';
3443 3443
 					}
3444 3444
 					/**
@@ -3450,20 +3450,20 @@  discard block
 block discarded – undo
3450 3450
 					 * @param string $key            Favorite listing array key.
3451 3451
 					 * @param int $current_user      ->ID Current user ID.
3452 3452
 					 */
3453
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3453
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3454 3454
 
3455
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3455
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3456 3456
 				}
3457 3457
 			}
3458 3458
 
3459
-			if ( $favourite_links != '' ) {
3459
+			if ($favourite_links != '') {
3460 3460
 				?>
3461 3461
 				<li>
3462 3462
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3463 3463
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3464
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3464
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3465 3465
 						<option value="" disabled="disabled" selected="selected"
3466
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3466
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3467 3467
 						<?php echo $favourite_links; ?>
3468 3468
 					</select>
3469 3469
 				</li>
@@ -3472,20 +3472,20 @@  discard block
 block discarded – undo
3472 3472
 		}
3473 3473
 
3474 3474
 
3475
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3475
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3476 3476
 		$user_listing                     = geodir_user_post_listing_count();
3477 3477
 
3478
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3478
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3479 3479
 			$listing_links = '';
3480 3480
 
3481
-			foreach ( $post_types as $key => $postobj ) {
3482
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3481
+			foreach ($post_types as $key => $postobj) {
3482
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3483 3483
 					$name         = $postobj->labels->name;
3484 3484
 					$listing_author_link = apply_filters('gd_dash_listing_author_link', $author_link, $current_user->data->ID);
3485
-					$listing_link = geodir_getlink( $listing_author_link, array( 'stype' => $key ), false );
3485
+					$listing_link = geodir_getlink($listing_author_link, array('stype' => $key), false);
3486 3486
 
3487 3487
 					$selected = '';
3488
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3488
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3489 3489
 						$selected = 'selected="selected"';
3490 3490
 					}
3491 3491
 
@@ -3498,20 +3498,20 @@  discard block
 block discarded – undo
3498 3498
 					 * @param string $key          My listing array key.
3499 3499
 					 * @param int $current_user    ->ID Current user ID.
3500 3500
 					 */
3501
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3501
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3502 3502
 
3503
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3503
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3504 3504
 				}
3505 3505
 			}
3506 3506
 
3507
-			if ( $listing_links != '' ) {
3507
+			if ($listing_links != '') {
3508 3508
 				?>
3509 3509
 				<li>
3510 3510
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3511 3511
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3512
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3512
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3513 3513
 						<option value="" disabled="disabled" selected="selected"
3514
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3514
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3515 3515
 						<?php echo $listing_links; ?>
3516 3516
 					</select>
3517 3517
 				</li>
@@ -3527,7 +3527,7 @@  discard block
 block discarded – undo
3527 3527
 		 *
3528 3528
 		 * @param string $dashboard_link Dashboard links HTML.
3529 3529
 		 */
3530
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3530
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3531 3531
 		echo '</ul>';
3532 3532
 
3533 3533
 		/**
@@ -3535,7 +3535,7 @@  discard block
 block discarded – undo
3535 3535
 		 *
3536 3536
 		 * @since 1.6.6
3537 3537
 		 */
3538
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3538
+		do_action('geodir_after_loginwidget_form_logged_in');
3539 3539
 
3540 3540
 
3541 3541
 	} else {
@@ -3550,18 +3550,18 @@  discard block
 block discarded – undo
3550 3550
 		<form name="loginform" class="loginform1"
3551 3551
 		      action="<?php echo geodir_login_url(); ?>"
3552 3552
 		      method="post">
3553
-			<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'); ?>"
3553
+			<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'); ?>"
3554 3554
 			                                    type="text" class="textfield user_login1"/> <span
3555 3555
 					class="user_loginInfo"></span></div>
3556
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3556
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3557 3557
 			                                    name="<?php echo apply_filters('gd_login_wid_login_pwd', 'pwd'); ?>" type="password"
3558 3558
 			                                    class="textfield user_pass1 input-text"/><span
3559 3559
 					class="user_passInfo"></span></div>
3560 3560
 
3561
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3561
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3562 3562
 			<input type="hidden" name="testcookie" value="1"/>
3563 3563
 
3564
-				<?php do_action( 'login_form' ); ?>
3564
+				<?php do_action('login_form'); ?>
3565 3565
 
3566 3566
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3567 3567
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3573,11 +3573,11 @@  discard block
 block discarded – undo
3573 3573
 					 *
3574 3574
 					 * @since 1.0.0
3575 3575
 					 */
3576
-					$is_enable_signup = get_option( 'users_can_register' );
3576
+					$is_enable_signup = get_option('users_can_register');
3577 3577
 					
3578
-					if ( $is_enable_signup ) {
3578
+					if ($is_enable_signup) {
3579 3579
 					?>
3580
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3580
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3581 3581
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3582 3582
 
3583 3583
 					<?php
@@ -3588,7 +3588,7 @@  discard block
 block discarded – undo
3588 3588
 					 * @since 1.0.0
3589 3589
 					 */
3590 3590
 					?>
3591
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3591
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3592 3592
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3593 3593
 		</form>
3594 3594
 		<?php
@@ -3597,7 +3597,7 @@  discard block
 block discarded – undo
3597 3597
 		 *
3598 3598
 		 * @since 1.6.6
3599 3599
 		 */
3600
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3600
+		do_action('geodir_after_loginwidget_form_logged_out');
3601 3601
 	}
3602 3602
 
3603 3603
 	echo $after_widget;
@@ -3619,14 +3619,14 @@  discard block
 block discarded – undo
3619 3619
  *                                         after_widget.
3620 3620
  * @param array|string $instance           The settings for the particular instance of the widget.
3621 3621
  */
3622
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3622
+function geodir_popular_postview_output($args = '', $instance = '') {
3623 3623
 	global $gd_session;
3624 3624
 
3625 3625
 	// prints the widget
3626
-	extract( $args, EXTR_SKIP );
3626
+	extract($args, EXTR_SKIP);
3627 3627
 
3628 3628
 	/** This filter is documented in geodirectory_widgets.php */
3629
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3629
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3630 3630
 	/**
3631 3631
 	 * Filter the widget post type.
3632 3632
 	 *
@@ -3634,7 +3634,7 @@  discard block
 block discarded – undo
3634 3634
 	 *
3635 3635
 	 * @param string $instance ['post_type'] Post type of listing.
3636 3636
 	 */
3637
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3637
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3638 3638
 	/**
3639 3639
 	 * Filter the widget's term.
3640 3640
 	 *
@@ -3642,7 +3642,7 @@  discard block
 block discarded – undo
3642 3642
 	 *
3643 3643
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3644 3644
 	 */
3645
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3645
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3646 3646
 	/**
3647 3647
 	 * Filter the widget listings limit.
3648 3648
 	 *
@@ -3650,7 +3650,7 @@  discard block
 block discarded – undo
3650 3650
 	 *
3651 3651
 	 * @param string $instance ['post_number'] Number of listings to display.
3652 3652
 	 */
3653
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3653
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3654 3654
 	/**
3655 3655
 	 * Filter widget's "layout" type.
3656 3656
 	 *
@@ -3658,7 +3658,7 @@  discard block
 block discarded – undo
3658 3658
 	 *
3659 3659
 	 * @param string $instance ['layout'] Widget layout type.
3660 3660
 	 */
3661
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3661
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3662 3662
 	/**
3663 3663
 	 * Filter widget's "add_location_filter" value.
3664 3664
 	 *
@@ -3666,7 +3666,7 @@  discard block
 block discarded – undo
3666 3666
 	 *
3667 3667
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3668 3668
 	 */
3669
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3669
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3670 3670
 	/**
3671 3671
 	 * Filter widget's listing width.
3672 3672
 	 *
@@ -3674,7 +3674,7 @@  discard block
 block discarded – undo
3674 3674
 	 *
3675 3675
 	 * @param string $instance ['listing_width'] Listing width.
3676 3676
 	 */
3677
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3677
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3678 3678
 	/**
3679 3679
 	 * Filter widget's "list_sort" type.
3680 3680
 	 *
@@ -3682,36 +3682,36 @@  discard block
 block discarded – undo
3682 3682
 	 *
3683 3683
 	 * @param string $instance ['list_sort'] Listing sort by type.
3684 3684
 	 */
3685
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3686
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3685
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3686
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3687 3687
 
3688 3688
 	// set post type to current viewing post type
3689
-	if ( $use_viewing_post_type ) {
3689
+	if ($use_viewing_post_type) {
3690 3690
 		$current_post_type = geodir_get_current_posttype();
3691
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3691
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3692 3692
 			$post_type = $current_post_type;
3693 3693
 			$category  = array(); // old post type category will not work for current changed post type
3694 3694
 		}
3695 3695
 	}
3696 3696
 	// replace widget title dynamically
3697
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3698
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3697
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3698
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3699 3699
 
3700
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3701
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3700
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3701
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3702 3702
     
3703 3703
 	$categories = $category;
3704
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3705
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3704
+	if (!empty($category) && $category[0] != '0') {
3705
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3706 3706
 		
3707 3707
 		######### WPML #########
3708
-		if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
3709
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3708
+		if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
3709
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3710 3710
 		}
3711 3711
 		######### WPML #########
3712 3712
 	}
3713 3713
 
3714
-	if ( isset( $instance['character_count'] ) ) {
3714
+	if (isset($instance['character_count'])) {
3715 3715
 		/**
3716 3716
 		 * Filter the widget's excerpt character count.
3717 3717
 		 *
@@ -3719,38 +3719,38 @@  discard block
 block discarded – undo
3719 3719
 		 *
3720 3720
 		 * @param int $instance ['character_count'] Excerpt character count.
3721 3721
 		 */
3722
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3722
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3723 3723
 	} else {
3724 3724
 		$character_count = '';
3725 3725
 	}
3726 3726
 
3727
-	if ( empty( $title ) || $title == 'All' ) {
3728
-		$post_type_name = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3729
-		$title = !empty( $title ) ? wp_sprintf( __( 'All %s', 'geodirectory' ), $post_type_name ) : $post_type_name;
3727
+	if (empty($title) || $title == 'All') {
3728
+		$post_type_name = __(get_post_type_plural_label($post_type), 'geodirectory');
3729
+		$title = !empty($title) ? wp_sprintf(__('All %s', 'geodirectory'), $post_type_name) : $post_type_name;
3730 3730
 	}
3731 3731
 
3732 3732
 	$location_url = array();
3733
-	$city         = get_query_var( 'gd_city' );
3734
-	if ( ! empty( $city ) ) {
3735
-		$country = get_query_var( 'gd_country' );
3736
-		$region  = get_query_var( 'gd_region' );
3733
+	$city         = get_query_var('gd_city');
3734
+	if (!empty($city)) {
3735
+		$country = get_query_var('gd_country');
3736
+		$region  = get_query_var('gd_region');
3737 3737
 
3738
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3738
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3739 3739
 
3740
-		if ( $geodir_show_location_url == 'all' ) {
3741
-			if ( $country != '' ) {
3740
+		if ($geodir_show_location_url == 'all') {
3741
+			if ($country != '') {
3742 3742
 				$location_url[] = $country;
3743 3743
 			}
3744 3744
 
3745
-			if ( $region != '' ) {
3745
+			if ($region != '') {
3746 3746
 				$location_url[] = $region;
3747 3747
 			}
3748
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3749
-			if ( $country != '' ) {
3748
+		} else if ($geodir_show_location_url == 'country_city') {
3749
+			if ($country != '') {
3750 3750
 				$location_url[] = $country;
3751 3751
 			}
3752
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3753
-			if ( $region != '' ) {
3752
+		} else if ($geodir_show_location_url == 'region_city') {
3753
+			if ($region != '') {
3754 3754
 				$location_url[] = $region;
3755 3755
 			}
3756 3756
 		}
@@ -3758,37 +3758,37 @@  discard block
 block discarded – undo
3758 3758
 		$location_url[] = $city;
3759 3759
 	}
3760 3760
 
3761
-	$location_url  = implode( '/', $location_url );
3761
+	$location_url  = implode('/', $location_url);
3762 3762
 	$skip_location = false;
3763
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3763
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3764 3764
 		$skip_location = true;
3765
-		$gd_session->un_set( 'gd_multi_location' );
3765
+		$gd_session->un_set('gd_multi_location');
3766 3766
 	}
3767 3767
 
3768
-	if ( get_option( 'permalink_structure' ) ) {
3769
-		$viewall_url = get_post_type_archive_link( $post_type );
3768
+	if (get_option('permalink_structure')) {
3769
+		$viewall_url = get_post_type_archive_link($post_type);
3770 3770
 	} else {
3771
-		$viewall_url = get_post_type_archive_link( $post_type );
3771
+		$viewall_url = get_post_type_archive_link($post_type);
3772 3772
 	}
3773 3773
 
3774
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3774
+	if (!empty($category) && $category[0] != '0') {
3775 3775
 		global $geodir_add_location_url;
3776 3776
 
3777 3777
 		$geodir_add_location_url = '0';
3778 3778
 
3779
-		if ( $add_location_filter != '0' ) {
3779
+		if ($add_location_filter != '0') {
3780 3780
 			$geodir_add_location_url = '1';
3781 3781
 		}
3782 3782
 
3783
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3783
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3784 3784
 
3785 3785
 		$geodir_add_location_url = null;
3786 3786
 	}
3787
-	if ( $skip_location ) {
3788
-		$gd_session->set( 'gd_multi_location', 1 );
3787
+	if ($skip_location) {
3788
+		$gd_session->set('gd_multi_location', 1);
3789 3789
 	}
3790 3790
 
3791
-	if ( is_wp_error( $viewall_url ) ) {
3791
+	if (is_wp_error($viewall_url)) {
3792 3792
 		$viewall_url = '';
3793 3793
 	}
3794 3794
 
@@ -3800,43 +3800,43 @@  discard block
 block discarded – undo
3800 3800
 		'order_by'       => $list_sort
3801 3801
 	);
3802 3802
 
3803
-	if ( $character_count ) {
3803
+	if ($character_count) {
3804 3804
 		$query_args['excerpt_length'] = $character_count;
3805 3805
 	}
3806 3806
 
3807
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3807
+	if (!empty($instance['show_featured_only'])) {
3808 3808
 		$query_args['show_featured_only'] = 1;
3809 3809
 	}
3810 3810
 
3811
-	if ( ! empty( $instance['show_special_only'] ) ) {
3811
+	if (!empty($instance['show_special_only'])) {
3812 3812
 		$query_args['show_special_only'] = 1;
3813 3813
 	}
3814 3814
 
3815
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3815
+	if (!empty($instance['with_pics_only'])) {
3816 3816
 		$query_args['with_pics_only']      = 0;
3817 3817
 		$query_args['featured_image_only'] = 1;
3818 3818
 	}
3819 3819
 
3820
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3820
+	if (!empty($instance['with_videos_only'])) {
3821 3821
 		$query_args['with_videos_only'] = 1;
3822 3822
 	}
3823
-	$hide_if_empty = ! empty( $instance['hide_if_empty'] ) ? true : false;
3823
+	$hide_if_empty = !empty($instance['hide_if_empty']) ? true : false;
3824 3824
 
3825
-	if ( ! empty( $categories ) && $categories[0] != '0' && !empty( $category_taxonomy ) ) {
3825
+	if (!empty($categories) && $categories[0] != '0' && !empty($category_taxonomy)) {
3826 3826
 		$tax_query = array(
3827 3827
 			'taxonomy' => $category_taxonomy[0],
3828 3828
 			'field'    => 'id',
3829 3829
 			'terms'    => $category
3830 3830
 		);
3831 3831
 
3832
-		$query_args['tax_query'] = array( $tax_query );
3832
+		$query_args['tax_query'] = array($tax_query);
3833 3833
 	}
3834 3834
 
3835 3835
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3836 3836
 
3837
-	$widget_listings = geodir_get_widget_listings( $query_args );
3837
+	$widget_listings = geodir_get_widget_listings($query_args);
3838 3838
     
3839
-	if ( $hide_if_empty && empty( $widget_listings ) ) {
3839
+	if ($hide_if_empty && empty($widget_listings)) {
3840 3840
 		return;
3841 3841
 	}
3842 3842
     
@@ -3851,11 +3851,11 @@  discard block
 block discarded – undo
3851 3851
 		 *
3852 3852
 		 * @since 1.0.0
3853 3853
 		 */
3854
-		do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3854
+		do_action('geodir_before_view_all_link_in_widget'); ?>
3855 3855
 		<div class="geodir_list_heading clearfix">
3856
-			<?php echo $before_title . $title . $after_title; ?>
3856
+			<?php echo $before_title.$title.$after_title; ?>
3857 3857
 			<a href="<?php echo $viewall_url; ?>"
3858
-			   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3858
+			   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3859 3859
 		</div>
3860 3860
 		<?php
3861 3861
 		/**
@@ -3863,10 +3863,10 @@  discard block
 block discarded – undo
3863 3863
 		 *
3864 3864
 		 * @since 1.0.0
3865 3865
 		 */
3866
-		do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3866
+		do_action('geodir_after_view_all_link_in_widget'); ?>
3867 3867
 		<?php
3868
-		if ( strstr( $layout, 'gridview' ) ) {
3869
-			$listing_view_exp        = explode( '_', $layout );
3868
+		if (strstr($layout, 'gridview')) {
3869
+			$listing_view_exp        = explode('_', $layout);
3870 3870
 			$gridview_columns_widget = $layout;
3871 3871
 			$layout                  = $listing_view_exp[0];
3872 3872
 		} else {
@@ -3877,8 +3877,8 @@  discard block
 block discarded – undo
3877 3877
 		 *
3878 3878
 		 * @since 1.0.0
3879 3879
 		 */
3880
-		$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3881
-		if ( ! isset( $character_count ) ) {
3880
+		$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3881
+		if (!isset($character_count)) {
3882 3882
 			/**
3883 3883
 			 * Filter the widget's excerpt character count.
3884 3884
 			 *
@@ -3886,7 +3886,7 @@  discard block
 block discarded – undo
3886 3886
 			 *
3887 3887
 			 * @param int $instance ['character_count'] Excerpt character count.
3888 3888
 			 */
3889
-			$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3889
+			$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3890 3890
 		}
3891 3891
 
3892 3892
 		global $post, $map_jason, $map_canvas_arr;
@@ -3901,13 +3901,13 @@  discard block
 block discarded – undo
3901 3901
 		 *
3902 3902
 		 * @since 1.0.0
3903 3903
 		 */
3904
-		include( $template );
3904
+		include($template);
3905 3905
 
3906 3906
 		$geodir_is_widget_listing = false;
3907 3907
 
3908 3908
 		$GLOBALS['post'] = $current_post;
3909
-		if ( ! empty( $current_post ) ) {
3910
-			setup_postdata( $current_post );
3909
+		if (!empty($current_post)) {
3910
+			setup_postdata($current_post);
3911 3911
 		}
3912 3912
 		$map_jason      = $current_map_jason;
3913 3913
 		$map_canvas_arr = $current_map_canvas_arr;
@@ -3936,12 +3936,12 @@  discard block
 block discarded – undo
3936 3936
  *
3937 3937
  * @return int Reviews count.
3938 3938
  */
3939
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3939
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3940 3940
 	global $wpdb, $plugin_prefix;
3941 3941
 
3942
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3942
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3943 3943
 
3944
-	$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 . ")";
3944
+	$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.")";
3945 3945
 
3946 3946
 	/**
3947 3947
 	 * Filter count review sql query.
@@ -3953,9 +3953,9 @@  discard block
 block discarded – undo
3953 3953
 	 * @param int $taxonomy     The taxonomy Id.
3954 3954
 	 * @param string $post_type The post type.
3955 3955
 	 */
3956
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3956
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3957 3957
 
3958
-	$count = $wpdb->get_var( $sql );
3958
+	$count = $wpdb->get_var($sql);
3959 3959
 
3960 3960
 	return $count;
3961 3961
 }
@@ -3973,7 +3973,7 @@  discard block
 block discarded – undo
3973 3973
  *
3974 3974
  * @return array Term array data.
3975 3975
  */
3976
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3976
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3977 3977
 	/**
3978 3978
 	 * Filter review count option data.
3979 3979
 	 *
@@ -3983,78 +3983,78 @@  discard block
 block discarded – undo
3983 3983
 	 * @param bool $force_update Force update option value?. Default.false.
3984 3984
 	 * @param int $post_ID       The post id to update if any.
3985 3985
 	 */
3986
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3987
-	if ( ! empty( $option_data ) ) {
3986
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3987
+	if (!empty($option_data)) {
3988 3988
 		return $option_data;
3989 3989
 	}
3990 3990
 
3991
-	$option_data = get_option( 'geodir_global_review_count' );
3991
+	$option_data = get_option('geodir_global_review_count');
3992 3992
 
3993
-	if ( ! $option_data || $force_update ) {
3994
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3993
+	if (!$option_data || $force_update) {
3994
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3995 3995
 			global $gd_session;
3996 3996
 			$term_array = (array) $option_data;
3997
-			$post_type  = get_post_type( $post_ID );
3998
-			$taxonomy   = $post_type . 'category';
3999
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
4000
-
4001
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
4002
-				foreach ( $terms as $term_id ) {
4003
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4004
-					$children               = get_term_children( $term_id, $taxonomy );
4005
-					$term_array[ $term_id ] = $count;
3997
+			$post_type  = get_post_type($post_ID);
3998
+			$taxonomy   = $post_type.'category';
3999
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
4000
+
4001
+			if (!empty($terms) && !is_wp_error($terms)) {
4002
+				foreach ($terms as $term_id) {
4003
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4004
+					$children               = get_term_children($term_id, $taxonomy);
4005
+					$term_array[$term_id] = $count;
4006 4006
 				}
4007 4007
 			}
4008 4008
 
4009
-			$session_listing = $gd_session->get( 'listing' );
4009
+			$session_listing = $gd_session->get('listing');
4010 4010
 
4011 4011
 			$terms = array();
4012
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
4013
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
4014
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
4015
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
4012
+			if (isset($_POST['post_category'][$taxonomy])) {
4013
+				$terms = (array) $_POST['post_category'][$taxonomy];
4014
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
4015
+				$terms = (array) $session_listing['post_category'][$taxonomy];
4016 4016
 			}
4017 4017
 
4018
-			if ( ! empty( $terms ) ) {
4019
-				foreach ( $terms as $term_id ) {
4020
-					if ( $term_id > 0 ) {
4021
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4022
-						$children               = get_term_children( $term_id, $taxonomy );
4023
-						$term_array[ $term_id ] = $count;
4018
+			if (!empty($terms)) {
4019
+				foreach ($terms as $term_id) {
4020
+					if ($term_id > 0) {
4021
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4022
+						$children               = get_term_children($term_id, $taxonomy);
4023
+						$term_array[$term_id] = $count;
4024 4024
 					}
4025 4025
 				}
4026 4026
 			}
4027 4027
 		} else { // Update reviews count for all post categories.
4028 4028
 			$term_array = array();
4029 4029
 			$post_types = geodir_get_posttypes();
4030
-			foreach ( $post_types as $post_type ) {
4030
+			foreach ($post_types as $post_type) {
4031 4031
 
4032
-				$taxonomy = geodir_get_taxonomies( $post_type );
4032
+				$taxonomy = geodir_get_taxonomies($post_type);
4033 4033
 				$taxonomy = $taxonomy[0];
4034 4034
 
4035 4035
 				$args = array(
4036 4036
 					'hide_empty' => false
4037 4037
 				);
4038 4038
 
4039
-				$terms = get_terms( $taxonomy, $args );
4039
+				$terms = get_terms($taxonomy, $args);
4040 4040
 
4041
-				foreach ( $terms as $term ) {
4042
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
4043
-					$children = get_term_children( $term->term_id, $taxonomy );
4041
+				foreach ($terms as $term) {
4042
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
4043
+					$children = get_term_children($term->term_id, $taxonomy);
4044 4044
 					/*if ( is_array( $children ) ) {
4045 4045
                         foreach ( $children as $child_id ) {
4046 4046
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
4047 4047
                             $count = $count + $child_count;
4048 4048
                         }
4049 4049
                     }*/
4050
-					$term_array[ $term->term_id ] = $count;
4050
+					$term_array[$term->term_id] = $count;
4051 4051
 				}
4052 4052
 			}
4053 4053
 		}
4054 4054
 
4055
-		update_option( 'geodir_global_review_count', $term_array );
4055
+		update_option('geodir_global_review_count', $term_array);
4056 4056
 		//clear cache
4057
-		wp_cache_delete( 'geodir_global_review_count' );
4057
+		wp_cache_delete('geodir_global_review_count');
4058 4058
 
4059 4059
 		return $term_array;
4060 4060
 	} else {
@@ -4070,39 +4070,39 @@  discard block
 block discarded – undo
4070 4070
  * @package GeoDirectory
4071 4071
  * @return bool
4072 4072
  */
4073
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4074
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4073
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4074
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4075 4075
 		return; // do not run if importing listings
4076 4076
 	}
4077 4077
 
4078
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4078
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4079 4079
 		return;
4080 4080
 	}
4081 4081
 
4082 4082
 	$post_ID = 0;
4083
-	if ( ! empty( $post ) ) {
4084
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4083
+	if (!empty($post)) {
4084
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4085 4085
 			return;
4086 4086
 		}
4087 4087
 
4088
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4088
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4089 4089
 			return;
4090 4090
 		}
4091 4091
 
4092
-		if ( ! empty( $post->ID ) ) {
4092
+		if (!empty($post->ID)) {
4093 4093
 			$post_ID = $post->ID;
4094 4094
 		}
4095 4095
 	}
4096 4096
 
4097
-	if ( $new_status != $old_status ) {
4098
-		geodir_count_reviews_by_terms( true, $post_ID );
4097
+	if ($new_status != $old_status) {
4098
+		geodir_count_reviews_by_terms(true, $post_ID);
4099 4099
 	}
4100 4100
 
4101 4101
 	return true;
4102 4102
 }
4103 4103
 
4104
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4105
-	geodir_count_reviews_by_terms( true, $post_id );
4104
+function geodir_term_review_count_force_update_single_post($post_id) {
4105
+	geodir_count_reviews_by_terms(true, $post_id);
4106 4106
 }
4107 4107
 
4108 4108
 /*-----------------------------------------------------------------------------------*/
@@ -4119,11 +4119,11 @@  discard block
 block discarded – undo
4119 4119
  *
4120 4120
  * @return int Post count.
4121 4121
  */
4122
-function geodir_count_posts_by_term( $data, $term ) {
4122
+function geodir_count_posts_by_term($data, $term) {
4123 4123
 
4124
-	if ( $data ) {
4125
-		if ( isset( $data[ $term->term_id ] ) ) {
4126
-			return $data[ $term->term_id ];
4124
+	if ($data) {
4125
+		if (isset($data[$term->term_id])) {
4126
+			return $data[$term->term_id];
4127 4127
 		} else {
4128 4128
 			return 0;
4129 4129
 		}
@@ -4140,8 +4140,8 @@  discard block
 block discarded – undo
4140 4140
  * param array $terms An array of term objects.
4141 4141
  * @return array Sorted terms array.
4142 4142
  */
4143
-function geodir_sort_terms_by_count( $terms ) {
4144
-	usort( $terms, "geodir_sort_by_count_obj" );
4143
+function geodir_sort_terms_by_count($terms) {
4144
+	usort($terms, "geodir_sort_by_count_obj");
4145 4145
 
4146 4146
 	return $terms;
4147 4147
 }
@@ -4156,8 +4156,8 @@  discard block
 block discarded – undo
4156 4156
  *
4157 4157
  * @return array Sorted terms array.
4158 4158
  */
4159
-function geodir_sort_terms_by_review_count( $terms ) {
4160
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4159
+function geodir_sort_terms_by_review_count($terms) {
4160
+	usort($terms, "geodir_sort_by_review_count_obj");
4161 4161
 
4162 4162
 	return $terms;
4163 4163
 }
@@ -4173,12 +4173,12 @@  discard block
 block discarded – undo
4173 4173
  *
4174 4174
  * @return array Sorted terms array.
4175 4175
  */
4176
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4177
-	if ( $sort == 'count' ) {
4178
-		return geodir_sort_terms_by_count( $terms );
4176
+function geodir_sort_terms($terms, $sort = 'count') {
4177
+	if ($sort == 'count') {
4178
+		return geodir_sort_terms_by_count($terms);
4179 4179
 	}
4180
-	if ( $sort == 'review_count' ) {
4181
-		return geodir_sort_terms_by_review_count( $terms );
4180
+	if ($sort == 'review_count') {
4181
+		return geodir_sort_terms_by_review_count($terms);
4182 4182
 	}
4183 4183
 	return $terms;
4184 4184
 }
@@ -4197,7 +4197,7 @@  discard block
 block discarded – undo
4197 4197
  *
4198 4198
  * @return bool
4199 4199
  */
4200
-function geodir_sort_by_count( $a, $b ) {
4200
+function geodir_sort_by_count($a, $b) {
4201 4201
 	return $a['count'] < $b['count'];
4202 4202
 }
4203 4203
 
@@ -4212,7 +4212,7 @@  discard block
 block discarded – undo
4212 4212
  *
4213 4213
  * @return bool
4214 4214
  */
4215
-function geodir_sort_by_count_obj( $a, $b ) {
4215
+function geodir_sort_by_count_obj($a, $b) {
4216 4216
 	return $a->count < $b->count;
4217 4217
 }
4218 4218
 
@@ -4227,7 +4227,7 @@  discard block
 block discarded – undo
4227 4227
  *
4228 4228
  * @return bool
4229 4229
  */
4230
-function geodir_sort_by_review_count_obj( $a, $b ) {
4230
+function geodir_sort_by_review_count_obj($a, $b) {
4231 4231
 	return $a->review_count < $b->review_count;
4232 4232
 }
4233 4233
 
@@ -4244,35 +4244,35 @@  discard block
 block discarded – undo
4244 4244
 	 * @since   1.4.2
4245 4245
 	 * @package GeoDirectory
4246 4246
 	 */
4247
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4247
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4248 4248
 
4249
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4250
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4249
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4250
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4251 4251
 
4252 4252
 	/**
4253 4253
 	 * Define language constants.
4254 4254
 	 *
4255 4255
 	 * @since 1.0.0
4256 4256
 	 */
4257
-	require_once( geodir_plugin_path() . '/language.php' );
4257
+	require_once(geodir_plugin_path().'/language.php');
4258 4258
 
4259
-	$language_file = geodir_plugin_path() . '/db-language.php';
4259
+	$language_file = geodir_plugin_path().'/db-language.php';
4260 4260
 
4261 4261
 	// Load language string file if not created yet
4262
-	if ( ! file_exists( $language_file ) ) {
4262
+	if (!file_exists($language_file)) {
4263 4263
 		geodirectory_load_db_language();
4264 4264
 	}
4265 4265
 
4266
-	if ( file_exists( $language_file ) ) {
4266
+	if (file_exists($language_file)) {
4267 4267
 		/**
4268 4268
 		 * Language strings from database.
4269 4269
 		 *
4270 4270
 		 * @since 1.4.2
4271 4271
 		 */
4272 4272
 		try {
4273
-			require_once( $language_file );
4274
-		} catch ( Exception $e ) {
4275
-			error_log( 'Language Error: ' . $e->getMessage() );
4273
+			require_once($language_file);
4274
+		} catch (Exception $e) {
4275
+			error_log('Language Error: '.$e->getMessage());
4276 4276
 		}
4277 4277
 	}
4278 4278
 }
@@ -4289,19 +4289,19 @@  discard block
 block discarded – undo
4289 4289
  */
4290 4290
 function geodirectory_load_db_language() {
4291 4291
 	global $wp_filesystem;
4292
-	if ( empty( $wp_filesystem ) ) {
4293
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4292
+	if (empty($wp_filesystem)) {
4293
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4294 4294
 		WP_Filesystem();
4295 4295
 		global $wp_filesystem;
4296 4296
 	}
4297 4297
 
4298
-	$language_file = geodir_plugin_path() . '/db-language.php';
4298
+	$language_file = geodir_plugin_path().'/db-language.php';
4299 4299
 
4300
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4300
+	if (is_file($language_file) && !is_writable($language_file)) {
4301 4301
 		return false;
4302 4302
 	} // Not possible to create.
4303 4303
 
4304
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4304
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4305 4305
 		return false;
4306 4306
 	} // Not possible to create.
4307 4307
 
@@ -4315,9 +4315,9 @@  discard block
 block discarded – undo
4315 4315
 	 *
4316 4316
 	 * @param array $contents_strings Array of strings.
4317 4317
 	 */
4318
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4318
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4319 4319
 
4320
-	$contents_strings = array_unique( $contents_strings );
4320
+	$contents_strings = array_unique($contents_strings);
4321 4321
 
4322 4322
 	$contents_head   = array();
4323 4323
 	$contents_head[] = "<?php";
@@ -4334,21 +4334,21 @@  discard block
 block discarded – undo
4334 4334
 	$contents_foot[] = "";
4335 4335
 	$contents_foot[] = "";
4336 4336
 
4337
-	$contents = implode( PHP_EOL, $contents_head );
4337
+	$contents = implode(PHP_EOL, $contents_head);
4338 4338
 
4339
-	if ( ! empty( $contents_strings ) ) {
4340
-		foreach ( $contents_strings as $string ) {
4341
-			if ( is_scalar( $string ) && $string != '' ) {
4342
-				$string = str_replace( "'", "\'", $string );
4343
-				geodir_wpml_register_string( $string );
4344
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4339
+	if (!empty($contents_strings)) {
4340
+		foreach ($contents_strings as $string) {
4341
+			if (is_scalar($string) && $string != '') {
4342
+				$string = str_replace("'", "\'", $string);
4343
+				geodir_wpml_register_string($string);
4344
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4345 4345
 			}
4346 4346
 		}
4347 4347
 	}
4348 4348
 
4349
-	$contents .= implode( PHP_EOL, $contents_foot );
4349
+	$contents .= implode(PHP_EOL, $contents_foot);
4350 4350
 
4351
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4351
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4352 4352
 		return false;
4353 4353
 	} // Failure; could not write file.
4354 4354
 
@@ -4369,49 +4369,49 @@  discard block
 block discarded – undo
4369 4369
  *
4370 4370
  * @return array Translation texts.
4371 4371
  */
4372
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4372
+function geodir_load_custom_field_translation($translation_texts = array()) {
4373 4373
 	global $wpdb;
4374 4374
 
4375 4375
 	// Custom fields table
4376
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4377
-	$rows = $wpdb->get_results( $sql );
4376
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4377
+	$rows = $wpdb->get_results($sql);
4378 4378
 
4379
-	if ( ! empty( $rows ) ) {
4380
-		foreach ( $rows as $row ) {
4381
-			if ( ! empty( $row->admin_title ) ) {
4382
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4379
+	if (!empty($rows)) {
4380
+		foreach ($rows as $row) {
4381
+			if (!empty($row->admin_title)) {
4382
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4383 4383
 			}
4384 4384
 
4385
-			if ( ! empty( $row->admin_desc ) ) {
4386
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4385
+			if (!empty($row->admin_desc)) {
4386
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4387 4387
 			}
4388 4388
 
4389
-			if ( ! empty( $row->site_title ) ) {
4390
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4389
+			if (!empty($row->site_title)) {
4390
+				$translation_texts[] = stripslashes_deep($row->site_title);
4391 4391
 			}
4392 4392
 
4393
-			if ( ! empty( $row->clabels ) ) {
4394
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4393
+			if (!empty($row->clabels)) {
4394
+				$translation_texts[] = stripslashes_deep($row->clabels);
4395 4395
 			}
4396 4396
 
4397
-			if ( ! empty( $row->required_msg ) ) {
4398
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4397
+			if (!empty($row->required_msg)) {
4398
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4399 4399
 			}
4400 4400
             
4401
-			if ( ! empty( $row->validation_msg ) ) {
4402
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4401
+			if (!empty($row->validation_msg)) {
4402
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4403 4403
 			}
4404 4404
 
4405
-			if ( ! empty( $row->default_value ) ) {
4406
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4405
+			if (!empty($row->default_value)) {
4406
+				$translation_texts[] = stripslashes_deep($row->default_value);
4407 4407
 			}
4408 4408
 
4409
-			if ( ! empty( $row->option_values ) ) {
4410
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4409
+			if (!empty($row->option_values)) {
4410
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4411 4411
 
4412
-				if ( ! empty( $option_values ) ) {
4413
-					foreach ( $option_values as $option_value ) {
4414
-						if ( ! empty( $option_value['label'] ) ) {
4412
+				if (!empty($option_values)) {
4413
+					foreach ($option_values as $option_value) {
4414
+						if (!empty($option_value['label'])) {
4415 4415
 							$translation_texts[] = $option_value['label'];
4416 4416
 						}
4417 4417
 					}
@@ -4421,56 +4421,56 @@  discard block
 block discarded – undo
4421 4421
 	}
4422 4422
 
4423 4423
 	// Custom sorting fields table
4424
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4425
-	$rows = $wpdb->get_results( $sql );
4424
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4425
+	$rows = $wpdb->get_results($sql);
4426 4426
 
4427
-	if ( ! empty( $rows ) ) {
4428
-		foreach ( $rows as $row ) {
4429
-			if ( ! empty( $row->site_title ) ) {
4430
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4427
+	if (!empty($rows)) {
4428
+		foreach ($rows as $row) {
4429
+			if (!empty($row->site_title)) {
4430
+				$translation_texts[] = stripslashes_deep($row->site_title);
4431 4431
 			}
4432 4432
 
4433
-			if ( ! empty( $row->asc_title ) ) {
4434
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4433
+			if (!empty($row->asc_title)) {
4434
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4435 4435
 			}
4436 4436
 
4437
-			if ( ! empty( $row->desc_title ) ) {
4438
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4437
+			if (!empty($row->desc_title)) {
4438
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4439 4439
 			}
4440 4440
 		}
4441 4441
 	}
4442 4442
 
4443 4443
 	// Advance search filter fields table
4444
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4445
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4446
-		$rows = $wpdb->get_results( $sql );
4447
-
4448
-		if ( ! empty( $rows ) ) {
4449
-			foreach ( $rows as $row ) {
4450
-				if ( ! empty( $row->field_site_name ) ) {
4451
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4444
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4445
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4446
+		$rows = $wpdb->get_results($sql);
4447
+
4448
+		if (!empty($rows)) {
4449
+			foreach ($rows as $row) {
4450
+				if (!empty($row->field_site_name)) {
4451
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4452 4452
 				}
4453 4453
 
4454
-				if ( ! empty( $row->front_search_title ) ) {
4455
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4454
+				if (!empty($row->front_search_title)) {
4455
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4456 4456
 				}
4457 4457
 
4458
-				if ( ! empty( $row->first_search_text ) ) {
4459
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4458
+				if (!empty($row->first_search_text)) {
4459
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4460 4460
 				}
4461 4461
 
4462
-				if ( ! empty( $row->last_search_text ) ) {
4463
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4462
+				if (!empty($row->last_search_text)) {
4463
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4464 4464
 				}
4465 4465
 
4466
-				if ( ! empty( $row->field_desc ) ) {
4467
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4466
+				if (!empty($row->field_desc)) {
4467
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4468 4468
 				}
4469 4469
 			}
4470 4470
 		}
4471 4471
 	}
4472 4472
 
4473
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4473
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4474 4474
 
4475 4475
 	return $translation_texts;
4476 4476
 }
@@ -4492,7 +4492,7 @@  discard block
 block discarded – undo
4492 4492
 	 *
4493 4493
 	 * @param array $geodir_allowed_mime_types and file extensions.
4494 4494
 	 */
4495
-	return apply_filters( 'geodir_allowed_mime_types', array(
4495
+	return apply_filters('geodir_allowed_mime_types', array(
4496 4496
 			'Image'       => array( // Image formats.
4497 4497
 				'jpg'  => 'image/jpeg',
4498 4498
 				'jpe'  => 'image/jpeg',
@@ -4561,18 +4561,18 @@  discard block
 block discarded – undo
4561 4561
  *
4562 4562
  * @return string User display name.
4563 4563
  */
4564
-function geodir_get_client_name( $user_id ) {
4564
+function geodir_get_client_name($user_id) {
4565 4565
 	$client_name = '';
4566 4566
 
4567
-	$user_data = get_userdata( $user_id );
4567
+	$user_data = get_userdata($user_id);
4568 4568
 
4569
-	if ( ! empty( $user_data ) ) {
4570
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4571
-			$client_name = trim( $user_data->display_name );
4572
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4573
-			$client_name = trim( $user_data->user_nicename );
4569
+	if (!empty($user_data)) {
4570
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4571
+			$client_name = trim($user_data->display_name);
4572
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4573
+			$client_name = trim($user_data->user_nicename);
4574 4574
 		} else {
4575
-			$client_name = trim( $user_data->user_login );
4575
+			$client_name = trim($user_data->user_login);
4576 4576
 		}
4577 4577
 	}
4578 4578
 
@@ -4580,17 +4580,17 @@  discard block
 block discarded – undo
4580 4580
 }
4581 4581
 
4582 4582
 
4583
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4583
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4584 4584
 /*
4585 4585
  * Add location variables to wpseo replacements.
4586 4586
  *
4587 4587
  * @since 1.5.4
4588 4588
  */
4589
-function geodir_wpseo_replacements( $vars ) {
4589
+function geodir_wpseo_replacements($vars) {
4590 4590
 
4591 4591
 	// location variables
4592 4592
 	$gd_post_type   = geodir_get_current_posttype();
4593
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4593
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4594 4594
 	/**
4595 4595
 	 * Filter the title variables location variables array
4596 4596
 	 *
@@ -4600,7 +4600,7 @@  discard block
 block discarded – undo
4600 4600
 	 * @param array $location_array The array of location variables.
4601 4601
 	 * @param array $vars           The page title variables.
4602 4602
 	 */
4603
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4603
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4604 4604
 
4605 4605
 
4606 4606
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4615,13 +4615,13 @@  discard block
 block discarded – undo
4615 4615
 	 * @param string $vars          The title with variables.
4616 4616
 	 * @param array $location_array The array of location variables.
4617 4617
 	 */
4618
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4618
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4619 4619
 }
4620 4620
 
4621 4621
 
4622
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4623
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4624
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4622
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4623
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4624
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4625 4625
 
4626 4626
 /**
4627 4627
  * Filter the title variables.
@@ -4663,14 +4663,14 @@  discard block
 block discarded – undo
4663 4663
  *
4664 4664
  * @return string Title after filtered variables.
4665 4665
  */
4666
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4666
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4667 4667
 	global $wp, $post;
4668 4668
 
4669
-	if ( ! $gd_page || ! $title ) {
4669
+	if (!$gd_page || !$title) {
4670 4670
 		return $title; // if no a GD page then bail.
4671 4671
 	}
4672 4672
 
4673
-	if ( $sep == '' ) {
4673
+	if ($sep == '') {
4674 4674
 		/**
4675 4675
 		 * Filter the page title separator.
4676 4676
 		 *
@@ -4679,100 +4679,100 @@  discard block
 block discarded – undo
4679 4679
 		 *
4680 4680
 		 * @param string $sep The separator, default: `|`.
4681 4681
 		 */
4682
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4682
+		$sep = apply_filters('geodir_page_title_separator', '|');
4683 4683
 	}
4684 4684
 
4685
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4686
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4685
+	if (strpos($title, '%%title%%') !== false) {
4686
+		$title = str_replace("%%title%%", $post->post_title, $title);
4687 4687
 	}
4688 4688
 
4689
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4690
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4689
+	if (strpos($title, '%%sitename%%') !== false) {
4690
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4691 4691
 	}
4692 4692
 
4693
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4694
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4693
+	if (strpos($title, '%%sitedesc%%') !== false) {
4694
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4695 4695
 	}
4696 4696
 
4697
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4698
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4697
+	if (strpos($title, '%%excerpt%%') !== false) {
4698
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4699 4699
 	}
4700 4700
 
4701
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4702
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4703
-	} else if ( $gd_page == 'add-listing' ) {
4704
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4705
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4706
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4701
+	if ($gd_page == 'search' || $gd_page == 'author') {
4702
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4703
+	} else if ($gd_page == 'add-listing') {
4704
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4705
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4706
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4707 4707
 		$post_type = $post->post_type;
4708 4708
 	} else {
4709
-		$post_type = get_query_var( 'post_type' );
4709
+		$post_type = get_query_var('post_type');
4710 4710
 	}
4711 4711
 
4712
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4712
+	if (strpos($title, '%%pt_single%%') !== false) {
4713 4713
 		$singular_name = '';
4714
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4715
-			$singular_name = __( $singular_name, 'geodirectory' );
4714
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4715
+			$singular_name = __($singular_name, 'geodirectory');
4716 4716
 		}
4717 4717
 
4718
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4718
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4719 4719
 	}
4720 4720
 
4721
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4721
+	if (strpos($title, '%%pt_plural%%') !== false) {
4722 4722
 		$plural_name = '';
4723
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4724
-			$plural_name = __( $plural_name, 'geodirectory' );
4723
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4724
+			$plural_name = __($plural_name, 'geodirectory');
4725 4725
 		}
4726 4726
 
4727
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4727
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4728 4728
 	}
4729 4729
 
4730
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4730
+	if (strpos($title, '%%category%%') !== false) {
4731 4731
 		$cat_name = '';
4732 4732
 
4733
-		if ( $gd_page == 'detail' ) {
4734
-			if ( $post->default_category ) {
4735
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4736
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4733
+		if ($gd_page == 'detail') {
4734
+			if ($post->default_category) {
4735
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4736
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4737 4737
 			}
4738
-		} else if ( $gd_page == 'listing' ) {
4738
+		} else if ($gd_page == 'listing') {
4739 4739
 			$queried_object = get_queried_object();
4740
-			if ( isset( $queried_object->name ) ) {
4740
+			if (isset($queried_object->name)) {
4741 4741
 				$cat_name = $queried_object->name;
4742 4742
 			}
4743 4743
 		}
4744
-		$title = str_replace( "%%category%%", $cat_name, $title );
4744
+		$title = str_replace("%%category%%", $cat_name, $title);
4745 4745
 	}
4746 4746
 
4747
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4747
+	if (strpos($title, '%%tag%%') !== false) {
4748 4748
 		$cat_name = '';
4749 4749
 
4750
-		if ( $gd_page == 'detail' ) {
4751
-			if ( $post->default_category ) {
4752
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4753
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4750
+		if ($gd_page == 'detail') {
4751
+			if ($post->default_category) {
4752
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4753
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4754 4754
 			}
4755
-		} else if ( $gd_page == 'listing' ) {
4755
+		} else if ($gd_page == 'listing') {
4756 4756
 			$queried_object = get_queried_object();
4757
-			if ( isset( $queried_object->name ) ) {
4757
+			if (isset($queried_object->name)) {
4758 4758
 				$cat_name = $queried_object->name;
4759 4759
 			}
4760 4760
 		}
4761
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4761
+		$title = str_replace("%%tag%%", $cat_name, $title);
4762 4762
 	}
4763 4763
 
4764
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4765
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4766
-		$title = str_replace( "%%id%%", $ID, $title );
4764
+	if (strpos($title, '%%id%%') !== false) {
4765
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4766
+		$title = str_replace("%%id%%", $ID, $title);
4767 4767
 	}
4768 4768
 
4769
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4770
-		$title = str_replace( "%%sep%%", $sep, $title );
4769
+	if (strpos($title, '%%sep%%') !== false) {
4770
+		$title = str_replace("%%sep%%", $sep, $title);
4771 4771
 	}
4772 4772
 
4773 4773
 	// location variables
4774 4774
 	$gd_post_type   = geodir_get_current_posttype();
4775
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4775
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4776 4776
 	
4777 4777
 	/**
4778 4778
 	 * Filter the title variables location variables array
@@ -4785,20 +4785,20 @@  discard block
 block discarded – undo
4785 4785
 	 * @param string $gd_page       The page being filtered.
4786 4786
 	 * @param string $sep           The separator, default: `|`.
4787 4787
 	 */
4788
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4788
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4789 4789
 	
4790
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4791
-		if ( get_query_var( 'gd_country_full' ) ) {
4792
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4790
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4791
+		if (get_query_var('gd_country_full')) {
4792
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4793 4793
 		}
4794
-		if ( get_query_var( 'gd_region_full' ) ) {
4795
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4794
+		if (get_query_var('gd_region_full')) {
4795
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4796 4796
 		}
4797
-		if ( get_query_var( 'gd_city_full' ) ) {
4798
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4797
+		if (get_query_var('gd_city_full')) {
4798
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4799 4799
 		}
4800
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4801
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4800
+		if (get_query_var('gd_neighbourhood_full')) {
4801
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4802 4802
 		}
4803 4803
 	}
4804 4804
 	
@@ -4813,57 +4813,57 @@  discard block
 block discarded – undo
4813 4813
 	 * @param string $gd_page       The page being filtered.
4814 4814
 	 * @param string $sep           The separator, default: `|`.
4815 4815
 	 */
4816
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4816
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4817 4817
 	
4818
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4818
+	if (strpos($title, '%%search_term%%') !== false) {
4819 4819
 		$search_term = '';
4820
-		if ( isset( $_REQUEST['s'] ) ) {
4821
-			$search_term = esc_attr( $_REQUEST['s'] );
4820
+		if (isset($_REQUEST['s'])) {
4821
+			$search_term = esc_attr($_REQUEST['s']);
4822 4822
 		}
4823
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4823
+		$title = str_replace("%%search_term%%", $search_term, $title);
4824 4824
 	}
4825 4825
 
4826
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4826
+	if (strpos($title, '%%search_near%%') !== false) {
4827 4827
 		$search_term = '';
4828
-		if ( isset( $_REQUEST['snear'] ) ) {
4829
-			$search_term = esc_attr( $_REQUEST['snear'] );
4828
+		if (isset($_REQUEST['snear'])) {
4829
+			$search_term = esc_attr($_REQUEST['snear']);
4830 4830
 		}
4831
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4831
+		$title = str_replace("%%search_near%%", $search_term, $title);
4832 4832
 	}
4833 4833
 
4834
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4835
-		if ( is_author() ) {
4836
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4834
+	if (strpos($title, '%%name%%') !== false) {
4835
+		if (is_author()) {
4836
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4837 4837
 			$author_name = $curauth->display_name;
4838 4838
 		} else {
4839 4839
 			$author_name = get_the_author();
4840 4840
 		}
4841
-		if ( ! $author_name || $author_name === '' ) {
4841
+		if (!$author_name || $author_name === '') {
4842 4842
 			$queried_object = get_queried_object();
4843 4843
 
4844
-			if ( isset( $queried_object->data->user_nicename ) ) {
4844
+			if (isset($queried_object->data->user_nicename)) {
4845 4845
 				$author_name = $queried_object->data->display_name;
4846 4846
 			}
4847 4847
 		}
4848
-		$title = str_replace( "%%name%%", $author_name, $title );
4848
+		$title = str_replace("%%name%%", $author_name, $title);
4849 4849
 	}
4850 4850
 
4851
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4852
-		$page  = geodir_title_meta_page( $sep );
4853
-		$title = str_replace( "%%page%%", $page, $title );
4851
+	if (strpos($title, '%%page%%') !== false) {
4852
+		$page  = geodir_title_meta_page($sep);
4853
+		$title = str_replace("%%page%%", $page, $title);
4854 4854
 	}
4855
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4855
+	if (strpos($title, '%%pagenumber%%') !== false) {
4856 4856
 		$pagenumber = geodir_title_meta_pagenumber();
4857
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4857
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4858 4858
 	}
4859
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4859
+	if (strpos($title, '%%pagetotal%%') !== false) {
4860 4860
 		$pagetotal = geodir_title_meta_pagetotal();
4861
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4861
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4862 4862
 	}
4863 4863
 
4864
-	$title = wptexturize( $title );
4865
-	$title = convert_chars( $title );
4866
-	$title = esc_html( $title );
4864
+	$title = wptexturize($title);
4865
+	$title = convert_chars($title);
4866
+	$title = esc_html($title);
4867 4867
 
4868 4868
 	/**
4869 4869
 	 * Filter the title variables after standard ones have been filtered.
@@ -4877,7 +4877,7 @@  discard block
 block discarded – undo
4877 4877
 	 * @param string $sep           The separator, default: `|`.
4878 4878
 	 */
4879 4879
 
4880
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4880
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4881 4881
 }
4882 4882
 
4883 4883
 /**
@@ -4890,82 +4890,82 @@  discard block
 block discarded – undo
4890 4890
  *
4891 4891
  * @return array Translation texts.
4892 4892
  */
4893
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4894
-	$gd_post_types = geodir_get_posttypes( 'array' );
4893
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4894
+	$gd_post_types = geodir_get_posttypes('array');
4895 4895
 
4896
-	if ( ! empty( $gd_post_types ) ) {
4897
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4898
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4899
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4900
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4896
+	if (!empty($gd_post_types)) {
4897
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4898
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4899
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4900
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4901 4901
 
4902
-			if ( ! empty( $labels ) ) {
4903
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4902
+			if (!empty($labels)) {
4903
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4904 4904
 					$translation_texts[] = $labels['name'];
4905 4905
 				}
4906
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4906
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4907 4907
 					$translation_texts[] = $labels['singular_name'];
4908 4908
 				}
4909
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4909
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4910 4910
 					$translation_texts[] = $labels['add_new'];
4911 4911
 				}
4912
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4912
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4913 4913
 					$translation_texts[] = $labels['add_new_item'];
4914 4914
 				}
4915
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4915
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4916 4916
 					$translation_texts[] = $labels['edit_item'];
4917 4917
 				}
4918
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4918
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4919 4919
 					$translation_texts[] = $labels['new_item'];
4920 4920
 				}
4921
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4921
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4922 4922
 					$translation_texts[] = $labels['view_item'];
4923 4923
 				}
4924
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4924
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4925 4925
 					$translation_texts[] = $labels['search_items'];
4926 4926
 				}
4927
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4927
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4928 4928
 					$translation_texts[] = $labels['not_found'];
4929 4929
 				}
4930
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4930
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4931 4931
 					$translation_texts[] = $labels['not_found_in_trash'];
4932 4932
 				}
4933
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4933
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4934 4934
 					$translation_texts[] = $labels['label_post_profile'];
4935 4935
 				}
4936
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4936
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4937 4937
 					$translation_texts[] = $labels['label_post_info'];
4938 4938
 				}
4939
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4939
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4940 4940
 					$translation_texts[] = $labels['label_post_images'];
4941 4941
 				}
4942
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4942
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4943 4943
 					$translation_texts[] = $labels['label_post_map'];
4944 4944
 				}
4945
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4945
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4946 4946
 					$translation_texts[] = $labels['label_reviews'];
4947 4947
 				}
4948
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4948
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4949 4949
 					$translation_texts[] = $labels['label_related_listing'];
4950 4950
 				}
4951 4951
 			}
4952 4952
 
4953
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4954
-				$translation_texts[] = normalize_whitespace( $description );
4953
+			if ($description != '' && !in_array($description, $translation_texts)) {
4954
+				$translation_texts[] = normalize_whitespace($description);
4955 4955
 			}
4956 4956
 
4957
-			if ( ! empty( $seo ) ) {
4958
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4959
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4957
+			if (!empty($seo)) {
4958
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4959
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4960 4960
 				}
4961 4961
 
4962
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4963
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4962
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4963
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4964 4964
 				}
4965 4965
 			}
4966 4966
 		}
4967 4967
 	}
4968
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4968
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4969 4969
 
4970 4970
 	return $translation_texts;
4971 4971
 }
@@ -4980,27 +4980,27 @@  discard block
 block discarded – undo
4980 4980
  *
4981 4981
  * @return array Location terms.
4982 4982
  */
4983
-function geodir_remove_location_terms( $location_terms = array() ) {
4984
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4983
+function geodir_remove_location_terms($location_terms = array()) {
4984
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4985 4985
 
4986
-	if ( ! empty( $location_terms ) && $location_manager ) {
4987
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4988
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4986
+	if (!empty($location_terms) && $location_manager) {
4987
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4988
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4989 4989
 
4990
-		if ( $hide_region_part && $hide_country_part ) {
4991
-			if ( isset( $location_terms['gd_country'] ) ) {
4992
-				unset( $location_terms['gd_country'] );
4990
+		if ($hide_region_part && $hide_country_part) {
4991
+			if (isset($location_terms['gd_country'])) {
4992
+				unset($location_terms['gd_country']);
4993 4993
 			}
4994
-			if ( isset( $location_terms['gd_region'] ) ) {
4995
-				unset( $location_terms['gd_region'] );
4994
+			if (isset($location_terms['gd_region'])) {
4995
+				unset($location_terms['gd_region']);
4996 4996
 			}
4997
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4998
-			if ( isset( $location_terms['gd_region'] ) ) {
4999
-				unset( $location_terms['gd_region'] );
4997
+		} else if ($hide_region_part && !$hide_country_part) {
4998
+			if (isset($location_terms['gd_region'])) {
4999
+				unset($location_terms['gd_region']);
5000 5000
 			}
5001
-		} else if ( ! $hide_region_part && $hide_country_part ) {
5002
-			if ( isset( $location_terms['gd_country'] ) ) {
5003
-				unset( $location_terms['gd_country'] );
5001
+		} else if (!$hide_region_part && $hide_country_part) {
5002
+			if (isset($location_terms['gd_country'])) {
5003
+				unset($location_terms['gd_country']);
5004 5004
 			}
5005 5005
 		}
5006 5006
 	}
@@ -5011,7 +5011,7 @@  discard block
 block discarded – undo
5011 5011
 	 * @since 1.6.22
5012 5012
 	 * @param array $location_terms The array of location terms.
5013 5013
 	 */
5014
-	return apply_filters('geodir_remove_location_terms',$location_terms);
5014
+	return apply_filters('geodir_remove_location_terms', $location_terms);
5015 5015
 }
5016 5016
 
5017 5017
 /**
@@ -5028,32 +5028,32 @@  discard block
 block discarded – undo
5028 5028
  * @param WP_Post $post Post object.
5029 5029
  * @param bool $update  Whether this is an existing listing being updated or not.
5030 5030
  */
5031
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
5031
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
5032 5032
 	global $gd_set_listing_edited;
5033 5033
 	
5034
-	if ( ! $update ) {
5034
+	if (!$update) {
5035 5035
 		return;
5036 5036
 	}
5037 5037
 
5038
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5039
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5038
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5039
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5040 5040
 	$inline_save = $action == 'inline-save' ? true : false;
5041 5041
 
5042
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5042
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5043 5043
 		return;
5044 5044
 	}
5045 5045
 
5046
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5046
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5047 5047
 		return;
5048 5048
 	}
5049 5049
 
5050 5050
 	$user_id = (int) get_current_user_id();
5051 5051
 
5052
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5053
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5052
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5053
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5054 5054
 
5055
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_set_listing_edited[$post_ID] ) ) {
5056
-			if ( !empty( $gd_set_listing_edited ) ) {
5055
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_set_listing_edited[$post_ID])) {
5056
+			if (!empty($gd_set_listing_edited)) {
5057 5057
 				$gd_set_listing_edited = array();
5058 5058
 			}
5059 5059
 			$gd_set_listing_edited[$post_ID] = true;
@@ -5071,14 +5071,14 @@  discard block
 block discarded – undo
5071 5071
  *
5072 5072
  * @return string|null The current page start & end numbering.
5073 5073
  */
5074
-function geodir_title_meta_page( $sep ) {
5074
+function geodir_title_meta_page($sep) {
5075 5075
 	$replacement = null;
5076 5076
 
5077
-	$max = geodir_title_meta_pagenumbering( 'max' );
5078
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5077
+	$max = geodir_title_meta_pagenumbering('max');
5078
+	$nr  = geodir_title_meta_pagenumbering('nr');
5079 5079
 
5080
-	if ( $max > 1 && $nr > 1 ) {
5081
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5080
+	if ($max > 1 && $nr > 1) {
5081
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5082 5082
 	}
5083 5083
 
5084 5084
 	return $replacement;
@@ -5095,8 +5095,8 @@  discard block
 block discarded – undo
5095 5095
 function geodir_title_meta_pagenumber() {
5096 5096
 	$replacement = null;
5097 5097
 
5098
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5099
-	if ( isset( $nr ) && $nr > 0 ) {
5098
+	$nr = geodir_title_meta_pagenumbering('nr');
5099
+	if (isset($nr) && $nr > 0) {
5100 5100
 		$replacement = (string) $nr;
5101 5101
 	}
5102 5102
 
@@ -5114,8 +5114,8 @@  discard block
 block discarded – undo
5114 5114
 function geodir_title_meta_pagetotal() {
5115 5115
 	$replacement = null;
5116 5116
 
5117
-	$max = geodir_title_meta_pagenumbering( 'max' );
5118
-	if ( isset( $max ) && $max > 0 ) {
5117
+	$max = geodir_title_meta_pagenumbering('max');
5118
+	if (isset($max) && $max > 0) {
5119 5119
 		$replacement = (string) $max;
5120 5120
 	}
5121 5121
 
@@ -5135,36 +5135,36 @@  discard block
 block discarded – undo
5135 5135
  *
5136 5136
  * @return int|null The current page numbering.
5137 5137
  */
5138
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5138
+function geodir_title_meta_pagenumbering($request = 'nr') {
5139 5139
 	global $wp_query, $post;
5140 5140
 	$max_num_pages = null;
5141 5141
 	$page_number   = null;
5142 5142
 
5143 5143
 	$max_num_pages = 1;
5144 5144
 
5145
-	if ( ! is_singular() ) {
5146
-		$page_number = get_query_var( 'paged' );
5147
-		if ( $page_number === 0 || $page_number === '' ) {
5145
+	if (!is_singular()) {
5146
+		$page_number = get_query_var('paged');
5147
+		if ($page_number === 0 || $page_number === '') {
5148 5148
 			$page_number = 1;
5149 5149
 		}
5150 5150
 
5151
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5151
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5152 5152
 			$max_num_pages = $wp_query->max_num_pages;
5153 5153
 		}
5154 5154
 	} else {
5155
-		$page_number = get_query_var( 'page' );
5156
-		if ( $page_number === 0 || $page_number === '' ) {
5155
+		$page_number = get_query_var('page');
5156
+		if ($page_number === 0 || $page_number === '') {
5157 5157
 			$page_number = 1;
5158 5158
 		}
5159 5159
 
5160
-		if ( isset( $post->post_content ) ) {
5161
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5160
+		if (isset($post->post_content)) {
5161
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5162 5162
 		}
5163 5163
 	}
5164 5164
 
5165 5165
 	$return = null;
5166 5166
 
5167
-	switch ( $request ) {
5167
+	switch ($request) {
5168 5168
 		case 'nr':
5169 5169
 			$return = $page_number;
5170 5170
 			break;
@@ -5185,14 +5185,14 @@  discard block
 block discarded – undo
5185 5185
  *
5186 5186
  * @return array Terms.
5187 5187
  */
5188
-function geodir_filter_empty_terms( $terms ) {
5189
-	if ( empty( $terms ) ) {
5188
+function geodir_filter_empty_terms($terms) {
5189
+	if (empty($terms)) {
5190 5190
 		return $terms;
5191 5191
 	}
5192 5192
 
5193 5193
 	$return = array();
5194
-	foreach ( $terms as $term ) {
5195
-		if ( isset( $term->count ) && $term->count > 0 ) {
5194
+	foreach ($terms as $term) {
5195
+		if (isset($term->count) && $term->count > 0) {
5196 5196
 			$return[] = $term;
5197 5197
 		} else {
5198 5198
 			/**
@@ -5203,7 +5203,7 @@  discard block
 block discarded – undo
5203 5203
 			 * @param array $return The array of terms to return.
5204 5204
 			 * @param object $term  The term object.
5205 5205
 			 */
5206
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5206
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5207 5207
 		}
5208 5208
 	}
5209 5209
 
@@ -5220,15 +5220,15 @@  discard block
 block discarded – undo
5220 5220
  *
5221 5221
  * @return array
5222 5222
  */
5223
-function geodir_remove_hentry( $class ) {
5224
-	if ( geodir_is_page( 'detail' ) ) {
5225
-		$class = array_diff( $class, array( 'hentry' ) );
5223
+function geodir_remove_hentry($class) {
5224
+	if (geodir_is_page('detail')) {
5225
+		$class = array_diff($class, array('hentry'));
5226 5226
 	}
5227 5227
 
5228 5228
 	return $class;
5229 5229
 }
5230 5230
 
5231
-add_filter( 'post_class', 'geodir_remove_hentry' );
5231
+add_filter('post_class', 'geodir_remove_hentry');
5232 5232
 
5233 5233
 /**
5234 5234
  * Registers a individual text string for WPML translation.
@@ -5240,8 +5240,8 @@  discard block
 block discarded – undo
5240 5240
  * @param string $domain The plugin domain. Default geodirectory.
5241 5241
  * @param string $name The name of the string which helps to know what's being translated.
5242 5242
  */
5243
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5244
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5243
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5244
+    do_action('wpml_register_single_string', $domain, $name, $string);
5245 5245
 }
5246 5246
 
5247 5247
 /**
@@ -5256,8 +5256,8 @@  discard block
 block discarded – undo
5256 5256
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5257 5257
  * @return string The translated string.
5258 5258
  */
5259
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5260
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5259
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5260
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5261 5261
 }
5262 5262
 
5263 5263
 /**
@@ -5272,19 +5272,19 @@  discard block
 block discarded – undo
5272 5272
  * @param int $post_ID  Post ID.
5273 5273
  * @param array $data Post data.
5274 5274
  */
5275
-function geodir_send_listing_edited_notification( $post_ID, $data ) {
5275
+function geodir_send_listing_edited_notification($post_ID, $data) {
5276 5276
     global $gd_notified_edited, $gd_set_listing_edited;
5277 5277
     
5278
-    if ( !empty( $gd_set_listing_edited[ $post_ID ] ) && empty( $gd_notified_edited[ $post_ID ] ) ) {
5279
-        if ( !empty( $gd_notified_edited ) ) {
5278
+    if (!empty($gd_set_listing_edited[$post_ID]) && empty($gd_notified_edited[$post_ID])) {
5279
+        if (!empty($gd_notified_edited)) {
5280 5280
             $gd_notified_edited = array();
5281 5281
         }
5282
-        $gd_notified_edited[ $post_ID ] = true;
5282
+        $gd_notified_edited[$post_ID] = true;
5283 5283
         
5284
-        $from_email   = get_option( 'site_email' );
5284
+        $from_email   = get_option('site_email');
5285 5285
         $from_name    = get_site_emailName();
5286
-        $to_email     = get_option( 'admin_email' );
5287
-        $to_name      = get_option( 'name' );
5286
+        $to_email     = get_option('admin_email');
5287
+        $to_name      = get_option('name');
5288 5288
         $message_type = 'listing_edited';
5289 5289
 
5290 5290
         $notify_edited = true;
@@ -5296,11 +5296,11 @@  discard block
 block discarded – undo
5296 5296
          * @param bool $notify_edited Notify on listing edited by author?
5297 5297
          * @param object $post        The current post object.
5298 5298
          */
5299
-        $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post_ID );
5299
+        $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post_ID);
5300 5300
 
5301
-        if ( $notify_edited ) {
5302
-            geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5301
+        if ($notify_edited) {
5302
+            geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5303 5303
         }
5304 5304
     }
5305 5305
 }
5306
-add_action( 'geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2 );
5307 5306
\ No newline at end of file
5307
+add_action('geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2);
5308 5308
\ No newline at end of file
Please login to merge, or discard this patch.
upgrade.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@
 block discarded – undo
324 324
 
325 325
             if(!empty($show_in_arr )){
326 326
                 $show_in_arr = implode(',',$show_in_arr);
327
-            }else{
327
+            } else{
328 328
                 $show_in_arr = '';
329 329
             }
330 330
 
Please login to merge, or discard this patch.
Indentation   +661 added lines, -661 removed lines patch added patch discarded remove patch
@@ -10,53 +10,53 @@  discard block
 block discarded – undo
10 10
 global $wpdb;
11 11
 
12 12
 if (get_option('geodirectory' . '_db_version') != GEODIRECTORY_VERSION) {
13
-    /**
14
-     * Include custom database table related functions.
15
-     *
16
-     * @since 1.0.0
17
-     * @package GeoDirectory
18
-     */
19
-    include_once('geodirectory-admin/admin_db_install.php');
20
-    add_action('plugins_loaded', 'geodirectory_upgrade_all', 10);
21
-    if (GEODIRECTORY_VERSION <= '1.3.6') {
22
-        add_action('plugins_loaded', 'geodir_upgrade_136', 11);
23
-    }
24
-
25
-    if (GEODIRECTORY_VERSION <= '1.4.6') {
26
-        add_action('init', 'geodir_upgrade_146', 11);
27
-    }
28
-
29
-    if (GEODIRECTORY_VERSION <= '1.4.8') {
30
-        add_action('init', 'geodir_upgrade_148', 11);
31
-    }
32
-
33
-    if (GEODIRECTORY_VERSION <= '1.5.0') {
34
-        add_action('init', 'geodir_upgrade_150', 11);
35
-    }
36
-
37
-    if (GEODIRECTORY_VERSION <= '1.5.2') {
38
-        add_action('init', 'geodir_upgrade_152', 11);
39
-    }
40
-
41
-    if (GEODIRECTORY_VERSION <= '1.5.3') {
42
-        add_action('init', 'geodir_upgrade_153', 11);
43
-    }
44
-
45
-    if (GEODIRECTORY_VERSION <= '1.5.4') {
46
-        add_action('init', 'geodir_upgrade_154', 11);
47
-    }
13
+	/**
14
+	 * Include custom database table related functions.
15
+	 *
16
+	 * @since 1.0.0
17
+	 * @package GeoDirectory
18
+	 */
19
+	include_once('geodirectory-admin/admin_db_install.php');
20
+	add_action('plugins_loaded', 'geodirectory_upgrade_all', 10);
21
+	if (GEODIRECTORY_VERSION <= '1.3.6') {
22
+		add_action('plugins_loaded', 'geodir_upgrade_136', 11);
23
+	}
24
+
25
+	if (GEODIRECTORY_VERSION <= '1.4.6') {
26
+		add_action('init', 'geodir_upgrade_146', 11);
27
+	}
28
+
29
+	if (GEODIRECTORY_VERSION <= '1.4.8') {
30
+		add_action('init', 'geodir_upgrade_148', 11);
31
+	}
32
+
33
+	if (GEODIRECTORY_VERSION <= '1.5.0') {
34
+		add_action('init', 'geodir_upgrade_150', 11);
35
+	}
36
+
37
+	if (GEODIRECTORY_VERSION <= '1.5.2') {
38
+		add_action('init', 'geodir_upgrade_152', 11);
39
+	}
40
+
41
+	if (GEODIRECTORY_VERSION <= '1.5.3') {
42
+		add_action('init', 'geodir_upgrade_153', 11);
43
+	}
44
+
45
+	if (GEODIRECTORY_VERSION <= '1.5.4') {
46
+		add_action('init', 'geodir_upgrade_154', 11);
47
+	}
48 48
     
49
-    if (GEODIRECTORY_VERSION <= '1.6.18') {
50
-        add_action('init', 'geodir_upgrade_1618', 11);
51
-    }
49
+	if (GEODIRECTORY_VERSION <= '1.6.18') {
50
+		add_action('init', 'geodir_upgrade_1618', 11);
51
+	}
52 52
     
53
-    if (GEODIRECTORY_VERSION <= '1.6.22') {
54
-        add_action('init', 'geodir_upgrade_1622', 11);
55
-    }
53
+	if (GEODIRECTORY_VERSION <= '1.6.22') {
54
+		add_action('init', 'geodir_upgrade_1622', 11);
55
+	}
56 56
 
57
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
57
+	add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
58 58
 
59
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
59
+	update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
60 60
 
61 61
 }
62 62
 
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
  */
70 70
 function geodirectory_upgrade_all()
71 71
 {
72
-    geodir_create_tables();
73
-    geodir_update_review_db();
74
-    gd_install_theme_compat();
75
-    gd_convert_custom_field_display();
72
+	geodir_create_tables();
73
+	geodir_update_review_db();
74
+	gd_install_theme_compat();
75
+	gd_convert_custom_field_display();
76 76
 }
77 77
 
78 78
 /**
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
  */
84 84
 function geodir_upgrade_136()
85 85
 {
86
-    geodir_fix_review_overall_rating();
86
+	geodir_fix_review_overall_rating();
87 87
 }
88 88
 
89 89
 /**
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
  * @package GeoDirectory
94 94
  */
95 95
 function geodir_upgrade_146(){
96
-    gd_convert_virtual_pages();
96
+	gd_convert_virtual_pages();
97 97
 }
98 98
 
99 99
 /**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
  * @package GeoDirectory
104 104
  */
105 105
 function geodir_upgrade_150(){
106
-    gd_fix_cpt_rewrite_slug();
106
+	gd_fix_cpt_rewrite_slug();
107 107
 }
108 108
 
109 109
 
@@ -115,11 +115,11 @@  discard block
 block discarded – undo
115 115
  * @package GeoDirectory
116 116
  */
117 117
 function geodir_upgrade_148(){
118
-    /*
118
+	/*
119 119
      * Blank the users google password if present as we now use oAuth 2.0
120 120
      */
121
-    update_option('geodir_ga_pass','');
122
-    update_option('geodir_ga_user','');
121
+	update_option('geodir_ga_pass','');
122
+	update_option('geodir_ga_user','');
123 123
 
124 124
 }
125 125
 
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
  * @package GeoDirectory
132 132
  */
133 133
 function geodir_upgrade_153(){
134
-    geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
135
-    geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
134
+	geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
135
+	geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
136 136
 }
137 137
 
138 138
 /**
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
  * @package GeoDirectory
143 143
  */
144 144
 function geodir_upgrade_154(){
145
-    geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
145
+	geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
146 146
 }
147 147
 
148 148
 /**
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
  * @package GeoDirectory
153 153
  */
154 154
 function geodir_upgrade_152(){
155
-    gd_fix_address_detail_table_limit();
155
+	gd_fix_address_detail_table_limit();
156 156
 }
157 157
 
158 158
 
@@ -168,12 +168,12 @@  discard block
 block discarded – undo
168 168
  */
169 169
 function geodir_update_review_db()
170 170
 {
171
-    global $wpdb, $plugin_prefix;
171
+	global $wpdb, $plugin_prefix;
172 172
 
173
-    geodir_fix_review_date();
174
-    geodir_fix_review_post_status();
175
-    geodir_fix_review_content();
176
-    geodir_fix_review_location();
173
+	geodir_fix_review_date();
174
+	geodir_fix_review_post_status();
175
+	geodir_fix_review_content();
176
+	geodir_fix_review_location();
177 177
 
178 178
 }
179 179
 
@@ -186,8 +186,8 @@  discard block
 block discarded – undo
186 186
  */
187 187
 function geodir_fix_review_date()
188 188
 {
189
-    global $wpdb;
190
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
189
+	global $wpdb;
190
+	$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
191 191
 }
192 192
 
193 193
 /**
@@ -199,8 +199,8 @@  discard block
 block discarded – undo
199 199
  */
200 200
 function geodir_fix_review_post_status()
201 201
 {
202
-    global $wpdb;
203
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
202
+	global $wpdb;
203
+	$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
204 204
 }
205 205
 
206 206
 /**
@@ -213,12 +213,12 @@  discard block
 block discarded – undo
213 213
  */
214 214
 function geodir_fix_review_content()
215 215
 {
216
-    global $wpdb;
217
-    if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
218
-        return true;
219
-    } else {
220
-        return false;
221
-    }
216
+	global $wpdb;
217
+	if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
218
+		return true;
219
+	} else {
220
+		return false;
221
+	}
222 222
 }
223 223
 
224 224
 /**
@@ -231,20 +231,20 @@  discard block
 block discarded – undo
231 231
  */
232 232
 function geodir_fix_review_location()
233 233
 {
234
-    global $wpdb;
234
+	global $wpdb;
235 235
 
236
-    $all_postypes = geodir_get_posttypes();
236
+	$all_postypes = geodir_get_posttypes();
237 237
 
238
-    if (!empty($all_postypes)) {
239
-        foreach ($all_postypes as $key) {
240
-            // update each GD CTP
238
+	if (!empty($all_postypes)) {
239
+		foreach ($all_postypes as $key) {
240
+			// update each GD CTP
241 241
 
242
-            $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
242
+			$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
243 243
 
244
-        }
245
-        return true;
246
-    }
247
-    return false;
244
+		}
245
+		return true;
246
+	}
247
+	return false;
248 248
 }
249 249
 
250 250
 /**
@@ -256,82 +256,82 @@  discard block
 block discarded – undo
256 256
  */
257 257
 function geodir_fix_review_overall_rating()
258 258
 {
259
-    global $wpdb;
259
+	global $wpdb;
260 260
 
261
-    $all_postypes = geodir_get_posttypes();
261
+	$all_postypes = geodir_get_posttypes();
262 262
 
263
-    if (!empty($all_postypes)) {
264
-        foreach ($all_postypes as $key) {
265
-            // update each GD CTP
266
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
263
+	if (!empty($all_postypes)) {
264
+		foreach ($all_postypes as $key) {
265
+			// update each GD CTP
266
+			$reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
267 267
 
268
-            if (!empty($reviews)) {
269
-                foreach ($reviews as $post_id) {
270
-                    geodir_update_postrating($post_id->post_id, $key);
271
-                }
268
+			if (!empty($reviews)) {
269
+				foreach ($reviews as $post_id) {
270
+					geodir_update_postrating($post_id->post_id, $key);
271
+				}
272 272
 
273
-            }
273
+			}
274 274
 
275
-        }
275
+		}
276 276
 
277
-    }
277
+	}
278 278
 }
279 279
 
280 280
 
281 281
 function gd_convert_custom_field_display(){
282
-    global $wpdb;
282
+	global $wpdb;
283 283
 
284
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
284
+	$field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
285 285
 
286
-    $has_run = get_option('gd_convert_custom_field_display');
287
-    if($has_run){return;}
286
+	$has_run = get_option('gd_convert_custom_field_display');
287
+	if($has_run){return;}
288 288
 
289
-    // set the field_type_key for standard fields
290
-    $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
289
+	// set the field_type_key for standard fields
290
+	$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
291 291
 
292 292
 
293
-    if(is_array( $field_info)){
293
+	if(is_array( $field_info)){
294 294
 
295
-        foreach( $field_info as $cf){
295
+		foreach( $field_info as $cf){
296 296
 
297
-            $id = $cf->id;
297
+			$id = $cf->id;
298 298
 
299
-            if(!property_exists($cf,'show_in') || !$id){return;}
299
+			if(!property_exists($cf,'show_in') || !$id){return;}
300 300
 
301
-            $show_in_arr = array();
301
+			$show_in_arr = array();
302 302
 
303
-            if($cf->is_default){
304
-                $show_in_arr[] = "[detail]";
305
-            }
303
+			if($cf->is_default){
304
+				$show_in_arr[] = "[detail]";
305
+			}
306 306
 
307
-            if($cf->show_on_detail){
308
-                $show_in_arr[] = "[moreinfo]";
309
-            }
307
+			if($cf->show_on_detail){
308
+				$show_in_arr[] = "[moreinfo]";
309
+			}
310 310
 
311
-            if($cf->show_on_listing){
312
-                $show_in_arr[] = "[listing]";
313
-            }
311
+			if($cf->show_on_listing){
312
+				$show_in_arr[] = "[listing]";
313
+			}
314 314
 
315
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
316
-                $show_in_arr[] = "[owntab]";
317
-            }
315
+			if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
316
+				$show_in_arr[] = "[owntab]";
317
+			}
318 318
 
319
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
320
-                $show_in_arr[] = "[mapbubble]";
321
-            }
319
+			if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
320
+				$show_in_arr[] = "[mapbubble]";
321
+			}
322 322
 
323
-            if(!empty($show_in_arr )){
324
-                $show_in_arr = implode(',',$show_in_arr);
325
-            }else{
326
-                $show_in_arr = '';
327
-            }
323
+			if(!empty($show_in_arr )){
324
+				$show_in_arr = implode(',',$show_in_arr);
325
+			}else{
326
+				$show_in_arr = '';
327
+			}
328 328
 
329
-            $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
329
+			$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
330 330
 
331
-        }
331
+		}
332 332
 
333
-        update_option('gd_convert_custom_field_display',1);
334
-    }
333
+		update_option('gd_convert_custom_field_display',1);
334
+	}
335 335
 }
336 336
 
337 337
 ############################################
@@ -347,422 +347,422 @@  discard block
 block discarded – undo
347 347
  */
348 348
 function gd_install_theme_compat()
349 349
 {
350
-    global $wpdb;
350
+	global $wpdb;
351 351
 
352
-    $theme_compat = array();
353
-    $theme_compat = get_option('gd_theme_compats');
352
+	$theme_compat = array();
353
+	$theme_compat = get_option('gd_theme_compats');
354 354
 //GDF
355
-    $theme_compat['GeoDirectory_Framework'] = array(
356
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
357
-        'geodir_wrapper_open_class' => '',
358
-        'geodir_wrapper_open_replace' => '',
359
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
360
-        'geodir_wrapper_content_open_id' => 'geodir_content',
361
-        'geodir_wrapper_content_open_class' => '',
362
-        'geodir_wrapper_content_open_replace' => '',
363
-        'geodir_wrapper_content_close_replace' => '',
364
-        'geodir_article_open_id' => '',
365
-        'geodir_article_open_class' => '',
366
-        'geodir_article_open_replace' => '',
367
-        'geodir_article_close_replace' => '',
368
-        'geodir_sidebar_right_open_id' => '',
369
-        'geodir_sidebar_right_open_class' => '',
370
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
371
-        'geodir_sidebar_right_close_replace' => '',
372
-        'geodir_sidebar_left_open_id' => '',
373
-        'geodir_sidebar_left_open_class' => '',
374
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
375
-        'geodir_sidebar_left_close_replace' => '',
376
-        'geodir_main_content_open_id' => '',
377
-        'geodir_main_content_open_class' => '',
378
-        'geodir_main_content_open_replace' => '<!-- removed -->',
379
-        'geodir_main_content_close_replace' => '<!-- removed -->',
380
-        'geodir_top_content_add' => '',
381
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
382
-        'geodir_before_widget_filter' => '',
383
-        'geodir_after_widget_filter' => '',
384
-        'geodir_theme_compat_css' => '',
385
-        'geodir_theme_compat_js' => '',
386
-        'geodir_theme_compat_default_options' => '',
387
-        'geodir_theme_compat_code' => ''
388
-    );
355
+	$theme_compat['GeoDirectory_Framework'] = array(
356
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
357
+		'geodir_wrapper_open_class' => '',
358
+		'geodir_wrapper_open_replace' => '',
359
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
360
+		'geodir_wrapper_content_open_id' => 'geodir_content',
361
+		'geodir_wrapper_content_open_class' => '',
362
+		'geodir_wrapper_content_open_replace' => '',
363
+		'geodir_wrapper_content_close_replace' => '',
364
+		'geodir_article_open_id' => '',
365
+		'geodir_article_open_class' => '',
366
+		'geodir_article_open_replace' => '',
367
+		'geodir_article_close_replace' => '',
368
+		'geodir_sidebar_right_open_id' => '',
369
+		'geodir_sidebar_right_open_class' => '',
370
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
371
+		'geodir_sidebar_right_close_replace' => '',
372
+		'geodir_sidebar_left_open_id' => '',
373
+		'geodir_sidebar_left_open_class' => '',
374
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
375
+		'geodir_sidebar_left_close_replace' => '',
376
+		'geodir_main_content_open_id' => '',
377
+		'geodir_main_content_open_class' => '',
378
+		'geodir_main_content_open_replace' => '<!-- removed -->',
379
+		'geodir_main_content_close_replace' => '<!-- removed -->',
380
+		'geodir_top_content_add' => '',
381
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
382
+		'geodir_before_widget_filter' => '',
383
+		'geodir_after_widget_filter' => '',
384
+		'geodir_theme_compat_css' => '',
385
+		'geodir_theme_compat_js' => '',
386
+		'geodir_theme_compat_default_options' => '',
387
+		'geodir_theme_compat_code' => ''
388
+	);
389 389
 
390 390
 //Directory Theme
391
-    $theme_compat['Directory_Starter'] = array(
392
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
393
-        'geodir_wrapper_open_class' => '',
394
-        'geodir_wrapper_open_replace' => '',
395
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
396
-        'geodir_wrapper_content_open_id' => 'geodir_content',
397
-        'geodir_wrapper_content_open_class' => '',
398
-        'geodir_wrapper_content_open_replace' => '',
399
-        'geodir_wrapper_content_close_replace' => '',
400
-        'geodir_article_open_id' => '',
401
-        'geodir_article_open_class' => '',
402
-        'geodir_article_open_replace' => '',
403
-        'geodir_article_close_replace' => '',
404
-        'geodir_sidebar_right_open_id' => '',
405
-        'geodir_sidebar_right_open_class' => '',
406
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
407
-        'geodir_sidebar_right_close_replace' => '',
408
-        'geodir_sidebar_left_open_id' => '',
409
-        'geodir_sidebar_left_open_class' => '',
410
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
411
-        'geodir_sidebar_left_close_replace' => '',
412
-        'geodir_main_content_open_id' => '',
413
-        'geodir_main_content_open_class' => '',
414
-        'geodir_main_content_open_replace' => '<!-- removed -->',
415
-        'geodir_main_content_close_replace' => '<!-- removed -->',
416
-        'geodir_top_content_add' => '',
417
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
418
-        'geodir_before_widget_filter' => '',
419
-        'geodir_after_widget_filter' => '',
420
-        'geodir_theme_compat_css' => '',
421
-        'geodir_theme_compat_js' => '',
422
-        'geodir_theme_compat_default_options' => '',
423
-        'geodir_theme_compat_code' => ''
424
-    );
391
+	$theme_compat['Directory_Starter'] = array(
392
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
393
+		'geodir_wrapper_open_class' => '',
394
+		'geodir_wrapper_open_replace' => '',
395
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
396
+		'geodir_wrapper_content_open_id' => 'geodir_content',
397
+		'geodir_wrapper_content_open_class' => '',
398
+		'geodir_wrapper_content_open_replace' => '',
399
+		'geodir_wrapper_content_close_replace' => '',
400
+		'geodir_article_open_id' => '',
401
+		'geodir_article_open_class' => '',
402
+		'geodir_article_open_replace' => '',
403
+		'geodir_article_close_replace' => '',
404
+		'geodir_sidebar_right_open_id' => '',
405
+		'geodir_sidebar_right_open_class' => '',
406
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
407
+		'geodir_sidebar_right_close_replace' => '',
408
+		'geodir_sidebar_left_open_id' => '',
409
+		'geodir_sidebar_left_open_class' => '',
410
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
411
+		'geodir_sidebar_left_close_replace' => '',
412
+		'geodir_main_content_open_id' => '',
413
+		'geodir_main_content_open_class' => '',
414
+		'geodir_main_content_open_replace' => '<!-- removed -->',
415
+		'geodir_main_content_close_replace' => '<!-- removed -->',
416
+		'geodir_top_content_add' => '',
417
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
418
+		'geodir_before_widget_filter' => '',
419
+		'geodir_after_widget_filter' => '',
420
+		'geodir_theme_compat_css' => '',
421
+		'geodir_theme_compat_js' => '',
422
+		'geodir_theme_compat_default_options' => '',
423
+		'geodir_theme_compat_code' => ''
424
+	);
425 425
 
426 426
 //Jobby
427
-    $theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
427
+	$theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
428 428
 
429 429
 //GeoProperty
430
-    $theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
430
+	$theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
431 431
 
432 432
 //Avada
433
-    $theme_compat['Avada'] = array(
434
-        'geodir_wrapper_open_id' => '',
435
-        'geodir_wrapper_open_class' => '',
436
-        'geodir_wrapper_open_replace' => '<!-- removed -->',
437
-        'geodir_wrapper_close_replace' => '<!-- removed -->',
438
-        'geodir_wrapper_content_open_id' => 'content',
439
-        'geodir_wrapper_content_open_class' => '',
440
-        'geodir_wrapper_content_open_replace' => '',
441
-        'geodir_wrapper_content_close_replace' => '',
442
-        'geodir_article_open_id' => '',
443
-        'geodir_article_open_class' => '',
444
-        'geodir_article_open_replace' => '',
445
-        'geodir_article_close_replace' => '',
446
-        'geodir_sidebar_right_open_id' => '',
447
-        'geodir_sidebar_right_open_class' => '',
448
-        'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
449
-        'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
450
-        'geodir_sidebar_left_open_id' => '',
451
-        'geodir_sidebar_left_open_class' => '',
452
-        'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
453
-        'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
454
-        'geodir_main_content_open_id' => '',
455
-        'geodir_main_content_open_class' => '',
456
-        'geodir_main_content_open_replace' => '<!-- removed -->',
457
-        'geodir_main_content_close_replace' => '<!-- removed -->',
458
-        'geodir_top_content_add' => '',
459
-        'geodir_before_main_content_add' => '',
460
-        'geodir_before_widget_filter' => '',
461
-        'geodir_after_widget_filter' => '',
462
-        'geodir_theme_compat_css' => stripslashes('.geodir-sidebar-left{float:left}select,textarea{border-style:solid;border-width:1px}.top-menu li > div{visibility:visible}.geodir-chosen-container-single .chosen-single{height:auto}ul li#menu-item-gd-location-switcher ul{width:222px}ul li#menu-item-gd-location-switcher ul li{padding-right:0!important}#mobile-nav li#mobile-menu-item-gd-location-switcher li a{padding-left:10px;padding-right:10px}#menu-item-gd-location-switcher dd,#mobile-menu-item-gd-location-switcher{margin-left:0}#menu-item-gd-location-switcher dd a{display:block}.geodir-chosen-container .chosen-results li.highlighted{background-color:#eee;background-image:none;color:#444}#mobile-nav li.mobile-nav-item li a:before{content:\'\';margin:0}#mobile-nav li.mobile-nav-item li a{padding:10px;width:auto}.geodir-listing-search{text-align:center}.geodir-search{float:none;margin:0}.geodir-search select,.geodir-search .search_by_post,.geodir-search input[type="text"],.geodir-search button[type="button"], .geodir-search input[type="button"],.geodir-search input[type="submit"]{display:inline-block;float:none}.geodir-cat-list ul li,.map_category ul li{list-style-type:none}.wpgeo-avada .page-title ul li:after{content:\'\'}.top_banner_section{margin-bottom:0}.geodir-category-list-in{margin:0;padding:15px}.geodir_full_page .geodir-cat-list .widget-title{margin-top:0}.geodir_full_page .geodir-cat-list ul li{padding-left:0}.geodir-loc-bar{border:none;margin:0;padding:0}.geodir-loc-bar-in{padding:15px 0}.geodir_full_page section.widget{margin-bottom:20px}.sidebar .geodir-loginbox-list li{margin-bottom:10px;padding-bottom:10px}.sidebar .geodir-loginbox-list li a{display:block}.sidebar .geodir-chosen-container .chosen-results li{margin:0;padding:5px 6px}.sidebar .geodir-chosen-container .chosen-results li.highlighted{background:#eee;background-image:none;color:#000}.sidebar .geodir_category_list_view li.geodir-gridview{display:inline-block;margin-bottom:15px}.wpgeo-avada.double-sidebars #main #sidebar{margin-left:3%}.wpgeo-avada.double-sidebars #main #sidebar-2{margin-left:-100%}.wpgeo-avada.double-sidebars #content{float:left;margin-left:0}.geodir_full_page section.widget{margin-bottom: 0px;} .sidebar .widget .geodir-hide {display: none;}li.fusion-mobile-nav-item .geodir_location_tab_container a:before{content: "" !important; margin-right: auto !important;}li.fusion-mobile-nav-item .geodir_location_tab_container a{padding-left:5px !important;}'),
463
-        'geodir_theme_compat_js' => '',
464
-        'geodir_theme_compat_default_options' => '',
465
-        'geodir_theme_compat_code' => 'Avada'
466
-    );
433
+	$theme_compat['Avada'] = array(
434
+		'geodir_wrapper_open_id' => '',
435
+		'geodir_wrapper_open_class' => '',
436
+		'geodir_wrapper_open_replace' => '<!-- removed -->',
437
+		'geodir_wrapper_close_replace' => '<!-- removed -->',
438
+		'geodir_wrapper_content_open_id' => 'content',
439
+		'geodir_wrapper_content_open_class' => '',
440
+		'geodir_wrapper_content_open_replace' => '',
441
+		'geodir_wrapper_content_close_replace' => '',
442
+		'geodir_article_open_id' => '',
443
+		'geodir_article_open_class' => '',
444
+		'geodir_article_open_replace' => '',
445
+		'geodir_article_close_replace' => '',
446
+		'geodir_sidebar_right_open_id' => '',
447
+		'geodir_sidebar_right_open_class' => '',
448
+		'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
449
+		'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
450
+		'geodir_sidebar_left_open_id' => '',
451
+		'geodir_sidebar_left_open_class' => '',
452
+		'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
453
+		'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
454
+		'geodir_main_content_open_id' => '',
455
+		'geodir_main_content_open_class' => '',
456
+		'geodir_main_content_open_replace' => '<!-- removed -->',
457
+		'geodir_main_content_close_replace' => '<!-- removed -->',
458
+		'geodir_top_content_add' => '',
459
+		'geodir_before_main_content_add' => '',
460
+		'geodir_before_widget_filter' => '',
461
+		'geodir_after_widget_filter' => '',
462
+		'geodir_theme_compat_css' => stripslashes('.geodir-sidebar-left{float:left}select,textarea{border-style:solid;border-width:1px}.top-menu li > div{visibility:visible}.geodir-chosen-container-single .chosen-single{height:auto}ul li#menu-item-gd-location-switcher ul{width:222px}ul li#menu-item-gd-location-switcher ul li{padding-right:0!important}#mobile-nav li#mobile-menu-item-gd-location-switcher li a{padding-left:10px;padding-right:10px}#menu-item-gd-location-switcher dd,#mobile-menu-item-gd-location-switcher{margin-left:0}#menu-item-gd-location-switcher dd a{display:block}.geodir-chosen-container .chosen-results li.highlighted{background-color:#eee;background-image:none;color:#444}#mobile-nav li.mobile-nav-item li a:before{content:\'\';margin:0}#mobile-nav li.mobile-nav-item li a{padding:10px;width:auto}.geodir-listing-search{text-align:center}.geodir-search{float:none;margin:0}.geodir-search select,.geodir-search .search_by_post,.geodir-search input[type="text"],.geodir-search button[type="button"], .geodir-search input[type="button"],.geodir-search input[type="submit"]{display:inline-block;float:none}.geodir-cat-list ul li,.map_category ul li{list-style-type:none}.wpgeo-avada .page-title ul li:after{content:\'\'}.top_banner_section{margin-bottom:0}.geodir-category-list-in{margin:0;padding:15px}.geodir_full_page .geodir-cat-list .widget-title{margin-top:0}.geodir_full_page .geodir-cat-list ul li{padding-left:0}.geodir-loc-bar{border:none;margin:0;padding:0}.geodir-loc-bar-in{padding:15px 0}.geodir_full_page section.widget{margin-bottom:20px}.sidebar .geodir-loginbox-list li{margin-bottom:10px;padding-bottom:10px}.sidebar .geodir-loginbox-list li a{display:block}.sidebar .geodir-chosen-container .chosen-results li{margin:0;padding:5px 6px}.sidebar .geodir-chosen-container .chosen-results li.highlighted{background:#eee;background-image:none;color:#000}.sidebar .geodir_category_list_view li.geodir-gridview{display:inline-block;margin-bottom:15px}.wpgeo-avada.double-sidebars #main #sidebar{margin-left:3%}.wpgeo-avada.double-sidebars #main #sidebar-2{margin-left:-100%}.wpgeo-avada.double-sidebars #content{float:left;margin-left:0}.geodir_full_page section.widget{margin-bottom: 0px;} .sidebar .widget .geodir-hide {display: none;}li.fusion-mobile-nav-item .geodir_location_tab_container a:before{content: "" !important; margin-right: auto !important;}li.fusion-mobile-nav-item .geodir_location_tab_container a{padding-left:5px !important;}'),
463
+		'geodir_theme_compat_js' => '',
464
+		'geodir_theme_compat_default_options' => '',
465
+		'geodir_theme_compat_code' => 'Avada'
466
+	);
467 467
 
468 468
 //Enfold
469
-    $theme_compat['Enfold'] = array(
470
-        'geodir_wrapper_open_id' => '',
471
-        'geodir_wrapper_open_class' => '',
472
-        'geodir_wrapper_open_replace' => '',
473
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
474
-        'geodir_wrapper_content_open_id' => '',
475
-        'geodir_wrapper_content_open_class' => '',
476
-        'geodir_wrapper_content_open_replace' => '',
477
-        'geodir_wrapper_content_close_replace' => '</div></main>',
478
-        'geodir_article_open_id' => '',
479
-        'geodir_article_open_class' => '',
480
-        'geodir_article_open_replace' => '',
481
-        'geodir_article_close_replace' => '',
482
-        'geodir_sidebar_right_open_id' => '',
483
-        'geodir_sidebar_right_open_class' => '',
484
-        'geodir_sidebar_right_open_replace' => '',
485
-        'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
486
-        'geodir_sidebar_left_open_id' => '',
487
-        'geodir_sidebar_left_open_class' => '',
488
-        'geodir_sidebar_left_open_replace' => '',
489
-        'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
490
-        'geodir_main_content_open_id' => '',
491
-        'geodir_main_content_open_class' => '',
492
-        'geodir_main_content_open_replace' => '',
493
-        'geodir_main_content_close_replace' => '',
494
-        'geodir_top_content_add' => '',
495
-        'geodir_before_main_content_add' => '',
496
-        'geodir_before_widget_filter' => '',
497
-        'geodir_after_widget_filter' => '',
498
-        'geodir_theme_compat_css' => stripslashes('.geodir_full_page .top_banner_section{margin-bottom:0}.widget .geodir-cat-list ul li{clear:none}.wpgeo-enfold .av-main-nav ul{width:222px}.geodir-listing-search .geodir-loc-bar{border-top:none;padding:0}#main .geodir-listing-search,.geodir-listing-search .geodir-loc-bar{margin-bottom:0}#main .geodir-loc-bar-in,#main .geodir-category-list-in{background-color:#fcfcfc;margin:20px 0;padding:20px}#main .geodir_full_page .geodir-loc-bar-in,#main .geodir_full_page .geodir-loc-bar,#main .geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}#main .geodir-loc-bar-in{padding:20px}#main .geodir-search{margin:0;width:100%}#main .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#main .geodir-search input[type="text"]{margin:0 3% 0 0;padding:10px;width:32.4%}#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"]{font-size:inherit;line-height:2.25;margin:0;padding:7px;width:13%}.enfold-home-top section.widget{margin:0;padding:0}.enfold-home-top .top_banner_section{margin-bottom:0}.enfold-home-top .geodir-loc-bar{background:#fcfcfc;border:none;margin:0;padding:0}#main .enfold-home-top .geodir-loc-bar-in{background:none;border:none;margin:0 auto;padding:20px 0}#main .geodir-breadcrumb{border-bottom-style:solid;border-bottom-width:1px}#gd-tabs dt{clear:none}#geodir_slider ul li{list-style-type:none;margin:0;padding:0}#respond{clear:both}#comments .comments-title span{display:inline;font-size:inherit;font-weight:700}#reviewsTab .comments-area .bypostauthor cite span{display:inline}#top #comments .commentlist .comment,#top #comments .commentlist .comment > div{min-height:0}.commentlist .commenttext{padding-top:15px}#comment_imagesdropbox{margin-bottom:20px}.wpgeo-enfold .geodir_category_list_view li{margin-left:0;padding:0}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_category_list_view li .geodir-post-img{display:block}.wpgeo-enfold .geodir_event_listing_calendar tr.title{background:#ccc}@media only screen and (max-width:480px){.geodir_category_list_view li .geodir-content,.geodir_category_list_view li .geodir-post-img,.geodir_category_list_view li .geodir-addinfo{float:none;width:100%;margin:10px 0}#main .geodir-search input[type="text"],#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"],#main .geodir-search select{margin:10px 0;width:100%}}#main .geodir_full_page section:last-child .geodir-loc-bar{margin-bottom: -1px;border-bottom: none;}'),
499
-        'geodir_theme_compat_js' => '',
500
-        'geodir_theme_compat_default_options' => '',
501
-        'geodir_theme_compat_code' => 'Enfold'
502
-    );
469
+	$theme_compat['Enfold'] = array(
470
+		'geodir_wrapper_open_id' => '',
471
+		'geodir_wrapper_open_class' => '',
472
+		'geodir_wrapper_open_replace' => '',
473
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
474
+		'geodir_wrapper_content_open_id' => '',
475
+		'geodir_wrapper_content_open_class' => '',
476
+		'geodir_wrapper_content_open_replace' => '',
477
+		'geodir_wrapper_content_close_replace' => '</div></main>',
478
+		'geodir_article_open_id' => '',
479
+		'geodir_article_open_class' => '',
480
+		'geodir_article_open_replace' => '',
481
+		'geodir_article_close_replace' => '',
482
+		'geodir_sidebar_right_open_id' => '',
483
+		'geodir_sidebar_right_open_class' => '',
484
+		'geodir_sidebar_right_open_replace' => '',
485
+		'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
486
+		'geodir_sidebar_left_open_id' => '',
487
+		'geodir_sidebar_left_open_class' => '',
488
+		'geodir_sidebar_left_open_replace' => '',
489
+		'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
490
+		'geodir_main_content_open_id' => '',
491
+		'geodir_main_content_open_class' => '',
492
+		'geodir_main_content_open_replace' => '',
493
+		'geodir_main_content_close_replace' => '',
494
+		'geodir_top_content_add' => '',
495
+		'geodir_before_main_content_add' => '',
496
+		'geodir_before_widget_filter' => '',
497
+		'geodir_after_widget_filter' => '',
498
+		'geodir_theme_compat_css' => stripslashes('.geodir_full_page .top_banner_section{margin-bottom:0}.widget .geodir-cat-list ul li{clear:none}.wpgeo-enfold .av-main-nav ul{width:222px}.geodir-listing-search .geodir-loc-bar{border-top:none;padding:0}#main .geodir-listing-search,.geodir-listing-search .geodir-loc-bar{margin-bottom:0}#main .geodir-loc-bar-in,#main .geodir-category-list-in{background-color:#fcfcfc;margin:20px 0;padding:20px}#main .geodir_full_page .geodir-loc-bar-in,#main .geodir_full_page .geodir-loc-bar,#main .geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}#main .geodir-loc-bar-in{padding:20px}#main .geodir-search{margin:0;width:100%}#main .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#main .geodir-search input[type="text"]{margin:0 3% 0 0;padding:10px;width:32.4%}#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"]{font-size:inherit;line-height:2.25;margin:0;padding:7px;width:13%}.enfold-home-top section.widget{margin:0;padding:0}.enfold-home-top .top_banner_section{margin-bottom:0}.enfold-home-top .geodir-loc-bar{background:#fcfcfc;border:none;margin:0;padding:0}#main .enfold-home-top .geodir-loc-bar-in{background:none;border:none;margin:0 auto;padding:20px 0}#main .geodir-breadcrumb{border-bottom-style:solid;border-bottom-width:1px}#gd-tabs dt{clear:none}#geodir_slider ul li{list-style-type:none;margin:0;padding:0}#respond{clear:both}#comments .comments-title span{display:inline;font-size:inherit;font-weight:700}#reviewsTab .comments-area .bypostauthor cite span{display:inline}#top #comments .commentlist .comment,#top #comments .commentlist .comment > div{min-height:0}.commentlist .commenttext{padding-top:15px}#comment_imagesdropbox{margin-bottom:20px}.wpgeo-enfold .geodir_category_list_view li{margin-left:0;padding:0}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_category_list_view li .geodir-post-img{display:block}.wpgeo-enfold .geodir_event_listing_calendar tr.title{background:#ccc}@media only screen and (max-width:480px){.geodir_category_list_view li .geodir-content,.geodir_category_list_view li .geodir-post-img,.geodir_category_list_view li .geodir-addinfo{float:none;width:100%;margin:10px 0}#main .geodir-search input[type="text"],#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"],#main .geodir-search select{margin:10px 0;width:100%}}#main .geodir_full_page section:last-child .geodir-loc-bar{margin-bottom: -1px;border-bottom: none;}'),
499
+		'geodir_theme_compat_js' => '',
500
+		'geodir_theme_compat_default_options' => '',
501
+		'geodir_theme_compat_code' => 'Enfold'
502
+	);
503 503
 
504 504
 // X
505
-    $theme_compat['X'] = array(
506
-        'geodir_wrapper_open_id' => '',
507
-        'geodir_wrapper_open_class' => '',
508
-        'geodir_wrapper_open_replace' => '',
509
-        'geodir_wrapper_close_replace' => '',
510
-        'geodir_wrapper_content_open_id' => '',
511
-        'geodir_wrapper_content_open_class' => '',
512
-        'geodir_wrapper_content_open_replace' => '',
513
-        'geodir_wrapper_content_close_replace' => '',
514
-        'geodir_article_open_id' => '',
515
-        'geodir_article_open_class' => '',
516
-        'geodir_article_open_replace' => '',
517
-        'geodir_article_close_replace' => '',
518
-        'geodir_sidebar_right_open_id' => '',
519
-        'geodir_sidebar_right_open_class' => '',
520
-        'geodir_sidebar_right_open_replace' => '',
521
-        'geodir_sidebar_right_close_replace' => '',
522
-        'geodir_sidebar_left_open_id' => '',
523
-        'geodir_sidebar_left_open_class' => '',
524
-        'geodir_sidebar_left_open_replace' => '',
525
-        'geodir_sidebar_left_close_replace' => '',
526
-        'geodir_main_content_open_id' => '',
527
-        'geodir_main_content_open_class' => '',
528
-        'geodir_main_content_open_replace' => '',
529
-        'geodir_main_content_close_replace' => '',
530
-        'geodir_top_content_add' => '',
531
-        'geodir_before_main_content_add' => '',
532
-        'geodir_before_widget_filter' => '',
533
-        'geodir_after_widget_filter' => '',
534
-        'geodir_theme_compat_css' => stripslashes('.x-colophon.bottom{clear:both}#geodir-main-content,.geodir_flex-container{margin-top:16px}.geodir-x ul{list-style:none}.widget ul.geodir_category_list_view{border:none}.geodir_category_list_view li.geodir-gridview:last-child{border-bottom:1px solid #e1e1e1}.home .x-header-landmark{display:none}.geodir-x .x-main .geodir_advance_search_widget{margin:0}.geodir-x .top_banner_section{margin-bottom:0}.geodir-loc-bar{background:rgba(0,0,0,0.05);margin:0;padding:0}.geodir-loc-bar-in{background:none;border:none;padding:10px}.geodir-search{margin:0;width:100%}.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{border:1px solid #ccc;box-shadow:none;height:auto;line-height:21px;margin:0 1% 0 0;padding:5px 10px}.widget .geodir-search select,.geodir-search input[type="text"]{width:28%}.geodir-search input[type="submit"],.geodir-search input[type="button"]{line-height:19px;margin-right:0;width:11%}.geodir-search input:hover[type="submit"],.geodir-search input:hover[type="button"]{background:#333;color:#fff}.geodir-cat-list .widget-title{margin-top:0}.geodir-x .geodir-category-list-in{background:rgba(0,0,0,0.05);border:none}.widget .geodir-cat-list ul.geodir-popular-cat-list{border:none;border-radius:0;box-shadow:none}.geodir_full_page .geodir-cat-list ul li{border:none}.geodir_full_page .geodir-cat-list ul li a{border:none}.post-type-archive .geodir-loc-bar{border:none;margin-top:20px}#menu-item-gd-location-switcher dd{margin-left:0}.geodir-chosen-container-single .chosen-single{height:auto}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_full_page section.widget{clear:both}.x-ethos .entry-title{margin-bottom:20px}.x-ethos .geodir-chosen-container-single .chosen-single{padding:0 0 0 8px}.x-ethos .widget ul li a,.x-ethos .geodir_category_list_view li{color:#333}@media only screen and (max-width:767px){.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{margin:0 0 10px;width:100%}}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-loc-bar,.geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-category-list-in{border-bottom:1px solid rgba(0,0,0,0.1)}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
535
-        'geodir_theme_compat_js' => '',
536
-        'geodir_theme_compat_default_options' => '',
537
-        'geodir_theme_compat_code' => 'X'
538
-    );
505
+	$theme_compat['X'] = array(
506
+		'geodir_wrapper_open_id' => '',
507
+		'geodir_wrapper_open_class' => '',
508
+		'geodir_wrapper_open_replace' => '',
509
+		'geodir_wrapper_close_replace' => '',
510
+		'geodir_wrapper_content_open_id' => '',
511
+		'geodir_wrapper_content_open_class' => '',
512
+		'geodir_wrapper_content_open_replace' => '',
513
+		'geodir_wrapper_content_close_replace' => '',
514
+		'geodir_article_open_id' => '',
515
+		'geodir_article_open_class' => '',
516
+		'geodir_article_open_replace' => '',
517
+		'geodir_article_close_replace' => '',
518
+		'geodir_sidebar_right_open_id' => '',
519
+		'geodir_sidebar_right_open_class' => '',
520
+		'geodir_sidebar_right_open_replace' => '',
521
+		'geodir_sidebar_right_close_replace' => '',
522
+		'geodir_sidebar_left_open_id' => '',
523
+		'geodir_sidebar_left_open_class' => '',
524
+		'geodir_sidebar_left_open_replace' => '',
525
+		'geodir_sidebar_left_close_replace' => '',
526
+		'geodir_main_content_open_id' => '',
527
+		'geodir_main_content_open_class' => '',
528
+		'geodir_main_content_open_replace' => '',
529
+		'geodir_main_content_close_replace' => '',
530
+		'geodir_top_content_add' => '',
531
+		'geodir_before_main_content_add' => '',
532
+		'geodir_before_widget_filter' => '',
533
+		'geodir_after_widget_filter' => '',
534
+		'geodir_theme_compat_css' => stripslashes('.x-colophon.bottom{clear:both}#geodir-main-content,.geodir_flex-container{margin-top:16px}.geodir-x ul{list-style:none}.widget ul.geodir_category_list_view{border:none}.geodir_category_list_view li.geodir-gridview:last-child{border-bottom:1px solid #e1e1e1}.home .x-header-landmark{display:none}.geodir-x .x-main .geodir_advance_search_widget{margin:0}.geodir-x .top_banner_section{margin-bottom:0}.geodir-loc-bar{background:rgba(0,0,0,0.05);margin:0;padding:0}.geodir-loc-bar-in{background:none;border:none;padding:10px}.geodir-search{margin:0;width:100%}.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{border:1px solid #ccc;box-shadow:none;height:auto;line-height:21px;margin:0 1% 0 0;padding:5px 10px}.widget .geodir-search select,.geodir-search input[type="text"]{width:28%}.geodir-search input[type="submit"],.geodir-search input[type="button"]{line-height:19px;margin-right:0;width:11%}.geodir-search input:hover[type="submit"],.geodir-search input:hover[type="button"]{background:#333;color:#fff}.geodir-cat-list .widget-title{margin-top:0}.geodir-x .geodir-category-list-in{background:rgba(0,0,0,0.05);border:none}.widget .geodir-cat-list ul.geodir-popular-cat-list{border:none;border-radius:0;box-shadow:none}.geodir_full_page .geodir-cat-list ul li{border:none}.geodir_full_page .geodir-cat-list ul li a{border:none}.post-type-archive .geodir-loc-bar{border:none;margin-top:20px}#menu-item-gd-location-switcher dd{margin-left:0}.geodir-chosen-container-single .chosen-single{height:auto}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_full_page section.widget{clear:both}.x-ethos .entry-title{margin-bottom:20px}.x-ethos .geodir-chosen-container-single .chosen-single{padding:0 0 0 8px}.x-ethos .widget ul li a,.x-ethos .geodir_category_list_view li{color:#333}@media only screen and (max-width:767px){.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{margin:0 0 10px;width:100%}}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-loc-bar,.geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-category-list-in{border-bottom:1px solid rgba(0,0,0,0.1)}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
535
+		'geodir_theme_compat_js' => '',
536
+		'geodir_theme_compat_default_options' => '',
537
+		'geodir_theme_compat_code' => 'X'
538
+	);
539 539
 
540 540
 // Divi
541
-    $theme_compat['Divi'] = array(
542
-        'geodir_wrapper_open_id' => 'main-content',
543
-        'geodir_wrapper_open_class' => '',
544
-        'geodir_wrapper_open_replace' => '',
545
-        'geodir_wrapper_close_replace' => '',
546
-        'geodir_wrapper_content_open_id' => 'left-area',
547
-        'geodir_wrapper_content_open_class' => '',
548
-        'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
549
-        'geodir_wrapper_content_close_replace' => '',
550
-        'geodir_article_open_id' => '',
551
-        'geodir_article_open_class' => '',
552
-        'geodir_article_open_replace' => '',
553
-        'geodir_article_close_replace' => '',
554
-        'geodir_sidebar_right_open_id' => 'sidebar',
555
-        'geodir_sidebar_right_open_class' => '',
556
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
557
-        'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
558
-        'geodir_sidebar_left_open_id' => 'sidebar',
559
-        'geodir_sidebar_left_open_class' => '',
560
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
561
-        'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
562
-        'geodir_main_content_open_id' => '',
563
-        'geodir_main_content_open_class' => '',
564
-        'geodir_main_content_open_replace' => '',
565
-        'geodir_main_content_close_replace' => '',
566
-        'geodir_top_content_add' => '',
567
-        'geodir_before_main_content_add' => '',
568
-        'geodir_before_widget_filter' => '',
569
-        'geodir_after_widget_filter' => '',
570
-        'geodir_theme_compat_css' => stripslashes('#left-area ul.geodir-direction-nav{list-style-type:none}#sidebar .geodir-company_info{margin-left:30px}#sidebar .geodir-widget{float:none;margin:0 0 30px 30px}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.archive .entry-header,.geodir-breadcrumb{border-bottom:1px solid #e2e2e2}.archive .entry-header h1,ul#breadcrumbs{padding:0 15px;width:100%}#left-area ul.geodir_category_list_view{padding:10px 0}.nav li#menu-item-gd-location-switcher ul{width:222px}#menu-item-gd-location-switcher li.gd-location-switcher-menu-item{padding-right:0}#menu-item-gd-location-switcher dd{margin-left:0}#menu-item-gd-location-switcher .geodir_location_tab_container dd a{padding:5px;width:auto}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type=button],.geodir_full_page .geodir-search input[type=submit],.geodir_full_page .geodir-search input[type=text],.geodir_full_page .geodir-search select{display:inline-block;float:none}'),
571
-        'geodir_theme_compat_js' => '',
572
-        'geodir_theme_compat_default_options' => '',
573
-        'geodir_theme_compat_code' => 'Divi'
574
-    );
541
+	$theme_compat['Divi'] = array(
542
+		'geodir_wrapper_open_id' => 'main-content',
543
+		'geodir_wrapper_open_class' => '',
544
+		'geodir_wrapper_open_replace' => '',
545
+		'geodir_wrapper_close_replace' => '',
546
+		'geodir_wrapper_content_open_id' => 'left-area',
547
+		'geodir_wrapper_content_open_class' => '',
548
+		'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
549
+		'geodir_wrapper_content_close_replace' => '',
550
+		'geodir_article_open_id' => '',
551
+		'geodir_article_open_class' => '',
552
+		'geodir_article_open_replace' => '',
553
+		'geodir_article_close_replace' => '',
554
+		'geodir_sidebar_right_open_id' => 'sidebar',
555
+		'geodir_sidebar_right_open_class' => '',
556
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
557
+		'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
558
+		'geodir_sidebar_left_open_id' => 'sidebar',
559
+		'geodir_sidebar_left_open_class' => '',
560
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
561
+		'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
562
+		'geodir_main_content_open_id' => '',
563
+		'geodir_main_content_open_class' => '',
564
+		'geodir_main_content_open_replace' => '',
565
+		'geodir_main_content_close_replace' => '',
566
+		'geodir_top_content_add' => '',
567
+		'geodir_before_main_content_add' => '',
568
+		'geodir_before_widget_filter' => '',
569
+		'geodir_after_widget_filter' => '',
570
+		'geodir_theme_compat_css' => stripslashes('#left-area ul.geodir-direction-nav{list-style-type:none}#sidebar .geodir-company_info{margin-left:30px}#sidebar .geodir-widget{float:none;margin:0 0 30px 30px}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.archive .entry-header,.geodir-breadcrumb{border-bottom:1px solid #e2e2e2}.archive .entry-header h1,ul#breadcrumbs{padding:0 15px;width:100%}#left-area ul.geodir_category_list_view{padding:10px 0}.nav li#menu-item-gd-location-switcher ul{width:222px}#menu-item-gd-location-switcher li.gd-location-switcher-menu-item{padding-right:0}#menu-item-gd-location-switcher dd{margin-left:0}#menu-item-gd-location-switcher .geodir_location_tab_container dd a{padding:5px;width:auto}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type=button],.geodir_full_page .geodir-search input[type=submit],.geodir_full_page .geodir-search input[type=text],.geodir_full_page .geodir-search select{display:inline-block;float:none}'),
571
+		'geodir_theme_compat_js' => '',
572
+		'geodir_theme_compat_default_options' => '',
573
+		'geodir_theme_compat_code' => 'Divi'
574
+	);
575 575
 
576 576
 // Genesis
577
-    $theme_compat['Genesis'] = array(
578
-        'geodir_wrapper_open_id' => '',
579
-        'geodir_wrapper_open_class' => 'content-sidebar-wrap',
580
-        'geodir_wrapper_open_replace' => '',
581
-        'geodir_wrapper_close_replace' => '',
582
-        'geodir_wrapper_content_open_id' => '',
583
-        'geodir_wrapper_content_open_class' => 'content',
584
-        'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
585
-        'geodir_wrapper_content_close_replace' => '',
586
-        'geodir_article_open_id' => '',
587
-        'geodir_article_open_class' => '',
588
-        'geodir_article_open_replace' => '',
589
-        'geodir_article_close_replace' => '',
590
-        'geodir_sidebar_right_open_id' => '',
591
-        'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
592
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
593
-        'geodir_sidebar_right_close_replace' => '',
594
-        'geodir_sidebar_left_open_id' => '',
595
-        'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
596
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
597
-        'geodir_sidebar_left_close_replace' => '',
598
-        'geodir_main_content_open_id' => '',
599
-        'geodir_main_content_open_class' => '',
600
-        'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
601
-        'geodir_main_content_close_replace' => '',
602
-        'geodir_top_content_add' => '',
603
-        'geodir_before_main_content_add' => '',
604
-        'geodir_before_widget_filter' => '',
605
-        'geodir_after_widget_filter' => '',
606
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
607
-        'geodir_theme_compat_css' => stripslashes('.full-width-content #geodir-wrapper-content{width:100%}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}.content{float:left}.sidebar-content .content,.sidebar-content #geodir-wrapper-content{float:right}.sidebar .geodir-company_info{background-color:#fff;border:none}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.geodir-breadcrumb-bar{margin-bottom:-35px} .search-page .entry-title,.listings-page .entry-title{font-size: 20px;}.site-inner .geodir-breadcrumb-bar{margin-bottom:0px}'),
608
-        'geodir_theme_compat_js' => '',
609
-        'geodir_theme_compat_default_options' => '',
610
-        'geodir_theme_compat_code' => 'Genesis'
611
-    );
577
+	$theme_compat['Genesis'] = array(
578
+		'geodir_wrapper_open_id' => '',
579
+		'geodir_wrapper_open_class' => 'content-sidebar-wrap',
580
+		'geodir_wrapper_open_replace' => '',
581
+		'geodir_wrapper_close_replace' => '',
582
+		'geodir_wrapper_content_open_id' => '',
583
+		'geodir_wrapper_content_open_class' => 'content',
584
+		'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
585
+		'geodir_wrapper_content_close_replace' => '',
586
+		'geodir_article_open_id' => '',
587
+		'geodir_article_open_class' => '',
588
+		'geodir_article_open_replace' => '',
589
+		'geodir_article_close_replace' => '',
590
+		'geodir_sidebar_right_open_id' => '',
591
+		'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
592
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
593
+		'geodir_sidebar_right_close_replace' => '',
594
+		'geodir_sidebar_left_open_id' => '',
595
+		'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
596
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
597
+		'geodir_sidebar_left_close_replace' => '',
598
+		'geodir_main_content_open_id' => '',
599
+		'geodir_main_content_open_class' => '',
600
+		'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
601
+		'geodir_main_content_close_replace' => '',
602
+		'geodir_top_content_add' => '',
603
+		'geodir_before_main_content_add' => '',
604
+		'geodir_before_widget_filter' => '',
605
+		'geodir_after_widget_filter' => '',
606
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
607
+		'geodir_theme_compat_css' => stripslashes('.full-width-content #geodir-wrapper-content{width:100%}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}.content{float:left}.sidebar-content .content,.sidebar-content #geodir-wrapper-content{float:right}.sidebar .geodir-company_info{background-color:#fff;border:none}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.geodir-breadcrumb-bar{margin-bottom:-35px} .search-page .entry-title,.listings-page .entry-title{font-size: 20px;}.site-inner .geodir-breadcrumb-bar{margin-bottom:0px}'),
608
+		'geodir_theme_compat_js' => '',
609
+		'geodir_theme_compat_default_options' => '',
610
+		'geodir_theme_compat_code' => 'Genesis'
611
+	);
612 612
 
613 613
 // Jupiter
614
-    $theme_compat['Jupiter'] = array(
615
-        'geodir_wrapper_open_id' => '',
616
-        'geodir_wrapper_open_class' => '',
617
-        'geodir_wrapper_open_replace' => '<div id="theme-page"><div class="mk-main-wrapper-holder"><div  class="theme-page-wrapper mk-main-wrapper  mk-grid vc_row-fluid">',
618
-        'geodir_wrapper_close_replace' => '</div></div></div>',
619
-        'geodir_wrapper_content_open_id' => '',
620
-        'geodir_wrapper_content_open_class' => '',
621
-        'geodir_wrapper_content_open_replace' => '',
622
-        'geodir_wrapper_content_close_replace' => '',
623
-        'geodir_article_open_id' => '',
624
-        'geodir_article_open_class' => '',
625
-        'geodir_article_open_replace' => '',
626
-        'geodir_article_close_replace' => '',
627
-        'geodir_sidebar_right_open_id' => 'mk-sidebar',
628
-        'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
629
-        'geodir_sidebar_right_open_replace' => '',
630
-        'geodir_sidebar_right_close_replace' => '',
631
-        'geodir_sidebar_left_open_id' => 'mk-sidebar',
632
-        'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
633
-        'geodir_sidebar_left_open_replace' => '',
634
-        'geodir_sidebar_left_close_replace' => '',
635
-        'geodir_main_content_open_id' => '',
636
-        'geodir_main_content_open_class' => '',
637
-        'geodir_main_content_open_replace' => '',
638
-        'geodir_main_content_close_replace' => '',
639
-        'geodir_top_content_add' => '',
640
-        'geodir_before_main_content_add' => '',
641
-        'geodir_before_widget_filter' => '',
642
-        'geodir_after_widget_filter' => '',
643
-        'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
644
-        'geodir_after_title_filter' => '',
645
-        'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
646
-        'geodir_sub_menu_ul_class_filter' => '',
647
-        'geodir_sub_menu_li_class_filter' => '',
648
-        'geodir_menu_a_class_filter' => 'menu-item-link',
649
-        'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
650
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher menu-item-has-children no-mega-menu',
651
-        'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
652
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
653
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
654
-        'geodir_theme_compat_css' => stripslashes('.geodir-widget li,.geodir_category_list_view li{margin:0}#theme-page h3.geodir-entry-title{font-size:14px}#menu-item-gd-location-switcher dd{line-height:44px}#menu-item-gd-location-switcher .geodir_location_sugestion{line-height:20px}.geodir_loginbox{overflow:visible}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
655
-        'geodir_theme_compat_js' => '',
656
-        'geodir_theme_compat_default_options' => '',
657
-        'geodir_theme_compat_code' => 'Jupiter'
658
-    );
614
+	$theme_compat['Jupiter'] = array(
615
+		'geodir_wrapper_open_id' => '',
616
+		'geodir_wrapper_open_class' => '',
617
+		'geodir_wrapper_open_replace' => '<div id="theme-page"><div class="mk-main-wrapper-holder"><div  class="theme-page-wrapper mk-main-wrapper  mk-grid vc_row-fluid">',
618
+		'geodir_wrapper_close_replace' => '</div></div></div>',
619
+		'geodir_wrapper_content_open_id' => '',
620
+		'geodir_wrapper_content_open_class' => '',
621
+		'geodir_wrapper_content_open_replace' => '',
622
+		'geodir_wrapper_content_close_replace' => '',
623
+		'geodir_article_open_id' => '',
624
+		'geodir_article_open_class' => '',
625
+		'geodir_article_open_replace' => '',
626
+		'geodir_article_close_replace' => '',
627
+		'geodir_sidebar_right_open_id' => 'mk-sidebar',
628
+		'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
629
+		'geodir_sidebar_right_open_replace' => '',
630
+		'geodir_sidebar_right_close_replace' => '',
631
+		'geodir_sidebar_left_open_id' => 'mk-sidebar',
632
+		'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
633
+		'geodir_sidebar_left_open_replace' => '',
634
+		'geodir_sidebar_left_close_replace' => '',
635
+		'geodir_main_content_open_id' => '',
636
+		'geodir_main_content_open_class' => '',
637
+		'geodir_main_content_open_replace' => '',
638
+		'geodir_main_content_close_replace' => '',
639
+		'geodir_top_content_add' => '',
640
+		'geodir_before_main_content_add' => '',
641
+		'geodir_before_widget_filter' => '',
642
+		'geodir_after_widget_filter' => '',
643
+		'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
644
+		'geodir_after_title_filter' => '',
645
+		'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
646
+		'geodir_sub_menu_ul_class_filter' => '',
647
+		'geodir_sub_menu_li_class_filter' => '',
648
+		'geodir_menu_a_class_filter' => 'menu-item-link',
649
+		'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
650
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher menu-item-has-children no-mega-menu',
651
+		'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
652
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
653
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
654
+		'geodir_theme_compat_css' => stripslashes('.geodir-widget li,.geodir_category_list_view li{margin:0}#theme-page h3.geodir-entry-title{font-size:14px}#menu-item-gd-location-switcher dd{line-height:44px}#menu-item-gd-location-switcher .geodir_location_sugestion{line-height:20px}.geodir_loginbox{overflow:visible}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
655
+		'geodir_theme_compat_js' => '',
656
+		'geodir_theme_compat_default_options' => '',
657
+		'geodir_theme_compat_code' => 'Jupiter'
658
+	);
659 659
 
660 660
 // Multi News
661
-    $theme_compat['Multi_News'] = array(
662
-        'geodir_wrapper_open_id' => '',
663
-        'geodir_wrapper_open_class' => 'main-container clearfix',
664
-        'geodir_wrapper_open_replace' => '',
665
-        'geodir_wrapper_close_replace' => '',
666
-        'geodir_wrapper_content_open_id' => '',
667
-        'geodir_wrapper_content_open_class' => '',
668
-        'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
669
-        'geodir_wrapper_content_close_replace' => '</div></div></div>',
670
-        'geodir_article_open_id' => '',
671
-        'geodir_article_open_class' => '',
672
-        'geodir_article_open_replace' => '',
673
-        'geodir_article_close_replace' => '',
674
-        'geodir_sidebar_right_open_id' => '',
675
-        'geodir_sidebar_right_open_class' => '',
676
-        'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
677
-        'geodir_sidebar_right_close_replace' => '',
678
-        'geodir_sidebar_left_open_id' => '',
679
-        'geodir_sidebar_left_open_class' => '',
680
-        'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
681
-        'geodir_sidebar_left_close_replace' => '',
682
-        'geodir_main_content_open_id' => '',
683
-        'geodir_main_content_open_class' => '',
684
-        'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
685
-        'geodir_main_content_close_replace' => '</div>',
686
-        'geodir_top_content_add' => '',
687
-        'geodir_before_main_content_add' => '',
688
-        'geodir_full_page_class_filter' => 'section full-width-section',
689
-        'geodir_before_widget_filter' => '',
690
-        'geodir_after_widget_filter' => '',
691
-        'geodir_before_title_filter' => '<div class="widget-title"><h2>',
692
-        'geodir_after_title_filter' => '</h2></div>',
693
-        'geodir_menu_li_class_filter' => '',
694
-        'geodir_sub_menu_ul_class_filter' => '',
695
-        'geodir_sub_menu_li_class_filter' => '',
696
-        'geodir_menu_a_class_filter' => '',
697
-        'geodir_sub_menu_a_class_filter' => '',
698
-        'geodir_location_switcher_menu_li_class_filter' => '',
699
-        'geodir_location_switcher_menu_a_class_filter' => '',
700
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
701
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
702
-        'geodir_theme_compat_css' => stripslashes('.full-width-section .geodir-search{margin:0;width:100%}.geodir_full_page .geodir-search{margin:0 auto;float:none}.geodir-search input[type=button],.geodir-search input[type=submit]{width:13%}.geodir-search input[type=text]{border:1px solid #ddd;border-radius:0;padding:0 8px}.geodir-category-list-in,.geodir-loc-bar-in{background:#f2f2f2;border-color:#dbdbdb}.geodir-category-list-in{margin-top:0}.geodir-cat-list .widget-title h2{margin:-13px -13px 13px}.widget .geodir-cat-list ul li.geodir-pcat-show a:before{display:none!important}.widget .geodir-cat-list ul li.geodir-pcat-show i{margin-right:5px}.container .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#geodir_carousel,#geodir_slider{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;margin-bottom:20px!important;border:1px solid #e1e1e1;box-shadow:none}#geodir_carousel{padding:10px}.geodir-tabs-content ol.commentlist{margin:40px 0;padding:0}li#post_mapTab{min-height:400px}#reviewsTab ol.commentlist li{border-bottom:none}#reviewsTab ol.commentlist li article.comment{border-bottom:1px solid #e1e1e1;padding-bottom:10px}.comment-content .rating{display:none}.comment-respond .gd_rating{margin-bottom:20px}div.geodir-rating{width:85px!important}.comment-respond .comment-notes{margin-bottom:10px}.average-review span,.comment-form label,.dtreviewed,.geodir-details-sidebar-user-links a,.geodir-viewall,.geodir_more_info span,.reviewer,dl.geodir-tab-head dd a{font-family:"Archivo Narrow",sans-serif}section.comment-content{margin:0 0 0 12%}#reviewsTab .comments-area .comment-content{width:auto}section.comment-content .description,section.comment-content p{margin:15px 0}dl.geodir-tab-head dd a{background:#f3f3f3;margin-top:-1px;font-size:14px;padding:0 15px}dl.geodir-tab-head dd.geodir-tab-active a{padding-bottom:1px}.geodir-widget .geodir_list_heading,.geodir-widget h3.widget-title{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px;color:#2d2d2d}.geodir-widget .geodir_list_heading h3{background:0 0;border:none}.geodir-widget .geodir_list_heading{margin:-13px -14px 13px}.geodir-map-listing-page{border-width:1px 0 0;border-style:solid;border-color:#dbdbdb}.geodir-sidebar-wrap .geodir-company_info{margin:15px}.geodir-details-sidebar-social-sharing iframe{float:left}.geodir-details-sidebar-rating{overflow:hidden}.geodir-details-sidebar-rating .gd_rating_show,.geodir-details-sidebar-rating .geodir-rating{float:left;margin-right:15px}.geodir-details-sidebar-rating span.item{float:left;margin-top:5px}.geodir-details-sidebar-rating .average-review{top:-4px;position:relative}.geodir-details-sidebar-rating span.item img{margin-top:5px}.geodir_full_page{background:#fff;border:1px solid #e1e1e1;-webkit-box-shadow:0 1px 0 #e5e5e5;box-shadow:0 1px 0 #e5e5e5;padding:15px;margin-bottom:20px;clear:both}.geodir_map_container .main_list img{margin:0 5px}.geodir_category_list_view li.geodir-gridview .geodir-post-img .geodir_thumbnail{margin-bottom:10px}.geodir-addinfo .geodir-pinpoint,.geodir-addinfo a i{margin-right:5px}.geodir_category_list_view li.geodir-gridview h3{font-size:18px;margin-bottom:10px}#related_listingTab ul.geodir_category_list_view{padding:0!important}#reviewsTab #comments .gd_rating{margin-top:5px}.widget .geodir_category_list_view li .geodir-entry-content,.widget .geodir_category_list_view li a:before{display:none!important}.geodir_category_list_view li .geodir-entry-title{margin-bottom:10px}.widget ul.geodir_category_list_view{padding:15px}.sidebar .widget .geodir_category_list_view li{width:calc(100% - 25px)}.widget .geodir-loginbox-list li{overflow:visible!important}.widget ul.chosen-results{margin:0!important}.main_list_selecter{margin-right:5px}.geodir-viewall{float:right;width:auto!important}.widget-title h2{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px}.widget:first-child .geodir_list_heading .widget-title{margin-top:0}.geodir_list_heading .widget-title{float:left;width:80%;margin-top:0}.geodir_list_heading .widget-title h2{padding:0 px;background:0 0;border:none;height:auto;line-height:auto}.chosen-default:before{content:none;display:none;position:absolute;margin-left:-1000000px;float:left}#geodir-wrapper .entry-crumbs{margin-bottom:20px}.geodir-search .mom-select{float:left;width:150px;margin:5px;border:1px solid #ddd;height:40px}.iprelative .gm-style .gm-style-iw{width:100%!important}'),
703
-        'geodir_theme_compat_js' => 'jQuery(document).ready(function(e){e(".geodir_full_page").length&&""===e.trim(e(".geodir_full_page").html())&&e(".geodir_full_page").css({display:"none"})});',
704
-        'geodir_theme_compat_default_options' => '',
705
-        'geodir_theme_compat_code' => 'Multi_News'
706
-    );
707
-
708
-    // Kelo
709
-    $theme_compat['Kleo'] = array(
710
-        'geodir_theme_compat_code' => 'Kleo'
711
-    );
712
-
713
-
714
-    // Twenty Seventeen
715
-    $theme_compat['Twenty_Seventeen'] = array(
716
-        'geodir_wrapper_open_replace' => '<div class="wrap">',
717
-        'geodir_wrapper_content_open_replace' => '<div id="primary" class="content-area" >',
718
-        'geodir_sidebar_right_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
719
-        'geodir_sidebar_left_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
720
-        'geodir_theme_compat_css' => stripslashes('body.geodir-page #primary header.entry-header {margin-left:0;float:none !important;} .gxeodir_flex-container{float:left;} .geodir-tabs-content.entry-content{width:100% !important;} dl.geodir-tab-head, .geodir_map_container {z-index:2;} .geodir-cat-list ul.geodir-popular-cat-list  li + li {    margin-top: 0;} .geodir-cat-list .geodir-popular-cat-list a img, .entry-content .gm-style a img, .widget .gm-style a img {    box-sizing: none; -webkit-box-shadow: none; -moz-box-shadow: none;}'),
721
-        'geodir_theme_compat_code' => 'Twenty_Seventeen'
722
-    );
723
-
724
-    // buddyBoss
725
-    $theme_compat['Boss.'] = array(
726
-        'geodir_wrapper_open_replace' => '<div class="page-right-sidebar">',
727
-        'geodir_wrapper_content_open_replace' => '<div id="primary" class="site-content">',
728
-        'geodir_article_open_replace' => '<div  id="[id]" class="[class]" itemscope itemtype="[itemtype]">',
729
-        'geodir_article_close_replace' => '</div>',
730
-        'geodir_sidebar_right_open_replace' => '<div id="secondary" class="widget-area" >',
731
-        'geodir_sidebar_right_close_replace' => '</div>',
732
-        'geodir_sidebar_left_open_replace' => '<div id="secondary" class="widget-area" >',
733
-        'geodir_sidebar_left_close_replace' => '</div>',
734
-        'geodir_theme_compat_css' => stripslashes('.geodir-breadcrumb{padding-top:20px;border-bottom:1px solid #ddd;padding-bottom:0} article.geodir-category-listing{padding: 0 !important;}'),
735
-        'geodir_theme_compat_code' => 'BuddyBoss'
736
-
737
-
738
-    );
739
-
740
-    // Flatsome
741
-    $theme_compat['Flatsome'] = array(
742
-        'geodir_wrapper_open_replace' => '<div class="page-wrapper page-right-sidebar"><div class="row">',
743
-        'geodir_wrapper_close_replace' => '</div></div>',
744
-        'geodir_wrapper_content_open_replace' => '<div id="content" class="large-9 left col col-divided" role="main"><div class="page-inner">',
745
-        'geodir_wrapper_content_close_replace' => '</div></div>',
746
-        'geodir_sidebar_right_open_replace' => '<div class="large-3 col"><div id="secondary" class="widget-area " role="complementary">',
747
-        'geodir_sidebar_right_close_replace' => '</div></div>',
748
-        'geodir_sidebar_left_open_replace' => '<div class="large-3 col"><div id="secondary" class="widget-area " role="complementary">',
749
-        'geodir_sidebar_left_close_replace' => '</div></div>',
750
-        'geodir_menu_li_class_filter' => 'menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children  has-dropdown',
751
-        'geodir_sub_menu_ul_class_filter' => 'nav-dropdown nav-dropdown-default gd-nav-dropdown',
752
-        'geodir_sub_menu_li_class_filter' => 'menu-item menu-item-type-custom menu-item-object-custom',
753
-        'geodir_menu_a_class_filter' => 'nav-top-link gd-nav-top-link',
754
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher has-dropdown',
755
-        'geodir_location_switcher_menu_sub_ul_class_filter' => 'nav-dropdown nav-dropdown-default',
756
-        'geodir_theme_compat_css' => stripslashes('dl.geodir_location_tabs_head dt{margin:0;}.header{z-index:90;}'),
757
-        'geodir_theme_compat_js' => stripslashes('jQuery(function(){jQuery("#masthead .gd-nav-top-link").append(\'<i class="icon-angle-down"></i>\'),jQuery("#menu-item-gd-location-switcher >  a").append(\'<i class="icon-angle-down"></i>\'),jQuery(".mobile-sidebar .gd-nav-dropdown").addClass("children"),jQuery(".mobile-sidebar .gd-nav-dropdown").removeClass("nav-dropdown nav-dropdown-default"),jQuery(".mobile-sidebar #menu-item-gd-location-switcher ul").removeClass("nav-dropdown nav-dropdown-default"),setTimeout(function(){},5e3)});'),
758
-
759
-
760
-    );
761
-
762
-
763
-    update_option('gd_theme_compats', $theme_compat);
764
-
765
-    gd_set_theme_compat();// set the compat pack if avail
661
+	$theme_compat['Multi_News'] = array(
662
+		'geodir_wrapper_open_id' => '',
663
+		'geodir_wrapper_open_class' => 'main-container clearfix',
664
+		'geodir_wrapper_open_replace' => '',
665
+		'geodir_wrapper_close_replace' => '',
666
+		'geodir_wrapper_content_open_id' => '',
667
+		'geodir_wrapper_content_open_class' => '',
668
+		'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
669
+		'geodir_wrapper_content_close_replace' => '</div></div></div>',
670
+		'geodir_article_open_id' => '',
671
+		'geodir_article_open_class' => '',
672
+		'geodir_article_open_replace' => '',
673
+		'geodir_article_close_replace' => '',
674
+		'geodir_sidebar_right_open_id' => '',
675
+		'geodir_sidebar_right_open_class' => '',
676
+		'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
677
+		'geodir_sidebar_right_close_replace' => '',
678
+		'geodir_sidebar_left_open_id' => '',
679
+		'geodir_sidebar_left_open_class' => '',
680
+		'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
681
+		'geodir_sidebar_left_close_replace' => '',
682
+		'geodir_main_content_open_id' => '',
683
+		'geodir_main_content_open_class' => '',
684
+		'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
685
+		'geodir_main_content_close_replace' => '</div>',
686
+		'geodir_top_content_add' => '',
687
+		'geodir_before_main_content_add' => '',
688
+		'geodir_full_page_class_filter' => 'section full-width-section',
689
+		'geodir_before_widget_filter' => '',
690
+		'geodir_after_widget_filter' => '',
691
+		'geodir_before_title_filter' => '<div class="widget-title"><h2>',
692
+		'geodir_after_title_filter' => '</h2></div>',
693
+		'geodir_menu_li_class_filter' => '',
694
+		'geodir_sub_menu_ul_class_filter' => '',
695
+		'geodir_sub_menu_li_class_filter' => '',
696
+		'geodir_menu_a_class_filter' => '',
697
+		'geodir_sub_menu_a_class_filter' => '',
698
+		'geodir_location_switcher_menu_li_class_filter' => '',
699
+		'geodir_location_switcher_menu_a_class_filter' => '',
700
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
701
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
702
+		'geodir_theme_compat_css' => stripslashes('.full-width-section .geodir-search{margin:0;width:100%}.geodir_full_page .geodir-search{margin:0 auto;float:none}.geodir-search input[type=button],.geodir-search input[type=submit]{width:13%}.geodir-search input[type=text]{border:1px solid #ddd;border-radius:0;padding:0 8px}.geodir-category-list-in,.geodir-loc-bar-in{background:#f2f2f2;border-color:#dbdbdb}.geodir-category-list-in{margin-top:0}.geodir-cat-list .widget-title h2{margin:-13px -13px 13px}.widget .geodir-cat-list ul li.geodir-pcat-show a:before{display:none!important}.widget .geodir-cat-list ul li.geodir-pcat-show i{margin-right:5px}.container .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#geodir_carousel,#geodir_slider{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;margin-bottom:20px!important;border:1px solid #e1e1e1;box-shadow:none}#geodir_carousel{padding:10px}.geodir-tabs-content ol.commentlist{margin:40px 0;padding:0}li#post_mapTab{min-height:400px}#reviewsTab ol.commentlist li{border-bottom:none}#reviewsTab ol.commentlist li article.comment{border-bottom:1px solid #e1e1e1;padding-bottom:10px}.comment-content .rating{display:none}.comment-respond .gd_rating{margin-bottom:20px}div.geodir-rating{width:85px!important}.comment-respond .comment-notes{margin-bottom:10px}.average-review span,.comment-form label,.dtreviewed,.geodir-details-sidebar-user-links a,.geodir-viewall,.geodir_more_info span,.reviewer,dl.geodir-tab-head dd a{font-family:"Archivo Narrow",sans-serif}section.comment-content{margin:0 0 0 12%}#reviewsTab .comments-area .comment-content{width:auto}section.comment-content .description,section.comment-content p{margin:15px 0}dl.geodir-tab-head dd a{background:#f3f3f3;margin-top:-1px;font-size:14px;padding:0 15px}dl.geodir-tab-head dd.geodir-tab-active a{padding-bottom:1px}.geodir-widget .geodir_list_heading,.geodir-widget h3.widget-title{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px;color:#2d2d2d}.geodir-widget .geodir_list_heading h3{background:0 0;border:none}.geodir-widget .geodir_list_heading{margin:-13px -14px 13px}.geodir-map-listing-page{border-width:1px 0 0;border-style:solid;border-color:#dbdbdb}.geodir-sidebar-wrap .geodir-company_info{margin:15px}.geodir-details-sidebar-social-sharing iframe{float:left}.geodir-details-sidebar-rating{overflow:hidden}.geodir-details-sidebar-rating .gd_rating_show,.geodir-details-sidebar-rating .geodir-rating{float:left;margin-right:15px}.geodir-details-sidebar-rating span.item{float:left;margin-top:5px}.geodir-details-sidebar-rating .average-review{top:-4px;position:relative}.geodir-details-sidebar-rating span.item img{margin-top:5px}.geodir_full_page{background:#fff;border:1px solid #e1e1e1;-webkit-box-shadow:0 1px 0 #e5e5e5;box-shadow:0 1px 0 #e5e5e5;padding:15px;margin-bottom:20px;clear:both}.geodir_map_container .main_list img{margin:0 5px}.geodir_category_list_view li.geodir-gridview .geodir-post-img .geodir_thumbnail{margin-bottom:10px}.geodir-addinfo .geodir-pinpoint,.geodir-addinfo a i{margin-right:5px}.geodir_category_list_view li.geodir-gridview h3{font-size:18px;margin-bottom:10px}#related_listingTab ul.geodir_category_list_view{padding:0!important}#reviewsTab #comments .gd_rating{margin-top:5px}.widget .geodir_category_list_view li .geodir-entry-content,.widget .geodir_category_list_view li a:before{display:none!important}.geodir_category_list_view li .geodir-entry-title{margin-bottom:10px}.widget ul.geodir_category_list_view{padding:15px}.sidebar .widget .geodir_category_list_view li{width:calc(100% - 25px)}.widget .geodir-loginbox-list li{overflow:visible!important}.widget ul.chosen-results{margin:0!important}.main_list_selecter{margin-right:5px}.geodir-viewall{float:right;width:auto!important}.widget-title h2{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px}.widget:first-child .geodir_list_heading .widget-title{margin-top:0}.geodir_list_heading .widget-title{float:left;width:80%;margin-top:0}.geodir_list_heading .widget-title h2{padding:0 px;background:0 0;border:none;height:auto;line-height:auto}.chosen-default:before{content:none;display:none;position:absolute;margin-left:-1000000px;float:left}#geodir-wrapper .entry-crumbs{margin-bottom:20px}.geodir-search .mom-select{float:left;width:150px;margin:5px;border:1px solid #ddd;height:40px}.iprelative .gm-style .gm-style-iw{width:100%!important}'),
703
+		'geodir_theme_compat_js' => 'jQuery(document).ready(function(e){e(".geodir_full_page").length&&""===e.trim(e(".geodir_full_page").html())&&e(".geodir_full_page").css({display:"none"})});',
704
+		'geodir_theme_compat_default_options' => '',
705
+		'geodir_theme_compat_code' => 'Multi_News'
706
+	);
707
+
708
+	// Kelo
709
+	$theme_compat['Kleo'] = array(
710
+		'geodir_theme_compat_code' => 'Kleo'
711
+	);
712
+
713
+
714
+	// Twenty Seventeen
715
+	$theme_compat['Twenty_Seventeen'] = array(
716
+		'geodir_wrapper_open_replace' => '<div class="wrap">',
717
+		'geodir_wrapper_content_open_replace' => '<div id="primary" class="content-area" >',
718
+		'geodir_sidebar_right_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
719
+		'geodir_sidebar_left_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
720
+		'geodir_theme_compat_css' => stripslashes('body.geodir-page #primary header.entry-header {margin-left:0;float:none !important;} .gxeodir_flex-container{float:left;} .geodir-tabs-content.entry-content{width:100% !important;} dl.geodir-tab-head, .geodir_map_container {z-index:2;} .geodir-cat-list ul.geodir-popular-cat-list  li + li {    margin-top: 0;} .geodir-cat-list .geodir-popular-cat-list a img, .entry-content .gm-style a img, .widget .gm-style a img {    box-sizing: none; -webkit-box-shadow: none; -moz-box-shadow: none;}'),
721
+		'geodir_theme_compat_code' => 'Twenty_Seventeen'
722
+	);
723
+
724
+	// buddyBoss
725
+	$theme_compat['Boss.'] = array(
726
+		'geodir_wrapper_open_replace' => '<div class="page-right-sidebar">',
727
+		'geodir_wrapper_content_open_replace' => '<div id="primary" class="site-content">',
728
+		'geodir_article_open_replace' => '<div  id="[id]" class="[class]" itemscope itemtype="[itemtype]">',
729
+		'geodir_article_close_replace' => '</div>',
730
+		'geodir_sidebar_right_open_replace' => '<div id="secondary" class="widget-area" >',
731
+		'geodir_sidebar_right_close_replace' => '</div>',
732
+		'geodir_sidebar_left_open_replace' => '<div id="secondary" class="widget-area" >',
733
+		'geodir_sidebar_left_close_replace' => '</div>',
734
+		'geodir_theme_compat_css' => stripslashes('.geodir-breadcrumb{padding-top:20px;border-bottom:1px solid #ddd;padding-bottom:0} article.geodir-category-listing{padding: 0 !important;}'),
735
+		'geodir_theme_compat_code' => 'BuddyBoss'
736
+
737
+
738
+	);
739
+
740
+	// Flatsome
741
+	$theme_compat['Flatsome'] = array(
742
+		'geodir_wrapper_open_replace' => '<div class="page-wrapper page-right-sidebar"><div class="row">',
743
+		'geodir_wrapper_close_replace' => '</div></div>',
744
+		'geodir_wrapper_content_open_replace' => '<div id="content" class="large-9 left col col-divided" role="main"><div class="page-inner">',
745
+		'geodir_wrapper_content_close_replace' => '</div></div>',
746
+		'geodir_sidebar_right_open_replace' => '<div class="large-3 col"><div id="secondary" class="widget-area " role="complementary">',
747
+		'geodir_sidebar_right_close_replace' => '</div></div>',
748
+		'geodir_sidebar_left_open_replace' => '<div class="large-3 col"><div id="secondary" class="widget-area " role="complementary">',
749
+		'geodir_sidebar_left_close_replace' => '</div></div>',
750
+		'geodir_menu_li_class_filter' => 'menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children  has-dropdown',
751
+		'geodir_sub_menu_ul_class_filter' => 'nav-dropdown nav-dropdown-default gd-nav-dropdown',
752
+		'geodir_sub_menu_li_class_filter' => 'menu-item menu-item-type-custom menu-item-object-custom',
753
+		'geodir_menu_a_class_filter' => 'nav-top-link gd-nav-top-link',
754
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher has-dropdown',
755
+		'geodir_location_switcher_menu_sub_ul_class_filter' => 'nav-dropdown nav-dropdown-default',
756
+		'geodir_theme_compat_css' => stripslashes('dl.geodir_location_tabs_head dt{margin:0;}.header{z-index:90;}'),
757
+		'geodir_theme_compat_js' => stripslashes('jQuery(function(){jQuery("#masthead .gd-nav-top-link").append(\'<i class="icon-angle-down"></i>\'),jQuery("#menu-item-gd-location-switcher >  a").append(\'<i class="icon-angle-down"></i>\'),jQuery(".mobile-sidebar .gd-nav-dropdown").addClass("children"),jQuery(".mobile-sidebar .gd-nav-dropdown").removeClass("nav-dropdown nav-dropdown-default"),jQuery(".mobile-sidebar #menu-item-gd-location-switcher ul").removeClass("nav-dropdown nav-dropdown-default"),setTimeout(function(){},5e3)});'),
758
+
759
+
760
+	);
761
+
762
+
763
+	update_option('gd_theme_compats', $theme_compat);
764
+
765
+	gd_set_theme_compat();// set the compat pack if avail
766 766
 }
767 767
 
768 768
 
@@ -774,61 +774,61 @@  discard block
 block discarded – undo
774 774
  * @global object $wpdb WordPress Database object.
775 775
  */
776 776
 function gd_convert_virtual_pages(){
777
-    global $wpdb;
778
-
779
-    // Update the add listing page settings
780
-    $add_listing_page = $wpdb->get_var(
781
-        $wpdb->prepare(
782
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
783
-            array('add-listing')
784
-        )
785
-    );
786
-
787
-    if($add_listing_page){
788
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
789
-        update_option( 'geodir_add_listing_page', $add_listing_page);
790
-    }
791
-
792
-    // Update the listing preview page settings
793
-    $listing_preview_page = $wpdb->get_var(
794
-        $wpdb->prepare(
795
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
796
-            array('listing-preview')
797
-        )
798
-    );
799
-
800
-    if($listing_preview_page){
801
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
802
-        update_option( 'geodir_preview_page', $listing_preview_page);
803
-    }
804
-
805
-    // Update the listing success page settings
806
-    $listing_success_page = $wpdb->get_var(
807
-        $wpdb->prepare(
808
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
809
-            array('listing-success')
810
-        )
811
-    );
812
-
813
-    if($listing_success_page){
814
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
815
-        update_option( 'geodir_success_page', $listing_success_page);
816
-    }
817
-
818
-    // Update the listing success page settings
819
-    $location_page = $wpdb->get_var(
820
-        $wpdb->prepare(
821
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
822
-            array('location')
823
-        )
824
-    );
825
-
826
-    if($location_page){
827
-        $location_slug = get_option('geodir_location_prefix');
828
-        if(!$location_slug ){$location_slug  = 'location';}
829
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
830
-        update_option( 'geodir_location_page', $location_page);
831
-    }
777
+	global $wpdb;
778
+
779
+	// Update the add listing page settings
780
+	$add_listing_page = $wpdb->get_var(
781
+		$wpdb->prepare(
782
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
783
+			array('add-listing')
784
+		)
785
+	);
786
+
787
+	if($add_listing_page){
788
+		wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
789
+		update_option( 'geodir_add_listing_page', $add_listing_page);
790
+	}
791
+
792
+	// Update the listing preview page settings
793
+	$listing_preview_page = $wpdb->get_var(
794
+		$wpdb->prepare(
795
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
796
+			array('listing-preview')
797
+		)
798
+	);
799
+
800
+	if($listing_preview_page){
801
+		wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
802
+		update_option( 'geodir_preview_page', $listing_preview_page);
803
+	}
804
+
805
+	// Update the listing success page settings
806
+	$listing_success_page = $wpdb->get_var(
807
+		$wpdb->prepare(
808
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
809
+			array('listing-success')
810
+		)
811
+	);
812
+
813
+	if($listing_success_page){
814
+		wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
815
+		update_option( 'geodir_success_page', $listing_success_page);
816
+	}
817
+
818
+	// Update the listing success page settings
819
+	$location_page = $wpdb->get_var(
820
+		$wpdb->prepare(
821
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
822
+			array('location')
823
+		)
824
+	);
825
+
826
+	if($location_page){
827
+		$location_slug = get_option('geodir_location_prefix');
828
+		if(!$location_slug ){$location_slug  = 'location';}
829
+		wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
830
+		update_option( 'geodir_location_page', $location_page);
831
+	}
832 832
 
833 833
 }
834 834
 
@@ -842,31 +842,31 @@  discard block
 block discarded – undo
842 842
 function gd_fix_cpt_rewrite_slug()
843 843
 {
844 844
 
845
-    $alt_post_types = array();
846
-    $post_types = get_option('geodir_post_types');
845
+	$alt_post_types = array();
846
+	$post_types = get_option('geodir_post_types');
847 847
 
848 848
 
849
-    if (is_array($post_types)){
849
+	if (is_array($post_types)){
850 850
 
851
-        foreach ($post_types as $post_type => $args) {
851
+		foreach ($post_types as $post_type => $args) {
852 852
 
853 853
 
854
-            if(isset($args['rewrite']['slug'])){
855
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
856
-            }
854
+			if(isset($args['rewrite']['slug'])){
855
+				$args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
856
+			}
857 857
 
858
-                $alt_post_types[$post_type] = $args;
858
+				$alt_post_types[$post_type] = $args;
859 859
 
860
-        }
861
-    }
860
+		}
861
+	}
862 862
 
863
-    if(!empty($alt_post_types)) {
864
-        update_option('geodir_post_types',$alt_post_types);
865
-        }
863
+	if(!empty($alt_post_types)) {
864
+		update_option('geodir_post_types',$alt_post_types);
865
+		}
866 866
 
867 867
 
868
-    // flush the rewrite rules
869
-    flush_rewrite_rules();
868
+	// flush the rewrite rules
869
+	flush_rewrite_rules();
870 870
 }
871 871
 
872 872
 
@@ -879,20 +879,20 @@  discard block
 block discarded – undo
879 879
  */
880 880
 function gd_fix_address_detail_table_limit()
881 881
 {
882
-    global $wpdb;
883
-
884
-    $all_postypes = geodir_get_posttypes();
885
-
886
-    if (!empty($all_postypes)) {
887
-        foreach ($all_postypes as $key) {
888
-            // update each GD CTP
889
-            try {
890
-                $wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
891
-            } catch(Exception $e) {
892
-                error_log( 'Error: ' . $e->getMessage() );
893
-            }
894
-        }
895
-    }
882
+	global $wpdb;
883
+
884
+	$all_postypes = geodir_get_posttypes();
885
+
886
+	if (!empty($all_postypes)) {
887
+		foreach ($all_postypes as $key) {
888
+			// update each GD CTP
889
+			try {
890
+				$wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
891
+			} catch(Exception $e) {
892
+				error_log( 'Error: ' . $e->getMessage() );
893
+			}
894
+		}
895
+	}
896 896
 }
897 897
 
898 898
 /**
@@ -904,63 +904,63 @@  discard block
 block discarded – undo
904 904
  * @return bool
905 905
  */
906 906
 function geodir_upgrade_1618() {
907
-    global $wpdb;
907
+	global $wpdb;
908 908
 
909
-    $gd_posttypes = geodir_get_posttypes();
910
-    $default_location = geodir_get_default_location();
909
+	$gd_posttypes = geodir_get_posttypes();
910
+	$default_location = geodir_get_default_location();
911 911
     
912
-    $old_country = 'Czech Republic';
913
-    $old_slug = 'czech-republic';
914
-    $new_country = 'Czechia';
915
-    $new_slug = 'czechia';
916
-    $flush_rewrite_rules = false;
917
-
918
-    if (!empty($gd_posttypes) && defined('POST_LOCATION_TABLE')) {        
919
-        // Update locations
920
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . POST_LOCATION_TABLE . "` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
921
-            $flush_rewrite_rules = true;
922
-        }
912
+	$old_country = 'Czech Republic';
913
+	$old_slug = 'czech-republic';
914
+	$new_country = 'Czechia';
915
+	$new_slug = 'czechia';
916
+	$flush_rewrite_rules = false;
917
+
918
+	if (!empty($gd_posttypes) && defined('POST_LOCATION_TABLE')) {        
919
+		// Update locations
920
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . POST_LOCATION_TABLE . "` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
921
+			$flush_rewrite_rules = true;
922
+		}
923 923
         
924
-        // Update locations seo
925
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . LOCATION_SEO_TABLE . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
926
-            $flush_rewrite_rules = true;
927
-        }
928
-
929
-        // Update term meta
930
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
931
-            $flush_rewrite_rules = true;
932
-        }
933
-
934
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
935
-            $flush_rewrite_rules = true;
936
-        }
937
-
938
-        // Update detail table
939
-        foreach ($gd_posttypes as $pos_type) {
940
-            try {
941
-                if ($wpdb->query("UPDATE `" . $wpdb->prefix . "geodir_" . $pos_type . "_detail` SET post_country = '" . $new_country . "', post_locations = REPLACE ( post_locations, ',[" . $old_slug . "]', ',[" . $new_slug . "]' ) WHERE post_locations LIKE '%[" . $old_slug . "]' OR post_country LIKE '" . $old_country . "'")) {
942
-                    $flush_rewrite_rules = true;
943
-                }
944
-            } catch(Exception $e) {
945
-                error_log( 'Error: ' . $e->getMessage() );
946
-            }
947
-        }
948
-    }
924
+		// Update locations seo
925
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . LOCATION_SEO_TABLE . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
926
+			$flush_rewrite_rules = true;
927
+		}
928
+
929
+		// Update term meta
930
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
931
+			$flush_rewrite_rules = true;
932
+		}
933
+
934
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
935
+			$flush_rewrite_rules = true;
936
+		}
937
+
938
+		// Update detail table
939
+		foreach ($gd_posttypes as $pos_type) {
940
+			try {
941
+				if ($wpdb->query("UPDATE `" . $wpdb->prefix . "geodir_" . $pos_type . "_detail` SET post_country = '" . $new_country . "', post_locations = REPLACE ( post_locations, ',[" . $old_slug . "]', ',[" . $new_slug . "]' ) WHERE post_locations LIKE '%[" . $old_slug . "]' OR post_country LIKE '" . $old_country . "'")) {
942
+					$flush_rewrite_rules = true;
943
+				}
944
+			} catch(Exception $e) {
945
+				error_log( 'Error: ' . $e->getMessage() );
946
+			}
947
+		}
948
+	}
949 949
     
950
-    if (!empty($default_location) && ((isset($default_location->country) && $default_location->country == $old_country) || (isset($default_location->country_slug) && $default_location->country_slug == $old_slug))) {
951
-        $default_location->country = $new_country;
952
-        $default_location->country_slug = $new_slug;
950
+	if (!empty($default_location) && ((isset($default_location->country) && $default_location->country == $old_country) || (isset($default_location->country_slug) && $default_location->country_slug == $old_slug))) {
951
+		$default_location->country = $new_country;
952
+		$default_location->country_slug = $new_slug;
953 953
         
954
-        update_option('geodir_default_location', $default_location);
954
+		update_option('geodir_default_location', $default_location);
955 955
         
956
-        $flush_rewrite_rules = true;
957
-    }
956
+		$flush_rewrite_rules = true;
957
+	}
958 958
     
959
-    if ($flush_rewrite_rules) {
960
-        flush_rewrite_rules();
961
-    }
959
+	if ($flush_rewrite_rules) {
960
+		flush_rewrite_rules();
961
+	}
962 962
     
963
-    return true;
963
+	return true;
964 964
 }
965 965
 
966 966
 /**
@@ -971,9 +971,9 @@  discard block
 block discarded – undo
971 971
  * @return bool
972 972
  */
973 973
 function geodir_upgrade_1622() {
974
-    if ( get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) {
975
-        update_option( 'geodir_notify_post_submit', '1' );
976
-    }
974
+	if ( get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) {
975
+		update_option( 'geodir_notify_post_submit', '1' );
976
+	}
977 977
     
978
-    return true;
978
+	return true;
979 979
 }
980 980
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 global $wpdb;
11 11
 
12
-if (get_option('geodirectory' . '_db_version') != GEODIRECTORY_VERSION) {
12
+if (get_option('geodirectory'.'_db_version') != GEODIRECTORY_VERSION) {
13 13
     /**
14 14
      * Include custom database table related functions.
15 15
      *
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
         add_action('init', 'geodir_upgrade_1622', 11);
55 55
     }
56 56
 
57
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
57
+    add_action('init', 'gd_fix_cpt_rewrite_slug', 11); // this needs to be kept for a few versions
58 58
 
59
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
59
+    update_option('geodirectory'.'_db_version', GEODIRECTORY_VERSION);
60 60
 
61 61
 }
62 62
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
  * @since 1.0.0
93 93
  * @package GeoDirectory
94 94
  */
95
-function geodir_upgrade_146(){
95
+function geodir_upgrade_146() {
96 96
     gd_convert_virtual_pages();
97 97
 }
98 98
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
  * @since 1.5.0
103 103
  * @package GeoDirectory
104 104
  */
105
-function geodir_upgrade_150(){
105
+function geodir_upgrade_150() {
106 106
     gd_fix_cpt_rewrite_slug();
107 107
 }
108 108
 
@@ -114,12 +114,12 @@  discard block
 block discarded – undo
114 114
  * @since 1.4.8
115 115
  * @package GeoDirectory
116 116
  */
117
-function geodir_upgrade_148(){
117
+function geodir_upgrade_148() {
118 118
     /*
119 119
      * Blank the users google password if present as we now use oAuth 2.0
120 120
      */
121
-    update_option('geodir_ga_pass','');
122
-    update_option('geodir_ga_user','');
121
+    update_option('geodir_ga_pass', '');
122
+    update_option('geodir_ga_user', '');
123 123
 
124 124
 }
125 125
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
  * @since 1.5.3
131 131
  * @package GeoDirectory
132 132
  */
133
-function geodir_upgrade_153(){
133
+function geodir_upgrade_153() {
134 134
     geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
135 135
     geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
136 136
 }
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
  * @since 1.5.3
142 142
  * @package GeoDirectory
143 143
  */
144
-function geodir_upgrade_154(){
144
+function geodir_upgrade_154() {
145 145
     geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
146 146
 }
147 147
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
  * @since 1.5.2
152 152
  * @package GeoDirectory
153 153
  */
154
-function geodir_upgrade_152(){
154
+function geodir_upgrade_152() {
155 155
     gd_fix_address_detail_table_limit();
156 156
 }
157 157
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 function geodir_fix_review_date()
188 188
 {
189 189
     global $wpdb;
190
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
190
+    $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
191 191
 }
192 192
 
193 193
 /**
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 function geodir_fix_review_post_status()
201 201
 {
202 202
     global $wpdb;
203
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
203
+    $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
204 204
 }
205 205
 
206 206
 /**
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 function geodir_fix_review_content()
215 215
 {
216 216
     global $wpdb;
217
-    if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
217
+    if ($wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
218 218
         return true;
219 219
     } else {
220 220
         return false;
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         foreach ($all_postypes as $key) {
240 240
             // update each GD CTP
241 241
 
242
-            $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
242
+            $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN ".$wpdb->prefix."geodir_".$key."_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
243 243
 
244 244
         }
245 245
         return true;
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
     if (!empty($all_postypes)) {
264 264
         foreach ($all_postypes as $key) {
265 265
             // update each GD CTP
266
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
266
+            $reviews = $wpdb->get_results("SELECT post_id FROM ".$wpdb->prefix."geodir_".$key."_detail d");
267 267
 
268 268
             if (!empty($reviews)) {
269 269
                 foreach ($reviews as $post_id) {
@@ -278,51 +278,51 @@  discard block
 block discarded – undo
278 278
 }
279 279
 
280 280
 
281
-function gd_convert_custom_field_display(){
281
+function gd_convert_custom_field_display() {
282 282
     global $wpdb;
283 283
 
284
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
284
+    $field_info = $wpdb->get_results("select * from ".GEODIR_CUSTOM_FIELDS_TABLE);
285 285
 
286 286
     $has_run = get_option('gd_convert_custom_field_display');
287
-    if($has_run){return;}
287
+    if ($has_run) {return; }
288 288
 
289 289
     // set the field_type_key for standard fields
290 290
     $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
291 291
 
292 292
 
293
-    if(is_array( $field_info)){
293
+    if (is_array($field_info)) {
294 294
 
295
-        foreach( $field_info as $cf){
295
+        foreach ($field_info as $cf) {
296 296
 
297 297
             $id = $cf->id;
298 298
 
299
-            if(!property_exists($cf,'show_in') || !$id){return;}
299
+            if (!property_exists($cf, 'show_in') || !$id) {return; }
300 300
 
301 301
             $show_in_arr = array();
302 302
 
303
-            if($cf->is_default){
303
+            if ($cf->is_default) {
304 304
                 $show_in_arr[] = "[detail]";
305 305
             }
306 306
 
307
-            if($cf->show_on_detail){
307
+            if ($cf->show_on_detail) {
308 308
                 $show_in_arr[] = "[moreinfo]";
309 309
             }
310 310
 
311
-            if($cf->show_on_listing){
311
+            if ($cf->show_on_listing) {
312 312
                 $show_in_arr[] = "[listing]";
313 313
             }
314 314
 
315
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
315
+            if ($cf->show_as_tab || $cf->htmlvar_name == 'geodir_video' || $cf->htmlvar_name == 'geodir_special_offers') {
316 316
                 $show_in_arr[] = "[owntab]";
317 317
             }
318 318
 
319
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
319
+            if ($cf->htmlvar_name == 'post' || $cf->htmlvar_name == 'geodir_contact' || $cf->htmlvar_name == 'geodir_timing') {
320 320
                 $show_in_arr[] = "[mapbubble]";
321 321
             }
322 322
 
323
-            if(!empty($show_in_arr )){
324
-                $show_in_arr = implode(',',$show_in_arr);
325
-            }else{
323
+            if (!empty($show_in_arr)) {
324
+                $show_in_arr = implode(',', $show_in_arr);
325
+            } else {
326 326
                 $show_in_arr = '';
327 327
             }
328 328
 
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
 
331 331
         }
332 332
 
333
-        update_option('gd_convert_custom_field_display',1);
333
+        update_option('gd_convert_custom_field_display', 1);
334 334
     }
335 335
 }
336 336
 
@@ -762,7 +762,7 @@  discard block
 block discarded – undo
762 762
 
763 763
     update_option('gd_theme_compats', $theme_compat);
764 764
 
765
-    gd_set_theme_compat();// set the compat pack if avail
765
+    gd_set_theme_compat(); // set the compat pack if avail
766 766
 }
767 767
 
768 768
 
@@ -773,61 +773,61 @@  discard block
 block discarded – undo
773 773
  * @package GeoDirectory
774 774
  * @global object $wpdb WordPress Database object.
775 775
  */
776
-function gd_convert_virtual_pages(){
776
+function gd_convert_virtual_pages() {
777 777
     global $wpdb;
778 778
 
779 779
     // Update the add listing page settings
780 780
     $add_listing_page = $wpdb->get_var(
781 781
         $wpdb->prepare(
782
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
782
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
783 783
             array('add-listing')
784 784
         )
785 785
     );
786 786
 
787
-    if($add_listing_page){
788
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
789
-        update_option( 'geodir_add_listing_page', $add_listing_page);
787
+    if ($add_listing_page) {
788
+        wp_update_post(array('ID' => $add_listing_page, 'post_status' => 'publish'));
789
+        update_option('geodir_add_listing_page', $add_listing_page);
790 790
     }
791 791
 
792 792
     // Update the listing preview page settings
793 793
     $listing_preview_page = $wpdb->get_var(
794 794
         $wpdb->prepare(
795
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
795
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
796 796
             array('listing-preview')
797 797
         )
798 798
     );
799 799
 
800
-    if($listing_preview_page){
801
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
802
-        update_option( 'geodir_preview_page', $listing_preview_page);
800
+    if ($listing_preview_page) {
801
+        wp_update_post(array('ID' => $listing_preview_page, 'post_status' => 'publish'));
802
+        update_option('geodir_preview_page', $listing_preview_page);
803 803
     }
804 804
 
805 805
     // Update the listing success page settings
806 806
     $listing_success_page = $wpdb->get_var(
807 807
         $wpdb->prepare(
808
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
808
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
809 809
             array('listing-success')
810 810
         )
811 811
     );
812 812
 
813
-    if($listing_success_page){
814
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
815
-        update_option( 'geodir_success_page', $listing_success_page);
813
+    if ($listing_success_page) {
814
+        wp_update_post(array('ID' => $listing_success_page, 'post_status' => 'publish'));
815
+        update_option('geodir_success_page', $listing_success_page);
816 816
     }
817 817
 
818 818
     // Update the listing success page settings
819 819
     $location_page = $wpdb->get_var(
820 820
         $wpdb->prepare(
821
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
821
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
822 822
             array('location')
823 823
         )
824 824
     );
825 825
 
826
-    if($location_page){
826
+    if ($location_page) {
827 827
         $location_slug = get_option('geodir_location_prefix');
828
-        if(!$location_slug ){$location_slug  = 'location';}
829
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
830
-        update_option( 'geodir_location_page', $location_page);
828
+        if (!$location_slug) {$location_slug = 'location'; }
829
+        wp_update_post(array('ID' => $location_page, 'post_status' => 'publish', 'post_name' => $location_slug));
830
+        update_option('geodir_location_page', $location_page);
831 831
     }
832 832
 
833 833
 }
@@ -846,13 +846,13 @@  discard block
 block discarded – undo
846 846
     $post_types = get_option('geodir_post_types');
847 847
 
848 848
 
849
-    if (is_array($post_types)){
849
+    if (is_array($post_types)) {
850 850
 
851 851
         foreach ($post_types as $post_type => $args) {
852 852
 
853 853
 
854
-            if(isset($args['rewrite']['slug'])){
855
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
854
+            if (isset($args['rewrite']['slug'])) {
855
+                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%", "", $args['rewrite']['slug']);
856 856
             }
857 857
 
858 858
                 $alt_post_types[$post_type] = $args;
@@ -860,8 +860,8 @@  discard block
 block discarded – undo
860 860
         }
861 861
     }
862 862
 
863
-    if(!empty($alt_post_types)) {
864
-        update_option('geodir_post_types',$alt_post_types);
863
+    if (!empty($alt_post_types)) {
864
+        update_option('geodir_post_types', $alt_post_types);
865 865
         }
866 866
 
867 867
 
@@ -887,9 +887,9 @@  discard block
 block discarded – undo
887 887
         foreach ($all_postypes as $key) {
888 888
             // update each GD CTP
889 889
             try {
890
-                $wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
891
-            } catch(Exception $e) {
892
-                error_log( 'Error: ' . $e->getMessage() );
890
+                $wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_".$key."_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
891
+            } catch (Exception $e) {
892
+                error_log('Error: '.$e->getMessage());
893 893
             }
894 894
         }
895 895
     }
@@ -917,32 +917,32 @@  discard block
 block discarded – undo
917 917
 
918 918
     if (!empty($gd_posttypes) && defined('POST_LOCATION_TABLE')) {        
919 919
         // Update locations
920
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . POST_LOCATION_TABLE . "` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
920
+        if ($wpdb->query($wpdb->prepare("UPDATE `".POST_LOCATION_TABLE."` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
921 921
             $flush_rewrite_rules = true;
922 922
         }
923 923
         
924 924
         // Update locations seo
925
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . LOCATION_SEO_TABLE . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
925
+        if ($wpdb->query($wpdb->prepare("UPDATE `".LOCATION_SEO_TABLE."` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
926 926
             $flush_rewrite_rules = true;
927 927
         }
928 928
 
929 929
         // Update term meta
930
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
930
+        if ($wpdb->query($wpdb->prepare("UPDATE `".GEODIR_TERM_META."` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
931 931
             $flush_rewrite_rules = true;
932 932
         }
933 933
 
934
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
934
+        if ($wpdb->query($wpdb->prepare("UPDATE `".GEODIR_TERM_META."` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
935 935
             $flush_rewrite_rules = true;
936 936
         }
937 937
 
938 938
         // Update detail table
939 939
         foreach ($gd_posttypes as $pos_type) {
940 940
             try {
941
-                if ($wpdb->query("UPDATE `" . $wpdb->prefix . "geodir_" . $pos_type . "_detail` SET post_country = '" . $new_country . "', post_locations = REPLACE ( post_locations, ',[" . $old_slug . "]', ',[" . $new_slug . "]' ) WHERE post_locations LIKE '%[" . $old_slug . "]' OR post_country LIKE '" . $old_country . "'")) {
941
+                if ($wpdb->query("UPDATE `".$wpdb->prefix."geodir_".$pos_type."_detail` SET post_country = '".$new_country."', post_locations = REPLACE ( post_locations, ',[".$old_slug."]', ',[".$new_slug."]' ) WHERE post_locations LIKE '%[".$old_slug."]' OR post_country LIKE '".$old_country."'")) {
942 942
                     $flush_rewrite_rules = true;
943 943
                 }
944
-            } catch(Exception $e) {
945
-                error_log( 'Error: ' . $e->getMessage() );
944
+            } catch (Exception $e) {
945
+                error_log('Error: '.$e->getMessage());
946 946
             }
947 947
         }
948 948
     }
@@ -971,8 +971,8 @@  discard block
 block discarded – undo
971 971
  * @return bool
972 972
  */
973 973
 function geodir_upgrade_1622() {
974
-    if ( get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) {
975
-        update_option( 'geodir_notify_post_submit', '1' );
974
+    if (get_option('geodir_notify_post_submit', '-1') == '-1') {
975
+        update_option('geodir_notify_post_submit', '1');
976 976
     }
977 977
     
978 978
     return true;
Please login to merge, or discard this patch.
geodirectory-functions/custom_fields_functions.php 4 patches
Doc Comments   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1345,6 +1345,9 @@  discard block
 block discarded – undo
1345 1345
 }
1346 1346
 
1347 1347
 
1348
+/**
1349
+ * @return string
1350
+ */
1348 1351
 function geodir_field_icon_proccess($cf){
1349 1352
 
1350 1353
 
@@ -1738,7 +1741,7 @@  discard block
 block discarded – undo
1738 1741
  * @global object $wpdb WordPress Database object.
1739 1742
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1740 1743
  * @param int $post_id The post ID.
1741
- * @return mixed Returns video.
1744
+ * @return string Returns video.
1742 1745
  */
1743 1746
 function geodir_get_video($post_id)
1744 1747
 {
@@ -1764,7 +1767,7 @@  discard block
 block discarded – undo
1764 1767
  * @global object $wpdb WordPress Database object.
1765 1768
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1766 1769
  * @param int $post_id The post ID.
1767
- * @return mixed Returns special offers.
1770
+ * @return string Returns special offers.
1768 1771
  */
1769 1772
 function geodir_get_special_offers($post_id)
1770 1773
 {
@@ -1788,7 +1791,7 @@  discard block
 block discarded – undo
1788 1791
      *
1789 1792
      * @since 1.0.0
1790 1793
      * @package GeoDirectory
1791
-     * @return mixed|void Returns max upload file size.
1794
+     * @return string|null Returns max upload file size.
1792 1795
      */
1793 1796
     function geodir_max_upload_size()
1794 1797
     {
@@ -2157,7 +2160,6 @@  discard block
 block discarded – undo
2157 2160
      * @param string $field_type The form field type.
2158 2161
      * @param object|int $result_str The custom field results object or row id.
2159 2162
      * @param string $field_ins_upd When set to "submit" displays form.
2160
-     * @param bool $default when set to true field will be for admin use only.
2161 2163
      */
2162 2164
     function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key='')
2163 2165
     {
Please login to merge, or discard this patch.
Braces   +133 added lines, -92 removed lines patch added patch discarded remove patch
@@ -51,8 +51,9 @@  discard block
 block discarded – undo
51 51
         global $wpdb;
52 52
         $result = 0;// no rows affected
53 53
         if (!geodir_column_exist($db, $column)) {
54
-            if (!empty($db) && !empty($column))
55
-                $result = $wpdb->query("ALTER TABLE `$db` ADD `$column`  $column_attr");
54
+            if (!empty($db) && !empty($column)) {
55
+                            $result = $wpdb->query("ALTER TABLE `$db` ADD `$column`  $column_attr");
56
+            }
56 57
         }
57 58
         return $result;
58 59
     }
@@ -82,10 +83,11 @@  discard block
 block discarded – undo
82 83
 
83 84
     $default_query = '';
84 85
 
85
-    if ($default == 'default')
86
-        $default_query .= " and is_admin IN ('1') ";
87
-    elseif ($default == 'custom')
88
-        $default_query .= " and is_admin = '0' ";
86
+    if ($default == 'default') {
87
+            $default_query .= " and is_admin IN ('1') ";
88
+    } elseif ($default == 'custom') {
89
+            $default_query .= " and is_admin = '0' ";
90
+    }
89 91
 
90 92
     if ($fields_location == 'none') {
91 93
     } else{
@@ -239,10 +241,12 @@  discard block
 block discarded – undo
239 241
                 }
240 242
 
241 243
                 return $field_id;
242
-            } else
243
-                return 0;
244
-        } else
245
-            return 0;
244
+            } else {
245
+                            return 0;
246
+            }
247
+        } else {
248
+                    return 0;
249
+        }
246 250
     }
247 251
 }
248 252
 
@@ -350,7 +354,9 @@  discard block
 block discarded – undo
350 354
 
351 355
 
352 356
 
353
-            if ($post_type == '') $post_type = 'gd_place';
357
+            if ($post_type == '') {
358
+            	$post_type = 'gd_place';
359
+            }
354 360
 
355 361
 
356 362
             $detail_table = $plugin_prefix . $post_type . '_detail';
@@ -390,16 +396,17 @@  discard block
 block discarded – undo
390 396
             }
391 397
 
392 398
             $option_values = '';
393
-            if (isset($request_field['option_values']))
394
-                $option_values = $request_field['option_values'];
399
+            if (isset($request_field['option_values'])) {
400
+                            $option_values = $request_field['option_values'];
401
+            }
395 402
 
396 403
             $cat_sort = isset($request_field['cat_sort']) ? $request_field['cat_sort'] : '0';
397 404
 
398 405
             $cat_filter = isset($request_field['cat_filter']) ? $request_field['cat_filter'] : '0';
399 406
 
400
-            if (isset($request_field['show_on_pkg']) && !empty($request_field['show_on_pkg']))
401
-                $price_pkg = implode(",", $request_field['show_on_pkg']);
402
-            else {
407
+            if (isset($request_field['show_on_pkg']) && !empty($request_field['show_on_pkg'])) {
408
+                            $price_pkg = implode(",", $request_field['show_on_pkg']);
409
+            } else {
403 410
                 $package_info = array();
404 411
 
405 412
                 $package_info = geodir_post_package_info($package_info, '', $post_type);
@@ -407,22 +414,29 @@  discard block
 block discarded – undo
407 414
             }
408 415
 
409 416
 
410
-            if (isset($request_field['extra']) && !empty($request_field['extra']))
411
-                $extra_fields = $request_field['extra'];
417
+            if (isset($request_field['extra']) && !empty($request_field['extra'])) {
418
+                            $extra_fields = $request_field['extra'];
419
+            }
412 420
 
413
-            if (isset($request_field['is_default']) && $request_field['is_default'] != '')
414
-                $is_default = $request_field['is_default'];
415
-            else
416
-                $is_default = '0';
421
+            if (isset($request_field['is_default']) && $request_field['is_default'] != '') {
422
+                            $is_default = $request_field['is_default'];
423
+            } else {
424
+                            $is_default = '0';
425
+            }
417 426
 
418
-            if (isset($request_field['is_admin']) && $request_field['is_admin'] != '')
419
-                $is_admin = $request_field['is_admin'];
420
-            else
421
-                $is_admin = '0';
427
+            if (isset($request_field['is_admin']) && $request_field['is_admin'] != '') {
428
+                            $is_admin = $request_field['is_admin'];
429
+            } else {
430
+                            $is_admin = '0';
431
+            }
422 432
 
423 433
 
424
-            if ($is_active == '') $is_active = 1;
425
-            if ($is_required == '') $is_required = 0;
434
+            if ($is_active == '') {
435
+            	$is_active = 1;
436
+            }
437
+            if ($is_required == '') {
438
+            	$is_required = 0;
439
+            }
426 440
 
427 441
 
428 442
             if ($sort_order == '') {
@@ -691,7 +705,7 @@  discard block
 block discarded – undo
691 705
                                 }
692 706
                                 if($op_max){$op_size =$op_max; }
693 707
                             }
694
-                        }elseif(isset($option_values) && $option_values && $field_type=='multiselect'){
708
+                        } elseif(isset($option_values) && $option_values && $field_type=='multiselect'){
695 709
                             if(strlen($option_values)){
696 710
                                 $op_size =  strlen($option_values);
697 711
                             }
@@ -708,11 +722,13 @@  discard block
 block discarded – undo
708 722
                             return __('Column change failed, you may have too many columns.','geodirectory');
709 723
                         }
710 724
 
711
-                        if (isset($request_field['cat_display_type']))
712
-                            $extra_fields = $request_field['cat_display_type'];
725
+                        if (isset($request_field['cat_display_type'])) {
726
+                                                    $extra_fields = $request_field['cat_display_type'];
727
+                        }
713 728
 
714
-                        if (isset($request_field['multi_display_type']))
715
-                            $extra_fields = $request_field['multi_display_type'];
729
+                        if (isset($request_field['multi_display_type'])) {
730
+                                                    $extra_fields = $request_field['multi_display_type'];
731
+                        }
716 732
 
717 733
 
718 734
                         break;
@@ -726,8 +742,9 @@  discard block
 block discarded – undo
726 742
                         if($alter_result===false){
727 743
                             return __('Column change failed, you may have too many columns.','geodirectory');
728 744
                         }
729
-                        if (isset($request_field['advanced_editor']))
730
-                            $extra_fields = $request_field['advanced_editor'];
745
+                        if (isset($request_field['advanced_editor'])) {
746
+                                                    $extra_fields = $request_field['advanced_editor'];
747
+                        }
731 748
 
732 749
                         break;
733 750
 
@@ -823,8 +840,9 @@  discard block
 block discarded – undo
823 840
                 );
824 841
 
825 842
 
826
-                if ($cat_sort == '')
827
-                    $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name)));
843
+                if ($cat_sort == '') {
844
+                                    $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name)));
845
+                }
828 846
 
829 847
 
830 848
                 /**
@@ -1194,8 +1212,10 @@  discard block
 block discarded – undo
1194 1212
         }
1195 1213
 
1196 1214
         return $post_meta_info;
1197
-    else:
1198
-        return false;
1215
+    else {
1216
+    	:
1217
+        return false;
1218
+    }
1199 1219
     endif;
1200 1220
 }
1201 1221
 
@@ -1272,8 +1292,9 @@  discard block
 block discarded – undo
1272 1292
         if (is_admin()) {
1273 1293
             global $post;
1274 1294
 
1275
-            if (isset($_REQUEST['post']))
1276
-                $_REQUEST['pid'] = $_REQUEST['post'];
1295
+            if (isset($_REQUEST['post'])) {
1296
+                            $_REQUEST['pid'] = $_REQUEST['post'];
1297
+            }
1277 1298
         }
1278 1299
 
1279 1300
         
@@ -1365,7 +1386,7 @@  discard block
 block discarded – undo
1365 1386
         $field_icon = ' background: url(' . $cf['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
1366 1387
     } elseif (strpos($cf['field_icon'], 'fa fa-') !== false) {
1367 1388
         $field_icon = '<i class="' . $cf['field_icon'] . '"></i>';
1368
-    }else{
1389
+    } else{
1369 1390
         $field_icon = $cf['field_icon'];
1370 1391
     }
1371 1392
 
@@ -1437,8 +1458,9 @@  discard block
 block discarded – undo
1437 1458
                     $variables_array['post_id'] = !empty($post->ID) ? $post->ID : (!empty($post->pid) ? $post->pid : NULL);
1438 1459
                     $variables_array['label'] = __($type['site_title'], 'geodirectory');
1439 1460
                     $variables_array['value'] = '';
1440
-                    if (isset($post->{$type['htmlvar_name']}))
1441
-                        $variables_array['value'] = $post->{$type['htmlvar_name']};
1461
+                    if (isset($post->{$type['htmlvar_name']})) {
1462
+                                            $variables_array['value'] = $post->{$type['htmlvar_name']};
1463
+                    }
1442 1464
                 endif;
1443 1465
 
1444 1466
 
@@ -1460,7 +1482,9 @@  discard block
 block discarded – undo
1460 1482
                      * @param string $html Custom field unfiltered HTML.
1461 1483
                      * @param array $variables_array Custom field variables array.
1462 1484
                      */
1463
-                    if ($html) echo apply_filters("geodir_show_{$html_var}", $html, $variables_array);
1485
+                    if ($html) {
1486
+                    	echo apply_filters("geodir_show_{$html_var}", $html, $variables_array);
1487
+                    }
1464 1488
 
1465 1489
                     /**
1466 1490
                      * Called after a custom fields is output on the frontend.
@@ -1503,10 +1527,11 @@  discard block
 block discarded – undo
1503 1527
      */
1504 1528
     function geodir_default_date_format()
1505 1529
     {
1506
-        if ($format = get_option('date_format'))
1507
-            return $format;
1508
-        else
1509
-            return 'dd-mm-yy';
1530
+        if ($format = get_option('date_format')) {
1531
+                    return $format;
1532
+        } else {
1533
+                    return 'dd-mm-yy';
1534
+        }
1510 1535
     }
1511 1536
 }
1512 1537
 
@@ -1613,11 +1638,13 @@  discard block
 block discarded – undo
1613 1638
                     // Set an array containing a list of acceptable formats
1614 1639
                     //$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/octet-stream', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain');
1615 1640
 
1616
-                    if (!function_exists('wp_handle_upload'))
1617
-                        require_once(ABSPATH . 'wp-admin/includes/file.php');
1641
+                    if (!function_exists('wp_handle_upload')) {
1642
+                                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1643
+                    }
1618 1644
 
1619
-                    if (!is_dir($geodir_uploadpath))
1620
-                        mkdir($geodir_uploadpath);
1645
+                    if (!is_dir($geodir_uploadpath)) {
1646
+                                            mkdir($geodir_uploadpath);
1647
+                    }
1621 1648
 
1622 1649
                     $new_name = $post_id . '_' . $field_id . '_' . $img_name_arr[0] . '.' . $img_name_arr[1];
1623 1650
                     $explode_sub_dir = explode("/", $sub_dir);
@@ -1630,16 +1657,19 @@  discard block
 block discarded – undo
1630 1657
                     }
1631 1658
 
1632 1659
                     $uploaded_file = '';
1633
-                    if (file_exists($img_path))
1634
-                        $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1660
+                    if (file_exists($img_path)) {
1661
+                                            $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1662
+                    }
1635 1663
 
1636 1664
                     if ($curr_img_dir != $geodir_uploaddir) {
1637
-                        if (file_exists($img_path))
1638
-                            unlink($img_path);
1665
+                        if (file_exists($img_path)) {
1666
+                                                    unlink($img_path);
1667
+                        }
1639 1668
                     }
1640 1669
 
1641
-                    if (!empty($uploaded_file))
1642
-                        $file_urls = $geodir_uploadurl . '/' . $new_name;
1670
+                    if (!empty($uploaded_file)) {
1671
+                                            $file_urls = $geodir_uploadurl . '/' . $new_name;
1672
+                    }
1643 1673
 
1644 1674
                 } else {
1645 1675
                     $file_urls = $post_image[$m];
@@ -1660,8 +1690,9 @@  discard block
 block discarded – undo
1660 1690
 
1661 1691
         geodir_save_post_meta($post_id, $field_id, $file_urls);
1662 1692
 
1663
-        if (!empty($invalid_files))
1664
-            geodir_remove_attachments($invalid_files);
1693
+        if (!empty($invalid_files)) {
1694
+                    geodir_remove_attachments($invalid_files);
1695
+        }
1665 1696
 
1666 1697
     }
1667 1698
 }
@@ -1887,8 +1918,9 @@  discard block
 block discarded – undo
1887 1918
 
1888 1919
         $all_postypes = geodir_get_posttypes();
1889 1920
 
1890
-        if (!in_array($post_type, $all_postypes))
1891
-            return false;
1921
+        if (!in_array($post_type, $all_postypes)) {
1922
+                    return false;
1923
+        }
1892 1924
 
1893 1925
         $fields = array();
1894 1926
 
@@ -1986,8 +2018,10 @@  discard block
 block discarded – undo
1986 2018
         }
1987 2019
 
1988 2020
         return $field_ids;
1989
-    else:
1990
-        return false;
2021
+    else {
2022
+    	:
2023
+        return false;
2024
+    }
1991 2025
     endif;
1992 2026
 }
1993 2027
 
@@ -2160,8 +2194,9 @@  discard block
 block discarded – undo
2160 2194
 
2161 2195
             return $field_id;
2162 2196
 
2163
-        } else
2164
-            return 0;
2197
+        } else {
2198
+                    return 0;
2199
+        }
2165 2200
 
2166 2201
     }
2167 2202
 }
@@ -2202,8 +2237,9 @@  discard block
 block discarded – undo
2202 2237
         $htmlvar_name = isset($field_type_key) ? $field_type_key : '';
2203 2238
 
2204 2239
         $site_title = '';
2205
-        if ($site_title == '')
2206
-            $site_title = isset($field_info->site_title) ? $field_info->site_title : '';
2240
+        if ($site_title == '') {
2241
+                    $site_title = isset($field_info->site_title) ? $field_info->site_title : '';
2242
+        }
2207 2243
 
2208 2244
         if ($site_title == '') {
2209 2245
             $fields = geodir_get_custom_sort_options($post_type);
@@ -2217,8 +2253,9 @@  discard block
 block discarded – undo
2217 2253
             }
2218 2254
         }
2219 2255
 
2220
-        if ($htmlvar_name == '')
2221
-            $htmlvar_name = isset($field_info->htmlvar_name) ? $field_info->htmlvar_name : '';
2256
+        if ($htmlvar_name == '') {
2257
+                    $htmlvar_name = isset($field_info->htmlvar_name) ? $field_info->htmlvar_name : '';
2258
+        }
2222 2259
 
2223 2260
         $nonce = wp_create_nonce('custom_fields_' . $result_str);
2224 2261
 
@@ -2231,7 +2268,7 @@  discard block
 block discarded – undo
2231 2268
 
2232 2269
                 if (isset($cso['field_icon']) && strpos($cso['field_icon'], 'fa fa-') !== false) {
2233 2270
                     $field_icon = '<i class="'.$cso['field_icon'].'" aria-hidden="true"></i>';
2234
-                }elseif(isset($cso['field_icon']) && $cso['field_icon']){
2271
+                } elseif(isset($cso['field_icon']) && $cso['field_icon']){
2235 2272
                     $field_icon = '<b style="background-image: url("'.$cso['field_icon'].'")"></b>';
2236 2273
                 }
2237 2274
 
@@ -2667,7 +2704,7 @@  discard block
 block discarded – undo
2667 2704
     $dt_value = '';
2668 2705
     if (isset($field_info->data_type)) {
2669 2706
         $dt_value  = esc_attr($field_info->data_type);
2670
-    }elseif(isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']){
2707
+    } elseif(isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']){
2671 2708
         $dt_value  = $cf['defaults']['data_type'];
2672 2709
     }
2673 2710
     ?>
@@ -2699,7 +2736,7 @@  discard block
 block discarded – undo
2699 2736
     $value = '';
2700 2737
     if (isset($field_info->decimal_point)) {
2701 2738
         $value = esc_attr($field_info->decimal_point);
2702
-    }elseif(isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']){
2739
+    } elseif(isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']){
2703 2740
         $value = $cf['defaults']['decimal_point'];
2704 2741
     }
2705 2742
     ?>
@@ -2771,11 +2808,13 @@  discard block
 block discarded – undo
2771 2808
 
2772 2809
             <?php
2773 2810
             $selected = '';
2774
-            if (isset($field_info->extra_fields))
2775
-                $advanced_editor = unserialize($field_info->extra_fields);
2811
+            if (isset($field_info->extra_fields)) {
2812
+                            $advanced_editor = unserialize($field_info->extra_fields);
2813
+            }
2776 2814
 
2777
-            if (!empty($advanced_editor) && is_array($advanced_editor) && in_array('1', $advanced_editor))
2778
-                $selected = 'checked="checked"';
2815
+            if (!empty($advanced_editor) && is_array($advanced_editor) && in_array('1', $advanced_editor)) {
2816
+                            $selected = 'checked="checked"';
2817
+            }
2779 2818
             ?>
2780 2819
 
2781 2820
             <input type="checkbox" name="advanced_editor[]" id="advanced_editor"
@@ -2797,7 +2836,7 @@  discard block
 block discarded – undo
2797 2836
     $value = '';
2798 2837
     if (isset($field_info->validation_pattern)) {
2799 2838
         $value = esc_attr($field_info->validation_pattern);
2800
-    }elseif(isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']){
2839
+    } elseif(isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']){
2801 2840
         $value = esc_attr($cf['defaults']['validation_pattern']);
2802 2841
     }
2803 2842
     ?>
@@ -2817,7 +2856,7 @@  discard block
 block discarded – undo
2817 2856
     $value = '';
2818 2857
     if (isset($field_info->validation_msg)) {
2819 2858
         $value = esc_attr($field_info->validation_msg);
2820
-    }elseif(isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']){
2859
+    } elseif(isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']){
2821 2860
         $value = esc_attr($cf['defaults']['validation_msg']);
2822 2861
     }
2823 2862
     ?>
@@ -2847,8 +2886,9 @@  discard block
 block discarded – undo
2847 2886
 
2848 2887
     if (!isset($field_info->post_type)) {
2849 2888
         $post_type = sanitize_text_field($_REQUEST['listing_type']);
2850
-    } else
2851
-        $post_type = $field_info->post_type;
2889
+    } else {
2890
+            $post_type = $field_info->post_type;
2891
+    }
2852 2892
     ?>
2853 2893
     <li style="display: none;">
2854 2894
         <label for="htmlvar_name" class="gd-cf-tooltip-wrap">
@@ -3122,7 +3162,7 @@  discard block
 block discarded – undo
3122 3162
     $value = '';
3123 3163
     if (isset($field_info->option_values)) {
3124 3164
         $value = esc_attr($field_info->option_values);
3125
-    }elseif(isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']){
3165
+    } elseif(isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']){
3126 3166
         $value = esc_attr($cf['defaults']['option_values']);
3127 3167
     }
3128 3168
 
@@ -3265,7 +3305,7 @@  discard block
 block discarded – undo
3265 3305
     $value = '';
3266 3306
     if ($extra_fields && isset($extra_fields['is_price'])) {
3267 3307
     $value = esc_attr($extra_fields['is_price']);
3268
-    }elseif(isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']){
3308
+    } elseif(isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']){
3269 3309
     $value = esc_attr($cf['defaults']['extra_fields']['is_price']);
3270 3310
     }
3271 3311
 
@@ -3302,7 +3342,7 @@  discard block
 block discarded – undo
3302 3342
     $value = '';
3303 3343
     if ($extra_fields && isset($extra_fields['thousand_separator'])) {
3304 3344
         $value = esc_attr($extra_fields['thousand_separator']);
3305
-    }elseif(isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']){
3345
+    } elseif(isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']){
3306 3346
         $value = esc_attr($cf['defaults']['extra_fields']['thousand_separator']);
3307 3347
     }
3308 3348
     ?>
@@ -3329,7 +3369,7 @@  discard block
 block discarded – undo
3329 3369
     $value = '';
3330 3370
     if ($extra_fields && isset($extra_fields['decimal_separator'])) {
3331 3371
         $value = esc_attr($extra_fields['decimal_separator']);
3332
-    }elseif(isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']){
3372
+    } elseif(isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']){
3333 3373
         $value = esc_attr($cf['defaults']['extra_fields']['decimal_separator']);
3334 3374
     }
3335 3375
     ?>
@@ -3352,7 +3392,7 @@  discard block
 block discarded – undo
3352 3392
     $value = '';
3353 3393
     if ($extra_fields && isset($extra_fields['decimal_display'])) {
3354 3394
         $value = esc_attr($extra_fields['decimal_display']);
3355
-    }elseif(isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']){
3395
+    } elseif(isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']){
3356 3396
         $value = esc_attr($cf['defaults']['extra_fields']['decimal_display']);
3357 3397
     }
3358 3398
     ?>
@@ -3375,7 +3415,7 @@  discard block
 block discarded – undo
3375 3415
     $value = '';
3376 3416
     if ($extra_fields && isset($extra_fields['currency_symbol'])) {
3377 3417
         $value = esc_attr($extra_fields['currency_symbol']);
3378
-    }elseif(isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']){
3418
+    } elseif(isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']){
3379 3419
         $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol']);
3380 3420
     }
3381 3421
     ?>
@@ -3396,7 +3436,7 @@  discard block
 block discarded – undo
3396 3436
     $value = '';
3397 3437
     if ($extra_fields && isset($extra_fields['currency_symbol_placement'])) {
3398 3438
         $value = esc_attr($extra_fields['currency_symbol_placement']);
3399
-    }elseif(isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']){
3439
+    } elseif(isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']){
3400 3440
         $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol_placement']);
3401 3441
     }
3402 3442
     ?>
@@ -3623,8 +3663,9 @@  discard block
 block discarded – undo
3623 3663
     $currency_symbol_placement = isset($cs['currency_symbol_placement']) ? $cs['currency_symbol_placement'] : 'left';
3624 3664
 
3625 3665
     if($decimals>0 && $decimal_display=='if'){
3626
-        if(is_int($number) || floor( $number ) == $number)
3627
-            $decimals = 0;
3666
+        if(is_int($number) || floor( $number ) == $number) {
3667
+                    $decimals = 0;
3668
+        }
3628 3669
     }
3629 3670
 
3630 3671
     $number = number_format($number,$decimals,$decimalpoint,$separator);
@@ -3633,7 +3674,7 @@  discard block
 block discarded – undo
3633 3674
 
3634 3675
     if($currency_symbol_placement=='left'){
3635 3676
         $number = $symbol . $number;
3636
-    }else{
3677
+    } else{
3637 3678
         $number = $number . $symbol;
3638 3679
     }
3639 3680
 
Please login to merge, or discard this patch.
Spacing   +412 added lines, -412 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     function geodir_add_column_if_not_exist($db, $column, $column_attr = "VARCHAR( 255 ) NOT NULL")
50 50
     {
51 51
         global $wpdb;
52
-        $result = 0;// no rows affected
52
+        $result = 0; // no rows affected
53 53
         if (!geodir_column_exist($db, $column)) {
54 54
             if (!empty($db) && !empty($column))
55 55
                 $result = $wpdb->query("ALTER TABLE `$db` ADD `$column`  $column_attr");
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 {
75 75
     global $wpdb, $geodir_post_custom_fields_cache;
76 76
 
77
-    $cache_stored = $post_type . '_' . $package_id . '_' . $default . '_' . $fields_location;
77
+    $cache_stored = $post_type.'_'.$package_id.'_'.$default.'_'.$fields_location;
78 78
 
79 79
     if (array_key_exists($cache_stored, $geodir_post_custom_fields_cache)) {
80 80
         return $geodir_post_custom_fields_cache[$cache_stored];
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
         $default_query .= " and is_admin = '0' ";
89 89
 
90 90
     if ($fields_location == 'none') {
91
-    } else{
92
-        $fields_location = esc_sql( $fields_location );
91
+    } else {
92
+        $fields_location = esc_sql($fields_location);
93 93
         $default_query .= " and show_in LIKE '%%[$fields_location]%%' ";
94 94
     }
95 95
 
96 96
     $post_meta_info = $wpdb->get_results(
97 97
         $wpdb->prepare(
98
-            "select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where is_active = '1' and post_type = %s {$default_query} order by sort_order asc,admin_title asc",
98
+            "select * from ".GEODIR_CUSTOM_FIELDS_TABLE." where is_active = '1' and post_type = %s {$default_query} order by sort_order asc,admin_title asc",
99 99
             array($post_type)
100 100
         )
101 101
     );
@@ -162,13 +162,13 @@  discard block
 block discarded – undo
162 162
      * @param string $field_ins_upd When set to "submit" displays form.
163 163
      * @param string $field_type_key The key of the custom field.
164 164
      */
165
-    function geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key ='')
165
+    function geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key = '')
166 166
     {
167 167
         global $wpdb;
168 168
         $cf = $result_str;
169 169
         if (!is_object($cf)) {
170 170
 
171
-            $field_info = $wpdb->get_row($wpdb->prepare("select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)));
171
+            $field_info = $wpdb->get_row($wpdb->prepare("select * from ".GEODIR_CUSTOM_FIELDS_TABLE." where id= %d", array($cf)));
172 172
 
173 173
         } else {
174 174
             $field_info = $cf;
@@ -202,14 +202,14 @@  discard block
 block discarded – undo
202 202
         if ($field_id != '') {
203 203
             $cf = trim($field_id, '_');
204 204
 
205
-            if ($field = $wpdb->get_row($wpdb->prepare("select htmlvar_name,post_type,field_type from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)))) {
206
-                $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d ", array($cf)));
205
+            if ($field = $wpdb->get_row($wpdb->prepare("select htmlvar_name,post_type,field_type from ".GEODIR_CUSTOM_FIELDS_TABLE." where id= %d", array($cf)))) {
206
+                $wpdb->query($wpdb->prepare("delete from ".GEODIR_CUSTOM_FIELDS_TABLE." where id= %d ", array($cf)));
207 207
 
208 208
                 $post_type = $field->post_type;
209 209
                 $htmlvar_name = $field->htmlvar_name;
210 210
 
211 211
                 if ($post_type != '' && $htmlvar_name != '') {
212
-                    $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name=%s AND post_type=%s LIMIT 1", array($htmlvar_name, $post_type)));
212
+                    $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE htmlvar_name=%s AND post_type=%s LIMIT 1", array($htmlvar_name, $post_type)));
213 213
                 }
214 214
 
215 215
                 /**
@@ -223,18 +223,18 @@  discard block
 block discarded – undo
223 223
                 do_action('geodir_after_custom_field_deleted', $cf, $field->htmlvar_name, $post_type);
224 224
 
225 225
                 if ($field->field_type == 'address') {
226
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_address`");
227
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_city`");
228
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_region`");
229
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_country`");
230
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_zip`");
231
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_latitude`");
232
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_longitude`");
233
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapview`");
234
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapzoom`");
226
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_address`");
227
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_city`");
228
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_region`");
229
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_country`");
230
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_zip`");
231
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_latitude`");
232
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_longitude`");
233
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_mapview`");
234
+                    $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."_mapzoom`");
235 235
                 } else {
236 236
                     if ($field->field_type != 'fieldset') {
237
-                        $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "`");
237
+                        $wpdb->query("ALTER TABLE ".$plugin_prefix.$post_type."_detail DROP `".$field->htmlvar_name."`");
238 238
                     }
239 239
                 }
240 240
 
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
         $result_str = isset($request_field['field_id']) ? trim($request_field['field_id']) : '';
306 306
 
307 307
         // some servers fail if a POST value is VARCHAR so we change it.
308
-        if(isset($request_field['data_type']) && $request_field['data_type']=='XVARCHAR'){
308
+        if (isset($request_field['data_type']) && $request_field['data_type'] == 'XVARCHAR') {
309 309
             $request_field['data_type'] = 'VARCHAR';
310 310
         }
311 311
 
@@ -318,12 +318,12 @@  discard block
 block discarded – undo
318 318
         $post_type = $request_field['listing_type'];
319 319
 
320 320
         if ($request_field['field_type'] != 'address' && $request_field['field_type'] != 'taxonomy' && $request_field['field_type'] != 'fieldset') {
321
-            $cehhtmlvar_name = 'geodir_' . $cehhtmlvar_name;
321
+            $cehhtmlvar_name = 'geodir_'.$cehhtmlvar_name;
322 322
         }
323 323
 
324 324
         $check_html_variable = $wpdb->get_var(
325 325
             $wpdb->prepare(
326
-                "select htmlvar_name from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id <> %d and htmlvar_name = %s and post_type = %s ",
326
+                "select htmlvar_name from ".GEODIR_CUSTOM_FIELDS_TABLE." where id <> %d and htmlvar_name = %s and post_type = %s ",
327 327
                 array($cf, $cehhtmlvar_name, $post_type)
328 328
             )
329 329
         );
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
                 $post_meta_info = $wpdb->get_row(
337 337
                     $wpdb->prepare(
338
-                        "select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id = %d",
338
+                        "select * from ".GEODIR_CUSTOM_FIELDS_TABLE." where id = %d",
339 339
                         array($cf)
340 340
                     )
341 341
                 );
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
             if ($post_type == '') $post_type = 'gd_place';
354 354
 
355 355
 
356
-            $detail_table = $plugin_prefix . $post_type . '_detail';
356
+            $detail_table = $plugin_prefix.$post_type.'_detail';
357 357
 
358 358
             $admin_title = $request_field['admin_title'];
359 359
             $site_title = $request_field['site_title'];
@@ -381,12 +381,12 @@  discard block
 block discarded – undo
381 381
             $for_admin_use = isset($request_field['for_admin_use']) ? $request_field['for_admin_use'] : '';
382 382
 
383 383
             
384
-            if(is_array($show_in)){
384
+            if (is_array($show_in)) {
385 385
                 $show_in = implode(",", $request_field['show_in']);
386 386
             }
387 387
             
388 388
             if ($field_type != 'address' && $field_type != 'taxonomy' && $field_type != 'fieldset') {
389
-                $htmlvar_name = 'geodir_' . $htmlvar_name;
389
+                $htmlvar_name = 'geodir_'.$htmlvar_name;
390 390
             }
391 391
 
392 392
             $option_values = '';
@@ -427,9 +427,9 @@  discard block
 block discarded – undo
427 427
 
428 428
             if ($sort_order == '') {
429 429
 
430
-                $last_order = $wpdb->get_var("SELECT MAX(sort_order) as last_order FROM " . GEODIR_CUSTOM_FIELDS_TABLE);
430
+                $last_order = $wpdb->get_var("SELECT MAX(sort_order) as last_order FROM ".GEODIR_CUSTOM_FIELDS_TABLE);
431 431
 
432
-                $sort_order = (int)$last_order + 1;
432
+                $sort_order = (int) $last_order + 1;
433 433
             }
434 434
 
435 435
             $default_value_add = '';
@@ -441,15 +441,15 @@  discard block
 block discarded – undo
441 441
                     case 'address':
442 442
 
443 443
                         if ($htmlvar_name != '') {
444
-                            $prefix = $htmlvar_name . '_';
444
+                            $prefix = $htmlvar_name.'_';
445 445
                         }
446
-                        $old_prefix = $old_html_variable . '_';
446
+                        $old_prefix = $old_html_variable.'_';
447 447
 
448 448
 
449
-                        $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "address` `" . $prefix . "address` VARCHAR( 254 ) NULL";
449
+                        $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."address` `".$prefix."address` VARCHAR( 254 ) NULL";
450 450
 
451 451
                         if ($default_value != '') {
452
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
452
+                            $meta_field_add .= " DEFAULT '".$default_value."'";
453 453
                         }
454 454
 
455 455
                         $wpdb->query($meta_field_add);
@@ -458,12 +458,12 @@  discard block
 block discarded – undo
458 458
 
459 459
                             if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
460 460
 
461
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "city'");
461
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."city'");
462 462
                                 if ($is_column) {
463
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "city` `" . $prefix . "city` VARCHAR( 50 ) NULL";
463
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."city` `".$prefix."city` VARCHAR( 50 ) NULL";
464 464
 
465 465
                                     if ($default_value != '') {
466
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
466
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
467 467
                                     }
468 468
 
469 469
                                     $wpdb->query($meta_field_add);
@@ -471,9 +471,9 @@  discard block
 block discarded – undo
471 471
 
472 472
                                     $meta_field_add = "VARCHAR( 50 ) NULL";
473 473
                                     if ($default_value != '') {
474
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
474
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
475 475
                                     }
476
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add);
476
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."city", $meta_field_add);
477 477
 
478 478
                                 }
479 479
 
@@ -483,36 +483,36 @@  discard block
 block discarded – undo
483 483
 
484 484
                             if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
485 485
 
486
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "region'");
486
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."region'");
487 487
 
488 488
                                 if ($is_column) {
489
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "region` `" . $prefix . "region` VARCHAR( 50 ) NULL";
489
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."region` `".$prefix."region` VARCHAR( 50 ) NULL";
490 490
 
491 491
                                     if ($default_value != '') {
492
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
492
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
493 493
                                     }
494 494
 
495 495
                                     $wpdb->query($meta_field_add);
496 496
                                 } else {
497 497
                                     $meta_field_add = "VARCHAR( 50 ) NULL";
498 498
                                     if ($default_value != '') {
499
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
499
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
500 500
                                     }
501 501
 
502
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add);
502
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."region", $meta_field_add);
503 503
                                 }
504 504
 
505 505
                             }
506 506
                             if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
507 507
 
508
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "country'");
508
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."country'");
509 509
 
510 510
                                 if ($is_column) {
511 511
 
512
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "country` `" . $prefix . "country` VARCHAR( 50 ) NULL";
512
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."country` `".$prefix."country` VARCHAR( 50 ) NULL";
513 513
 
514 514
                                     if ($default_value != '') {
515
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
515
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
516 516
                                     }
517 517
 
518 518
                                     $wpdb->query($meta_field_add);
@@ -520,24 +520,24 @@  discard block
 block discarded – undo
520 520
 
521 521
                                     $meta_field_add = "VARCHAR( 50 ) NULL";
522 522
                                     if ($default_value != '') {
523
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
523
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
524 524
                                     }
525 525
 
526
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add);
526
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."country", $meta_field_add);
527 527
 
528 528
                                 }
529 529
 
530 530
                             }
531 531
                             if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
532 532
 
533
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "zip'");
533
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."zip'");
534 534
 
535 535
                                 if ($is_column) {
536 536
 
537
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "zip` `" . $prefix . "zip` VARCHAR( 50 ) NULL";
537
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."zip` `".$prefix."zip` VARCHAR( 50 ) NULL";
538 538
 
539 539
                                     if ($default_value != '') {
540
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
540
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
541 541
                                     }
542 542
 
543 543
                                     $wpdb->query($meta_field_add);
@@ -545,128 +545,128 @@  discard block
 block discarded – undo
545 545
 
546 546
                                     $meta_field_add = "VARCHAR( 50 ) NULL";
547 547
                                     if ($default_value != '') {
548
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
548
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
549 549
                                     }
550 550
 
551
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add);
551
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."zip", $meta_field_add);
552 552
 
553 553
                                 }
554 554
 
555 555
                             }
556 556
                             if (isset($extra_fields['show_map']) && $extra_fields['show_map']) {
557 557
 
558
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latitude'");
558
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."latitude'");
559 559
                                 if ($is_column) {
560 560
 
561
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latitude` `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
561
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."latitude` `".$prefix."latitude` VARCHAR( 20 ) NULL";
562 562
 
563 563
                                     if ($default_value != '') {
564
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
564
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
565 565
                                     }
566 566
 
567 567
                                     $wpdb->query($meta_field_add);
568 568
                                 } else {
569 569
 
570
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
570
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latitude` VARCHAR( 20 ) NULL";
571 571
                                     $meta_field_add = "VARCHAR( 20 ) NULL";
572 572
                                     if ($default_value != '') {
573
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
573
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
574 574
                                     }
575 575
 
576
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add);
576
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."latitude", $meta_field_add);
577 577
 
578 578
                                 }
579 579
 
580 580
 
581
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "longitude'");
581
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."longitude'");
582 582
 
583 583
                                 if ($is_column) {
584
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "longitude` `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
584
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."longitude` `".$prefix."longitude` VARCHAR( 20 ) NULL";
585 585
 
586 586
                                     if ($default_value != '') {
587
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
587
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
588 588
                                     }
589 589
 
590 590
                                     $wpdb->query($meta_field_add);
591 591
                                 } else {
592 592
 
593
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
593
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."longitude` VARCHAR( 20 ) NULL";
594 594
                                     $meta_field_add = "VARCHAR( 20 ) NULL";
595 595
                                     if ($default_value != '') {
596
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
596
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
597 597
                                     }
598 598
 
599
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add);
599
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."longitude", $meta_field_add);
600 600
                                 }
601 601
 
602 602
                             }
603 603
                             if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) {
604 604
 
605
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapview'");
605
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."mapview'");
606 606
 
607 607
                                 if ($is_column) {
608
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapview` `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
608
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."mapview` `".$prefix."mapview` VARCHAR( 15 ) NULL";
609 609
 
610 610
                                     if ($default_value != '') {
611
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
611
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
612 612
                                     }
613 613
 
614 614
                                     $wpdb->query($meta_field_add);
615 615
                                 } else {
616 616
 
617
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
617
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapview` VARCHAR( 15 ) NULL";
618 618
 
619 619
                                     $meta_field_add = "VARCHAR( 15 ) NULL";
620 620
                                     if ($default_value != '') {
621
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
621
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
622 622
                                     }
623 623
 
624
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add);
624
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."mapview", $meta_field_add);
625 625
                                 }
626 626
 
627 627
 
628 628
                             }
629 629
                             if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) {
630 630
 
631
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapzoom'");
631
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."mapzoom'");
632 632
                                 if ($is_column) {
633
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapzoom` `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
633
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."mapzoom` `".$prefix."mapzoom` VARCHAR( 3 ) NULL";
634 634
 
635 635
                                     if ($default_value != '') {
636
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
636
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
637 637
                                     }
638 638
 
639 639
                                     $wpdb->query($meta_field_add);
640 640
 
641 641
                                 } else {
642 642
 
643
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
643
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapzoom` VARCHAR( 3 ) NULL";
644 644
 
645 645
                                     $meta_field_add = "VARCHAR( 3 ) NULL";
646 646
                                     if ($default_value != '') {
647
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
647
+                                        $meta_field_add .= " DEFAULT '".$default_value."'";
648 648
                                     }
649 649
 
650
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add);
650
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."mapzoom", $meta_field_add);
651 651
                                 }
652 652
 
653 653
                             }
654 654
                             // show lat lng
655 655
                             if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) {
656
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latlng'");
656
+                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM ".$detail_table." where field='".$old_prefix."latlng'");
657 657
 
658 658
                                 if ($is_column) {
659
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latlng` `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
659
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_prefix."latlng` `".$prefix."latlng` VARCHAR( 3 ) NULL";
660 660
                                     $meta_field_add .= " DEFAULT '1'";
661 661
 
662 662
                                     $wpdb->query($meta_field_add);
663 663
                                 } else {
664
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
664
+                                    $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latlng` VARCHAR( 3 ) NULL";
665 665
 
666 666
                                     $meta_field_add = "VARCHAR( 3 ) NULL";
667 667
                                     $meta_field_add .= " DEFAULT '1'";
668 668
 
669
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add);
669
+                                    geodir_add_column_if_not_exist($detail_table, $prefix."latlng", $meta_field_add);
670 670
                                 }
671 671
 
672 672
                             }
@@ -682,30 +682,30 @@  discard block
 block discarded – undo
682 682
                         $op_size = '500';
683 683
 
684 684
                         // only make the field as big as it needs to be.
685
-                        if(isset($option_values) && $option_values && $field_type=='select'){
686
-                            $option_values_arr = explode(',',$option_values);
687
-                            if(is_array($option_values_arr)){
685
+                        if (isset($option_values) && $option_values && $field_type == 'select') {
686
+                            $option_values_arr = explode(',', $option_values);
687
+                            if (is_array($option_values_arr)) {
688 688
                                 $op_max = 0;
689
-                                foreach($option_values_arr as $op_val){
690
-                                    if(strlen($op_val) && strlen($op_val)>$op_max){$op_max = strlen($op_val);}
689
+                                foreach ($option_values_arr as $op_val) {
690
+                                    if (strlen($op_val) && strlen($op_val) > $op_max) {$op_max = strlen($op_val); }
691 691
                                 }
692
-                                if($op_max){$op_size =$op_max; }
692
+                                if ($op_max) {$op_size = $op_max; }
693 693
                             }
694
-                        }elseif(isset($option_values) && $option_values && $field_type=='multiselect'){
695
-                            if(strlen($option_values)){
696
-                                $op_size =  strlen($option_values);
694
+                        }elseif (isset($option_values) && $option_values && $field_type == 'multiselect') {
695
+                            if (strlen($option_values)) {
696
+                                $op_size = strlen($option_values);
697 697
                             }
698 698
                         }
699 699
 
700
-                        $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "`VARCHAR( $op_size ) NULL";
700
+                        $meta_field_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."`VARCHAR( $op_size ) NULL";
701 701
 
702 702
                         if ($default_value != '') {
703
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
703
+                            $meta_field_add .= " DEFAULT '".$default_value."'";
704 704
                         }
705 705
 
706 706
                         $alter_result = $wpdb->query($meta_field_add);
707
-                        if($alter_result===false){
708
-                            return __('Column change failed, you may have too many columns.','geodirectory');
707
+                        if ($alter_result === false) {
708
+                            return __('Column change failed, you may have too many columns.', 'geodirectory');
709 709
                         }
710 710
 
711 711
                         if (isset($request_field['cat_display_type']))
@@ -722,9 +722,9 @@  discard block
 block discarded – undo
722 722
                     case 'url':
723 723
                     case 'file':
724 724
 
725
-                        $alter_result = $wpdb->query("ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` TEXT NULL");
726
-                        if($alter_result===false){
727
-                            return __('Column change failed, you may have too many columns.','geodirectory');
725
+                        $alter_result = $wpdb->query("ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` TEXT NULL");
726
+                        if ($alter_result === false) {
727
+                            return __('Column change failed, you may have too many columns.', 'geodirectory');
728 728
                         }
729 729
                         if (isset($request_field['advanced_editor']))
730 730
                             $extra_fields = $request_field['advanced_editor'];
@@ -738,24 +738,24 @@  discard block
 block discarded – undo
738 738
                     default:
739 739
                         if ($data_type != 'VARCHAR' && $data_type != '') {
740 740
                             if ($data_type == 'FLOAT' && $decimal_point > 0) {
741
-                                $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` DECIMAL(11, " . (int)$decimal_point . ") NULL";
741
+                                $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` DECIMAL(11, ".(int) $decimal_point.") NULL";
742 742
                             } else {
743
-                                $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` " . $data_type . " NULL";
743
+                                $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` ".$data_type." NULL";
744 744
                             }
745 745
 
746 746
                             if (is_numeric($default_value) && $default_value != '') {
747
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
747
+                                $default_value_add .= " DEFAULT '".$default_value."'";
748 748
                             }
749 749
                         } else {
750
-                            $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` VARCHAR( 254 ) NULL";
750
+                            $default_value_add = "ALTER TABLE ".$detail_table." CHANGE `".$old_html_variable."` `".$htmlvar_name."` VARCHAR( 254 ) NULL";
751 751
                             if ($default_value != '') {
752
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
752
+                                $default_value_add .= " DEFAULT '".$default_value."'";
753 753
                             }
754 754
                         }
755 755
 
756 756
                         $alter_result = $wpdb->query($default_value_add);
757
-                        if($alter_result===false){
758
-                            return __('Column change failed, you may have too many columns.','geodirectory');
757
+                        if ($alter_result === false) {
758
+                            return __('Column change failed, you may have too many columns.', 'geodirectory');
759 759
                         }
760 760
                         break;
761 761
                 endswitch;
@@ -771,7 +771,7 @@  discard block
 block discarded – undo
771 771
 
772 772
                     $wpdb->prepare(
773 773
 
774
-                        "update " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
774
+                        "update ".GEODIR_CUSTOM_FIELDS_TABLE." set 
775 775
 					post_type = %s,
776 776
 					admin_title = %s,
777 777
 					site_title = %s,
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
 					for_admin_use = %s
806 806
 					where id = %d",
807 807
 
808
-                        array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_required, $required_msg, $css_class, $field_icon, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use, $cf)
808
+                        array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_required, $required_msg, $css_class, $field_icon, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point, $validation_pattern, $validation_msg, $for_admin_use, $cf)
809 809
                     )
810 810
 
811 811
                 );
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
 
816 816
                 $wpdb->query(
817 817
                     $wpdb->prepare(
818
-                        "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
818
+                        "update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set 
819 819
 					 	site_title=%s
820 820
 					where post_type = %s and htmlvar_name = %s",
821 821
                         array($site_title, $post_type, $htmlvar_name)
@@ -824,7 +824,7 @@  discard block
 block discarded – undo
824 824
 
825 825
 
826 826
                 if ($cat_sort == '')
827
-                    $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name)));
827
+                    $wpdb->query($wpdb->prepare("delete from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name)));
828 828
 
829 829
 
830 830
                 /**
@@ -844,7 +844,7 @@  discard block
 block discarded – undo
844 844
                         $data_type = '';
845 845
 
846 846
                         if ($htmlvar_name != '') {
847
-                            $prefix = $htmlvar_name . '_';
847
+                            $prefix = $htmlvar_name.'_';
848 848
                         }
849 849
                         $old_prefix = $old_html_variable;
850 850
 
@@ -852,109 +852,109 @@  discard block
 block discarded – undo
852 852
 
853 853
                         $meta_field_add = "VARCHAR( 254 ) NULL";
854 854
                         if ($default_value != '') {
855
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
855
+                            $meta_field_add .= " DEFAULT '".$default_value."'";
856 856
                         }
857 857
 
858
-                        geodir_add_column_if_not_exist($detail_table, $prefix . "address", $meta_field_add);
858
+                        geodir_add_column_if_not_exist($detail_table, $prefix."address", $meta_field_add);
859 859
                         //$wpdb->query($meta_field_add);
860 860
 
861 861
 
862 862
                         if (!empty($extra_fields)) {
863 863
 
864 864
                             if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
865
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "city` VARCHAR( 30 ) NULL";
865
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."city` VARCHAR( 30 ) NULL";
866 866
                                 $meta_field_add = "VARCHAR( 50 ) NULL";
867 867
                                 if ($default_value != '') {
868
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
868
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
869 869
                                 }
870 870
 
871
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add);
871
+                                geodir_add_column_if_not_exist($detail_table, $prefix."city", $meta_field_add);
872 872
                                 //$wpdb->query($meta_field_add);
873 873
                             }
874 874
                             if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
875
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "region` VARCHAR( 30 ) NULL";
875
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."region` VARCHAR( 30 ) NULL";
876 876
                                 $meta_field_add = "VARCHAR( 50 ) NULL";
877 877
                                 if ($default_value != '') {
878
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
878
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
879 879
                                 }
880 880
 
881
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add);
881
+                                geodir_add_column_if_not_exist($detail_table, $prefix."region", $meta_field_add);
882 882
                                 //$wpdb->query($meta_field_add);
883 883
                             }
884 884
                             if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
885
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "country` VARCHAR( 30 ) NULL";
885
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."country` VARCHAR( 30 ) NULL";
886 886
 
887 887
                                 $meta_field_add = "VARCHAR( 30 ) NULL";
888 888
                                 if ($default_value != '') {
889
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
889
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
890 890
                                 }
891 891
 
892
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add);
892
+                                geodir_add_column_if_not_exist($detail_table, $prefix."country", $meta_field_add);
893 893
                                 //$wpdb->query($meta_field_add);
894 894
                             }
895 895
                             if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
896
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "zip` VARCHAR( 15 ) NULL";
896
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."zip` VARCHAR( 15 ) NULL";
897 897
                                 $meta_field_add = "VARCHAR( 15 ) NULL";
898 898
                                 if ($default_value != '') {
899
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
899
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
900 900
                                 }
901 901
 
902
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add);
902
+                                geodir_add_column_if_not_exist($detail_table, $prefix."zip", $meta_field_add);
903 903
                                 //$wpdb->query($meta_field_add);
904 904
                             }
905 905
                             if (isset($extra_fields['show_map']) && $extra_fields['show_map']) {
906
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
906
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latitude` VARCHAR( 20 ) NULL";
907 907
                                 $meta_field_add = "VARCHAR( 20 ) NULL";
908 908
                                 if ($default_value != '') {
909
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
909
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
910 910
                                 }
911 911
 
912
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add);
912
+                                geodir_add_column_if_not_exist($detail_table, $prefix."latitude", $meta_field_add);
913 913
                                 //$wpdb->query($meta_field_add);
914 914
 
915
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
915
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."longitude` VARCHAR( 20 ) NULL";
916 916
 
917 917
                                 $meta_field_add = "VARCHAR( 20 ) NULL";
918 918
                                 if ($default_value != '') {
919
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
919
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
920 920
                                 }
921 921
 
922
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add);
922
+                                geodir_add_column_if_not_exist($detail_table, $prefix."longitude", $meta_field_add);
923 923
 
924 924
                                 //$wpdb->query($meta_field_add);
925 925
                             }
926 926
                             if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) {
927
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
927
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapview` VARCHAR( 15 ) NULL";
928 928
 
929 929
                                 $meta_field_add = "VARCHAR( 15 ) NULL";
930 930
                                 if ($default_value != '') {
931
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
931
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
932 932
                                 }
933 933
 
934
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add);
934
+                                geodir_add_column_if_not_exist($detail_table, $prefix."mapview", $meta_field_add);
935 935
 
936 936
                                 //$wpdb->query($meta_field_add);
937 937
                             }
938 938
                             if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) {
939
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
939
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."mapzoom` VARCHAR( 3 ) NULL";
940 940
 
941 941
                                 $meta_field_add = "VARCHAR( 3 ) NULL";
942 942
                                 if ($default_value != '') {
943
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
943
+                                    $meta_field_add .= " DEFAULT '".$default_value."'";
944 944
                                 }
945 945
 
946
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add);
946
+                                geodir_add_column_if_not_exist($detail_table, $prefix."mapzoom", $meta_field_add);
947 947
 
948 948
                                 //$wpdb->query($meta_field_add);
949 949
                             }
950 950
                             // show lat lng
951 951
                             if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) {
952
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
952
+                                $meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."latlng` VARCHAR( 3 ) NULL";
953 953
 
954 954
                                 $meta_field_add = "VARCHAR( 3 ) NULL";
955 955
                                 $meta_field_add .= " DEFAULT '1'";
956 956
 
957
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add);
957
+                                geodir_add_column_if_not_exist($detail_table, $prefix."latlng", $meta_field_add);
958 958
                                 //$wpdb->query($meta_field_add);
959 959
                             }
960 960
                         }
@@ -964,8 +964,8 @@  discard block
 block discarded – undo
964 964
                     case 'checkbox':
965 965
                         $data_type = 'TINYINT';
966 966
 
967
-                        $meta_field_add = $data_type . "( 1 ) NOT NULL ";
968
-                        if ((int)$default_value === 1) {
967
+                        $meta_field_add = $data_type."( 1 ) NOT NULL ";
968
+                        if ((int) $default_value === 1) {
969 969
                             $meta_field_add .= " DEFAULT '1'";
970 970
                         }
971 971
 
@@ -998,7 +998,7 @@  discard block
 block discarded – undo
998 998
                             }
999 999
                         } elseif (isset($option_values) && $option_values && $field_type == 'multiselect') {
1000 1000
                             if (strlen($option_values)) {
1001
-                                $op_size =  strlen($option_values);
1001
+                                $op_size = strlen($option_values);
1002 1002
                             }
1003 1003
 
1004 1004
                             if (isset($request_field['multi_display_type'])) {
@@ -1006,9 +1006,9 @@  discard block
 block discarded – undo
1006 1006
                             }
1007 1007
                         }
1008 1008
 
1009
-                        $meta_field_add = $data_type . "( $op_size ) NULL ";
1009
+                        $meta_field_add = $data_type."( $op_size ) NULL ";
1010 1010
                         if ($default_value != '') {
1011
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
1011
+                            $meta_field_add .= " DEFAULT '".$default_value."'";
1012 1012
                         }
1013 1013
 
1014 1014
                         $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
@@ -1023,9 +1023,9 @@  discard block
 block discarded – undo
1023 1023
 
1024 1024
                         $data_type = 'TEXT';
1025 1025
 
1026
-                        $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1026
+                        $default_value_add = " `".$htmlvar_name."` ".$data_type." NULL ";
1027 1027
 
1028
-                        $meta_field_add = $data_type . " NULL ";
1028
+                        $meta_field_add = $data_type." NULL ";
1029 1029
                         /*if($default_value != '')
1030 1030
 					{ $meta_field_add .= " DEFAULT '".$default_value."'"; }*/
1031 1031
 
@@ -1040,9 +1040,9 @@  discard block
 block discarded – undo
1040 1040
 
1041 1041
                         $data_type = 'DATE';
1042 1042
 
1043
-                        $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1043
+                        $default_value_add = " `".$htmlvar_name."` ".$data_type." NULL ";
1044 1044
 
1045
-                        $meta_field_add = $data_type . " NULL ";
1045
+                        $meta_field_add = $data_type." NULL ";
1046 1046
 
1047 1047
                         $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1048 1048
                         if ($add_result === false) {
@@ -1055,9 +1055,9 @@  discard block
 block discarded – undo
1055 1055
 
1056 1056
                         $data_type = 'TIME';
1057 1057
 
1058
-                        $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1058
+                        $default_value_add = " `".$htmlvar_name."` ".$data_type." NULL ";
1059 1059
 
1060
-                        $meta_field_add = $data_type . " NULL ";
1060
+                        $meta_field_add = $data_type." NULL ";
1061 1061
 
1062 1062
                         $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1063 1063
                         if ($add_result === false) {
@@ -1069,22 +1069,22 @@  discard block
 block discarded – undo
1069 1069
                     default:
1070 1070
 
1071 1071
                         if ($data_type != 'VARCHAR' && $data_type != '') {
1072
-                            $meta_field_add = $data_type . " NULL ";
1072
+                            $meta_field_add = $data_type." NULL ";
1073 1073
 
1074 1074
                             if ($data_type == 'FLOAT' && $decimal_point > 0) {
1075
-                                $meta_field_add = "DECIMAL(11, " . (int)$decimal_point . ") NULL ";
1075
+                                $meta_field_add = "DECIMAL(11, ".(int) $decimal_point.") NULL ";
1076 1076
                             }
1077 1077
 
1078 1078
                             if (is_numeric($default_value) && $default_value != '') {
1079
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
1080
-                                $meta_field_add .= " DEFAULT '" . $default_value . "'";
1079
+                                $default_value_add .= " DEFAULT '".$default_value."'";
1080
+                                $meta_field_add .= " DEFAULT '".$default_value."'";
1081 1081
                             }
1082 1082
                         } else {
1083 1083
                             $meta_field_add = " VARCHAR( 254 ) NULL ";
1084 1084
 
1085 1085
                             if ($default_value != '') {
1086
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
1087
-                                $meta_field_add .= " DEFAULT '" . $default_value . "'";
1086
+                                $default_value_add .= " DEFAULT '".$default_value."'";
1087
+                                $meta_field_add .= " DEFAULT '".$default_value."'";
1088 1088
                             }
1089 1089
                         }
1090 1090
 
@@ -1106,7 +1106,7 @@  discard block
 block discarded – undo
1106 1106
 
1107 1107
                     $wpdb->prepare(
1108 1108
 
1109
-                        "insert into " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
1109
+                        "insert into ".GEODIR_CUSTOM_FIELDS_TABLE." set 
1110 1110
 					post_type = %s,
1111 1111
 					admin_title = %s,
1112 1112
 					site_title = %s,
@@ -1139,7 +1139,7 @@  discard block
 block discarded – undo
1139 1139
 					validation_msg = %s,
1140 1140
 					for_admin_use = %s ",
1141 1141
 
1142
-                        array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_admin, $is_required, $required_msg, $css_class, $field_icon, $show_on_listing,$show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use)
1142
+                        array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_admin, $is_required, $required_msg, $css_class, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point, $validation_pattern, $validation_msg, $for_admin_use)
1143 1143
 
1144 1144
                     )
1145 1145
 
@@ -1151,7 +1151,7 @@  discard block
 block discarded – undo
1151 1151
 
1152 1152
             }
1153 1153
 
1154
-            return (int)$lastid;
1154
+            return (int) $lastid;
1155 1155
 
1156 1156
 
1157 1157
         } else {
@@ -1184,7 +1184,7 @@  discard block
 block discarded – undo
1184 1184
 
1185 1185
             $post_meta_info = $wpdb->query(
1186 1186
                 $wpdb->prepare(
1187
-                    "update " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
1187
+                    "update ".GEODIR_CUSTOM_FIELDS_TABLE." set 
1188 1188
 															sort_order=%d 
1189 1189
 															where id= %d",
1190 1190
                     array($count, $cf)
@@ -1206,7 +1206,7 @@  discard block
 block discarded – undo
1206 1206
         global $post;
1207 1207
 
1208 1208
         if (isset($_REQUEST['post'])) {
1209
-            $_REQUEST['pid'] = (int)$_REQUEST['post'];
1209
+            $_REQUEST['pid'] = (int) $_REQUEST['post'];
1210 1210
         }
1211 1211
     }
1212 1212
 
@@ -1229,7 +1229,7 @@  discard block
 block discarded – undo
1229 1229
      * @param mixed $value Custom field value.
1230 1230
      * @param array $cf Custom field info.
1231 1231
      */
1232
-    return apply_filters( 'geodir_get_cf_value', $value, $cf );
1232
+    return apply_filters('geodir_get_cf_value', $value, $cf);
1233 1233
 }
1234 1234
 
1235 1235
 /**
@@ -1255,16 +1255,16 @@  discard block
 block discarded – undo
1255 1255
     $custom_fields = geodir_post_custom_fields($package_id, $default, $post_type);
1256 1256
 
1257 1257
     foreach ($custom_fields as $key => $val) {
1258
-        if(isset($val['extra_fields'])){$extra_fields = $val['extra_fields'];}
1258
+        if (isset($val['extra_fields'])) {$extra_fields = $val['extra_fields']; }
1259 1259
         $val = stripslashes_deep($val); // strip slashes from labels
1260
-        if(isset($val['extra_fields'])){$val['extra_fields'] = $extra_fields;}
1260
+        if (isset($val['extra_fields'])) {$val['extra_fields'] = $extra_fields; }
1261 1261
 
1262 1262
         $name = $val['name'];
1263 1263
         $type = $val['type'];
1264 1264
         $is_default = $val['is_default'];
1265 1265
 
1266 1266
         /* field available to site admin only for edit */
1267
-        $for_admin_use = isset($val['for_admin_use']) && (int)$val['for_admin_use'] == 1 ? true : false;
1267
+        $for_admin_use = isset($val['for_admin_use']) && (int) $val['for_admin_use'] == 1 ? true : false;
1268 1268
         if ($for_admin_use && !is_super_admin()) {
1269 1269
             continue;
1270 1270
         }
@@ -1289,11 +1289,11 @@  discard block
 block discarded – undo
1289 1289
          * @param array $val The settings array for the field. {@see geodir_custom_field_save()}.
1290 1290
          * @see 'geodir_after_custom_form_field_$name'
1291 1291
          */
1292
-        do_action('geodir_before_custom_form_field_' . $name, $listing_type, $package_id, $val);
1292
+        do_action('geodir_before_custom_form_field_'.$name, $listing_type, $package_id, $val);
1293 1293
 
1294 1294
 
1295 1295
         $custom_field = $val;
1296
-        $html ='';
1296
+        $html = '';
1297 1297
         /**
1298 1298
          * Filter the output for custom fields.
1299 1299
          *
@@ -1302,7 +1302,7 @@  discard block
 block discarded – undo
1302 1302
          * @param string $html The html to be filtered (blank).
1303 1303
          * @param array $custom_field The custom field array values.
1304 1304
          */
1305
-        echo apply_filters("geodir_custom_field_input_{$type}",$html,$custom_field);
1305
+        echo apply_filters("geodir_custom_field_input_{$type}", $html, $custom_field);
1306 1306
 
1307 1307
 
1308 1308
 
@@ -1317,7 +1317,7 @@  discard block
 block discarded – undo
1317 1317
          * @param array $val The settings array for the field. {@see geodir_custom_field_save()}.
1318 1318
          * @see 'geodir_before_custom_form_field_$name'
1319 1319
          */
1320
-        do_action('geodir_after_custom_form_field_' . $name, $listing_type, $package_id, $val);
1320
+        do_action('geodir_after_custom_form_field_'.$name, $listing_type, $package_id, $val);
1321 1321
 
1322 1322
     }
1323 1323
 
@@ -1343,7 +1343,7 @@  discard block
 block discarded – undo
1343 1343
 
1344 1344
         $filter = $wpdb->get_row(
1345 1345
             $wpdb->prepare(
1346
-                "SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND " . $key . "='" . $value . "'",
1346
+                "SELECT * FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND ".$key."='".$value."'",
1347 1347
                 array($geodir_post_type)
1348 1348
             )
1349 1349
         );
@@ -1358,14 +1358,14 @@  discard block
 block discarded – undo
1358 1358
 }
1359 1359
 
1360 1360
 
1361
-function geodir_field_icon_proccess($cf){
1361
+function geodir_field_icon_proccess($cf) {
1362 1362
 
1363 1363
 
1364 1364
     if (strpos($cf['field_icon'], 'http') !== false) {
1365
-        $field_icon = ' background: url(' . $cf['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
1365
+        $field_icon = ' background: url('.$cf['field_icon'].') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
1366 1366
     } elseif (strpos($cf['field_icon'], 'fa fa-') !== false) {
1367
-        $field_icon = '<i class="' . $cf['field_icon'] . '"></i>';
1368
-    }else{
1367
+        $field_icon = '<i class="'.$cf['field_icon'].'"></i>';
1368
+    } else {
1369 1369
         $field_icon = $cf['field_icon'];
1370 1370
     }
1371 1371
 
@@ -1410,14 +1410,14 @@  discard block
 block discarded – undo
1410 1410
 
1411 1411
 
1412 1412
             foreach ($fields_info as $type) {
1413
-                if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
1413
+                if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; }
1414 1414
                 $type = stripslashes_deep($type); // strip slashes
1415
-                if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
1415
+                if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; }
1416 1416
                 $html = '';
1417 1417
                 $field_icon = geodir_field_icon_proccess($type);
1418 1418
                 $filed_type = $type['type'];
1419 1419
                 $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
1420
-                if($html_var=='post'){$html_var='post_address';}
1420
+                if ($html_var == 'post') {$html_var = 'post_address'; }
1421 1421
 
1422 1422
                 /**
1423 1423
                  * Filter the output for custom fields.
@@ -1428,7 +1428,7 @@  discard block
 block discarded – undo
1428 1428
                  * @param string $fields_location The location the field is to be show.
1429 1429
                  * @param array $type The array of field values.
1430 1430
                  */
1431
-                $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
1431
+                $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
1432 1432
 
1433 1433
                 $variables_array = array();
1434 1434
 
@@ -1488,7 +1488,7 @@  discard block
 block discarded – undo
1488 1488
          * @param string $fields_location The location the fields are being output.
1489 1489
          * @since 1.6.9
1490 1490
          */
1491
-        return apply_filters('geodir_show_listing_info',$html,$fields_location);
1491
+        return apply_filters('geodir_show_listing_info', $html, $fields_location);
1492 1492
 
1493 1493
     }
1494 1494
 }
@@ -1563,7 +1563,7 @@  discard block
 block discarded – undo
1563 1563
 
1564 1564
         $post_type = get_post_type($post_id);
1565 1565
         //echo $field_id; exit;
1566
-        $table = $plugin_prefix . $post_type . '_detail';
1566
+        $table = $plugin_prefix.$post_type.'_detail';
1567 1567
 
1568 1568
         $postcurr_images = array();
1569 1569
         $postcurr_images = geodir_get_post_meta($post_id, $field_id, true);
@@ -1582,13 +1582,13 @@  discard block
 block discarded – undo
1582 1582
             $geodir_uploadurl = $uploads['url'];
1583 1583
             $sub_dir = $uploads['subdir'];
1584 1584
 
1585
-            $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : '';
1585
+            $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types']) ? $extra_fields['gd_file_types'] : '';
1586 1586
 
1587 1587
             for ($m = 0; $m < count($post_image); $m++) {
1588 1588
 
1589 1589
                 /* --------- start ------- */
1590 1590
 
1591
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM " . $table . " WHERE $field_id = %s AND post_id = %d", array($post_image[$m], $post_id)))) {
1591
+                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM ".$table." WHERE $field_id = %s AND post_id = %d", array($post_image[$m], $post_id)))) {
1592 1592
 
1593 1593
 
1594 1594
                     $curr_img_url = $post_image[$m];
@@ -1614,24 +1614,24 @@  discard block
 block discarded – undo
1614 1614
                     //$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/octet-stream', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain');
1615 1615
 
1616 1616
                     if (!function_exists('wp_handle_upload'))
1617
-                        require_once(ABSPATH . 'wp-admin/includes/file.php');
1617
+                        require_once(ABSPATH.'wp-admin/includes/file.php');
1618 1618
 
1619 1619
                     if (!is_dir($geodir_uploadpath))
1620 1620
                         mkdir($geodir_uploadpath);
1621 1621
 
1622
-                    $new_name = $post_id . '_' . $field_id . '_' . $img_name_arr[0] . '.' . $img_name_arr[1];
1622
+                    $new_name = $post_id.'_'.$field_id.'_'.$img_name_arr[0].'.'.$img_name_arr[1];
1623 1623
                     $explode_sub_dir = explode("/", $sub_dir);
1624 1624
                     if ($curr_img_dir == end($explode_sub_dir)) {
1625
-                        $img_path = $geodir_uploadpath . '/' . $filename;
1626
-                        $img_url = $geodir_uploadurl . '/' . $filename;
1625
+                        $img_path = $geodir_uploadpath.'/'.$filename;
1626
+                        $img_url = $geodir_uploadurl.'/'.$filename;
1627 1627
                     } else {
1628
-                        $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1629
-                        $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1628
+                        $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename;
1629
+                        $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename;
1630 1630
                     }
1631 1631
 
1632 1632
                     $uploaded_file = '';
1633 1633
                     if (file_exists($img_path))
1634
-                        $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1634
+                        $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name);
1635 1635
 
1636 1636
                     if ($curr_img_dir != $geodir_uploaddir) {
1637 1637
                         if (file_exists($img_path))
@@ -1639,7 +1639,7 @@  discard block
 block discarded – undo
1639 1639
                     }
1640 1640
 
1641 1641
                     if (!empty($uploaded_file))
1642
-                        $file_urls = $geodir_uploadurl . '/' . $new_name;
1642
+                        $file_urls = $geodir_uploadurl.'/'.$new_name;
1643 1643
 
1644 1644
                 } else {
1645 1645
                     $file_urls = $post_image[$m];
@@ -1653,8 +1653,8 @@  discard block
 block discarded – undo
1653 1653
         if (!empty($postcurr_images)) {
1654 1654
 
1655 1655
             if ($file_urls != $postcurr_images) {
1656
-                $invalid_files[] = (object)array('src' => $postcurr_images);
1657
-                $invalid_files = (object)$invalid_files;
1656
+                $invalid_files[] = (object) array('src' => $postcurr_images);
1657
+                $invalid_files = (object) $invalid_files;
1658 1658
             }
1659 1659
         }
1660 1660
 
@@ -1706,9 +1706,9 @@  discard block
 block discarded – undo
1706 1706
     function geodir_upload_dir($upload)
1707 1707
     {
1708 1708
         global $current_user;
1709
-        $upload['subdir'] = $upload['subdir'] . '/temp_' . $current_user->data->ID;
1710
-        $upload['path'] = $upload['basedir'] . $upload['subdir'];
1711
-        $upload['url'] = $upload['baseurl'] . $upload['subdir'];
1709
+        $upload['subdir'] = $upload['subdir'].'/temp_'.$current_user->data->ID;
1710
+        $upload['path'] = $upload['basedir'].$upload['subdir'];
1711
+        $upload['url'] = $upload['baseurl'].$upload['subdir'];
1712 1712
         return $upload;
1713 1713
     }
1714 1714
 
@@ -1723,20 +1723,20 @@  discard block
 block discarded – undo
1723 1723
         // check ajax nonce
1724 1724
         $imgid = $_POST["imgid"];
1725 1725
 
1726
-        check_ajax_referer($imgid . 'pluploadan');
1726
+        check_ajax_referer($imgid.'pluploadan');
1727 1727
 
1728 1728
         // handle custom file uploaddir
1729 1729
         add_filter('upload_dir', 'geodir_upload_dir');
1730 1730
 
1731 1731
         // change file orientation if needed
1732
-        $fixed_file = geodir_exif($_FILES[$imgid . 'async-upload']);
1732
+        $fixed_file = geodir_exif($_FILES[$imgid.'async-upload']);
1733 1733
 
1734 1734
         // handle file upload
1735 1735
         $status = wp_handle_upload($fixed_file, array('test_form' => true, 'action' => 'plupload_action'));
1736 1736
         // remove handle custom file uploaddir
1737 1737
         remove_filter('upload_dir', 'geodir_upload_dir');
1738 1738
 
1739
-        if(!isset($status['url']) && isset($status['error'])){
1739
+        if (!isset($status['url']) && isset($status['error'])) {
1740 1740
             print_r($status);
1741 1741
         }
1742 1742
 
@@ -1766,9 +1766,9 @@  discard block
 block discarded – undo
1766 1766
 
1767 1767
     $post_type = get_post_type($post_id);
1768 1768
 
1769
-    $table = $plugin_prefix . $post_type . '_detail';
1769
+    $table = $plugin_prefix.$post_type.'_detail';
1770 1770
 
1771
-    $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_video FROM " . $table . " WHERE post_id=%d", array($post_id)));
1771
+    $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_video FROM ".$table." WHERE post_id=%d", array($post_id)));
1772 1772
 
1773 1773
     if ($results) {
1774 1774
         return $results[0]->geodir_video;
@@ -1792,9 +1792,9 @@  discard block
 block discarded – undo
1792 1792
 
1793 1793
     $post_type = get_post_type($post_id);
1794 1794
 
1795
-    $table = $plugin_prefix . $post_type . '_detail';
1795
+    $table = $plugin_prefix.$post_type.'_detail';
1796 1796
 
1797
-    $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_special_offers FROM " . $table . " WHERE post_id=%d", array($post_id)));
1797
+    $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_special_offers FROM ".$table." WHERE post_id=%d", array($post_id)));
1798 1798
 
1799 1799
     if ($results) {
1800 1800
         return $results[0]->geodir_special_offers;
@@ -1812,12 +1812,12 @@  discard block
 block discarded – undo
1812 1812
      */
1813 1813
     function geodir_max_upload_size()
1814 1814
     {
1815
-        $max_filesize = (float)get_option('geodir_upload_max_filesize', 2);
1815
+        $max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1816 1816
 
1817 1817
         if ($max_filesize > 0 && $max_filesize < 1) {
1818
-            $max_filesize = (int)($max_filesize * 1024) . 'kb';
1818
+            $max_filesize = (int) ($max_filesize * 1024).'kb';
1819 1819
         } else {
1820
-            $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1820
+            $max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1821 1821
         }
1822 1822
         /** Filter documented in geodirectory-functions/general_functions.php **/
1823 1823
         return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
@@ -1849,7 +1849,7 @@  discard block
 block discarded – undo
1849 1849
 
1850 1850
             $custom_fields = $wpdb->get_results(
1851 1851
                 $wpdb->prepare(
1852
-                    "select post_type,data_type,field_type,site_title,htmlvar_name,field_icon from " . GEODIR_CUSTOM_FIELDS_TABLE . " where post_type = %s and is_active='1' and cat_sort='1' AND field_type != 'address' order by sort_order asc",
1852
+                    "select post_type,data_type,field_type,site_title,htmlvar_name,field_icon from ".GEODIR_CUSTOM_FIELDS_TABLE." where post_type = %s and is_active='1' and cat_sort='1' AND field_type != 'address' order by sort_order asc",
1853 1853
                     array($post_type)
1854 1854
                 ), 'ARRAY_A'
1855 1855
             );
@@ -1976,7 +1976,7 @@  discard block
 block discarded – undo
1976 1976
 
1977 1977
             $post_meta_info = $wpdb->query(
1978 1978
                 $wpdb->prepare(
1979
-                    "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
1979
+                    "update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set 
1980 1980
 															sort_order=%d 
1981 1981
 															where id= %d",
1982 1982
                     array($count, $cf)
@@ -2058,14 +2058,14 @@  discard block
 block discarded – undo
2058 2058
 
2059 2059
         $check_html_variable = $wpdb->get_var(
2060 2060
             $wpdb->prepare(
2061
-                "select htmlvar_name from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s and field_type=%s ",
2061
+                "select htmlvar_name from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s and field_type=%s ",
2062 2062
                 array($cehhtmlvar_name, $post_type, $field_type)
2063 2063
             )
2064 2064
         );
2065 2065
 
2066 2066
         if ($is_default == 1) {
2067 2067
 
2068
-            $wpdb->query($wpdb->prepare("update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set is_default='0', default_order='' where post_type = %s", array($post_type)));
2068
+            $wpdb->query($wpdb->prepare("update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set is_default='0', default_order='' where post_type = %s", array($post_type)));
2069 2069
 
2070 2070
         }
2071 2071
 
@@ -2076,7 +2076,7 @@  discard block
 block discarded – undo
2076 2076
 
2077 2077
                 $wpdb->prepare(
2078 2078
 
2079
-                    "insert into " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
2079
+                    "insert into ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set 
2080 2080
 				post_type = %s,
2081 2081
 				data_type = %s,
2082 2082
 				field_type = %s,
@@ -2107,7 +2107,7 @@  discard block
 block discarded – undo
2107 2107
 
2108 2108
                 $wpdb->prepare(
2109 2109
 
2110
-                    "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
2110
+                    "update ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." set 
2111 2111
 				post_type = %s,
2112 2112
 				data_type = %s,
2113 2113
 				field_type = %s,
@@ -2133,7 +2133,7 @@  discard block
 block discarded – undo
2133 2133
         }
2134 2134
 
2135 2135
 
2136
-        return (int)$lastid;
2136
+        return (int) $lastid;
2137 2137
 
2138 2138
     }
2139 2139
 }
@@ -2156,7 +2156,7 @@  discard block
 block discarded – undo
2156 2156
         if ($field_id != '') {
2157 2157
             $cf = trim($field_id, '_');
2158 2158
 
2159
-            $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where id= %d ", array($cf)));
2159
+            $wpdb->query($wpdb->prepare("delete from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where id= %d ", array($cf)));
2160 2160
 
2161 2161
             return $field_id;
2162 2162
 
@@ -2179,12 +2179,12 @@  discard block
 block discarded – undo
2179 2179
      * @param string $field_ins_upd When set to "submit" displays form.
2180 2180
      * @param bool $default when set to true field will be for admin use only.
2181 2181
      */
2182
-    function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key='')
2182
+    function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key = '')
2183 2183
     {
2184 2184
         global $wpdb;
2185 2185
         $cf = $result_str;
2186 2186
         if (!is_object($cf)) {
2187
-            $field_info = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE id = %d", array($cf)));
2187
+            $field_info = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE id = %d", array($cf)));
2188 2188
         } else {
2189 2189
             $field_info = $cf;
2190 2190
             $result_str = $cf->id;
@@ -2220,18 +2220,18 @@  discard block
 block discarded – undo
2220 2220
         if ($htmlvar_name == '')
2221 2221
             $htmlvar_name = isset($field_info->htmlvar_name) ? $field_info->htmlvar_name : '';
2222 2222
 
2223
-        $nonce = wp_create_nonce('custom_fields_' . $result_str);
2223
+        $nonce = wp_create_nonce('custom_fields_'.$result_str);
2224 2224
 
2225 2225
         $field_icon = '<i class="fa fa-cog" aria-hidden="true"></i>';
2226 2226
         $cso_arr = geodir_get_custom_sort_options($post_type);
2227 2227
 
2228 2228
         $cur_field_type = (isset($cf->field_type)) ? $cf->field_type : esc_html($_REQUEST['field_type']);
2229
-        foreach($cso_arr as $cso){
2230
-            if($cur_field_type==$cso['field_type']){
2229
+        foreach ($cso_arr as $cso) {
2230
+            if ($cur_field_type == $cso['field_type']) {
2231 2231
 
2232 2232
                 if (isset($cso['field_icon']) && strpos($cso['field_icon'], 'fa fa-') !== false) {
2233 2233
                     $field_icon = '<i class="'.$cso['field_icon'].'" aria-hidden="true"></i>';
2234
-                }elseif(isset($cso['field_icon']) && $cso['field_icon']){
2234
+                }elseif (isset($cso['field_icon']) && $cso['field_icon']) {
2235 2235
                     $field_icon = '<b style="background-image: url("'.$cso['field_icon'].'")"></b>';
2236 2236
                 }
2237 2237
 
@@ -2241,40 +2241,40 @@  discard block
 block discarded – undo
2241 2241
         $radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name.$field_type : rand(5, 500);
2242 2242
         ?>
2243 2243
 
2244
-        <li class="text" id="licontainer_<?php echo $result_str;?>">
2244
+        <li class="text" id="licontainer_<?php echo $result_str; ?>">
2245 2245
             <form><!-- we need to wrap in a form so we can use radio buttons with same name -->
2246
-            <div class="title title<?php echo $result_str;?> gt-fieldset"
2247
-                 title="<?php _e('Double Click to toggle and drag-drop to sort', 'geodirectory');?>"
2248
-                 ondblclick="show_hide('field_frm<?php echo $result_str;?>')">
2246
+            <div class="title title<?php echo $result_str; ?> gt-fieldset"
2247
+                 title="<?php _e('Double Click to toggle and drag-drop to sort', 'geodirectory'); ?>"
2248
+                 ondblclick="show_hide('field_frm<?php echo $result_str; ?>')">
2249 2249
                 <?php
2250 2250
 
2251 2251
                 ?>
2252 2252
 
2253
-                <div title="<?php _e('Click to remove field', 'geodirectory');?>"
2254
-                     onclick="delete_sort_field('<?php echo $result_str;?>', '<?php echo $nonce;?>', this)"
2253
+                <div title="<?php _e('Click to remove field', 'geodirectory'); ?>"
2254
+                     onclick="delete_sort_field('<?php echo $result_str; ?>', '<?php echo $nonce; ?>', this)"
2255 2255
                      class="handlediv close"><i class="fa fa-times" aria-hidden="true"></i></div>
2256 2256
 
2257 2257
 
2258
-                <?php echo $field_icon;?>
2258
+                <?php echo $field_icon; ?>
2259 2259
                 <b style="cursor:pointer;"
2260
-                   onclick="show_hide('field_frm<?php echo $result_str;?>')"><?php echo geodir_ucwords(__('Field:', 'geodirectory') . ' (' . $site_title . ')');?></b>
2260
+                   onclick="show_hide('field_frm<?php echo $result_str; ?>')"><?php echo geodir_ucwords(__('Field:', 'geodirectory').' ('.$site_title.')'); ?></b>
2261 2261
 
2262 2262
             </div>
2263 2263
 
2264
-            <div id="field_frm<?php echo $result_str;?>" class="field_frm"
2264
+            <div id="field_frm<?php echo $result_str; ?>" class="field_frm"
2265 2265
                  style="display:<?php if ($field_ins_upd == 'submit') {
2266 2266
                      echo 'block;';
2267 2267
                  } else {
2268 2268
                      echo 'none;';
2269 2269
                  } ?>">
2270 2270
                 <input type="hidden" name="_wpnonce" value="<?php echo $nonce; ?>"/>
2271
-                <input type="hidden" name="listing_type" id="listing_type" value="<?php echo $post_type;?>"/>
2272
-                <input type="hidden" name="field_type" id="field_type" value="<?php echo $field_type;?>"/>
2273
-                <input type="hidden" name="field_id" id="field_id" value="<?php echo $result_str;?>"/>
2271
+                <input type="hidden" name="listing_type" id="listing_type" value="<?php echo $post_type; ?>"/>
2272
+                <input type="hidden" name="field_type" id="field_type" value="<?php echo $field_type; ?>"/>
2273
+                <input type="hidden" name="field_id" id="field_id" value="<?php echo $result_str; ?>"/>
2274 2274
                 <input type="hidden" name="data_type" id="data_type" value="<?php if (isset($field_info->data_type)) {
2275 2275
                     echo $field_info->data_type;
2276 2276
                 }?>"/>
2277
-                <input type="hidden" name="htmlvar_name" id="htmlvar_name" value="<?php echo $htmlvar_name;?>"/>
2277
+                <input type="hidden" name="htmlvar_name" id="htmlvar_name" value="<?php echo $htmlvar_name; ?>"/>
2278 2278
 
2279 2279
 
2280 2280
                 <ul class="widefat post fixed" border="0" style="width:100%;">
@@ -2284,7 +2284,7 @@  discard block
 block discarded – undo
2284 2284
                         <input type="hidden" name="site_title" id="site_title" value="<?php echo esc_attr($site_title); ?>"/>
2285 2285
 
2286 2286
                         <li>
2287
-                            <?php $value = (isset($field_info->sort_asc) && $field_info->sort_asc) ? $field_info->sort_asc : 0;?>
2287
+                            <?php $value = (isset($field_info->sort_asc) && $field_info->sort_asc) ? $field_info->sort_asc : 0; ?>
2288 2288
 
2289 2289
                             <label for="asc" class="gd-cf-tooltip-wrap">
2290 2290
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show Ascending Sort (low to high)', 'geodirectory'); ?>
@@ -2294,24 +2294,24 @@  discard block
 block discarded – undo
2294 2294
                             </label>
2295 2295
                             <div class="gd-cf-input-wrap gd-switch">
2296 2296
 
2297
-                                <input type="radio" id="asc_yes<?php echo $radio_id;?>" name="asc" class="gdri-enabled"  value="1"
2297
+                                <input type="radio" id="asc_yes<?php echo $radio_id; ?>" name="asc" class="gdri-enabled"  value="1"
2298 2298
                                     <?php if ($value == '1') {
2299 2299
                                         echo 'checked';
2300 2300
                                     } ?>/>
2301
-                                <label onclick="show_hide_radio(this,'show','cfs-asc-title');" for="asc_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2301
+                                <label onclick="show_hide_radio(this,'show','cfs-asc-title');" for="asc_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2302 2302
 
2303
-                                <input type="radio" id="asc_no<?php echo $radio_id;?>" name="asc" class="gdri-disabled" value="0"
2303
+                                <input type="radio" id="asc_no<?php echo $radio_id; ?>" name="asc" class="gdri-disabled" value="0"
2304 2304
                                     <?php if ($value == '0' || !$value) {
2305 2305
                                         echo 'checked';
2306 2306
                                     } ?>/>
2307
-                                <label onclick="show_hide_radio(this,'hide','cfs-asc-title');" for="asc_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2307
+                                <label onclick="show_hide_radio(this,'hide','cfs-asc-title');" for="asc_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2308 2308
 
2309 2309
                             </div>
2310 2310
 
2311 2311
                         </li>
2312 2312
 
2313
-                        <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'";}?>>
2314
-                            <?php $value = (isset($field_info->asc_title) && $field_info->asc_title) ? esc_attr($field_info->asc_title) : '';?>
2313
+                        <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'"; }?>>
2314
+                            <?php $value = (isset($field_info->asc_title) && $field_info->asc_title) ? esc_attr($field_info->asc_title) : ''; ?>
2315 2315
 
2316 2316
                             <label for="asc_title" class="gd-cf-tooltip-wrap">
2317 2317
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Ascending title', 'geodirectory'); ?>
@@ -2321,14 +2321,14 @@  discard block
 block discarded – undo
2321 2321
                             </label>
2322 2322
                             <div class="gd-cf-input-wrap">
2323 2323
 
2324
-                                <input type="text" name="asc_title" id="asc_title" value="<?php echo $value;?>" />
2324
+                                <input type="text" name="asc_title" id="asc_title" value="<?php echo $value; ?>" />
2325 2325
                             </div>
2326 2326
 
2327 2327
 
2328 2328
                         </li>
2329 2329
 
2330 2330
 
2331
-                        <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'";}?>>
2331
+                        <li class="cfs-asc-title" <?php if ((isset($field_info->sort_asc) && $field_info->sort_asc == '0') || !isset($field_info->sort_asc)) {echo "style='display:none;'"; }?>>
2332 2332
 
2333 2333
                             <label for="is_default" class="gd-cf-tooltip-wrap">
2334 2334
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Default sort?', 'geodirectory'); ?>
@@ -2339,7 +2339,7 @@  discard block
 block discarded – undo
2339 2339
                             <div class="gd-cf-input-wrap">
2340 2340
 
2341 2341
                                 <input type="radio" name="is_default"
2342
-                                       value="<?php echo $htmlvar_name; ?>_asc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name . '_asc') {
2342
+                                       value="<?php echo $htmlvar_name; ?>_asc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name.'_asc') {
2343 2343
                                     echo 'checked="checked"';
2344 2344
                                 } ?>/>
2345 2345
                             </div>
@@ -2349,7 +2349,7 @@  discard block
 block discarded – undo
2349 2349
 
2350 2350
 
2351 2351
                         <li>
2352
-                            <?php $value = (isset($field_info->sort_desc) && $field_info->sort_desc) ? $field_info->sort_desc : 0;?>
2352
+                            <?php $value = (isset($field_info->sort_desc) && $field_info->sort_desc) ? $field_info->sort_desc : 0; ?>
2353 2353
 
2354 2354
                             <label for="desc" class="gd-cf-tooltip-wrap">
2355 2355
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show Descending Sort (high to low)', 'geodirectory'); ?>
@@ -2359,24 +2359,24 @@  discard block
 block discarded – undo
2359 2359
                             </label>
2360 2360
                             <div class="gd-cf-input-wrap gd-switch">
2361 2361
 
2362
-                                <input type="radio" id="desc_yes<?php echo $radio_id;?>" name="desc" class="gdri-enabled"  value="1"
2362
+                                <input type="radio" id="desc_yes<?php echo $radio_id; ?>" name="desc" class="gdri-enabled"  value="1"
2363 2363
                                     <?php if ($value == '1') {
2364 2364
                                         echo 'checked';
2365 2365
                                     } ?>/>
2366
-                                <label onclick="show_hide_radio(this,'show','cfs-desc-title');" for="desc_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2366
+                                <label onclick="show_hide_radio(this,'show','cfs-desc-title');" for="desc_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2367 2367
 
2368
-                                <input type="radio" id="desc_no<?php echo $radio_id;?>" name="desc" class="gdri-disabled" value="0"
2368
+                                <input type="radio" id="desc_no<?php echo $radio_id; ?>" name="desc" class="gdri-disabled" value="0"
2369 2369
                                     <?php if ($value == '0' || !$value) {
2370 2370
                                         echo 'checked';
2371 2371
                                     } ?>/>
2372
-                                <label onclick="show_hide_radio(this,'hide','cfs-desc-title');" for="desc_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2372
+                                <label onclick="show_hide_radio(this,'hide','cfs-desc-title');" for="desc_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2373 2373
 
2374 2374
                             </div>
2375 2375
 
2376 2376
                         </li>
2377 2377
 
2378
-                        <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'";}?>>
2379
-                            <?php $value = (isset($field_info->desc_title) && $field_info->desc_title) ? esc_attr($field_info->desc_title) : '';?>
2378
+                        <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'"; }?>>
2379
+                            <?php $value = (isset($field_info->desc_title) && $field_info->desc_title) ? esc_attr($field_info->desc_title) : ''; ?>
2380 2380
 
2381 2381
                             <label for="desc_title" class="gd-cf-tooltip-wrap">
2382 2382
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Descending title', 'geodirectory'); ?>
@@ -2386,13 +2386,13 @@  discard block
 block discarded – undo
2386 2386
                             </label>
2387 2387
                             <div class="gd-cf-input-wrap">
2388 2388
 
2389
-                                <input type="text" name="desc_title" id="desc_title" value="<?php echo $value;?>" />
2389
+                                <input type="text" name="desc_title" id="desc_title" value="<?php echo $value; ?>" />
2390 2390
                             </div>
2391 2391
 
2392 2392
 
2393 2393
                         </li>
2394 2394
 
2395
-                        <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'";}?>>
2395
+                        <li class="cfs-desc-title" <?php if ((isset($field_info->sort_desc) && $field_info->sort_desc == '0') || !isset($field_info->sort_desc)) {echo "style='display:none;'"; }?>>
2396 2396
 
2397 2397
                             <label for="is_default" class="gd-cf-tooltip-wrap">
2398 2398
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Default sort?', 'geodirectory'); ?>
@@ -2403,7 +2403,7 @@  discard block
 block discarded – undo
2403 2403
                             <div class="gd-cf-input-wrap">
2404 2404
 
2405 2405
                                 <input type="radio" name="is_default"
2406
-                                       value="<?php echo $htmlvar_name; ?>_desc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name . '_desc') {
2406
+                                       value="<?php echo $htmlvar_name; ?>_desc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name.'_desc') {
2407 2407
                                     echo 'checked="checked"';
2408 2408
                                 } ?>/>
2409 2409
                             </div>
@@ -2428,14 +2428,14 @@  discard block
 block discarded – undo
2428 2428
                             </label>
2429 2429
                             <div class="gd-cf-input-wrap">
2430 2430
 
2431
-                                <input type="text" name="site_title" id="site_title" value="<?php echo $value;?>" />
2431
+                                <input type="text" name="site_title" id="site_title" value="<?php echo $value; ?>" />
2432 2432
                             </div>
2433 2433
 
2434 2434
 
2435 2435
                         </li>
2436 2436
 
2437 2437
                         <li>
2438
-                            <?php $value = (isset($field_info->is_default) && $field_info->is_default) ? esc_attr($field_info->is_default) : '';?>
2438
+                            <?php $value = (isset($field_info->is_default) && $field_info->is_default) ? esc_attr($field_info->is_default) : ''; ?>
2439 2439
 
2440 2440
                             <label for="is_default" class="gd-cf-tooltip-wrap">
2441 2441
                                 <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Default sort?', 'geodirectory'); ?>
@@ -2459,7 +2459,7 @@  discard block
 block discarded – undo
2459 2459
 
2460 2460
 
2461 2461
                     <li>
2462
-                        <?php $value = (isset($field_info->is_active) && $field_info->is_active) ? $field_info->is_active: 0;?>
2462
+                        <?php $value = (isset($field_info->is_active) && $field_info->is_active) ? $field_info->is_active : 0; ?>
2463 2463
 
2464 2464
                         <label for="is_active" class="gd-cf-tooltip-wrap">
2465 2465
                             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Is active', 'geodirectory'); ?>
@@ -2469,17 +2469,17 @@  discard block
 block discarded – undo
2469 2469
                         </label>
2470 2470
                         <div class="gd-cf-input-wrap gd-switch">
2471 2471
 
2472
-                            <input type="radio" id="is_active_yes<?php echo $radio_id;?>" name="is_active" class="gdri-enabled"  value="1"
2472
+                            <input type="radio" id="is_active_yes<?php echo $radio_id; ?>" name="is_active" class="gdri-enabled"  value="1"
2473 2473
                                 <?php if ($value == '1') {
2474 2474
                                     echo 'checked';
2475 2475
                                 } ?>/>
2476
-                            <label for="is_active_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2476
+                            <label for="is_active_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2477 2477
 
2478
-                            <input type="radio" id="is_active_no<?php echo $radio_id;?>" name="is_active" class="gdri-disabled" value="0"
2478
+                            <input type="radio" id="is_active_no<?php echo $radio_id; ?>" name="is_active" class="gdri-disabled" value="0"
2479 2479
                                 <?php if ($value == '0' || !$value) {
2480 2480
                                     echo 'checked';
2481 2481
                                 } ?>/>
2482
-                            <label for="is_active_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2482
+                            <label for="is_active_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2483 2483
 
2484 2484
                         </div>
2485 2485
 
@@ -2500,10 +2500,10 @@  discard block
 block discarded – undo
2500 2500
                             <h3></h3>
2501 2501
                         </label>
2502 2502
                         <div class="gd-cf-input-wrap">
2503
-                            <input type="button" class="button button-primary" name="save" id="save" value="<?php echo esc_attr(__('Save','geodirectory'));?>"
2503
+                            <input type="button" class="button button-primary" name="save" id="save" value="<?php echo esc_attr(__('Save', 'geodirectory')); ?>"
2504 2504
                                    onclick="save_sort_field('<?php echo esc_attr($result_str); ?>')"/>
2505
-                                <a href="javascript:void(0)"><input type="button" name="delete" value="<?php echo esc_attr(__('Delete','geodirectory'));?>"
2506
-                                                                    onclick="delete_sort_field('<?php echo $result_str;?>', '<?php echo $nonce;?>', this)"
2505
+                                <a href="javascript:void(0)"><input type="button" name="delete" value="<?php echo esc_attr(__('Delete', 'geodirectory')); ?>"
2506
+                                                                    onclick="delete_sort_field('<?php echo $result_str; ?>', '<?php echo $nonce; ?>', this)"
2507 2507
                                                                     class="button"/></a>
2508 2508
                         </div>
2509 2509
                     </li>
@@ -2538,7 +2538,7 @@  discard block
 block discarded – undo
2538 2538
         if (!$package_id || !$field_name || !$post_type) {
2539 2539
             return true;
2540 2540
         }
2541
-        $sql = $wpdb->prepare("SELECT id FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE is_active='1' AND htmlvar_name=%s AND post_type=%s AND FIND_IN_SET(%s, packages)", array($field_name, $post_type, (int)$package_id));
2541
+        $sql = $wpdb->prepare("SELECT id FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE is_active='1' AND htmlvar_name=%s AND post_type=%s AND FIND_IN_SET(%s, packages)", array($field_name, $post_type, (int) $package_id));
2542 2542
 
2543 2543
         if ($wpdb->get_var($sql)) {
2544 2544
             return true;
@@ -2661,13 +2661,13 @@  discard block
 block discarded – undo
2661 2661
 }
2662 2662
 
2663 2663
 
2664
-function geodir_cfa_data_type_text($output,$result_str,$cf,$field_info){
2664
+function geodir_cfa_data_type_text($output, $result_str, $cf, $field_info) {
2665 2665
     ob_start();
2666 2666
 
2667 2667
     $dt_value = '';
2668 2668
     if (isset($field_info->data_type)) {
2669 2669
         $dt_value  = esc_attr($field_info->data_type);
2670
-    }elseif(isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']){
2670
+    }elseif (isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']) {
2671 2671
         $dt_value  = $cf['defaults']['data_type'];
2672 2672
     }
2673 2673
     ?>
@@ -2678,15 +2678,15 @@  discard block
 block discarded – undo
2678 2678
             <select name="data_type" id="data_type"
2679 2679
                     onchange="javascript:gd_data_type_changed(this, '<?php echo $result_str; ?>');">
2680 2680
                 <option
2681
-                    value="XVARCHAR" <?php if ($dt_value  == 'VARCHAR') {
2681
+                    value="XVARCHAR" <?php if ($dt_value == 'VARCHAR') {
2682 2682
                     echo 'selected="selected"';
2683 2683
                 } ?>><?php _e('CHARACTER', 'geodirectory'); ?></option>
2684 2684
                 <option
2685
-                    value="INT" <?php if ($dt_value   == 'INT') {
2685
+                    value="INT" <?php if ($dt_value == 'INT') {
2686 2686
                     echo 'selected="selected"';
2687 2687
                 } ?>><?php _e('NUMBER', 'geodirectory'); ?></option>
2688 2688
                 <option
2689
-                    value="FLOAT" <?php if ($dt_value   == 'FLOAT') {
2689
+                    value="FLOAT" <?php if ($dt_value == 'FLOAT') {
2690 2690
                     echo 'selected="selected"';
2691 2691
                 } ?>><?php _e('DECIMAL', 'geodirectory'); ?></option>
2692 2692
             </select>
@@ -2699,13 +2699,13 @@  discard block
 block discarded – undo
2699 2699
     $value = '';
2700 2700
     if (isset($field_info->decimal_point)) {
2701 2701
         $value = esc_attr($field_info->decimal_point);
2702
-    }elseif(isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']){
2702
+    }elseif (isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']) {
2703 2703
         $value = $cf['defaults']['decimal_point'];
2704 2704
     }
2705 2705
     ?>
2706 2706
 
2707 2707
     <li class="decimal-point-wrapper"
2708
-        style="<?php echo ($dt_value  == 'FLOAT') ? '' : 'display:none' ?>">
2708
+        style="<?php echo ($dt_value == 'FLOAT') ? '' : 'display:none' ?>">
2709 2709
         <label for="decimal_point"><?php _e('Select decimal point :', 'geodirectory'); ?></label>
2710 2710
         <div class="gd-cf-input-wrap">
2711 2711
             <select name="decimal_point" id="decimal_point">
@@ -2723,41 +2723,41 @@  discard block
 block discarded – undo
2723 2723
     $output = ob_get_clean();
2724 2724
     return $output;
2725 2725
 }
2726
-add_filter('geodir_cfa_data_type_text','geodir_cfa_data_type_text',10,4);
2726
+add_filter('geodir_cfa_data_type_text', 'geodir_cfa_data_type_text', 10, 4);
2727 2727
 
2728 2728
 // htmlvar not needed for fieldset and taxonomy
2729
-add_filter('geodir_cfa_htmlvar_name_fieldset','__return_empty_string',10,4);
2730
-add_filter('geodir_cfa_htmlvar_name_taxonomy','__return_empty_string',10,4);
2729
+add_filter('geodir_cfa_htmlvar_name_fieldset', '__return_empty_string', 10, 4);
2730
+add_filter('geodir_cfa_htmlvar_name_taxonomy', '__return_empty_string', 10, 4);
2731 2731
 
2732 2732
 
2733 2733
 // default_value not needed for textarea, html, file, fieldset, taxonomy, address
2734
-add_filter('geodir_cfa_default_value_file','__return_empty_string',10,4);
2735
-add_filter('geodir_cfa_default_value_taxonomy','__return_empty_string',10,4);
2736
-add_filter('geodir_cfa_default_value_address','__return_empty_string',10,4);
2737
-add_filter('geodir_cfa_default_value_fieldset','__return_empty_string',10,4);
2734
+add_filter('geodir_cfa_default_value_file', '__return_empty_string', 10, 4);
2735
+add_filter('geodir_cfa_default_value_taxonomy', '__return_empty_string', 10, 4);
2736
+add_filter('geodir_cfa_default_value_address', '__return_empty_string', 10, 4);
2737
+add_filter('geodir_cfa_default_value_fieldset', '__return_empty_string', 10, 4);
2738 2738
 
2739 2739
 // is_required not needed for fieldset
2740
-add_filter('geodir_cfa_is_required_fieldset','__return_empty_string',10,4);
2741
-add_filter('geodir_cfa_required_msg_fieldset','__return_empty_string',10,4);
2740
+add_filter('geodir_cfa_is_required_fieldset', '__return_empty_string', 10, 4);
2741
+add_filter('geodir_cfa_required_msg_fieldset', '__return_empty_string', 10, 4);
2742 2742
 
2743 2743
 // field_icon not needed for fieldset
2744
-add_filter('geodir_cfa_field_icon_fieldset','__return_empty_string',10,4);
2745
-add_filter('geodir_cfa_css_class_fieldset','__return_empty_string',10,4);
2744
+add_filter('geodir_cfa_field_icon_fieldset', '__return_empty_string', 10, 4);
2745
+add_filter('geodir_cfa_css_class_fieldset', '__return_empty_string', 10, 4);
2746 2746
 
2747 2747
 // cat_sort not needed for some fields
2748
-add_filter('geodir_cfa_cat_sort_html','__return_empty_string',10,4);
2749
-add_filter('geodir_cfa_cat_sort_file','__return_empty_string',10,4);
2750
-add_filter('geodir_cfa_cat_sort_url','__return_empty_string',10,4);
2751
-add_filter('geodir_cfa_cat_sort_fieldset','__return_empty_string',10,4);
2752
-add_filter('geodir_cfa_cat_sort_multiselect','__return_empty_string',10,4);
2753
-add_filter('geodir_cfa_cat_sort_textarea','__return_empty_string',10,4);
2754
-add_filter('geodir_cfa_cat_sort_taxonomy','__return_empty_string',10,4);
2755
-add_filter('geodir_cfa_cat_sort_address','__return_empty_string',10,4);
2748
+add_filter('geodir_cfa_cat_sort_html', '__return_empty_string', 10, 4);
2749
+add_filter('geodir_cfa_cat_sort_file', '__return_empty_string', 10, 4);
2750
+add_filter('geodir_cfa_cat_sort_url', '__return_empty_string', 10, 4);
2751
+add_filter('geodir_cfa_cat_sort_fieldset', '__return_empty_string', 10, 4);
2752
+add_filter('geodir_cfa_cat_sort_multiselect', '__return_empty_string', 10, 4);
2753
+add_filter('geodir_cfa_cat_sort_textarea', '__return_empty_string', 10, 4);
2754
+add_filter('geodir_cfa_cat_sort_taxonomy', '__return_empty_string', 10, 4);
2755
+add_filter('geodir_cfa_cat_sort_address', '__return_empty_string', 10, 4);
2756 2756
 
2757 2757
 
2758 2758
 
2759
-function geodir_cfa_advanced_editor_geodir_special_offers($output,$result_str,$cf,$field_info){
2760
-    if($field_info->htmlvar_name != 'geodir_special_offers'){return '';}
2759
+function geodir_cfa_advanced_editor_geodir_special_offers($output, $result_str, $cf, $field_info) {
2760
+    if ($field_info->htmlvar_name != 'geodir_special_offers') {return ''; }
2761 2761
     ob_start();
2762 2762
     ?>
2763 2763
     <li>
@@ -2788,16 +2788,16 @@  discard block
 block discarded – undo
2788 2788
     $output = ob_get_clean();
2789 2789
     return $output;
2790 2790
 }
2791
-add_filter('geodir_cfa_advanced_editor_textarea','geodir_cfa_advanced_editor_geodir_special_offers',10,4);
2791
+add_filter('geodir_cfa_advanced_editor_textarea', 'geodir_cfa_advanced_editor_geodir_special_offers', 10, 4);
2792 2792
 
2793 2793
 
2794
-function geodir_cfa_validation_pattern_text($output,$result_str,$cf,$field_info){
2794
+function geodir_cfa_validation_pattern_text($output, $result_str, $cf, $field_info) {
2795 2795
     ob_start();
2796 2796
 
2797 2797
     $value = '';
2798 2798
     if (isset($field_info->validation_pattern)) {
2799 2799
         $value = esc_attr($field_info->validation_pattern);
2800
-    }elseif(isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']){
2800
+    }elseif (isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']) {
2801 2801
         $value = esc_attr($cf['defaults']['validation_pattern']);
2802 2802
     }
2803 2803
     ?>
@@ -2817,7 +2817,7 @@  discard block
 block discarded – undo
2817 2817
     $value = '';
2818 2818
     if (isset($field_info->validation_msg)) {
2819 2819
         $value = esc_attr($field_info->validation_msg);
2820
-    }elseif(isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']){
2820
+    }elseif (isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']) {
2821 2821
         $value = esc_attr($cf['defaults']['validation_msg']);
2822 2822
     }
2823 2823
     ?>
@@ -2838,10 +2838,10 @@  discard block
 block discarded – undo
2838 2838
     $output = ob_get_clean();
2839 2839
     return $output;
2840 2840
 }
2841
-add_filter('geodir_cfa_validation_pattern_text','geodir_cfa_validation_pattern_text',10,4);
2841
+add_filter('geodir_cfa_validation_pattern_text', 'geodir_cfa_validation_pattern_text', 10, 4);
2842 2842
 
2843 2843
 
2844
-function geodir_cfa_htmlvar_name_taxonomy($output,$result_str,$cf,$field_info){
2844
+function geodir_cfa_htmlvar_name_taxonomy($output, $result_str, $cf, $field_info) {
2845 2845
     ob_start();
2846 2846
     global $post_type;
2847 2847
 
@@ -2866,7 +2866,7 @@  discard block
 block discarded – undo
2866 2866
                     ?>
2867 2867
                     <option <?php if (isset($field_info->htmlvar_name) && $field_info->htmlvar_name == $gd_tax) {
2868 2868
                         echo 'selected="selected"';
2869
-                    }?> id="<?php echo $gd_tax;?>"><?php echo $gd_tax;?></option><?php
2869
+                    }?> id="<?php echo $gd_tax; ?>"><?php echo $gd_tax; ?></option><?php
2870 2870
                 }
2871 2871
                 ?>
2872 2872
             </select>
@@ -2877,7 +2877,7 @@  discard block
 block discarded – undo
2877 2877
         <label for="cat_display_type" class="gd-cf-tooltip-wrap">
2878 2878
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Category display type :', 'geodirectory'); ?>
2879 2879
             <div class="gdcf-tooltip">
2880
-                <?php _e('Show categories list as select, multiselect, checkbox or radio', 'geodirectory');?>
2880
+                <?php _e('Show categories list as select, multiselect, checkbox or radio', 'geodirectory'); ?>
2881 2881
             </div>
2882 2882
         </label>
2883 2883
         <div class="gd-cf-input-wrap">
@@ -2885,19 +2885,19 @@  discard block
 block discarded – undo
2885 2885
             <select name="cat_display_type" id="cat_display_type">
2886 2886
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'ajax_chained') {
2887 2887
                     echo 'selected="selected"';
2888
-                }?> value="ajax_chained"><?php _e('Ajax Chained', 'geodirectory');?></option>
2888
+                }?> value="ajax_chained"><?php _e('Ajax Chained', 'geodirectory'); ?></option>
2889 2889
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'select') {
2890 2890
                     echo 'selected="selected"';
2891
-                }?> value="select"><?php _e('Select', 'geodirectory');?></option>
2891
+                }?> value="select"><?php _e('Select', 'geodirectory'); ?></option>
2892 2892
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'multiselect') {
2893 2893
                     echo 'selected="selected"';
2894
-                }?> value="multiselect"><?php _e('Multiselect', 'geodirectory');?></option>
2894
+                }?> value="multiselect"><?php _e('Multiselect', 'geodirectory'); ?></option>
2895 2895
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'checkbox') {
2896 2896
                     echo 'selected="selected"';
2897
-                }?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option>
2897
+                }?> value="checkbox"><?php _e('Checkbox', 'geodirectory'); ?></option>
2898 2898
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'radio') {
2899 2899
                     echo 'selected="selected"';
2900
-                }?> value="radio"><?php _e('Radio', 'geodirectory');?></option>
2900
+                }?> value="radio"><?php _e('Radio', 'geodirectory'); ?></option>
2901 2901
             </select>
2902 2902
         </div>
2903 2903
     </li>
@@ -2906,10 +2906,10 @@  discard block
 block discarded – undo
2906 2906
     $output = ob_get_clean();
2907 2907
     return $output;
2908 2908
 }
2909
-add_filter('geodir_cfa_htmlvar_name_taxonomy','geodir_cfa_htmlvar_name_taxonomy',10,4);
2909
+add_filter('geodir_cfa_htmlvar_name_taxonomy', 'geodir_cfa_htmlvar_name_taxonomy', 10, 4);
2910 2910
 
2911 2911
 
2912
-function geodir_cfa_extra_fields_address($output,$result_str,$cf,$field_info){
2912
+function geodir_cfa_extra_fields_address($output, $result_str, $cf, $field_info) {
2913 2913
 
2914 2914
     ob_start();
2915 2915
     if (isset($field_info->extra_fields) && $field_info->extra_fields != '') {
@@ -2932,32 +2932,32 @@  discard block
 block discarded – undo
2932 2932
         <label for="show_zip" class="gd-cf-tooltip-wrap">
2933 2933
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display zip/post code :', 'geodirectory'); ?>
2934 2934
             <div class="gdcf-tooltip">
2935
-                <?php _e('Select if you want to show zip/post code field in address section.', 'geodirectory');?>
2935
+                <?php _e('Select if you want to show zip/post code field in address section.', 'geodirectory'); ?>
2936 2936
             </div>
2937 2937
         </label>
2938 2938
         <div class="gd-cf-input-wrap gd-switch">
2939 2939
 
2940
-            <input type="radio" id="show_zip_yes<?php echo $radio_id;?>" name="extra[show_zip]" class="gdri-enabled"  value="1"
2940
+            <input type="radio" id="show_zip_yes<?php echo $radio_id; ?>" name="extra[show_zip]" class="gdri-enabled"  value="1"
2941 2941
                 <?php if (isset($address['show_zip']) && $address['show_zip'] == '1') {
2942 2942
                     echo 'checked';
2943 2943
                 } ?>/>
2944
-            <label onclick="show_hide_radio(this,'show','cf-zip-lable');" for="show_zip_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2944
+            <label onclick="show_hide_radio(this,'show','cf-zip-lable');" for="show_zip_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2945 2945
 
2946
-            <input type="radio" id="show_zip_no<?php echo $radio_id;?>" name="extra[show_zip]" class="gdri-disabled" value="0"
2946
+            <input type="radio" id="show_zip_no<?php echo $radio_id; ?>" name="extra[show_zip]" class="gdri-disabled" value="0"
2947 2947
                 <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) {
2948 2948
                     echo 'checked';
2949 2949
                 } ?>/>
2950
-            <label onclick="show_hide_radio(this,'hide','cf-zip-lable');" for="show_zip_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2950
+            <label onclick="show_hide_radio(this,'hide','cf-zip-lable');" for="show_zip_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2951 2951
 
2952 2952
 
2953 2953
         </div>
2954 2954
     </li>
2955 2955
 
2956
-    <li class="cf-zip-lable"  <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) {echo "style='display:none;'";}?> >
2956
+    <li class="cf-zip-lable"  <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) {echo "style='display:none;'"; }?> >
2957 2957
         <label for="zip_lable" class="gd-cf-tooltip-wrap">
2958 2958
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Zip/Post code label :', 'geodirectory'); ?>
2959 2959
             <div class="gdcf-tooltip">
2960
-                <?php _e('Enter zip/post code field label in address section.', 'geodirectory');?>
2960
+                <?php _e('Enter zip/post code field label in address section.', 'geodirectory'); ?>
2961 2961
             </div>
2962 2962
         </label>
2963 2963
         <div class="gd-cf-input-wrap">
@@ -2975,7 +2975,7 @@  discard block
 block discarded – undo
2975 2975
         <label for="map_lable" class="gd-cf-tooltip-wrap">
2976 2976
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Map button label :', 'geodirectory'); ?>
2977 2977
             <div class="gdcf-tooltip">
2978
-                <?php _e('Enter text for `set address on map` button in address section.', 'geodirectory');?>
2978
+                <?php _e('Enter text for `set address on map` button in address section.', 'geodirectory'); ?>
2979 2979
             </div>
2980 2980
         </label>
2981 2981
         <div class="gd-cf-input-wrap">
@@ -2990,22 +2990,22 @@  discard block
 block discarded – undo
2990 2990
         <label for="show_mapzoom" class="gd-cf-tooltip-wrap">
2991 2991
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Use user zoom level:', 'geodirectory'); ?>
2992 2992
             <div class="gdcf-tooltip">
2993
-                <?php _e('Do you want to use the user defined map zoom level from the add listing page?', 'geodirectory');?>
2993
+                <?php _e('Do you want to use the user defined map zoom level from the add listing page?', 'geodirectory'); ?>
2994 2994
             </div>
2995 2995
         </label>
2996 2996
         <div class="gd-cf-input-wrap gd-switch">
2997 2997
 
2998
-            <input type="radio" id="show_mapzoom_yes<?php echo $radio_id;?>" name="extra[show_mapzoom]" class="gdri-enabled"  value="1"
2998
+            <input type="radio" id="show_mapzoom_yes<?php echo $radio_id; ?>" name="extra[show_mapzoom]" class="gdri-enabled"  value="1"
2999 2999
                 <?php if (isset($address['show_mapzoom']) && $address['show_mapzoom'] == '1') {
3000 3000
                     echo 'checked';
3001 3001
                 } ?>/>
3002
-            <label for="show_mapzoom_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3002
+            <label for="show_mapzoom_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3003 3003
 
3004
-            <input type="radio" id="show_mapzoom_no<?php echo $radio_id;?>" name="extra[show_mapzoom]" class="gdri-disabled" value="0"
3004
+            <input type="radio" id="show_mapzoom_no<?php echo $radio_id; ?>" name="extra[show_mapzoom]" class="gdri-disabled" value="0"
3005 3005
                 <?php if ((isset($address['show_mapzoom']) && !$address['show_mapzoom']) || !isset($address['show_mapzoom'])) {
3006 3006
                     echo 'checked';
3007 3007
                 } ?>/>
3008
-            <label for="show_mapzoom_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3008
+            <label for="show_mapzoom_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3009 3009
 
3010 3010
         </div>
3011 3011
     </li>
@@ -3014,22 +3014,22 @@  discard block
 block discarded – undo
3014 3014
         <label for="show_mapview" class="gd-cf-tooltip-wrap">
3015 3015
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display map view:', 'geodirectory'); ?>
3016 3016
             <div class="gdcf-tooltip">
3017
-                <?php _e('Select if you want to `set default map` options in address section. ( Satellite Map, Hybrid Map, Terrain Map)', 'geodirectory');?>
3017
+                <?php _e('Select if you want to `set default map` options in address section. ( Satellite Map, Hybrid Map, Terrain Map)', 'geodirectory'); ?>
3018 3018
             </div>
3019 3019
         </label>
3020 3020
         <div class="gd-cf-input-wrap gd-switch">
3021 3021
 
3022
-            <input type="radio" id="show_mapview_yes<?php echo $radio_id;?>" name="extra[show_mapview]" class="gdri-enabled"  value="1"
3022
+            <input type="radio" id="show_mapview_yes<?php echo $radio_id; ?>" name="extra[show_mapview]" class="gdri-enabled"  value="1"
3023 3023
                 <?php if (isset($address['show_mapview']) && $address['show_mapview'] == '1') {
3024 3024
                     echo 'checked';
3025 3025
                 } ?>/>
3026
-            <label for="show_mapview_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3026
+            <label for="show_mapview_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3027 3027
 
3028
-            <input type="radio" id="show_mapview_no<?php echo $radio_id;?>" name="extra[show_mapview]" class="gdri-disabled" value="0"
3028
+            <input type="radio" id="show_mapview_no<?php echo $radio_id; ?>" name="extra[show_mapview]" class="gdri-disabled" value="0"
3029 3029
                 <?php if ((isset($address['show_mapview']) && !$address['show_mapview']) || !isset($address['show_mapview'])) {
3030 3030
                     echo 'checked';
3031 3031
                 } ?>/>
3032
-            <label for="show_mapview_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3032
+            <label for="show_mapview_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3033 3033
 
3034 3034
         </div>
3035 3035
     </li>
@@ -3039,7 +3039,7 @@  discard block
 block discarded – undo
3039 3039
         <label for="mapview_lable" class="gd-cf-tooltip-wrap">
3040 3040
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Map view label:', 'geodirectory'); ?>
3041 3041
             <div class="gdcf-tooltip">
3042
-                <?php _e('Enter mapview field label in address section.', 'geodirectory');?>
3042
+                <?php _e('Enter mapview field label in address section.', 'geodirectory'); ?>
3043 3043
             </div>
3044 3044
         </label>
3045 3045
         <div class="gd-cf-input-wrap">
@@ -3053,22 +3053,22 @@  discard block
 block discarded – undo
3053 3053
         <label for="show_latlng" class="gd-cf-tooltip-wrap">
3054 3054
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show latitude and longitude', 'geodirectory'); ?>
3055 3055
             <div class="gdcf-tooltip">
3056
-                <?php _e('This will show/hide the longitude fields in the address section add listing form.', 'geodirectory');?>
3056
+                <?php _e('This will show/hide the longitude fields in the address section add listing form.', 'geodirectory'); ?>
3057 3057
             </div>
3058 3058
         </label>
3059 3059
         <div class="gd-cf-input-wrap gd-switch">
3060 3060
 
3061
-            <input type="radio" id="show_latlng_yes<?php echo $radio_id;?>" name="extra[show_latlng]" class="gdri-enabled"  value="1"
3061
+            <input type="radio" id="show_latlng_yes<?php echo $radio_id; ?>" name="extra[show_latlng]" class="gdri-enabled"  value="1"
3062 3062
                 <?php if (isset($address['show_latlng']) && $address['show_latlng'] == '1') {
3063 3063
                     echo 'checked';
3064 3064
                 } ?>/>
3065
-            <label for="show_latlng_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3065
+            <label for="show_latlng_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3066 3066
 
3067
-            <input type="radio" id="show_latlng_no<?php echo $radio_id;?>" name="extra[show_latlng]" class="gdri-disabled" value="0"
3067
+            <input type="radio" id="show_latlng_no<?php echo $radio_id; ?>" name="extra[show_latlng]" class="gdri-disabled" value="0"
3068 3068
                 <?php if ((isset($address['show_latlng']) && !$address['show_latlng']) || !isset($address['show_latlng'])) {
3069 3069
                     echo 'checked';
3070 3070
                 } ?>/>
3071
-            <label for="show_latlng_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3071
+            <label for="show_latlng_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3072 3072
 
3073 3073
         </div>
3074 3074
     </li>
@@ -3077,17 +3077,17 @@  discard block
 block discarded – undo
3077 3077
     $html = ob_get_clean();
3078 3078
     return $output.$html;
3079 3079
 }
3080
-add_filter('geodir_cfa_extra_fields_address','geodir_cfa_extra_fields_address',10,4);
3080
+add_filter('geodir_cfa_extra_fields_address', 'geodir_cfa_extra_fields_address', 10, 4);
3081 3081
 
3082 3082
 
3083
-function geodir_cfa_extra_fields_multiselect($output,$result_str,$cf,$field_info){
3083
+function geodir_cfa_extra_fields_multiselect($output, $result_str, $cf, $field_info) {
3084 3084
     ob_start();
3085 3085
     ?>
3086 3086
     <li>
3087 3087
         <label for="multi_display_type" class="gd-cf-tooltip-wrap">
3088 3088
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Multiselect display type :', 'geodirectory'); ?>
3089 3089
             <div class="gdcf-tooltip">
3090
-                <?php _e('Show multiselect list as multiselect,checkbox or radio.', 'geodirectory');?>
3090
+                <?php _e('Show multiselect list as multiselect,checkbox or radio.', 'geodirectory'); ?>
3091 3091
             </div>
3092 3092
         </label>
3093 3093
         <div class="gd-cf-input-wrap">
@@ -3095,13 +3095,13 @@  discard block
 block discarded – undo
3095 3095
             <select name="multi_display_type" id="multi_display_type">
3096 3096
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'select') {
3097 3097
                     echo 'selected="selected"';
3098
-                }?> value="select"><?php _e('Select', 'geodirectory');?></option>
3098
+                }?> value="select"><?php _e('Select', 'geodirectory'); ?></option>
3099 3099
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'checkbox') {
3100 3100
                     echo 'selected="selected"';
3101
-                }?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option>
3101
+                }?> value="checkbox"><?php _e('Checkbox', 'geodirectory'); ?></option>
3102 3102
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'radio') {
3103 3103
                     echo 'selected="selected"';
3104
-                }?> value="radio"><?php _e('Radio', 'geodirectory');?></option>
3104
+                }?> value="radio"><?php _e('Radio', 'geodirectory'); ?></option>
3105 3105
             </select>
3106 3106
 
3107 3107
             <br/>
@@ -3112,17 +3112,17 @@  discard block
 block discarded – undo
3112 3112
     $html = ob_get_clean();
3113 3113
     return $output.$html;
3114 3114
 }
3115
-add_filter('geodir_cfa_extra_fields_multiselect','geodir_cfa_extra_fields_multiselect',10,4);
3115
+add_filter('geodir_cfa_extra_fields_multiselect', 'geodir_cfa_extra_fields_multiselect', 10, 4);
3116 3116
 
3117 3117
 
3118
-function geodir_cfa_extra_fields_smr($output,$result_str,$cf,$field_info){
3118
+function geodir_cfa_extra_fields_smr($output, $result_str, $cf, $field_info) {
3119 3119
 
3120 3120
     ob_start();
3121 3121
 
3122 3122
     $value = '';
3123 3123
     if (isset($field_info->option_values)) {
3124 3124
         $value = esc_attr($field_info->option_values);
3125
-    }elseif(isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']){
3125
+    }elseif (isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']) {
3126 3126
         $value = esc_attr($cf['defaults']['option_values']);
3127 3127
     }
3128 3128
 
@@ -3132,11 +3132,11 @@  discard block
 block discarded – undo
3132 3132
         <label for="option_values" class="gd-cf-tooltip-wrap">
3133 3133
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Option Values :', 'geodirectory'); ?>
3134 3134
             <div class="gdcf-tooltip">
3135
-                <span><?php _e('Option Values should be separated by comma.', 'geodirectory');?></span>
3135
+                <span><?php _e('Option Values should be separated by comma.', 'geodirectory'); ?></span>
3136 3136
                 <br/>
3137
-                <small><span><?php _e('If using for a "tick filter" place a / and then either a 1 for true or 0 for false', 'geodirectory');?></span>
3137
+                <small><span><?php _e('If using for a "tick filter" place a / and then either a 1 for true or 0 for false', 'geodirectory'); ?></span>
3138 3138
                     <br/>
3139
-                    <span><?php _e('eg: "No Dogs Allowed/0,Dogs Allowed/1" (Select only, not multiselect)', 'geodirectory');?></span>
3139
+                    <span><?php _e('eg: "No Dogs Allowed/0,Dogs Allowed/1" (Select only, not multiselect)', 'geodirectory'); ?></span>
3140 3140
                     <?php if ($field_type == 'multiselect' || $field_type == 'select') { ?>
3141 3141
                         <br/>
3142 3142
                         <span><?php _e('- If using OPTGROUP tag to grouping options, use "{optgroup}OPTGROUP-LABEL|OPTION-1,OPTION-2{/optgroup}"', 'geodirectory'); ?></span>
@@ -3147,7 +3147,7 @@  discard block
 block discarded – undo
3147 3147
         </label>
3148 3148
         <div class="gd-cf-input-wrap">
3149 3149
             <input type="text" name="option_values" id="option_values"
3150
-                   value="<?php echo $value;?>"/>
3150
+                   value="<?php echo $value; ?>"/>
3151 3151
             <br/>
3152 3152
 
3153 3153
         </div>
@@ -3157,12 +3157,12 @@  discard block
 block discarded – undo
3157 3157
     $html = ob_get_clean();
3158 3158
     return $output.$html;
3159 3159
 }
3160
-add_filter('geodir_cfa_extra_fields_multiselect','geodir_cfa_extra_fields_smr',10,4);
3161
-add_filter('geodir_cfa_extra_fields_select','geodir_cfa_extra_fields_smr',10,4);
3162
-add_filter('geodir_cfa_extra_fields_radio','geodir_cfa_extra_fields_smr',10,4);
3160
+add_filter('geodir_cfa_extra_fields_multiselect', 'geodir_cfa_extra_fields_smr', 10, 4);
3161
+add_filter('geodir_cfa_extra_fields_select', 'geodir_cfa_extra_fields_smr', 10, 4);
3162
+add_filter('geodir_cfa_extra_fields_radio', 'geodir_cfa_extra_fields_smr', 10, 4);
3163 3163
 
3164 3164
 
3165
-function geodir_cfa_extra_fields_datepicker($output,$result_str,$cf,$field_info){
3165
+function geodir_cfa_extra_fields_datepicker($output, $result_str, $cf, $field_info) {
3166 3166
     ob_start();
3167 3167
     $extra = array();
3168 3168
     if (isset($field_info->extra_fields) && $field_info->extra_fields != '') {
@@ -3173,7 +3173,7 @@  discard block
 block discarded – undo
3173 3173
         <label for="date_format" class="gd-cf-tooltip-wrap">
3174 3174
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Date Format :', 'geodirectory'); ?>
3175 3175
             <div class="gdcf-tooltip">
3176
-                <?php _e('Select the date format.', 'geodirectory');?>
3176
+                <?php _e('Select the date format.', 'geodirectory'); ?>
3177 3177
             </div>
3178 3178
         </label>
3179 3179
         <div class="gd-cf-input-wrap" style="overflow:inherit;">
@@ -3193,16 +3193,16 @@  discard block
 block discarded – undo
3193 3193
              * @since 1.6.5
3194 3194
              * @param array $date_formats The PHP date format array.
3195 3195
              */
3196
-            $date_formats = apply_filters('geodir_date_formats',$date_formats);
3196
+            $date_formats = apply_filters('geodir_date_formats', $date_formats);
3197 3197
             ?>
3198 3198
             <select name="extra[date_format]" id="date_format">
3199 3199
                 <?php
3200
-                foreach($date_formats as $format){
3200
+                foreach ($date_formats as $format) {
3201 3201
                     $selected = '';
3202
-                    if(!empty($extra) && esc_attr($extra['date_format'])==$format){
3202
+                    if (!empty($extra) && esc_attr($extra['date_format']) == $format) {
3203 3203
                         $selected = "selected='selected'";
3204 3204
                     }
3205
-                    echo "<option $selected value='$format'>$format       (".date_i18n( $format, time()).")</option>";
3205
+                    echo "<option $selected value='$format'>$format       (".date_i18n($format, time()).")</option>";
3206 3206
                 }
3207 3207
                 ?>
3208 3208
             </select>
@@ -3214,10 +3214,10 @@  discard block
 block discarded – undo
3214 3214
     $html = ob_get_clean();
3215 3215
     return $output.$html;
3216 3216
 }
3217
-add_filter('geodir_cfa_extra_fields_datepicker','geodir_cfa_extra_fields_datepicker',10,4);
3217
+add_filter('geodir_cfa_extra_fields_datepicker', 'geodir_cfa_extra_fields_datepicker', 10, 4);
3218 3218
 
3219 3219
 
3220
-function geodir_cfa_extra_fields_file($output,$result_str,$cf,$field_info){
3220
+function geodir_cfa_extra_fields_file($output, $result_str, $cf, $field_info) {
3221 3221
     ob_start();
3222 3222
     $allowed_file_types = geodir_allowed_mime_types();
3223 3223
 
@@ -3228,16 +3228,16 @@  discard block
 block discarded – undo
3228 3228
         <label for="gd_file_types" class="gd-cf-tooltip-wrap">
3229 3229
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Allowed file types :', 'geodirectory'); ?>
3230 3230
             <div class="gdcf-tooltip">
3231
-                <?php _e('Select file types to allowed for file uploading. (Select multiple file types by holding down "Ctrl" key.)', 'geodirectory');?>
3231
+                <?php _e('Select file types to allowed for file uploading. (Select multiple file types by holding down "Ctrl" key.)', 'geodirectory'); ?>
3232 3232
             </div>
3233 3233
         </label>
3234 3234
         <div class="gd-cf-input-wrap">
3235 3235
             <select name="extra[gd_file_types][]" id="gd_file_types" multiple="multiple" style="height:100px;width:90%;">
3236
-                <option value="*" <?php selected(true, in_array('*', $gd_file_types));?>><?php _e('All types', 'geodirectory') ;?></option>
3237
-                <?php foreach ( $allowed_file_types as $format => $types ) { ?>
3238
-                    <optgroup label="<?php echo esc_attr( wp_sprintf(__('%s formats', 'geodirectory'), __($format, 'geodirectory') ) ) ;?>">
3239
-                        <?php foreach ( $types as $ext => $type ) { ?>
3240
-                            <option value="<?php echo esc_attr($ext) ;?>" <?php selected(true, in_array($ext, $gd_file_types));?>><?php echo '.' . $ext ;?></option>
3236
+                <option value="*" <?php selected(true, in_array('*', $gd_file_types)); ?>><?php _e('All types', 'geodirectory'); ?></option>
3237
+                <?php foreach ($allowed_file_types as $format => $types) { ?>
3238
+                    <optgroup label="<?php echo esc_attr(wp_sprintf(__('%s formats', 'geodirectory'), __($format, 'geodirectory'))); ?>">
3239
+                        <?php foreach ($types as $ext => $type) { ?>
3240
+                            <option value="<?php echo esc_attr($ext); ?>" <?php selected(true, in_array($ext, $gd_file_types)); ?>><?php echo '.'.$ext; ?></option>
3241 3241
                         <?php } ?>
3242 3242
                     </optgroup>
3243 3243
                 <?php } ?>
@@ -3249,9 +3249,9 @@  discard block
 block discarded – undo
3249 3249
     $html = ob_get_clean();
3250 3250
     return $output.$html;
3251 3251
 }
3252
-add_filter('geodir_cfa_extra_fields_file','geodir_cfa_extra_fields_file',10,4);
3252
+add_filter('geodir_cfa_extra_fields_file', 'geodir_cfa_extra_fields_file', 10, 4);
3253 3253
 
3254
-function geodir_cfa_extra_fields_text($output,$result_str,$cf,$field_info){
3254
+function geodir_cfa_extra_fields_text($output, $result_str, $cf, $field_info) {
3255 3255
     ob_start();
3256 3256
 
3257 3257
     $extra_fields = isset($field_info->extra_fields) && $field_info->extra_fields != '' ? maybe_unserialize($field_info->extra_fields) : '';
@@ -3265,15 +3265,15 @@  discard block
 block discarded – undo
3265 3265
     $value = '';
3266 3266
     if ($extra_fields && isset($extra_fields['is_price'])) {
3267 3267
     $value = esc_attr($extra_fields['is_price']);
3268
-    }elseif(isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']){
3268
+    }elseif (isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']) {
3269 3269
     $value = esc_attr($cf['defaults']['extra_fields']['is_price']);
3270 3270
     }
3271 3271
 
3272
-    $show_price_extra = ($value==1) ? 1 : 0;
3272
+    $show_price_extra = ($value == 1) ? 1 : 0;
3273 3273
 
3274
-    $show_price = (isset($field_info->data_type) && ($field_info->data_type=='INT' && $field_info->data_type=='FLOAT')) ? 1 : 0;
3274
+    $show_price = (isset($field_info->data_type) && ($field_info->data_type == 'INT' && $field_info->data_type == 'FLOAT')) ? 1 : 0;
3275 3275
     ?>
3276
-    <li class="gdcf-price-extra-set" <?php if(!$show_price){ echo "style='display:none;'";}?>>
3276
+    <li class="gdcf-price-extra-set" <?php if (!$show_price) { echo "style='display:none;'"; }?>>
3277 3277
         <label for="is_price" class="gd-cf-tooltip-wrap">
3278 3278
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display as price? :', 'geodirectory'); ?>
3279 3279
             <div class="gdcf-tooltip">
@@ -3282,17 +3282,17 @@  discard block
 block discarded – undo
3282 3282
         </label>
3283 3283
         <div class="gd-cf-input-wrap gd-switch">
3284 3284
 
3285
-            <input type="radio" id="is_price_yes<?php echo $radio_id;?>" name="extra[is_price]" class="gdri-enabled"  value="1"
3285
+            <input type="radio" id="is_price_yes<?php echo $radio_id; ?>" name="extra[is_price]" class="gdri-enabled"  value="1"
3286 3286
                 <?php if ($value == '1') {
3287 3287
                     echo 'checked';
3288 3288
                 } ?>/>
3289
-            <label onclick="show_hide_radio(this,'show','gdcf-price-extra');" for="is_price_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3289
+            <label onclick="show_hide_radio(this,'show','gdcf-price-extra');" for="is_price_yes<?php echo $radio_id; ?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3290 3290
 
3291
-            <input type="radio" id="is_price_no<?php echo $radio_id;?>" name="extra[is_price]" class="gdri-disabled" value="0"
3291
+            <input type="radio" id="is_price_no<?php echo $radio_id; ?>" name="extra[is_price]" class="gdri-disabled" value="0"
3292 3292
                 <?php if ($value == '0' || !$value) {
3293 3293
                     echo 'checked';
3294 3294
                 } ?>/>
3295
-            <label onclick="show_hide_radio(this,'hide','gdcf-price-extra');" for="is_price_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3295
+            <label onclick="show_hide_radio(this,'hide','gdcf-price-extra');" for="is_price_no<?php echo $radio_id; ?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3296 3296
 
3297 3297
         </div>
3298 3298
     </li>
@@ -3302,23 +3302,23 @@  discard block
 block discarded – undo
3302 3302
     $value = '';
3303 3303
     if ($extra_fields && isset($extra_fields['thousand_separator'])) {
3304 3304
         $value = esc_attr($extra_fields['thousand_separator']);
3305
-    }elseif(isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']){
3305
+    }elseif (isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']) {
3306 3306
         $value = esc_attr($cf['defaults']['extra_fields']['thousand_separator']);
3307 3307
     }
3308 3308
     ?>
3309
-    <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3310
-        <label for="thousand_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Thousand separator :', 'geodirectory');?>
3309
+    <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>>
3310
+        <label for="thousand_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Thousand separator :', 'geodirectory'); ?>
3311 3311
             <div class="gdcf-tooltip">
3312 3312
                 <?php _e('Select the thousand separator.', 'geodirectory'); ?>
3313 3313
             </div>
3314 3314
         </label>
3315 3315
         <div class="gd-cf-input-wrap">
3316 3316
                 <select name="extra[thousand_separator]" id="thousand_separator">
3317
-                    <option value="comma" <?php selected(true, $value == 'comma');?>><?php _e(', (comma)', 'geodirectory'); ?></option>
3318
-                    <option value="slash" <?php selected(true, $value == "slash");?>><?php _e('\ (slash)', 'geodirectory'); ?></option>
3319
-                    <option value="period" <?php selected(true, $value == 'period');?>><?php _e('. (period)', 'geodirectory'); ?></option>
3320
-                    <option value="space" <?php selected(true, $value == 'space');?>><?php _e(' (space)', 'geodirectory'); ?></option>
3321
-                    <option value="none" <?php selected(true, $value == 'none');?>><?php _e('(none)', 'geodirectory'); ?></option>
3317
+                    <option value="comma" <?php selected(true, $value == 'comma'); ?>><?php _e(', (comma)', 'geodirectory'); ?></option>
3318
+                    <option value="slash" <?php selected(true, $value == "slash"); ?>><?php _e('\ (slash)', 'geodirectory'); ?></option>
3319
+                    <option value="period" <?php selected(true, $value == 'period'); ?>><?php _e('. (period)', 'geodirectory'); ?></option>
3320
+                    <option value="space" <?php selected(true, $value == 'space'); ?>><?php _e(' (space)', 'geodirectory'); ?></option>
3321
+                    <option value="none" <?php selected(true, $value == 'none'); ?>><?php _e('(none)', 'geodirectory'); ?></option>
3322 3322
                 </select>
3323 3323
         </div>
3324 3324
     </li>
@@ -3329,20 +3329,20 @@  discard block
 block discarded – undo
3329 3329
     $value = '';
3330 3330
     if ($extra_fields && isset($extra_fields['decimal_separator'])) {
3331 3331
         $value = esc_attr($extra_fields['decimal_separator']);
3332
-    }elseif(isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']){
3332
+    }elseif (isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']) {
3333 3333
         $value = esc_attr($cf['defaults']['extra_fields']['decimal_separator']);
3334 3334
     }
3335 3335
     ?>
3336
-    <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3337
-        <label for="decimal_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal separator :', 'geodirectory');?>
3336
+    <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>>
3337
+        <label for="decimal_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal separator :', 'geodirectory'); ?>
3338 3338
             <div class="gdcf-tooltip">
3339 3339
                 <?php _e('Select the decimal separator.', 'geodirectory'); ?>
3340 3340
             </div>
3341 3341
         </label>
3342 3342
         <div class="gd-cf-input-wrap">
3343 3343
             <select name="extra[decimal_separator]" id="decimal_separator">
3344
-                <option value="period" <?php selected(true, $value == 'period');?>><?php _e('. (period)', 'geodirectory'); ?></option>
3345
-                <option value="comma" <?php selected(true, $value == "comma");?>><?php _e(', (comma)', 'geodirectory'); ?></option>
3344
+                <option value="period" <?php selected(true, $value == 'period'); ?>><?php _e('. (period)', 'geodirectory'); ?></option>
3345
+                <option value="comma" <?php selected(true, $value == "comma"); ?>><?php _e(', (comma)', 'geodirectory'); ?></option>
3346 3346
             </select>
3347 3347
         </div>
3348 3348
     </li>
@@ -3352,20 +3352,20 @@  discard block
 block discarded – undo
3352 3352
     $value = '';
3353 3353
     if ($extra_fields && isset($extra_fields['decimal_display'])) {
3354 3354
         $value = esc_attr($extra_fields['decimal_display']);
3355
-    }elseif(isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']){
3355
+    }elseif (isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']) {
3356 3356
         $value = esc_attr($cf['defaults']['extra_fields']['decimal_display']);
3357 3357
     }
3358 3358
     ?>
3359
-    <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3360
-        <label for="decimal_display" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal display :', 'geodirectory');?>
3359
+    <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>>
3360
+        <label for="decimal_display" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal display :', 'geodirectory'); ?>
3361 3361
             <div class="gdcf-tooltip">
3362 3362
                 <?php _e('Select how the decimal is displayed', 'geodirectory'); ?>
3363 3363
             </div>
3364 3364
         </label>
3365 3365
         <div class="gd-cf-input-wrap">
3366 3366
             <select name="extra[decimal_display]" id="decimal_display">
3367
-                <option value="if" <?php selected(true, $value == 'if');?>><?php _e('If used (not .00)', 'geodirectory'); ?></option>
3368
-                <option value="allways" <?php selected(true, $value == "allways");?>><?php _e('Always (.00)', 'geodirectory'); ?></option>
3367
+                <option value="if" <?php selected(true, $value == 'if'); ?>><?php _e('If used (not .00)', 'geodirectory'); ?></option>
3368
+                <option value="allways" <?php selected(true, $value == "allways"); ?>><?php _e('Always (.00)', 'geodirectory'); ?></option>
3369 3369
             </select>
3370 3370
         </div>
3371 3371
     </li>
@@ -3375,12 +3375,12 @@  discard block
 block discarded – undo
3375 3375
     $value = '';
3376 3376
     if ($extra_fields && isset($extra_fields['currency_symbol'])) {
3377 3377
         $value = esc_attr($extra_fields['currency_symbol']);
3378
-    }elseif(isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']){
3378
+    }elseif (isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']) {
3379 3379
         $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol']);
3380 3380
     }
3381 3381
     ?>
3382
-    <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3383
-        <label for="currency_symbol" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol :', 'geodirectory');?>
3382
+    <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>>
3383
+        <label for="currency_symbol" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol :', 'geodirectory'); ?>
3384 3384
             <div class="gdcf-tooltip">
3385 3385
                 <?php _e('Select the currency symbol.', 'geodirectory'); ?>
3386 3386
             </div>
@@ -3396,20 +3396,20 @@  discard block
 block discarded – undo
3396 3396
     $value = '';
3397 3397
     if ($extra_fields && isset($extra_fields['currency_symbol_placement'])) {
3398 3398
         $value = esc_attr($extra_fields['currency_symbol_placement']);
3399
-    }elseif(isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']){
3399
+    }elseif (isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']) {
3400 3400
         $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol_placement']);
3401 3401
     }
3402 3402
     ?>
3403
-    <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3404
-        <label for="currency_symbol_placement" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol placement :', 'geodirectory');?>
3403
+    <li class="gdcf-price-extra" <?php if (!$show_price_extra) { echo "style='display:none;'"; }?>>
3404
+        <label for="currency_symbol_placement" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol placement :', 'geodirectory'); ?>
3405 3405
             <div class="gdcf-tooltip">
3406 3406
                 <?php _e('Select the currency symbol placement.', 'geodirectory'); ?>
3407 3407
             </div>
3408 3408
         </label>
3409 3409
         <div class="gd-cf-input-wrap">
3410 3410
             <select name="extra[currency_symbol_placement]" id="currency_symbol_placement">
3411
-                <option value="left" <?php selected(true, $value == 'left');?>><?php _e('Left', 'geodirectory'); ?></option>
3412
-                <option value="right" <?php selected(true, $value == "right");?>><?php _e('Right', 'geodirectory'); ?></option>
3411
+                <option value="left" <?php selected(true, $value == 'left'); ?>><?php _e('Left', 'geodirectory'); ?></option>
3412
+                <option value="right" <?php selected(true, $value == "right"); ?>><?php _e('Right', 'geodirectory'); ?></option>
3413 3413
             </select>
3414 3414
         </div>
3415 3415
     </li>
@@ -3420,11 +3420,11 @@  discard block
 block discarded – undo
3420 3420
     $html = ob_get_clean();
3421 3421
     return $output.$html;
3422 3422
 }
3423
-add_filter('geodir_cfa_extra_fields_text','geodir_cfa_extra_fields_text',10,4);
3423
+add_filter('geodir_cfa_extra_fields_text', 'geodir_cfa_extra_fields_text', 10, 4);
3424 3424
 
3425
-function geodir_default_custom_fields($post_type='gd_place',$package_id=''){
3425
+function geodir_default_custom_fields($post_type = 'gd_place', $package_id = '') {
3426 3426
     $fields = array();
3427
-    $package = ($package_id=='') ? '' : array($package_id);
3427
+    $package = ($package_id == '') ? '' : array($package_id);
3428 3428
 
3429 3429
     $fields[] = array('listing_type' => $post_type,
3430 3430
                       'data_type' => 'VARCHAR',
@@ -3597,7 +3597,7 @@  discard block
 block discarded – undo
3597 3597
     return  $fields;
3598 3598
 }
3599 3599
 
3600
-function geodir_currency_format_number($number='',$cf=''){
3600
+function geodir_currency_format_number($number = '', $cf = '') {
3601 3601
 
3602 3602
     $cs = isset($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : '';
3603 3603
 
@@ -3606,35 +3606,35 @@  discard block
 block discarded – undo
3606 3606
     $decimal_display = !empty($cf['decimal_display']) ? $cf['decimal_display'] : (!empty($cs['decimal_display']) ? $cs['decimal_display'] : 'if');
3607 3607
     $decimalpoint = '.';
3608 3608
 
3609
-    if(isset($cs['decimal_separator']) && $cs['decimal_separator']=='comma'){
3609
+    if (isset($cs['decimal_separator']) && $cs['decimal_separator'] == 'comma') {
3610 3610
         $decimalpoint = ',';
3611 3611
     }
3612 3612
 
3613 3613
     $separator = ',';
3614 3614
 
3615
-    if(isset($cs['thousand_separator'])){
3616
-        if($cs['thousand_separator']=='comma'){$separator = ',';}
3617
-        if($cs['thousand_separator']=='slash'){$separator = '\\';}
3618
-        if($cs['thousand_separator']=='period'){$separator = '.';}
3619
-        if($cs['thousand_separator']=='space'){$separator = ' ';}
3620
-        if($cs['thousand_separator']=='none'){$separator = '';}
3615
+    if (isset($cs['thousand_separator'])) {
3616
+        if ($cs['thousand_separator'] == 'comma') {$separator = ','; }
3617
+        if ($cs['thousand_separator'] == 'slash') {$separator = '\\'; }
3618
+        if ($cs['thousand_separator'] == 'period') {$separator = '.'; }
3619
+        if ($cs['thousand_separator'] == 'space') {$separator = ' '; }
3620
+        if ($cs['thousand_separator'] == 'none') {$separator = ''; }
3621 3621
     }
3622 3622
 
3623 3623
     $currency_symbol_placement = isset($cs['currency_symbol_placement']) ? $cs['currency_symbol_placement'] : 'left';
3624 3624
 
3625
-    if($decimals>0 && $decimal_display=='if'){
3626
-        if(is_int($number) || floor( $number ) == $number)
3625
+    if ($decimals > 0 && $decimal_display == 'if') {
3626
+        if (is_int($number) || floor($number) == $number)
3627 3627
             $decimals = 0;
3628 3628
     }
3629 3629
 
3630
-    $number = number_format($number,$decimals,$decimalpoint,$separator);
3630
+    $number = number_format($number, $decimals, $decimalpoint, $separator);
3631 3631
 
3632 3632
 
3633 3633
 
3634
-    if($currency_symbol_placement=='left'){
3635
-        $number = $symbol . $number;
3636
-    }else{
3637
-        $number = $number . $symbol;
3634
+    if ($currency_symbol_placement == 'left') {
3635
+        $number = $symbol.$number;
3636
+    } else {
3637
+        $number = $number.$symbol;
3638 3638
     }
3639 3639
 
3640 3640
 
Please login to merge, or discard this patch.
Indentation   +2267 added lines, -2267 removed lines patch added patch discarded remove patch
@@ -10,52 +10,52 @@  discard block
 block discarded – undo
10 10
 global $wpdb, $table_prefix;
11 11
 
12 12
 if (!function_exists('geodir_column_exist')) {
13
-    /**
14
-     * Check table column exist or not.
15
-     *
16
-     * @since 1.0.0
17
-     * @package GeoDirectory
18
-     * @global object $wpdb WordPress Database object.
19
-     * @param string $db The table name.
20
-     * @param string $column The column name.
21
-     * @return bool If column exists returns true. Otherwise false.
22
-     */
23
-    function geodir_column_exist($db, $column)
24
-    {
25
-        global $wpdb;
26
-        $exists = false;
27
-        $columns = $wpdb->get_col("show columns from $db");
28
-        foreach ($columns as $c) {
29
-            if ($c == $column) {
30
-                $exists = true;
31
-                break;
32
-            }
33
-        }
34
-        return $exists;
35
-    }
13
+	/**
14
+	 * Check table column exist or not.
15
+	 *
16
+	 * @since 1.0.0
17
+	 * @package GeoDirectory
18
+	 * @global object $wpdb WordPress Database object.
19
+	 * @param string $db The table name.
20
+	 * @param string $column The column name.
21
+	 * @return bool If column exists returns true. Otherwise false.
22
+	 */
23
+	function geodir_column_exist($db, $column)
24
+	{
25
+		global $wpdb;
26
+		$exists = false;
27
+		$columns = $wpdb->get_col("show columns from $db");
28
+		foreach ($columns as $c) {
29
+			if ($c == $column) {
30
+				$exists = true;
31
+				break;
32
+			}
33
+		}
34
+		return $exists;
35
+	}
36 36
 }
37 37
 
38 38
 if (!function_exists('geodir_add_column_if_not_exist')) {
39
-    /**
40
-     * Add column if table column not exist.
41
-     *
42
-     * @since 1.0.0
43
-     * @package GeoDirectory
44
-     * @global object $wpdb WordPress Database object.
45
-     * @param string $db The table name.
46
-     * @param string $column The column name.
47
-     * @param string $column_attr The column attributes.
48
-     */
49
-    function geodir_add_column_if_not_exist($db, $column, $column_attr = "VARCHAR( 255 ) NOT NULL")
50
-    {
51
-        global $wpdb;
52
-        $result = 0;// no rows affected
53
-        if (!geodir_column_exist($db, $column)) {
54
-            if (!empty($db) && !empty($column))
55
-                $result = $wpdb->query("ALTER TABLE `$db` ADD `$column`  $column_attr");
56
-        }
57
-        return $result;
58
-    }
39
+	/**
40
+	 * Add column if table column not exist.
41
+	 *
42
+	 * @since 1.0.0
43
+	 * @package GeoDirectory
44
+	 * @global object $wpdb WordPress Database object.
45
+	 * @param string $db The table name.
46
+	 * @param string $column The column name.
47
+	 * @param string $column_attr The column attributes.
48
+	 */
49
+	function geodir_add_column_if_not_exist($db, $column, $column_attr = "VARCHAR( 255 ) NOT NULL")
50
+	{
51
+		global $wpdb;
52
+		$result = 0;// no rows affected
53
+		if (!geodir_column_exist($db, $column)) {
54
+			if (!empty($db) && !empty($column))
55
+				$result = $wpdb->query("ALTER TABLE `$db` ADD `$column`  $column_attr");
56
+		}
57
+		return $result;
58
+	}
59 59
 }
60 60
 
61 61
 /**
@@ -72,706 +72,706 @@  discard block
 block discarded – undo
72 72
  */
73 73
 function geodir_post_custom_fields($package_id = '', $default = 'all', $post_type = 'gd_place', $fields_location = 'none')
74 74
 {
75
-    global $wpdb, $geodir_post_custom_fields_cache;
76
-
77
-    $cache_stored = $post_type . '_' . $package_id . '_' . $default . '_' . $fields_location;
78
-
79
-    if (array_key_exists($cache_stored, $geodir_post_custom_fields_cache)) {
80
-        return $geodir_post_custom_fields_cache[$cache_stored];
81
-    }
82
-
83
-    $default_query = '';
84
-
85
-    if ($default == 'default')
86
-        $default_query .= " and is_admin IN ('1') ";
87
-    elseif ($default == 'custom')
88
-        $default_query .= " and is_admin = '0' ";
89
-
90
-    if ($fields_location == 'none') {
91
-    } else{
92
-        $fields_location = esc_sql( $fields_location );
93
-        $default_query .= " and show_in LIKE '%%[$fields_location]%%' ";
94
-    }
95
-
96
-    $post_meta_info = $wpdb->get_results(
97
-        $wpdb->prepare(
98
-            "select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where is_active = '1' and post_type = %s {$default_query} order by sort_order asc,admin_title asc",
99
-            array($post_type)
100
-        )
101
-    );
102
-
103
-
104
-    $return_arr = array();
105
-    if ($post_meta_info) {
106
-
107
-        foreach ($post_meta_info as $post_meta_info_obj) {
108
-
109
-            $custom_fields = array(
110
-                "name" => $post_meta_info_obj->htmlvar_name,
111
-                "label" => $post_meta_info_obj->clabels,
112
-                "default" => $post_meta_info_obj->default_value,
113
-                "type" => $post_meta_info_obj->field_type,
114
-                "desc" => $post_meta_info_obj->admin_desc);
115
-
116
-            if ($post_meta_info_obj->field_type) {
117
-                $options = explode(',', $post_meta_info_obj->option_values);
118
-                $custom_fields["options"] = $options;
119
-            }
120
-
121
-            foreach ($post_meta_info_obj as $key => $val) {
122
-                $custom_fields[$key] = $val;
123
-            }
124
-
125
-            $pricearr = array();
126
-            $pricearr = explode(',', $post_meta_info_obj->packages);
127
-
128
-            if ($package_id != '' && in_array($package_id, $pricearr)) {
129
-                $return_arr[$post_meta_info_obj->sort_order] = $custom_fields;
130
-            } elseif ($package_id == '') {
131
-                $return_arr[$post_meta_info_obj->sort_order] = $custom_fields;
132
-            }
133
-        }
134
-    }
135
-    $geodir_post_custom_fields_cache[$cache_stored] = $return_arr;
136
-
137
-    if (has_filter('geodir_filter_geodir_post_custom_fields')) {
138
-        /**
139
-         * Filter the post custom fields array.
140
-         *
141
-         * @since 1.0.0
142
-         *
143
-         * @param array $return_arr Post custom fields array.
144
-         * @param int|string $package_id The package ID.
145
-         * @param string $post_type Optional. The wordpress post type.
146
-         * @param string $fields_location Optional. Where exactly are you going to place this custom fields?.
147
-         */
148
-        $return_arr = apply_filters('geodir_filter_geodir_post_custom_fields', $return_arr, $package_id, $post_type, $fields_location);
149
-    }
150
-
151
-    return $return_arr;
75
+	global $wpdb, $geodir_post_custom_fields_cache;
76
+
77
+	$cache_stored = $post_type . '_' . $package_id . '_' . $default . '_' . $fields_location;
78
+
79
+	if (array_key_exists($cache_stored, $geodir_post_custom_fields_cache)) {
80
+		return $geodir_post_custom_fields_cache[$cache_stored];
81
+	}
82
+
83
+	$default_query = '';
84
+
85
+	if ($default == 'default')
86
+		$default_query .= " and is_admin IN ('1') ";
87
+	elseif ($default == 'custom')
88
+		$default_query .= " and is_admin = '0' ";
89
+
90
+	if ($fields_location == 'none') {
91
+	} else{
92
+		$fields_location = esc_sql( $fields_location );
93
+		$default_query .= " and show_in LIKE '%%[$fields_location]%%' ";
94
+	}
95
+
96
+	$post_meta_info = $wpdb->get_results(
97
+		$wpdb->prepare(
98
+			"select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where is_active = '1' and post_type = %s {$default_query} order by sort_order asc,admin_title asc",
99
+			array($post_type)
100
+		)
101
+	);
102
+
103
+
104
+	$return_arr = array();
105
+	if ($post_meta_info) {
106
+
107
+		foreach ($post_meta_info as $post_meta_info_obj) {
108
+
109
+			$custom_fields = array(
110
+				"name" => $post_meta_info_obj->htmlvar_name,
111
+				"label" => $post_meta_info_obj->clabels,
112
+				"default" => $post_meta_info_obj->default_value,
113
+				"type" => $post_meta_info_obj->field_type,
114
+				"desc" => $post_meta_info_obj->admin_desc);
115
+
116
+			if ($post_meta_info_obj->field_type) {
117
+				$options = explode(',', $post_meta_info_obj->option_values);
118
+				$custom_fields["options"] = $options;
119
+			}
120
+
121
+			foreach ($post_meta_info_obj as $key => $val) {
122
+				$custom_fields[$key] = $val;
123
+			}
124
+
125
+			$pricearr = array();
126
+			$pricearr = explode(',', $post_meta_info_obj->packages);
127
+
128
+			if ($package_id != '' && in_array($package_id, $pricearr)) {
129
+				$return_arr[$post_meta_info_obj->sort_order] = $custom_fields;
130
+			} elseif ($package_id == '') {
131
+				$return_arr[$post_meta_info_obj->sort_order] = $custom_fields;
132
+			}
133
+		}
134
+	}
135
+	$geodir_post_custom_fields_cache[$cache_stored] = $return_arr;
136
+
137
+	if (has_filter('geodir_filter_geodir_post_custom_fields')) {
138
+		/**
139
+		 * Filter the post custom fields array.
140
+		 *
141
+		 * @since 1.0.0
142
+		 *
143
+		 * @param array $return_arr Post custom fields array.
144
+		 * @param int|string $package_id The package ID.
145
+		 * @param string $post_type Optional. The wordpress post type.
146
+		 * @param string $fields_location Optional. Where exactly are you going to place this custom fields?.
147
+		 */
148
+		$return_arr = apply_filters('geodir_filter_geodir_post_custom_fields', $return_arr, $package_id, $post_type, $fields_location);
149
+	}
150
+
151
+	return $return_arr;
152 152
 }
153 153
 
154
-    /**
155
-     * Adds admin html for custom fields.
156
-     *
157
-     * @since 1.0.0
158
-     * @package GeoDirectory
159
-     * @global object $wpdb WordPress Database object.
160
-     * @param string $field_type The form field type.
161
-     * @param object|int $result_str The custom field results object or row id.
162
-     * @param string $field_ins_upd When set to "submit" displays form.
163
-     * @param string $field_type_key The key of the custom field.
164
-     */
165
-    function geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key ='')
166
-    {
167
-        global $wpdb;
168
-        $cf = $result_str;
169
-        if (!is_object($cf)) {
170
-
171
-            $field_info = $wpdb->get_row($wpdb->prepare("select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)));
172
-
173
-        } else {
174
-            $field_info = $cf;
175
-            $result_str = $cf->id;
176
-        }
177
-        /**
178
-         * Contains custom field html.
179
-         *
180
-         * @since 1.0.0
181
-         */
182
-        include('custom_field_html.php');
183
-
184
-    }
154
+	/**
155
+	 * Adds admin html for custom fields.
156
+	 *
157
+	 * @since 1.0.0
158
+	 * @package GeoDirectory
159
+	 * @global object $wpdb WordPress Database object.
160
+	 * @param string $field_type The form field type.
161
+	 * @param object|int $result_str The custom field results object or row id.
162
+	 * @param string $field_ins_upd When set to "submit" displays form.
163
+	 * @param string $field_type_key The key of the custom field.
164
+	 */
165
+	function geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key ='')
166
+	{
167
+		global $wpdb;
168
+		$cf = $result_str;
169
+		if (!is_object($cf)) {
170
+
171
+			$field_info = $wpdb->get_row($wpdb->prepare("select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)));
172
+
173
+		} else {
174
+			$field_info = $cf;
175
+			$result_str = $cf->id;
176
+		}
177
+		/**
178
+		 * Contains custom field html.
179
+		 *
180
+		 * @since 1.0.0
181
+		 */
182
+		include('custom_field_html.php');
183
+
184
+	}
185 185
 
186 186
 
187 187
 if (!function_exists('geodir_custom_field_delete')) {
188
-    /**
189
-     * Delete custom field using field id.
190
-     *
191
-     * @since 1.0.0
192
-     * @since 1.5.7 Delete field from sorting fields table when custom field deleted.
193
-     * @package GeoDirectory
194
-     * @global object $wpdb WordPress Database object.
195
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
196
-     * @param string $field_id The custom field ID.
197
-     * @return int|string If field deleted successfully, returns field id. Otherwise returns 0.
198
-     */
199
-    function geodir_custom_field_delete($field_id = '') {
200
-        global $wpdb, $plugin_prefix;
201
-
202
-        if ($field_id != '') {
203
-            $cf = trim($field_id, '_');
204
-
205
-            if ($field = $wpdb->get_row($wpdb->prepare("select htmlvar_name,post_type,field_type from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)))) {
206
-                $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d ", array($cf)));
207
-
208
-                $post_type = $field->post_type;
209
-                $htmlvar_name = $field->htmlvar_name;
210
-
211
-                if ($post_type != '' && $htmlvar_name != '') {
212
-                    $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name=%s AND post_type=%s LIMIT 1", array($htmlvar_name, $post_type)));
213
-                }
214
-
215
-                /**
216
-                 * Called after a custom field is deleted.
217
-                 *
218
-                 * @since 1.0.0
219
-                 * @param string $cf The fields ID.
220
-                 * @param string $field->htmlvar_name The html variable name for the field.
221
-                 * @param string $post_type The post type the field belongs to.
222
-                 */
223
-                do_action('geodir_after_custom_field_deleted', $cf, $field->htmlvar_name, $post_type);
224
-
225
-                if ($field->field_type == 'address') {
226
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_address`");
227
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_city`");
228
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_region`");
229
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_country`");
230
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_zip`");
231
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_latitude`");
232
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_longitude`");
233
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapview`");
234
-                    $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapzoom`");
235
-                } else {
236
-                    if ($field->field_type != 'fieldset') {
237
-                        $wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "`");
238
-                    }
239
-                }
240
-
241
-                return $field_id;
242
-            } else
243
-                return 0;
244
-        } else
245
-            return 0;
246
-    }
188
+	/**
189
+	 * Delete custom field using field id.
190
+	 *
191
+	 * @since 1.0.0
192
+	 * @since 1.5.7 Delete field from sorting fields table when custom field deleted.
193
+	 * @package GeoDirectory
194
+	 * @global object $wpdb WordPress Database object.
195
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
196
+	 * @param string $field_id The custom field ID.
197
+	 * @return int|string If field deleted successfully, returns field id. Otherwise returns 0.
198
+	 */
199
+	function geodir_custom_field_delete($field_id = '') {
200
+		global $wpdb, $plugin_prefix;
201
+
202
+		if ($field_id != '') {
203
+			$cf = trim($field_id, '_');
204
+
205
+			if ($field = $wpdb->get_row($wpdb->prepare("select htmlvar_name,post_type,field_type from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d", array($cf)))) {
206
+				$wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id= %d ", array($cf)));
207
+
208
+				$post_type = $field->post_type;
209
+				$htmlvar_name = $field->htmlvar_name;
210
+
211
+				if ($post_type != '' && $htmlvar_name != '') {
212
+					$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name=%s AND post_type=%s LIMIT 1", array($htmlvar_name, $post_type)));
213
+				}
214
+
215
+				/**
216
+				 * Called after a custom field is deleted.
217
+				 *
218
+				 * @since 1.0.0
219
+				 * @param string $cf The fields ID.
220
+				 * @param string $field->htmlvar_name The html variable name for the field.
221
+				 * @param string $post_type The post type the field belongs to.
222
+				 */
223
+				do_action('geodir_after_custom_field_deleted', $cf, $field->htmlvar_name, $post_type);
224
+
225
+				if ($field->field_type == 'address') {
226
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_address`");
227
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_city`");
228
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_region`");
229
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_country`");
230
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_zip`");
231
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_latitude`");
232
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_longitude`");
233
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapview`");
234
+					$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "_mapzoom`");
235
+				} else {
236
+					if ($field->field_type != 'fieldset') {
237
+						$wpdb->query("ALTER TABLE " . $plugin_prefix . $post_type . "_detail DROP `" . $field->htmlvar_name . "`");
238
+					}
239
+				}
240
+
241
+				return $field_id;
242
+			} else
243
+				return 0;
244
+		} else
245
+			return 0;
246
+	}
247 247
 }
248 248
 
249 249
 if (!function_exists('geodir_custom_field_save')) {
250
-    /**
251
-     * Save or Update custom fields into the database.
252
-     *
253
-     * @since 1.0.0
254
-     * @since 1.5.6 Fix for saving multiselect custom field "Display Type" on first attempt.
255
-     * @package GeoDirectory
256
-     * @global object $wpdb WordPress Database object.
257
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
258
-     * @param array $request_field {
259
-     *    Attributes of the request field array.
260
-     *
261
-     *    @type string $action Ajax Action name. Default "geodir_ajax_action".
262
-     *    @type string $manage_field_type Field type Default "custom_fields".
263
-     *    @type string $create_field Create field Default "true".
264
-     *    @type string $field_ins_upd Field ins upd Default "submit".
265
-     *    @type string $_wpnonce WP nonce value.
266
-     *    @type string $listing_type Listing type Example "gd_place".
267
-     *    @type string $field_type Field type Example "radio".
268
-     *    @type string $field_id Field id Example "12".
269
-     *    @type string $data_type Data type Example "VARCHAR".
270
-     *    @type string $is_active Either "1" or "0". If "0" is used then the field will not be displayed anywhere.
271
-     *    @type array $show_on_pkg Package list to display this field.
272
-     *    @type string $admin_title Personal comment, it would not be displayed anywhere except in custom field settings.
273
-     *    @type string $site_title Section title which you wish to display in frontend.
274
-     *    @type string $admin_desc Section description which will appear in frontend.
275
-     *    @type string $htmlvar_name Html variable name. This should be a unique name.
276
-     *    @type string $clabels Section Title which will appear in backend.
277
-     *    @type string $default_value The default value (for "link" this will be used as the link text).
278
-     *    @type string $sort_order The display order of this field in backend. e.g. 5.
279
-     *    @type string $is_default Either "1" or "0". If "0" is used then the field will be displayed as main form field or additional field.
280
-     *    @type string $for_admin_use Either "1" or "0". If "0" is used then only site admin can edit this field.
281
-     *    @type string $is_required Use "1" to set field as required.
282
-     *    @type string $required_msg Enter text for error message if field required and have not full fill requirement.
283
-     *    @type string $show_on_listing Want to show this on listing page?.
284
-     *    @type string $show_in What locations to show the custom field in.
285
-     *    @type string $show_on_detail Want to show this in More Info tab on detail page?.
286
-     *    @type string $show_as_tab Want to display this as a tab on detail page? If "1" then "Show on detail page?" must be Yes.
287
-     *    @type string $option_values Option Values should be separated by comma.
288
-     *    @type string $field_icon Upload icon using media and enter its url path, or enter font awesome class.
289
-     *    @type string $css_class Enter custom css class for field custom style.
290
-     *    @type array $extra_fields An array of extra fields to store.
291
-     *
292
-     * }
293
-     * @param bool $default Not yet implemented.
294
-     * @return int|string If field is unique returns inserted row id. Otherwise returns error string.
295
-     */
296
-    function geodir_custom_field_save($request_field = array(), $default = false)
297
-    {
298
-
299
-        global $wpdb, $plugin_prefix;
300
-
301
-        $old_html_variable = '';
302
-
303
-        $data_type = trim($request_field['data_type']);
304
-
305
-        $result_str = isset($request_field['field_id']) ? trim($request_field['field_id']) : '';
306
-
307
-        // some servers fail if a POST value is VARCHAR so we change it.
308
-        if(isset($request_field['data_type']) && $request_field['data_type']=='XVARCHAR'){
309
-            $request_field['data_type'] = 'VARCHAR';
310
-        }
311
-
312
-        $cf = trim($result_str, '_');
313
-
314
-
315
-        /*-------- check duplicate validation --------*/
316
-
317
-        $cehhtmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
318
-        $post_type = $request_field['listing_type'];
319
-
320
-        if ($request_field['field_type'] != 'address' && $request_field['field_type'] != 'taxonomy' && $request_field['field_type'] != 'fieldset') {
321
-            $cehhtmlvar_name = 'geodir_' . $cehhtmlvar_name;
322
-        }
323
-
324
-        $check_html_variable = $wpdb->get_var(
325
-            $wpdb->prepare(
326
-                "select htmlvar_name from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id <> %d and htmlvar_name = %s and post_type = %s ",
327
-                array($cf, $cehhtmlvar_name, $post_type)
328
-            )
329
-        );
330
-
331
-
332
-        if (!$check_html_variable || $request_field['field_type'] == 'fieldset') {
333
-
334
-            if ($cf != '') {
335
-
336
-                $post_meta_info = $wpdb->get_row(
337
-                    $wpdb->prepare(
338
-                        "select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id = %d",
339
-                        array($cf)
340
-                    )
341
-                );
342
-
343
-            }
344
-
345
-            if (!empty($post_meta_info)) {
346
-                $post_val = $post_meta_info;
347
-                $old_html_variable = $post_val->htmlvar_name;
348
-
349
-            }
350
-
351
-
352
-
353
-            if ($post_type == '') $post_type = 'gd_place';
354
-
355
-
356
-            $detail_table = $plugin_prefix . $post_type . '_detail';
357
-
358
-            $admin_title = $request_field['admin_title'];
359
-            $site_title = $request_field['site_title'];
360
-            $data_type = $request_field['data_type'];
361
-            $field_type = $request_field['field_type'];
362
-            $field_type_key = isset($request_field['field_type_key']) ? $request_field['field_type_key'] : $field_type;
363
-            $htmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
364
-            $admin_desc = $request_field['admin_desc'];
365
-            $clabels = isset($request_field['clabels']) ? $request_field['clabels'] : '';
366
-            $default_value = isset($request_field['default_value']) ? $request_field['default_value'] : '';
367
-            $sort_order = isset($request_field['sort_order']) ? $request_field['sort_order'] : '';
368
-            $is_active = isset($request_field['is_active']) ? $request_field['is_active'] : '';
369
-            $is_required = isset($request_field['is_required']) ? $request_field['is_required'] : '';
370
-            $required_msg = isset($request_field['required_msg']) ? $request_field['required_msg'] : '';
371
-            $css_class = isset($request_field['css_class']) ? $request_field['css_class'] : '';
372
-            $field_icon = isset($request_field['field_icon']) ? $request_field['field_icon'] : '';
373
-            $show_on_listing = isset($request_field['show_on_listing']) ? $request_field['show_on_listing'] : '';
374
-            $show_in = isset($request_field['show_in']) ? $request_field['show_in'] : '';
375
-            $show_on_detail = isset($request_field['show_on_detail']) ? $request_field['show_on_detail'] : '';
376
-            $show_as_tab = isset($request_field['show_as_tab']) ? $request_field['show_as_tab'] : '';
377
-            $decimal_point = isset($request_field['decimal_point']) ? trim($request_field['decimal_point']) : ''; // decimal point for DECIMAL data type
378
-            $decimal_point = $decimal_point > 0 ? ($decimal_point > 10 ? 10 : $decimal_point) : '';
379
-            $validation_pattern = isset($request_field['validation_pattern']) ? $request_field['validation_pattern'] : '';
380
-            $validation_msg = isset($request_field['validation_msg']) ? $request_field['validation_msg'] : '';
381
-            $for_admin_use = isset($request_field['for_admin_use']) ? $request_field['for_admin_use'] : '';
250
+	/**
251
+	 * Save or Update custom fields into the database.
252
+	 *
253
+	 * @since 1.0.0
254
+	 * @since 1.5.6 Fix for saving multiselect custom field "Display Type" on first attempt.
255
+	 * @package GeoDirectory
256
+	 * @global object $wpdb WordPress Database object.
257
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
258
+	 * @param array $request_field {
259
+	 *    Attributes of the request field array.
260
+	 *
261
+	 *    @type string $action Ajax Action name. Default "geodir_ajax_action".
262
+	 *    @type string $manage_field_type Field type Default "custom_fields".
263
+	 *    @type string $create_field Create field Default "true".
264
+	 *    @type string $field_ins_upd Field ins upd Default "submit".
265
+	 *    @type string $_wpnonce WP nonce value.
266
+	 *    @type string $listing_type Listing type Example "gd_place".
267
+	 *    @type string $field_type Field type Example "radio".
268
+	 *    @type string $field_id Field id Example "12".
269
+	 *    @type string $data_type Data type Example "VARCHAR".
270
+	 *    @type string $is_active Either "1" or "0". If "0" is used then the field will not be displayed anywhere.
271
+	 *    @type array $show_on_pkg Package list to display this field.
272
+	 *    @type string $admin_title Personal comment, it would not be displayed anywhere except in custom field settings.
273
+	 *    @type string $site_title Section title which you wish to display in frontend.
274
+	 *    @type string $admin_desc Section description which will appear in frontend.
275
+	 *    @type string $htmlvar_name Html variable name. This should be a unique name.
276
+	 *    @type string $clabels Section Title which will appear in backend.
277
+	 *    @type string $default_value The default value (for "link" this will be used as the link text).
278
+	 *    @type string $sort_order The display order of this field in backend. e.g. 5.
279
+	 *    @type string $is_default Either "1" or "0". If "0" is used then the field will be displayed as main form field or additional field.
280
+	 *    @type string $for_admin_use Either "1" or "0". If "0" is used then only site admin can edit this field.
281
+	 *    @type string $is_required Use "1" to set field as required.
282
+	 *    @type string $required_msg Enter text for error message if field required and have not full fill requirement.
283
+	 *    @type string $show_on_listing Want to show this on listing page?.
284
+	 *    @type string $show_in What locations to show the custom field in.
285
+	 *    @type string $show_on_detail Want to show this in More Info tab on detail page?.
286
+	 *    @type string $show_as_tab Want to display this as a tab on detail page? If "1" then "Show on detail page?" must be Yes.
287
+	 *    @type string $option_values Option Values should be separated by comma.
288
+	 *    @type string $field_icon Upload icon using media and enter its url path, or enter font awesome class.
289
+	 *    @type string $css_class Enter custom css class for field custom style.
290
+	 *    @type array $extra_fields An array of extra fields to store.
291
+	 *
292
+	 * }
293
+	 * @param bool $default Not yet implemented.
294
+	 * @return int|string If field is unique returns inserted row id. Otherwise returns error string.
295
+	 */
296
+	function geodir_custom_field_save($request_field = array(), $default = false)
297
+	{
298
+
299
+		global $wpdb, $plugin_prefix;
300
+
301
+		$old_html_variable = '';
302
+
303
+		$data_type = trim($request_field['data_type']);
304
+
305
+		$result_str = isset($request_field['field_id']) ? trim($request_field['field_id']) : '';
306
+
307
+		// some servers fail if a POST value is VARCHAR so we change it.
308
+		if(isset($request_field['data_type']) && $request_field['data_type']=='XVARCHAR'){
309
+			$request_field['data_type'] = 'VARCHAR';
310
+		}
311
+
312
+		$cf = trim($result_str, '_');
313
+
314
+
315
+		/*-------- check duplicate validation --------*/
316
+
317
+		$cehhtmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
318
+		$post_type = $request_field['listing_type'];
319
+
320
+		if ($request_field['field_type'] != 'address' && $request_field['field_type'] != 'taxonomy' && $request_field['field_type'] != 'fieldset') {
321
+			$cehhtmlvar_name = 'geodir_' . $cehhtmlvar_name;
322
+		}
323
+
324
+		$check_html_variable = $wpdb->get_var(
325
+			$wpdb->prepare(
326
+				"select htmlvar_name from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id <> %d and htmlvar_name = %s and post_type = %s ",
327
+				array($cf, $cehhtmlvar_name, $post_type)
328
+			)
329
+		);
330
+
331
+
332
+		if (!$check_html_variable || $request_field['field_type'] == 'fieldset') {
333
+
334
+			if ($cf != '') {
335
+
336
+				$post_meta_info = $wpdb->get_row(
337
+					$wpdb->prepare(
338
+						"select * from " . GEODIR_CUSTOM_FIELDS_TABLE . " where id = %d",
339
+						array($cf)
340
+					)
341
+				);
342
+
343
+			}
344
+
345
+			if (!empty($post_meta_info)) {
346
+				$post_val = $post_meta_info;
347
+				$old_html_variable = $post_val->htmlvar_name;
348
+
349
+			}
350
+
351
+
352
+
353
+			if ($post_type == '') $post_type = 'gd_place';
354
+
355
+
356
+			$detail_table = $plugin_prefix . $post_type . '_detail';
357
+
358
+			$admin_title = $request_field['admin_title'];
359
+			$site_title = $request_field['site_title'];
360
+			$data_type = $request_field['data_type'];
361
+			$field_type = $request_field['field_type'];
362
+			$field_type_key = isset($request_field['field_type_key']) ? $request_field['field_type_key'] : $field_type;
363
+			$htmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
364
+			$admin_desc = $request_field['admin_desc'];
365
+			$clabels = isset($request_field['clabels']) ? $request_field['clabels'] : '';
366
+			$default_value = isset($request_field['default_value']) ? $request_field['default_value'] : '';
367
+			$sort_order = isset($request_field['sort_order']) ? $request_field['sort_order'] : '';
368
+			$is_active = isset($request_field['is_active']) ? $request_field['is_active'] : '';
369
+			$is_required = isset($request_field['is_required']) ? $request_field['is_required'] : '';
370
+			$required_msg = isset($request_field['required_msg']) ? $request_field['required_msg'] : '';
371
+			$css_class = isset($request_field['css_class']) ? $request_field['css_class'] : '';
372
+			$field_icon = isset($request_field['field_icon']) ? $request_field['field_icon'] : '';
373
+			$show_on_listing = isset($request_field['show_on_listing']) ? $request_field['show_on_listing'] : '';
374
+			$show_in = isset($request_field['show_in']) ? $request_field['show_in'] : '';
375
+			$show_on_detail = isset($request_field['show_on_detail']) ? $request_field['show_on_detail'] : '';
376
+			$show_as_tab = isset($request_field['show_as_tab']) ? $request_field['show_as_tab'] : '';
377
+			$decimal_point = isset($request_field['decimal_point']) ? trim($request_field['decimal_point']) : ''; // decimal point for DECIMAL data type
378
+			$decimal_point = $decimal_point > 0 ? ($decimal_point > 10 ? 10 : $decimal_point) : '';
379
+			$validation_pattern = isset($request_field['validation_pattern']) ? $request_field['validation_pattern'] : '';
380
+			$validation_msg = isset($request_field['validation_msg']) ? $request_field['validation_msg'] : '';
381
+			$for_admin_use = isset($request_field['for_admin_use']) ? $request_field['for_admin_use'] : '';
382 382
 
383 383
             
384
-            if(is_array($show_in)){
385
-                $show_in = implode(",", $request_field['show_in']);
386
-            }
384
+			if(is_array($show_in)){
385
+				$show_in = implode(",", $request_field['show_in']);
386
+			}
387 387
             
388
-            if ($field_type != 'address' && $field_type != 'taxonomy' && $field_type != 'fieldset') {
389
-                $htmlvar_name = 'geodir_' . $htmlvar_name;
390
-            }
388
+			if ($field_type != 'address' && $field_type != 'taxonomy' && $field_type != 'fieldset') {
389
+				$htmlvar_name = 'geodir_' . $htmlvar_name;
390
+			}
391 391
 
392
-            $option_values = '';
393
-            if (isset($request_field['option_values']))
394
-                $option_values = $request_field['option_values'];
392
+			$option_values = '';
393
+			if (isset($request_field['option_values']))
394
+				$option_values = $request_field['option_values'];
395 395
 
396
-            $cat_sort = isset($request_field['cat_sort']) ? $request_field['cat_sort'] : '0';
396
+			$cat_sort = isset($request_field['cat_sort']) ? $request_field['cat_sort'] : '0';
397 397
 
398
-            $cat_filter = isset($request_field['cat_filter']) ? $request_field['cat_filter'] : '0';
398
+			$cat_filter = isset($request_field['cat_filter']) ? $request_field['cat_filter'] : '0';
399 399
 
400
-            if (isset($request_field['show_on_pkg']) && !empty($request_field['show_on_pkg']))
401
-                $price_pkg = implode(",", $request_field['show_on_pkg']);
402
-            else {
403
-                $package_info = array();
400
+			if (isset($request_field['show_on_pkg']) && !empty($request_field['show_on_pkg']))
401
+				$price_pkg = implode(",", $request_field['show_on_pkg']);
402
+			else {
403
+				$package_info = array();
404 404
 
405
-                $package_info = geodir_post_package_info($package_info, '', $post_type);
406
-                $price_pkg = !empty($package_info->pid) ? $package_info->pid : '';
407
-            }
405
+				$package_info = geodir_post_package_info($package_info, '', $post_type);
406
+				$price_pkg = !empty($package_info->pid) ? $package_info->pid : '';
407
+			}
408 408
 
409 409
 
410
-            if (isset($request_field['extra']) && !empty($request_field['extra']))
411
-                $extra_fields = $request_field['extra'];
410
+			if (isset($request_field['extra']) && !empty($request_field['extra']))
411
+				$extra_fields = $request_field['extra'];
412 412
 
413
-            if (isset($request_field['is_default']) && $request_field['is_default'] != '')
414
-                $is_default = $request_field['is_default'];
415
-            else
416
-                $is_default = '0';
413
+			if (isset($request_field['is_default']) && $request_field['is_default'] != '')
414
+				$is_default = $request_field['is_default'];
415
+			else
416
+				$is_default = '0';
417 417
 
418
-            if (isset($request_field['is_admin']) && $request_field['is_admin'] != '')
419
-                $is_admin = $request_field['is_admin'];
420
-            else
421
-                $is_admin = '0';
418
+			if (isset($request_field['is_admin']) && $request_field['is_admin'] != '')
419
+				$is_admin = $request_field['is_admin'];
420
+			else
421
+				$is_admin = '0';
422 422
 
423 423
 
424
-            if ($is_active == '') $is_active = 1;
425
-            if ($is_required == '') $is_required = 0;
424
+			if ($is_active == '') $is_active = 1;
425
+			if ($is_required == '') $is_required = 0;
426 426
 
427 427
 
428
-            if ($sort_order == '') {
428
+			if ($sort_order == '') {
429 429
 
430
-                $last_order = $wpdb->get_var("SELECT MAX(sort_order) as last_order FROM " . GEODIR_CUSTOM_FIELDS_TABLE);
430
+				$last_order = $wpdb->get_var("SELECT MAX(sort_order) as last_order FROM " . GEODIR_CUSTOM_FIELDS_TABLE);
431 431
 
432
-                $sort_order = (int)$last_order + 1;
433
-            }
432
+				$sort_order = (int)$last_order + 1;
433
+			}
434 434
 
435
-            $default_value_add = '';
435
+			$default_value_add = '';
436 436
 
437 437
 
438
-            if (!empty($post_meta_info)) {
439
-                switch ($field_type):
438
+			if (!empty($post_meta_info)) {
439
+				switch ($field_type):
440 440
 
441
-                    case 'address':
441
+					case 'address':
442 442
 
443
-                        if ($htmlvar_name != '') {
444
-                            $prefix = $htmlvar_name . '_';
445
-                        }
446
-                        $old_prefix = $old_html_variable . '_';
443
+						if ($htmlvar_name != '') {
444
+							$prefix = $htmlvar_name . '_';
445
+						}
446
+						$old_prefix = $old_html_variable . '_';
447 447
 
448 448
 
449
-                        $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "address` `" . $prefix . "address` VARCHAR( 254 ) NULL";
449
+						$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "address` `" . $prefix . "address` VARCHAR( 254 ) NULL";
450 450
 
451
-                        if ($default_value != '') {
452
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
453
-                        }
451
+						if ($default_value != '') {
452
+							$meta_field_add .= " DEFAULT '" . $default_value . "'";
453
+						}
454 454
 
455
-                        $wpdb->query($meta_field_add);
455
+						$wpdb->query($meta_field_add);
456 456
 
457
-                        if ($extra_fields != '') {
457
+						if ($extra_fields != '') {
458 458
 
459
-                            if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
459
+							if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
460 460
 
461
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "city'");
462
-                                if ($is_column) {
463
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "city` `" . $prefix . "city` VARCHAR( 50 ) NULL";
461
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "city'");
462
+								if ($is_column) {
463
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "city` `" . $prefix . "city` VARCHAR( 50 ) NULL";
464 464
 
465
-                                    if ($default_value != '') {
466
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
467
-                                    }
465
+									if ($default_value != '') {
466
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
467
+									}
468 468
 
469
-                                    $wpdb->query($meta_field_add);
470
-                                } else {
469
+									$wpdb->query($meta_field_add);
470
+								} else {
471 471
 
472
-                                    $meta_field_add = "VARCHAR( 50 ) NULL";
473
-                                    if ($default_value != '') {
474
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
475
-                                    }
476
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add);
472
+									$meta_field_add = "VARCHAR( 50 ) NULL";
473
+									if ($default_value != '') {
474
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
475
+									}
476
+									geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add);
477 477
 
478
-                                }
478
+								}
479 479
 
480 480
 
481
-                            }
481
+							}
482 482
 
483 483
 
484
-                            if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
484
+							if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
485 485
 
486
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "region'");
486
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "region'");
487 487
 
488
-                                if ($is_column) {
489
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "region` `" . $prefix . "region` VARCHAR( 50 ) NULL";
488
+								if ($is_column) {
489
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "region` `" . $prefix . "region` VARCHAR( 50 ) NULL";
490 490
 
491
-                                    if ($default_value != '') {
492
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
493
-                                    }
491
+									if ($default_value != '') {
492
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
493
+									}
494 494
 
495
-                                    $wpdb->query($meta_field_add);
496
-                                } else {
497
-                                    $meta_field_add = "VARCHAR( 50 ) NULL";
498
-                                    if ($default_value != '') {
499
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
500
-                                    }
495
+									$wpdb->query($meta_field_add);
496
+								} else {
497
+									$meta_field_add = "VARCHAR( 50 ) NULL";
498
+									if ($default_value != '') {
499
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
500
+									}
501 501
 
502
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add);
503
-                                }
502
+									geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add);
503
+								}
504 504
 
505
-                            }
506
-                            if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
505
+							}
506
+							if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
507 507
 
508
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "country'");
508
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "country'");
509 509
 
510
-                                if ($is_column) {
510
+								if ($is_column) {
511 511
 
512
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "country` `" . $prefix . "country` VARCHAR( 50 ) NULL";
512
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "country` `" . $prefix . "country` VARCHAR( 50 ) NULL";
513 513
 
514
-                                    if ($default_value != '') {
515
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
516
-                                    }
514
+									if ($default_value != '') {
515
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
516
+									}
517 517
 
518
-                                    $wpdb->query($meta_field_add);
519
-                                } else {
518
+									$wpdb->query($meta_field_add);
519
+								} else {
520 520
 
521
-                                    $meta_field_add = "VARCHAR( 50 ) NULL";
522
-                                    if ($default_value != '') {
523
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
524
-                                    }
521
+									$meta_field_add = "VARCHAR( 50 ) NULL";
522
+									if ($default_value != '') {
523
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
524
+									}
525 525
 
526
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add);
526
+									geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add);
527 527
 
528
-                                }
528
+								}
529 529
 
530
-                            }
531
-                            if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
530
+							}
531
+							if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
532 532
 
533
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "zip'");
533
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "zip'");
534 534
 
535
-                                if ($is_column) {
535
+								if ($is_column) {
536 536
 
537
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "zip` `" . $prefix . "zip` VARCHAR( 50 ) NULL";
537
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "zip` `" . $prefix . "zip` VARCHAR( 50 ) NULL";
538 538
 
539
-                                    if ($default_value != '') {
540
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
541
-                                    }
539
+									if ($default_value != '') {
540
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
541
+									}
542 542
 
543
-                                    $wpdb->query($meta_field_add);
544
-                                } else {
543
+									$wpdb->query($meta_field_add);
544
+								} else {
545 545
 
546
-                                    $meta_field_add = "VARCHAR( 50 ) NULL";
547
-                                    if ($default_value != '') {
548
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
549
-                                    }
546
+									$meta_field_add = "VARCHAR( 50 ) NULL";
547
+									if ($default_value != '') {
548
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
549
+									}
550 550
 
551
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add);
551
+									geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add);
552 552
 
553
-                                }
553
+								}
554 554
 
555
-                            }
556
-                            if (isset($extra_fields['show_map']) && $extra_fields['show_map']) {
555
+							}
556
+							if (isset($extra_fields['show_map']) && $extra_fields['show_map']) {
557 557
 
558
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latitude'");
559
-                                if ($is_column) {
558
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latitude'");
559
+								if ($is_column) {
560 560
 
561
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latitude` `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
561
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latitude` `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
562 562
 
563
-                                    if ($default_value != '') {
564
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
565
-                                    }
563
+									if ($default_value != '') {
564
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
565
+									}
566 566
 
567
-                                    $wpdb->query($meta_field_add);
568
-                                } else {
567
+									$wpdb->query($meta_field_add);
568
+								} else {
569 569
 
570
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
571
-                                    $meta_field_add = "VARCHAR( 20 ) NULL";
572
-                                    if ($default_value != '') {
573
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
574
-                                    }
570
+									$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
571
+									$meta_field_add = "VARCHAR( 20 ) NULL";
572
+									if ($default_value != '') {
573
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
574
+									}
575 575
 
576
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add);
576
+									geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add);
577 577
 
578
-                                }
578
+								}
579 579
 
580 580
 
581
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "longitude'");
581
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "longitude'");
582 582
 
583
-                                if ($is_column) {
584
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "longitude` `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
583
+								if ($is_column) {
584
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "longitude` `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
585 585
 
586
-                                    if ($default_value != '') {
587
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
588
-                                    }
586
+									if ($default_value != '') {
587
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
588
+									}
589 589
 
590
-                                    $wpdb->query($meta_field_add);
591
-                                } else {
590
+									$wpdb->query($meta_field_add);
591
+								} else {
592 592
 
593
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
594
-                                    $meta_field_add = "VARCHAR( 20 ) NULL";
595
-                                    if ($default_value != '') {
596
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
597
-                                    }
593
+									$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
594
+									$meta_field_add = "VARCHAR( 20 ) NULL";
595
+									if ($default_value != '') {
596
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
597
+									}
598 598
 
599
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add);
600
-                                }
599
+									geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add);
600
+								}
601 601
 
602
-                            }
603
-                            if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) {
602
+							}
603
+							if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) {
604 604
 
605
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapview'");
605
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapview'");
606 606
 
607
-                                if ($is_column) {
608
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapview` `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
607
+								if ($is_column) {
608
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapview` `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
609 609
 
610
-                                    if ($default_value != '') {
611
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
612
-                                    }
610
+									if ($default_value != '') {
611
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
612
+									}
613 613
 
614
-                                    $wpdb->query($meta_field_add);
615
-                                } else {
614
+									$wpdb->query($meta_field_add);
615
+								} else {
616 616
 
617
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
617
+									$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
618 618
 
619
-                                    $meta_field_add = "VARCHAR( 15 ) NULL";
620
-                                    if ($default_value != '') {
621
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
622
-                                    }
619
+									$meta_field_add = "VARCHAR( 15 ) NULL";
620
+									if ($default_value != '') {
621
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
622
+									}
623 623
 
624
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add);
625
-                                }
624
+									geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add);
625
+								}
626 626
 
627 627
 
628
-                            }
629
-                            if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) {
628
+							}
629
+							if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) {
630 630
 
631
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapzoom'");
632
-                                if ($is_column) {
633
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapzoom` `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
631
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "mapzoom'");
632
+								if ($is_column) {
633
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "mapzoom` `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
634 634
 
635
-                                    if ($default_value != '') {
636
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
637
-                                    }
635
+									if ($default_value != '') {
636
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
637
+									}
638 638
 
639
-                                    $wpdb->query($meta_field_add);
639
+									$wpdb->query($meta_field_add);
640 640
 
641
-                                } else {
641
+								} else {
642 642
 
643
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
643
+									$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
644 644
 
645
-                                    $meta_field_add = "VARCHAR( 3 ) NULL";
646
-                                    if ($default_value != '') {
647
-                                        $meta_field_add .= " DEFAULT '" . $default_value . "'";
648
-                                    }
645
+									$meta_field_add = "VARCHAR( 3 ) NULL";
646
+									if ($default_value != '') {
647
+										$meta_field_add .= " DEFAULT '" . $default_value . "'";
648
+									}
649 649
 
650
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add);
651
-                                }
650
+									geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add);
651
+								}
652 652
 
653
-                            }
654
-                            // show lat lng
655
-                            if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) {
656
-                                $is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latlng'");
653
+							}
654
+							// show lat lng
655
+							if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) {
656
+								$is_column = $wpdb->get_var("SHOW COLUMNS FROM " . $detail_table . " where field='" . $old_prefix . "latlng'");
657 657
 
658
-                                if ($is_column) {
659
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latlng` `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
660
-                                    $meta_field_add .= " DEFAULT '1'";
658
+								if ($is_column) {
659
+									$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_prefix . "latlng` `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
660
+									$meta_field_add .= " DEFAULT '1'";
661 661
 
662
-                                    $wpdb->query($meta_field_add);
663
-                                } else {
664
-                                    $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
662
+									$wpdb->query($meta_field_add);
663
+								} else {
664
+									$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
665 665
 
666
-                                    $meta_field_add = "VARCHAR( 3 ) NULL";
667
-                                    $meta_field_add .= " DEFAULT '1'";
666
+									$meta_field_add = "VARCHAR( 3 ) NULL";
667
+									$meta_field_add .= " DEFAULT '1'";
668 668
 
669
-                                    geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add);
670
-                                }
669
+									geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add);
670
+								}
671 671
 
672
-                            }
673
-                        }// end extra
672
+							}
673
+						}// end extra
674 674
 
675
-                        break;
675
+						break;
676 676
 
677
-                    case 'checkbox':
678
-                    case 'multiselect':
679
-                    case 'select':
680
-                    case 'taxonomy':
677
+					case 'checkbox':
678
+					case 'multiselect':
679
+					case 'select':
680
+					case 'taxonomy':
681 681
 
682
-                        $op_size = '500';
682
+						$op_size = '500';
683 683
 
684
-                        // only make the field as big as it needs to be.
685
-                        if(isset($option_values) && $option_values && $field_type=='select'){
686
-                            $option_values_arr = explode(',',$option_values);
687
-                            if(is_array($option_values_arr)){
688
-                                $op_max = 0;
689
-                                foreach($option_values_arr as $op_val){
690
-                                    if(strlen($op_val) && strlen($op_val)>$op_max){$op_max = strlen($op_val);}
691
-                                }
692
-                                if($op_max){$op_size =$op_max; }
693
-                            }
694
-                        }elseif(isset($option_values) && $option_values && $field_type=='multiselect'){
695
-                            if(strlen($option_values)){
696
-                                $op_size =  strlen($option_values);
697
-                            }
698
-                        }
684
+						// only make the field as big as it needs to be.
685
+						if(isset($option_values) && $option_values && $field_type=='select'){
686
+							$option_values_arr = explode(',',$option_values);
687
+							if(is_array($option_values_arr)){
688
+								$op_max = 0;
689
+								foreach($option_values_arr as $op_val){
690
+									if(strlen($op_val) && strlen($op_val)>$op_max){$op_max = strlen($op_val);}
691
+								}
692
+								if($op_max){$op_size =$op_max; }
693
+							}
694
+						}elseif(isset($option_values) && $option_values && $field_type=='multiselect'){
695
+							if(strlen($option_values)){
696
+								$op_size =  strlen($option_values);
697
+							}
698
+						}
699 699
 
700
-                        $meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "`VARCHAR( $op_size ) NULL";
700
+						$meta_field_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "`VARCHAR( $op_size ) NULL";
701 701
 
702
-                        if ($default_value != '') {
703
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
704
-                        }
702
+						if ($default_value != '') {
703
+							$meta_field_add .= " DEFAULT '" . $default_value . "'";
704
+						}
705 705
 
706
-                        $alter_result = $wpdb->query($meta_field_add);
707
-                        if($alter_result===false){
708
-                            return __('Column change failed, you may have too many columns.','geodirectory');
709
-                        }
706
+						$alter_result = $wpdb->query($meta_field_add);
707
+						if($alter_result===false){
708
+							return __('Column change failed, you may have too many columns.','geodirectory');
709
+						}
710 710
 
711
-                        if (isset($request_field['cat_display_type']))
712
-                            $extra_fields = $request_field['cat_display_type'];
711
+						if (isset($request_field['cat_display_type']))
712
+							$extra_fields = $request_field['cat_display_type'];
713 713
 
714
-                        if (isset($request_field['multi_display_type']))
715
-                            $extra_fields = $request_field['multi_display_type'];
714
+						if (isset($request_field['multi_display_type']))
715
+							$extra_fields = $request_field['multi_display_type'];
716 716
 
717 717
 
718
-                        break;
718
+						break;
719 719
 
720
-                    case 'textarea':
721
-                    case 'html':
722
-                    case 'url':
723
-                    case 'file':
720
+					case 'textarea':
721
+					case 'html':
722
+					case 'url':
723
+					case 'file':
724 724
 
725
-                        $alter_result = $wpdb->query("ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` TEXT NULL");
726
-                        if($alter_result===false){
727
-                            return __('Column change failed, you may have too many columns.','geodirectory');
728
-                        }
729
-                        if (isset($request_field['advanced_editor']))
730
-                            $extra_fields = $request_field['advanced_editor'];
731
-
732
-                        break;
725
+						$alter_result = $wpdb->query("ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` TEXT NULL");
726
+						if($alter_result===false){
727
+							return __('Column change failed, you may have too many columns.','geodirectory');
728
+						}
729
+						if (isset($request_field['advanced_editor']))
730
+							$extra_fields = $request_field['advanced_editor'];
731
+
732
+						break;
733 733
 
734
-                    case 'fieldset':
735
-                        // Nothing happened for fieldset
736
-                        break;
734
+					case 'fieldset':
735
+						// Nothing happened for fieldset
736
+						break;
737 737
 
738
-                    default:
739
-                        if ($data_type != 'VARCHAR' && $data_type != '') {
740
-                            if ($data_type == 'FLOAT' && $decimal_point > 0) {
741
-                                $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` DECIMAL(11, " . (int)$decimal_point . ") NULL";
742
-                            } else {
743
-                                $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` " . $data_type . " NULL";
744
-                            }
745
-
746
-                            if (is_numeric($default_value) && $default_value != '') {
747
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
748
-                            }
749
-                        } else {
750
-                            $default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` VARCHAR( 254 ) NULL";
751
-                            if ($default_value != '') {
752
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
753
-                            }
754
-                        }
755
-
756
-                        $alter_result = $wpdb->query($default_value_add);
757
-                        if($alter_result===false){
758
-                            return __('Column change failed, you may have too many columns.','geodirectory');
759
-                        }
760
-                        break;
761
-                endswitch;
762
-
763
-                $extra_field_query = '';
764
-                if (!empty($extra_fields)) {
765
-                    $extra_field_query = serialize($extra_fields);
766
-                }
767
-
768
-                $decimal_point = $field_type == 'text' && $data_type == 'FLOAT' ? $decimal_point : '';
769
-
770
-                $wpdb->query(
771
-
772
-                    $wpdb->prepare(
773
-
774
-                        "update " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
738
+					default:
739
+						if ($data_type != 'VARCHAR' && $data_type != '') {
740
+							if ($data_type == 'FLOAT' && $decimal_point > 0) {
741
+								$default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` DECIMAL(11, " . (int)$decimal_point . ") NULL";
742
+							} else {
743
+								$default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` " . $data_type . " NULL";
744
+							}
745
+
746
+							if (is_numeric($default_value) && $default_value != '') {
747
+								$default_value_add .= " DEFAULT '" . $default_value . "'";
748
+							}
749
+						} else {
750
+							$default_value_add = "ALTER TABLE " . $detail_table . " CHANGE `" . $old_html_variable . "` `" . $htmlvar_name . "` VARCHAR( 254 ) NULL";
751
+							if ($default_value != '') {
752
+								$default_value_add .= " DEFAULT '" . $default_value . "'";
753
+							}
754
+						}
755
+
756
+						$alter_result = $wpdb->query($default_value_add);
757
+						if($alter_result===false){
758
+							return __('Column change failed, you may have too many columns.','geodirectory');
759
+						}
760
+						break;
761
+				endswitch;
762
+
763
+				$extra_field_query = '';
764
+				if (!empty($extra_fields)) {
765
+					$extra_field_query = serialize($extra_fields);
766
+				}
767
+
768
+				$decimal_point = $field_type == 'text' && $data_type == 'FLOAT' ? $decimal_point : '';
769
+
770
+				$wpdb->query(
771
+
772
+					$wpdb->prepare(
773
+
774
+						"update " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
775 775
 					post_type = %s,
776 776
 					admin_title = %s,
777 777
 					site_title = %s,
@@ -805,308 +805,308 @@  discard block
 block discarded – undo
805 805
 					for_admin_use = %s
806 806
 					where id = %d",
807 807
 
808
-                        array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_required, $required_msg, $css_class, $field_icon, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use, $cf)
809
-                    )
808
+						array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_required, $required_msg, $css_class, $field_icon, $field_icon, $show_on_listing, $show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use, $cf)
809
+					)
810 810
 
811
-                );
811
+				);
812 812
 
813
-                $lastid = trim($cf);
813
+				$lastid = trim($cf);
814 814
 
815 815
 
816
-                $wpdb->query(
817
-                    $wpdb->prepare(
818
-                        "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
816
+				$wpdb->query(
817
+					$wpdb->prepare(
818
+						"update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
819 819
 					 	site_title=%s
820 820
 					where post_type = %s and htmlvar_name = %s",
821
-                        array($site_title, $post_type, $htmlvar_name)
822
-                    )
823
-                );
824
-
825
-
826
-                if ($cat_sort == '')
827
-                    $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name)));
828
-
829
-
830
-                /**
831
-                 * Called after all custom fields are saved for a post.
832
-                 *
833
-                 * @since 1.0.0
834
-                 * @param int $lastid The post ID.
835
-                 */
836
-                do_action('geodir_after_custom_fields_updated', $lastid);
837
-
838
-            } else {
839
-
840
-                switch ($field_type):
841
-
842
-                    case 'address':
843
-
844
-                        $data_type = '';
845
-
846
-                        if ($htmlvar_name != '') {
847
-                            $prefix = $htmlvar_name . '_';
848
-                        }
849
-                        $old_prefix = $old_html_variable;
850
-
851
-                        //$meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."address` VARCHAR( 254 ) NULL";
852
-
853
-                        $meta_field_add = "VARCHAR( 254 ) NULL";
854
-                        if ($default_value != '') {
855
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
856
-                        }
857
-
858
-                        geodir_add_column_if_not_exist($detail_table, $prefix . "address", $meta_field_add);
859
-                        //$wpdb->query($meta_field_add);
860
-
861
-
862
-                        if (!empty($extra_fields)) {
821
+						array($site_title, $post_type, $htmlvar_name)
822
+					)
823
+				);
824
+
825
+
826
+				if ($cat_sort == '')
827
+					$wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type = %s and htmlvar_name = %s", array($post_type, $htmlvar_name)));
828
+
829
+
830
+				/**
831
+				 * Called after all custom fields are saved for a post.
832
+				 *
833
+				 * @since 1.0.0
834
+				 * @param int $lastid The post ID.
835
+				 */
836
+				do_action('geodir_after_custom_fields_updated', $lastid);
837
+
838
+			} else {
839
+
840
+				switch ($field_type):
841
+
842
+					case 'address':
843
+
844
+						$data_type = '';
845
+
846
+						if ($htmlvar_name != '') {
847
+							$prefix = $htmlvar_name . '_';
848
+						}
849
+						$old_prefix = $old_html_variable;
850
+
851
+						//$meta_field_add = "ALTER TABLE ".$detail_table." ADD `".$prefix."address` VARCHAR( 254 ) NULL";
852
+
853
+						$meta_field_add = "VARCHAR( 254 ) NULL";
854
+						if ($default_value != '') {
855
+							$meta_field_add .= " DEFAULT '" . $default_value . "'";
856
+						}
857
+
858
+						geodir_add_column_if_not_exist($detail_table, $prefix . "address", $meta_field_add);
859
+						//$wpdb->query($meta_field_add);
860
+
861
+
862
+						if (!empty($extra_fields)) {
863 863
 
864
-                            if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
865
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "city` VARCHAR( 30 ) NULL";
866
-                                $meta_field_add = "VARCHAR( 50 ) NULL";
867
-                                if ($default_value != '') {
868
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
869
-                                }
870
-
871
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add);
872
-                                //$wpdb->query($meta_field_add);
873
-                            }
874
-                            if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
875
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "region` VARCHAR( 30 ) NULL";
876
-                                $meta_field_add = "VARCHAR( 50 ) NULL";
877
-                                if ($default_value != '') {
878
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
879
-                                }
880
-
881
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add);
882
-                                //$wpdb->query($meta_field_add);
883
-                            }
884
-                            if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
885
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "country` VARCHAR( 30 ) NULL";
886
-
887
-                                $meta_field_add = "VARCHAR( 30 ) NULL";
888
-                                if ($default_value != '') {
889
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
890
-                                }
891
-
892
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add);
893
-                                //$wpdb->query($meta_field_add);
894
-                            }
895
-                            if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
896
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "zip` VARCHAR( 15 ) NULL";
897
-                                $meta_field_add = "VARCHAR( 15 ) NULL";
898
-                                if ($default_value != '') {
899
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
900
-                                }
901
-
902
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add);
903
-                                //$wpdb->query($meta_field_add);
904
-                            }
905
-                            if (isset($extra_fields['show_map']) && $extra_fields['show_map']) {
906
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
907
-                                $meta_field_add = "VARCHAR( 20 ) NULL";
908
-                                if ($default_value != '') {
909
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
910
-                                }
911
-
912
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add);
913
-                                //$wpdb->query($meta_field_add);
914
-
915
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
916
-
917
-                                $meta_field_add = "VARCHAR( 20 ) NULL";
918
-                                if ($default_value != '') {
919
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
920
-                                }
921
-
922
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add);
923
-
924
-                                //$wpdb->query($meta_field_add);
925
-                            }
926
-                            if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) {
927
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
928
-
929
-                                $meta_field_add = "VARCHAR( 15 ) NULL";
930
-                                if ($default_value != '') {
931
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
932
-                                }
933
-
934
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add);
935
-
936
-                                //$wpdb->query($meta_field_add);
937
-                            }
938
-                            if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) {
939
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
940
-
941
-                                $meta_field_add = "VARCHAR( 3 ) NULL";
942
-                                if ($default_value != '') {
943
-                                    $meta_field_add .= " DEFAULT '" . $default_value . "'";
944
-                                }
945
-
946
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add);
947
-
948
-                                //$wpdb->query($meta_field_add);
949
-                            }
950
-                            // show lat lng
951
-                            if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) {
952
-                                $meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
953
-
954
-                                $meta_field_add = "VARCHAR( 3 ) NULL";
955
-                                $meta_field_add .= " DEFAULT '1'";
956
-
957
-                                geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add);
958
-                                //$wpdb->query($meta_field_add);
959
-                            }
960
-                        }
961
-
962
-                        break;
963
-
964
-                    case 'checkbox':
965
-                        $data_type = 'TINYINT';
966
-
967
-                        $meta_field_add = $data_type . "( 1 ) NOT NULL ";
968
-                        if ((int)$default_value === 1) {
969
-                            $meta_field_add .= " DEFAULT '1'";
970
-                        }
971
-
972
-                        $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
973
-                        if ($add_result === false) {
974
-                            return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
975
-                        }
976
-                        break;
977
-                    case 'multiselect':
978
-                    case 'select':
979
-                        $data_type = 'VARCHAR';
980
-                        $op_size = '500';
981
-
982
-                        // only make the field as big as it needs to be.
983
-                        if (isset($option_values) && $option_values && $field_type == 'select') {
984
-                            $option_values_arr = explode(',', $option_values);
985
-
986
-                            if (is_array($option_values_arr)) {
987
-                                $op_max = 0;
988
-
989
-                                foreach ($option_values_arr as $op_val) {
990
-                                    if (strlen($op_val) && strlen($op_val) > $op_max) {
991
-                                        $op_max = strlen($op_val);
992
-                                    }
993
-                                }
994
-
995
-                                if ($op_max) {
996
-                                    $op_size = $op_max;
997
-                                }
998
-                            }
999
-                        } elseif (isset($option_values) && $option_values && $field_type == 'multiselect') {
1000
-                            if (strlen($option_values)) {
1001
-                                $op_size =  strlen($option_values);
1002
-                            }
1003
-
1004
-                            if (isset($request_field['multi_display_type'])) {
1005
-                                $extra_fields = $request_field['multi_display_type'];
1006
-                            }
1007
-                        }
1008
-
1009
-                        $meta_field_add = $data_type . "( $op_size ) NULL ";
1010
-                        if ($default_value != '') {
1011
-                            $meta_field_add .= " DEFAULT '" . $default_value . "'";
1012
-                        }
1013
-
1014
-                        $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1015
-                        if ($add_result === false) {
1016
-                            return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
1017
-                        }
1018
-                        break;
1019
-                    case 'textarea':
1020
-                    case 'html':
1021
-                    case 'url':
1022
-                    case 'file':
1023
-
1024
-                        $data_type = 'TEXT';
1025
-
1026
-                        $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1027
-
1028
-                        $meta_field_add = $data_type . " NULL ";
1029
-                        /*if($default_value != '')
864
+							if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
865
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "city` VARCHAR( 30 ) NULL";
866
+								$meta_field_add = "VARCHAR( 50 ) NULL";
867
+								if ($default_value != '') {
868
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
869
+								}
870
+
871
+								geodir_add_column_if_not_exist($detail_table, $prefix . "city", $meta_field_add);
872
+								//$wpdb->query($meta_field_add);
873
+							}
874
+							if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
875
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "region` VARCHAR( 30 ) NULL";
876
+								$meta_field_add = "VARCHAR( 50 ) NULL";
877
+								if ($default_value != '') {
878
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
879
+								}
880
+
881
+								geodir_add_column_if_not_exist($detail_table, $prefix . "region", $meta_field_add);
882
+								//$wpdb->query($meta_field_add);
883
+							}
884
+							if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
885
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "country` VARCHAR( 30 ) NULL";
886
+
887
+								$meta_field_add = "VARCHAR( 30 ) NULL";
888
+								if ($default_value != '') {
889
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
890
+								}
891
+
892
+								geodir_add_column_if_not_exist($detail_table, $prefix . "country", $meta_field_add);
893
+								//$wpdb->query($meta_field_add);
894
+							}
895
+							if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
896
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "zip` VARCHAR( 15 ) NULL";
897
+								$meta_field_add = "VARCHAR( 15 ) NULL";
898
+								if ($default_value != '') {
899
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
900
+								}
901
+
902
+								geodir_add_column_if_not_exist($detail_table, $prefix . "zip", $meta_field_add);
903
+								//$wpdb->query($meta_field_add);
904
+							}
905
+							if (isset($extra_fields['show_map']) && $extra_fields['show_map']) {
906
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latitude` VARCHAR( 20 ) NULL";
907
+								$meta_field_add = "VARCHAR( 20 ) NULL";
908
+								if ($default_value != '') {
909
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
910
+								}
911
+
912
+								geodir_add_column_if_not_exist($detail_table, $prefix . "latitude", $meta_field_add);
913
+								//$wpdb->query($meta_field_add);
914
+
915
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "longitude` VARCHAR( 20 ) NULL";
916
+
917
+								$meta_field_add = "VARCHAR( 20 ) NULL";
918
+								if ($default_value != '') {
919
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
920
+								}
921
+
922
+								geodir_add_column_if_not_exist($detail_table, $prefix . "longitude", $meta_field_add);
923
+
924
+								//$wpdb->query($meta_field_add);
925
+							}
926
+							if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) {
927
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapview` VARCHAR( 15 ) NULL";
928
+
929
+								$meta_field_add = "VARCHAR( 15 ) NULL";
930
+								if ($default_value != '') {
931
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
932
+								}
933
+
934
+								geodir_add_column_if_not_exist($detail_table, $prefix . "mapview", $meta_field_add);
935
+
936
+								//$wpdb->query($meta_field_add);
937
+							}
938
+							if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) {
939
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "mapzoom` VARCHAR( 3 ) NULL";
940
+
941
+								$meta_field_add = "VARCHAR( 3 ) NULL";
942
+								if ($default_value != '') {
943
+									$meta_field_add .= " DEFAULT '" . $default_value . "'";
944
+								}
945
+
946
+								geodir_add_column_if_not_exist($detail_table, $prefix . "mapzoom", $meta_field_add);
947
+
948
+								//$wpdb->query($meta_field_add);
949
+							}
950
+							// show lat lng
951
+							if (isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) {
952
+								$meta_field_add = "ALTER TABLE " . $detail_table . " ADD `" . $prefix . "latlng` VARCHAR( 3 ) NULL";
953
+
954
+								$meta_field_add = "VARCHAR( 3 ) NULL";
955
+								$meta_field_add .= " DEFAULT '1'";
956
+
957
+								geodir_add_column_if_not_exist($detail_table, $prefix . "latlng", $meta_field_add);
958
+								//$wpdb->query($meta_field_add);
959
+							}
960
+						}
961
+
962
+						break;
963
+
964
+					case 'checkbox':
965
+						$data_type = 'TINYINT';
966
+
967
+						$meta_field_add = $data_type . "( 1 ) NOT NULL ";
968
+						if ((int)$default_value === 1) {
969
+							$meta_field_add .= " DEFAULT '1'";
970
+						}
971
+
972
+						$add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
973
+						if ($add_result === false) {
974
+							return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
975
+						}
976
+						break;
977
+					case 'multiselect':
978
+					case 'select':
979
+						$data_type = 'VARCHAR';
980
+						$op_size = '500';
981
+
982
+						// only make the field as big as it needs to be.
983
+						if (isset($option_values) && $option_values && $field_type == 'select') {
984
+							$option_values_arr = explode(',', $option_values);
985
+
986
+							if (is_array($option_values_arr)) {
987
+								$op_max = 0;
988
+
989
+								foreach ($option_values_arr as $op_val) {
990
+									if (strlen($op_val) && strlen($op_val) > $op_max) {
991
+										$op_max = strlen($op_val);
992
+									}
993
+								}
994
+
995
+								if ($op_max) {
996
+									$op_size = $op_max;
997
+								}
998
+							}
999
+						} elseif (isset($option_values) && $option_values && $field_type == 'multiselect') {
1000
+							if (strlen($option_values)) {
1001
+								$op_size =  strlen($option_values);
1002
+							}
1003
+
1004
+							if (isset($request_field['multi_display_type'])) {
1005
+								$extra_fields = $request_field['multi_display_type'];
1006
+							}
1007
+						}
1008
+
1009
+						$meta_field_add = $data_type . "( $op_size ) NULL ";
1010
+						if ($default_value != '') {
1011
+							$meta_field_add .= " DEFAULT '" . $default_value . "'";
1012
+						}
1013
+
1014
+						$add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1015
+						if ($add_result === false) {
1016
+							return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
1017
+						}
1018
+						break;
1019
+					case 'textarea':
1020
+					case 'html':
1021
+					case 'url':
1022
+					case 'file':
1023
+
1024
+						$data_type = 'TEXT';
1025
+
1026
+						$default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1027
+
1028
+						$meta_field_add = $data_type . " NULL ";
1029
+						/*if($default_value != '')
1030 1030
 					{ $meta_field_add .= " DEFAULT '".$default_value."'"; }*/
1031 1031
 
1032
-                        $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1033
-                        if ($add_result === false) {
1034
-                            return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
1035
-                        }
1032
+						$add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1033
+						if ($add_result === false) {
1034
+							return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
1035
+						}
1036 1036
 
1037
-                        break;
1037
+						break;
1038 1038
 
1039
-                    case 'datepicker':
1039
+					case 'datepicker':
1040 1040
 
1041
-                        $data_type = 'DATE';
1041
+						$data_type = 'DATE';
1042 1042
 
1043
-                        $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1043
+						$default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1044 1044
 
1045
-                        $meta_field_add = $data_type . " NULL ";
1045
+						$meta_field_add = $data_type . " NULL ";
1046 1046
 
1047
-                        $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1048
-                        if ($add_result === false) {
1049
-                            return __('Column creation failed, you may have too many columns or the default value might have a invalid date format.', 'geodirectory');
1050
-                        }
1047
+						$add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1048
+						if ($add_result === false) {
1049
+							return __('Column creation failed, you may have too many columns or the default value might have a invalid date format.', 'geodirectory');
1050
+						}
1051 1051
 
1052
-                        break;
1052
+						break;
1053 1053
 
1054
-                    case 'time':
1054
+					case 'time':
1055 1055
 
1056
-                        $data_type = 'TIME';
1056
+						$data_type = 'TIME';
1057 1057
 
1058
-                        $default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1058
+						$default_value_add = " `" . $htmlvar_name . "` " . $data_type . " NULL ";
1059 1059
 
1060
-                        $meta_field_add = $data_type . " NULL ";
1060
+						$meta_field_add = $data_type . " NULL ";
1061 1061
 
1062
-                        $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1063
-                        if ($add_result === false) {
1064
-                            return __('Column creation failed, you may have too many columns or the default value might have a invalid time format.', 'geodirectory');
1065
-                        }
1062
+						$add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1063
+						if ($add_result === false) {
1064
+							return __('Column creation failed, you may have too many columns or the default value might have a invalid time format.', 'geodirectory');
1065
+						}
1066 1066
 
1067
-                        break;
1067
+						break;
1068 1068
 
1069
-                    default:
1069
+					default:
1070 1070
 
1071
-                        if ($data_type != 'VARCHAR' && $data_type != '') {
1072
-                            $meta_field_add = $data_type . " NULL ";
1071
+						if ($data_type != 'VARCHAR' && $data_type != '') {
1072
+							$meta_field_add = $data_type . " NULL ";
1073 1073
 
1074
-                            if ($data_type == 'FLOAT' && $decimal_point > 0) {
1075
-                                $meta_field_add = "DECIMAL(11, " . (int)$decimal_point . ") NULL ";
1076
-                            }
1074
+							if ($data_type == 'FLOAT' && $decimal_point > 0) {
1075
+								$meta_field_add = "DECIMAL(11, " . (int)$decimal_point . ") NULL ";
1076
+							}
1077 1077
 
1078
-                            if (is_numeric($default_value) && $default_value != '') {
1079
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
1080
-                                $meta_field_add .= " DEFAULT '" . $default_value . "'";
1081
-                            }
1082
-                        } else {
1083
-                            $meta_field_add = " VARCHAR( 254 ) NULL ";
1078
+							if (is_numeric($default_value) && $default_value != '') {
1079
+								$default_value_add .= " DEFAULT '" . $default_value . "'";
1080
+								$meta_field_add .= " DEFAULT '" . $default_value . "'";
1081
+							}
1082
+						} else {
1083
+							$meta_field_add = " VARCHAR( 254 ) NULL ";
1084 1084
 
1085
-                            if ($default_value != '') {
1086
-                                $default_value_add .= " DEFAULT '" . $default_value . "'";
1087
-                                $meta_field_add .= " DEFAULT '" . $default_value . "'";
1088
-                            }
1089
-                        }
1085
+							if ($default_value != '') {
1086
+								$default_value_add .= " DEFAULT '" . $default_value . "'";
1087
+								$meta_field_add .= " DEFAULT '" . $default_value . "'";
1088
+							}
1089
+						}
1090 1090
 
1091
-                        $add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1092
-                        if ($add_result === false) {
1093
-                            return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
1094
-                        }
1095
-                        break;
1096
-                endswitch;
1091
+						$add_result = geodir_add_column_if_not_exist($detail_table, $htmlvar_name, $meta_field_add);
1092
+						if ($add_result === false) {
1093
+							return __('Column creation failed, you may have too many columns or the default value does not match with field data type.', 'geodirectory');
1094
+						}
1095
+						break;
1096
+				endswitch;
1097 1097
 
1098
-                $extra_field_query = '';
1099
-                if (!empty($extra_fields)) {
1100
-                    $extra_field_query = serialize($extra_fields);
1101
-                }
1098
+				$extra_field_query = '';
1099
+				if (!empty($extra_fields)) {
1100
+					$extra_field_query = serialize($extra_fields);
1101
+				}
1102 1102
 
1103
-                $decimal_point = $field_type == 'text' && $data_type == 'FLOAT' ? $decimal_point : '';
1103
+				$decimal_point = $field_type == 'text' && $data_type == 'FLOAT' ? $decimal_point : '';
1104 1104
 
1105
-                $wpdb->query(
1105
+				$wpdb->query(
1106 1106
 
1107
-                    $wpdb->prepare(
1107
+					$wpdb->prepare(
1108 1108
 
1109
-                        "insert into " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
1109
+						"insert into " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
1110 1110
 					post_type = %s,
1111 1111
 					admin_title = %s,
1112 1112
 					site_title = %s,
@@ -1139,26 +1139,26 @@  discard block
 block discarded – undo
1139 1139
 					validation_msg = %s,
1140 1140
 					for_admin_use = %s ",
1141 1141
 
1142
-                        array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_admin, $is_required, $required_msg, $css_class, $field_icon, $show_on_listing,$show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use)
1142
+						array($post_type, $admin_title, $site_title, $field_type, $field_type_key, $htmlvar_name, $admin_desc, $clabels, $default_value, $sort_order, $is_active, $is_default, $is_admin, $is_required, $required_msg, $css_class, $field_icon, $show_on_listing,$show_in, $show_on_detail, $show_as_tab, $option_values, $price_pkg, $cat_sort, $cat_filter, $data_type, $extra_field_query, $decimal_point,$validation_pattern,$validation_msg, $for_admin_use)
1143 1143
 
1144
-                    )
1144
+					)
1145 1145
 
1146
-                );
1146
+				);
1147 1147
 
1148
-                $lastid = $wpdb->insert_id;
1148
+				$lastid = $wpdb->insert_id;
1149 1149
 
1150
-                $lastid = trim($lastid);
1150
+				$lastid = trim($lastid);
1151 1151
 
1152
-            }
1152
+			}
1153 1153
 
1154
-            return (int)$lastid;
1154
+			return (int)$lastid;
1155 1155
 
1156 1156
 
1157
-        } else {
1158
-            return 'HTML Variable Name should be a unique name';
1159
-        }
1157
+		} else {
1158
+			return 'HTML Variable Name should be a unique name';
1159
+		}
1160 1160
 
1161
-    }
1161
+	}
1162 1162
 }
1163 1163
 
1164 1164
 /**
@@ -1173,63 +1173,63 @@  discard block
 block discarded – undo
1173 1173
 function godir_set_field_order($field_ids = array())
1174 1174
 {
1175 1175
 
1176
-    global $wpdb;
1176
+	global $wpdb;
1177 1177
 
1178
-    $count = 0;
1179
-    if (!empty($field_ids)):
1180
-        $post_meta_info = false;
1181
-        foreach ($field_ids as $id) {
1178
+	$count = 0;
1179
+	if (!empty($field_ids)):
1180
+		$post_meta_info = false;
1181
+		foreach ($field_ids as $id) {
1182 1182
 
1183
-            $cf = trim($id, '_');
1183
+			$cf = trim($id, '_');
1184 1184
 
1185
-            $post_meta_info = $wpdb->query(
1186
-                $wpdb->prepare(
1187
-                    "update " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
1185
+			$post_meta_info = $wpdb->query(
1186
+				$wpdb->prepare(
1187
+					"update " . GEODIR_CUSTOM_FIELDS_TABLE . " set 
1188 1188
 															sort_order=%d 
1189 1189
 															where id= %d",
1190
-                    array($count, $cf)
1191
-                )
1192
-            );
1193
-            $count++;
1194
-        }
1195
-
1196
-        return $post_meta_info;
1197
-    else:
1198
-        return false;
1199
-    endif;
1190
+					array($count, $cf)
1191
+				)
1192
+			);
1193
+			$count++;
1194
+		}
1195
+
1196
+		return $post_meta_info;
1197
+	else:
1198
+		return false;
1199
+	endif;
1200 1200
 }
1201 1201
 
1202 1202
 function geodir_get_cf_value($cf) {
1203
-    global $gd_session;
1204
-    $value = '';
1205
-    if (is_admin()) {
1206
-        global $post;
1207
-
1208
-        if (isset($_REQUEST['post'])) {
1209
-            $_REQUEST['pid'] = (int)$_REQUEST['post'];
1210
-        }
1211
-    }
1212
-
1213
-    if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1214
-        $post = $gd_ses_listing;
1215
-        $value = isset($post[$cf['name']]) ? $post[$cf['name']] : '';
1216
-    } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
1217
-        $value = geodir_get_post_meta($_REQUEST['pid'], $cf['name'], true);
1218
-    } else {
1219
-        if ($value == '') {
1220
-            $value = $cf['default'];
1221
-        }
1222
-    }
1203
+	global $gd_session;
1204
+	$value = '';
1205
+	if (is_admin()) {
1206
+		global $post;
1207
+
1208
+		if (isset($_REQUEST['post'])) {
1209
+			$_REQUEST['pid'] = (int)$_REQUEST['post'];
1210
+		}
1211
+	}
1212
+
1213
+	if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1214
+		$post = $gd_ses_listing;
1215
+		$value = isset($post[$cf['name']]) ? $post[$cf['name']] : '';
1216
+	} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
1217
+		$value = geodir_get_post_meta($_REQUEST['pid'], $cf['name'], true);
1218
+	} else {
1219
+		if ($value == '') {
1220
+			$value = $cf['default'];
1221
+		}
1222
+	}
1223 1223
     
1224
-    /**
1225
-     * Filter the custom field value.
1226
-     *
1227
-     * @since 1.6.20
1228
-     * 
1229
-     * @param mixed $value Custom field value.
1230
-     * @param array $cf Custom field info.
1231
-     */
1232
-    return apply_filters( 'geodir_get_cf_value', $value, $cf );
1224
+	/**
1225
+	 * Filter the custom field value.
1226
+	 *
1227
+	 * @since 1.6.20
1228
+	 * 
1229
+	 * @param mixed $value Custom field value.
1230
+	 * @param array $cf Custom field info.
1231
+	 */
1232
+	return apply_filters( 'geodir_get_cf_value', $value, $cf );
1233 1233
 }
1234 1234
 
1235 1235
 /**
@@ -1248,422 +1248,422 @@  discard block
 block discarded – undo
1248 1248
  * @param string $post_type Optional. The wordpress post type.
1249 1249
  */
1250 1250
 function geodir_get_custom_fields_html($package_id = '', $default = 'custom', $post_type = 'gd_place') {
1251
-    global $is_default, $mapzoom, $gd_session;
1251
+	global $is_default, $mapzoom, $gd_session;
1252 1252
 
1253
-    $listing_type = $post_type;
1253
+	$listing_type = $post_type;
1254 1254
 
1255
-    $custom_fields = geodir_post_custom_fields($package_id, $default, $post_type);
1255
+	$custom_fields = geodir_post_custom_fields($package_id, $default, $post_type);
1256 1256
 
1257
-    foreach ($custom_fields as $key => $val) {
1258
-        if(isset($val['extra_fields'])){$extra_fields = $val['extra_fields'];}
1259
-        $val = stripslashes_deep($val); // strip slashes from labels
1260
-        if(isset($val['extra_fields'])){$val['extra_fields'] = $extra_fields;}
1257
+	foreach ($custom_fields as $key => $val) {
1258
+		if(isset($val['extra_fields'])){$extra_fields = $val['extra_fields'];}
1259
+		$val = stripslashes_deep($val); // strip slashes from labels
1260
+		if(isset($val['extra_fields'])){$val['extra_fields'] = $extra_fields;}
1261 1261
 
1262
-        $name = $val['name'];
1263
-        $type = $val['type'];
1264
-        $is_default = $val['is_default'];
1262
+		$name = $val['name'];
1263
+		$type = $val['type'];
1264
+		$is_default = $val['is_default'];
1265 1265
 
1266
-        /* field available to site admin only for edit */
1267
-        $for_admin_use = isset($val['for_admin_use']) && (int)$val['for_admin_use'] == 1 ? true : false;
1268
-        if ($for_admin_use && !is_super_admin()) {
1269
-            continue;
1270
-        }
1266
+		/* field available to site admin only for edit */
1267
+		$for_admin_use = isset($val['for_admin_use']) && (int)$val['for_admin_use'] == 1 ? true : false;
1268
+		if ($for_admin_use && !is_super_admin()) {
1269
+			continue;
1270
+		}
1271 1271
 
1272
-        if (is_admin()) {
1273
-            global $post;
1272
+		if (is_admin()) {
1273
+			global $post;
1274 1274
 
1275
-            if (isset($_REQUEST['post']))
1276
-                $_REQUEST['pid'] = $_REQUEST['post'];
1277
-        }
1275
+			if (isset($_REQUEST['post']))
1276
+				$_REQUEST['pid'] = $_REQUEST['post'];
1277
+		}
1278 1278
 
1279 1279
         
1280 1280
 
1281
-        /**
1282
-         * Called before the custom fields info is output for submitting a post.
1283
-         *
1284
-         * Used dynamic hook type geodir_before_custom_form_field_$name.
1285
-         *
1286
-         * @since 1.0.0
1287
-         * @param string $listing_type The post post type.
1288
-         * @param int $package_id The price package ID for the post.
1289
-         * @param array $val The settings array for the field. {@see geodir_custom_field_save()}.
1290
-         * @see 'geodir_after_custom_form_field_$name'
1291
-         */
1292
-        do_action('geodir_before_custom_form_field_' . $name, $listing_type, $package_id, $val);
1293
-
1294
-
1295
-        $custom_field = $val;
1296
-        $html ='';
1297
-        /**
1298
-         * Filter the output for custom fields.
1299
-         *
1300
-         * Here we can remove or add new functions depending on the field type.
1301
-         *
1302
-         * @param string $html The html to be filtered (blank).
1303
-         * @param array $custom_field The custom field array values.
1304
-         */
1305
-        echo apply_filters("geodir_custom_field_input_{$type}",$html,$custom_field);
1306
-
1307
-
1308
-
1309
-        /**
1310
-         * Called after the custom fields info is output for submitting a post.
1311
-         *
1312
-         * Used dynamic hook type geodir_after_custom_form_field_$name.
1313
-         *
1314
-         * @since 1.0.0
1315
-         * @param string $listing_type The post post type.
1316
-         * @param int $package_id The price package ID for the post.
1317
-         * @param array $val The settings array for the field. {@see geodir_custom_field_save()}.
1318
-         * @see 'geodir_before_custom_form_field_$name'
1319
-         */
1320
-        do_action('geodir_after_custom_form_field_' . $name, $listing_type, $package_id, $val);
1321
-
1322
-    }
1281
+		/**
1282
+		 * Called before the custom fields info is output for submitting a post.
1283
+		 *
1284
+		 * Used dynamic hook type geodir_before_custom_form_field_$name.
1285
+		 *
1286
+		 * @since 1.0.0
1287
+		 * @param string $listing_type The post post type.
1288
+		 * @param int $package_id The price package ID for the post.
1289
+		 * @param array $val The settings array for the field. {@see geodir_custom_field_save()}.
1290
+		 * @see 'geodir_after_custom_form_field_$name'
1291
+		 */
1292
+		do_action('geodir_before_custom_form_field_' . $name, $listing_type, $package_id, $val);
1293
+
1294
+
1295
+		$custom_field = $val;
1296
+		$html ='';
1297
+		/**
1298
+		 * Filter the output for custom fields.
1299
+		 *
1300
+		 * Here we can remove or add new functions depending on the field type.
1301
+		 *
1302
+		 * @param string $html The html to be filtered (blank).
1303
+		 * @param array $custom_field The custom field array values.
1304
+		 */
1305
+		echo apply_filters("geodir_custom_field_input_{$type}",$html,$custom_field);
1306
+
1307
+
1308
+
1309
+		/**
1310
+		 * Called after the custom fields info is output for submitting a post.
1311
+		 *
1312
+		 * Used dynamic hook type geodir_after_custom_form_field_$name.
1313
+		 *
1314
+		 * @since 1.0.0
1315
+		 * @param string $listing_type The post post type.
1316
+		 * @param int $package_id The price package ID for the post.
1317
+		 * @param array $val The settings array for the field. {@see geodir_custom_field_save()}.
1318
+		 * @see 'geodir_before_custom_form_field_$name'
1319
+		 */
1320
+		do_action('geodir_after_custom_form_field_' . $name, $listing_type, $package_id, $val);
1321
+
1322
+	}
1323 1323
 
1324 1324
 }
1325 1325
 
1326 1326
 
1327 1327
 if (!function_exists('geodir_get_field_infoby')) {
1328
-    /**
1329
-     * Get custom field using key and value.
1330
-     *
1331
-     * @since 1.0.0
1332
-     * @package GeoDirectory
1333
-     * @global object $wpdb WordPress Database object.
1334
-     * @param string $key The key you want to look for.
1335
-     * @param string $value The value of the key you want to look for.
1336
-     * @param string $geodir_post_type The post type.
1337
-     * @return bool|mixed Returns field info when available. otherwise returns false.
1338
-     */
1339
-    function geodir_get_field_infoby($key = '', $value = '', $geodir_post_type = '')
1340
-    {
1341
-
1342
-        global $wpdb;
1343
-
1344
-        $filter = $wpdb->get_row(
1345
-            $wpdb->prepare(
1346
-                "SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND " . $key . "='" . $value . "'",
1347
-                array($geodir_post_type)
1348
-            )
1349
-        );
1350
-
1351
-        if ($filter) {
1352
-            return $filter;
1353
-        } else {
1354
-            return false;
1355
-        }
1356
-
1357
-    }
1328
+	/**
1329
+	 * Get custom field using key and value.
1330
+	 *
1331
+	 * @since 1.0.0
1332
+	 * @package GeoDirectory
1333
+	 * @global object $wpdb WordPress Database object.
1334
+	 * @param string $key The key you want to look for.
1335
+	 * @param string $value The value of the key you want to look for.
1336
+	 * @param string $geodir_post_type The post type.
1337
+	 * @return bool|mixed Returns field info when available. otherwise returns false.
1338
+	 */
1339
+	function geodir_get_field_infoby($key = '', $value = '', $geodir_post_type = '')
1340
+	{
1341
+
1342
+		global $wpdb;
1343
+
1344
+		$filter = $wpdb->get_row(
1345
+			$wpdb->prepare(
1346
+				"SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND " . $key . "='" . $value . "'",
1347
+				array($geodir_post_type)
1348
+			)
1349
+		);
1350
+
1351
+		if ($filter) {
1352
+			return $filter;
1353
+		} else {
1354
+			return false;
1355
+		}
1356
+
1357
+	}
1358 1358
 }
1359 1359
 
1360 1360
 
1361 1361
 function geodir_field_icon_proccess($cf){
1362 1362
 
1363 1363
 
1364
-    if (strpos($cf['field_icon'], 'http') !== false) {
1365
-        $field_icon = ' background: url(' . $cf['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
1366
-    } elseif (strpos($cf['field_icon'], 'fa fa-') !== false) {
1367
-        $field_icon = '<i class="' . $cf['field_icon'] . '"></i>';
1368
-    }else{
1369
-        $field_icon = $cf['field_icon'];
1370
-    }
1364
+	if (strpos($cf['field_icon'], 'http') !== false) {
1365
+		$field_icon = ' background: url(' . $cf['field_icon'] . ') no-repeat left center;background-size:18px 18px;padding-left: 21px;';
1366
+	} elseif (strpos($cf['field_icon'], 'fa fa-') !== false) {
1367
+		$field_icon = '<i class="' . $cf['field_icon'] . '"></i>';
1368
+	}else{
1369
+		$field_icon = $cf['field_icon'];
1370
+	}
1371 1371
 
1372
-    return $field_icon;
1372
+	return $field_icon;
1373 1373
 }
1374 1374
 
1375 1375
 if (!function_exists('geodir_show_listing_info')) {
1376
-    /**
1377
-     * Show listing info depending on field location.
1378
-     *
1379
-     * @since 1.0.0
1380
-     * @since 1.5.7 Custom fields option values added to db translation.
1381
-     *              Changes to display url fields title.
1382
-     * @package GeoDirectory
1383
-     * @global object $wpdb WordPress Database object.
1384
-     * @global object $post The current post object.
1385
-     * @global bool $send_to_friend True if send to friend link already rendered. Otherwise false.
1386
-     *
1387
-     * @param string $fields_location In which page you are going to place this custom fields?. Ex: listing, detail etc.
1388
-     * @return string Returns listing info html.
1389
-     */
1390
-    function geodir_show_listing_info($fields_location = '') {
1391
-        global $post, $preview, $wpdb, $send_to_friend;
1392
-
1393
-        $package_info = array();
1394
-
1395
-        $package_info = geodir_post_package_info($package_info, $post);
1396
-        $post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
1397
-        $p_type = !empty($post->post_type) ? $post->post_type : geodir_get_current_posttype();
1398
-        $send_to_friend = false;
1399
-
1400
-        ob_start();
1401
-        $fields_info = geodir_post_custom_fields($post_package_id, 'all', $p_type, $fields_location);
1402
-
1403
-        if (!empty($fields_info)) {
1404
-            $post = stripslashes_deep($post); // strip slashes
1376
+	/**
1377
+	 * Show listing info depending on field location.
1378
+	 *
1379
+	 * @since 1.0.0
1380
+	 * @since 1.5.7 Custom fields option values added to db translation.
1381
+	 *              Changes to display url fields title.
1382
+	 * @package GeoDirectory
1383
+	 * @global object $wpdb WordPress Database object.
1384
+	 * @global object $post The current post object.
1385
+	 * @global bool $send_to_friend True if send to friend link already rendered. Otherwise false.
1386
+	 *
1387
+	 * @param string $fields_location In which page you are going to place this custom fields?. Ex: listing, detail etc.
1388
+	 * @return string Returns listing info html.
1389
+	 */
1390
+	function geodir_show_listing_info($fields_location = '') {
1391
+		global $post, $preview, $wpdb, $send_to_friend;
1392
+
1393
+		$package_info = array();
1394
+
1395
+		$package_info = geodir_post_package_info($package_info, $post);
1396
+		$post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
1397
+		$p_type = !empty($post->post_type) ? $post->post_type : geodir_get_current_posttype();
1398
+		$send_to_friend = false;
1399
+
1400
+		ob_start();
1401
+		$fields_info = geodir_post_custom_fields($post_package_id, 'all', $p_type, $fields_location);
1402
+
1403
+		if (!empty($fields_info)) {
1404
+			$post = stripslashes_deep($post); // strip slashes
1405 1405
             
1406
-            //echo '<div class="geodir-company_info field-group">';
1407
-            global $field_set_start;
1408
-            $field_set_start = 0;
1409
-
1410
-
1411
-
1412
-            foreach ($fields_info as $type) {
1413
-                if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
1414
-                $type = stripslashes_deep($type); // strip slashes
1415
-                if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
1416
-                $html = '';
1417
-                $field_icon = geodir_field_icon_proccess($type);
1418
-                $filed_type = $type['type'];
1419
-                $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
1420
-                if($html_var=='post'){$html_var='post_address';}
1421
-
1422
-                /**
1423
-                 * Filter the output for custom fields.
1424
-                 *
1425
-                 * Here we can remove or add new functions depending on the field type.
1426
-                 *
1427
-                 * @param string $html The html to be filtered (blank).
1428
-                 * @param string $fields_location The location the field is to be show.
1429
-                 * @param array $type The array of field values.
1430
-                 */
1431
-                $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
1432
-
1433
-                $variables_array = array();
1434
-
1435
-
1436
-                if ($type['type'] != 'fieldset'):
1437
-                    $variables_array['post_id'] = !empty($post->ID) ? $post->ID : (!empty($post->pid) ? $post->pid : NULL);
1438
-                    $variables_array['label'] = __($type['site_title'], 'geodirectory');
1439
-                    $variables_array['value'] = '';
1440
-                    if (isset($post->{$type['htmlvar_name']}))
1441
-                        $variables_array['value'] = $post->{$type['htmlvar_name']};
1442
-                endif;
1443
-
1444
-
1445
-                if ($html):
1446
-
1447
-                    /**
1448
-                     * Called before a custom fields is output on the frontend.
1449
-                     *
1450
-                     * @since 1.0.0
1451
-                     * @param string $html_var The HTML variable name for the field.
1452
-                     */
1453
-                    do_action("geodir_before_show_{$html_var}");
1454
-                    /**
1455
-                     * Filter custom field output.
1456
-                     *
1457
-                     * @since 1.0.0
1458
-                     *
1459
-                     * @param string $html_var The HTML variable name for the field.
1460
-                     * @param string $html Custom field unfiltered HTML.
1461
-                     * @param array $variables_array Custom field variables array.
1462
-                     */
1463
-                    if ($html) echo apply_filters("geodir_show_{$html_var}", $html, $variables_array);
1464
-
1465
-                    /**
1466
-                     * Called after a custom fields is output on the frontend.
1467
-                     *
1468
-                     * @since 1.0.0
1469
-                     * @param string $html_var The HTML variable name for the field.
1470
-                     */
1471
-                    do_action("geodir_after_show_{$html_var}");
1472
-
1473
-                endif;
1474
-
1475
-            }
1476
-
1477
-            //echo '</div>';
1478
-
1479
-        }
1480
-
1481
-
1482
-        $html = ob_get_clean();
1483
-
1484
-        /**
1485
-         * Filter the custom fields over all output.
1486
-         *
1487
-         * @param string $html The html of the custom fields.
1488
-         * @param string $fields_location The location the fields are being output.
1489
-         * @since 1.6.9
1490
-         */
1491
-        return apply_filters('geodir_show_listing_info',$html,$fields_location);
1492
-
1493
-    }
1406
+			//echo '<div class="geodir-company_info field-group">';
1407
+			global $field_set_start;
1408
+			$field_set_start = 0;
1409
+
1410
+
1411
+
1412
+			foreach ($fields_info as $type) {
1413
+				if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
1414
+				$type = stripslashes_deep($type); // strip slashes
1415
+				if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
1416
+				$html = '';
1417
+				$field_icon = geodir_field_icon_proccess($type);
1418
+				$filed_type = $type['type'];
1419
+				$html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
1420
+				if($html_var=='post'){$html_var='post_address';}
1421
+
1422
+				/**
1423
+				 * Filter the output for custom fields.
1424
+				 *
1425
+				 * Here we can remove or add new functions depending on the field type.
1426
+				 *
1427
+				 * @param string $html The html to be filtered (blank).
1428
+				 * @param string $fields_location The location the field is to be show.
1429
+				 * @param array $type The array of field values.
1430
+				 */
1431
+				$html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
1432
+
1433
+				$variables_array = array();
1434
+
1435
+
1436
+				if ($type['type'] != 'fieldset'):
1437
+					$variables_array['post_id'] = !empty($post->ID) ? $post->ID : (!empty($post->pid) ? $post->pid : NULL);
1438
+					$variables_array['label'] = __($type['site_title'], 'geodirectory');
1439
+					$variables_array['value'] = '';
1440
+					if (isset($post->{$type['htmlvar_name']}))
1441
+						$variables_array['value'] = $post->{$type['htmlvar_name']};
1442
+				endif;
1443
+
1444
+
1445
+				if ($html):
1446
+
1447
+					/**
1448
+					 * Called before a custom fields is output on the frontend.
1449
+					 *
1450
+					 * @since 1.0.0
1451
+					 * @param string $html_var The HTML variable name for the field.
1452
+					 */
1453
+					do_action("geodir_before_show_{$html_var}");
1454
+					/**
1455
+					 * Filter custom field output.
1456
+					 *
1457
+					 * @since 1.0.0
1458
+					 *
1459
+					 * @param string $html_var The HTML variable name for the field.
1460
+					 * @param string $html Custom field unfiltered HTML.
1461
+					 * @param array $variables_array Custom field variables array.
1462
+					 */
1463
+					if ($html) echo apply_filters("geodir_show_{$html_var}", $html, $variables_array);
1464
+
1465
+					/**
1466
+					 * Called after a custom fields is output on the frontend.
1467
+					 *
1468
+					 * @since 1.0.0
1469
+					 * @param string $html_var The HTML variable name for the field.
1470
+					 */
1471
+					do_action("geodir_after_show_{$html_var}");
1472
+
1473
+				endif;
1474
+
1475
+			}
1476
+
1477
+			//echo '</div>';
1478
+
1479
+		}
1480
+
1481
+
1482
+		$html = ob_get_clean();
1483
+
1484
+		/**
1485
+		 * Filter the custom fields over all output.
1486
+		 *
1487
+		 * @param string $html The html of the custom fields.
1488
+		 * @param string $fields_location The location the fields are being output.
1489
+		 * @since 1.6.9
1490
+		 */
1491
+		return apply_filters('geodir_show_listing_info',$html,$fields_location);
1492
+
1493
+	}
1494 1494
 }
1495 1495
 
1496 1496
 if (!function_exists('geodir_default_date_format')) {
1497
-    /**
1498
-     * Returns default date format.
1499
-     *
1500
-     * @since 1.0.0
1501
-     * @package GeoDirectory
1502
-     * @return mixed|string|void Returns default date format.
1503
-     */
1504
-    function geodir_default_date_format()
1505
-    {
1506
-        if ($format = get_option('date_format'))
1507
-            return $format;
1508
-        else
1509
-            return 'dd-mm-yy';
1510
-    }
1497
+	/**
1498
+	 * Returns default date format.
1499
+	 *
1500
+	 * @since 1.0.0
1501
+	 * @package GeoDirectory
1502
+	 * @return mixed|string|void Returns default date format.
1503
+	 */
1504
+	function geodir_default_date_format()
1505
+	{
1506
+		if ($format = get_option('date_format'))
1507
+			return $format;
1508
+		else
1509
+			return 'dd-mm-yy';
1510
+	}
1511 1511
 }
1512 1512
 
1513 1513
 if (!function_exists('geodir_get_formated_date')) {
1514
-    /**
1515
-     * Returns formatted date.
1516
-     *
1517
-     * @since 1.0.0
1518
-     * @package GeoDirectory
1519
-     * @param string $date Date string to convert.
1520
-     * @return bool|int|string Returns formatted date.
1521
-     */
1522
-    function geodir_get_formated_date($date)
1523
-    {
1524
-        return mysql2date(get_option('date_format'), $date);
1525
-    }
1514
+	/**
1515
+	 * Returns formatted date.
1516
+	 *
1517
+	 * @since 1.0.0
1518
+	 * @package GeoDirectory
1519
+	 * @param string $date Date string to convert.
1520
+	 * @return bool|int|string Returns formatted date.
1521
+	 */
1522
+	function geodir_get_formated_date($date)
1523
+	{
1524
+		return mysql2date(get_option('date_format'), $date);
1525
+	}
1526 1526
 }
1527 1527
 
1528 1528
 if (!function_exists('geodir_get_formated_time')) {
1529
-    /**
1530
-     * Returns formatted time.
1531
-     *
1532
-     * @since 1.0.0
1533
-     * @package GeoDirectory
1534
-     * @param string $time Time string to convert.
1535
-     * @return bool|int|string Returns formatted time.
1536
-     */
1537
-    function geodir_get_formated_time($time)
1538
-    {
1539
-        return mysql2date(get_option('time_format'), $time, $translate = true);
1540
-    }
1529
+	/**
1530
+	 * Returns formatted time.
1531
+	 *
1532
+	 * @since 1.0.0
1533
+	 * @package GeoDirectory
1534
+	 * @param string $time Time string to convert.
1535
+	 * @return bool|int|string Returns formatted time.
1536
+	 */
1537
+	function geodir_get_formated_time($time)
1538
+	{
1539
+		return mysql2date(get_option('time_format'), $time, $translate = true);
1540
+	}
1541 1541
 }
1542 1542
 
1543 1543
 
1544 1544
 if (!function_exists('geodir_save_post_file_fields')) {
1545
-    /**
1546
-     * Save post file fields
1547
-     *
1548
-     * @since 1.0.0
1549
-     * @since 1.4.7 Added `$extra_fields` parameter.
1550
-     * @package GeoDirectory
1551
-     * @global object $wpdb WordPress Database object.
1552
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1553
-     * @global object $current_user Current user object.
1554
-     * @param int $post_id
1555
-     * @param string $field_id
1556
-     * @param array $post_image
1557
-     * @param array $extra_fields Array of extra fields.
1558
-     */
1559
-    function geodir_save_post_file_fields($post_id = 0, $field_id = '', $post_image = array(), $extra_fields = array())
1560
-    {
1545
+	/**
1546
+	 * Save post file fields
1547
+	 *
1548
+	 * @since 1.0.0
1549
+	 * @since 1.4.7 Added `$extra_fields` parameter.
1550
+	 * @package GeoDirectory
1551
+	 * @global object $wpdb WordPress Database object.
1552
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1553
+	 * @global object $current_user Current user object.
1554
+	 * @param int $post_id
1555
+	 * @param string $field_id
1556
+	 * @param array $post_image
1557
+	 * @param array $extra_fields Array of extra fields.
1558
+	 */
1559
+	function geodir_save_post_file_fields($post_id = 0, $field_id = '', $post_image = array(), $extra_fields = array())
1560
+	{
1561 1561
 
1562
-        global $wpdb, $plugin_prefix, $current_user;
1562
+		global $wpdb, $plugin_prefix, $current_user;
1563 1563
 
1564
-        $post_type = get_post_type($post_id);
1565
-        //echo $field_id; exit;
1566
-        $table = $plugin_prefix . $post_type . '_detail';
1564
+		$post_type = get_post_type($post_id);
1565
+		//echo $field_id; exit;
1566
+		$table = $plugin_prefix . $post_type . '_detail';
1567 1567
 
1568
-        $postcurr_images = array();
1569
-        $postcurr_images = geodir_get_post_meta($post_id, $field_id, true);
1570
-        $file_urls = '';
1568
+		$postcurr_images = array();
1569
+		$postcurr_images = geodir_get_post_meta($post_id, $field_id, true);
1570
+		$file_urls = '';
1571 1571
 
1572
-        if (!empty($post_image)) {
1572
+		if (!empty($post_image)) {
1573 1573
 
1574
-            $invalid_files = array();
1574
+			$invalid_files = array();
1575 1575
 
1576
-            //Get and remove all old images of post from database to set by new order
1577
-            $geodir_uploaddir = '';
1578
-            $uploads = wp_upload_dir();
1579
-            $uploads_dir = $uploads['path'];
1576
+			//Get and remove all old images of post from database to set by new order
1577
+			$geodir_uploaddir = '';
1578
+			$uploads = wp_upload_dir();
1579
+			$uploads_dir = $uploads['path'];
1580 1580
 
1581
-            $geodir_uploadpath = $uploads['path'];
1582
-            $geodir_uploadurl = $uploads['url'];
1583
-            $sub_dir = $uploads['subdir'];
1581
+			$geodir_uploadpath = $uploads['path'];
1582
+			$geodir_uploadurl = $uploads['url'];
1583
+			$sub_dir = $uploads['subdir'];
1584 1584
 
1585
-            $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : '';
1585
+			$allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? $extra_fields['gd_file_types'] : '';
1586 1586
 
1587
-            for ($m = 0; $m < count($post_image); $m++) {
1587
+			for ($m = 0; $m < count($post_image); $m++) {
1588 1588
 
1589
-                /* --------- start ------- */
1589
+				/* --------- start ------- */
1590 1590
 
1591
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM " . $table . " WHERE $field_id = %s AND post_id = %d", array($post_image[$m], $post_id)))) {
1591
+				if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM " . $table . " WHERE $field_id = %s AND post_id = %d", array($post_image[$m], $post_id)))) {
1592 1592
 
1593 1593
 
1594
-                    $curr_img_url = $post_image[$m];
1595
-                    $image_name_arr = explode('/', $curr_img_url);
1596
-                    $curr_img_dir = $image_name_arr[count($image_name_arr) - 2];
1597
-                    $filename = end($image_name_arr);
1598
-                    $img_name_arr = explode('.', $filename);
1594
+					$curr_img_url = $post_image[$m];
1595
+					$image_name_arr = explode('/', $curr_img_url);
1596
+					$curr_img_dir = $image_name_arr[count($image_name_arr) - 2];
1597
+					$filename = end($image_name_arr);
1598
+					$img_name_arr = explode('.', $filename);
1599 1599
 
1600
-                    $arr_file_type = wp_check_filetype($filename);
1600
+					$arr_file_type = wp_check_filetype($filename);
1601 1601
 
1602
-                    if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) {
1603
-                        continue;
1604
-                    }
1602
+					if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) {
1603
+						continue;
1604
+					}
1605 1605
 
1606
-                    $uploaded_file_type = $arr_file_type['type'];
1607
-                    $uploaded_file_ext = $arr_file_type['ext'];
1606
+					$uploaded_file_type = $arr_file_type['type'];
1607
+					$uploaded_file_ext = $arr_file_type['ext'];
1608 1608
 
1609
-                    if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) {
1610
-                        continue; // Invalid file type.
1611
-                    }
1609
+					if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) {
1610
+						continue; // Invalid file type.
1611
+					}
1612 1612
 
1613
-                    // Set an array containing a list of acceptable formats
1614
-                    //$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/octet-stream', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain');
1613
+					// Set an array containing a list of acceptable formats
1614
+					//$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/octet-stream', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain');
1615 1615
 
1616
-                    if (!function_exists('wp_handle_upload'))
1617
-                        require_once(ABSPATH . 'wp-admin/includes/file.php');
1616
+					if (!function_exists('wp_handle_upload'))
1617
+						require_once(ABSPATH . 'wp-admin/includes/file.php');
1618 1618
 
1619
-                    if (!is_dir($geodir_uploadpath))
1620
-                        mkdir($geodir_uploadpath);
1619
+					if (!is_dir($geodir_uploadpath))
1620
+						mkdir($geodir_uploadpath);
1621 1621
 
1622
-                    $new_name = $post_id . '_' . $field_id . '_' . $img_name_arr[0] . '.' . $img_name_arr[1];
1623
-                    $explode_sub_dir = explode("/", $sub_dir);
1624
-                    if ($curr_img_dir == end($explode_sub_dir)) {
1625
-                        $img_path = $geodir_uploadpath . '/' . $filename;
1626
-                        $img_url = $geodir_uploadurl . '/' . $filename;
1627
-                    } else {
1628
-                        $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1629
-                        $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1630
-                    }
1622
+					$new_name = $post_id . '_' . $field_id . '_' . $img_name_arr[0] . '.' . $img_name_arr[1];
1623
+					$explode_sub_dir = explode("/", $sub_dir);
1624
+					if ($curr_img_dir == end($explode_sub_dir)) {
1625
+						$img_path = $geodir_uploadpath . '/' . $filename;
1626
+						$img_url = $geodir_uploadurl . '/' . $filename;
1627
+					} else {
1628
+						$img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1629
+						$img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1630
+					}
1631 1631
 
1632
-                    $uploaded_file = '';
1633
-                    if (file_exists($img_path))
1634
-                        $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1632
+					$uploaded_file = '';
1633
+					if (file_exists($img_path))
1634
+						$uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1635 1635
 
1636
-                    if ($curr_img_dir != $geodir_uploaddir) {
1637
-                        if (file_exists($img_path))
1638
-                            unlink($img_path);
1639
-                    }
1636
+					if ($curr_img_dir != $geodir_uploaddir) {
1637
+						if (file_exists($img_path))
1638
+							unlink($img_path);
1639
+					}
1640 1640
 
1641
-                    if (!empty($uploaded_file))
1642
-                        $file_urls = $geodir_uploadurl . '/' . $new_name;
1641
+					if (!empty($uploaded_file))
1642
+						$file_urls = $geodir_uploadurl . '/' . $new_name;
1643 1643
 
1644
-                } else {
1645
-                    $file_urls = $post_image[$m];
1646
-                }
1647
-            }
1644
+				} else {
1645
+					$file_urls = $post_image[$m];
1646
+				}
1647
+			}
1648 1648
 
1649 1649
 
1650
-        }
1650
+		}
1651 1651
 
1652
-        //Remove all old attachments and temp images
1653
-        if (!empty($postcurr_images)) {
1652
+		//Remove all old attachments and temp images
1653
+		if (!empty($postcurr_images)) {
1654 1654
 
1655
-            if ($file_urls != $postcurr_images) {
1656
-                $invalid_files[] = (object)array('src' => $postcurr_images);
1657
-                $invalid_files = (object)$invalid_files;
1658
-            }
1659
-        }
1655
+			if ($file_urls != $postcurr_images) {
1656
+				$invalid_files[] = (object)array('src' => $postcurr_images);
1657
+				$invalid_files = (object)$invalid_files;
1658
+			}
1659
+		}
1660 1660
 
1661
-        geodir_save_post_meta($post_id, $field_id, $file_urls);
1661
+		geodir_save_post_meta($post_id, $field_id, $file_urls);
1662 1662
 
1663
-        if (!empty($invalid_files))
1664
-            geodir_remove_attachments($invalid_files);
1663
+		if (!empty($invalid_files))
1664
+			geodir_remove_attachments($invalid_files);
1665 1665
 
1666
-    }
1666
+	}
1667 1667
 }
1668 1668
 
1669 1669
 
@@ -1678,76 +1678,76 @@  discard block
 block discarded – undo
1678 1678
  */
1679 1679
 function geodir_custom_upload_mimes($existing_mimes = array())
1680 1680
 {
1681
-    $existing_mimes['wif'] = 'text/plain';
1682
-    $existing_mimes['jpg|jpeg'] = 'image/jpeg';
1683
-    $existing_mimes['gif'] = 'image/gif';
1684
-    $existing_mimes['png'] = 'image/png';
1685
-    $existing_mimes['pdf'] = 'application/pdf';
1686
-    $existing_mimes['txt'] = 'text/text';
1687
-    $existing_mimes['csv'] = 'application/octet-stream';
1688
-    $existing_mimes['doc'] = 'application/msword';
1689
-    $existing_mimes['xla|xls|xlt|xlw'] = 'application/vnd.ms-excel';
1690
-    $existing_mimes['docx'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
1691
-    $existing_mimes['xlsx'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
1692
-    return $existing_mimes;
1681
+	$existing_mimes['wif'] = 'text/plain';
1682
+	$existing_mimes['jpg|jpeg'] = 'image/jpeg';
1683
+	$existing_mimes['gif'] = 'image/gif';
1684
+	$existing_mimes['png'] = 'image/png';
1685
+	$existing_mimes['pdf'] = 'application/pdf';
1686
+	$existing_mimes['txt'] = 'text/text';
1687
+	$existing_mimes['csv'] = 'application/octet-stream';
1688
+	$existing_mimes['doc'] = 'application/msword';
1689
+	$existing_mimes['xla|xls|xlt|xlw'] = 'application/vnd.ms-excel';
1690
+	$existing_mimes['docx'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document';
1691
+	$existing_mimes['xlsx'] = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet';
1692
+	return $existing_mimes;
1693 1693
 }
1694 1694
 
1695 1695
 if (!function_exists('geodir_plupload_action')) {
1696 1696
 
1697
-    /**
1698
-     * Get upload directory path details
1699
-     *
1700
-     * @since 1.0.0
1701
-     * @package GeoDirectory
1702
-     * @global object $current_user Current user object.
1703
-     * @param array $upload Array of upload directory data with keys of 'path','url', 'subdir, 'basedir', and 'error'.
1704
-     * @return mixed Returns upload directory details as an array.
1705
-     */
1706
-    function geodir_upload_dir($upload)
1707
-    {
1708
-        global $current_user;
1709
-        $upload['subdir'] = $upload['subdir'] . '/temp_' . $current_user->data->ID;
1710
-        $upload['path'] = $upload['basedir'] . $upload['subdir'];
1711
-        $upload['url'] = $upload['baseurl'] . $upload['subdir'];
1712
-        return $upload;
1713
-    }
1714
-
1715
-    /**
1716
-     * Handles place file and image upload.
1717
-     *
1718
-     * @since 1.0.0
1719
-     * @package GeoDirectory
1720
-     */
1721
-    function geodir_plupload_action()
1722
-    {
1723
-        // check ajax nonce
1724
-        $imgid = $_POST["imgid"];
1725
-
1726
-        check_ajax_referer($imgid . 'pluploadan');
1727
-
1728
-        // handle custom file uploaddir
1729
-        add_filter('upload_dir', 'geodir_upload_dir');
1730
-
1731
-        // change file orientation if needed
1732
-        $fixed_file = geodir_exif($_FILES[$imgid . 'async-upload']);
1733
-
1734
-        // handle file upload
1735
-        $status = wp_handle_upload($fixed_file, array('test_form' => true, 'action' => 'plupload_action'));
1736
-        // remove handle custom file uploaddir
1737
-        remove_filter('upload_dir', 'geodir_upload_dir');
1738
-
1739
-        if(!isset($status['url']) && isset($status['error'])){
1740
-            print_r($status);
1741
-        }
1742
-
1743
-        // send the uploaded file url in response
1744
-        if (isset($status['url'])) {
1745
-            echo $status['url'];
1746
-        } else {
1747
-            echo 'x';
1748
-        }
1749
-        exit;
1750
-    }
1697
+	/**
1698
+	 * Get upload directory path details
1699
+	 *
1700
+	 * @since 1.0.0
1701
+	 * @package GeoDirectory
1702
+	 * @global object $current_user Current user object.
1703
+	 * @param array $upload Array of upload directory data with keys of 'path','url', 'subdir, 'basedir', and 'error'.
1704
+	 * @return mixed Returns upload directory details as an array.
1705
+	 */
1706
+	function geodir_upload_dir($upload)
1707
+	{
1708
+		global $current_user;
1709
+		$upload['subdir'] = $upload['subdir'] . '/temp_' . $current_user->data->ID;
1710
+		$upload['path'] = $upload['basedir'] . $upload['subdir'];
1711
+		$upload['url'] = $upload['baseurl'] . $upload['subdir'];
1712
+		return $upload;
1713
+	}
1714
+
1715
+	/**
1716
+	 * Handles place file and image upload.
1717
+	 *
1718
+	 * @since 1.0.0
1719
+	 * @package GeoDirectory
1720
+	 */
1721
+	function geodir_plupload_action()
1722
+	{
1723
+		// check ajax nonce
1724
+		$imgid = $_POST["imgid"];
1725
+
1726
+		check_ajax_referer($imgid . 'pluploadan');
1727
+
1728
+		// handle custom file uploaddir
1729
+		add_filter('upload_dir', 'geodir_upload_dir');
1730
+
1731
+		// change file orientation if needed
1732
+		$fixed_file = geodir_exif($_FILES[$imgid . 'async-upload']);
1733
+
1734
+		// handle file upload
1735
+		$status = wp_handle_upload($fixed_file, array('test_form' => true, 'action' => 'plupload_action'));
1736
+		// remove handle custom file uploaddir
1737
+		remove_filter('upload_dir', 'geodir_upload_dir');
1738
+
1739
+		if(!isset($status['url']) && isset($status['error'])){
1740
+			print_r($status);
1741
+		}
1742
+
1743
+		// send the uploaded file url in response
1744
+		if (isset($status['url'])) {
1745
+			echo $status['url'];
1746
+		} else {
1747
+			echo 'x';
1748
+		}
1749
+		exit;
1750
+	}
1751 1751
 }
1752 1752
 
1753 1753
 /**
@@ -1762,17 +1762,17 @@  discard block
 block discarded – undo
1762 1762
  */
1763 1763
 function geodir_get_video($post_id)
1764 1764
 {
1765
-    global $wpdb, $plugin_prefix;
1765
+	global $wpdb, $plugin_prefix;
1766 1766
 
1767
-    $post_type = get_post_type($post_id);
1767
+	$post_type = get_post_type($post_id);
1768 1768
 
1769
-    $table = $plugin_prefix . $post_type . '_detail';
1769
+	$table = $plugin_prefix . $post_type . '_detail';
1770 1770
 
1771
-    $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_video FROM " . $table . " WHERE post_id=%d", array($post_id)));
1771
+	$results = $wpdb->get_results($wpdb->prepare("SELECT geodir_video FROM " . $table . " WHERE post_id=%d", array($post_id)));
1772 1772
 
1773
-    if ($results) {
1774
-        return $results[0]->geodir_video;
1775
-    }
1773
+	if ($results) {
1774
+		return $results[0]->geodir_video;
1775
+	}
1776 1776
 
1777 1777
 }
1778 1778
 
@@ -1788,40 +1788,40 @@  discard block
 block discarded – undo
1788 1788
  */
1789 1789
 function geodir_get_special_offers($post_id)
1790 1790
 {
1791
-    global $wpdb, $plugin_prefix;
1791
+	global $wpdb, $plugin_prefix;
1792 1792
 
1793
-    $post_type = get_post_type($post_id);
1793
+	$post_type = get_post_type($post_id);
1794 1794
 
1795
-    $table = $plugin_prefix . $post_type . '_detail';
1795
+	$table = $plugin_prefix . $post_type . '_detail';
1796 1796
 
1797
-    $results = $wpdb->get_results($wpdb->prepare("SELECT geodir_special_offers FROM " . $table . " WHERE post_id=%d", array($post_id)));
1797
+	$results = $wpdb->get_results($wpdb->prepare("SELECT geodir_special_offers FROM " . $table . " WHERE post_id=%d", array($post_id)));
1798 1798
 
1799
-    if ($results) {
1800
-        return $results[0]->geodir_special_offers;
1801
-    }
1799
+	if ($results) {
1800
+		return $results[0]->geodir_special_offers;
1801
+	}
1802 1802
 
1803 1803
 }
1804 1804
 
1805 1805
 if (!function_exists('geodir_max_upload_size')) {
1806
-    /**
1807
-     * Get max upload file size
1808
-     *
1809
-     * @since 1.0.0
1810
-     * @package GeoDirectory
1811
-     * @return mixed|void Returns max upload file size.
1812
-     */
1813
-    function geodir_max_upload_size()
1814
-    {
1815
-        $max_filesize = (float)get_option('geodir_upload_max_filesize', 2);
1816
-
1817
-        if ($max_filesize > 0 && $max_filesize < 1) {
1818
-            $max_filesize = (int)($max_filesize * 1024) . 'kb';
1819
-        } else {
1820
-            $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1821
-        }
1822
-        /** Filter documented in geodirectory-functions/general_functions.php **/
1823
-        return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1824
-    }
1806
+	/**
1807
+	 * Get max upload file size
1808
+	 *
1809
+	 * @since 1.0.0
1810
+	 * @package GeoDirectory
1811
+	 * @return mixed|void Returns max upload file size.
1812
+	 */
1813
+	function geodir_max_upload_size()
1814
+	{
1815
+		$max_filesize = (float)get_option('geodir_upload_max_filesize', 2);
1816
+
1817
+		if ($max_filesize > 0 && $max_filesize < 1) {
1818
+			$max_filesize = (int)($max_filesize * 1024) . 'kb';
1819
+		} else {
1820
+			$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1821
+		}
1822
+		/** Filter documented in geodirectory-functions/general_functions.php **/
1823
+		return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1824
+	}
1825 1825
 }
1826 1826
 
1827 1827
 
@@ -1839,33 +1839,33 @@  discard block
 block discarded – undo
1839 1839
  */
1840 1840
 function geodir_add_custom_sort_options($fields, $post_type)
1841 1841
 {
1842
-    global $wpdb;
1842
+	global $wpdb;
1843 1843
 
1844
-    if ($post_type != '') {
1844
+	if ($post_type != '') {
1845 1845
 
1846
-        $all_postypes = geodir_get_posttypes();
1846
+		$all_postypes = geodir_get_posttypes();
1847 1847
 
1848
-        if (in_array($post_type, $all_postypes)) {
1848
+		if (in_array($post_type, $all_postypes)) {
1849 1849
 
1850
-            $custom_fields = $wpdb->get_results(
1851
-                $wpdb->prepare(
1852
-                    "select post_type,data_type,field_type,site_title,htmlvar_name,field_icon from " . GEODIR_CUSTOM_FIELDS_TABLE . " where post_type = %s and is_active='1' and cat_sort='1' AND field_type != 'address' order by sort_order asc",
1853
-                    array($post_type)
1854
-                ), 'ARRAY_A'
1855
-            );
1850
+			$custom_fields = $wpdb->get_results(
1851
+				$wpdb->prepare(
1852
+					"select post_type,data_type,field_type,site_title,htmlvar_name,field_icon from " . GEODIR_CUSTOM_FIELDS_TABLE . " where post_type = %s and is_active='1' and cat_sort='1' AND field_type != 'address' order by sort_order asc",
1853
+					array($post_type)
1854
+				), 'ARRAY_A'
1855
+			);
1856 1856
 
1857
-            if (!empty($custom_fields)) {
1857
+			if (!empty($custom_fields)) {
1858 1858
 
1859
-                foreach ($custom_fields as $val) {
1860
-                    $fields[] = $val;
1861
-                }
1862
-            }
1859
+				foreach ($custom_fields as $val) {
1860
+					$fields[] = $val;
1861
+				}
1862
+			}
1863 1863
 
1864
-        }
1864
+		}
1865 1865
 
1866
-    }
1866
+	}
1867 1867
 
1868
-    return $fields;
1868
+	return $fields;
1869 1869
 }
1870 1870
 
1871 1871
 
@@ -1881,76 +1881,76 @@  discard block
 block discarded – undo
1881 1881
 function geodir_get_custom_sort_options($post_type = '')
1882 1882
 {
1883 1883
 
1884
-    global $wpdb;
1885
-
1886
-    if ($post_type != '') {
1887
-
1888
-        $all_postypes = geodir_get_posttypes();
1889
-
1890
-        if (!in_array($post_type, $all_postypes))
1891
-            return false;
1892
-
1893
-        $fields = array();
1894
-
1895
-        $fields[] = array(
1896
-            'post_type' => $post_type,
1897
-            'data_type' => '',
1898
-            'field_type' => 'random',
1899
-            'site_title' => 'Random',
1900
-            'htmlvar_name' => 'post_title',
1901
-            'field_icon' =>  'fa fa-random',
1902
-            'description' =>  __('Random sort (not recommended for large sites)', 'geodirectory')
1903
-        );
1904
-
1905
-        $fields[] = array(
1906
-            'post_type' => $post_type,
1907
-            'data_type' => '',
1908
-            'field_type' => 'datetime',
1909
-            'site_title' => __('Add date', 'geodirectory'),
1910
-            'htmlvar_name' => 'post_date',
1911
-            'field_icon' =>  'fa fa-calendar',
1912
-            'description' =>  __('Sort by date added', 'geodirectory')
1913
-        );
1914
-        $fields[] = array(
1915
-            'post_type' => $post_type,
1916
-            'data_type' => '',
1917
-            'field_type' => 'bigint',
1918
-            'site_title' => __('Review', 'geodirectory'),
1919
-            'htmlvar_name' => 'comment_count',
1920
-            'field_icon' =>  'fa fa-commenting-o',
1921
-            'description' =>  __('Sort by the number of reviews', 'geodirectory')
1922
-        );
1923
-        $fields[] = array(
1924
-            'post_type' => $post_type,
1925
-            'data_type' => '',
1926
-            'field_type' => 'float',
1927
-            'site_title' => __('Rating', 'geodirectory'),
1928
-            'htmlvar_name' => 'overall_rating',
1929
-            'field_icon' =>  'fa fa-star-o',
1930
-            'description' =>  __('Sort by the overall rating value', 'geodirectory')
1931
-        );
1932
-        $fields[] = array(
1933
-            'post_type' => $post_type,
1934
-            'data_type' => '',
1935
-            'field_type' => 'text',
1936
-            'site_title' => __('Title', 'geodirectory'),
1937
-            'htmlvar_name' => 'post_title',
1938
-            'field_icon' =>  'fa fa-sort-alpha-desc',
1939
-            'description' =>  __('Sort alphabetically by title', 'geodirectory')
1940
-        );
1941
-
1942
-        /**
1943
-         * Hook to add custom sort options.
1944
-         *
1945
-         * @since 1.0.0
1946
-         * @param array $fields Unmodified sort options array.
1947
-         * @param string $post_type Post type.
1948
-         */
1949
-        return $fields = apply_filters('geodir_add_custom_sort_options', $fields, $post_type);
1950
-
1951
-    }
1952
-
1953
-    return false;
1884
+	global $wpdb;
1885
+
1886
+	if ($post_type != '') {
1887
+
1888
+		$all_postypes = geodir_get_posttypes();
1889
+
1890
+		if (!in_array($post_type, $all_postypes))
1891
+			return false;
1892
+
1893
+		$fields = array();
1894
+
1895
+		$fields[] = array(
1896
+			'post_type' => $post_type,
1897
+			'data_type' => '',
1898
+			'field_type' => 'random',
1899
+			'site_title' => 'Random',
1900
+			'htmlvar_name' => 'post_title',
1901
+			'field_icon' =>  'fa fa-random',
1902
+			'description' =>  __('Random sort (not recommended for large sites)', 'geodirectory')
1903
+		);
1904
+
1905
+		$fields[] = array(
1906
+			'post_type' => $post_type,
1907
+			'data_type' => '',
1908
+			'field_type' => 'datetime',
1909
+			'site_title' => __('Add date', 'geodirectory'),
1910
+			'htmlvar_name' => 'post_date',
1911
+			'field_icon' =>  'fa fa-calendar',
1912
+			'description' =>  __('Sort by date added', 'geodirectory')
1913
+		);
1914
+		$fields[] = array(
1915
+			'post_type' => $post_type,
1916
+			'data_type' => '',
1917
+			'field_type' => 'bigint',
1918
+			'site_title' => __('Review', 'geodirectory'),
1919
+			'htmlvar_name' => 'comment_count',
1920
+			'field_icon' =>  'fa fa-commenting-o',
1921
+			'description' =>  __('Sort by the number of reviews', 'geodirectory')
1922
+		);
1923
+		$fields[] = array(
1924
+			'post_type' => $post_type,
1925
+			'data_type' => '',
1926
+			'field_type' => 'float',
1927
+			'site_title' => __('Rating', 'geodirectory'),
1928
+			'htmlvar_name' => 'overall_rating',
1929
+			'field_icon' =>  'fa fa-star-o',
1930
+			'description' =>  __('Sort by the overall rating value', 'geodirectory')
1931
+		);
1932
+		$fields[] = array(
1933
+			'post_type' => $post_type,
1934
+			'data_type' => '',
1935
+			'field_type' => 'text',
1936
+			'site_title' => __('Title', 'geodirectory'),
1937
+			'htmlvar_name' => 'post_title',
1938
+			'field_icon' =>  'fa fa-sort-alpha-desc',
1939
+			'description' =>  __('Sort alphabetically by title', 'geodirectory')
1940
+		);
1941
+
1942
+		/**
1943
+		 * Hook to add custom sort options.
1944
+		 *
1945
+		 * @since 1.0.0
1946
+		 * @param array $fields Unmodified sort options array.
1947
+		 * @param string $post_type Post type.
1948
+		 */
1949
+		return $fields = apply_filters('geodir_add_custom_sort_options', $fields, $post_type);
1950
+
1951
+	}
1952
+
1953
+	return false;
1954 1954
 }
1955 1955
 
1956 1956
 
@@ -1966,117 +1966,117 @@  discard block
 block discarded – undo
1966 1966
 function godir_set_sort_field_order($field_ids = array())
1967 1967
 {
1968 1968
 
1969
-    global $wpdb;
1969
+	global $wpdb;
1970 1970
 
1971
-    $count = 0;
1972
-    if (!empty($field_ids)):
1973
-        foreach ($field_ids as $id) {
1971
+	$count = 0;
1972
+	if (!empty($field_ids)):
1973
+		foreach ($field_ids as $id) {
1974 1974
 
1975
-            $cf = trim($id, '_');
1975
+			$cf = trim($id, '_');
1976 1976
 
1977
-            $post_meta_info = $wpdb->query(
1978
-                $wpdb->prepare(
1979
-                    "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
1977
+			$post_meta_info = $wpdb->query(
1978
+				$wpdb->prepare(
1979
+					"update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
1980 1980
 															sort_order=%d 
1981 1981
 															where id= %d",
1982
-                    array($count, $cf)
1983
-                )
1984
-            );
1985
-            $count++;
1986
-        }
1987
-
1988
-        return $field_ids;
1989
-    else:
1990
-        return false;
1991
-    endif;
1982
+					array($count, $cf)
1983
+				)
1984
+			);
1985
+			$count++;
1986
+		}
1987
+
1988
+		return $field_ids;
1989
+	else:
1990
+		return false;
1991
+	endif;
1992 1992
 }
1993 1993
 
1994 1994
 
1995 1995
 if (!function_exists('geodir_custom_sort_field_save')) {
1996
-    /**
1997
-     * Save or Update custom sort fields into the database.
1998
-     *
1999
-     * @since 1.0.0
2000
-     * @package GeoDirectory
2001
-     * @global object $wpdb WordPress Database object.
2002
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2003
-     * @param array $request_field {
2004
-     *    Attributes of the Request field.
2005
-     *
2006
-     *    @type string $action Ajax action name.
2007
-     *    @type string $manage_field_type Manage field type Default "sorting_options".
2008
-     *    @type string $create_field Do you want to create this field?.
2009
-     *    @type string $field_ins_upd Field created or updated?.
2010
-     *    @type string $_wpnonce Nonce value.
2011
-     *    @type string $listing_type The Post type.
2012
-     *    @type string $field_type Field Type.
2013
-     *    @type string $field_id Field ID.
2014
-     *    @type string $data_type Data Type.
2015
-     *    @type string $htmlvar_name HTML variable name.
2016
-     *    @type string $site_title Section title which you wish to display in frontend.
2017
-     *    @type string $is_default Is this default sorting?.
2018
-     *    @type string $is_active If not active then the field will not be displayed anywhere.
2019
-     *    @type string $sort_order Sort Order.
2020
-     *
2021
-     * }
2022
-     * @param bool $default Not yet implemented.
2023
-     * @return int Returns the last affected db table row id.
2024
-     */
2025
-    function geodir_custom_sort_field_save($request_field = array(), $default = false)
2026
-    {
2027
-
2028
-        global $wpdb, $plugin_prefix;
2029
-
2030
-        $result_str = isset($request_field['field_id']) ? trim($request_field['field_id']) : '';
2031
-
2032
-        $cf = trim($result_str, '_');
2033
-
2034
-        /*-------- check duplicate validation --------*/
2035
-
2036
-        $field_type = isset($request_field['field_type']) ? $request_field['field_type'] : '';
2037
-        $cehhtmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
2038
-
2039
-        $post_type = $request_field['listing_type'];
2040
-        $data_type = isset($request_field['data_type']) ? $request_field['data_type'] : '';
2041
-        $field_type = isset($request_field['field_type']) ? $request_field['field_type'] : '';
2042
-        $site_title = isset($request_field['site_title']) ? $request_field['site_title'] : '';
2043
-        $htmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
2044
-        $sort_order = isset($request_field['sort_order']) ? $request_field['sort_order'] : 0;
2045
-        $is_active = isset($request_field['is_active']) ? $request_field['is_active'] : 0;
2046
-        $is_default = isset($request_field['is_default']) ? $request_field['is_default'] : '';
2047
-        $asc = isset($request_field['asc']) ? $request_field['asc'] : 0;
2048
-        $desc = isset($request_field['desc']) ? $request_field['desc'] : 0;
2049
-        $asc_title = isset($request_field['asc_title']) ? $request_field['asc_title'] : '';
2050
-        $desc_title = isset($request_field['desc_title']) ? $request_field['desc_title'] : '';
2051
-
2052
-        $default_order = '';
2053
-        if ($is_default != '') {
2054
-            $default_order = $is_default;
2055
-            $is_default = '1';
2056
-        }
2057
-
2058
-
2059
-        $check_html_variable = $wpdb->get_var(
2060
-            $wpdb->prepare(
2061
-                "select htmlvar_name from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s and field_type=%s ",
2062
-                array($cehhtmlvar_name, $post_type, $field_type)
2063
-            )
2064
-        );
2065
-
2066
-        if ($is_default == 1) {
2067
-
2068
-            $wpdb->query($wpdb->prepare("update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set is_default='0', default_order='' where post_type = %s", array($post_type)));
2069
-
2070
-        }
2071
-
2072
-
2073
-        if (!$check_html_variable) {
2074
-
2075
-            $wpdb->query(
2076
-
2077
-                $wpdb->prepare(
2078
-
2079
-                    "insert into " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
1996
+	/**
1997
+	 * Save or Update custom sort fields into the database.
1998
+	 *
1999
+	 * @since 1.0.0
2000
+	 * @package GeoDirectory
2001
+	 * @global object $wpdb WordPress Database object.
2002
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2003
+	 * @param array $request_field {
2004
+	 *    Attributes of the Request field.
2005
+	 *
2006
+	 *    @type string $action Ajax action name.
2007
+	 *    @type string $manage_field_type Manage field type Default "sorting_options".
2008
+	 *    @type string $create_field Do you want to create this field?.
2009
+	 *    @type string $field_ins_upd Field created or updated?.
2010
+	 *    @type string $_wpnonce Nonce value.
2011
+	 *    @type string $listing_type The Post type.
2012
+	 *    @type string $field_type Field Type.
2013
+	 *    @type string $field_id Field ID.
2014
+	 *    @type string $data_type Data Type.
2015
+	 *    @type string $htmlvar_name HTML variable name.
2016
+	 *    @type string $site_title Section title which you wish to display in frontend.
2017
+	 *    @type string $is_default Is this default sorting?.
2018
+	 *    @type string $is_active If not active then the field will not be displayed anywhere.
2019
+	 *    @type string $sort_order Sort Order.
2020
+	 *
2021
+	 * }
2022
+	 * @param bool $default Not yet implemented.
2023
+	 * @return int Returns the last affected db table row id.
2024
+	 */
2025
+	function geodir_custom_sort_field_save($request_field = array(), $default = false)
2026
+	{
2027
+
2028
+		global $wpdb, $plugin_prefix;
2029
+
2030
+		$result_str = isset($request_field['field_id']) ? trim($request_field['field_id']) : '';
2031
+
2032
+		$cf = trim($result_str, '_');
2033
+
2034
+		/*-------- check duplicate validation --------*/
2035
+
2036
+		$field_type = isset($request_field['field_type']) ? $request_field['field_type'] : '';
2037
+		$cehhtmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
2038
+
2039
+		$post_type = $request_field['listing_type'];
2040
+		$data_type = isset($request_field['data_type']) ? $request_field['data_type'] : '';
2041
+		$field_type = isset($request_field['field_type']) ? $request_field['field_type'] : '';
2042
+		$site_title = isset($request_field['site_title']) ? $request_field['site_title'] : '';
2043
+		$htmlvar_name = isset($request_field['htmlvar_name']) ? $request_field['htmlvar_name'] : '';
2044
+		$sort_order = isset($request_field['sort_order']) ? $request_field['sort_order'] : 0;
2045
+		$is_active = isset($request_field['is_active']) ? $request_field['is_active'] : 0;
2046
+		$is_default = isset($request_field['is_default']) ? $request_field['is_default'] : '';
2047
+		$asc = isset($request_field['asc']) ? $request_field['asc'] : 0;
2048
+		$desc = isset($request_field['desc']) ? $request_field['desc'] : 0;
2049
+		$asc_title = isset($request_field['asc_title']) ? $request_field['asc_title'] : '';
2050
+		$desc_title = isset($request_field['desc_title']) ? $request_field['desc_title'] : '';
2051
+
2052
+		$default_order = '';
2053
+		if ($is_default != '') {
2054
+			$default_order = $is_default;
2055
+			$is_default = '1';
2056
+		}
2057
+
2058
+
2059
+		$check_html_variable = $wpdb->get_var(
2060
+			$wpdb->prepare(
2061
+				"select htmlvar_name from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s and field_type=%s ",
2062
+				array($cehhtmlvar_name, $post_type, $field_type)
2063
+			)
2064
+		);
2065
+
2066
+		if ($is_default == 1) {
2067
+
2068
+			$wpdb->query($wpdb->prepare("update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set is_default='0', default_order='' where post_type = %s", array($post_type)));
2069
+
2070
+		}
2071
+
2072
+
2073
+		if (!$check_html_variable) {
2074
+
2075
+			$wpdb->query(
2076
+
2077
+				$wpdb->prepare(
2078
+
2079
+					"insert into " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
2080 2080
 				post_type = %s,
2081 2081
 				data_type = %s,
2082 2082
 				field_type = %s,
@@ -2091,23 +2091,23 @@  discard block
 block discarded – undo
2091 2091
 				asc_title = %s,
2092 2092
 				desc_title = %s",
2093 2093
 
2094
-                    array($post_type, $data_type, $field_type, $site_title, $htmlvar_name, $sort_order, $is_active, $is_default, $default_order, $asc, $desc, $asc_title, $desc_title)
2095
-                )
2094
+					array($post_type, $data_type, $field_type, $site_title, $htmlvar_name, $sort_order, $is_active, $is_default, $default_order, $asc, $desc, $asc_title, $desc_title)
2095
+				)
2096 2096
 
2097
-            );
2097
+			);
2098 2098
 
2099 2099
 
2100
-            $lastid = $wpdb->insert_id;
2100
+			$lastid = $wpdb->insert_id;
2101 2101
 
2102
-            $lastid = trim($lastid);
2102
+			$lastid = trim($lastid);
2103 2103
 
2104
-        } else {
2104
+		} else {
2105 2105
 
2106
-            $wpdb->query(
2106
+			$wpdb->query(
2107 2107
 
2108
-                $wpdb->prepare(
2108
+				$wpdb->prepare(
2109 2109
 
2110
-                    "update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
2110
+					"update " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " set 
2111 2111
 				post_type = %s,
2112 2112
 				data_type = %s,
2113 2113
 				field_type = %s,
@@ -2123,123 +2123,123 @@  discard block
 block discarded – undo
2123 2123
 				desc_title = %s
2124 2124
 				where id = %d",
2125 2125
 
2126
-                    array($post_type, $data_type, $field_type, $site_title, $htmlvar_name, $sort_order, $is_active, $is_default, $default_order, $asc, $desc, $asc_title, $desc_title, $cf)
2127
-                )
2126
+					array($post_type, $data_type, $field_type, $site_title, $htmlvar_name, $sort_order, $is_active, $is_default, $default_order, $asc, $desc, $asc_title, $desc_title, $cf)
2127
+				)
2128 2128
 
2129
-            );
2129
+			);
2130 2130
 
2131
-            $lastid = trim($cf);
2131
+			$lastid = trim($cf);
2132 2132
 
2133
-        }
2133
+		}
2134 2134
 
2135 2135
 
2136
-        return (int)$lastid;
2136
+		return (int)$lastid;
2137 2137
 
2138
-    }
2138
+	}
2139 2139
 }
2140 2140
 
2141 2141
 
2142 2142
 if (!function_exists('geodir_custom_sort_field_delete')) {
2143
-    /**
2144
-     * Delete a custom sort field using field id.
2145
-     * @since 1.0.0
2146
-     * @package GeoDirectory
2147
-     * @global object $wpdb WordPress Database object.
2148
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2149
-     * @param string $field_id The field ID.
2150
-     * @return int|string Returns field id when successful deletion, else returns 0.
2151
-     */
2152
-    function geodir_custom_sort_field_delete($field_id = '')
2153
-    {
2154
-
2155
-        global $wpdb, $plugin_prefix;
2156
-        if ($field_id != '') {
2157
-            $cf = trim($field_id, '_');
2158
-
2159
-            $wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where id= %d ", array($cf)));
2160
-
2161
-            return $field_id;
2162
-
2163
-        } else
2164
-            return 0;
2165
-
2166
-    }
2143
+	/**
2144
+	 * Delete a custom sort field using field id.
2145
+	 * @since 1.0.0
2146
+	 * @package GeoDirectory
2147
+	 * @global object $wpdb WordPress Database object.
2148
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2149
+	 * @param string $field_id The field ID.
2150
+	 * @return int|string Returns field id when successful deletion, else returns 0.
2151
+	 */
2152
+	function geodir_custom_sort_field_delete($field_id = '')
2153
+	{
2154
+
2155
+		global $wpdb, $plugin_prefix;
2156
+		if ($field_id != '') {
2157
+			$cf = trim($field_id, '_');
2158
+
2159
+			$wpdb->query($wpdb->prepare("delete from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where id= %d ", array($cf)));
2160
+
2161
+			return $field_id;
2162
+
2163
+		} else
2164
+			return 0;
2165
+
2166
+	}
2167 2167
 }
2168 2168
 
2169 2169
 
2170 2170
 if (!function_exists('geodir_custom_sort_field_adminhtml')) {
2171
-    /**
2172
-     * Custom sort field admin html.
2173
-     *
2174
-     * @since 1.0.0
2175
-     * @package GeoDirectory
2176
-     * @global object $wpdb WordPress Database object.
2177
-     * @param string $field_type The form field type.
2178
-     * @param object|int $result_str The custom field results object or row id.
2179
-     * @param string $field_ins_upd When set to "submit" displays form.
2180
-     * @param bool $default when set to true field will be for admin use only.
2181
-     */
2182
-    function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key='')
2183
-    {
2184
-        global $wpdb;
2185
-        $cf = $result_str;
2186
-        if (!is_object($cf)) {
2187
-            $field_info = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE id = %d", array($cf)));
2188
-        } else {
2189
-            $field_info = $cf;
2190
-            $result_str = $cf->id;
2191
-        }
2192
-
2193
-        $field_info = stripslashes_deep($field_info); // strip slashes
2194
-
2195
-        if (!isset($field_info->post_type)) {
2196
-            $post_type = sanitize_text_field($_REQUEST['listing_type']);
2197
-        } else {
2198
-            $post_type = $field_info->post_type;
2199
-        }
2200
-
2201
-
2202
-        $htmlvar_name = isset($field_type_key) ? $field_type_key : '';
2203
-
2204
-        $site_title = '';
2205
-        if ($site_title == '')
2206
-            $site_title = isset($field_info->site_title) ? $field_info->site_title : '';
2207
-
2208
-        if ($site_title == '') {
2209
-            $fields = geodir_get_custom_sort_options($post_type);
2210
-
2211
-            foreach ($fields as $val) {
2212
-                $val = stripslashes_deep($val); // strip slashes
2213
-
2214
-                if ($val['field_type'] == $field_type && $val['htmlvar_name'] == $htmlvar_name) {
2215
-                    $site_title = isset($val['site_title']) ? $val['site_title'] : '';
2216
-                }
2217
-            }
2218
-        }
2219
-
2220
-        if ($htmlvar_name == '')
2221
-            $htmlvar_name = isset($field_info->htmlvar_name) ? $field_info->htmlvar_name : '';
2222
-
2223
-        $nonce = wp_create_nonce('custom_fields_' . $result_str);
2224
-
2225
-        $field_icon = '<i class="fa fa-cog" aria-hidden="true"></i>';
2226
-        $cso_arr = geodir_get_custom_sort_options($post_type);
2227
-
2228
-        $cur_field_type = (isset($cf->field_type)) ? $cf->field_type : esc_html($_REQUEST['field_type']);
2229
-        foreach($cso_arr as $cso){
2230
-            if($cur_field_type==$cso['field_type']){
2231
-
2232
-                if (isset($cso['field_icon']) && strpos($cso['field_icon'], 'fa fa-') !== false) {
2233
-                    $field_icon = '<i class="'.$cso['field_icon'].'" aria-hidden="true"></i>';
2234
-                }elseif(isset($cso['field_icon']) && $cso['field_icon']){
2235
-                    $field_icon = '<b style="background-image: url("'.$cso['field_icon'].'")"></b>';
2236
-                }
2237
-
2238
-            }
2239
-        }
2240
-
2241
-        $radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name.$field_type : rand(5, 500);
2242
-        ?>
2171
+	/**
2172
+	 * Custom sort field admin html.
2173
+	 *
2174
+	 * @since 1.0.0
2175
+	 * @package GeoDirectory
2176
+	 * @global object $wpdb WordPress Database object.
2177
+	 * @param string $field_type The form field type.
2178
+	 * @param object|int $result_str The custom field results object or row id.
2179
+	 * @param string $field_ins_upd When set to "submit" displays form.
2180
+	 * @param bool $default when set to true field will be for admin use only.
2181
+	 */
2182
+	function geodir_custom_sort_field_adminhtml($field_type, $result_str, $field_ins_upd = '', $field_type_key='')
2183
+	{
2184
+		global $wpdb;
2185
+		$cf = $result_str;
2186
+		if (!is_object($cf)) {
2187
+			$field_info = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE id = %d", array($cf)));
2188
+		} else {
2189
+			$field_info = $cf;
2190
+			$result_str = $cf->id;
2191
+		}
2192
+
2193
+		$field_info = stripslashes_deep($field_info); // strip slashes
2194
+
2195
+		if (!isset($field_info->post_type)) {
2196
+			$post_type = sanitize_text_field($_REQUEST['listing_type']);
2197
+		} else {
2198
+			$post_type = $field_info->post_type;
2199
+		}
2200
+
2201
+
2202
+		$htmlvar_name = isset($field_type_key) ? $field_type_key : '';
2203
+
2204
+		$site_title = '';
2205
+		if ($site_title == '')
2206
+			$site_title = isset($field_info->site_title) ? $field_info->site_title : '';
2207
+
2208
+		if ($site_title == '') {
2209
+			$fields = geodir_get_custom_sort_options($post_type);
2210
+
2211
+			foreach ($fields as $val) {
2212
+				$val = stripslashes_deep($val); // strip slashes
2213
+
2214
+				if ($val['field_type'] == $field_type && $val['htmlvar_name'] == $htmlvar_name) {
2215
+					$site_title = isset($val['site_title']) ? $val['site_title'] : '';
2216
+				}
2217
+			}
2218
+		}
2219
+
2220
+		if ($htmlvar_name == '')
2221
+			$htmlvar_name = isset($field_info->htmlvar_name) ? $field_info->htmlvar_name : '';
2222
+
2223
+		$nonce = wp_create_nonce('custom_fields_' . $result_str);
2224
+
2225
+		$field_icon = '<i class="fa fa-cog" aria-hidden="true"></i>';
2226
+		$cso_arr = geodir_get_custom_sort_options($post_type);
2227
+
2228
+		$cur_field_type = (isset($cf->field_type)) ? $cf->field_type : esc_html($_REQUEST['field_type']);
2229
+		foreach($cso_arr as $cso){
2230
+			if($cur_field_type==$cso['field_type']){
2231
+
2232
+				if (isset($cso['field_icon']) && strpos($cso['field_icon'], 'fa fa-') !== false) {
2233
+					$field_icon = '<i class="'.$cso['field_icon'].'" aria-hidden="true"></i>';
2234
+				}elseif(isset($cso['field_icon']) && $cso['field_icon']){
2235
+					$field_icon = '<b style="background-image: url("'.$cso['field_icon'].'")"></b>';
2236
+				}
2237
+
2238
+			}
2239
+		}
2240
+
2241
+		$radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name.$field_type : rand(5, 500);
2242
+		?>
2243 2243
 
2244 2244
         <li class="text" id="licontainer_<?php echo $result_str;?>">
2245 2245
             <form><!-- we need to wrap in a form so we can use radio buttons with same name -->
@@ -2248,7 +2248,7 @@  discard block
 block discarded – undo
2248 2248
                  ondblclick="show_hide('field_frm<?php echo $result_str;?>')">
2249 2249
                 <?php
2250 2250
 
2251
-                ?>
2251
+				?>
2252 2252
 
2253 2253
                 <div title="<?php _e('Click to remove field', 'geodirectory');?>"
2254 2254
                      onclick="delete_sort_field('<?php echo $result_str;?>', '<?php echo $nonce;?>', this)"
@@ -2263,17 +2263,17 @@  discard block
 block discarded – undo
2263 2263
 
2264 2264
             <div id="field_frm<?php echo $result_str;?>" class="field_frm"
2265 2265
                  style="display:<?php if ($field_ins_upd == 'submit') {
2266
-                     echo 'block;';
2267
-                 } else {
2268
-                     echo 'none;';
2269
-                 } ?>">
2266
+					 echo 'block;';
2267
+				 } else {
2268
+					 echo 'none;';
2269
+				 } ?>">
2270 2270
                 <input type="hidden" name="_wpnonce" value="<?php echo $nonce; ?>"/>
2271 2271
                 <input type="hidden" name="listing_type" id="listing_type" value="<?php echo $post_type;?>"/>
2272 2272
                 <input type="hidden" name="field_type" id="field_type" value="<?php echo $field_type;?>"/>
2273 2273
                 <input type="hidden" name="field_id" id="field_id" value="<?php echo $result_str;?>"/>
2274 2274
                 <input type="hidden" name="data_type" id="data_type" value="<?php if (isset($field_info->data_type)) {
2275
-                    echo $field_info->data_type;
2276
-                }?>"/>
2275
+					echo $field_info->data_type;
2276
+				}?>"/>
2277 2277
                 <input type="hidden" name="htmlvar_name" id="htmlvar_name" value="<?php echo $htmlvar_name;?>"/>
2278 2278
 
2279 2279
 
@@ -2296,14 +2296,14 @@  discard block
 block discarded – undo
2296 2296
 
2297 2297
                                 <input type="radio" id="asc_yes<?php echo $radio_id;?>" name="asc" class="gdri-enabled"  value="1"
2298 2298
                                     <?php if ($value == '1') {
2299
-                                        echo 'checked';
2300
-                                    } ?>/>
2299
+										echo 'checked';
2300
+									} ?>/>
2301 2301
                                 <label onclick="show_hide_radio(this,'show','cfs-asc-title');" for="asc_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2302 2302
 
2303 2303
                                 <input type="radio" id="asc_no<?php echo $radio_id;?>" name="asc" class="gdri-disabled" value="0"
2304 2304
                                     <?php if ($value == '0' || !$value) {
2305
-                                        echo 'checked';
2306
-                                    } ?>/>
2305
+										echo 'checked';
2306
+									} ?>/>
2307 2307
                                 <label onclick="show_hide_radio(this,'hide','cfs-asc-title');" for="asc_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2308 2308
 
2309 2309
                             </div>
@@ -2340,8 +2340,8 @@  discard block
 block discarded – undo
2340 2340
 
2341 2341
                                 <input type="radio" name="is_default"
2342 2342
                                        value="<?php echo $htmlvar_name; ?>_asc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name . '_asc') {
2343
-                                    echo 'checked="checked"';
2344
-                                } ?>/>
2343
+									echo 'checked="checked"';
2344
+								} ?>/>
2345 2345
                             </div>
2346 2346
 
2347 2347
                         </li>
@@ -2361,14 +2361,14 @@  discard block
 block discarded – undo
2361 2361
 
2362 2362
                                 <input type="radio" id="desc_yes<?php echo $radio_id;?>" name="desc" class="gdri-enabled"  value="1"
2363 2363
                                     <?php if ($value == '1') {
2364
-                                        echo 'checked';
2365
-                                    } ?>/>
2364
+										echo 'checked';
2365
+									} ?>/>
2366 2366
                                 <label onclick="show_hide_radio(this,'show','cfs-desc-title');" for="desc_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2367 2367
 
2368 2368
                                 <input type="radio" id="desc_no<?php echo $radio_id;?>" name="desc" class="gdri-disabled" value="0"
2369 2369
                                     <?php if ($value == '0' || !$value) {
2370
-                                        echo 'checked';
2371
-                                    } ?>/>
2370
+										echo 'checked';
2371
+									} ?>/>
2372 2372
                                 <label onclick="show_hide_radio(this,'hide','cfs-desc-title');" for="desc_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2373 2373
 
2374 2374
                             </div>
@@ -2404,8 +2404,8 @@  discard block
 block discarded – undo
2404 2404
 
2405 2405
                                 <input type="radio" name="is_default"
2406 2406
                                        value="<?php echo $htmlvar_name; ?>_desc" <?php if (isset($field_info->default_order) && $field_info->default_order == $htmlvar_name . '_desc') {
2407
-                                    echo 'checked="checked"';
2408
-                                } ?>/>
2407
+									echo 'checked="checked"';
2408
+								} ?>/>
2409 2409
                             </div>
2410 2410
 
2411 2411
                         </li>
@@ -2447,8 +2447,8 @@  discard block
 block discarded – undo
2447 2447
 
2448 2448
                                 <input type="checkbox" name="is_default"
2449 2449
                                        value="<?php echo $field_type; ?>"  <?php if (isset($value) && $value == '1') {
2450
-                                    echo 'checked="checked"';
2451
-                                } ?>/>
2450
+									echo 'checked="checked"';
2451
+								} ?>/>
2452 2452
                             </div>
2453 2453
 
2454 2454
 
@@ -2471,14 +2471,14 @@  discard block
 block discarded – undo
2471 2471
 
2472 2472
                             <input type="radio" id="is_active_yes<?php echo $radio_id;?>" name="is_active" class="gdri-enabled"  value="1"
2473 2473
                                 <?php if ($value == '1') {
2474
-                                    echo 'checked';
2475
-                                } ?>/>
2474
+									echo 'checked';
2475
+								} ?>/>
2476 2476
                             <label for="is_active_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2477 2477
 
2478 2478
                             <input type="radio" id="is_active_no<?php echo $radio_id;?>" name="is_active" class="gdri-disabled" value="0"
2479 2479
                                 <?php if ($value == '0' || !$value) {
2480
-                                    echo 'checked';
2481
-                                } ?>/>
2480
+									echo 'checked';
2481
+								} ?>/>
2482 2482
                             <label for="is_active_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2483 2483
 
2484 2484
                         </div>
@@ -2488,8 +2488,8 @@  discard block
 block discarded – undo
2488 2488
 
2489 2489
                     <input type="hidden" readonly="readonly" name="sort_order" id="sort_order"
2490 2490
                                                 value="<?php if (isset($field_info->sort_order)) {
2491
-                                                    echo esc_attr($field_info->sort_order);
2492
-                                                }?>" size="50"/>
2491
+													echo esc_attr($field_info->sort_order);
2492
+												}?>" size="50"/>
2493 2493
 
2494 2494
 
2495 2495
 
@@ -2513,38 +2513,38 @@  discard block
 block discarded – undo
2513 2513
             </form>
2514 2514
         </li> <?php
2515 2515
 
2516
-    }
2516
+	}
2517 2517
 }
2518 2518
 
2519 2519
 if (!function_exists('check_field_visibility')) {
2520
-    /**
2521
-     * Check field visibility as per price package.
2522
-     *
2523
-     * @since 1.0.0
2524
-     * @package GeoDirectory
2525
-     * @global object $wpdb WordPress Database object.
2526
-     * @global array $geodir_addon_list List of active GeoDirectory extensions.
2527
-     * @param int|string $package_id The package ID.
2528
-     * @param string $field_name The field name.
2529
-     * @param string $post_type Optional. The wordpress post type.
2530
-     * @return bool Returns true when field visible, otherwise false.
2531
-     */
2532
-    function check_field_visibility($package_id, $field_name, $post_type)
2533
-    {
2534
-        global $wpdb, $geodir_addon_list;
2535
-        if (!(isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes')) {
2536
-            return true;
2537
-        }
2538
-        if (!$package_id || !$field_name || !$post_type) {
2539
-            return true;
2540
-        }
2541
-        $sql = $wpdb->prepare("SELECT id FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE is_active='1' AND htmlvar_name=%s AND post_type=%s AND FIND_IN_SET(%s, packages)", array($field_name, $post_type, (int)$package_id));
2542
-
2543
-        if ($wpdb->get_var($sql)) {
2544
-            return true;
2545
-        }
2546
-        return false;
2547
-    }
2520
+	/**
2521
+	 * Check field visibility as per price package.
2522
+	 *
2523
+	 * @since 1.0.0
2524
+	 * @package GeoDirectory
2525
+	 * @global object $wpdb WordPress Database object.
2526
+	 * @global array $geodir_addon_list List of active GeoDirectory extensions.
2527
+	 * @param int|string $package_id The package ID.
2528
+	 * @param string $field_name The field name.
2529
+	 * @param string $post_type Optional. The wordpress post type.
2530
+	 * @return bool Returns true when field visible, otherwise false.
2531
+	 */
2532
+	function check_field_visibility($package_id, $field_name, $post_type)
2533
+	{
2534
+		global $wpdb, $geodir_addon_list;
2535
+		if (!(isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes')) {
2536
+			return true;
2537
+		}
2538
+		if (!$package_id || !$field_name || !$post_type) {
2539
+			return true;
2540
+		}
2541
+		$sql = $wpdb->prepare("SELECT id FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE is_active='1' AND htmlvar_name=%s AND post_type=%s AND FIND_IN_SET(%s, packages)", array($field_name, $post_type, (int)$package_id));
2542
+
2543
+		if ($wpdb->get_var($sql)) {
2544
+			return true;
2545
+		}
2546
+		return false;
2547
+	}
2548 2548
 }
2549 2549
 
2550 2550
 /**
@@ -2560,43 +2560,43 @@  discard block
 block discarded – undo
2560 2560
  */
2561 2561
 function geodir_string_to_options($input = '', $translated = false)
2562 2562
 {
2563
-    $return = array();
2564
-    if ($input != '') {
2565
-        $input = trim($input);
2566
-        $input = rtrim($input, ",");
2567
-        $input = ltrim($input, ",");
2568
-        $input = trim($input);
2569
-    }
2570
-
2571
-    $input_arr = explode(',', $input);
2572
-
2573
-    if (!empty($input_arr)) {
2574
-        foreach ($input_arr as $input_str) {
2575
-            $input_str = trim($input_str);
2576
-
2577
-            if (strpos($input_str, "/") !== false) {
2578
-                $input_str = explode("/", $input_str, 2);
2579
-                $label = trim($input_str[0]);
2580
-                if ($translated && $label != '') {
2581
-                    $label = __($label, 'geodirectory');
2582
-                }
2583
-                $label = geodir_utf8_ucfirst($label);
2584
-                $value = trim($input_str[1]);
2585
-            } else {
2586
-                $value = $input_str;
2587
-                if ($translated && $input_str != '') {
2588
-                    $input_str = __($input_str, 'geodirectory');
2589
-                }
2590
-                $label = geodir_utf8_ucfirst($input_str);
2591
-            }
2592
-
2593
-            if ($label != '') {
2594
-                $return[] = array('label' => $label, 'value' => $value, 'optgroup' => NULL);
2595
-            }
2596
-        }
2597
-    }
2598
-
2599
-    return $return;
2563
+	$return = array();
2564
+	if ($input != '') {
2565
+		$input = trim($input);
2566
+		$input = rtrim($input, ",");
2567
+		$input = ltrim($input, ",");
2568
+		$input = trim($input);
2569
+	}
2570
+
2571
+	$input_arr = explode(',', $input);
2572
+
2573
+	if (!empty($input_arr)) {
2574
+		foreach ($input_arr as $input_str) {
2575
+			$input_str = trim($input_str);
2576
+
2577
+			if (strpos($input_str, "/") !== false) {
2578
+				$input_str = explode("/", $input_str, 2);
2579
+				$label = trim($input_str[0]);
2580
+				if ($translated && $label != '') {
2581
+					$label = __($label, 'geodirectory');
2582
+				}
2583
+				$label = geodir_utf8_ucfirst($label);
2584
+				$value = trim($input_str[1]);
2585
+			} else {
2586
+				$value = $input_str;
2587
+				if ($translated && $input_str != '') {
2588
+					$input_str = __($input_str, 'geodirectory');
2589
+				}
2590
+				$label = geodir_utf8_ucfirst($input_str);
2591
+			}
2592
+
2593
+			if ($label != '') {
2594
+				$return[] = array('label' => $label, 'value' => $value, 'optgroup' => NULL);
2595
+			}
2596
+		}
2597
+	}
2598
+
2599
+	return $return;
2600 2600
 }
2601 2601
 
2602 2602
 /**
@@ -2611,66 +2611,66 @@  discard block
 block discarded – undo
2611 2611
  */
2612 2612
 function geodir_string_values_to_options($option_values = '', $translated = false)
2613 2613
 {
2614
-    $options = array();
2615
-    if ($option_values == '') {
2616
-        return NULL;
2617
-    }
2618
-
2619
-    if (strpos($option_values, "{/optgroup}") !== false) {
2620
-        $option_values_arr = explode("{/optgroup}", $option_values);
2621
-
2622
-        foreach ($option_values_arr as $optgroup) {
2623
-            if (strpos($optgroup, "{optgroup}") !== false) {
2624
-                $optgroup_arr = explode("{optgroup}", $optgroup);
2625
-
2626
-                $count = 0;
2627
-                foreach ($optgroup_arr as $optgroup_str) {
2628
-                    $count++;
2629
-                    $optgroup_str = trim($optgroup_str);
2630
-
2631
-                    $optgroup_label = '';
2632
-                    if (strpos($optgroup_str, "|") !== false) {
2633
-                        $optgroup_str_arr = explode("|", $optgroup_str, 2);
2634
-                        $optgroup_label = trim($optgroup_str_arr[0]);
2635
-                        if ($translated && $optgroup_label != '') {
2636
-                            $optgroup_label = __($optgroup_label, 'geodirectory');
2637
-                        }
2638
-                        $optgroup_label = geodir_utf8_ucfirst($optgroup_label);
2639
-                        $optgroup_str = $optgroup_str_arr[1];
2640
-                    }
2641
-
2642
-                    $optgroup3 = geodir_string_to_options($optgroup_str, $translated);
2643
-
2644
-                    if ($count > 1 && $optgroup_label != '' && !empty($optgroup3)) {
2645
-                        $optgroup_start = array(array('label' => $optgroup_label, 'value' => NULL, 'optgroup' => 'start'));
2646
-                        $optgroup_end = array(array('label' => $optgroup_label, 'value' => NULL, 'optgroup' => 'end'));
2647
-                        $optgroup3 = array_merge($optgroup_start, $optgroup3, $optgroup_end);
2648
-                    }
2649
-                    $options = array_merge($options, $optgroup3);
2650
-                }
2651
-            } else {
2652
-                $optgroup1 = geodir_string_to_options($optgroup, $translated);
2653
-                $options = array_merge($options, $optgroup1);
2654
-            }
2655
-        }
2656
-    } else {
2657
-        $options = geodir_string_to_options($option_values, $translated);
2658
-    }
2659
-
2660
-    return $options;
2614
+	$options = array();
2615
+	if ($option_values == '') {
2616
+		return NULL;
2617
+	}
2618
+
2619
+	if (strpos($option_values, "{/optgroup}") !== false) {
2620
+		$option_values_arr = explode("{/optgroup}", $option_values);
2621
+
2622
+		foreach ($option_values_arr as $optgroup) {
2623
+			if (strpos($optgroup, "{optgroup}") !== false) {
2624
+				$optgroup_arr = explode("{optgroup}", $optgroup);
2625
+
2626
+				$count = 0;
2627
+				foreach ($optgroup_arr as $optgroup_str) {
2628
+					$count++;
2629
+					$optgroup_str = trim($optgroup_str);
2630
+
2631
+					$optgroup_label = '';
2632
+					if (strpos($optgroup_str, "|") !== false) {
2633
+						$optgroup_str_arr = explode("|", $optgroup_str, 2);
2634
+						$optgroup_label = trim($optgroup_str_arr[0]);
2635
+						if ($translated && $optgroup_label != '') {
2636
+							$optgroup_label = __($optgroup_label, 'geodirectory');
2637
+						}
2638
+						$optgroup_label = geodir_utf8_ucfirst($optgroup_label);
2639
+						$optgroup_str = $optgroup_str_arr[1];
2640
+					}
2641
+
2642
+					$optgroup3 = geodir_string_to_options($optgroup_str, $translated);
2643
+
2644
+					if ($count > 1 && $optgroup_label != '' && !empty($optgroup3)) {
2645
+						$optgroup_start = array(array('label' => $optgroup_label, 'value' => NULL, 'optgroup' => 'start'));
2646
+						$optgroup_end = array(array('label' => $optgroup_label, 'value' => NULL, 'optgroup' => 'end'));
2647
+						$optgroup3 = array_merge($optgroup_start, $optgroup3, $optgroup_end);
2648
+					}
2649
+					$options = array_merge($options, $optgroup3);
2650
+				}
2651
+			} else {
2652
+				$optgroup1 = geodir_string_to_options($optgroup, $translated);
2653
+				$options = array_merge($options, $optgroup1);
2654
+			}
2655
+		}
2656
+	} else {
2657
+		$options = geodir_string_to_options($option_values, $translated);
2658
+	}
2659
+
2660
+	return $options;
2661 2661
 }
2662 2662
 
2663 2663
 
2664 2664
 function geodir_cfa_data_type_text($output,$result_str,$cf,$field_info){
2665
-    ob_start();
2666
-
2667
-    $dt_value = '';
2668
-    if (isset($field_info->data_type)) {
2669
-        $dt_value  = esc_attr($field_info->data_type);
2670
-    }elseif(isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']){
2671
-        $dt_value  = $cf['defaults']['data_type'];
2672
-    }
2673
-    ?>
2665
+	ob_start();
2666
+
2667
+	$dt_value = '';
2668
+	if (isset($field_info->data_type)) {
2669
+		$dt_value  = esc_attr($field_info->data_type);
2670
+	}elseif(isset($cf['defaults']['data_type']) && $cf['defaults']['data_type']){
2671
+		$dt_value  = $cf['defaults']['data_type'];
2672
+	}
2673
+	?>
2674 2674
     <li>
2675 2675
         <label for="data_type"><?php _e('Field Data Type ? :', 'geodirectory'); ?></label>
2676 2676
         <div class="gd-cf-input-wrap">
@@ -2679,16 +2679,16 @@  discard block
 block discarded – undo
2679 2679
                     onchange="javascript:gd_data_type_changed(this, '<?php echo $result_str; ?>');">
2680 2680
                 <option
2681 2681
                     value="XVARCHAR" <?php if ($dt_value  == 'VARCHAR') {
2682
-                    echo 'selected="selected"';
2683
-                } ?>><?php _e('CHARACTER', 'geodirectory'); ?></option>
2682
+					echo 'selected="selected"';
2683
+				} ?>><?php _e('CHARACTER', 'geodirectory'); ?></option>
2684 2684
                 <option
2685 2685
                     value="INT" <?php if ($dt_value   == 'INT') {
2686
-                    echo 'selected="selected"';
2687
-                } ?>><?php _e('NUMBER', 'geodirectory'); ?></option>
2686
+					echo 'selected="selected"';
2687
+				} ?>><?php _e('NUMBER', 'geodirectory'); ?></option>
2688 2688
                 <option
2689 2689
                     value="FLOAT" <?php if ($dt_value   == 'FLOAT') {
2690
-                    echo 'selected="selected"';
2691
-                } ?>><?php _e('DECIMAL', 'geodirectory'); ?></option>
2690
+					echo 'selected="selected"';
2691
+				} ?>><?php _e('DECIMAL', 'geodirectory'); ?></option>
2692 2692
             </select>
2693 2693
             <br/> <span><?php _e('Select Custom Field type', 'geodirectory'); ?></span>
2694 2694
 
@@ -2696,13 +2696,13 @@  discard block
 block discarded – undo
2696 2696
     </li>
2697 2697
 
2698 2698
     <?php
2699
-    $value = '';
2700
-    if (isset($field_info->decimal_point)) {
2701
-        $value = esc_attr($field_info->decimal_point);
2702
-    }elseif(isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']){
2703
-        $value = $cf['defaults']['decimal_point'];
2704
-    }
2705
-    ?>
2699
+	$value = '';
2700
+	if (isset($field_info->decimal_point)) {
2701
+		$value = esc_attr($field_info->decimal_point);
2702
+	}elseif(isset($cf['defaults']['decimal_point']) && $cf['defaults']['decimal_point']){
2703
+		$value = $cf['defaults']['decimal_point'];
2704
+	}
2705
+	?>
2706 2706
 
2707 2707
     <li class="decimal-point-wrapper"
2708 2708
         style="<?php echo ($dt_value  == 'FLOAT') ? '' : 'display:none' ?>">
@@ -2711,7 +2711,7 @@  discard block
 block discarded – undo
2711 2711
             <select name="decimal_point" id="decimal_point">
2712 2712
                 <option value=""><?php echo _e('Select', 'geodirectory'); ?></option>
2713 2713
                 <?php for ($i = 1; $i <= 10; $i++) {
2714
-                    $selected = $i == $value ? 'selected="selected"' : ''; ?>
2714
+					$selected = $i == $value ? 'selected="selected"' : ''; ?>
2715 2715
                     <option value="<?php echo $i; ?>" <?php echo $selected; ?>><?php echo $i; ?></option>
2716 2716
                 <?php } ?>
2717 2717
             </select>
@@ -2720,8 +2720,8 @@  discard block
 block discarded – undo
2720 2720
     </li>
2721 2721
 <?php
2722 2722
 
2723
-    $output = ob_get_clean();
2724
-    return $output;
2723
+	$output = ob_get_clean();
2724
+	return $output;
2725 2725
 }
2726 2726
 add_filter('geodir_cfa_data_type_text','geodir_cfa_data_type_text',10,4);
2727 2727
 
@@ -2757,9 +2757,9 @@  discard block
 block discarded – undo
2757 2757
 
2758 2758
 
2759 2759
 function geodir_cfa_advanced_editor_geodir_special_offers($output,$result_str,$cf,$field_info){
2760
-    if($field_info->htmlvar_name != 'geodir_special_offers'){return '';}
2761
-    ob_start();
2762
-    ?>
2760
+	if($field_info->htmlvar_name != 'geodir_special_offers'){return '';}
2761
+	ob_start();
2762
+	?>
2763 2763
     <li>
2764 2764
         <label for="advanced_editor" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Show advanced editor :', 'geodirectory'); ?>
2765 2765
             <div class="gdcf-tooltip">
@@ -2770,13 +2770,13 @@  discard block
 block discarded – undo
2770 2770
         <div class="gd-cf-input-wrap">
2771 2771
 
2772 2772
             <?php
2773
-            $selected = '';
2774
-            if (isset($field_info->extra_fields))
2775
-                $advanced_editor = unserialize($field_info->extra_fields);
2773
+			$selected = '';
2774
+			if (isset($field_info->extra_fields))
2775
+				$advanced_editor = unserialize($field_info->extra_fields);
2776 2776
 
2777
-            if (!empty($advanced_editor) && is_array($advanced_editor) && in_array('1', $advanced_editor))
2778
-                $selected = 'checked="checked"';
2779
-            ?>
2777
+			if (!empty($advanced_editor) && is_array($advanced_editor) && in_array('1', $advanced_editor))
2778
+				$selected = 'checked="checked"';
2779
+			?>
2780 2780
 
2781 2781
             <input type="checkbox" name="advanced_editor[]" id="advanced_editor"
2782 2782
                    value="1" <?php echo $selected; ?>/>
@@ -2785,22 +2785,22 @@  discard block
 block discarded – undo
2785 2785
     </li>
2786 2786
     <?php
2787 2787
 
2788
-    $output = ob_get_clean();
2789
-    return $output;
2788
+	$output = ob_get_clean();
2789
+	return $output;
2790 2790
 }
2791 2791
 add_filter('geodir_cfa_advanced_editor_textarea','geodir_cfa_advanced_editor_geodir_special_offers',10,4);
2792 2792
 
2793 2793
 
2794 2794
 function geodir_cfa_validation_pattern_text($output,$result_str,$cf,$field_info){
2795
-    ob_start();
2796
-
2797
-    $value = '';
2798
-    if (isset($field_info->validation_pattern)) {
2799
-        $value = esc_attr($field_info->validation_pattern);
2800
-    }elseif(isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']){
2801
-        $value = esc_attr($cf['defaults']['validation_pattern']);
2802
-    }
2803
-    ?>
2795
+	ob_start();
2796
+
2797
+	$value = '';
2798
+	if (isset($field_info->validation_pattern)) {
2799
+		$value = esc_attr($field_info->validation_pattern);
2800
+	}elseif(isset($cf['defaults']['validation_pattern']) && $cf['defaults']['validation_pattern']){
2801
+		$value = esc_attr($cf['defaults']['validation_pattern']);
2802
+	}
2803
+	?>
2804 2804
     <li>
2805 2805
         <label for="validation_pattern" class="gd-cf-tooltip-wrap">
2806 2806
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Validation Pattern:', 'geodirectory'); ?>
@@ -2814,13 +2814,13 @@  discard block
 block discarded – undo
2814 2814
         </div>
2815 2815
     </li>
2816 2816
     <?php
2817
-    $value = '';
2818
-    if (isset($field_info->validation_msg)) {
2819
-        $value = esc_attr($field_info->validation_msg);
2820
-    }elseif(isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']){
2821
-        $value = esc_attr($cf['defaults']['validation_msg']);
2822
-    }
2823
-    ?>
2817
+	$value = '';
2818
+	if (isset($field_info->validation_msg)) {
2819
+		$value = esc_attr($field_info->validation_msg);
2820
+	}elseif(isset($cf['defaults']['validation_msg']) && $cf['defaults']['validation_msg']){
2821
+		$value = esc_attr($cf['defaults']['validation_msg']);
2822
+	}
2823
+	?>
2824 2824
     <li>
2825 2825
         <label for="validation_msg" class="gd-cf-tooltip-wrap">
2826 2826
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Validation Message:', 'geodirectory'); ?>
@@ -2835,21 +2835,21 @@  discard block
 block discarded – undo
2835 2835
     </li>
2836 2836
     <?php
2837 2837
 
2838
-    $output = ob_get_clean();
2839
-    return $output;
2838
+	$output = ob_get_clean();
2839
+	return $output;
2840 2840
 }
2841 2841
 add_filter('geodir_cfa_validation_pattern_text','geodir_cfa_validation_pattern_text',10,4);
2842 2842
 
2843 2843
 
2844 2844
 function geodir_cfa_htmlvar_name_taxonomy($output,$result_str,$cf,$field_info){
2845
-    ob_start();
2846
-    global $post_type;
2847
-
2848
-    if (!isset($field_info->post_type)) {
2849
-        $post_type = sanitize_text_field($_REQUEST['listing_type']);
2850
-    } else
2851
-        $post_type = $field_info->post_type;
2852
-    ?>
2845
+	ob_start();
2846
+	global $post_type;
2847
+
2848
+	if (!isset($field_info->post_type)) {
2849
+		$post_type = sanitize_text_field($_REQUEST['listing_type']);
2850
+	} else
2851
+		$post_type = $field_info->post_type;
2852
+	?>
2853 2853
     <li style="display: none;">
2854 2854
         <label for="htmlvar_name" class="gd-cf-tooltip-wrap">
2855 2855
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Select taxonomy:', 'geodirectory'); ?>
@@ -2860,15 +2860,15 @@  discard block
 block discarded – undo
2860 2860
         <div class="gd-cf-input-wrap">
2861 2861
             <select name="htmlvar_name" id="htmlvar_name">
2862 2862
                 <?php
2863
-                $gd_taxonomy = geodir_get_taxonomies($post_type);
2863
+				$gd_taxonomy = geodir_get_taxonomies($post_type);
2864 2864
 
2865
-                foreach ($gd_taxonomy as $gd_tax) {
2866
-                    ?>
2865
+				foreach ($gd_taxonomy as $gd_tax) {
2866
+					?>
2867 2867
                     <option <?php if (isset($field_info->htmlvar_name) && $field_info->htmlvar_name == $gd_tax) {
2868
-                        echo 'selected="selected"';
2869
-                    }?> id="<?php echo $gd_tax;?>"><?php echo $gd_tax;?></option><?php
2870
-                }
2871
-                ?>
2868
+						echo 'selected="selected"';
2869
+					}?> id="<?php echo $gd_tax;?>"><?php echo $gd_tax;?></option><?php
2870
+				}
2871
+				?>
2872 2872
             </select>
2873 2873
         </div>
2874 2874
     </li>
@@ -2884,49 +2884,49 @@  discard block
 block discarded – undo
2884 2884
 
2885 2885
             <select name="cat_display_type" id="cat_display_type">
2886 2886
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'ajax_chained') {
2887
-                    echo 'selected="selected"';
2888
-                }?> value="ajax_chained"><?php _e('Ajax Chained', 'geodirectory');?></option>
2887
+					echo 'selected="selected"';
2888
+				}?> value="ajax_chained"><?php _e('Ajax Chained', 'geodirectory');?></option>
2889 2889
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'select') {
2890
-                    echo 'selected="selected"';
2891
-                }?> value="select"><?php _e('Select', 'geodirectory');?></option>
2890
+					echo 'selected="selected"';
2891
+				}?> value="select"><?php _e('Select', 'geodirectory');?></option>
2892 2892
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'multiselect') {
2893
-                    echo 'selected="selected"';
2894
-                }?> value="multiselect"><?php _e('Multiselect', 'geodirectory');?></option>
2893
+					echo 'selected="selected"';
2894
+				}?> value="multiselect"><?php _e('Multiselect', 'geodirectory');?></option>
2895 2895
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'checkbox') {
2896
-                    echo 'selected="selected"';
2897
-                }?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option>
2896
+					echo 'selected="selected"';
2897
+				}?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option>
2898 2898
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'radio') {
2899
-                    echo 'selected="selected"';
2900
-                }?> value="radio"><?php _e('Radio', 'geodirectory');?></option>
2899
+					echo 'selected="selected"';
2900
+				}?> value="radio"><?php _e('Radio', 'geodirectory');?></option>
2901 2901
             </select>
2902 2902
         </div>
2903 2903
     </li>
2904 2904
     <?php
2905 2905
 
2906
-    $output = ob_get_clean();
2907
-    return $output;
2906
+	$output = ob_get_clean();
2907
+	return $output;
2908 2908
 }
2909 2909
 add_filter('geodir_cfa_htmlvar_name_taxonomy','geodir_cfa_htmlvar_name_taxonomy',10,4);
2910 2910
 
2911 2911
 
2912 2912
 function geodir_cfa_extra_fields_address($output,$result_str,$cf,$field_info){
2913 2913
 
2914
-    ob_start();
2915
-    if (isset($field_info->extra_fields) && $field_info->extra_fields != '') {
2916
-        $address = stripslashes_deep(unserialize($field_info->extra_fields));
2917
-    }
2914
+	ob_start();
2915
+	if (isset($field_info->extra_fields) && $field_info->extra_fields != '') {
2916
+		$address = stripslashes_deep(unserialize($field_info->extra_fields));
2917
+	}
2918 2918
 
2919
-    $radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name : rand(5, 500);
2920
-    ?>
2919
+	$radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name : rand(5, 500);
2920
+	?>
2921 2921
     <?php
2922
-    /**
2923
-     * Called on the add custom fields settings page before the address field is output.
2924
-     *
2925
-     * @since 1.0.0
2926
-     * @param array $address The address settings array.
2927
-     * @param object $field_info Extra fields info.
2928
-     */
2929
-    do_action('geodir_address_extra_admin_fields', $address, $field_info); ?>
2922
+	/**
2923
+	 * Called on the add custom fields settings page before the address field is output.
2924
+	 *
2925
+	 * @since 1.0.0
2926
+	 * @param array $address The address settings array.
2927
+	 * @param object $field_info Extra fields info.
2928
+	 */
2929
+	do_action('geodir_address_extra_admin_fields', $address, $field_info); ?>
2930 2930
 
2931 2931
     <li>
2932 2932
         <label for="show_zip" class="gd-cf-tooltip-wrap">
@@ -2939,14 +2939,14 @@  discard block
 block discarded – undo
2939 2939
 
2940 2940
             <input type="radio" id="show_zip_yes<?php echo $radio_id;?>" name="extra[show_zip]" class="gdri-enabled"  value="1"
2941 2941
                 <?php if (isset($address['show_zip']) && $address['show_zip'] == '1') {
2942
-                    echo 'checked';
2943
-                } ?>/>
2942
+					echo 'checked';
2943
+				} ?>/>
2944 2944
             <label onclick="show_hide_radio(this,'show','cf-zip-lable');" for="show_zip_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
2945 2945
 
2946 2946
             <input type="radio" id="show_zip_no<?php echo $radio_id;?>" name="extra[show_zip]" class="gdri-disabled" value="0"
2947 2947
                 <?php if ((isset($address['show_zip']) && !$address['show_zip']) || !isset($address['show_zip'])) {
2948
-                    echo 'checked';
2949
-                } ?>/>
2948
+					echo 'checked';
2949
+				} ?>/>
2950 2950
             <label onclick="show_hide_radio(this,'hide','cf-zip-lable');" for="show_zip_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
2951 2951
 
2952 2952
 
@@ -2963,8 +2963,8 @@  discard block
 block discarded – undo
2963 2963
         <div class="gd-cf-input-wrap">
2964 2964
             <input type="text" name="extra[zip_lable]" id="zip_lable"
2965 2965
                    value="<?php if (isset($address['zip_lable'])) {
2966
-                       echo esc_attr($address['zip_lable']);
2967
-                   }?>"/>
2966
+					   echo esc_attr($address['zip_lable']);
2967
+				   }?>"/>
2968 2968
         </div>
2969 2969
     </li>
2970 2970
 
@@ -2981,8 +2981,8 @@  discard block
 block discarded – undo
2981 2981
         <div class="gd-cf-input-wrap">
2982 2982
             <input type="text" name="extra[map_lable]" id="map_lable"
2983 2983
                    value="<?php if (isset($address['map_lable'])) {
2984
-                       echo esc_attr($address['map_lable']);
2985
-                   }?>"/>
2984
+					   echo esc_attr($address['map_lable']);
2985
+				   }?>"/>
2986 2986
         </div>
2987 2987
     </li>
2988 2988
 
@@ -2997,14 +2997,14 @@  discard block
 block discarded – undo
2997 2997
 
2998 2998
             <input type="radio" id="show_mapzoom_yes<?php echo $radio_id;?>" name="extra[show_mapzoom]" class="gdri-enabled"  value="1"
2999 2999
                 <?php if (isset($address['show_mapzoom']) && $address['show_mapzoom'] == '1') {
3000
-                    echo 'checked';
3001
-                } ?>/>
3000
+					echo 'checked';
3001
+				} ?>/>
3002 3002
             <label for="show_mapzoom_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3003 3003
 
3004 3004
             <input type="radio" id="show_mapzoom_no<?php echo $radio_id;?>" name="extra[show_mapzoom]" class="gdri-disabled" value="0"
3005 3005
                 <?php if ((isset($address['show_mapzoom']) && !$address['show_mapzoom']) || !isset($address['show_mapzoom'])) {
3006
-                    echo 'checked';
3007
-                } ?>/>
3006
+					echo 'checked';
3007
+				} ?>/>
3008 3008
             <label for="show_mapzoom_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3009 3009
 
3010 3010
         </div>
@@ -3021,14 +3021,14 @@  discard block
 block discarded – undo
3021 3021
 
3022 3022
             <input type="radio" id="show_mapview_yes<?php echo $radio_id;?>" name="extra[show_mapview]" class="gdri-enabled"  value="1"
3023 3023
                 <?php if (isset($address['show_mapview']) && $address['show_mapview'] == '1') {
3024
-                    echo 'checked';
3025
-                } ?>/>
3024
+					echo 'checked';
3025
+				} ?>/>
3026 3026
             <label for="show_mapview_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3027 3027
 
3028 3028
             <input type="radio" id="show_mapview_no<?php echo $radio_id;?>" name="extra[show_mapview]" class="gdri-disabled" value="0"
3029 3029
                 <?php if ((isset($address['show_mapview']) && !$address['show_mapview']) || !isset($address['show_mapview'])) {
3030
-                    echo 'checked';
3031
-                } ?>/>
3030
+					echo 'checked';
3031
+				} ?>/>
3032 3032
             <label for="show_mapview_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3033 3033
 
3034 3034
         </div>
@@ -3045,8 +3045,8 @@  discard block
 block discarded – undo
3045 3045
         <div class="gd-cf-input-wrap">
3046 3046
             <input type="text" name="extra[mapview_lable]" id="mapview_lable"
3047 3047
                    value="<?php if (isset($address['mapview_lable'])) {
3048
-                       echo esc_attr($address['mapview_lable']);
3049
-                   }?>"/>
3048
+					   echo esc_attr($address['mapview_lable']);
3049
+				   }?>"/>
3050 3050
         </div>
3051 3051
     </li>
3052 3052
     <li>
@@ -3060,29 +3060,29 @@  discard block
 block discarded – undo
3060 3060
 
3061 3061
             <input type="radio" id="show_latlng_yes<?php echo $radio_id;?>" name="extra[show_latlng]" class="gdri-enabled"  value="1"
3062 3062
                 <?php if (isset($address['show_latlng']) && $address['show_latlng'] == '1') {
3063
-                    echo 'checked';
3064
-                } ?>/>
3063
+					echo 'checked';
3064
+				} ?>/>
3065 3065
             <label for="show_latlng_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3066 3066
 
3067 3067
             <input type="radio" id="show_latlng_no<?php echo $radio_id;?>" name="extra[show_latlng]" class="gdri-disabled" value="0"
3068 3068
                 <?php if ((isset($address['show_latlng']) && !$address['show_latlng']) || !isset($address['show_latlng'])) {
3069
-                    echo 'checked';
3070
-                } ?>/>
3069
+					echo 'checked';
3070
+				} ?>/>
3071 3071
             <label for="show_latlng_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3072 3072
 
3073 3073
         </div>
3074 3074
     </li>
3075 3075
     <?php
3076 3076
 
3077
-    $html = ob_get_clean();
3078
-    return $output.$html;
3077
+	$html = ob_get_clean();
3078
+	return $output.$html;
3079 3079
 }
3080 3080
 add_filter('geodir_cfa_extra_fields_address','geodir_cfa_extra_fields_address',10,4);
3081 3081
 
3082 3082
 
3083 3083
 function geodir_cfa_extra_fields_multiselect($output,$result_str,$cf,$field_info){
3084
-    ob_start();
3085
-    ?>
3084
+	ob_start();
3085
+	?>
3086 3086
     <li>
3087 3087
         <label for="multi_display_type" class="gd-cf-tooltip-wrap">
3088 3088
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Multiselect display type :', 'geodirectory'); ?>
@@ -3094,14 +3094,14 @@  discard block
 block discarded – undo
3094 3094
 
3095 3095
             <select name="multi_display_type" id="multi_display_type">
3096 3096
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'select') {
3097
-                    echo 'selected="selected"';
3098
-                }?> value="select"><?php _e('Select', 'geodirectory');?></option>
3097
+					echo 'selected="selected"';
3098
+				}?> value="select"><?php _e('Select', 'geodirectory');?></option>
3099 3099
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'checkbox') {
3100
-                    echo 'selected="selected"';
3101
-                }?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option>
3100
+					echo 'selected="selected"';
3101
+				}?> value="checkbox"><?php _e('Checkbox', 'geodirectory');?></option>
3102 3102
                 <option <?php if (isset($field_info->extra_fields) && unserialize($field_info->extra_fields) == 'radio') {
3103
-                    echo 'selected="selected"';
3104
-                }?> value="radio"><?php _e('Radio', 'geodirectory');?></option>
3103
+					echo 'selected="selected"';
3104
+				}?> value="radio"><?php _e('Radio', 'geodirectory');?></option>
3105 3105
             </select>
3106 3106
 
3107 3107
             <br/>
@@ -3109,25 +3109,25 @@  discard block
 block discarded – undo
3109 3109
     </li>
3110 3110
     <?php
3111 3111
 
3112
-    $html = ob_get_clean();
3113
-    return $output.$html;
3112
+	$html = ob_get_clean();
3113
+	return $output.$html;
3114 3114
 }
3115 3115
 add_filter('geodir_cfa_extra_fields_multiselect','geodir_cfa_extra_fields_multiselect',10,4);
3116 3116
 
3117 3117
 
3118 3118
 function geodir_cfa_extra_fields_smr($output,$result_str,$cf,$field_info){
3119 3119
 
3120
-    ob_start();
3120
+	ob_start();
3121 3121
 
3122
-    $value = '';
3123
-    if (isset($field_info->option_values)) {
3124
-        $value = esc_attr($field_info->option_values);
3125
-    }elseif(isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']){
3126
-        $value = esc_attr($cf['defaults']['option_values']);
3127
-    }
3122
+	$value = '';
3123
+	if (isset($field_info->option_values)) {
3124
+		$value = esc_attr($field_info->option_values);
3125
+	}elseif(isset($cf['defaults']['option_values']) && $cf['defaults']['option_values']){
3126
+		$value = esc_attr($cf['defaults']['option_values']);
3127
+	}
3128 3128
 
3129
-    $field_type = isset($field_info->field_type) ? $field_info->field_type : '';
3130
-    ?>
3129
+	$field_type = isset($field_info->field_type) ? $field_info->field_type : '';
3130
+	?>
3131 3131
     <li>
3132 3132
         <label for="option_values" class="gd-cf-tooltip-wrap">
3133 3133
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Option Values :', 'geodirectory'); ?>
@@ -3154,8 +3154,8 @@  discard block
 block discarded – undo
3154 3154
     </li>
3155 3155
     <?php
3156 3156
 
3157
-    $html = ob_get_clean();
3158
-    return $output.$html;
3157
+	$html = ob_get_clean();
3158
+	return $output.$html;
3159 3159
 }
3160 3160
 add_filter('geodir_cfa_extra_fields_multiselect','geodir_cfa_extra_fields_smr',10,4);
3161 3161
 add_filter('geodir_cfa_extra_fields_select','geodir_cfa_extra_fields_smr',10,4);
@@ -3163,12 +3163,12 @@  discard block
 block discarded – undo
3163 3163
 
3164 3164
 
3165 3165
 function geodir_cfa_extra_fields_datepicker($output,$result_str,$cf,$field_info){
3166
-    ob_start();
3167
-    $extra = array();
3168
-    if (isset($field_info->extra_fields) && $field_info->extra_fields != '') {
3169
-        $extra = unserialize($field_info->extra_fields);
3170
-    }
3171
-    ?>
3166
+	ob_start();
3167
+	$extra = array();
3168
+	if (isset($field_info->extra_fields) && $field_info->extra_fields != '') {
3169
+		$extra = unserialize($field_info->extra_fields);
3170
+	}
3171
+	?>
3172 3172
     <li>
3173 3173
         <label for="date_format" class="gd-cf-tooltip-wrap">
3174 3174
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Date Format :', 'geodirectory'); ?>
@@ -3178,52 +3178,52 @@  discard block
 block discarded – undo
3178 3178
         </label>
3179 3179
         <div class="gd-cf-input-wrap" style="overflow:inherit;">
3180 3180
             <?php
3181
-            $date_formats = array(
3182
-                'm/d/Y',
3183
-                'd/m/Y',
3184
-                'Y/m/d',
3185
-                'm-d-Y',
3186
-                'd-m-Y',
3187
-                'Y-m-d',
3188
-                'F j, Y',
3189
-            );
3190
-            /**
3191
-             * Filter the custom field date format options.
3192
-             *
3193
-             * @since 1.6.5
3194
-             * @param array $date_formats The PHP date format array.
3195
-             */
3196
-            $date_formats = apply_filters('geodir_date_formats',$date_formats);
3197
-            ?>
3181
+			$date_formats = array(
3182
+				'm/d/Y',
3183
+				'd/m/Y',
3184
+				'Y/m/d',
3185
+				'm-d-Y',
3186
+				'd-m-Y',
3187
+				'Y-m-d',
3188
+				'F j, Y',
3189
+			);
3190
+			/**
3191
+			 * Filter the custom field date format options.
3192
+			 *
3193
+			 * @since 1.6.5
3194
+			 * @param array $date_formats The PHP date format array.
3195
+			 */
3196
+			$date_formats = apply_filters('geodir_date_formats',$date_formats);
3197
+			?>
3198 3198
             <select name="extra[date_format]" id="date_format">
3199 3199
                 <?php
3200
-                foreach($date_formats as $format){
3201
-                    $selected = '';
3202
-                    if(!empty($extra) && esc_attr($extra['date_format'])==$format){
3203
-                        $selected = "selected='selected'";
3204
-                    }
3205
-                    echo "<option $selected value='$format'>$format       (".date_i18n( $format, time()).")</option>";
3206
-                }
3207
-                ?>
3200
+				foreach($date_formats as $format){
3201
+					$selected = '';
3202
+					if(!empty($extra) && esc_attr($extra['date_format'])==$format){
3203
+						$selected = "selected='selected'";
3204
+					}
3205
+					echo "<option $selected value='$format'>$format       (".date_i18n( $format, time()).")</option>";
3206
+				}
3207
+				?>
3208 3208
             </select>
3209 3209
 
3210 3210
         </div>
3211 3211
     </li>
3212 3212
     <?php
3213 3213
 
3214
-    $html = ob_get_clean();
3215
-    return $output.$html;
3214
+	$html = ob_get_clean();
3215
+	return $output.$html;
3216 3216
 }
3217 3217
 add_filter('geodir_cfa_extra_fields_datepicker','geodir_cfa_extra_fields_datepicker',10,4);
3218 3218
 
3219 3219
 
3220 3220
 function geodir_cfa_extra_fields_file($output,$result_str,$cf,$field_info){
3221
-    ob_start();
3222
-    $allowed_file_types = geodir_allowed_mime_types();
3221
+	ob_start();
3222
+	$allowed_file_types = geodir_allowed_mime_types();
3223 3223
 
3224
-    $extra_fields = isset($field_info->extra_fields) && $field_info->extra_fields != '' ? maybe_unserialize($field_info->extra_fields) : '';
3225
-    $gd_file_types = !empty($extra_fields) && !empty($extra_fields['gd_file_types']) ? $extra_fields['gd_file_types'] : array('*');
3226
-    ?>
3224
+	$extra_fields = isset($field_info->extra_fields) && $field_info->extra_fields != '' ? maybe_unserialize($field_info->extra_fields) : '';
3225
+	$gd_file_types = !empty($extra_fields) && !empty($extra_fields['gd_file_types']) ? $extra_fields['gd_file_types'] : array('*');
3226
+	?>
3227 3227
     <li>
3228 3228
         <label for="gd_file_types" class="gd-cf-tooltip-wrap">
3229 3229
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Allowed file types :', 'geodirectory'); ?>
@@ -3246,33 +3246,33 @@  discard block
 block discarded – undo
3246 3246
     </li>
3247 3247
     <?php
3248 3248
 
3249
-    $html = ob_get_clean();
3250
-    return $output.$html;
3249
+	$html = ob_get_clean();
3250
+	return $output.$html;
3251 3251
 }
3252 3252
 add_filter('geodir_cfa_extra_fields_file','geodir_cfa_extra_fields_file',10,4);
3253 3253
 
3254 3254
 function geodir_cfa_extra_fields_text($output,$result_str,$cf,$field_info){
3255
-    ob_start();
3255
+	ob_start();
3256 3256
 
3257
-    $extra_fields = isset($field_info->extra_fields) && $field_info->extra_fields != '' ? maybe_unserialize($field_info->extra_fields) : '';
3257
+	$extra_fields = isset($field_info->extra_fields) && $field_info->extra_fields != '' ? maybe_unserialize($field_info->extra_fields) : '';
3258 3258
    // print_r($cf);echo '###';
3259 3259
 
3260 3260
 
3261 3261
 
3262
-    $radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name : rand(5, 500);
3262
+	$radio_id = (isset($field_info->htmlvar_name)) ? $field_info->htmlvar_name : rand(5, 500);
3263 3263
 
3264 3264
 
3265
-    $value = '';
3266
-    if ($extra_fields && isset($extra_fields['is_price'])) {
3267
-    $value = esc_attr($extra_fields['is_price']);
3268
-    }elseif(isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']){
3269
-    $value = esc_attr($cf['defaults']['extra_fields']['is_price']);
3270
-    }
3265
+	$value = '';
3266
+	if ($extra_fields && isset($extra_fields['is_price'])) {
3267
+	$value = esc_attr($extra_fields['is_price']);
3268
+	}elseif(isset($cf['defaults']['extra_fields']['is_price']) && $cf['defaults']['extra_fields']['is_price']){
3269
+	$value = esc_attr($cf['defaults']['extra_fields']['is_price']);
3270
+	}
3271 3271
 
3272
-    $show_price_extra = ($value==1) ? 1 : 0;
3272
+	$show_price_extra = ($value==1) ? 1 : 0;
3273 3273
 
3274
-    $show_price = (isset($field_info->data_type) && ($field_info->data_type=='INT' && $field_info->data_type=='FLOAT')) ? 1 : 0;
3275
-    ?>
3274
+	$show_price = (isset($field_info->data_type) && ($field_info->data_type=='INT' && $field_info->data_type=='FLOAT')) ? 1 : 0;
3275
+	?>
3276 3276
     <li class="gdcf-price-extra-set" <?php if(!$show_price){ echo "style='display:none;'";}?>>
3277 3277
         <label for="is_price" class="gd-cf-tooltip-wrap">
3278 3278
             <i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Display as price? :', 'geodirectory'); ?>
@@ -3284,14 +3284,14 @@  discard block
 block discarded – undo
3284 3284
 
3285 3285
             <input type="radio" id="is_price_yes<?php echo $radio_id;?>" name="extra[is_price]" class="gdri-enabled"  value="1"
3286 3286
                 <?php if ($value == '1') {
3287
-                    echo 'checked';
3288
-                } ?>/>
3287
+					echo 'checked';
3288
+				} ?>/>
3289 3289
             <label onclick="show_hide_radio(this,'show','gdcf-price-extra');" for="is_price_yes<?php echo $radio_id;?>" class="gdcb-enable"><span><?php _e('Yes', 'geodirectory'); ?></span></label>
3290 3290
 
3291 3291
             <input type="radio" id="is_price_no<?php echo $radio_id;?>" name="extra[is_price]" class="gdri-disabled" value="0"
3292 3292
                 <?php if ($value == '0' || !$value) {
3293
-                    echo 'checked';
3294
-                } ?>/>
3293
+					echo 'checked';
3294
+				} ?>/>
3295 3295
             <label onclick="show_hide_radio(this,'hide','gdcf-price-extra');" for="is_price_no<?php echo $radio_id;?>" class="gdcb-disable"><span><?php _e('No', 'geodirectory'); ?></span></label>
3296 3296
 
3297 3297
         </div>
@@ -3299,13 +3299,13 @@  discard block
 block discarded – undo
3299 3299
 
3300 3300
     <?php
3301 3301
 
3302
-    $value = '';
3303
-    if ($extra_fields && isset($extra_fields['thousand_separator'])) {
3304
-        $value = esc_attr($extra_fields['thousand_separator']);
3305
-    }elseif(isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']){
3306
-        $value = esc_attr($cf['defaults']['extra_fields']['thousand_separator']);
3307
-    }
3308
-    ?>
3302
+	$value = '';
3303
+	if ($extra_fields && isset($extra_fields['thousand_separator'])) {
3304
+		$value = esc_attr($extra_fields['thousand_separator']);
3305
+	}elseif(isset($cf['defaults']['extra_fields']['thousand_separator']) && $cf['defaults']['extra_fields']['thousand_separator']){
3306
+		$value = esc_attr($cf['defaults']['extra_fields']['thousand_separator']);
3307
+	}
3308
+	?>
3309 3309
     <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3310 3310
         <label for="thousand_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Thousand separator :', 'geodirectory');?>
3311 3311
             <div class="gdcf-tooltip">
@@ -3326,13 +3326,13 @@  discard block
 block discarded – undo
3326 3326
 
3327 3327
     <?php
3328 3328
 
3329
-    $value = '';
3330
-    if ($extra_fields && isset($extra_fields['decimal_separator'])) {
3331
-        $value = esc_attr($extra_fields['decimal_separator']);
3332
-    }elseif(isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']){
3333
-        $value = esc_attr($cf['defaults']['extra_fields']['decimal_separator']);
3334
-    }
3335
-    ?>
3329
+	$value = '';
3330
+	if ($extra_fields && isset($extra_fields['decimal_separator'])) {
3331
+		$value = esc_attr($extra_fields['decimal_separator']);
3332
+	}elseif(isset($cf['defaults']['extra_fields']['decimal_separator']) && $cf['defaults']['extra_fields']['decimal_separator']){
3333
+		$value = esc_attr($cf['defaults']['extra_fields']['decimal_separator']);
3334
+	}
3335
+	?>
3336 3336
     <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3337 3337
         <label for="decimal_separator" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal separator :', 'geodirectory');?>
3338 3338
             <div class="gdcf-tooltip">
@@ -3349,13 +3349,13 @@  discard block
 block discarded – undo
3349 3349
 
3350 3350
     <?php
3351 3351
 
3352
-    $value = '';
3353
-    if ($extra_fields && isset($extra_fields['decimal_display'])) {
3354
-        $value = esc_attr($extra_fields['decimal_display']);
3355
-    }elseif(isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']){
3356
-        $value = esc_attr($cf['defaults']['extra_fields']['decimal_display']);
3357
-    }
3358
-    ?>
3352
+	$value = '';
3353
+	if ($extra_fields && isset($extra_fields['decimal_display'])) {
3354
+		$value = esc_attr($extra_fields['decimal_display']);
3355
+	}elseif(isset($cf['defaults']['extra_fields']['decimal_display']) && $cf['defaults']['extra_fields']['decimal_display']){
3356
+		$value = esc_attr($cf['defaults']['extra_fields']['decimal_display']);
3357
+	}
3358
+	?>
3359 3359
     <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3360 3360
         <label for="decimal_display" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Decimal display :', 'geodirectory');?>
3361 3361
             <div class="gdcf-tooltip">
@@ -3372,13 +3372,13 @@  discard block
 block discarded – undo
3372 3372
 
3373 3373
     <?php
3374 3374
 
3375
-    $value = '';
3376
-    if ($extra_fields && isset($extra_fields['currency_symbol'])) {
3377
-        $value = esc_attr($extra_fields['currency_symbol']);
3378
-    }elseif(isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']){
3379
-        $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol']);
3380
-    }
3381
-    ?>
3375
+	$value = '';
3376
+	if ($extra_fields && isset($extra_fields['currency_symbol'])) {
3377
+		$value = esc_attr($extra_fields['currency_symbol']);
3378
+	}elseif(isset($cf['defaults']['extra_fields']['currency_symbol']) && $cf['defaults']['extra_fields']['currency_symbol']){
3379
+		$value = esc_attr($cf['defaults']['extra_fields']['currency_symbol']);
3380
+	}
3381
+	?>
3382 3382
     <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3383 3383
         <label for="currency_symbol" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol :', 'geodirectory');?>
3384 3384
             <div class="gdcf-tooltip">
@@ -3393,13 +3393,13 @@  discard block
 block discarded – undo
3393 3393
 
3394 3394
     <?php
3395 3395
 
3396
-    $value = '';
3397
-    if ($extra_fields && isset($extra_fields['currency_symbol_placement'])) {
3398
-        $value = esc_attr($extra_fields['currency_symbol_placement']);
3399
-    }elseif(isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']){
3400
-        $value = esc_attr($cf['defaults']['extra_fields']['currency_symbol_placement']);
3401
-    }
3402
-    ?>
3396
+	$value = '';
3397
+	if ($extra_fields && isset($extra_fields['currency_symbol_placement'])) {
3398
+		$value = esc_attr($extra_fields['currency_symbol_placement']);
3399
+	}elseif(isset($cf['defaults']['extra_fields']['currency_symbol_placement']) && $cf['defaults']['extra_fields']['currency_symbol_placement']){
3400
+		$value = esc_attr($cf['defaults']['extra_fields']['currency_symbol_placement']);
3401
+	}
3402
+	?>
3403 3403
     <li class="gdcf-price-extra" <?php if(!$show_price_extra){ echo "style='display:none;'";}?>>
3404 3404
         <label for="currency_symbol_placement" class="gd-cf-tooltip-wrap"><i class="fa fa-info-circle" aria-hidden="true"></i> <?php _e('Currency symbol placement :', 'geodirectory');?>
3405 3405
             <div class="gdcf-tooltip">
@@ -3417,225 +3417,225 @@  discard block
 block discarded – undo
3417 3417
 
3418 3418
     <?php
3419 3419
 
3420
-    $html = ob_get_clean();
3421
-    return $output.$html;
3420
+	$html = ob_get_clean();
3421
+	return $output.$html;
3422 3422
 }
3423 3423
 add_filter('geodir_cfa_extra_fields_text','geodir_cfa_extra_fields_text',10,4);
3424 3424
 
3425 3425
 function geodir_default_custom_fields($post_type='gd_place',$package_id=''){
3426
-    $fields = array();
3427
-    $package = ($package_id=='') ? '' : array($package_id);
3428
-
3429
-    $fields[] = array('listing_type' => $post_type,
3430
-                      'data_type' => 'VARCHAR',
3431
-                      'field_type' => 'taxonomy',
3432
-                      'admin_title' => __('Category', 'geodirectory'),
3433
-                      'admin_desc' => __('SELECT listing category FROM here. SELECT at least one CATEGORY', 'geodirectory'),
3434
-                      'site_title' => __('Category', 'geodirectory'),
3435
-                      'htmlvar_name' => $post_type.'category',
3436
-                      'default_value' => '',
3437
-                      'is_default' => '1',
3438
-                      'is_admin' => '1',
3439
-                      'is_required' => '1',
3440
-                      'show_in'   =>  '[detail]',
3441
-                      'show_on_pkg' => $package,
3442
-                      'clabels' => __('Category', 'geodirectory'));
3443
-
3444
-    $fields[] = array('listing_type' => $post_type,
3445
-                      'data_type' => 'VARCHAR',
3446
-                      'field_type' => 'address',
3447
-                      'admin_title' => __('Address', 'geodirectory'),
3448
-                      'admin_desc' => ADDRESS_MSG,
3449
-                      'site_title' => __('Address', 'geodirectory'),
3450
-                      'htmlvar_name' => 'post',
3451
-                      'default_value' => '',
3452
-                      'option_values' => '',
3453
-                      'is_default' => '1',
3454
-                      'is_admin' => '1',
3455
-                      'is_required' => '1',
3456
-                      'show_in'   =>  '[detail],[mapbubble]',
3457
-                      'show_on_pkg' => $package,
3458
-                      'required_msg' => __('Address fields are required', 'geodirectory'),
3459
-                      'clabels' => __('Address', 'geodirectory'),
3460
-                      'extra' => array('show_city' => 1, 'city_lable' => __('City', 'geodirectory'),
3461
-                                       'show_region' => 1, 'region_lable' => __('Region', 'geodirectory'),
3462
-                                       'show_country' => 1, 'country_lable' => __('Country', 'geodirectory'),
3463
-                                       'show_zip' => 1, 'zip_lable' => __('Zip/Post Code', 'geodirectory'),
3464
-                                       'show_map' => 1, 'map_lable' => __('Set Address On Map', 'geodirectory'),
3465
-                                       'show_mapview' => 1, 'mapview_lable' => __('Select Map View', 'geodirectory'),
3466
-                                       'show_mapzoom' => 1, 'mapzoom_lable' => 'hidden',
3467
-                                       'show_latlng' => 1));
3468
-
3469
-    $fields[] = array('listing_type' => $post_type,
3470
-                      'data_type' => 'VARCHAR',
3471
-                      'field_type' => 'text',
3472
-                      'admin_title' => __('Time', 'geodirectory'),
3473
-                      'admin_desc' => __('Enter Business or Listing Timing Information.<br/>eg. : 10.00 am to 6 pm every day', 'geodirectory'),
3474
-                      'site_title' => __('Time', 'geodirectory'),
3475
-                      'htmlvar_name' => 'timing',
3476
-                      'default_value' => '',
3477
-                      'option_values' => '',
3478
-                      'is_default' => '1',
3479
-                      'is_admin' => '1',
3480
-                      'show_in' =>  '[detail],[mapbubble]',
3481
-                      'show_on_pkg' => $package,
3482
-                      'clabels' => __('Time', 'geodirectory'));
3483
-
3484
-    $fields[] = array('listing_type' => $post_type,
3485
-                      'data_type' => 'VARCHAR',
3486
-                      'field_type' => 'phone',
3487
-                      'admin_title' => __('Phone', 'geodirectory'),
3488
-                      'admin_desc' => __('You can enter phone number,cell phone number etc.', 'geodirectory'),
3489
-                      'site_title' => __('Phone', 'geodirectory'),
3490
-                      'htmlvar_name' => 'contact',
3491
-                      'default_value' => '',
3492
-                      'option_values' => '',
3493
-                      'is_default' => '1',
3494
-                      'is_admin' => '1',
3495
-                      'show_in' =>  '[detail],[mapbubble]',
3496
-                      'show_on_pkg' => $package,
3497
-                      'clabels' => __('Phone', 'geodirectory'));
3498
-
3499
-    $fields[] = array('listing_type' => $post_type,
3500
-                      'data_type' => 'VARCHAR',
3501
-                      'field_type' => 'email',
3502
-                      'admin_title' => __('Email', 'geodirectory'),
3503
-                      'admin_desc' => __('You can enter your business or listing email.', 'geodirectory'),
3504
-                      'site_title' => __('Email', 'geodirectory'),
3505
-                      'htmlvar_name' => 'email',
3506
-                      'default_value' => '',
3507
-                      'option_values' => '',
3508
-                      'is_default' => '1',
3509
-                      'is_admin' => '1',
3510
-                      'show_in' => '[detail]',
3511
-                      'show_on_pkg' => $package,
3512
-                      'clabels' => __('Email', 'geodirectory'));
3513
-
3514
-    $fields[] = array('listing_type' => $post_type,
3515
-                      'data_type' => 'VARCHAR',
3516
-                      'field_type' => 'url',
3517
-                      'admin_title' => __('Website', 'geodirectory'),
3518
-                      'admin_desc' => __('You can enter your business or listing website.', 'geodirectory'),
3519
-                      'site_title' => __('Website', 'geodirectory'),
3520
-                      'htmlvar_name' => 'website',
3521
-                      'default_value' => '',
3522
-                      'option_values' => '',
3523
-                      'is_default' => '1',
3524
-                      'is_admin' => '1',
3525
-                      'show_in' => '[detail]',
3526
-                      'show_on_pkg' => $package,
3527
-                      'clabels' => __('Website', 'geodirectory'));
3528
-
3529
-    $fields[] = array('listing_type' => $post_type,
3530
-                      'data_type' => 'VARCHAR',
3531
-                      'field_type' => 'url',
3532
-                      'admin_title' => __('Twitter', 'geodirectory'),
3533
-                      'admin_desc' => __('You can enter your business or listing twitter url.', 'geodirectory'),
3534
-                      'site_title' => __('Twitter', 'geodirectory'),
3535
-                      'htmlvar_name' => 'twitter',
3536
-                      'default_value' => '',
3537
-                      'option_values' => '',
3538
-                      'is_default' => '1',
3539
-                      'is_admin' => '1',
3540
-                      'show_in' => '[detail]',
3541
-                      'show_on_pkg' => $package,
3542
-                      'clabels' => __('Twitter', 'geodirectory'));
3543
-
3544
-    $fields[] = array('listing_type' => $post_type,
3545
-                      'data_type' => 'VARCHAR',
3546
-                      'field_type' => 'url',
3547
-                      'admin_title' => __('Facebook', 'geodirectory'),
3548
-                      'admin_desc' => __('You can enter your business or listing facebook url.', 'geodirectory'),
3549
-                      'site_title' => __('Facebook', 'geodirectory'),
3550
-                      'htmlvar_name' => 'facebook',
3551
-                      'default_value' => '',
3552
-                      'option_values' => '',
3553
-                      'is_default' => '1',
3554
-                      'is_admin' => '1',
3555
-                      'show_in' => '[detail]',
3556
-                      'show_on_pkg' => $package,
3557
-                      'clabels' => __('Facebook', 'geodirectory'));
3558
-
3559
-    $fields[] = array('listing_type' => $post_type,
3560
-                      'data_type' => 'TEXT',
3561
-                      'field_type' => 'textarea',
3562
-                      'admin_title' => __('Video', 'geodirectory'),
3563
-                      'admin_desc' => __('Add video code here, YouTube etc.', 'geodirectory'),
3564
-                      'site_title' => __('Video', 'geodirectory'),
3565
-                      'htmlvar_name' => 'video',
3566
-                      'default_value' => '',
3567
-                      'option_values' => '',
3568
-                      'is_default' => '0',
3569
-                      'is_admin' => '1',
3570
-                      'show_in' => '[owntab]',
3571
-                      'show_on_pkg' => $package,
3572
-                      'clabels' => __('Video', 'geodirectory'));
3573
-
3574
-    $fields[] = array('listing_type' => $post_type,
3575
-                      'data_type' => 'TEXT',
3576
-                      'field_type' => 'textarea',
3577
-                      'admin_title' => __('Special Offers', 'geodirectory'),
3578
-                      'admin_desc' => __('Note: List out any special offers (optional)', 'geodirectory'),
3579
-                      'site_title' => __('Special Offers', 'geodirectory'),
3580
-                      'htmlvar_name' => 'special_offers',
3581
-                      'default_value' => '',
3582
-                      'option_values' => '',
3583
-                      'is_default' => '0',
3584
-                      'is_admin' => '1',
3585
-                      'show_in' => '[owntab]',
3586
-                      'show_on_pkg' => $package,
3587
-                      'clabels' => __('Special Offers', 'geodirectory'));
3588
-
3589
-    /**
3590
-     * Filter the array of default custom fields DB table data.
3591
-     *
3592
-     * @since 1.6.6
3593
-     * @param string $fields The default custom fields as an array.
3594
-     */
3595
-    $fields = apply_filters('geodir_default_custom_fields', $fields);
3596
-
3597
-    return  $fields;
3426
+	$fields = array();
3427
+	$package = ($package_id=='') ? '' : array($package_id);
3428
+
3429
+	$fields[] = array('listing_type' => $post_type,
3430
+					  'data_type' => 'VARCHAR',
3431
+					  'field_type' => 'taxonomy',
3432
+					  'admin_title' => __('Category', 'geodirectory'),
3433
+					  'admin_desc' => __('SELECT listing category FROM here. SELECT at least one CATEGORY', 'geodirectory'),
3434
+					  'site_title' => __('Category', 'geodirectory'),
3435
+					  'htmlvar_name' => $post_type.'category',
3436
+					  'default_value' => '',
3437
+					  'is_default' => '1',
3438
+					  'is_admin' => '1',
3439
+					  'is_required' => '1',
3440
+					  'show_in'   =>  '[detail]',
3441
+					  'show_on_pkg' => $package,
3442
+					  'clabels' => __('Category', 'geodirectory'));
3443
+
3444
+	$fields[] = array('listing_type' => $post_type,
3445
+					  'data_type' => 'VARCHAR',
3446
+					  'field_type' => 'address',
3447
+					  'admin_title' => __('Address', 'geodirectory'),
3448
+					  'admin_desc' => ADDRESS_MSG,
3449
+					  'site_title' => __('Address', 'geodirectory'),
3450
+					  'htmlvar_name' => 'post',
3451
+					  'default_value' => '',
3452
+					  'option_values' => '',
3453
+					  'is_default' => '1',
3454
+					  'is_admin' => '1',
3455
+					  'is_required' => '1',
3456
+					  'show_in'   =>  '[detail],[mapbubble]',
3457
+					  'show_on_pkg' => $package,
3458
+					  'required_msg' => __('Address fields are required', 'geodirectory'),
3459
+					  'clabels' => __('Address', 'geodirectory'),
3460
+					  'extra' => array('show_city' => 1, 'city_lable' => __('City', 'geodirectory'),
3461
+									   'show_region' => 1, 'region_lable' => __('Region', 'geodirectory'),
3462
+									   'show_country' => 1, 'country_lable' => __('Country', 'geodirectory'),
3463
+									   'show_zip' => 1, 'zip_lable' => __('Zip/Post Code', 'geodirectory'),
3464
+									   'show_map' => 1, 'map_lable' => __('Set Address On Map', 'geodirectory'),
3465
+									   'show_mapview' => 1, 'mapview_lable' => __('Select Map View', 'geodirectory'),
3466
+									   'show_mapzoom' => 1, 'mapzoom_lable' => 'hidden',
3467
+									   'show_latlng' => 1));
3468
+
3469
+	$fields[] = array('listing_type' => $post_type,
3470
+					  'data_type' => 'VARCHAR',
3471
+					  'field_type' => 'text',
3472
+					  'admin_title' => __('Time', 'geodirectory'),
3473
+					  'admin_desc' => __('Enter Business or Listing Timing Information.<br/>eg. : 10.00 am to 6 pm every day', 'geodirectory'),
3474
+					  'site_title' => __('Time', 'geodirectory'),
3475
+					  'htmlvar_name' => 'timing',
3476
+					  'default_value' => '',
3477
+					  'option_values' => '',
3478
+					  'is_default' => '1',
3479
+					  'is_admin' => '1',
3480
+					  'show_in' =>  '[detail],[mapbubble]',
3481
+					  'show_on_pkg' => $package,
3482
+					  'clabels' => __('Time', 'geodirectory'));
3483
+
3484
+	$fields[] = array('listing_type' => $post_type,
3485
+					  'data_type' => 'VARCHAR',
3486
+					  'field_type' => 'phone',
3487
+					  'admin_title' => __('Phone', 'geodirectory'),
3488
+					  'admin_desc' => __('You can enter phone number,cell phone number etc.', 'geodirectory'),
3489
+					  'site_title' => __('Phone', 'geodirectory'),
3490
+					  'htmlvar_name' => 'contact',
3491
+					  'default_value' => '',
3492
+					  'option_values' => '',
3493
+					  'is_default' => '1',
3494
+					  'is_admin' => '1',
3495
+					  'show_in' =>  '[detail],[mapbubble]',
3496
+					  'show_on_pkg' => $package,
3497
+					  'clabels' => __('Phone', 'geodirectory'));
3498
+
3499
+	$fields[] = array('listing_type' => $post_type,
3500
+					  'data_type' => 'VARCHAR',
3501
+					  'field_type' => 'email',
3502
+					  'admin_title' => __('Email', 'geodirectory'),
3503
+					  'admin_desc' => __('You can enter your business or listing email.', 'geodirectory'),
3504
+					  'site_title' => __('Email', 'geodirectory'),
3505
+					  'htmlvar_name' => 'email',
3506
+					  'default_value' => '',
3507
+					  'option_values' => '',
3508
+					  'is_default' => '1',
3509
+					  'is_admin' => '1',
3510
+					  'show_in' => '[detail]',
3511
+					  'show_on_pkg' => $package,
3512
+					  'clabels' => __('Email', 'geodirectory'));
3513
+
3514
+	$fields[] = array('listing_type' => $post_type,
3515
+					  'data_type' => 'VARCHAR',
3516
+					  'field_type' => 'url',
3517
+					  'admin_title' => __('Website', 'geodirectory'),
3518
+					  'admin_desc' => __('You can enter your business or listing website.', 'geodirectory'),
3519
+					  'site_title' => __('Website', 'geodirectory'),
3520
+					  'htmlvar_name' => 'website',
3521
+					  'default_value' => '',
3522
+					  'option_values' => '',
3523
+					  'is_default' => '1',
3524
+					  'is_admin' => '1',
3525
+					  'show_in' => '[detail]',
3526
+					  'show_on_pkg' => $package,
3527
+					  'clabels' => __('Website', 'geodirectory'));
3528
+
3529
+	$fields[] = array('listing_type' => $post_type,
3530
+					  'data_type' => 'VARCHAR',
3531
+					  'field_type' => 'url',
3532
+					  'admin_title' => __('Twitter', 'geodirectory'),
3533
+					  'admin_desc' => __('You can enter your business or listing twitter url.', 'geodirectory'),
3534
+					  'site_title' => __('Twitter', 'geodirectory'),
3535
+					  'htmlvar_name' => 'twitter',
3536
+					  'default_value' => '',
3537
+					  'option_values' => '',
3538
+					  'is_default' => '1',
3539
+					  'is_admin' => '1',
3540
+					  'show_in' => '[detail]',
3541
+					  'show_on_pkg' => $package,
3542
+					  'clabels' => __('Twitter', 'geodirectory'));
3543
+
3544
+	$fields[] = array('listing_type' => $post_type,
3545
+					  'data_type' => 'VARCHAR',
3546
+					  'field_type' => 'url',
3547
+					  'admin_title' => __('Facebook', 'geodirectory'),
3548
+					  'admin_desc' => __('You can enter your business or listing facebook url.', 'geodirectory'),
3549
+					  'site_title' => __('Facebook', 'geodirectory'),
3550
+					  'htmlvar_name' => 'facebook',
3551
+					  'default_value' => '',
3552
+					  'option_values' => '',
3553
+					  'is_default' => '1',
3554
+					  'is_admin' => '1',
3555
+					  'show_in' => '[detail]',
3556
+					  'show_on_pkg' => $package,
3557
+					  'clabels' => __('Facebook', 'geodirectory'));
3558
+
3559
+	$fields[] = array('listing_type' => $post_type,
3560
+					  'data_type' => 'TEXT',
3561
+					  'field_type' => 'textarea',
3562
+					  'admin_title' => __('Video', 'geodirectory'),
3563
+					  'admin_desc' => __('Add video code here, YouTube etc.', 'geodirectory'),
3564
+					  'site_title' => __('Video', 'geodirectory'),
3565
+					  'htmlvar_name' => 'video',
3566
+					  'default_value' => '',
3567
+					  'option_values' => '',
3568
+					  'is_default' => '0',
3569
+					  'is_admin' => '1',
3570
+					  'show_in' => '[owntab]',
3571
+					  'show_on_pkg' => $package,
3572
+					  'clabels' => __('Video', 'geodirectory'));
3573
+
3574
+	$fields[] = array('listing_type' => $post_type,
3575
+					  'data_type' => 'TEXT',
3576
+					  'field_type' => 'textarea',
3577
+					  'admin_title' => __('Special Offers', 'geodirectory'),
3578
+					  'admin_desc' => __('Note: List out any special offers (optional)', 'geodirectory'),
3579
+					  'site_title' => __('Special Offers', 'geodirectory'),
3580
+					  'htmlvar_name' => 'special_offers',
3581
+					  'default_value' => '',
3582
+					  'option_values' => '',
3583
+					  'is_default' => '0',
3584
+					  'is_admin' => '1',
3585
+					  'show_in' => '[owntab]',
3586
+					  'show_on_pkg' => $package,
3587
+					  'clabels' => __('Special Offers', 'geodirectory'));
3588
+
3589
+	/**
3590
+	 * Filter the array of default custom fields DB table data.
3591
+	 *
3592
+	 * @since 1.6.6
3593
+	 * @param string $fields The default custom fields as an array.
3594
+	 */
3595
+	$fields = apply_filters('geodir_default_custom_fields', $fields);
3596
+
3597
+	return  $fields;
3598 3598
 }
3599 3599
 
3600 3600
 function geodir_currency_format_number($number='',$cf=''){
3601 3601
 
3602
-    $cs = isset($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : '';
3602
+	$cs = isset($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : '';
3603 3603
 
3604
-    $symbol = isset($cs['currency_symbol']) ? $cs['currency_symbol'] : '$';
3605
-    $decimals = isset($cf['decimal_point']) && $cf['decimal_point'] ? $cf['decimal_point'] : 2;
3606
-    $decimal_display = !empty($cf['decimal_display']) ? $cf['decimal_display'] : (!empty($cs['decimal_display']) ? $cs['decimal_display'] : 'if');
3607
-    $decimalpoint = '.';
3604
+	$symbol = isset($cs['currency_symbol']) ? $cs['currency_symbol'] : '$';
3605
+	$decimals = isset($cf['decimal_point']) && $cf['decimal_point'] ? $cf['decimal_point'] : 2;
3606
+	$decimal_display = !empty($cf['decimal_display']) ? $cf['decimal_display'] : (!empty($cs['decimal_display']) ? $cs['decimal_display'] : 'if');
3607
+	$decimalpoint = '.';
3608 3608
 
3609
-    if(isset($cs['decimal_separator']) && $cs['decimal_separator']=='comma'){
3610
-        $decimalpoint = ',';
3611
-    }
3609
+	if(isset($cs['decimal_separator']) && $cs['decimal_separator']=='comma'){
3610
+		$decimalpoint = ',';
3611
+	}
3612 3612
 
3613
-    $separator = ',';
3613
+	$separator = ',';
3614 3614
 
3615
-    if(isset($cs['thousand_separator'])){
3616
-        if($cs['thousand_separator']=='comma'){$separator = ',';}
3617
-        if($cs['thousand_separator']=='slash'){$separator = '\\';}
3618
-        if($cs['thousand_separator']=='period'){$separator = '.';}
3619
-        if($cs['thousand_separator']=='space'){$separator = ' ';}
3620
-        if($cs['thousand_separator']=='none'){$separator = '';}
3621
-    }
3615
+	if(isset($cs['thousand_separator'])){
3616
+		if($cs['thousand_separator']=='comma'){$separator = ',';}
3617
+		if($cs['thousand_separator']=='slash'){$separator = '\\';}
3618
+		if($cs['thousand_separator']=='period'){$separator = '.';}
3619
+		if($cs['thousand_separator']=='space'){$separator = ' ';}
3620
+		if($cs['thousand_separator']=='none'){$separator = '';}
3621
+	}
3622 3622
 
3623
-    $currency_symbol_placement = isset($cs['currency_symbol_placement']) ? $cs['currency_symbol_placement'] : 'left';
3623
+	$currency_symbol_placement = isset($cs['currency_symbol_placement']) ? $cs['currency_symbol_placement'] : 'left';
3624 3624
 
3625
-    if($decimals>0 && $decimal_display=='if'){
3626
-        if(is_int($number) || floor( $number ) == $number)
3627
-            $decimals = 0;
3628
-    }
3625
+	if($decimals>0 && $decimal_display=='if'){
3626
+		if(is_int($number) || floor( $number ) == $number)
3627
+			$decimals = 0;
3628
+	}
3629 3629
 
3630
-    $number = number_format($number,$decimals,$decimalpoint,$separator);
3630
+	$number = number_format($number,$decimals,$decimalpoint,$separator);
3631 3631
 
3632 3632
 
3633 3633
 
3634
-    if($currency_symbol_placement=='left'){
3635
-        $number = $symbol . $number;
3636
-    }else{
3637
-        $number = $number . $symbol;
3638
-    }
3634
+	if($currency_symbol_placement=='left'){
3635
+		$number = $symbol . $number;
3636
+	}else{
3637
+		$number = $number . $symbol;
3638
+	}
3639 3639
 
3640 3640
 
3641 3641
    return $number;
Please login to merge, or discard this patch.
geodirectory-widgets/geodirectory_listing_slider_widget.php 3 patches
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
 
96 96
         //widgetform in backend
97
-        $instance = wp_parse_args((array)$instance,
97
+        $instance = wp_parse_args((array) $instance,
98 98
             array('title' => '',
99 99
                 'post_type' => '',
100 100
                 'category' => '',
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
         ?>
154 154
 
155 155
         <p>
156
-            <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
156
+            <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
157 157
 
158 158
                 <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
159 159
                        name="<?php echo $this->get_field_name('title'); ?>" type="text"
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 
164 164
         <p>
165 165
             <label
166
-                for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?>
166
+                for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory'); ?>
167 167
 
168 168
                 <?php $postypes = geodir_get_posttypes(); ?>
169 169
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 
188 188
         <p>
189 189
             <label
190
-                for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
190
+                for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory'); ?>
191 191
 
192 192
                 <?php
193 193
                 $category_taxonomy = geodir_get_taxonomies('gd_place');
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
         </p>
225 225
         <p>
226 226
             <label
227
-                for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts(total):', 'geodirectory');?>
227
+                for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts(total):', 'geodirectory'); ?>
228 228
                 <input class="widefat" id="<?php echo $this->get_field_id('post_number'); ?>"
229 229
                        name="<?php echo $this->get_field_name('post_number'); ?>" type="text"
230 230
                        value="<?php echo esc_attr($post_number); ?>"/>
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 
234 234
         <p>
235 235
             <label
236
-                for="<?php echo $this->get_field_id('max_show'); ?>"><?php _e('Number of posts(shown at one time, requires a slide width to be set):', 'geodirectory');?>
236
+                for="<?php echo $this->get_field_id('max_show'); ?>"><?php _e('Number of posts(shown at one time, requires a slide width to be set):', 'geodirectory'); ?>
237 237
                 <input class="widefat" id="<?php echo $this->get_field_id('max_show'); ?>"
238 238
                        name="<?php echo $this->get_field_name('max_show'); ?>" type="text"
239 239
                        value="<?php echo esc_attr($max_show); ?>"/>
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 
243 243
         <p>
244 244
             <label
245
-                for="<?php echo $this->get_field_id('slide_width'); ?>"><?php _e('Slide width(leave blank unless showing more than one slide at a time, ex: 210):', 'geodirectory');?>
245
+                for="<?php echo $this->get_field_id('slide_width'); ?>"><?php _e('Slide width(leave blank unless showing more than one slide at a time, ex: 210):', 'geodirectory'); ?>
246 246
                 <input class="widefat" id="<?php echo $this->get_field_id('slide_width'); ?>"
247 247
                        name="<?php echo $this->get_field_name('slide_width'); ?>" type="text"
248 248
                        value="<?php echo esc_attr($slide_width); ?>"/>
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 
252 252
         <p>
253 253
             <label
254
-                for="<?php echo $this->get_field_id('animation'); ?>"><?php _e('Animation:', 'geodirectory');?>
254
+                for="<?php echo $this->get_field_id('animation'); ?>"><?php _e('Animation:', 'geodirectory'); ?>
255 255
 
256 256
                 <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>"
257 257
                         name="<?php echo $this->get_field_name('animation'); ?>">
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
 
270 270
         <p>
271 271
             <label
272
-                for="<?php echo $this->get_field_id('slideshowSpeed'); ?>"><?php _e('Slide Show Speed: (milliseconds)', 'geodirectory');?>
272
+                for="<?php echo $this->get_field_id('slideshowSpeed'); ?>"><?php _e('Slide Show Speed: (milliseconds)', 'geodirectory'); ?>
273 273
 
274 274
                 <input class="widefat" id="<?php echo $this->get_field_id('slideshowSpeed'); ?>"
275 275
                        name="<?php echo $this->get_field_name('slideshowSpeed'); ?>" type="text"
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
         <p>
281 281
             <label
282
-                for="<?php echo $this->get_field_id('animationSpeed'); ?>"><?php _e('Animation Speed: (milliseconds)', 'geodirectory');?>
282
+                for="<?php echo $this->get_field_id('animationSpeed'); ?>"><?php _e('Animation Speed: (milliseconds)', 'geodirectory'); ?>
283 283
 
284 284
                 <input class="widefat" id="<?php echo $this->get_field_id('animationSpeed'); ?>"
285 285
                        name="<?php echo $this->get_field_name('animationSpeed'); ?>" type="text"
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 
290 290
         <p>
291 291
             <label
292
-                for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?>
292
+                for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory'); ?>
293 293
 
294 294
                 <input type="checkbox" <?php if ($slideshow) {
295 295
                     echo 'checked="checked"';
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 
302 302
         <p>
303 303
             <label
304
-                for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?>
304
+                for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory'); ?>
305 305
 
306 306
                 <input type="checkbox" <?php if ($animationLoop) {
307 307
                     echo 'checked="checked"';
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
 
314 314
         <p>
315 315
             <label
316
-                for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?>
316
+                for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory'); ?>
317 317
 
318 318
                 <input type="checkbox" <?php if ($directionNav) {
319 319
                     echo 'checked="checked"';
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 
327 327
         <p>
328 328
             <label
329
-                for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?>
329
+                for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory'); ?>
330 330
 
331 331
                 <input type="checkbox" <?php if ($show_title) {
332 332
                     echo 'checked="checked"';
@@ -345,9 +345,9 @@  discard block
 block discarded – undo
345 345
         </p>
346 346
         <p>
347 347
             <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
348
-                <?php _e('Enable Location Filter:', 'geodirectory');?>
348
+                <?php _e('Enable Location Filter:', 'geodirectory'); ?>
349 349
                 <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
350
-                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
350
+                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"'; ?>
351 351
                        value="1"/>
352 352
             </label>
353 353
         </p>
@@ -368,10 +368,10 @@  discard block
 block discarded – undo
368 368
 
369 369
             }
370 370
 
371
-            <?php if(is_active_widget( false, false, $this->id_base, true )){ ?>
371
+            <?php if (is_active_widget(false, false, $this->id_base, true)) { ?>
372 372
             var post_type = jQuery('#<?php echo $this->get_field_id('post_type'); ?>').val();
373 373
 
374
-            geodir_change_category_list(post_type, '<?php echo $category;?>');
374
+            geodir_change_category_list(post_type, '<?php echo $category; ?>');
375 375
             <?php } ?>
376 376
 
377 377
         </script>
Please login to merge, or discard this patch.
Braces   +13 added lines, -6 removed lines patch added patch discarded remove patch
@@ -74,10 +74,11 @@  discard block
 block discarded – undo
74 74
         $instance['animation'] = $new_instance['animation'];
75 75
         $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : '';
76 76
         $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
77
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
78
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
79
-        else
80
-            $instance['add_location_filter'] = '0';
77
+        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') {
78
+                    $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
79
+        } else {
80
+                    $instance['add_location_filter'] = '0';
81
+        }
81 82
 
82 83
         return $instance;
83 84
     }
@@ -339,7 +340,10 @@  discard block
 block discarded – undo
339 340
             <label
340 341
                 for="<?php echo $this->get_field_id('show_featured_only'); ?>"><?php _e('Show only featured listings:', 'geodirectory'); ?>
341 342
                 <input type="checkbox" id="<?php echo $this->get_field_id('show_featured_only'); ?>"
342
-                       name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"'; ?>
343
+                       name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) {
344
+	echo 'checked="checked"';
345
+}
346
+?>
343 347
                        value="1"/>
344 348
             </label>
345 349
         </p>
@@ -347,7 +351,10 @@  discard block
 block discarded – undo
347 351
             <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
348 352
                 <?php _e('Enable Location Filter:', 'geodirectory');?>
349 353
                 <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
350
-                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
354
+                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) {
355
+	echo 'checked="checked"';
356
+}
357
+?>
351 358
                        value="1"/>
352 359
             </label>
353 360
         </p>
Please login to merge, or discard this patch.
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -15,40 +15,40 @@  discard block
 block discarded – undo
15 15
 class geodir_listing_slider_widget extends WP_Widget
16 16
 {
17 17
 
18
-    /**
18
+	/**
19 19
 	 * Register the listing slider widget.
20 20
 	 *
21 21
 	 * @since 1.0.0
22
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
23 23
 	 */
24
-    public function __construct() {
25
-        $widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory'));
26
-        parent::__construct(
27
-            'listing_slider_view', // Base ID
28
-            __('GD > Listing Slider', 'geodirectory'), // Name
29
-            $widget_ops// Args
30
-        );
31
-    }
24
+	public function __construct() {
25
+		$widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory'));
26
+		parent::__construct(
27
+			'listing_slider_view', // Base ID
28
+			__('GD > Listing Slider', 'geodirectory'), // Name
29
+			$widget_ops// Args
30
+		);
31
+	}
32 32
 	
33 33
 	/**
34 34
 	 * Front-end display content for listing slider widget.
35 35
 	 *
36 36
 	 * @since 1.0.0
37
-     * @since 1.5.1 Declare function public.
37
+	 * @since 1.5.1 Declare function public.
38 38
 	 *
39 39
 	 * @param array $args     Widget arguments.
40 40
 	 * @param array $instance Saved values from database.
41 41
 	 */
42
-    public function widget($args, $instance)
43
-    {
44
-        geodir_listing_slider_widget_output($args, $instance);
45
-    }
42
+	public function widget($args, $instance)
43
+	{
44
+		geodir_listing_slider_widget_output($args, $instance);
45
+	}
46 46
 
47 47
 	/**
48 48
 	 * Sanitize listing slider widget form values as they are saved.
49 49
 	 *
50 50
 	 * @since 1.0.0
51
-     * @since 1.5.1 Declare function public.
51
+	 * @since 1.5.1 Declare function public.
52 52
 	 *
53 53
 	 * @param array $new_instance Values just sent to be saved.
54 54
 	 * @param array $old_instance Previously saved values from database.
@@ -56,101 +56,101 @@  discard block
 block discarded – undo
56 56
 	 * @return array Updated safe values to be saved.
57 57
 	 */
58 58
 	public function update($new_instance, $old_instance)
59
-    {
60
-        //save the widget
61
-        $instance = $old_instance;
62
-        $instance['title'] = strip_tags($new_instance['title']);
63
-        $instance['post_type'] = strip_tags($new_instance['post_type']);
64
-        $instance['category'] = strip_tags($new_instance['category']);
65
-        $instance['post_number'] = strip_tags($new_instance['post_number']);
66
-        $instance['max_show'] = strip_tags($new_instance['max_show']);
67
-        $instance['slide_width'] = strip_tags($new_instance['slide_width']);
68
-        $instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : '';
69
-        $instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : '';
70
-        $instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : '';
71
-        $instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : '';
72
-        $instance['slideshowSpeed'] = $new_instance['slideshowSpeed'];
73
-        $instance['animationSpeed'] = $new_instance['animationSpeed'];
74
-        $instance['animation'] = $new_instance['animation'];
75
-        $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : '';
76
-        $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
77
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
78
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
79
-        else
80
-            $instance['add_location_filter'] = '0';
81
-
82
-        return $instance;
83
-    }
59
+	{
60
+		//save the widget
61
+		$instance = $old_instance;
62
+		$instance['title'] = strip_tags($new_instance['title']);
63
+		$instance['post_type'] = strip_tags($new_instance['post_type']);
64
+		$instance['category'] = strip_tags($new_instance['category']);
65
+		$instance['post_number'] = strip_tags($new_instance['post_number']);
66
+		$instance['max_show'] = strip_tags($new_instance['max_show']);
67
+		$instance['slide_width'] = strip_tags($new_instance['slide_width']);
68
+		$instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : '';
69
+		$instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : '';
70
+		$instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : '';
71
+		$instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : '';
72
+		$instance['slideshowSpeed'] = $new_instance['slideshowSpeed'];
73
+		$instance['animationSpeed'] = $new_instance['animationSpeed'];
74
+		$instance['animation'] = $new_instance['animation'];
75
+		$instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : '';
76
+		$instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
77
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
78
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
79
+		else
80
+			$instance['add_location_filter'] = '0';
81
+
82
+		return $instance;
83
+	}
84 84
 
85 85
 	/**
86 86
 	 * Back-end listing slider widget settings form.
87 87
 	 *
88 88
 	 * @since 1.0.0
89
-     * @since 1.5.1 Declare function public.
89
+	 * @since 1.5.1 Declare function public.
90 90
 	 *
91 91
 	 * @param array $instance Previously saved values from database.
92 92
 	 */
93 93
 	public function form($instance)
94
-    {
94
+	{
95 95
 
96
-        //widgetform in backend
97
-        $instance = wp_parse_args((array)$instance,
98
-            array('title' => '',
99
-                'post_type' => '',
100
-                'category' => '',
101
-                'post_number' => '5',
102
-                'max_show' => '1',
103
-                'slide_width' => '',
104
-                'show_title' => '',
105
-                'slideshow' => '',
106
-                'animationLoop' => '',
107
-                'directionNav' => '',
108
-                'slideshowSpeed' => 5000,
109
-                'animationSpeed' => 600,
110
-                'animation' => '',
111
-                'list_sort' => 'latest',
112
-                'show_featured_only' => '',
113
-                'add_location_filter' => '0',
114
-            )
115
-        );
96
+		//widgetform in backend
97
+		$instance = wp_parse_args((array)$instance,
98
+			array('title' => '',
99
+				'post_type' => '',
100
+				'category' => '',
101
+				'post_number' => '5',
102
+				'max_show' => '1',
103
+				'slide_width' => '',
104
+				'show_title' => '',
105
+				'slideshow' => '',
106
+				'animationLoop' => '',
107
+				'directionNav' => '',
108
+				'slideshowSpeed' => 5000,
109
+				'animationSpeed' => 600,
110
+				'animation' => '',
111
+				'list_sort' => 'latest',
112
+				'show_featured_only' => '',
113
+				'add_location_filter' => '0',
114
+			)
115
+		);
116 116
 
117
-        $title = strip_tags($instance['title']);
117
+		$title = strip_tags($instance['title']);
118 118
 
119
-        $post_type = strip_tags($instance['post_type']);
119
+		$post_type = strip_tags($instance['post_type']);
120 120
 
121
-        $category = strip_tags($instance['category']);
121
+		$category = strip_tags($instance['category']);
122 122
 
123
-        $post_number = strip_tags($instance['post_number']);
123
+		$post_number = strip_tags($instance['post_number']);
124 124
 
125
-        $max_show = strip_tags($instance['max_show']);
125
+		$max_show = strip_tags($instance['max_show']);
126 126
 
127
-        $slide_width = strip_tags($instance['slide_width']);
127
+		$slide_width = strip_tags($instance['slide_width']);
128 128
 
129
-        $show_title = $instance['show_title'];
129
+		$show_title = $instance['show_title'];
130 130
 
131
-        $slideshow = $instance['slideshow'];
131
+		$slideshow = $instance['slideshow'];
132 132
 
133
-        $animationLoop = $instance['animationLoop'];
133
+		$animationLoop = $instance['animationLoop'];
134 134
 
135
-        $directionNav = $instance['directionNav'];
135
+		$directionNav = $instance['directionNav'];
136 136
 
137
-        $slideshowSpeed = $instance['slideshowSpeed'];
137
+		$slideshowSpeed = $instance['slideshowSpeed'];
138 138
 
139
-        $animationSpeed = $instance['animationSpeed'];
139
+		$animationSpeed = $instance['animationSpeed'];
140 140
 
141
-        $add_location_filter = strip_tags($instance['add_location_filter']);
141
+		$add_location_filter = strip_tags($instance['add_location_filter']);
142 142
 
143
-        $animation = $instance['animation'];
144
-        $list_sort = $instance['list_sort'];
145
-        $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
143
+		$animation = $instance['animation'];
144
+		$list_sort = $instance['list_sort'];
145
+		$show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
146 146
 
147
-        $sort_fields = array();
148
-        $sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory'));
149
-        $sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory'));
150
-        $sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory'));
151
-        $sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory'));
152
-        $sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory'));
153
-        ?>
147
+		$sort_fields = array();
148
+		$sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory'));
149
+		$sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory'));
150
+		$sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory'));
151
+		$sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory'));
152
+		$sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory'));
153
+		?>
154 154
 
155 155
         <p>
156 156
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
@@ -174,9 +174,9 @@  discard block
 block discarded – undo
174 174
                     <?php foreach ($postypes as $postypes_obj) { ?>
175 175
 
176 176
                         <option <?php if ($post_type == $postypes_obj) {
177
-                            echo 'selected="selected"';
178
-                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
179
-                            echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
177
+							echo 'selected="selected"';
178
+						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
179
+							echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
180 180
 
181 181
                     <?php } ?>
182 182
 
@@ -190,20 +190,20 @@  discard block
 block discarded – undo
190 190
                 for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
191 191
 
192 192
                 <?php
193
-                $category_taxonomy = geodir_get_taxonomies('gd_place');
194
-                $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
195
-                ?>
193
+				$category_taxonomy = geodir_get_taxonomies('gd_place');
194
+				$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
195
+				?>
196 196
 
197 197
                 <select class="widefat" id="<?php echo $this->get_field_id('category'); ?>"
198 198
                         name="<?php echo $this->get_field_name('category'); ?>">
199 199
                     <option <?php if ($category == '0') {
200
-                        echo 'selected="selected"';
201
-                    } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
200
+						echo 'selected="selected"';
201
+					} ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
202 202
                     <?php foreach ($categories as $category_obj) { ?>
203 203
 
204 204
                         <option <?php if ($category == $category_obj->term_id) {
205
-                            echo 'selected="selected"';
206
-                        } ?>
205
+							echo 'selected="selected"';
206
+						} ?>
207 207
                             value="<?php echo $category_obj->term_id; ?>"><?php echo geodir_utf8_ucfirst($category_obj->name); ?></option>
208 208
 
209 209
                     <?php } ?>
@@ -256,12 +256,12 @@  discard block
 block discarded – undo
256 256
                 <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>"
257 257
                         name="<?php echo $this->get_field_name('animation'); ?>">
258 258
                     <option <?php if ($animation == 'slide') {
259
-                        echo 'selected="selected"';
260
-                    } ?> value="slide">Slide
259
+						echo 'selected="selected"';
260
+					} ?> value="slide">Slide
261 261
                     </option>
262 262
                     <option <?php if ($animation == 'fade') {
263
-                        echo 'selected="selected"';
264
-                    } ?> value="fade">Fade
263
+						echo 'selected="selected"';
264
+					} ?> value="fade">Fade
265 265
                     </option>
266 266
                 </select>
267 267
             </label>
@@ -292,8 +292,8 @@  discard block
 block discarded – undo
292 292
                 for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?>
293 293
 
294 294
                 <input type="checkbox" <?php if ($slideshow) {
295
-                    echo 'checked="checked"';
296
-                } ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1"
295
+					echo 'checked="checked"';
296
+				} ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1"
297 297
                        name="<?php echo $this->get_field_name('slideshow'); ?>"/>
298 298
 
299 299
             </label>
@@ -304,8 +304,8 @@  discard block
 block discarded – undo
304 304
                 for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?>
305 305
 
306 306
                 <input type="checkbox" <?php if ($animationLoop) {
307
-                    echo 'checked="checked"';
308
-                } ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1"
307
+					echo 'checked="checked"';
308
+				} ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1"
309 309
                        name="<?php echo $this->get_field_name('animationLoop'); ?>"/>
310 310
 
311 311
             </label>
@@ -316,8 +316,8 @@  discard block
 block discarded – undo
316 316
                 for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?>
317 317
 
318 318
                 <input type="checkbox" <?php if ($directionNav) {
319
-                    echo 'checked="checked"';
320
-                } ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1"
319
+					echo 'checked="checked"';
320
+				} ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1"
321 321
                        name="<?php echo $this->get_field_name('directionNav'); ?>"/>
322 322
 
323 323
             </label>
@@ -329,8 +329,8 @@  discard block
 block discarded – undo
329 329
                 for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?>
330 330
 
331 331
                 <input type="checkbox" <?php if ($show_title) {
332
-                    echo 'checked="checked"';
333
-                } ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1"
332
+					echo 'checked="checked"';
333
+				} ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1"
334 334
                        name="<?php echo $this->get_field_name('show_title'); ?>"/>
335 335
 
336 336
             </label>
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
 
379 379
 
380 380
     <?php
381
-    }
381
+	}
382 382
 } // class geodir_listing_slider_widget
383 383
 
384 384
 register_widget('geodir_listing_slider_widget');
385 385
\ No newline at end of file
Please login to merge, or discard this patch.