Test Failed
Push — master ( cedafa...ef1566 )
by Stiofan
10:54
created
geodirectory_template_tags.php 3 patches
Braces   +37 added lines, -19 removed lines patch added patch discarded remove patch
@@ -245,13 +245,14 @@  discard block
 block discarded – undo
245 245
  */
246 246
 function geodir_add_async_forscript($url)
247 247
 {
248
-    if (strpos($url, '#asyncload')===false)
249
-        return $url;
250
-    else if (is_admin())
251
-        return str_replace('#asyncload', '', $url);
252
-    else
253
-        return str_replace('#asyncload', '', $url)."' async='async";
254
-}
248
+    if (strpos($url, '#asyncload')===false) {
249
+            return $url;
250
+    } else if (is_admin()) {
251
+            return str_replace('#asyncload', '', $url);
252
+    } else {
253
+            return str_replace('#asyncload', '', $url)."' async='async";
254
+    }
255
+    }
255 256
 add_filter('clean_url', 'geodir_add_async_forscript', 11, 1);
256 257
 
257 258
 /**
@@ -318,8 +319,10 @@  discard block
 block discarded – undo
318 319
 
319 320
     $half_pages_to_show = round($pages_to_show / 2);
320 321
 
321
-    if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) // dont apply default  pagination for geodirectory home page.
322
-        return;
322
+    if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) {
323
+    	// dont apply default  pagination for geodirectory home page.
324
+        return;
325
+    }
323 326
 
324 327
     if (!is_single()) {
325 328
         if (function_exists('geodir_location_geo_home_link')) {
@@ -439,11 +442,21 @@  discard block
 block discarded – undo
439 442
     }
440 443
     $dist_dif = 1000;
441 444
 
442
-    if ($dist <= 5000) $dist_dif = 500;
443
-    if ($dist <= 1000) $dist_dif = 100;
444
-    if ($dist <= 500) $dist_dif = 50;
445
-    if ($dist <= 100) $dist_dif = 10;
446
-    if ($dist <= 50) $dist_dif = 5;
445
+    if ($dist <= 5000) {
446
+    	$dist_dif = 500;
447
+    }
448
+    if ($dist <= 1000) {
449
+    	$dist_dif = 100;
450
+    }
451
+    if ($dist <= 500) {
452
+    	$dist_dif = 50;
453
+    }
454
+    if ($dist <= 100) {
455
+    	$dist_dif = 10;
456
+    }
457
+    if ($dist <= 50) {
458
+    	$dist_dif = 5;
459
+    }
447 460
 
448 461
     ?>
449 462
     <script type="text/javascript">
@@ -505,18 +518,23 @@  discard block
 block discarded – undo
505 518
 {
506 519
 
507 520
     $default_search_for_text = SEARCH_FOR_TEXT;
508
-    if (get_option('geodir_search_field_default_text'))
509
-        $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
521
+    if (get_option('geodir_search_field_default_text')) {
522
+            $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
523
+    }
510 524
 
511 525
     $default_near_text = NEAR_TEXT;
512
-    if (get_option('geodir_near_field_default_text'))
513
-        $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
526
+    if (get_option('geodir_near_field_default_text')) {
527
+            $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
528
+    }
514 529
 
515 530
     ?>
516 531
 
517 532
 
518 533
     <script type="text/javascript">
519
-        var default_location = '<?php if($search_location = geodir_get_default_location())  echo $search_location->city ;?>';
534
+        var default_location = '<?php if($search_location = geodir_get_default_location()) {
535
+	echo $search_location->city ;
536
+}
537
+?>';
520 538
         var latlng;
521 539
         var address;
522 540
         var dist = 0;
Please login to merge, or discard this patch.
Indentation   +329 added lines, -329 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 function geodir_core_dequeue_script()
24 24
 {
25
-    wp_dequeue_script('flexslider');
25
+	wp_dequeue_script('flexslider');
26 26
 }
27 27
 
28 28
 add_action('wp_print_scripts', 'geodir_core_dequeue_script', 100);
@@ -35,168 +35,168 @@  discard block
 block discarded – undo
35 35
  */
36 36
 function geodir_templates_scripts()
37 37
 {
38
-    $is_detail_page = false;
39
-    $geodir_map_name = geodir_map_name();
38
+	$is_detail_page = false;
39
+	$geodir_map_name = geodir_map_name();
40 40
 
41
-    if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) {
42
-        $is_detail_page = true;
43
-    }
44
-
45
-    wp_enqueue_script('jquery');
46
-
47
-    wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
48
-    wp_enqueue_script('geodirectory-script');
41
+	if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) {
42
+		$is_detail_page = true;
43
+	}
49 44
 
50
-    $geodir_vars_data = array(
51
-        'siteurl' => get_option('siteurl'),
52
-        'geodir_plugin_url' => geodir_plugin_url(),
53
-        'geodir_lazy_load' => get_option('geodir_lazy_load',1),
54
-        'geodir_ajax_url' => geodir_get_ajax_url(),
55
-        'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'),
56
-        'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue
57
-    );
45
+	wp_enqueue_script('jquery');
46
+
47
+	wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
48
+	wp_enqueue_script('geodirectory-script');
49
+
50
+	$geodir_vars_data = array(
51
+		'siteurl' => get_option('siteurl'),
52
+		'geodir_plugin_url' => geodir_plugin_url(),
53
+		'geodir_lazy_load' => get_option('geodir_lazy_load',1),
54
+		'geodir_ajax_url' => geodir_get_ajax_url(),
55
+		'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'),
56
+		'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue
57
+	);
58
+
59
+	/**
60
+	 * Filter the `geodir_var` data array that outputs the  wp_localize_script() translations and variables.
61
+	 *
62
+	 * This is used by addons to add JS translatable variables.
63
+	 *
64
+	 * @since 1.4.4
65
+	 * @param array $geodir_vars_data {
66
+	 *    geodir var data used by addons to add JS translatable variables.
67
+	 *
68
+	 *    @type string $siteurl Site url.
69
+	 *    @type string $geodir_plugin_url Geodirectory core plugin url.
70
+	 *    @type string $geodir_ajax_url Geodirectory plugin ajax url.
71
+	 *    @type int $geodir_gd_modal Disable GD modal that displays slideshow images in popup?.
72
+	 *    @type int $is_rtl Checks if current locale is RTL.
73
+	 *
74
+	 * }
75
+	 */
76
+	$geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data);
77
+
78
+	wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data);
79
+
80
+	wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true);
81
+	if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');}
82
+
83
+	wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true);
84
+	wp_enqueue_script('geodirectory-lightbox-jquery');
85
+
86
+	wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true);
87
+	if ($is_detail_page) {
88
+		wp_enqueue_script('geodirectory-jquery-simplemodal');
89
+	}
58 90
 
59
-    /**
60
-     * Filter the `geodir_var` data array that outputs the  wp_localize_script() translations and variables.
61
-     *
62
-     * This is used by addons to add JS translatable variables.
63
-     *
64
-     * @since 1.4.4
65
-     * @param array $geodir_vars_data {
66
-     *    geodir var data used by addons to add JS translatable variables.
67
-     *
68
-     *    @type string $siteurl Site url.
69
-     *    @type string $geodir_plugin_url Geodirectory core plugin url.
70
-     *    @type string $geodir_ajax_url Geodirectory plugin ajax url.
71
-     *    @type int $geodir_gd_modal Disable GD modal that displays slideshow images in popup?.
72
-     *    @type int $is_rtl Checks if current locale is RTL.
73
-     *
74
-     * }
75
-     */
76
-    $geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data);
77
-
78
-    wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data);
79
-
80
-    wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true);
81
-    if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');}
82
-
83
-    wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true);
84
-    wp_enqueue_script('geodirectory-lightbox-jquery');
85
-
86
-    wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true);
87
-    if ($is_detail_page) {
88
-        wp_enqueue_script('geodirectory-jquery-simplemodal');
89
-    }
90
-
91
-    if (in_array($geodir_map_name, array('auto', 'google'))) {
92
-        $map_lang = "&language=" . geodir_get_map_default_language();
93
-        $map_key = "&key=" . geodir_get_map_api_key();
94
-        /**
95
-         * Filter the variables that are added to the end of the google maps script call.
96
-         *
97
-         * This i used to change things like google maps language etc.
98
-         *
99
-         * @since 1.0.0
100
-         * @param string $var The string to filter, default is empty string.
101
-         */
102
-        $map_extra = apply_filters('geodir_googlemap_script_extra', '');
103
-        wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL);
104
-    }
91
+	if (in_array($geodir_map_name, array('auto', 'google'))) {
92
+		$map_lang = "&language=" . geodir_get_map_default_language();
93
+		$map_key = "&key=" . geodir_get_map_api_key();
94
+		/**
95
+		 * Filter the variables that are added to the end of the google maps script call.
96
+		 *
97
+		 * This i used to change things like google maps language etc.
98
+		 *
99
+		 * @since 1.0.0
100
+		 * @param string $var The string to filter, default is empty string.
101
+		 */
102
+		$map_extra = apply_filters('geodir_googlemap_script_extra', '');
103
+		wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL);
104
+	}
105 105
     
106
-    if ($geodir_map_name == 'osm') {
107
-        // Leaflet OpenStreetMap
108
-        wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
109
-        wp_enqueue_style('geodirectory-leaflet-style');
106
+	if ($geodir_map_name == 'osm') {
107
+		// Leaflet OpenStreetMap
108
+		wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
109
+		wp_enqueue_style('geodirectory-leaflet-style');
110 110
             
111
-        wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
112
-        wp_enqueue_script('geodirectory-leaflet-script');
111
+		wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
112
+		wp_enqueue_script('geodirectory-leaflet-script');
113 113
         
114
-        wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
115
-        wp_enqueue_script('geodirectory-leaflet-geo-script');
114
+		wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
115
+		wp_enqueue_script('geodirectory-leaflet-geo-script');
116 116
         
117
-        if ($is_detail_page) {
118
-            wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
119
-            wp_enqueue_style('geodirectory-leaflet-routing-style');
117
+		if ($is_detail_page) {
118
+			wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
119
+			wp_enqueue_style('geodirectory-leaflet-routing-style');
120 120
                 
121
-            wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
122
-            wp_enqueue_script('geodirectory-leaflet-routing-script');
123
-        }
124
-    }
125
-    wp_enqueue_script( 'jquery-ui-autocomplete' );
121
+			wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
122
+			wp_enqueue_script('geodirectory-leaflet-routing-script');
123
+		}
124
+	}
125
+	wp_enqueue_script( 'jquery-ui-autocomplete' );
126 126
     
127
-    wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
128
-    wp_enqueue_script('geodirectory-goMap-script');
129
-
130
-
131
-    wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
132
-    wp_enqueue_script('chosen');
133
-
134
-    wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
135
-    wp_enqueue_script('geodirectory-choose-ajax');
136
-
137
-    wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
138
-
139
-    if (is_page() && geodir_is_page('add-listing')) {
140
-        // SCRIPT FOR UPLOAD
141
-        wp_enqueue_script('plupload-all');
142
-        wp_enqueue_script('jquery-ui-sortable');
143
-
144
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true);
145
-        wp_enqueue_script('geodirectory-plupload-script');
146
-        // SCRIPT FOR UPLOAD END
147
-
148
-        // check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
149
-        if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
150
-            $ajax_url = admin_url('admin-ajax.php');
151
-        } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
152
-            $ajax_url = admin_url('admin-ajax.php');
153
-        } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
154
-            $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
155
-        } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
156
-            $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
157
-        } else {
158
-            $ajax_url = admin_url('admin-ajax.php');
159
-        }
127
+	wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
128
+	wp_enqueue_script('geodirectory-goMap-script');
129
+
130
+
131
+	wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
132
+	wp_enqueue_script('chosen');
133
+
134
+	wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
135
+	wp_enqueue_script('geodirectory-choose-ajax');
136
+
137
+	wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
138
+
139
+	if (is_page() && geodir_is_page('add-listing')) {
140
+		// SCRIPT FOR UPLOAD
141
+		wp_enqueue_script('plupload-all');
142
+		wp_enqueue_script('jquery-ui-sortable');
143
+
144
+		wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true);
145
+		wp_enqueue_script('geodirectory-plupload-script');
146
+		// SCRIPT FOR UPLOAD END
147
+
148
+		// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
149
+		if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
150
+			$ajax_url = admin_url('admin-ajax.php');
151
+		} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
152
+			$ajax_url = admin_url('admin-ajax.php');
153
+		} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
154
+			$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
155
+		} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
156
+			$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
157
+		} else {
158
+			$ajax_url = admin_url('admin-ajax.php');
159
+		}
160 160
 
161
-        // place js config array for plupload
162
-        $plupload_init = array(
163
-            'runtimes' => 'html5,silverlight,flash,browserplus,gears,html4',
164
-            'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
165
-            'container' => 'plupload-upload-ui', // will be adjusted per uploader
166
-            'drop_element' => 'dropbox', // will be adjusted per uploader
167
-            'file_data_name' => 'async-upload', // will be adjusted per uploader
168
-            'multiple_queues' => true,
169
-            'max_file_size' => geodir_max_upload_size(),
170
-            'url' => $ajax_url,
171
-            'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
172
-            'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
173
-            'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
174
-            'multipart' => true,
175
-            'urlstream_upload' => true,
176
-            'multi_selection' => false, // will be added per uploader
177
-            // additional post data to send to our ajax hook
178
-            'multipart_params' => array(
179
-                '_ajax_nonce' => "", // will be added per uploader
180
-                'action' => 'plupload_action', // the ajax action name
181
-                'imgid' => 0 // will be added per uploader
182
-            )
183
-        );
184
-        $base_plupload_config = json_encode($plupload_init);
185
-
186
-        $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
187
-            'upload_img_size' => geodir_max_upload_size());
188
-
189
-        wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
190
-
191
-        wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload');
192
-    } // End if for add place page
193
-
194
-    wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
195
-    if ($is_detail_page) {
161
+		// place js config array for plupload
162
+		$plupload_init = array(
163
+			'runtimes' => 'html5,silverlight,flash,browserplus,gears,html4',
164
+			'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
165
+			'container' => 'plupload-upload-ui', // will be adjusted per uploader
166
+			'drop_element' => 'dropbox', // will be adjusted per uploader
167
+			'file_data_name' => 'async-upload', // will be adjusted per uploader
168
+			'multiple_queues' => true,
169
+			'max_file_size' => geodir_max_upload_size(),
170
+			'url' => $ajax_url,
171
+			'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
172
+			'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
173
+			'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
174
+			'multipart' => true,
175
+			'urlstream_upload' => true,
176
+			'multi_selection' => false, // will be added per uploader
177
+			// additional post data to send to our ajax hook
178
+			'multipart_params' => array(
179
+				'_ajax_nonce' => "", // will be added per uploader
180
+				'action' => 'plupload_action', // the ajax action name
181
+				'imgid' => 0 // will be added per uploader
182
+			)
183
+		);
184
+		$base_plupload_config = json_encode($plupload_init);
185
+
186
+		$gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
187
+			'upload_img_size' => geodir_max_upload_size());
188
+
189
+		wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
190
+
191
+		wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload');
192
+	} // End if for add place page
193
+
194
+	wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
195
+	if ($is_detail_page) {
196 196
 		wp_enqueue_script('geodirectory-post-custom-js');
197 197
 	}
198 198
 
199
-    // font awesome rating script
199
+	// font awesome rating script
200 200
 	if (get_option('geodir_reviewrating_enable_font_awesome')) {
201 201
 		wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true);
202 202
 		wp_enqueue_script('geodir-barrating-js');
@@ -205,11 +205,11 @@  discard block
 block discarded – undo
205 205
 		wp_enqueue_script('geodir-jRating-js');
206 206
 	}
207 207
 
208
-    wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
209
-    wp_enqueue_script('geodir-on-document-load');
208
+	wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
209
+	wp_enqueue_script('geodir-on-document-load');
210 210
 
211
-    wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
212
-    wp_enqueue_script('google-geometa');
211
+	wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
212
+	wp_enqueue_script('google-geometa');
213 213
 }
214 214
 
215 215
 /**
@@ -223,8 +223,8 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_header_scripts()
225 225
 {
226
-    echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>';
227
-    echo stripslashes(get_option('geodir_header_scripts'));
226
+	echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>';
227
+	echo stripslashes(get_option('geodir_header_scripts'));
228 228
 }
229 229
 
230 230
 
@@ -240,16 +240,16 @@  discard block
 block discarded – undo
240 240
 function geodir_footer_scripts()
241 241
 {	
242 242
 	echo stripslashes(get_option('geodir_ga_tracking_code'));
243
-    echo stripslashes(get_option('geodir_footer_scripts'));
243
+	echo stripslashes(get_option('geodir_footer_scripts'));
244 244
 
245
-    /*
245
+	/*
246 246
      * Apple suck and can't/won't fix bugs: https://bugs.webkit.org/show_bug.cgi?id=136041
247 247
      *
248 248
      * Flexbox wont wrap on ios for search form items
249 249
      */
250
-    if (preg_match( '/iPad|iPod|iPhone|Safari/', $_SERVER['HTTP_USER_AGENT'] ) ) {
251
-        echo "<style>body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper{flex:50 1 auto !important;min-width: initial !important;width:auto !important;}</style>";
252
-    }
250
+	if (preg_match( '/iPad|iPod|iPhone|Safari/', $_SERVER['HTTP_USER_AGENT'] ) ) {
251
+		echo "<style>body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper{flex:50 1 auto !important;min-width: initial !important;width:auto !important;}</style>";
252
+	}
253 253
 }
254 254
 
255 255
 
@@ -263,12 +263,12 @@  discard block
 block discarded – undo
263 263
  */
264 264
 function geodir_add_async_forscript($url)
265 265
 {
266
-    if (strpos($url, '#asyncload')===false)
267
-        return $url;
268
-    else if (is_admin())
269
-        return str_replace('#asyncload', '', $url);
270
-    else
271
-        return str_replace('#asyncload', '', $url)."' async='async";
266
+	if (strpos($url, '#asyncload')===false)
267
+		return $url;
268
+	else if (is_admin())
269
+		return str_replace('#asyncload', '', $url);
270
+	else
271
+		return str_replace('#asyncload', '', $url)."' async='async";
272 272
 }
273 273
 add_filter('clean_url', 'geodir_add_async_forscript', 11, 1);
274 274
 
@@ -281,17 +281,17 @@  discard block
 block discarded – undo
281 281
 function geodir_templates_styles()
282 282
 {
283 283
 
284
-    wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
285
-    wp_enqueue_style('geodir-core-scss');
286
-    wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
284
+	wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
285
+	wp_enqueue_style('geodir-core-scss');
286
+	wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
287 287
 
288
-    if(is_rtl()){
289
-    wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
290
-    wp_enqueue_style('geodirectory-frontend-rtl-style');
291
-    }
288
+	if(is_rtl()){
289
+	wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
290
+	wp_enqueue_style('geodirectory-frontend-rtl-style');
291
+	}
292 292
 
293
-    wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
294
-    wp_enqueue_style('font-awesome');
293
+	wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
294
+	wp_enqueue_style('font-awesome');
295 295
 
296 296
 
297 297
 }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
  */
306 306
 function geodir_get_sidebar()
307 307
 {
308
-    get_sidebar('geodirectory');
308
+	get_sidebar('geodirectory');
309 309
 }
310 310
 
311 311
 /**
@@ -324,122 +324,122 @@  discard block
 block discarded – undo
324 324
  * @param bool $always_show Do you want to show the pagination always? Default: false.
325 325
  */
326 326
 function geodir_pagination($before = '', $after = '', $prelabel = '', $nxtlabel = '', $pages_to_show = 5, $always_show = false) {
327
-    global $wp_query, $posts_per_page, $wpdb, $paged, $blog_id;
327
+	global $wp_query, $posts_per_page, $wpdb, $paged, $blog_id;
328 328
 
329
-    if (empty($prelabel)) {
330
-        $prelabel = '<strong>&laquo;</strong>';
331
-    }
329
+	if (empty($prelabel)) {
330
+		$prelabel = '<strong>&laquo;</strong>';
331
+	}
332 332
 
333
-    if (empty($nxtlabel)) {
334
-        $nxtlabel = '<strong>&raquo;</strong>';
335
-    }
333
+	if (empty($nxtlabel)) {
334
+		$nxtlabel = '<strong>&raquo;</strong>';
335
+	}
336 336
 
337
-    $half_pages_to_show = round($pages_to_show / 2);
337
+	$half_pages_to_show = round($pages_to_show / 2);
338 338
 
339
-    if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) // dont apply default  pagination for geodirectory home page.
340
-        return;
339
+	if (geodir_is_page('home') || (get_option('geodir_set_as_home') && is_home())) // dont apply default  pagination for geodirectory home page.
340
+		return;
341 341
 
342
-    if (!is_single()) {
343
-        if (function_exists('geodir_location_geo_home_link')) {
344
-            remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
345
-        }
346
-        $numposts = $wp_query->found_posts;
342
+	if (!is_single()) {
343
+		if (function_exists('geodir_location_geo_home_link')) {
344
+			remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
345
+		}
346
+		$numposts = $wp_query->found_posts;
347 347
 
348
-        $max_page = ceil($numposts / $posts_per_page);
348
+		$max_page = ceil($numposts / $posts_per_page);
349 349
 
350
-        if (empty($paged)) {
351
-            $paged = 1;
352
-        }
350
+		if (empty($paged)) {
351
+			$paged = 1;
352
+		}
353 353
         
354
-        $post_type = geodir_get_current_posttype();
355
-        $listing_type_name = get_post_type_plural_label($post_type);
356
-        if (geodir_is_page('listing') || geodir_is_page('search')) {            
357
-            $term = array();
354
+		$post_type = geodir_get_current_posttype();
355
+		$listing_type_name = get_post_type_plural_label($post_type);
356
+		if (geodir_is_page('listing') || geodir_is_page('search')) {            
357
+			$term = array();
358 358
             
359
-            if (is_tax()) {
360
-                $term_id = get_queried_object_id();
361
-                $taxonomy = get_query_var('taxonomy');
359
+			if (is_tax()) {
360
+				$term_id = get_queried_object_id();
361
+				$taxonomy = get_query_var('taxonomy');
362 362
 
363
-                if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) {
364
-                    $term = get_term($term_id, $post_type . 'category');
365
-                }
366
-            }
363
+				if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) {
364
+					$term = get_term($term_id, $post_type . 'category');
365
+				}
366
+			}
367 367
             
368
-            if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) {
369
-                $taxonomy_search = $_REQUEST['s' . $post_type . 'category'];
368
+			if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) {
369
+				$taxonomy_search = $_REQUEST['s' . $post_type . 'category'];
370 370
                 
371
-                if (!is_array($taxonomy_search)) {
372
-                    $term = get_term((int)$taxonomy_search, $post_type . 'category');
373
-                } else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
374
-                    $term = get_term((int)$taxonomy_search[0], $post_type . 'category');
375
-                }
376
-            }
371
+				if (!is_array($taxonomy_search)) {
372
+					$term = get_term((int)$taxonomy_search, $post_type . 'category');
373
+				} else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
374
+					$term = get_term((int)$taxonomy_search[0], $post_type . 'category');
375
+				}
376
+			}
377 377
             
378
-            if (!empty($term) && !is_wp_error($term)) {
379
-                $listing_type_name = $term->name;
380
-            }
381
-        }
378
+			if (!empty($term) && !is_wp_error($term)) {
379
+				$listing_type_name = $term->name;
380
+			}
381
+		}
382 382
 
383
-        if ($max_page > 1 || $always_show) {            
384
-            // Extra pagination info
385
-            $geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
386
-            $start_no = ( $paged - 1 ) * $posts_per_page + 1;
387
-            $end_no = min($paged * $posts_per_page, $numposts);
383
+		if ($max_page > 1 || $always_show) {            
384
+			// Extra pagination info
385
+			$geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
386
+			$start_no = ( $paged - 1 ) * $posts_per_page + 1;
387
+			$end_no = min($paged * $posts_per_page, $numposts);
388 388
 
389
-            if ($geodir_pagination_more_info != '') {
390
-                if ($listing_type_name) {
391
-                    $listing_type_name = __($listing_type_name, 'geodirectory');
392
-                    $pegination_desc = wp_sprintf(__('Showing %s %d-%d of %d', 'geodirectory'), $listing_type_name, $start_no, $end_no, $numposts);
393
-                } else {
394
-                    $pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts);
395
-                }
396
-                $pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>';
397
-                /**
398
-                 * Adds an extra pagination info above/under pagination.
399
-                 *
400
-                 * @since 1.5.9
401
-                 *
402
-                 * @param string $pagination_info Extra pagination info content.
403
-                 * @param string $listing_type_name Listing results type.
404
-                 * @param string $start_no First result number.
405
-                 * @param string $end_no Last result number.
406
-                 * @param string $numposts Total number of listings.
407
-                 * @param string $post_type The post type.
408
-                 */
409
-                $pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type);
389
+			if ($geodir_pagination_more_info != '') {
390
+				if ($listing_type_name) {
391
+					$listing_type_name = __($listing_type_name, 'geodirectory');
392
+					$pegination_desc = wp_sprintf(__('Showing %s %d-%d of %d', 'geodirectory'), $listing_type_name, $start_no, $end_no, $numposts);
393
+				} else {
394
+					$pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts);
395
+				}
396
+				$pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>';
397
+				/**
398
+				 * Adds an extra pagination info above/under pagination.
399
+				 *
400
+				 * @since 1.5.9
401
+				 *
402
+				 * @param string $pagination_info Extra pagination info content.
403
+				 * @param string $listing_type_name Listing results type.
404
+				 * @param string $start_no First result number.
405
+				 * @param string $end_no Last result number.
406
+				 * @param string $numposts Total number of listings.
407
+				 * @param string $post_type The post type.
408
+				 */
409
+				$pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type);
410 410
                 
411
-                if ($geodir_pagination_more_info == 'before') {
412
-                    $before = $before . $pagination_info;
413
-                } else if ($geodir_pagination_more_info == 'after') {
414
-                    $after = $pagination_info . $after;
415
-                }
416
-            }
411
+				if ($geodir_pagination_more_info == 'before') {
412
+					$before = $before . $pagination_info;
413
+				} else if ($geodir_pagination_more_info == 'after') {
414
+					$after = $pagination_info . $after;
415
+				}
416
+			}
417 417
             
418
-            echo "$before <div class='Navi gd-navi'>";
419
-            if ($paged >= ($pages_to_show - 1)) {
420
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link()) . '">&laquo;</a>';
421
-            }
422
-            previous_posts_link($prelabel);
423
-            for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) {
424
-                if ($i >= 1 && $i <= $max_page) {
425
-                    if ($i == $paged) {
426
-                        echo "<strong class='on'>$i</strong>";
427
-                    } else {
428
-                        echo ' <a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($i)) . '">' . $i . '</a> ';
429
-                    }
430
-                }
431
-            }
432
-            next_posts_link($nxtlabel, $max_page);
433
-            if (($paged + $half_pages_to_show) < ($max_page)) {
434
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)) . '">&raquo;</a>';
435
-            }
436
-            echo "</div> $after";
437
-        }
418
+			echo "$before <div class='Navi gd-navi'>";
419
+			if ($paged >= ($pages_to_show - 1)) {
420
+				echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link()) . '">&laquo;</a>';
421
+			}
422
+			previous_posts_link($prelabel);
423
+			for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) {
424
+				if ($i >= 1 && $i <= $max_page) {
425
+					if ($i == $paged) {
426
+						echo "<strong class='on'>$i</strong>";
427
+					} else {
428
+						echo ' <a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($i)) . '">' . $i . '</a> ';
429
+					}
430
+				}
431
+			}
432
+			next_posts_link($nxtlabel, $max_page);
433
+			if (($paged + $half_pages_to_show) < ($max_page)) {
434
+				echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)) . '">&raquo;</a>';
435
+			}
436
+			echo "</div> $after";
437
+		}
438 438
         
439
-        if (function_exists('geodir_location_geo_home_link')) {
440
-            add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
441
-        }
442
-    }
439
+		if (function_exists('geodir_location_geo_home_link')) {
440
+			add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
441
+		}
442
+	}
443 443
 }
444 444
 
445 445
 /**
@@ -450,20 +450,20 @@  discard block
 block discarded – undo
450 450
  */
451 451
 function geodir_listingsearch_scripts()
452 452
 {
453
-    if (get_option('gd_search_dist') != '') {
454
-        $dist = get_option('gd_search_dist');
455
-    } else {
456
-        $dist = 500;
457
-    }
458
-    $dist_dif = 1000;
459
-
460
-    if ($dist <= 5000) $dist_dif = 500;
461
-    if ($dist <= 1000) $dist_dif = 100;
462
-    if ($dist <= 500) $dist_dif = 50;
463
-    if ($dist <= 100) $dist_dif = 10;
464
-    if ($dist <= 50) $dist_dif = 5;
465
-
466
-    ?>
453
+	if (get_option('gd_search_dist') != '') {
454
+		$dist = get_option('gd_search_dist');
455
+	} else {
456
+		$dist = 500;
457
+	}
458
+	$dist_dif = 1000;
459
+
460
+	if ($dist <= 5000) $dist_dif = 500;
461
+	if ($dist <= 1000) $dist_dif = 100;
462
+	if ($dist <= 500) $dist_dif = 50;
463
+	if ($dist <= 100) $dist_dif = 10;
464
+	if ($dist <= 50) $dist_dif = 5;
465
+
466
+	?>
467 467
     <script type="text/javascript">
468 468
 
469 469
         jQuery(function ($) {
@@ -522,15 +522,15 @@  discard block
 block discarded – undo
522 522
 function geodir_add_sharelocation_scripts()
523 523
 {
524 524
 
525
-    $default_search_for_text = SEARCH_FOR_TEXT;
526
-    if (get_option('geodir_search_field_default_text'))
527
-        $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
525
+	$default_search_for_text = SEARCH_FOR_TEXT;
526
+	if (get_option('geodir_search_field_default_text'))
527
+		$default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
528 528
 
529
-    $default_near_text = NEAR_TEXT;
530
-    if (get_option('geodir_near_field_default_text'))
531
-        $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
529
+	$default_near_text = NEAR_TEXT;
530
+	if (get_option('geodir_near_field_default_text'))
531
+		$default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
532 532
 
533
-    ?>
533
+	?>
534 534
 
535 535
 
536 536
     <script type="text/javascript">
@@ -611,14 +611,14 @@  discard block
 block discarded – undo
611 611
                     initialise2();
612 612
                 } else {
613 613
                     <?php
614
-                    $near_add = get_option('geodir_search_near_addition');
615
-                    /**
616
-                     * Adds any extra info to the near search box query when trying to geolocate it via google api.
617
-                     *
618
-                     * @since 1.0.0
619
-                     */
620
-                    $near_add2 = apply_filters('geodir_search_near_addition', '');
621
-                    ?>
614
+					$near_add = get_option('geodir_search_near_addition');
615
+					/**
616
+					 * Adds any extra info to the near search box query when trying to geolocate it via google api.
617
+					 *
618
+					 * @since 1.0.0
619
+					 */
620
+					$near_add2 = apply_filters('geodir_search_near_addition', '');
621
+					?>
622 622
                     if (window.gdMaps === 'google') {
623 623
                         Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", ' . $near_add . '"' : '') . $near_add2;?>},
624 624
                             function (results, status) {
@@ -721,30 +721,30 @@  discard block
 block discarded – undo
721 721
  */
722 722
 function geodir_show_badges_on_image($which, $post, $link)
723 723
 {
724
-    $return = '';
725
-    switch ($which) {
726
-        case 'featured':
727
-            /**
728
-             * Filter the featured image badge html that appears in the listings pages over the thumbnail.
729
-             *
730
-             * @since 1.0.0
731
-             * @param object $post The post object.
732
-             * @param string $link The link to the post.
733
-             */
734
-            $return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img">&nbsp;</span></a>',$post,$link);
735
-            break;
736
-        case 'new' :
737
-            /**
738
-             * Filter the new image badge html that appears in the listings pages over the thumbnail.
739
-             *
740
-             * @since 1.0.0
741
-             * @param object $post The post object.
742
-             * @param string $link The link to the post.
743
-             */
744
-            $return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing">&nbsp;</span></a>',$post,$link);
745
-            break;
746
-
747
-    }
724
+	$return = '';
725
+	switch ($which) {
726
+		case 'featured':
727
+			/**
728
+			 * Filter the featured image badge html that appears in the listings pages over the thumbnail.
729
+			 *
730
+			 * @since 1.0.0
731
+			 * @param object $post The post object.
732
+			 * @param string $link The link to the post.
733
+			 */
734
+			$return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img">&nbsp;</span></a>',$post,$link);
735
+			break;
736
+		case 'new' :
737
+			/**
738
+			 * Filter the new image badge html that appears in the listings pages over the thumbnail.
739
+			 *
740
+			 * @since 1.0.0
741
+			 * @param object $post The post object.
742
+			 * @param string $link The link to the post.
743
+			 */
744
+			$return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing">&nbsp;</span></a>',$post,$link);
745
+			break;
746
+
747
+	}
748 748
     
749
-    return $return;
749
+	return $return;
750 750
 }
Please login to merge, or discard this patch.
Spacing   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -38,21 +38,21 @@  discard block
 block discarded – undo
38 38
     $is_detail_page = false;
39 39
     $geodir_map_name = geodir_map_name();
40 40
 
41
-    if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) {
41
+    if ((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview'))) {
42 42
         $is_detail_page = true;
43 43
     }
44 44
 
45 45
     wp_enqueue_script('jquery');
46 46
 
47
-    wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
47
+    wp_register_script('geodirectory-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory.min.js#asyncload', array(), GEODIRECTORY_VERSION);
48 48
     wp_enqueue_script('geodirectory-script');
49 49
 
50 50
     $geodir_vars_data = array(
51 51
         'siteurl' => get_option('siteurl'),
52 52
         'geodir_plugin_url' => geodir_plugin_url(),
53
-        'geodir_lazy_load' => get_option('geodir_lazy_load',1),
53
+        'geodir_lazy_load' => get_option('geodir_lazy_load', 1),
54 54
         'geodir_ajax_url' => geodir_get_ajax_url(),
55
-        'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'),
55
+        'geodir_gd_modal' => (int) get_option('geodir_disable_gb_modal'),
56 56
         'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue
57 57
     );
58 58
 
@@ -73,24 +73,24 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * }
75 75
      */
76
-    $geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data);
76
+    $geodir_vars_data = apply_filters('geodir_vars_data', $geodir_vars_data);
77 77
 
78 78
     wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data);
79 79
 
80
-    wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true);
81
-    if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');}
80
+    wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION, true);
81
+    if ($is_detail_page) {wp_enqueue_script('geodirectory-jquery-flexslider-js'); }
82 82
 
83
-    wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true);
83
+    wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url().'/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION, true);
84 84
     wp_enqueue_script('geodirectory-lightbox-jquery');
85 85
 
86
-    wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true);
86
+    wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url().'/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION, true);
87 87
     if ($is_detail_page) {
88 88
         wp_enqueue_script('geodirectory-jquery-simplemodal');
89 89
     }
90 90
 
91 91
     if (in_array($geodir_map_name, array('auto', 'google'))) {
92
-        $map_lang = "&language=" . geodir_get_map_default_language();
93
-        $map_key = "&key=" . geodir_get_map_api_key();
92
+        $map_lang = "&language=".geodir_get_map_default_language();
93
+        $map_key = "&key=".geodir_get_map_api_key();
94 94
         /**
95 95
          * Filter the variables that are added to the end of the google maps script call.
96 96
          *
@@ -100,48 +100,48 @@  discard block
 block discarded – undo
100 100
          * @param string $var The string to filter, default is empty string.
101 101
          */
102 102
         $map_extra = apply_filters('geodir_googlemap_script_extra', '');
103
-        wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL);
103
+        wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
104 104
     }
105 105
     
106 106
     if ($geodir_map_name == 'osm') {
107 107
         // Leaflet OpenStreetMap
108
-        wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
108
+        wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
109 109
         wp_enqueue_style('geodirectory-leaflet-style');
110 110
             
111
-        wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
111
+        wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
112 112
         wp_enqueue_script('geodirectory-leaflet-script');
113 113
         
114
-        wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
114
+        wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION);
115 115
         wp_enqueue_script('geodirectory-leaflet-geo-script');
116 116
         
117 117
         if ($is_detail_page) {
118
-            wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
118
+            wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url().'/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION);
119 119
             wp_enqueue_style('geodirectory-leaflet-routing-style');
120 120
                 
121
-            wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
121
+            wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url().'/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION);
122 122
             wp_enqueue_script('geodirectory-leaflet-routing-script');
123 123
         }
124 124
     }
125
-    wp_enqueue_script( 'jquery-ui-autocomplete' );
125
+    wp_enqueue_script('jquery-ui-autocomplete');
126 126
     
127
-    wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
127
+    wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
128 128
     wp_enqueue_script('geodirectory-goMap-script');
129 129
 
130 130
 
131
-    wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
131
+    wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION);
132 132
     wp_enqueue_script('chosen');
133 133
 
134
-    wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
134
+    wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION);
135 135
     wp_enqueue_script('geodirectory-choose-ajax');
136 136
 
137
-    wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
137
+    wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true);
138 138
 
139 139
     if (is_page() && geodir_is_page('add-listing')) {
140 140
         // SCRIPT FOR UPLOAD
141 141
         wp_enqueue_script('plupload-all');
142 142
         wp_enqueue_script('jquery-ui-sortable');
143 143
 
144
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true);
144
+        wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
145 145
         wp_enqueue_script('geodirectory-plupload-script');
146 146
         // SCRIPT FOR UPLOAD END
147 147
 
@@ -188,27 +188,27 @@  discard block
 block discarded – undo
188 188
 
189 189
         wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
190 190
 
191
-        wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload');
191
+        wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation.min.js#asyncload');
192 192
     } // End if for add place page
193 193
 
194
-    wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
194
+    wp_register_script('geodirectory-post-custom-js', geodir_plugin_url().'/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
195 195
     if ($is_detail_page) {
196 196
 		wp_enqueue_script('geodirectory-post-custom-js');
197 197
 	}
198 198
 
199 199
     // font awesome rating script
200 200
 	if (get_option('geodir_reviewrating_enable_font_awesome')) {
201
-		wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true);
201
+		wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true);
202 202
 		wp_enqueue_script('geodir-barrating-js');
203 203
 	} else { // default rating script
204
-		wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.min.js', array(), GEODIRECTORY_VERSION, true);
204
+		wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.min.js', array(), GEODIRECTORY_VERSION, true);
205 205
 		wp_enqueue_script('geodir-jRating-js');
206 206
 	}
207 207
 
208
-    wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
208
+    wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.js#asyncload', array(), GEODIRECTORY_VERSION, true);
209 209
     wp_enqueue_script('geodir-on-document-load');
210 210
 
211
-    wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
211
+    wp_register_script('google-geometa', geodir_plugin_url().'/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true);
212 212
     wp_enqueue_script('google-geometa');
213 213
 }
214 214
 
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_header_scripts()
225 225
 {
226
-    echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>';
226
+    echo '<style>'.stripslashes(get_option('geodir_coustem_css')).'</style>';
227 227
     echo stripslashes(get_option('geodir_header_scripts'));
228 228
 }
229 229
 
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      *
248 248
      * Flexbox wont wrap on ios for search form items
249 249
      */
250
-    if (preg_match( '/iPad|iPod|iPhone|Safari/', $_SERVER['HTTP_USER_AGENT'] ) ) {
250
+    if (preg_match('/iPad|iPod|iPhone|Safari/', $_SERVER['HTTP_USER_AGENT'])) {
251 251
         echo "<style>body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper{flex:50 1 auto !important;min-width: initial !important;width:auto !important;}</style>";
252 252
     }
253 253
 }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
  */
264 264
 function geodir_add_async_forscript($url)
265 265
 {
266
-    if (strpos($url, '#asyncload')===false)
266
+    if (strpos($url, '#asyncload') === false)
267 267
         return $url;
268 268
     else if (is_admin())
269 269
         return str_replace('#asyncload', '', $url);
@@ -281,12 +281,12 @@  discard block
 block discarded – undo
281 281
 function geodir_templates_styles()
282 282
 {
283 283
 
284
-    wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
284
+    wp_register_style('geodir-core-scss', geodir_plugin_url().'/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION);
285 285
     wp_enqueue_style('geodir-core-scss');
286
-    wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
286
+    wp_register_style('geodir-core-scss-footer', geodir_plugin_url().'/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION);
287 287
 
288
-    if(is_rtl()){
289
-    wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
288
+    if (is_rtl()) {
289
+    wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION);
290 290
     wp_enqueue_style('geodirectory-frontend-rtl-style');
291 291
     }
292 292
 
@@ -360,18 +360,18 @@  discard block
 block discarded – undo
360 360
                 $term_id = get_queried_object_id();
361 361
                 $taxonomy = get_query_var('taxonomy');
362 362
 
363
-                if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) {
364
-                    $term = get_term($term_id, $post_type . 'category');
363
+                if ($term_id && $post_type && get_query_var('taxonomy') == $post_type.'category') {
364
+                    $term = get_term($term_id, $post_type.'category');
365 365
                 }
366 366
             }
367 367
             
368
-            if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) {
369
-                $taxonomy_search = $_REQUEST['s' . $post_type . 'category'];
368
+            if (geodir_is_page('search') && !empty($_REQUEST['s'.$post_type.'category'])) {
369
+                $taxonomy_search = $_REQUEST['s'.$post_type.'category'];
370 370
                 
371 371
                 if (!is_array($taxonomy_search)) {
372
-                    $term = get_term((int)$taxonomy_search, $post_type . 'category');
373
-                } else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
374
-                    $term = get_term((int)$taxonomy_search[0], $post_type . 'category');
372
+                    $term = get_term((int) $taxonomy_search, $post_type.'category');
373
+                } else if (is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search
374
+                    $term = get_term((int) $taxonomy_search[0], $post_type.'category');
375 375
                 }
376 376
             }
377 377
             
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
         if ($max_page > 1 || $always_show) {            
384 384
             // Extra pagination info
385 385
             $geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
386
-            $start_no = ( $paged - 1 ) * $posts_per_page + 1;
386
+            $start_no = ($paged - 1) * $posts_per_page + 1;
387 387
             $end_no = min($paged * $posts_per_page, $numposts);
388 388
 
389 389
             if ($geodir_pagination_more_info != '') {
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
                 } else {
394 394
                     $pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts);
395 395
                 }
396
-                $pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>';
396
+                $pagination_info = '<div class="gd-pagination-details">'.$pegination_desc.'</div>';
397 397
                 /**
398 398
                  * Adds an extra pagination info above/under pagination.
399 399
                  *
@@ -409,15 +409,15 @@  discard block
 block discarded – undo
409 409
                 $pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type);
410 410
                 
411 411
                 if ($geodir_pagination_more_info == 'before') {
412
-                    $before = $before . $pagination_info;
412
+                    $before = $before.$pagination_info;
413 413
                 } else if ($geodir_pagination_more_info == 'after') {
414
-                    $after = $pagination_info . $after;
414
+                    $after = $pagination_info.$after;
415 415
                 }
416 416
             }
417 417
             
418 418
             echo "$before <div class='Navi gd-navi'>";
419 419
             if ($paged >= ($pages_to_show - 1)) {
420
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link()) . '">&laquo;</a>';
420
+                echo '<a href="'.str_replace('&paged', '&amp;paged', get_pagenum_link()).'">&laquo;</a>';
421 421
             }
422 422
             previous_posts_link($prelabel);
423 423
             for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) {
@@ -425,13 +425,13 @@  discard block
 block discarded – undo
425 425
                     if ($i == $paged) {
426 426
                         echo "<strong class='on'>$i</strong>";
427 427
                     } else {
428
-                        echo ' <a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($i)) . '">' . $i . '</a> ';
428
+                        echo ' <a href="'.str_replace('&paged', '&amp;paged', get_pagenum_link($i)).'">'.$i.'</a> ';
429 429
                     }
430 430
                 }
431 431
             }
432 432
             next_posts_link($nxtlabel, $max_page);
433 433
             if (($paged + $half_pages_to_show) < ($max_page)) {
434
-                echo '<a href="' . str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)) . '">&raquo;</a>';
434
+                echo '<a href="'.str_replace('&paged', '&amp;paged', get_pagenum_link($max_page)).'">&raquo;</a>';
435 435
             }
436 436
             echo "</div> $after";
437 437
         }
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
         jQuery(function ($) {
470 470
             $("#distance_slider").slider({
471 471
                 range: true,
472
-                values: [0, <?php echo ($_REQUEST['sdist']!='') ? sanitize_text_field($_REQUEST['sdist']) : "0"; ?>],
472
+                values: [0, <?php echo ($_REQUEST['sdist'] != '') ? sanitize_text_field($_REQUEST['sdist']) : "0"; ?>],
473 473
                 min: 0,
474 474
                 max: <?php echo $dist; ?>,
475 475
                 step: <?php echo $dist_dif; ?>,
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
 
535 535
 
536 536
     <script type="text/javascript">
537
-        var default_location = '<?php if($search_location = geodir_get_default_location())  echo $search_location->city ;?>';
537
+        var default_location = '<?php if ($search_location = geodir_get_default_location())  echo $search_location->city; ?>';
538 538
         var latlng;
539 539
         var address;
540 540
         var dist = 0;
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
 				var $form = jQuery(this).closest('form');
551 551
 
552 552
 				if (jQuery("#sdist input[type='radio']:checked").length != 0) dist = jQuery("#sdist input[type='radio']:checked").val();
553
-				if (jQuery('.search_text', $form).val() == '' || jQuery('.search_text', $form).val() == '<?php echo $default_search_for_text;?>') jQuery('.search_text', $form).val(s);
553
+				if (jQuery('.search_text', $form).val() == '' || jQuery('.search_text', $form).val() == '<?php echo $default_search_for_text; ?>') jQuery('.search_text', $form).val(s);
554 554
 				
555 555
 				// Disable location based search for disabled location post type.
556 556
 				if (jQuery('.search_by_post', $form).val() != '' && typeof gd_cpt_no_location == 'function') {
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
 					}
565 565
 				}
566 566
 				
567
-				if (dist > 0 || (jQuery('select[name="sort_by"]').val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest') || (jQuery(".snear", $form).val() != '' && jQuery(".snear", $form).val() != '<?php echo $default_near_text;?>')) {
567
+				if (dist > 0 || (jQuery('select[name="sort_by"]').val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest') || (jQuery(".snear", $form).val() != '' && jQuery(".snear", $form).val() != '<?php echo $default_near_text; ?>')) {
568 568
 					geodir_setsearch($form);
569 569
 				} else {
570 570
 					jQuery(".snear", $form).val('');
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
         });
583 583
         
584 584
 		function geodir_setsearch($form) {
585
-			if ((dist > 0 || (jQuery('select[name="sort_by"]', $form).val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest')) && (jQuery(".snear", $form).val() == '' || jQuery(".snear", $form).val() == '<?php echo $default_near_text;?>')) jQuery(".snear", $form).val(default_location);
585
+			if ((dist > 0 || (jQuery('select[name="sort_by"]', $form).val() == 'nearest' || jQuery('select[name="sort_by"]', $form).val() == 'farthest')) && (jQuery(".snear", $form).val() == '' || jQuery(".snear", $form).val() == '<?php echo $default_near_text; ?>')) jQuery(".snear", $form).val(default_location);
586 586
 			geocodeAddress($form);
587 587
 		}
588 588
 
@@ -601,15 +601,15 @@  discard block
 block discarded – undo
601 601
             // Call the geocode function
602 602
             Sgeocoder = window.gdMaps == 'google' ? new google.maps.Geocoder() : null;
603 603
 
604
-            if (jQuery('.snear', $form).val() == '' || ( jQuery('.sgeo_lat').val() != '' && jQuery('.sgeo_lon').val() != ''  ) || jQuery('.snear', $form).val().match("^<?php _e('In:','geodirectory');?>")) {
605
-                if (jQuery('.snear', $form).val().match("^<?php _e('In:','geodirectory');?>")) {
604
+            if (jQuery('.snear', $form).val() == '' || ( jQuery('.sgeo_lat').val() != '' && jQuery('.sgeo_lon').val() != ''  ) || jQuery('.snear', $form).val().match("^<?php _e('In:', 'geodirectory'); ?>")) {
605
+                if (jQuery('.snear', $form).val().match("^<?php _e('In:', 'geodirectory'); ?>")) {
606 606
                     jQuery(".snear", $form).val('');
607 607
                 }
608 608
                 jQuery($form).submit();
609 609
             } else {
610 610
                 var address = jQuery(".snear", $form).val();
611 611
 
612
-                if (jQuery('.snear', $form).val() == '<?php echo $default_near_text;?>') {
612
+                if (jQuery('.snear', $form).val() == '<?php echo $default_near_text; ?>') {
613 613
                     initialise2();
614 614
                 } else {
615 615
                     <?php
@@ -622,12 +622,12 @@  discard block
 block discarded – undo
622 622
                     $near_add2 = apply_filters('geodir_search_near_addition', '');
623 623
                     ?>
624 624
                     if (window.gdMaps === 'google') {
625
-                        Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", ' . $near_add . '"' : '') . $near_add2;?>},
625
+                        Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", '.$near_add.'"' : '').$near_add2; ?>},
626 626
                             function (results, status) {
627 627
                                 if (status == google.maps.GeocoderStatus.OK) {
628 628
                                     updateSearchPosition(results[0].geometry.location, $form);
629 629
                                 } else {
630
-                                    alert("<?php esc_attr_e('Search was not successful for the following reason x:', 'geodirectory');?>" + status);
630
+                                    alert("<?php esc_attr_e('Search was not successful for the following reason x:', 'geodirectory'); ?>" + status);
631 631
                                 }
632 632
                             });
633 633
                     } else if (window.gdMaps === 'osm') {
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
                                 if (typeof geo !== 'undefined' && geo.lat && geo.lon) {
637 637
                                     updateSearchPosition(geo, $form);
638 638
                                 } else {
639
-                                    alert("<?php esc_attr_e('Search was not successful for the requested address.', 'geodirectory');?>");
639
+                                    alert("<?php esc_attr_e('Search was not successful for the requested address.', 'geodirectory'); ?>");
640 640
                                 }
641 641
                             });
642 642
                     } else {
@@ -682,19 +682,19 @@  discard block
 block discarded – undo
682 682
             var msg;
683 683
             switch (err.code) {
684 684
                 case err.UNKNOWN_ERROR:
685
-                    msg = "<?php _e('Unable to find your location','geodirectory');?>";
685
+                    msg = "<?php _e('Unable to find your location', 'geodirectory'); ?>";
686 686
                     break;
687 687
                 case err.PERMISSION_DENINED:
688
-                    msg = "<?php _e('Permission denied in finding your location','geodirectory');?>";
688
+                    msg = "<?php _e('Permission denied in finding your location', 'geodirectory'); ?>";
689 689
                     break;
690 690
                 case err.POSITION_UNAVAILABLE:
691
-                    msg = "<?php _e('Your location is currently unknown','geodirectory');?>";
691
+                    msg = "<?php _e('Your location is currently unknown', 'geodirectory'); ?>";
692 692
                     break;
693 693
                 case err.BREAK:
694
-                    msg = "<?php _e('Attempt to find location took too long','geodirectory');?>";
694
+                    msg = "<?php _e('Attempt to find location took too long', 'geodirectory'); ?>";
695 695
                     break;
696 696
                 default:
697
-                    msg = "<?php _e('Location detection not supported in browser','geodirectory');?>";
697
+                    msg = "<?php _e('Location detection not supported in browser', 'geodirectory'); ?>";
698 698
             }
699 699
             jQuery('#info').html(msg);
700 700
         }
@@ -733,7 +733,7 @@  discard block
 block discarded – undo
733 733
              * @param object $post The post object.
734 734
              * @param string $link The link to the post.
735 735
              */
736
-            $return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img">&nbsp;</span></a>',$post,$link);
736
+            $return = apply_filters('geodir_featured_badge_on_image', '<a href="'.$link.'"><span class="geodir_featured_img">&nbsp;</span></a>', $post, $link);
737 737
             break;
738 738
         case 'new' :
739 739
             /**
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
              * @param object $post The post object.
744 744
              * @param string $link The link to the post.
745 745
              */
746
-            $return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing">&nbsp;</span></a>',$post,$link);
746
+            $return = apply_filters('geodir_new_badge_on_image', '<a href="'.$link.'"><span class="geodir_new_listing">&nbsp;</span></a>', $post, $link);
747 747
             break;
748 748
 
749 749
     }
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_shortcodes.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -202,14 +202,14 @@  discard block
 block discarded – undo
202 202
 	// Add marker cluster
203 203
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
204 204
         $map_args['enable_marker_cluster'] = true;
205
-        if(get_option('geodir_marker_cluster_type')) {
205
+        if (get_option('geodir_marker_cluster_type')) {
206 206
             if ($map_args['autozoom']) {
207 207
                 $map_args['enable_marker_cluster_no_reposition'] = false;
208 208
             } else {
209 209
                 $map_args['enable_marker_cluster_no_reposition'] = true;
210 210
             }
211 211
 
212
-            $map_args['enable_marker_cluster_server'] = true ;
212
+            $map_args['enable_marker_cluster_server'] = true;
213 213
 
214 214
         }
215 215
 	} else {
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	}
218 218
 
219 219
     // if lat and long set in shortcode, hack it so the map is not repositioned
220
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
220
+    if (!empty($params['latitude']) && !empty($params['longitude'])) {
221 221
         $map_args['enable_marker_cluster_no_reposition'] = true;
222 222
     }
223 223
 
@@ -890,20 +890,20 @@  discard block
 block discarded – undo
890 890
 	
891 891
 	$show_adv_search = isset($params['show_adv_search']) && in_array($params['show_adv_search'], array('default', 'always', 'searched')) ? $params['show_adv_search'] : '';
892 892
 	
893
-	if ($show_adv_search != '' ) {
894
-		$show_adv_class = 'geodir-advance-search-' . $show_adv_search . ' ';
893
+	if ($show_adv_search != '') {
894
+		$show_adv_class = 'geodir-advance-search-'.$show_adv_search.' ';
895 895
 		if ($show_adv_search == 'searched' && geodir_is_page('search')) {
896 896
 			$show_adv_search = 'search';
897 897
 		}
898
-		$show_adv_attrs = 'data-show-adv="' . $show_adv_search . '"';
898
+		$show_adv_attrs = 'data-show-adv="'.$show_adv_search.'"';
899 899
 		
900
-		$params['before_widget'] = str_replace('class="', $show_adv_attrs . ' class="' . $show_adv_class, $params['before_widget']);
900
+		$params['before_widget'] = str_replace('class="', $show_adv_attrs.' class="'.$show_adv_class, $params['before_widget']);
901 901
 	}
902 902
 	
903 903
 	ob_start();
904 904
 	
905 905
 	//geodir_get_template_part('listing', 'filter-form');
906
-	the_widget('geodir_advance_search_widget', $params, $params );
906
+	the_widget('geodir_advance_search_widget', $params, $params);
907 907
 	
908 908
 	$output = ob_get_contents();
909 909
     ob_end_clean();
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
 
1104 1104
     // Validate character_count
1105 1105
     //todo: is this necessary?
1106
-    $params['character_count']  = $params['character_count'];
1106
+    $params['character_count'] = $params['character_count'];
1107 1107
 
1108 1108
     // Validate our layout choice
1109 1109
     // Outside of the norm, I added some more simple terms to match the existing
@@ -1115,7 +1115,7 @@  discard block
 block discarded – undo
1115 1115
 
1116 1116
     // Validate Listing width, used in the template widget-listing-listview.php
1117 1117
     // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1118
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1118
+    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1119 1119
 
1120 1120
     // Validate the checkboxes used on the widget
1121 1121
     $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
@@ -1131,7 +1131,7 @@  discard block
 block discarded – undo
1131 1131
     if (!empty($params['tags'])) {
1132 1132
         if (!is_array($params['tags'])) {
1133 1133
             $comma = _x(',', 'tag delimiter');
1134
-            if ( ',' !== $comma ) {
1134
+            if (',' !== $comma) {
1135 1135
                 $params['tags'] = str_replace($comma, ',', $params['tags']);
1136 1136
             }
1137 1137
             $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
@@ -1153,13 +1153,13 @@  discard block
 block discarded – undo
1153 1153
         unset($atts['pageno']);
1154 1154
     }
1155 1155
 
1156
-    if ( !empty($atts['shortcode_content']) ) {
1156
+    if (!empty($atts['shortcode_content'])) {
1157 1157
         $content = $atts['shortcode_content'];
1158 1158
     }
1159 1159
     $params['shortcode_content'] = trim($content);
1160 1160
     $atts['shortcode_content'] = trim($content);
1161 1161
     
1162
-    $params['shortcode_atts']       = $atts;
1162
+    $params['shortcode_atts'] = $atts;
1163 1163
 
1164 1164
     $output = geodir_sc_gd_listings_output($params);
1165 1165
 
@@ -1226,8 +1226,8 @@  discard block
 block discarded – undo
1226 1226
 	// Validate the checkboxes used on the widget
1227 1227
     $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1228 1228
     $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1229
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1230
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1229
+    $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']);
1230
+    $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']);
1231 1231
 	
1232 1232
 	if ($params['max_count'] != 'all') {
1233 1233
 		$params['max_count'] = absint($params['max_count']);
Please login to merge, or discard this patch.
Indentation   +711 added lines, -711 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 // If this file is called directly, abort.
9 9
 if (!defined('WPINC')) {
10
-    die;
10
+	die;
11 11
 }
12 12
 require_once('geodirectory-functions/shortcode_functions.php');
13 13
 
@@ -32,43 +32,43 @@  discard block
 block discarded – undo
32 32
  */
33 33
 function geodir_sc_add_listing($atts)
34 34
 {
35
-    ob_start();
36
-    $defaults = array(
37
-        'pid' => '',
38
-        'listing_type' => 'gd_place',
39
-        'login_msg' => __('You must login to post.', 'geodirectory'),
40
-        'show_login' => false,
41
-    );
42
-    $params = shortcode_atts($defaults, $atts);
43
-
44
-    foreach ($params as $key => $value) {
45
-        $_REQUEST[$key] = $value;
46
-    }
47
-
48
-    $user_id = get_current_user_id();
49
-    if (!$user_id) {
50
-        echo $params['login_msg'];
51
-        if ($params['show_login']) {
52
-            echo "<br />";
53
-            $defaults = array(
54
-                'before_widget' => '',
55
-                'after_widget' => '',
56
-                'before_title' => '',
57
-                'after_title' => '',
58
-            );
59
-
60
-            geodir_loginwidget_output($defaults, $defaults);
61
-        }
62
-
63
-
64
-    } else {
65
-       // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
-    }
67
-    $output = ob_get_contents();
68
-
69
-    ob_end_clean();
70
-
71
-    return $output;
35
+	ob_start();
36
+	$defaults = array(
37
+		'pid' => '',
38
+		'listing_type' => 'gd_place',
39
+		'login_msg' => __('You must login to post.', 'geodirectory'),
40
+		'show_login' => false,
41
+	);
42
+	$params = shortcode_atts($defaults, $atts);
43
+
44
+	foreach ($params as $key => $value) {
45
+		$_REQUEST[$key] = $value;
46
+	}
47
+
48
+	$user_id = get_current_user_id();
49
+	if (!$user_id) {
50
+		echo $params['login_msg'];
51
+		if ($params['show_login']) {
52
+			echo "<br />";
53
+			$defaults = array(
54
+				'before_widget' => '',
55
+				'after_widget' => '',
56
+				'before_title' => '',
57
+				'after_title' => '',
58
+			);
59
+
60
+			geodir_loginwidget_output($defaults, $defaults);
61
+		}
62
+
63
+
64
+	} else {
65
+	   // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
+	}
67
+	$output = ob_get_contents();
68
+
69
+	ob_end_clean();
70
+
71
+	return $output;
72 72
 }
73 73
 
74 74
 /**
@@ -96,136 +96,136 @@  discard block
 block discarded – undo
96 96
  */
97 97
 function geodir_sc_home_map($atts)
98 98
 {
99
-    ob_start();
100
-    $defaults = array(
101
-        'width' => '960',
102
-        'height' => '425',
103
-        'maptype' => 'ROADMAP',
104
-        'zoom' => '13',
105
-        'autozoom' => '',
106
-        'child_collapse' => '0',
107
-        'scrollwheel' => '0',
99
+	ob_start();
100
+	$defaults = array(
101
+		'width' => '960',
102
+		'height' => '425',
103
+		'maptype' => 'ROADMAP',
104
+		'zoom' => '13',
105
+		'autozoom' => '',
106
+		'child_collapse' => '0',
107
+		'scrollwheel' => '0',
108 108
 		'marker_cluster' => false,
109
-        'latitude' => '',
110
-        'longitude' => ''
111
-    );
112
-
113
-    $params = shortcode_atts($defaults, $atts);
114
-
115
-    $params = gdsc_validate_map_args($params);
116
-
117
-    $map_args = array(
118
-        'map_canvas_name' => 'gd_home_map',
119
-        'latitude' => $params['latitude'],
120
-        'longitude' => $params['longitude'],
121
-
122
-        /**
123
-         * Filter the widget width of the map on home/listings page.
124
-         *
125
-         * @since 1.0.0
126
-         * @param mixed(string|int|float) $params['width'] The map width.
127
-         */
128
-        'width' => apply_filters('widget_width', $params['width']),
129
-        /**
130
-         * Filter the widget height of the map on home/listings page.
131
-         *
132
-         * @since 1.0.0
133
-         * @param mixed(string|int|float) $params['height'] The map height.
134
-         */
135
-        'height' => apply_filters('widget_heigh', $params['height']),
136
-        /**
137
-         * Filter the widget maptype of the map on home/listings page.
138
-         *
139
-         * @since 1.0.0
109
+		'latitude' => '',
110
+		'longitude' => ''
111
+	);
112
+
113
+	$params = shortcode_atts($defaults, $atts);
114
+
115
+	$params = gdsc_validate_map_args($params);
116
+
117
+	$map_args = array(
118
+		'map_canvas_name' => 'gd_home_map',
119
+		'latitude' => $params['latitude'],
120
+		'longitude' => $params['longitude'],
121
+
122
+		/**
123
+		 * Filter the widget width of the map on home/listings page.
124
+		 *
125
+		 * @since 1.0.0
126
+		 * @param mixed(string|int|float) $params['width'] The map width.
127
+		 */
128
+		'width' => apply_filters('widget_width', $params['width']),
129
+		/**
130
+		 * Filter the widget height of the map on home/listings page.
131
+		 *
132
+		 * @since 1.0.0
133
+		 * @param mixed(string|int|float) $params['height'] The map height.
134
+		 */
135
+		'height' => apply_filters('widget_heigh', $params['height']),
136
+		/**
137
+		 * Filter the widget maptype of the map on home/listings page.
138
+		 *
139
+		 * @since 1.0.0
140 140
 		 * @since 1.5.2 Added TERRAIN map type.
141
-         * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
-         */
143
-        'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
-        /**
145
-         * Filter the widget scrollwheel value of the map on home/listings page.
146
-         *
147
-         * Should the scrollwheel zoom the map or not.
148
-         *
149
-         * @since 1.0.0
150
-         * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
-         */
152
-        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
-        /**
154
-         * Filter the widget zoom level of the map on home/listings page.
155
-         *
156
-         * @since 1.0.0
157
-         * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
-         */
159
-        'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
-        /**
161
-         * Filter the widget auto zoom value of the map on home/listings page.
162
-         *
163
-         * If the map should autozoom to fit the markers shown.
164
-         *
165
-         * @since 1.0.0
166
-         * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
-         */
168
-        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
-        /**
170
-         * Filter the widget child_collapse value of the map on home/listings page.
171
-         *
172
-         * If the map should auto collapse the child categories if the category bar is present.
173
-         *
174
-         * @since 1.0.0
175
-         * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
-         */
177
-        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
-        'enable_cat_filters' => true,
179
-        'enable_text_search' => true,
180
-        'enable_post_type_filters' => true,
181
-        /**
182
-         * Filter the widget enable_location_filters value of the map on home/listings page.
183
-         *
184
-         * This is used when the location addon is used.
185
-         *
186
-         * @since 1.0.0
187
-         * @param bool $val True if location filters should be used, false if not.
188
-         */
189
-        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
-        'enable_jason_on_load' => false,
191
-        'enable_marker_cluster' => false,
192
-        'enable_map_resize_button' => true,
193
-        'map_class_name' => 'geodir-map-home-page',
194
-        'is_geodir_home_map_widget' => true,
195
-    );
141
+		 * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
+		 */
143
+		'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
+		/**
145
+		 * Filter the widget scrollwheel value of the map on home/listings page.
146
+		 *
147
+		 * Should the scrollwheel zoom the map or not.
148
+		 *
149
+		 * @since 1.0.0
150
+		 * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
+		 */
152
+		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
+		/**
154
+		 * Filter the widget zoom level of the map on home/listings page.
155
+		 *
156
+		 * @since 1.0.0
157
+		 * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
+		 */
159
+		'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
+		/**
161
+		 * Filter the widget auto zoom value of the map on home/listings page.
162
+		 *
163
+		 * If the map should autozoom to fit the markers shown.
164
+		 *
165
+		 * @since 1.0.0
166
+		 * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
+		 */
168
+		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
+		/**
170
+		 * Filter the widget child_collapse value of the map on home/listings page.
171
+		 *
172
+		 * If the map should auto collapse the child categories if the category bar is present.
173
+		 *
174
+		 * @since 1.0.0
175
+		 * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
+		 */
177
+		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
+		'enable_cat_filters' => true,
179
+		'enable_text_search' => true,
180
+		'enable_post_type_filters' => true,
181
+		/**
182
+		 * Filter the widget enable_location_filters value of the map on home/listings page.
183
+		 *
184
+		 * This is used when the location addon is used.
185
+		 *
186
+		 * @since 1.0.0
187
+		 * @param bool $val True if location filters should be used, false if not.
188
+		 */
189
+		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
+		'enable_jason_on_load' => false,
191
+		'enable_marker_cluster' => false,
192
+		'enable_map_resize_button' => true,
193
+		'map_class_name' => 'geodir-map-home-page',
194
+		'is_geodir_home_map_widget' => true,
195
+	);
196 196
 
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199
-        $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
201
-            if ($map_args['autozoom']) {
202
-                $map_args['enable_marker_cluster_no_reposition'] = false;
203
-            } else {
204
-                $map_args['enable_marker_cluster_no_reposition'] = true;
205
-            }
199
+		$map_args['enable_marker_cluster'] = true;
200
+		if(get_option('geodir_marker_cluster_type')) {
201
+			if ($map_args['autozoom']) {
202
+				$map_args['enable_marker_cluster_no_reposition'] = false;
203
+			} else {
204
+				$map_args['enable_marker_cluster_no_reposition'] = true;
205
+			}
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+			$map_args['enable_marker_cluster_server'] = true ;
208 208
 
209
-        }
209
+		}
210 210
 	} else {
211 211
 		$map_args['enable_marker_cluster'] = false;
212 212
 	}
213 213
 
214
-    // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
-        $map_args['enable_marker_cluster_no_reposition'] = true;
217
-    }
214
+	// if lat and long set in shortcode, hack it so the map is not repositioned
215
+	if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
+		$map_args['enable_marker_cluster_no_reposition'] = true;
217
+	}
218 218
 
219 219
 
220
-    geodir_draw_map($map_args);
220
+	geodir_draw_map($map_args);
221 221
 
222
-    add_action('wp_footer', 'geodir_home_map_add_script', 100);
222
+	add_action('wp_footer', 'geodir_home_map_add_script', 100);
223 223
 
224
-    $output = ob_get_contents();
224
+	$output = ob_get_contents();
225 225
 
226
-    ob_end_clean();
226
+	ob_end_clean();
227 227
 
228
-    return $output;
228
+	return $output;
229 229
 }
230 230
 add_shortcode('gd_homepage_map', 'geodir_sc_home_map');
231 231
 
@@ -259,77 +259,77 @@  discard block
 block discarded – undo
259 259
  */
260 260
 function geodir_sc_listing_map($atts)
261 261
 {
262
-    ob_start();
263
-    add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
264
-
265
-    add_action('the_post', 'create_list_jsondata'); // Add marker in json array
266
-
267
-    add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
268
-
269
-    $defaults = array(
270
-        'width' => '294',
271
-        'height' => '370',
272
-        'zoom' => '13',
273
-        'autozoom' => '',
274
-        'sticky' => '',
275
-        'showall' => '0',
276
-        'scrollwheel' => '0',
277
-        'maptype' => 'ROADMAP',
278
-        'child_collapse' => 0,
262
+	ob_start();
263
+	add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
264
+
265
+	add_action('the_post', 'create_list_jsondata'); // Add marker in json array
266
+
267
+	add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
268
+
269
+	$defaults = array(
270
+		'width' => '294',
271
+		'height' => '370',
272
+		'zoom' => '13',
273
+		'autozoom' => '',
274
+		'sticky' => '',
275
+		'showall' => '0',
276
+		'scrollwheel' => '0',
277
+		'maptype' => 'ROADMAP',
278
+		'child_collapse' => 0,
279 279
 		'marker_cluster' => false
280
-    );
281
-
282
-    $params = shortcode_atts($defaults, $atts);
283
-
284
-    $params = gdsc_validate_map_args($params);
285
-
286
-    $map_args = array(
287
-        'map_canvas_name' => 'gd_listing_map',
288
-        'width' => $params['width'],
289
-        'height' => $params['height'],
290
-        'zoom' => $params['zoom'],
291
-        'autozoom' => $params['autozoom'],
292
-        'sticky' => $params['sticky'],
293
-        'showall' => $params['showall'],
294
-        'scrollwheel' => $params['scrollwheel'],
295
-        'child_collapse' => 0,
296
-        'enable_cat_filters' => false,
297
-        'enable_text_search' => false,
298
-        'enable_post_type_filters' => false,
299
-        'enable_location_filters' => false,
300
-        'enable_jason_on_load' => true,
301
-    );
302
-
303
-    if (is_single()) {
304
-
305
-        global $post;
306
-        $map_default_lat = $address_latitude = $post->post_latitude;
307
-        $map_default_lng = $address_longitude = $post->post_longitude;
308
-        $mapview = $post->post_mapview;
309
-        $map_args['zoom'] = $post->post_mapzoom;
310
-        $map_args['map_class_name'] = 'geodir-map-listing-page-single';
311
-
312
-    } else {
313
-        $default_location = geodir_get_default_location();
314
-
315
-        $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
316
-        $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
317
-        $map_args['map_class_name'] = 'geodir-map-listing-page';
318
-    }
319
-
320
-    if (empty($mapview)) {
321
-        $mapview = 'ROADMAP';
322
-    }
323
-
324
-    // Set default map options
325
-    $map_args['ajax_url'] = geodir_get_ajax_url();
326
-    $map_args['latitude'] = $map_default_lat;
327
-    $map_args['longitude'] = $map_default_lng;
328
-    $map_args['streetViewControl'] = true;
329
-    $map_args['maptype'] = $mapview;
330
-    $map_args['showPreview'] = '0';
331
-    $map_args['maxZoom'] = 21;
332
-    $map_args['bubble_size'] = 'small';
280
+	);
281
+
282
+	$params = shortcode_atts($defaults, $atts);
283
+
284
+	$params = gdsc_validate_map_args($params);
285
+
286
+	$map_args = array(
287
+		'map_canvas_name' => 'gd_listing_map',
288
+		'width' => $params['width'],
289
+		'height' => $params['height'],
290
+		'zoom' => $params['zoom'],
291
+		'autozoom' => $params['autozoom'],
292
+		'sticky' => $params['sticky'],
293
+		'showall' => $params['showall'],
294
+		'scrollwheel' => $params['scrollwheel'],
295
+		'child_collapse' => 0,
296
+		'enable_cat_filters' => false,
297
+		'enable_text_search' => false,
298
+		'enable_post_type_filters' => false,
299
+		'enable_location_filters' => false,
300
+		'enable_jason_on_load' => true,
301
+	);
302
+
303
+	if (is_single()) {
304
+
305
+		global $post;
306
+		$map_default_lat = $address_latitude = $post->post_latitude;
307
+		$map_default_lng = $address_longitude = $post->post_longitude;
308
+		$mapview = $post->post_mapview;
309
+		$map_args['zoom'] = $post->post_mapzoom;
310
+		$map_args['map_class_name'] = 'geodir-map-listing-page-single';
311
+
312
+	} else {
313
+		$default_location = geodir_get_default_location();
314
+
315
+		$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
316
+		$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
317
+		$map_args['map_class_name'] = 'geodir-map-listing-page';
318
+	}
319
+
320
+	if (empty($mapview)) {
321
+		$mapview = 'ROADMAP';
322
+	}
323
+
324
+	// Set default map options
325
+	$map_args['ajax_url'] = geodir_get_ajax_url();
326
+	$map_args['latitude'] = $map_default_lat;
327
+	$map_args['longitude'] = $map_default_lng;
328
+	$map_args['streetViewControl'] = true;
329
+	$map_args['maptype'] = $mapview;
330
+	$map_args['showPreview'] = '0';
331
+	$map_args['maxZoom'] = 21;
332
+	$map_args['bubble_size'] = 'small';
333 333
 	
334 334
 	// Add marker cluster
335 335
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
@@ -338,13 +338,13 @@  discard block
 block discarded – undo
338 338
 		$map_args['enable_marker_cluster'] = false;
339 339
 	}
340 340
 
341
-    geodir_draw_map($map_args);
341
+	geodir_draw_map($map_args);
342 342
 
343
-    $output = ob_get_contents();
343
+	$output = ob_get_contents();
344 344
 
345
-    ob_end_clean();
345
+	ob_end_clean();
346 346
 
347
-    return $output;
347
+	return $output;
348 348
 }
349 349
 
350 350
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -377,120 +377,120 @@  discard block
 block discarded – undo
377 377
  */
378 378
 function geodir_sc_listing_slider($atts)
379 379
 {
380
-    ob_start();
381
-    $defaults = array(
382
-        'post_type' => 'gd_place',
383
-        'category' => '0',
384
-        'post_number' => '5',
385
-        'slideshow' => '0',
386
-        'animation_loop' => 0,
387
-        'direction_nav' => 0,
388
-        'slideshow_speed' => 5000,
389
-        'animation_speed' => 600,
390
-        'animation' => 'slide',
391
-        'order_by' => 'latest',
392
-        'show_title' => '',
393
-        'show_featured_only' => '',
394
-        'title' => '',
395
-    );
396
-
397
-    $params = shortcode_atts($defaults, $atts);
398
-
399
-
400
-    /*
380
+	ob_start();
381
+	$defaults = array(
382
+		'post_type' => 'gd_place',
383
+		'category' => '0',
384
+		'post_number' => '5',
385
+		'slideshow' => '0',
386
+		'animation_loop' => 0,
387
+		'direction_nav' => 0,
388
+		'slideshow_speed' => 5000,
389
+		'animation_speed' => 600,
390
+		'animation' => 'slide',
391
+		'order_by' => 'latest',
392
+		'show_title' => '',
393
+		'show_featured_only' => '',
394
+		'title' => '',
395
+	);
396
+
397
+	$params = shortcode_atts($defaults, $atts);
398
+
399
+
400
+	/*
401 401
      *
402 402
      * Now we begin the validation of the attributes.
403 403
      */
404
-    // Check we have a valid post_type
405
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
406
-        $params['post_type'] = 'gd_place';
407
-    }
408
-
409
-    // Check we have a valid sort_order
410
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
411
-
412
-    // Match the chosen animation to our options
413
-    $animation_list = array('slide', 'fade');
414
-    if (!(in_array($params['animation'], $animation_list))) {
415
-        $params['animation'] = 'slide';
416
-    }
417
-
418
-    // Post_number needs to be a positive integer
419
-    $params['post_number'] = absint($params['post_number']);
420
-    if (0 == $params['post_number']) {
421
-        $params['post_number'] = 1;
422
-    }
423
-
424
-    // Manage the entered categories
425
-    if (0 != $params['category'] || '' != $params['category']) {
426
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
427
-    }
428
-    // Convert show_title to a bool
429
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
430
-
431
-    // Convert show_featured_only to a bool
432
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
433
-
434
-    /*
404
+	// Check we have a valid post_type
405
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
406
+		$params['post_type'] = 'gd_place';
407
+	}
408
+
409
+	// Check we have a valid sort_order
410
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
411
+
412
+	// Match the chosen animation to our options
413
+	$animation_list = array('slide', 'fade');
414
+	if (!(in_array($params['animation'], $animation_list))) {
415
+		$params['animation'] = 'slide';
416
+	}
417
+
418
+	// Post_number needs to be a positive integer
419
+	$params['post_number'] = absint($params['post_number']);
420
+	if (0 == $params['post_number']) {
421
+		$params['post_number'] = 1;
422
+	}
423
+
424
+	// Manage the entered categories
425
+	if (0 != $params['category'] || '' != $params['category']) {
426
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
427
+	}
428
+	// Convert show_title to a bool
429
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
430
+
431
+	// Convert show_featured_only to a bool
432
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
433
+
434
+	/*
435 435
      * Hopefully all attributes are now valid, and safe to pass forward
436 436
      */
437 437
 
438
-    // redeclare vars after validation
439
-
440
-    if (isset($params['direction_nav'])) {
441
-        $params['directionNav'] = $params['direction_nav'];
442
-    }
443
-    if (isset($params['animation_loop'])) {
444
-        $params['animationLoop'] = $params['animation_loop'];
445
-    }
446
-    if (isset($params['slideshow_speed'])) {
447
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
448
-    }
449
-    if (isset($params['animation_speed'])) {
450
-        $params['animationSpeed'] = $params['animation_speed'];
451
-    }
452
-    if (isset($params['order_by'])) {
453
-        $params['list_sort'] = $params['order_by'];
454
-    }
455
-
456
-    $query_args = array(
457
-        'post_number' => $params['post_number'],
458
-        'is_geodir_loop' => true,
459
-        'post_type' => $params['post_type'],
460
-        'order_by' => $params['order_by']
461
-    );
462
-
463
-    if (1 == $params['show_featured_only']) {
464
-        $query_args['show_featured_only'] = 1;
465
-    }
466
-
467
-    if (0 != $params['category'] && '' != $params['category']) {
468
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
469
-        $tax_query = array(
470
-            'taxonomy' => $category_taxonomy[0],
471
-            'field' => 'id',
472
-            'terms' => $params['category'],
473
-        );
474
-
475
-        $query_args['tax_query'] = array($tax_query);
476
-    }
477
-
478
-    $defaults = array(
479
-        'before_widget' => '',
480
-        'after_widget' => '',
481
-        'before_title' => '',
482
-        'after_title' => '',
483
-    );
484
-
485
-    $query_args = array_merge($query_args, $params);
486
-
487
-    geodir_listing_slider_widget_output($defaults, $query_args);
488
-
489
-    $output = ob_get_contents();
490
-
491
-    ob_end_clean();
492
-
493
-    return $output;
438
+	// redeclare vars after validation
439
+
440
+	if (isset($params['direction_nav'])) {
441
+		$params['directionNav'] = $params['direction_nav'];
442
+	}
443
+	if (isset($params['animation_loop'])) {
444
+		$params['animationLoop'] = $params['animation_loop'];
445
+	}
446
+	if (isset($params['slideshow_speed'])) {
447
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
448
+	}
449
+	if (isset($params['animation_speed'])) {
450
+		$params['animationSpeed'] = $params['animation_speed'];
451
+	}
452
+	if (isset($params['order_by'])) {
453
+		$params['list_sort'] = $params['order_by'];
454
+	}
455
+
456
+	$query_args = array(
457
+		'post_number' => $params['post_number'],
458
+		'is_geodir_loop' => true,
459
+		'post_type' => $params['post_type'],
460
+		'order_by' => $params['order_by']
461
+	);
462
+
463
+	if (1 == $params['show_featured_only']) {
464
+		$query_args['show_featured_only'] = 1;
465
+	}
466
+
467
+	if (0 != $params['category'] && '' != $params['category']) {
468
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
469
+		$tax_query = array(
470
+			'taxonomy' => $category_taxonomy[0],
471
+			'field' => 'id',
472
+			'terms' => $params['category'],
473
+		);
474
+
475
+		$query_args['tax_query'] = array($tax_query);
476
+	}
477
+
478
+	$defaults = array(
479
+		'before_widget' => '',
480
+		'after_widget' => '',
481
+		'before_title' => '',
482
+		'after_title' => '',
483
+	);
484
+
485
+	$query_args = array_merge($query_args, $params);
486
+
487
+	geodir_listing_slider_widget_output($defaults, $query_args);
488
+
489
+	$output = ob_get_contents();
490
+
491
+	ob_end_clean();
492
+
493
+	return $output;
494 494
 }
495 495
 
496 496
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -514,22 +514,22 @@  discard block
 block discarded – undo
514 514
  */
515 515
 function geodir_sc_login_box($atts)
516 516
 {
517
-    ob_start();
517
+	ob_start();
518 518
 
519
-    $defaults = array(
520
-        'before_widget' => '',
521
-        'after_widget' => '',
522
-        'before_title' => '',
523
-        'after_title' => '',
524
-    );
519
+	$defaults = array(
520
+		'before_widget' => '',
521
+		'after_widget' => '',
522
+		'before_title' => '',
523
+		'after_title' => '',
524
+	);
525 525
 
526
-    geodir_loginwidget_output($defaults, $defaults);
526
+	geodir_loginwidget_output($defaults, $defaults);
527 527
 
528
-    $output = ob_get_contents();
528
+	$output = ob_get_contents();
529 529
 
530
-    ob_end_clean();
530
+	ob_end_clean();
531 531
 
532
-    return $output;
532
+	return $output;
533 533
 }
534 534
 
535 535
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -560,30 +560,30 @@  discard block
 block discarded – undo
560 560
  */
561 561
 function geodir_sc_popular_post_category($atts)
562 562
 {
563
-    ob_start();
564
-    global $geodir_post_category_str;
565
-    $defaults = array(
566
-        'category_limit' => 15,
567
-        'before_widget' => '',
568
-        'after_widget' => '',
569
-        'before_title' => '',
570
-        'after_title' => '',
571
-        'title' => '',
572
-        'default_post_type' => '',
573
-        'parent_only' => false,
574
-    );
575
-
576
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
577
-    $params['category_limit'] = absint($params['category_limit']);
578
-    $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
579
-    $params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
580
-    geodir_popular_post_category_output($params, $params);
581
-
582
-    $output = ob_get_contents();
583
-
584
-    ob_end_clean();
585
-
586
-    return $output;
563
+	ob_start();
564
+	global $geodir_post_category_str;
565
+	$defaults = array(
566
+		'category_limit' => 15,
567
+		'before_widget' => '',
568
+		'after_widget' => '',
569
+		'before_title' => '',
570
+		'after_title' => '',
571
+		'title' => '',
572
+		'default_post_type' => '',
573
+		'parent_only' => false,
574
+	);
575
+
576
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
577
+	$params['category_limit'] = absint($params['category_limit']);
578
+	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
579
+	$params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
580
+	geodir_popular_post_category_output($params, $params);
581
+
582
+	$output = ob_get_contents();
583
+
584
+	ob_end_clean();
585
+
586
+	return $output;
587 587
 }
588 588
 
589 589
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -623,97 +623,97 @@  discard block
 block discarded – undo
623 623
  */
624 624
 function geodir_sc_popular_post_view($atts)
625 625
 {
626
-    ob_start();
627
-    $defaults = array(
628
-        'post_type' => 'gd_place',
629
-        'category' => '0',
630
-        'post_number' => '5',
631
-        'layout' => 'gridview_onehalf',
632
-        'add_location_filter' => '0',
633
-        'list_sort' => 'latest',
634
-        'use_viewing_post_type' => '1',
635
-        'character_count' => '20',
636
-        'listing_width' => '',
637
-        'show_featured_only' => '0',
638
-        'show_special_only' => '0',
639
-        'with_pics_only' => '0',
640
-        'with_videos_only' => '0',
641
-        'before_widget' => '',
642
-        'after_widget' => '',
643
-        'before_title' => '<h3 class="widget-title">',
644
-        'after_title' => '</h3>',
645
-        'title' => '',
646
-        'category_title' => '',
647
-    );
648
-
649
-    $params = shortcode_atts($defaults, $atts);
650
-
651
-    /**
652
-     * Validate our incoming params
653
-     */
626
+	ob_start();
627
+	$defaults = array(
628
+		'post_type' => 'gd_place',
629
+		'category' => '0',
630
+		'post_number' => '5',
631
+		'layout' => 'gridview_onehalf',
632
+		'add_location_filter' => '0',
633
+		'list_sort' => 'latest',
634
+		'use_viewing_post_type' => '1',
635
+		'character_count' => '20',
636
+		'listing_width' => '',
637
+		'show_featured_only' => '0',
638
+		'show_special_only' => '0',
639
+		'with_pics_only' => '0',
640
+		'with_videos_only' => '0',
641
+		'before_widget' => '',
642
+		'after_widget' => '',
643
+		'before_title' => '<h3 class="widget-title">',
644
+		'after_title' => '</h3>',
645
+		'title' => '',
646
+		'category_title' => '',
647
+	);
654 648
 
655
-    // Validate the selected post type, default to gd_place on fail
656
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
657
-        $params['post_type'] = 'gd_place';
658
-    }
659
-
660
-    // Validate the selected category/ies - Grab the current list based on post_type
661
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
662
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
663
-
664
-    // Make sure we have an array
665
-    if (!(is_array($params['category']))) {
666
-        $params['category'] = explode(',', $params['category']);
667
-    }
668
-
669
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
670
-    // Otherwise it becomes empty and later on that will mean "All"
671
-    $params['category'] = array_intersect($params['category'], $categories);
672
-
673
-    // Post_number needs to be a positive integer
674
-    $params['post_number'] = absint($params['post_number']);
675
-    if (0 == $params['post_number']) {
676
-        $params['post_number'] = 1;
677
-    }
678
-
679
-    // Validate our layout choice
680
-    // Outside of the norm, I added some more simple terms to match the existing
681
-    // So now I just run the switch to set it properly.
682
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
683
-
684
-    // Validate our sorting choice
685
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
686
-
687
-    // Validate character_count
688
-    $params['character_count'] = absint($params['character_count']);
689
-    if (20 > $params['character_count']) {
690
-        $params['character_count'] = 20;
691
-    }
692
-
693
-    // Validate Listing width, used in the template widget-listing-listview.php
694
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
695
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
696
-
697
-    // Validate the checkboxes used on the widget
698
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
699
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
700
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
701
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
702
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
703
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
704
-
705
-    /**
706
-     * End of validation
707
-     */
649
+	$params = shortcode_atts($defaults, $atts);
650
+
651
+	/**
652
+	 * Validate our incoming params
653
+	 */
654
+
655
+	// Validate the selected post type, default to gd_place on fail
656
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
657
+		$params['post_type'] = 'gd_place';
658
+	}
659
+
660
+	// Validate the selected category/ies - Grab the current list based on post_type
661
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
662
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
708 663
 
709
-    geodir_popular_postview_output($params, $params);
664
+	// Make sure we have an array
665
+	if (!(is_array($params['category']))) {
666
+		$params['category'] = explode(',', $params['category']);
667
+	}
668
+
669
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
670
+	// Otherwise it becomes empty and later on that will mean "All"
671
+	$params['category'] = array_intersect($params['category'], $categories);
672
+
673
+	// Post_number needs to be a positive integer
674
+	$params['post_number'] = absint($params['post_number']);
675
+	if (0 == $params['post_number']) {
676
+		$params['post_number'] = 1;
677
+	}
710 678
 
679
+	// Validate our layout choice
680
+	// Outside of the norm, I added some more simple terms to match the existing
681
+	// So now I just run the switch to set it properly.
682
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
711 683
 
712
-    $output = ob_get_contents();
684
+	// Validate our sorting choice
685
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
713 686
 
714
-    ob_end_clean();
687
+	// Validate character_count
688
+	$params['character_count'] = absint($params['character_count']);
689
+	if (20 > $params['character_count']) {
690
+		$params['character_count'] = 20;
691
+	}
715 692
 
716
-    return $output;
693
+	// Validate Listing width, used in the template widget-listing-listview.php
694
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
695
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
696
+
697
+	// Validate the checkboxes used on the widget
698
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
699
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
700
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
701
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
702
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
703
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
704
+
705
+	/**
706
+	 * End of validation
707
+	 */
708
+
709
+	geodir_popular_postview_output($params, $params);
710
+
711
+
712
+	$output = ob_get_contents();
713
+
714
+	ob_end_clean();
715
+
716
+	return $output;
717 717
 }
718 718
 
719 719
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -735,37 +735,37 @@  discard block
 block discarded – undo
735 735
  * @return string Recent reviews HTML.
736 736
  */
737 737
 function geodir_sc_recent_reviews($atts) {
738
-    ob_start();
739
-    $defaults = array(
738
+	ob_start();
739
+	$defaults = array(
740 740
 		'title' => '',
741 741
 		'count' => 5,
742
-    );
742
+	);
743 743
 
744
-    $params = shortcode_atts($defaults, $atts);
744
+	$params = shortcode_atts($defaults, $atts);
745 745
 
746
-    $count = absint($params['count']);
747
-    if (0 == $count) {
748
-        $count = 1;
749
-    }
746
+	$count = absint($params['count']);
747
+	if (0 == $count) {
748
+		$count = 1;
749
+	}
750 750
 	
751 751
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
752 752
 
753
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
753
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
754 754
 
755
-    if ($comments_li) {
756
-        if ($title != '') { ?>
755
+	if ($comments_li) {
756
+		if ($title != '') { ?>
757 757
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
758 758
 		<?php } ?>
759 759
         <div class="geodir_sc_recent_reviews_section">
760 760
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
761 761
         </div>
762 762
     <?php
763
-    }
764
-    $output = ob_get_contents();
763
+	}
764
+	$output = ob_get_contents();
765 765
 
766
-    ob_end_clean();
766
+	ob_end_clean();
767 767
 
768
-    return $output;
768
+	return $output;
769 769
 }
770 770
 
771 771
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -795,64 +795,64 @@  discard block
 block discarded – undo
795 795
  */
796 796
 function geodir_sc_related_listings($atts)
797 797
 {
798
-    ob_start();
799
-    $defaults = array(
800
-        'post_number' => 5,
801
-        'relate_to' => 'category',
802
-        'layout' => 'gridview_onehalf',
803
-        'add_location_filter' => 0,
804
-        'listing_width' => '',
805
-        'list_sort' => 'latest',
806
-        'character_count' => 20,
807
-        'is_widget' => 1,
808
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
809
-    );
810
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
811
-
812
-    $params = shortcode_atts($defaults, $atts);
813
-
814
-    /**
815
-     * Begin validating parameters
816
-     */
798
+	ob_start();
799
+	$defaults = array(
800
+		'post_number' => 5,
801
+		'relate_to' => 'category',
802
+		'layout' => 'gridview_onehalf',
803
+		'add_location_filter' => 0,
804
+		'listing_width' => '',
805
+		'list_sort' => 'latest',
806
+		'character_count' => 20,
807
+		'is_widget' => 1,
808
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
809
+	);
810
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
811
+
812
+	$params = shortcode_atts($defaults, $atts);
813
+
814
+	/**
815
+	 * Begin validating parameters
816
+	 */
817 817
 
818
-    // Validate that post_number is a number and is 1 or higher
819
-    $params['post_number'] = absint($params['post_number']);
820
-    if (0 === $params['post_number']) {
821
-        $params['post_number'] = 1;
822
-    }
818
+	// Validate that post_number is a number and is 1 or higher
819
+	$params['post_number'] = absint($params['post_number']);
820
+	if (0 === $params['post_number']) {
821
+		$params['post_number'] = 1;
822
+	}
823 823
 
824
-    // Validate relate_to - only category or tags
825
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
826
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
827
-        $params['relate_to'] = 'category';
828
-    }
824
+	// Validate relate_to - only category or tags
825
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
826
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
827
+		$params['relate_to'] = 'category';
828
+	}
829 829
 
830
-    // Validate layout selection
831
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
830
+	// Validate layout selection
831
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
832 832
 
833
-    // Validate sorting option
834
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
833
+	// Validate sorting option
834
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
835 835
 
836
-    // Validate add_location_filter
837
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
836
+	// Validate add_location_filter
837
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
838 838
 
839
-    // Validate listing_width
840
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
839
+	// Validate listing_width
840
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
841 841
 
842
-    // Validate character_count
843
-    $params['character_count'] = absint($params['character_count']);
844
-    if (20 > $params['character_count']) {
845
-        $params['character_count'] = 20;
846
-    }
842
+	// Validate character_count
843
+	$params['character_count'] = absint($params['character_count']);
844
+	if (20 > $params['character_count']) {
845
+		$params['character_count'] = 20;
846
+	}
847 847
 
848
-    if ($related_display = geodir_related_posts_display($params)) {
849
-        echo $related_display;
850
-    }
851
-    $output = ob_get_contents();
848
+	if ($related_display = geodir_related_posts_display($params)) {
849
+		echo $related_display;
850
+	}
851
+	$output = ob_get_contents();
852 852
 
853
-    ob_end_clean();
853
+	ob_end_clean();
854 854
 
855
-    return $output;
855
+	return $output;
856 856
 }
857 857
 
858 858
 /**
@@ -876,13 +876,13 @@  discard block
 block discarded – undo
876 876
  * @return string Advanced search widget HTML.
877 877
  */
878 878
 function geodir_sc_advanced_search($atts) {
879
-    $defaults = array(
879
+	$defaults = array(
880 880
 		'title' => '',
881 881
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
882
-        'after_widget' => '</section>',
883
-        'before_title' => '<h3 class="widget-title">',
884
-        'after_title' => '</h3>',
885
-        'show_adv_search' => 'default',
882
+		'after_widget' => '</section>',
883
+		'before_title' => '<h3 class="widget-title">',
884
+		'after_title' => '</h3>',
885
+		'show_adv_search' => 'default',
886 886
 		'post_type' => ''
887 887
 	);
888 888
 	
@@ -906,9 +906,9 @@  discard block
 block discarded – undo
906 906
 	the_widget('geodir_advance_search_widget', $params, $params );
907 907
 	
908 908
 	$output = ob_get_contents();
909
-    ob_end_clean();
909
+	ob_end_clean();
910 910
 
911
-    return $output;
911
+	return $output;
912 912
 }
913 913
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
914 914
 
@@ -954,48 +954,48 @@  discard block
 block discarded – undo
954 954
 		'add_location_filter' => '1',
955 955
 		'tab_layout' => 'bestof-tabs-on-top',
956 956
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
957
-        'after_widget' => '</section>',
958
-        'before_title' => '<h3 class="widget-title">',
959
-        'after_title' => '</h3>',
957
+		'after_widget' => '</section>',
958
+		'before_title' => '<h3 class="widget-title">',
959
+		'after_title' => '</h3>',
960 960
 	);
961 961
 	$params = shortcode_atts($defaults, $atts);
962 962
 
963
-    /**
964
-     * Validate our incoming params
965
-     */
963
+	/**
964
+	 * Validate our incoming params
965
+	 */
966 966
 
967
-    // Validate the selected post type, default to gd_place on fail
968
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
969
-        $params['post_type'] = 'gd_place';
970
-    }
967
+	// Validate the selected post type, default to gd_place on fail
968
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
969
+		$params['post_type'] = 'gd_place';
970
+	}
971 971
 	
972 972
 	// Post limit needs to be a positive integer
973
-    $params['post_limit'] = absint($params['post_limit']);
974
-    if (0 == $params['post_limit']) {
975
-        $params['post_limit'] = 5;
976
-    }
973
+	$params['post_limit'] = absint($params['post_limit']);
974
+	if (0 == $params['post_limit']) {
975
+		$params['post_limit'] = 5;
976
+	}
977 977
 	
978 978
 	// Category limit needs to be a positive integer
979
-    $params['categ_limit'] = absint($params['categ_limit']);
980
-    if (0 == $params['categ_limit']) {
981
-        $params['categ_limit'] = 3;
982
-    }
979
+	$params['categ_limit'] = absint($params['categ_limit']);
980
+	if (0 == $params['categ_limit']) {
981
+		$params['categ_limit'] = 3;
982
+	}
983 983
 	
984 984
 	// Tab layout validation
985
-    $params['tab_layout'] = $params['tab_layout'];
986
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
987
-        $params['tab_layout'] = 'bestof-tabs-on-top';
988
-    }
985
+	$params['tab_layout'] = $params['tab_layout'];
986
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
987
+		$params['tab_layout'] = 'bestof-tabs-on-top';
988
+	}
989 989
 	
990 990
 	// Validate character_count
991
-    $params['character_count'] = $params['character_count'];
991
+	$params['character_count'] = $params['character_count'];
992 992
 
993 993
 	ob_start();
994 994
 	the_widget('geodir_bestof_widget', $params, $params);
995
-    $output = ob_get_contents();
996
-    ob_end_clean();
995
+	$output = ob_get_contents();
996
+	ob_end_clean();
997 997
 
998
-    return $output;
998
+	return $output;
999 999
 }
1000 1000
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1001 1001
 
@@ -1043,127 +1043,127 @@  discard block
 block discarded – undo
1043 1043
  * @return string HTML content to display geodirectory listings.
1044 1044
  */
1045 1045
 function geodir_sc_gd_listings($atts, $content = '') {
1046
-    global $post;
1047
-    $defaults = array(
1048
-        'title'                 => '',
1049
-        'post_type'             => 'gd_place',
1050
-        'category'              => 0,
1051
-        'list_sort'             => 'latest',
1052
-        'event_type'            => '',
1053
-        'post_number'           => 10,
1054
-        'post_author'           => '',
1055
-        'layout'                => 'gridview_onehalf',
1056
-        'listing_width'         => '',
1057
-        'character_count'       => 20,
1058
-        'add_location_filter'   => 1,
1059
-        'show_featured_only'    => '',
1060
-        'show_special_only'     => '',
1061
-        'with_pics_only'        => '',
1062
-        'with_videos_only'      => '',
1063
-        'with_pagination'       => '1',
1064
-        'top_pagination'        => '0',
1065
-        'bottom_pagination'     => '1',
1066
-        'without_no_results'    => 0,
1067
-        'tags'                  => ''
1068
-    );
1069
-    $params = shortcode_atts($defaults, $atts);
1070
-
1071
-    $params['title']        = wp_strip_all_tags($params['title']);
1072
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1073
-
1074
-    // Validate the selected category/ies - Grab the current list based on post_type
1075
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1076
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1077
-
1078
-    // Make sure we have an array
1079
-    if (!(is_array($params['category']))) {
1080
-        $params['category'] = explode(',', $params['category']);
1081
-    }
1082
-
1083
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1084
-    // Otherwise it becomes empty and later on that will mean "All"
1085
-    $params['category']     = array_intersect($params['category'], $categories);
1086
-
1087
-    // Post_number needs to be a positive integer
1088
-    $params['post_number']  = absint($params['post_number']);
1089
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1046
+	global $post;
1047
+	$defaults = array(
1048
+		'title'                 => '',
1049
+		'post_type'             => 'gd_place',
1050
+		'category'              => 0,
1051
+		'list_sort'             => 'latest',
1052
+		'event_type'            => '',
1053
+		'post_number'           => 10,
1054
+		'post_author'           => '',
1055
+		'layout'                => 'gridview_onehalf',
1056
+		'listing_width'         => '',
1057
+		'character_count'       => 20,
1058
+		'add_location_filter'   => 1,
1059
+		'show_featured_only'    => '',
1060
+		'show_special_only'     => '',
1061
+		'with_pics_only'        => '',
1062
+		'with_videos_only'      => '',
1063
+		'with_pagination'       => '1',
1064
+		'top_pagination'        => '0',
1065
+		'bottom_pagination'     => '1',
1066
+		'without_no_results'    => 0,
1067
+		'tags'                  => ''
1068
+	);
1069
+	$params = shortcode_atts($defaults, $atts);
1070
+
1071
+	$params['title']        = wp_strip_all_tags($params['title']);
1072
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1073
+
1074
+	// Validate the selected category/ies - Grab the current list based on post_type
1075
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1076
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1077
+
1078
+	// Make sure we have an array
1079
+	if (!(is_array($params['category']))) {
1080
+		$params['category'] = explode(',', $params['category']);
1081
+	}
1082
+
1083
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1084
+	// Otherwise it becomes empty and later on that will mean "All"
1085
+	$params['category']     = array_intersect($params['category'], $categories);
1086
+
1087
+	// Post_number needs to be a positive integer
1088
+	$params['post_number']  = absint($params['post_number']);
1089
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1090 1090
     
1091
-    // Post_number needs to be a positive integer
1092
-    if (!empty($atts['post_author'])) {
1093
-        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1094
-            $params['post_author'] = $post->post_author;
1095
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1096
-            $params['post_author'] = absint($atts['post_author']);
1097
-        } else {
1098
-            unset($params['post_author']);
1099
-        }
1100
-    } else {
1101
-        unset($params['post_author']);
1102
-    }
1103
-
1104
-    // Validate character_count
1105
-    //todo: is this necessary?
1106
-    $params['character_count']  = $params['character_count'];
1107
-
1108
-    // Validate our layout choice
1109
-    // Outside of the norm, I added some more simple terms to match the existing
1110
-    // So now I just run the switch to set it properly.
1111
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1112
-
1113
-    // Validate our sorting choice
1114
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1115
-
1116
-    // Validate Listing width, used in the template widget-listing-listview.php
1117
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1118
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1119
-
1120
-    // Validate the checkboxes used on the widget
1121
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1122
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1123
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1124
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1125
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1126
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1127
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1128
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1129
-
1130
-    // Clean tags
1131
-    if (!empty($params['tags'])) {
1132
-        if (!is_array($params['tags'])) {
1133
-            $comma = _x(',', 'tag delimiter');
1134
-            if ( ',' !== $comma ) {
1135
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1136
-            }
1137
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1138
-            $params['tags'] = array_map('trim', $params['tags']);
1139
-        }
1140
-    } else {
1141
-        $params['tags'] = array();
1142
-    }
1143
-
1144
-    /**
1145
-     * End of validation
1146
-     */
1147
-    if (isset($atts['geodir_ajax'])) {
1148
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1149
-        unset($atts['geodir_ajax']);
1150
-    }
1151
-    if (isset($atts['pageno'])) {
1152
-        $params['pageno'] = $atts['pageno'];
1153
-        unset($atts['pageno']);
1154
-    }
1155
-
1156
-    if ( !empty($atts['shortcode_content']) ) {
1157
-        $content = $atts['shortcode_content'];
1158
-    }
1159
-    $params['shortcode_content'] = trim($content);
1160
-    $atts['shortcode_content'] = trim($content);
1091
+	// Post_number needs to be a positive integer
1092
+	if (!empty($atts['post_author'])) {
1093
+		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1094
+			$params['post_author'] = $post->post_author;
1095
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1096
+			$params['post_author'] = absint($atts['post_author']);
1097
+		} else {
1098
+			unset($params['post_author']);
1099
+		}
1100
+	} else {
1101
+		unset($params['post_author']);
1102
+	}
1103
+
1104
+	// Validate character_count
1105
+	//todo: is this necessary?
1106
+	$params['character_count']  = $params['character_count'];
1107
+
1108
+	// Validate our layout choice
1109
+	// Outside of the norm, I added some more simple terms to match the existing
1110
+	// So now I just run the switch to set it properly.
1111
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1112
+
1113
+	// Validate our sorting choice
1114
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1115
+
1116
+	// Validate Listing width, used in the template widget-listing-listview.php
1117
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1118
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1119
+
1120
+	// Validate the checkboxes used on the widget
1121
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1122
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1123
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1124
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1125
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1126
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1127
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1128
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1129
+
1130
+	// Clean tags
1131
+	if (!empty($params['tags'])) {
1132
+		if (!is_array($params['tags'])) {
1133
+			$comma = _x(',', 'tag delimiter');
1134
+			if ( ',' !== $comma ) {
1135
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1136
+			}
1137
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1138
+			$params['tags'] = array_map('trim', $params['tags']);
1139
+		}
1140
+	} else {
1141
+		$params['tags'] = array();
1142
+	}
1143
+
1144
+	/**
1145
+	 * End of validation
1146
+	 */
1147
+	if (isset($atts['geodir_ajax'])) {
1148
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1149
+		unset($atts['geodir_ajax']);
1150
+	}
1151
+	if (isset($atts['pageno'])) {
1152
+		$params['pageno'] = $atts['pageno'];
1153
+		unset($atts['pageno']);
1154
+	}
1155
+
1156
+	if ( !empty($atts['shortcode_content']) ) {
1157
+		$content = $atts['shortcode_content'];
1158
+	}
1159
+	$params['shortcode_content'] = trim($content);
1160
+	$atts['shortcode_content'] = trim($content);
1161 1161
     
1162
-    $params['shortcode_atts']       = $atts;
1162
+	$params['shortcode_atts']       = $atts;
1163 1163
 
1164
-    $output = geodir_sc_gd_listings_output($params);
1164
+	$output = geodir_sc_gd_listings_output($params);
1165 1165
 
1166
-    return $output;
1166
+	return $output;
1167 1167
 }
1168 1168
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1169 1169
 
@@ -1203,56 +1203,56 @@  discard block
 block discarded – undo
1203 1203
  * @return string HTML content to display CPT categories.
1204 1204
  */
1205 1205
 function geodir_sc_cpt_categories_widget($atts, $content = '') {
1206
-    $defaults = array(
1207
-        'title' => '',
1208
-        'post_type' => '', // NULL for all
1209
-        'hide_empty' => '',
1210
-        'show_count' => '',
1211
-        'hide_icon' => '',
1212
-        'cpt_left' => '',
1213
-        'sort_by' => 'count',
1214
-        'max_count' => 'all',
1215
-        'max_level' => '1',
1216
-        'no_cpt_filter' => '',
1217
-        'no_cat_filter' => '',
1218
-        'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1219
-        'after_widget' => '</section>',
1220
-        'before_title' => '<h3 class="widget-title">',
1221
-        'after_title' => '</h3>',
1222
-    );
1223
-    $params = shortcode_atts($defaults, $atts);
1224
-
1225
-    /**
1226
-     * Validate our incoming params
1227
-     */
1228
-    // Make sure we have an array
1229
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1230
-     
1231
-    // Validate the checkboxes used on the widget
1232
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1233
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1234
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1235
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1206
+	$defaults = array(
1207
+		'title' => '',
1208
+		'post_type' => '', // NULL for all
1209
+		'hide_empty' => '',
1210
+		'show_count' => '',
1211
+		'hide_icon' => '',
1212
+		'cpt_left' => '',
1213
+		'sort_by' => 'count',
1214
+		'max_count' => 'all',
1215
+		'max_level' => '1',
1216
+		'no_cpt_filter' => '',
1217
+		'no_cat_filter' => '',
1218
+		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1219
+		'after_widget' => '</section>',
1220
+		'before_title' => '<h3 class="widget-title">',
1221
+		'after_title' => '</h3>',
1222
+	);
1223
+	$params = shortcode_atts($defaults, $atts);
1236 1224
 
1237
-    if ($params['max_count'] != 'all') {
1238
-        $params['max_count'] = absint($params['max_count']);
1239
-    }
1225
+	/**
1226
+	 * Validate our incoming params
1227
+	 */
1228
+	// Make sure we have an array
1229
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1230
+     
1231
+	// Validate the checkboxes used on the widget
1232
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1233
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1234
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1235
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1236
+
1237
+	if ($params['max_count'] != 'all') {
1238
+		$params['max_count'] = absint($params['max_count']);
1239
+	}
1240 1240
 
1241
-    if ($params['max_level'] != 'all') {
1242
-        $params['max_level'] = absint($params['max_level']);
1243
-    }
1241
+	if ($params['max_level'] != 'all') {
1242
+		$params['max_level'] = absint($params['max_level']);
1243
+	}
1244 1244
 
1245
-    $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1246
-    $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1245
+	$params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1246
+	$params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1247 1247
 
1248
-    $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1248
+	$params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1249 1249
 
1250
-    ob_start();
1251
-    the_widget('geodir_cpt_categories_widget', $params, $params);
1252
-    $output = ob_get_contents();
1253
-    ob_end_clean();
1250
+	ob_start();
1251
+	the_widget('geodir_cpt_categories_widget', $params, $params);
1252
+	$output = ob_get_contents();
1253
+	ob_end_clean();
1254 1254
 
1255
-    return $output;
1255
+	return $output;
1256 1256
 }
1257 1257
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1258 1258
 
@@ -1267,7 +1267,7 @@  discard block
 block discarded – undo
1267 1267
  * @return string HTML code.
1268 1268
  */
1269 1269
 function geodir_sc_responsive_videos($atts, $content) {
1270
-    return '<div class="geodir-video-wrapper">'.$content.'</div>';
1270
+	return '<div class="geodir-video-wrapper">'.$content.'</div>';
1271 1271
 }
1272 1272
 add_shortcode('gd_video', 'geodir_sc_responsive_videos');
1273 1273
 ?>
1274 1274
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-admin/place_dummy_post.php 3 patches
Indentation   +1220 added lines, -1220 removed lines patch added patch discarded remove patch
@@ -12,32 +12,32 @@  discard block
 block discarded – undo
12 12
 $post_meta = array();
13 13
 
14 14
 if (geodir_dummy_folder_exists())
15
-    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
15
+	$dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
16 16
 else
17
-    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
17
+	$dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
18 18
 
19 19
 $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url);
20 20
 
21 21
 switch ($dummy_post_index) {
22 22
 
23
-    case(1):
24
-        $image_array[] = "$dummy_image_url/a1.jpg";
25
-        $image_array[] = "$dummy_image_url/a2.jpg";
26
-        $image_array[] = "$dummy_image_url/a3.jpg";
27
-        $image_array[] = "$dummy_image_url/a4.jpg";
28
-        $image_array[] = "$dummy_image_url/a5.jpg";
29
-        $image_array[] = "$dummy_image_url/a6.jpg";
30
-        $image_array[] = "$dummy_image_url/a7.jpg";
31
-        $image_array[] = "$dummy_image_url/a8.jpg";
32
-        $image_array[] = "$dummy_image_url/a9.jpg";
33
-        $image_array[] = "$dummy_image_url/a10.jpg";
34
-        $image_array[] = "$dummy_image_url/a11.jpg";
35
-
36
-
37
-        $post_info[] = array(
38
-            "listing_type" => 'gd_place',
39
-            "post_title" => 'Franklin Square',
40
-            "post_desc" => ' <h3> Location </h3>
23
+	case(1):
24
+		$image_array[] = "$dummy_image_url/a1.jpg";
25
+		$image_array[] = "$dummy_image_url/a2.jpg";
26
+		$image_array[] = "$dummy_image_url/a3.jpg";
27
+		$image_array[] = "$dummy_image_url/a4.jpg";
28
+		$image_array[] = "$dummy_image_url/a5.jpg";
29
+		$image_array[] = "$dummy_image_url/a6.jpg";
30
+		$image_array[] = "$dummy_image_url/a7.jpg";
31
+		$image_array[] = "$dummy_image_url/a8.jpg";
32
+		$image_array[] = "$dummy_image_url/a9.jpg";
33
+		$image_array[] = "$dummy_image_url/a10.jpg";
34
+		$image_array[] = "$dummy_image_url/a11.jpg";
35
+
36
+
37
+		$post_info[] = array(
38
+			"listing_type" => 'gd_place',
39
+			"post_title" => 'Franklin Square',
40
+			"post_desc" => ' <h3> Location </h3>
41 41
 		
42 42
 		6th and Race Streets in Historic Philadelphia
43 43
 		<h3>The Experience</h3>
@@ -72,42 +72,42 @@  discard block
 block discarded – undo
72 72
 		Just in time for summer, Franklin Square has opened SquareBurger, a Stephen Starr-run “burger shack” selling summer staples: hot dogs, fries, milkshakes (made with Tasty Kakes) and, of course, hamburgers and cheeseburgers.
73 73
 		
74 74
 		SquareBurger is open until October - perfect for a couple bites between rounds of miniature golf!',
75
-            "post_images" => $image_array,
76
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
77
-            "post_tags" => array('Tags', 'Sample Tags'),
78
-            "geodir_video" => '',
79
-            "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
80
-            "geodir_contact" => '(111) 677-4444',
81
-            "geodir_email" => '[email protected]',
82
-            "geodir_website" => 'http://franklinsquare.com',
83
-            "geodir_twitter" => 'http://twitter.com/franklinsquare',
84
-            "geodir_facebook" => 'http://facebook.com/franklinsquare',
85
-            "post_dummy" => '1'
86
-        );
87
-
88
-
89
-        break;
90
-    case 2:
91
-        $image_array = array();
92
-        $post_meta = array();
93
-
94
-        /// Attractions ////post start 2///
95
-        $image_array[] = "$dummy_image_url/a6.jpg";
96
-        $image_array[] = "$dummy_image_url/a1.jpg";
97
-        $image_array[] = "$dummy_image_url/a3.jpg";
98
-        $image_array[] = "$dummy_image_url/a4.jpg";
99
-        $image_array[] = "$dummy_image_url/a5.jpg";
100
-        $image_array[] = "$dummy_image_url/a2.jpg";
101
-        $image_array[] = "$dummy_image_url/a7.jpg";
102
-        $image_array[] = "$dummy_image_url/a8.jpg";
103
-        $image_array[] = "$dummy_image_url/a9.jpg";
104
-        $image_array[] = "$dummy_image_url/a10.jpg";
105
-        $image_array[] = "$dummy_image_url/a11.jpg";
106
-
107
-        $post_info[] = array(
108
-            "listing_type" => 'gd_place',
109
-            "post_title" => 'Please Touch Museum',
110
-            "post_desc" => '<h3>New Location! </h3>
75
+			"post_images" => $image_array,
76
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
77
+			"post_tags" => array('Tags', 'Sample Tags'),
78
+			"geodir_video" => '',
79
+			"geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
80
+			"geodir_contact" => '(111) 677-4444',
81
+			"geodir_email" => '[email protected]',
82
+			"geodir_website" => 'http://franklinsquare.com',
83
+			"geodir_twitter" => 'http://twitter.com/franklinsquare',
84
+			"geodir_facebook" => 'http://facebook.com/franklinsquare',
85
+			"post_dummy" => '1'
86
+		);
87
+
88
+
89
+		break;
90
+	case 2:
91
+		$image_array = array();
92
+		$post_meta = array();
93
+
94
+		/// Attractions ////post start 2///
95
+		$image_array[] = "$dummy_image_url/a6.jpg";
96
+		$image_array[] = "$dummy_image_url/a1.jpg";
97
+		$image_array[] = "$dummy_image_url/a3.jpg";
98
+		$image_array[] = "$dummy_image_url/a4.jpg";
99
+		$image_array[] = "$dummy_image_url/a5.jpg";
100
+		$image_array[] = "$dummy_image_url/a2.jpg";
101
+		$image_array[] = "$dummy_image_url/a7.jpg";
102
+		$image_array[] = "$dummy_image_url/a8.jpg";
103
+		$image_array[] = "$dummy_image_url/a9.jpg";
104
+		$image_array[] = "$dummy_image_url/a10.jpg";
105
+		$image_array[] = "$dummy_image_url/a11.jpg";
106
+
107
+		$post_info[] = array(
108
+			"listing_type" => 'gd_place',
109
+			"post_title" => 'Please Touch Museum',
110
+			"post_desc" => '<h3>New Location! </h3>
111 111
 		
112 112
 		Who doesn&acute;t love the Please Touch Museum? And now, taking kids to the Museum is better than ever. The nation&acute;s premier children&acute;s museum - which has been a beloved landmark since it opened in 1976 - has a new home in Fairmount Park, opening its doors to a world of educational, hands-on fun.
113 113
 		
@@ -139,42 +139,42 @@  discard block
 block discarded – undo
139 139
 		
140 140
 		You can buy admission tickets to the Please Touch Museum online through our partners at the Independence Visitor Center. Just click the button below.',
141 141
 
142
-            "post_images" => $image_array,
143
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
144
-            "post_tags" => array('Tags', 'Sample Tags'),
145
-            "geodir_video" => '',
146
-            "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
147
-            "geodir_contact" => '(222) 777-1111',
148
-            "geodir_email" => '[email protected]',
149
-            "geodir_website" => 'http://pleasetouchmuseum.com',
150
-            "geodir_twitter" => 'http://twitter.com/pleasetouchmuseum',
151
-            "geodir_facebook" => 'http://facebook.com/pleasetouchmuseum',
152
-            "post_dummy" => '1'
153
-        );
154
-
155
-        break;
156
-    case 3:
157
-        $image_array = array();
158
-        $post_meta = array();
159
-
160
-        ////post end///
161
-        /// Attractions ////post start 3///
162
-        $image_array[] = "$dummy_image_url/a9.jpg";
163
-        $image_array[] = "$dummy_image_url/a10.jpg";
164
-        $image_array[] = "$dummy_image_url/a3.jpg";
165
-        $image_array[] = "$dummy_image_url/a4.jpg";
166
-        $image_array[] = "$dummy_image_url/a5.jpg";
167
-        $image_array[] = "$dummy_image_url/a2.jpg";
168
-        $image_array[] = "$dummy_image_url/a7.jpg";
169
-        $image_array[] = "$dummy_image_url/a8.jpg";
170
-        $image_array[] = "$dummy_image_url/a6.jpg";
171
-        $image_array[] = "$dummy_image_url/a1.jpg";
172
-        $image_array[] = "$dummy_image_url/a11.jpg";
173
-
174
-        $post_info[] = array(
175
-            "listing_type" => 'gd_place',
176
-            "post_title" => 'Longwood Gardens',
177
-            "post_desc" => '<h3>The Experience </h3>
142
+			"post_images" => $image_array,
143
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
144
+			"post_tags" => array('Tags', 'Sample Tags'),
145
+			"geodir_video" => '',
146
+			"geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
147
+			"geodir_contact" => '(222) 777-1111',
148
+			"geodir_email" => '[email protected]',
149
+			"geodir_website" => 'http://pleasetouchmuseum.com',
150
+			"geodir_twitter" => 'http://twitter.com/pleasetouchmuseum',
151
+			"geodir_facebook" => 'http://facebook.com/pleasetouchmuseum',
152
+			"post_dummy" => '1'
153
+		);
154
+
155
+		break;
156
+	case 3:
157
+		$image_array = array();
158
+		$post_meta = array();
159
+
160
+		////post end///
161
+		/// Attractions ////post start 3///
162
+		$image_array[] = "$dummy_image_url/a9.jpg";
163
+		$image_array[] = "$dummy_image_url/a10.jpg";
164
+		$image_array[] = "$dummy_image_url/a3.jpg";
165
+		$image_array[] = "$dummy_image_url/a4.jpg";
166
+		$image_array[] = "$dummy_image_url/a5.jpg";
167
+		$image_array[] = "$dummy_image_url/a2.jpg";
168
+		$image_array[] = "$dummy_image_url/a7.jpg";
169
+		$image_array[] = "$dummy_image_url/a8.jpg";
170
+		$image_array[] = "$dummy_image_url/a6.jpg";
171
+		$image_array[] = "$dummy_image_url/a1.jpg";
172
+		$image_array[] = "$dummy_image_url/a11.jpg";
173
+
174
+		$post_info[] = array(
175
+			"listing_type" => 'gd_place',
176
+			"post_title" => 'Longwood Gardens',
177
+			"post_desc" => '<h3>The Experience </h3>
178 178
 		
179 179
 		When you&acute;re at Longwood Gardens, it&acute;s easy to imagine that you&acute;re at a giant, royal garden in Europe. Stroll along the many paths through acres of exquisitely maintained grounds featuring 11,000 different types of plants.
180 180
 		
@@ -199,42 +199,42 @@  discard block
 block discarded – undo
199 199
 		<h3>Buy Tickets Online In Advance </h3>
200 200
 		
201 201
 		You can buy admission tickets to Longwood Gardens online through our partners at the Independence Visitor Center. Just click the button below.',
202
-            "post_images" => $image_array,
203
-            "post_category" => array('gd_placecategory' => array('Attractions')),
204
-            "post_tags" => array('wood', 'garden'),
205
-            "geodir_video" => '',
206
-            "geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
207
-            "geodir_contact" => '(111) 888-1111',
208
-            "geodir_email" => '[email protected]',
209
-            "geodir_website" => 'http://longwoodgardens.com',
210
-            "geodir_twitter" => 'http://twitter.com/longwoodgardens',
211
-            "geodir_facebook" => 'http://facebook.com/longwoodgardens',
212
-            "post_dummy" => '1'
213
-        );
214
-        break;
215
-    ////post end///
216
-    /// Attractions ////post start 4///
217
-
218
-    case 4:
219
-
220
-        $image_array = array();
221
-        $post_meta = array();
222
-        $image_array[] = "$dummy_image_url/a11.jpg";
223
-        $image_array[] = "$dummy_image_url/a10.jpg";
224
-        $image_array[] = "$dummy_image_url/a3.jpg";
225
-        $image_array[] = "$dummy_image_url/a4.jpg";
226
-        $image_array[] = "$dummy_image_url/a5.jpg";
227
-        $image_array[] = "$dummy_image_url/a2.jpg";
228
-        $image_array[] = "$dummy_image_url/a7.jpg";
229
-        $image_array[] = "$dummy_image_url/a8.jpg";
230
-        $image_array[] = "$dummy_image_url/a6.jpg";
231
-        $image_array[] = "$dummy_image_url/a1.jpg";
232
-        $image_array[] = "$dummy_image_url/a9.jpg";
233
-
234
-        $post_info[] = array(
235
-            "listing_type" => 'gd_place',
236
-            "post_title" => 'The Philadelphia Zoo',
237
-            "post_desc" => '<h3>The Zoo 150th Birthday</h3>
202
+			"post_images" => $image_array,
203
+			"post_category" => array('gd_placecategory' => array('Attractions')),
204
+			"post_tags" => array('wood', 'garden'),
205
+			"geodir_video" => '',
206
+			"geodir_timing" => 'Open today until 1 p.m., Sunday 10 am to 9 pm',
207
+			"geodir_contact" => '(111) 888-1111',
208
+			"geodir_email" => '[email protected]',
209
+			"geodir_website" => 'http://longwoodgardens.com',
210
+			"geodir_twitter" => 'http://twitter.com/longwoodgardens',
211
+			"geodir_facebook" => 'http://facebook.com/longwoodgardens',
212
+			"post_dummy" => '1'
213
+		);
214
+		break;
215
+	////post end///
216
+	/// Attractions ////post start 4///
217
+
218
+	case 4:
219
+
220
+		$image_array = array();
221
+		$post_meta = array();
222
+		$image_array[] = "$dummy_image_url/a11.jpg";
223
+		$image_array[] = "$dummy_image_url/a10.jpg";
224
+		$image_array[] = "$dummy_image_url/a3.jpg";
225
+		$image_array[] = "$dummy_image_url/a4.jpg";
226
+		$image_array[] = "$dummy_image_url/a5.jpg";
227
+		$image_array[] = "$dummy_image_url/a2.jpg";
228
+		$image_array[] = "$dummy_image_url/a7.jpg";
229
+		$image_array[] = "$dummy_image_url/a8.jpg";
230
+		$image_array[] = "$dummy_image_url/a6.jpg";
231
+		$image_array[] = "$dummy_image_url/a1.jpg";
232
+		$image_array[] = "$dummy_image_url/a9.jpg";
233
+
234
+		$post_info[] = array(
235
+			"listing_type" => 'gd_place',
236
+			"post_title" => 'The Philadelphia Zoo',
237
+			"post_desc" => '<h3>The Zoo 150th Birthday</h3>
238 238
 		
239 239
 		The Philadelphia Zoo celebrated its 150th anniversary in 2009. So stop by and celebrate this major achievement at America&acute;s first zoo!
240 240
 		
@@ -269,45 +269,45 @@  discard block
 block discarded – undo
269 269
 		The nation&acute;s oldest zoo was chartered in 1859, but the impending Civil War delayed its opening until 1874. In addition to its animals, the zoo is known for its historic architecture, which includes the country home of William Penn&acute;s grandson; its botanical collections of over 500 plant species; its groundbreaking research and its fine veterinary facilities.
270 270
 		
271 271
 		The Primate Reserve, Carnivore Kingdom, and Rare Animal Conservation Center, with its tree kangaroos and blue-eyed lemurs, are brand new, but there&acute;s still fun to be had in the historic, old-style bird, pachyderm and carnivore houses. In the Treehouse, kids can investigate the world from an animal&acute;s perspective; outdoors, the Zoo Balloon lifts passengers 400 feet into the air for a bird&acute;s-eye view of the zoo.',
272
-            "post_images" => $image_array,
273
-            "post_category" => array('gd_placecategory' => array('Attractions')),
274
-            "post_tags" => array('wood', 'garden'),
275
-            "geodir_video" => '',
276
-            "geodir_timing" => 'Open today until 11.30 a.m., Sunday 11 am to 7 pm',
277
-            "geodir_contact" => '(211) 143-1900',
278
-            "geodir_email" => '[email protected]',
279
-            "geodir_website" => 'http://philadelphiazoo.com',
280
-            "geodir_twitter" => 'http://twitter.com/philadelphiazoo',
281
-            "geodir_facebook" => 'http://facebook.com/philadelphiazoo',
282
-            "post_dummy" => '1'
283
-        );
284
-
285
-        ////post end///
286
-        /// Attractions ////post start 4///
287
-        break;
288
-    case 5:
289
-
290
-
291
-        $image_array = array();
292
-        $post_meta = array();
293
-
294
-        /// Attractions ////post start 5///
295
-        $image_array[] = "$dummy_image_url/a12.jpg";
296
-        $image_array[] = "$dummy_image_url/a13.jpg";
297
-        $image_array[] = "$dummy_image_url/a3.jpg";
298
-        $image_array[] = "$dummy_image_url/a4.jpg";
299
-        $image_array[] = "$dummy_image_url/a5.jpg";
300
-        $image_array[] = "$dummy_image_url/a2.jpg";
301
-        $image_array[] = "$dummy_image_url/a7.jpg";
302
-        $image_array[] = "$dummy_image_url/a8.jpg";
303
-        $image_array[] = "$dummy_image_url/a6.jpg";
304
-        $image_array[] = "$dummy_image_url/a1.jpg";
305
-        $image_array[] = "$dummy_image_url/a9.jpg";
306
-
307
-        $post_info[] = array(
308
-            "listing_type" => 'gd_place',
309
-            "post_title" => 'National Constitution Center',
310
-            "post_desc" => '<h3>The Experience</h3>
272
+			"post_images" => $image_array,
273
+			"post_category" => array('gd_placecategory' => array('Attractions')),
274
+			"post_tags" => array('wood', 'garden'),
275
+			"geodir_video" => '',
276
+			"geodir_timing" => 'Open today until 11.30 a.m., Sunday 11 am to 7 pm',
277
+			"geodir_contact" => '(211) 143-1900',
278
+			"geodir_email" => '[email protected]',
279
+			"geodir_website" => 'http://philadelphiazoo.com',
280
+			"geodir_twitter" => 'http://twitter.com/philadelphiazoo',
281
+			"geodir_facebook" => 'http://facebook.com/philadelphiazoo',
282
+			"post_dummy" => '1'
283
+		);
284
+
285
+		////post end///
286
+		/// Attractions ////post start 4///
287
+		break;
288
+	case 5:
289
+
290
+
291
+		$image_array = array();
292
+		$post_meta = array();
293
+
294
+		/// Attractions ////post start 5///
295
+		$image_array[] = "$dummy_image_url/a12.jpg";
296
+		$image_array[] = "$dummy_image_url/a13.jpg";
297
+		$image_array[] = "$dummy_image_url/a3.jpg";
298
+		$image_array[] = "$dummy_image_url/a4.jpg";
299
+		$image_array[] = "$dummy_image_url/a5.jpg";
300
+		$image_array[] = "$dummy_image_url/a2.jpg";
301
+		$image_array[] = "$dummy_image_url/a7.jpg";
302
+		$image_array[] = "$dummy_image_url/a8.jpg";
303
+		$image_array[] = "$dummy_image_url/a6.jpg";
304
+		$image_array[] = "$dummy_image_url/a1.jpg";
305
+		$image_array[] = "$dummy_image_url/a9.jpg";
306
+
307
+		$post_info[] = array(
308
+			"listing_type" => 'gd_place',
309
+			"post_title" => 'National Constitution Center',
310
+			"post_desc" => '<h3>The Experience</h3>
311 311
 	
312 312
 	It only four pages long, but the U.S. Constitution is among the most influential and important documents in the history of the world.
313 313
 	
@@ -329,45 +329,45 @@  discard block
 block discarded – undo
329 329
 	<h3>Kids Stuff </h3>
330 330
 	
331 331
 	The Center frequently hosts special events with a focus on children that include informative and engaging hands-on activities. For specific information, check out the Center website.',
332
-            "post_images" => $image_array,
333
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
334
-            "post_tags" => array('Tag', 'Center'),
335
-            "geodir_video" => '',
336
-            "geodir_timing" => 'Open today until 9.30 a.m., Sunday 11 am to 7 pm',
337
-            "geodir_contact" => '(111) 111-1111',
338
-            "geodir_email" => '[email protected]',
339
-            "geodir_website" => 'http://ncc.com',
340
-            "geodir_twitter" => 'http://twitter.com/ncc',
341
-            "geodir_facebook" => 'http://facebook.com/ncc',
342
-            "post_dummy" => '1'
343
-        );
344
-
345
-        ////post end///
346
-        /// Attractions ////post start 5///
347
-        break;
348
-    case 6:
349
-
350
-
351
-        $image_array = array();
352
-        $post_meta = array();
353
-
354
-        /// Attractions ////post start 6///
355
-        $image_array[] = "$dummy_image_url/a14.jpg";
356
-        $image_array[] = "$dummy_image_url/a13.jpg";
357
-        $image_array[] = "$dummy_image_url/a3.jpg";
358
-        $image_array[] = "$dummy_image_url/a4.jpg";
359
-        $image_array[] = "$dummy_image_url/a5.jpg";
360
-        $image_array[] = "$dummy_image_url/a2.jpg";
361
-        $image_array[] = "$dummy_image_url/a7.jpg";
362
-        $image_array[] = "$dummy_image_url/a8.jpg";
363
-        $image_array[] = "$dummy_image_url/a6.jpg";
364
-        $image_array[] = "$dummy_image_url/a1.jpg";
365
-        $image_array[] = "$dummy_image_url/a9.jpg";
366
-
367
-        $post_info[] = array(
368
-            "listing_type" => 'gd_place',
369
-            "post_title" => 'Sadsbury Woods Preserve',
370
-            "post_desc" => 'A more than 500-acre nature preserve ideal for walking and hiking, Sadsbury Woods is also an important habitat for interior nesting birds and small mammals. An increasingly rare area of interior woodlands, defined as an area at least 300 feet from any road, lawn or meadow, provides a critical habitat for many species of birds, especially neo-tropical migrant songbirds.
332
+			"post_images" => $image_array,
333
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
334
+			"post_tags" => array('Tag', 'Center'),
335
+			"geodir_video" => '',
336
+			"geodir_timing" => 'Open today until 9.30 a.m., Sunday 11 am to 7 pm',
337
+			"geodir_contact" => '(111) 111-1111',
338
+			"geodir_email" => '[email protected]',
339
+			"geodir_website" => 'http://ncc.com',
340
+			"geodir_twitter" => 'http://twitter.com/ncc',
341
+			"geodir_facebook" => 'http://facebook.com/ncc',
342
+			"post_dummy" => '1'
343
+		);
344
+
345
+		////post end///
346
+		/// Attractions ////post start 5///
347
+		break;
348
+	case 6:
349
+
350
+
351
+		$image_array = array();
352
+		$post_meta = array();
353
+
354
+		/// Attractions ////post start 6///
355
+		$image_array[] = "$dummy_image_url/a14.jpg";
356
+		$image_array[] = "$dummy_image_url/a13.jpg";
357
+		$image_array[] = "$dummy_image_url/a3.jpg";
358
+		$image_array[] = "$dummy_image_url/a4.jpg";
359
+		$image_array[] = "$dummy_image_url/a5.jpg";
360
+		$image_array[] = "$dummy_image_url/a2.jpg";
361
+		$image_array[] = "$dummy_image_url/a7.jpg";
362
+		$image_array[] = "$dummy_image_url/a8.jpg";
363
+		$image_array[] = "$dummy_image_url/a6.jpg";
364
+		$image_array[] = "$dummy_image_url/a1.jpg";
365
+		$image_array[] = "$dummy_image_url/a9.jpg";
366
+
367
+		$post_info[] = array(
368
+			"listing_type" => 'gd_place',
369
+			"post_title" => 'Sadsbury Woods Preserve',
370
+			"post_desc" => 'A more than 500-acre nature preserve ideal for walking and hiking, Sadsbury Woods is also an important habitat for interior nesting birds and small mammals. An increasingly rare area of interior woodlands, defined as an area at least 300 feet from any road, lawn or meadow, provides a critical habitat for many species of birds, especially neo-tropical migrant songbirds.
371 371
 	
372 372
 	Situated on the western edge of Chester County, the land remains much as it did centuries ago, and now serves as a permanent refuge in an area facing dramatically increasing development pressure.
373 373
 	
@@ -383,45 +383,45 @@  discard block
 block discarded – undo
383 383
 	Outsider Tip
384 384
 	
385 385
 	The deep forest is a great place for spotting neo-tropical songbirds in the spring and summer months',
386
-            "post_images" => $image_array,
387
-            "post_category" => array('gd_placecategory' => array('Attractions')),
388
-            "post_tags" => array('sample', 'tags'),
389
-            "geodir_video" => '',
390
-            "geodir_timing" => 'Open today until 12.30 p.m., Sunday 12 pm to 7 pm',
391
-            "geodir_contact" => '(222) 999-9999',
392
-            "geodir_email" => '[email protected]',
393
-            "geodir_website" => 'http://swp.com',
394
-            "geodir_twitter" => 'http://twitter.com/swp',
395
-            "geodir_facebook" => 'http://facebook.com/swp',
396
-            "post_dummy" => '1'
397
-        );
398
-
399
-        ////post end///
400
-        /// Attractions ////post start 6///
401
-
402
-        break;
403
-    case 7:
404
-
405
-        $image_array = array();
406
-        $post_meta = array();
407
-
408
-        /// Attractions ////post start 7///
409
-        $image_array[] = "$dummy_image_url/a15.jpg";
410
-        $image_array[] = "$dummy_image_url/a16.jpg";
411
-        $image_array[] = "$dummy_image_url/a17.jpg";
412
-        $image_array[] = "$dummy_image_url/a4.jpg";
413
-        $image_array[] = "$dummy_image_url/a5.jpg";
414
-        $image_array[] = "$dummy_image_url/a2.jpg";
415
-        $image_array[] = "$dummy_image_url/a7.jpg";
416
-        $image_array[] = "$dummy_image_url/a8.jpg";
417
-        $image_array[] = "$dummy_image_url/a6.jpg";
418
-        $image_array[] = "$dummy_image_url/a1.jpg";
419
-        $image_array[] = "$dummy_image_url/a9.jpg";
420
-
421
-        $post_info[] = array(
422
-            "listing_type" => 'gd_place',
423
-            "post_title" => 'Museum Without Walls',
424
-            "post_desc" => '<h3>The Experience </h3>
386
+			"post_images" => $image_array,
387
+			"post_category" => array('gd_placecategory' => array('Attractions')),
388
+			"post_tags" => array('sample', 'tags'),
389
+			"geodir_video" => '',
390
+			"geodir_timing" => 'Open today until 12.30 p.m., Sunday 12 pm to 7 pm',
391
+			"geodir_contact" => '(222) 999-9999',
392
+			"geodir_email" => '[email protected]',
393
+			"geodir_website" => 'http://swp.com',
394
+			"geodir_twitter" => 'http://twitter.com/swp',
395
+			"geodir_facebook" => 'http://facebook.com/swp',
396
+			"post_dummy" => '1'
397
+		);
398
+
399
+		////post end///
400
+		/// Attractions ////post start 6///
401
+
402
+		break;
403
+	case 7:
404
+
405
+		$image_array = array();
406
+		$post_meta = array();
407
+
408
+		/// Attractions ////post start 7///
409
+		$image_array[] = "$dummy_image_url/a15.jpg";
410
+		$image_array[] = "$dummy_image_url/a16.jpg";
411
+		$image_array[] = "$dummy_image_url/a17.jpg";
412
+		$image_array[] = "$dummy_image_url/a4.jpg";
413
+		$image_array[] = "$dummy_image_url/a5.jpg";
414
+		$image_array[] = "$dummy_image_url/a2.jpg";
415
+		$image_array[] = "$dummy_image_url/a7.jpg";
416
+		$image_array[] = "$dummy_image_url/a8.jpg";
417
+		$image_array[] = "$dummy_image_url/a6.jpg";
418
+		$image_array[] = "$dummy_image_url/a1.jpg";
419
+		$image_array[] = "$dummy_image_url/a9.jpg";
420
+
421
+		$post_info[] = array(
422
+			"listing_type" => 'gd_place',
423
+			"post_title" => 'Museum Without Walls',
424
+			"post_desc" => '<h3>The Experience </h3>
425 425
 	
426 426
 	Museum Without Walls: AUDIO is a multi-platform, interactive audio tour, designed to allow locals and visitors alike to experience Philadelphia extensive collection of public art and outdoor sculpture along the Benjamin Franklin Parkway and Kelly Drive. This innovative program invites passersby to stop, look, listen and see this city public art in a new way. Discover the untold histories of the 51 outdoor sculptures at 35 stops through these professionally produced three-minute interpretive audio segments. The many narratives have been spoken by more than 100 individuals, all with personal connections to the pieces of art.
427 427
 	
@@ -431,45 +431,45 @@  discard block
 block discarded – undo
431 431
 	<h3>History </h3>
432 432
 	
433 433
 	Philadelphia has more outdoor sculpture than any other American city, yet this extensive collection often goes unnoticed. This program is intended to reveal the distinct stories behind each of these works, that have become visual white noise for so many of the city residents and visitors. ',
434
-            "post_images" => $image_array,
435
-            "post_category" => array('gd_placecategory' => array('Attractions')),
436
-            "post_tags" => array('Museum'),
437
-            "geodir_video" => '',
438
-            "geodir_timing" => 'Open today until 10.30 a.m., Sunday 10 am to 7 pm',
439
-            "geodir_contact" => '(222) 999-9999',
440
-            "geodir_email" => '[email protected]',
441
-            "geodir_website" => 'http://museumwithoutwallsaudio.org/',
442
-            "geodir_twitter" => 'http://twitter.com/mwwalls',
443
-            "geodir_facebook" => 'http://facebook.com/mwwalls',
444
-            "post_dummy" => '1'
445
-        );
446
-
447
-        ////post end///
448
-        /// Attractions ////post start 7///
449
-
450
-        break;
451
-    case 8:
452
-
453
-        $image_array = array();
454
-        $post_meta = array();
455
-
456
-        /// Attractions ////post start 8///
457
-        $image_array[] = "$dummy_image_url/a18.jpg";
458
-        $image_array[] = "$dummy_image_url/a10.jpg";
459
-        $image_array[] = "$dummy_image_url/a3.jpg";
460
-        $image_array[] = "$dummy_image_url/a4.jpg";
461
-        $image_array[] = "$dummy_image_url/a5.jpg";
462
-        $image_array[] = "$dummy_image_url/a2.jpg";
463
-        $image_array[] = "$dummy_image_url/a7.jpg";
464
-        $image_array[] = "$dummy_image_url/a8.jpg";
465
-        $image_array[] = "$dummy_image_url/a6.jpg";
466
-        $image_array[] = "$dummy_image_url/a1.jpg";
467
-        $image_array[] = "$dummy_image_url/a9.jpg";
468
-
469
-        $post_info[] = array(
470
-            "listing_type" => 'gd_place',
471
-            "post_title" => 'Audacious Freedom',
472
-            "post_desc" => 'Audacious Freedom, the major, new exhibit at the African American Museum in Philadelphia , explores the lives of people of African descent living in Philadelphia between 1776 and 1876.
434
+			"post_images" => $image_array,
435
+			"post_category" => array('gd_placecategory' => array('Attractions')),
436
+			"post_tags" => array('Museum'),
437
+			"geodir_video" => '',
438
+			"geodir_timing" => 'Open today until 10.30 a.m., Sunday 10 am to 7 pm',
439
+			"geodir_contact" => '(222) 999-9999',
440
+			"geodir_email" => '[email protected]',
441
+			"geodir_website" => 'http://museumwithoutwallsaudio.org/',
442
+			"geodir_twitter" => 'http://twitter.com/mwwalls',
443
+			"geodir_facebook" => 'http://facebook.com/mwwalls',
444
+			"post_dummy" => '1'
445
+		);
446
+
447
+		////post end///
448
+		/// Attractions ////post start 7///
449
+
450
+		break;
451
+	case 8:
452
+
453
+		$image_array = array();
454
+		$post_meta = array();
455
+
456
+		/// Attractions ////post start 8///
457
+		$image_array[] = "$dummy_image_url/a18.jpg";
458
+		$image_array[] = "$dummy_image_url/a10.jpg";
459
+		$image_array[] = "$dummy_image_url/a3.jpg";
460
+		$image_array[] = "$dummy_image_url/a4.jpg";
461
+		$image_array[] = "$dummy_image_url/a5.jpg";
462
+		$image_array[] = "$dummy_image_url/a2.jpg";
463
+		$image_array[] = "$dummy_image_url/a7.jpg";
464
+		$image_array[] = "$dummy_image_url/a8.jpg";
465
+		$image_array[] = "$dummy_image_url/a6.jpg";
466
+		$image_array[] = "$dummy_image_url/a1.jpg";
467
+		$image_array[] = "$dummy_image_url/a9.jpg";
468
+
469
+		$post_info[] = array(
470
+			"listing_type" => 'gd_place',
471
+			"post_title" => 'Audacious Freedom',
472
+			"post_desc" => 'Audacious Freedom, the major, new exhibit at the African American Museum in Philadelphia , explores the lives of people of African descent living in Philadelphia between 1776 and 1876.
473 473
 	
474 474
 	Discover how African Americans in Philadelphia lived and worked while helping to shape the young nation in its formative stages.
475 475
 	
@@ -477,45 +477,45 @@  discard block
 block discarded – undo
477 477
 	
478 478
 	The groundbreaking exhibit allows visitors to “walk the streets” of Historic Philadelphia using a large-scale map. Young children can join the action with Children&acute;s Corner, which highlights the daily lives of children during that period.
479 479
 	',
480
-            "post_images" => $image_array,
481
-            "post_category" => array('gd_placecategory' => array('Attractions')),
482
-            "post_tags" => array('Tag1'),
483
-            "geodir_video" => '',
484
-            "geodir_timing" => 'Open today until 11.30 a.m., Sunday 1 pm to 7 pm',
485
-            "geodir_contact" => '(777) 777-7777',
486
-            "geodir_email" => '[email protected]',
487
-            "geodir_website" => 'http://www.aampmuseum.org/',
488
-            "geodir_twitter" => 'http://twitter.com/aampmuseum',
489
-            "geodir_facebook" => 'http://facebook.com/aampmuseum',
490
-            "post_dummy" => '1'
491
-        );
492
-
493
-        ////post end///
494
-        /// Attractions ////post start 8///
495
-
496
-
497
-        break;
498
-    case 9:
499
-        $image_array = array();
500
-        $post_meta = array();
501
-
502
-        /// Attractions ////post start 9///
503
-        $image_array[] = "$dummy_image_url/a19.jpg";
504
-        $image_array[] = "$dummy_image_url/a20.jpg";
505
-        $image_array[] = "$dummy_image_url/a3.jpg";
506
-        $image_array[] = "$dummy_image_url/a4.jpg";
507
-        $image_array[] = "$dummy_image_url/a5.jpg";
508
-        $image_array[] = "$dummy_image_url/a2.jpg";
509
-        $image_array[] = "$dummy_image_url/a7.jpg";
510
-        $image_array[] = "$dummy_image_url/a8.jpg";
511
-        $image_array[] = "$dummy_image_url/a6.jpg";
512
-        $image_array[] = "$dummy_image_url/a1.jpg";
513
-        $image_array[] = "$dummy_image_url/a9.jpg";
514
-
515
-        $post_info[] = array(
516
-            "listing_type" => 'gd_place',
517
-            "post_title" => 'The Liberty Bell Center',
518
-            "post_desc" => '<h3>The Experience </h3>
480
+			"post_images" => $image_array,
481
+			"post_category" => array('gd_placecategory' => array('Attractions')),
482
+			"post_tags" => array('Tag1'),
483
+			"geodir_video" => '',
484
+			"geodir_timing" => 'Open today until 11.30 a.m., Sunday 1 pm to 7 pm',
485
+			"geodir_contact" => '(777) 777-7777',
486
+			"geodir_email" => '[email protected]',
487
+			"geodir_website" => 'http://www.aampmuseum.org/',
488
+			"geodir_twitter" => 'http://twitter.com/aampmuseum',
489
+			"geodir_facebook" => 'http://facebook.com/aampmuseum',
490
+			"post_dummy" => '1'
491
+		);
492
+
493
+		////post end///
494
+		/// Attractions ////post start 8///
495
+
496
+
497
+		break;
498
+	case 9:
499
+		$image_array = array();
500
+		$post_meta = array();
501
+
502
+		/// Attractions ////post start 9///
503
+		$image_array[] = "$dummy_image_url/a19.jpg";
504
+		$image_array[] = "$dummy_image_url/a20.jpg";
505
+		$image_array[] = "$dummy_image_url/a3.jpg";
506
+		$image_array[] = "$dummy_image_url/a4.jpg";
507
+		$image_array[] = "$dummy_image_url/a5.jpg";
508
+		$image_array[] = "$dummy_image_url/a2.jpg";
509
+		$image_array[] = "$dummy_image_url/a7.jpg";
510
+		$image_array[] = "$dummy_image_url/a8.jpg";
511
+		$image_array[] = "$dummy_image_url/a6.jpg";
512
+		$image_array[] = "$dummy_image_url/a1.jpg";
513
+		$image_array[] = "$dummy_image_url/a9.jpg";
514
+
515
+		$post_info[] = array(
516
+			"listing_type" => 'gd_place',
517
+			"post_title" => 'The Liberty Bell Center',
518
+			"post_desc" => '<h3>The Experience </h3>
519 519
 	
520 520
 	The Liberty Bell has a new home, and it is as powerful and dramatic as the Bell itself. Throughout the expansive, light-filled Center, larger-than-life historic documents and graphic images explore the facts and the myths surrounding the Bell.
521 521
 	
@@ -536,45 +536,45 @@  discard block
 block discarded – undo
536 536
 	The Bell is suspended from what is believed to be its original yoke, made of American elm.
537 537
 	
538 538
 	The Liberty Bell weighs 2,080 pounds. The yoke weighs about 100 pounds.',
539
-            "post_images" => $image_array,
540
-            "post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
541
-            "post_tags" => array(''),
542
-            "geodir_video" => '',
543
-            "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
544
-            "geodir_contact" => '(777) 666-6666',
545
-            "geodir_email" => '[email protected]',
546
-            "geodir_website" => 'http://www.nps.gov/inde',
547
-            "geodir_twitter" => 'http://twitter.com/nps',
548
-            "geodir_facebook" => 'http://facebook.com/nps',
549
-            "post_dummy" => '1'
550
-        );
551
-
552
-        ////post end///
553
-        /// Attractions ////post start 9///
554
-        break;
555
-    case 10:
556
-
557
-
558
-        $image_array = array();
559
-        $post_meta = array();
560
-
561
-        /// Attractions ////post start 10///
562
-        $image_array[] = "$dummy_image_url/a19.jpg";
563
-        $image_array[] = "$dummy_image_url/a20.jpg";
564
-        $image_array[] = "$dummy_image_url/a3.jpg";
565
-        $image_array[] = "$dummy_image_url/a4.jpg";
566
-        $image_array[] = "$dummy_image_url/a5.jpg";
567
-        $image_array[] = "$dummy_image_url/a2.jpg";
568
-        $image_array[] = "$dummy_image_url/a7.jpg";
569
-        $image_array[] = "$dummy_image_url/a8.jpg";
570
-        $image_array[] = "$dummy_image_url/a6.jpg";
571
-        $image_array[] = "$dummy_image_url/a1.jpg";
572
-        $image_array[] = "$dummy_image_url/a9.jpg";
573
-
574
-        $post_info[] = array(
575
-            "listing_type" => 'gd_place',
576
-            "post_title" => 'Rittenhouse Square',
577
-            "post_desc" => '
539
+			"post_images" => $image_array,
540
+			"post_category" => array('gd_placecategory' => array('Attractions', 'Feature')),
541
+			"post_tags" => array(''),
542
+			"geodir_video" => '',
543
+			"geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
544
+			"geodir_contact" => '(777) 666-6666',
545
+			"geodir_email" => '[email protected]',
546
+			"geodir_website" => 'http://www.nps.gov/inde',
547
+			"geodir_twitter" => 'http://twitter.com/nps',
548
+			"geodir_facebook" => 'http://facebook.com/nps',
549
+			"post_dummy" => '1'
550
+		);
551
+
552
+		////post end///
553
+		/// Attractions ////post start 9///
554
+		break;
555
+	case 10:
556
+
557
+
558
+		$image_array = array();
559
+		$post_meta = array();
560
+
561
+		/// Attractions ////post start 10///
562
+		$image_array[] = "$dummy_image_url/a19.jpg";
563
+		$image_array[] = "$dummy_image_url/a20.jpg";
564
+		$image_array[] = "$dummy_image_url/a3.jpg";
565
+		$image_array[] = "$dummy_image_url/a4.jpg";
566
+		$image_array[] = "$dummy_image_url/a5.jpg";
567
+		$image_array[] = "$dummy_image_url/a2.jpg";
568
+		$image_array[] = "$dummy_image_url/a7.jpg";
569
+		$image_array[] = "$dummy_image_url/a8.jpg";
570
+		$image_array[] = "$dummy_image_url/a6.jpg";
571
+		$image_array[] = "$dummy_image_url/a1.jpg";
572
+		$image_array[] = "$dummy_image_url/a9.jpg";
573
+
574
+		$post_info[] = array(
575
+			"listing_type" => 'gd_place',
576
+			"post_title" => 'Rittenhouse Square',
577
+			"post_desc" => '
578 578
 	
579 579
 	Unlike the other squares, the early Southwest Square was never used as a burial ground, although it offered pasturage for local livestock and a convenient dumping spot for “night soil”.
580 580
 	<h3> History </h3>
@@ -607,45 +607,45 @@  discard block
 block discarded – undo
607 607
 	
608 608
 	Meanwhile, several more restaurants, bars and clubs have opened along the surrounding blocks in recent years, like Parc, Tria, Continental Midtown, Alfa, Walnut Room, and Twenty Manning just to name a few.
609 609
 	',
610
-            "post_images" => $image_array,
611
-            "post_category" => array('gd_placecategory' => array('Attractions')),
612
-            "post_tags" => array('Museum'),
613
-            "geodir_video" => '',
614
-            "geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
615
-            "geodir_contact" => '(777) 666-6666',
616
-            "geodir_email" => '[email protected]',
617
-            "geodir_website" => 'http://www.fairmountpark.org/rittenhousesquare.asp',
618
-            "geodir_twitter" => 'http://twitter.com/fairmountpark',
619
-            "geodir_facebook" => 'http://facebook.com/fairmountpark',
620
-            "post_dummy" => '1'
621
-        );
622
-
623
-        ////post end///
624
-        /// Attractions ////post start 10///
625
-        break;
626
-    case 11:
627
-
628
-
629
-        $image_array = array();
630
-        $post_meta = array();
631
-
632
-        /// Hotels ////post start 1///
633
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
634
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
635
-        $image_array[] = "$dummy_image_url/hotels3.jpg";
636
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
637
-        $image_array[] = "$dummy_image_url/hotels5.jpg";
638
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
639
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
640
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
641
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
642
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
643
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
644
-
645
-        $post_info[] = array(
646
-            "listing_type" => 'gd_place',
647
-            "post_title" => 'Loews Philadelphia Hotel',
648
-            "post_desc" => '
610
+			"post_images" => $image_array,
611
+			"post_category" => array('gd_placecategory' => array('Attractions')),
612
+			"post_tags" => array('Museum'),
613
+			"geodir_video" => '',
614
+			"geodir_timing" => 'The center is open year round, 9 a.m. – 5 p.m., with extended hours in the summer.',
615
+			"geodir_contact" => '(777) 666-6666',
616
+			"geodir_email" => '[email protected]',
617
+			"geodir_website" => 'http://www.fairmountpark.org/rittenhousesquare.asp',
618
+			"geodir_twitter" => 'http://twitter.com/fairmountpark',
619
+			"geodir_facebook" => 'http://facebook.com/fairmountpark',
620
+			"post_dummy" => '1'
621
+		);
622
+
623
+		////post end///
624
+		/// Attractions ////post start 10///
625
+		break;
626
+	case 11:
627
+
628
+
629
+		$image_array = array();
630
+		$post_meta = array();
631
+
632
+		/// Hotels ////post start 1///
633
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
634
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
635
+		$image_array[] = "$dummy_image_url/hotels3.jpg";
636
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
637
+		$image_array[] = "$dummy_image_url/hotels5.jpg";
638
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
639
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
640
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
641
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
642
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
643
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
644
+
645
+		$post_info[] = array(
646
+			"listing_type" => 'gd_place',
647
+			"post_title" => 'Loews Philadelphia Hotel',
648
+			"post_desc" => '
649 649
 	
650 650
 	<h3>OVERVIEW </h3>
651 651
 	
@@ -712,45 +712,45 @@  discard block
 block discarded – undo
712 712
 	
713 713
 	SoleFood Restaurant is proud to be serving Starbucks. Come in and enjoy a fresh cup of coffee during your morning rush. The Coffee Bar also offer small breakfast items for your enjoyment.
714 714
 	',
715
-            "post_images" => $image_array,
716
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
717
-            "post_tags" => array(''),
718
-            "geodir_video" => '',
719
-            "geodir_timing" => 'Daily, 6:30 am – 12:00 pm',
720
-            "geodir_contact" => '(111) 111-0000',
721
-            "geodir_email" => '[email protected]',
722
-            "geodir_website" => 'http://www.loewshotels.com/en/hotels/philadelphia-hotel/overview.aspx',
723
-            "geodir_twitter" => 'http://twitter.com/loewshotels',
724
-            "geodir_facebook" => 'http://facebook.com/loewshotels',
725
-            "post_dummy" => '1'
726
-        );
727
-
728
-        ////post end///
729
-        /// Hotels ////post start 1///
730
-        break;
731
-    case 12:
732
-
733
-
734
-        $image_array = array();
735
-        $post_meta = array();
736
-
737
-        /// Hotels ////post start 2///
738
-        $image_array[] = "$dummy_image_url/hotels5.jpg";
739
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
740
-        $image_array[] = "$dummy_image_url/hotels3.jpg";
741
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
742
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
743
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
744
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
745
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
746
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
747
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
748
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
749
-
750
-        $post_info[] = array(
751
-            "listing_type" => 'gd_place',
752
-            "post_title" => 'Embassy Suites Philadelphia',
753
-            "post_desc" => '
715
+			"post_images" => $image_array,
716
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
717
+			"post_tags" => array(''),
718
+			"geodir_video" => '',
719
+			"geodir_timing" => 'Daily, 6:30 am – 12:00 pm',
720
+			"geodir_contact" => '(111) 111-0000',
721
+			"geodir_email" => '[email protected]',
722
+			"geodir_website" => 'http://www.loewshotels.com/en/hotels/philadelphia-hotel/overview.aspx',
723
+			"geodir_twitter" => 'http://twitter.com/loewshotels',
724
+			"geodir_facebook" => 'http://facebook.com/loewshotels',
725
+			"post_dummy" => '1'
726
+		);
727
+
728
+		////post end///
729
+		/// Hotels ////post start 1///
730
+		break;
731
+	case 12:
732
+
733
+
734
+		$image_array = array();
735
+		$post_meta = array();
736
+
737
+		/// Hotels ////post start 2///
738
+		$image_array[] = "$dummy_image_url/hotels5.jpg";
739
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
740
+		$image_array[] = "$dummy_image_url/hotels3.jpg";
741
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
742
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
743
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
744
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
745
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
746
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
747
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
748
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
749
+
750
+		$post_info[] = array(
751
+			"listing_type" => 'gd_place',
752
+			"post_title" => 'Embassy Suites Philadelphia',
753
+			"post_desc" => '
754 754
 	The newly renovated Embassy Suites Philadelphia – Center City hotel is conveniently situated in the heart of downtown Philadelphia, Pennsylvania and Philadelphia&acute;s Center City business district. This hotel in Philadelphia is located only eight miles from Philadelphia International Airport and just minutes from top Philadelphia attractions, including:
755 755
 	
756 756
 	Philadelphia Museum of Art
@@ -766,45 +766,45 @@  discard block
 block discarded – undo
766 766
 	
767 767
 	A delicious, complimentary cooked-to-order breakfast is offered each morning, and a hotel Manager&acute;s Reception every night – featuring complimentary refreshments and great company.
768 768
 	',
769
-            "post_images" => $image_array,
770
-            "post_category" => array('gd_placecategory' => array('Hotels')),
771
-            "post_tags" => array(''),
772
-            "geodir_video" => '',
773
-            "geodir_timing" => 'Daily, 10:30 am – 10 pm',
774
-            "geodir_contact" => '(111) 111-0000',
775
-            "geodir_email" => '[email protected]',
776
-            "geodir_website" => 'http://embassysuites1.hilton.com/en_US/es/hotel/PHLDTES-Embassy-Suites-Philadelphia-Center-City-Pennsylvania/index.do',
777
-            "geodir_twitter" => 'http://twitter.com/embassysuites1',
778
-            "geodir_facebook" => 'http://facebook.com/embassysuites1',
779
-            "post_dummy" => '1'
780
-        );
781
-
782
-        ////post end///
783
-        /// Hotels ////post start 2///
784
-
785
-        break;
786
-    case 13:
787
-
788
-        $image_array = array();
789
-        $post_meta = array();
790
-
791
-        /// Hotels ////post start 3///
792
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
793
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
794
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
795
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
796
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
797
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
798
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
799
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
800
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
801
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
802
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
803
-
804
-        $post_info[] = array(
805
-            "listing_type" => 'gd_place',
806
-            "post_title" => 'Doubletree Hotel Philadelphia',
807
-            "post_desc" => '
769
+			"post_images" => $image_array,
770
+			"post_category" => array('gd_placecategory' => array('Hotels')),
771
+			"post_tags" => array(''),
772
+			"geodir_video" => '',
773
+			"geodir_timing" => 'Daily, 10:30 am – 10 pm',
774
+			"geodir_contact" => '(111) 111-0000',
775
+			"geodir_email" => '[email protected]',
776
+			"geodir_website" => 'http://embassysuites1.hilton.com/en_US/es/hotel/PHLDTES-Embassy-Suites-Philadelphia-Center-City-Pennsylvania/index.do',
777
+			"geodir_twitter" => 'http://twitter.com/embassysuites1',
778
+			"geodir_facebook" => 'http://facebook.com/embassysuites1',
779
+			"post_dummy" => '1'
780
+		);
781
+
782
+		////post end///
783
+		/// Hotels ////post start 2///
784
+
785
+		break;
786
+	case 13:
787
+
788
+		$image_array = array();
789
+		$post_meta = array();
790
+
791
+		/// Hotels ////post start 3///
792
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
793
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
794
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
795
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
796
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
797
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
798
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
799
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
800
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
801
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
802
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
803
+
804
+		$post_info[] = array(
805
+			"listing_type" => 'gd_place',
806
+			"post_title" => 'Doubletree Hotel Philadelphia',
807
+			"post_desc" => '
808 808
 	With 434 rooms, the Doubletree Hotel is a great option for your upcoming stay in Philadelphia.
809 809
 	
810 810
 	<h3>Location </h3>
@@ -834,47 +834,47 @@  discard block
 block discarded – undo
834 834
 	Stop in the restaurant - which serves lunch and dinner daily - for a drink and some light fare. With its location right on Broad Street, you&acute;re close to everything you could ever want in a night on the town.
835 835
 	',
836 836
 
837
-            "post_images" => $image_array,
838
-
839
-            "post_category" => array('gd_placecategory' => array('Hotels')),
840
-            "post_tags" => array(''),
841
-            "geodir_video" => '',
842
-            "geodir_timing" => 'Daily, 10:30 am – 10 pm',
843
-            "geodir_contact" => '(111) 111-0000',
844
-            "geodir_email" => '[email protected]',
845
-            "geodir_website" => 'http://doubletree1.hilton.com/en_US/dt/hotel/PHLBLDT-Doubletree-Hotel-Philadelphia-Pennsylvania/index.do',
846
-            "geodir_twitter" => 'http://twitter.com/doubletree1',
847
-            "geodir_facebook" => 'http://facebook.com/doubletree1',
848
-            "post_dummy" => '1'
849
-        );
850
-
851
-        ////post end///
852
-        /// Hotels ////post start 3///
853
-
854
-        break;
855
-    case 14:
856
-
857
-
858
-        $image_array = array();
859
-        $post_meta = array();
860
-
861
-        /// Hotels ////post start 4///
862
-        $image_array[] = "$dummy_image_url/hotels15.jpg";
863
-        $image_array[] = "$dummy_image_url/hotels16.jpg";
864
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
865
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
866
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
867
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
868
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
869
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
870
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
871
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
872
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
873
-
874
-        $post_info[] = array(
875
-            "listing_type" => 'gd_place',
876
-            "post_title" => 'Philadelphia Marriott Downtown',
877
-            "post_desc" => '
837
+			"post_images" => $image_array,
838
+
839
+			"post_category" => array('gd_placecategory' => array('Hotels')),
840
+			"post_tags" => array(''),
841
+			"geodir_video" => '',
842
+			"geodir_timing" => 'Daily, 10:30 am – 10 pm',
843
+			"geodir_contact" => '(111) 111-0000',
844
+			"geodir_email" => '[email protected]',
845
+			"geodir_website" => 'http://doubletree1.hilton.com/en_US/dt/hotel/PHLBLDT-Doubletree-Hotel-Philadelphia-Pennsylvania/index.do',
846
+			"geodir_twitter" => 'http://twitter.com/doubletree1',
847
+			"geodir_facebook" => 'http://facebook.com/doubletree1',
848
+			"post_dummy" => '1'
849
+		);
850
+
851
+		////post end///
852
+		/// Hotels ////post start 3///
853
+
854
+		break;
855
+	case 14:
856
+
857
+
858
+		$image_array = array();
859
+		$post_meta = array();
860
+
861
+		/// Hotels ////post start 4///
862
+		$image_array[] = "$dummy_image_url/hotels15.jpg";
863
+		$image_array[] = "$dummy_image_url/hotels16.jpg";
864
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
865
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
866
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
867
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
868
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
869
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
870
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
871
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
872
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
873
+
874
+		$post_info[] = array(
875
+			"listing_type" => 'gd_place',
876
+			"post_title" => 'Philadelphia Marriott Downtown',
877
+			"post_desc" => '
878 878
 	Get ready to stay and play at the new aloft Philadelphia Airport!
879 879
 	
880 880
 	This incredibly modern hotel is located just five minutes from Philadelphia International Airport, offering a great convenience to travelers looking for fresh and fun accommodations.
@@ -901,45 +901,45 @@  discard block
 block discarded – undo
901 901
 	
902 902
 	Aahh…breathe deep at Aloft. This hotel is smoke-free.
903 903
 	',
904
-            "post_images" => $image_array,
905
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
906
-            "post_tags" => array(''),
907
-            "geodir_video" => '',
908
-            "geodir_timing" => '24 Hours',
909
-            "geodir_contact" => '(123) 111-2222',
910
-            "geodir_email" => '[email protected]',
911
-            "geodir_website" => 'http://www.marriott.com/hotels/travel/phldt-philadelphia-marriott-downtown/',
912
-            "geodir_twitter" => 'http://twitter.com/marriott',
913
-            "geodir_facebook" => 'http://facebook.com/marriott',
914
-            "post_dummy" => '1'
915
-        );
916
-
917
-        ////post end///
918
-        /// Hotels ////post start 4///
919
-        break;
920
-    case 15:
921
-
922
-
923
-        $image_array = array();
924
-        $post_meta = array();
925
-
926
-        /// Hotels ////post start 5///
927
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
928
-        $image_array[] = "$dummy_image_url/hotels16.jpg";
929
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
930
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
931
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
932
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
933
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
934
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
935
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
936
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
937
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
938
-
939
-        $post_info[] = array(
940
-            "listing_type" => 'gd_place',
941
-            "post_title" => 'Hilton Inn at Penn',
942
-            "post_desc" => '
904
+			"post_images" => $image_array,
905
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
906
+			"post_tags" => array(''),
907
+			"geodir_video" => '',
908
+			"geodir_timing" => '24 Hours',
909
+			"geodir_contact" => '(123) 111-2222',
910
+			"geodir_email" => '[email protected]',
911
+			"geodir_website" => 'http://www.marriott.com/hotels/travel/phldt-philadelphia-marriott-downtown/',
912
+			"geodir_twitter" => 'http://twitter.com/marriott',
913
+			"geodir_facebook" => 'http://facebook.com/marriott',
914
+			"post_dummy" => '1'
915
+		);
916
+
917
+		////post end///
918
+		/// Hotels ////post start 4///
919
+		break;
920
+	case 15:
921
+
922
+
923
+		$image_array = array();
924
+		$post_meta = array();
925
+
926
+		/// Hotels ////post start 5///
927
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
928
+		$image_array[] = "$dummy_image_url/hotels16.jpg";
929
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
930
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
931
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
932
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
933
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
934
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
935
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
936
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
937
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
938
+
939
+		$post_info[] = array(
940
+			"listing_type" => 'gd_place',
941
+			"post_title" => 'Hilton Inn at Penn',
942
+			"post_desc" => '
943 943
 	Located in the heart of Penn&acute;s campus in the beautiful University City neighborhood of Philadelphia, The Hilton Inn at Penn is a great choice for accommodations during your upcoming visit to Philadelphia.
944 944
 	
945 945
 	The location puts you right in the middle of the prestigious University of Pennsylvania and its many nearby educational, medical and corporate centers. And Center City Philadelphia is only a short cab ride away. So if you want to get out and explore the city, you are set.
@@ -955,45 +955,45 @@  discard block
 block discarded – undo
955 955
 	
956 956
 	The pasta is handmade right in front of you and then dished up along side delectable entrées such as grilled veal tenderloin and honey glazed sea scallops. And the wine bar offers more than 30 varieties by the glass and more than 100 by the bottle.  
957 957
 	',
958
-            "post_images" => $image_array,
959
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
960
-            "post_tags" => array(''),
961
-            "geodir_video" => '',
962
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
963
-            "geodir_contact" => '(888) 888-8888',
964
-            "geodir_email" => '[email protected]',
965
-            "geodir_website" => 'http://www.theinnatpenn.com/',
966
-            "geodir_twitter" => 'http://twitter.com/theinnatpenn',
967
-            "geodir_facebook" => 'http://facebook.com/theinnatpenn',
968
-            "post_dummy" => '1'
969
-        );
970
-
971
-        ////post end///
972
-        /// Hotels ////post start 5///
973
-        break;
974
-    case 16:
975
-
976
-
977
-        $image_array = array();
978
-        $post_meta = array();
979
-
980
-        /// Hotels ////post start 6///
981
-        $image_array[] = "$dummy_image_url/hotels17.jpg";
982
-        $image_array[] = "$dummy_image_url/hotels18.jpg";
983
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
984
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
985
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
986
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
987
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
988
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
989
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
990
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
991
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
992
-
993
-        $post_info[] = array(
994
-            "listing_type" => 'gd_place',
995
-            "post_title" => 'Courtyard Philadelphia Downtown',
996
-            "post_desc" => '
958
+			"post_images" => $image_array,
959
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
960
+			"post_tags" => array(''),
961
+			"geodir_video" => '',
962
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
963
+			"geodir_contact" => '(888) 888-8888',
964
+			"geodir_email" => '[email protected]',
965
+			"geodir_website" => 'http://www.theinnatpenn.com/',
966
+			"geodir_twitter" => 'http://twitter.com/theinnatpenn',
967
+			"geodir_facebook" => 'http://facebook.com/theinnatpenn',
968
+			"post_dummy" => '1'
969
+		);
970
+
971
+		////post end///
972
+		/// Hotels ////post start 5///
973
+		break;
974
+	case 16:
975
+
976
+
977
+		$image_array = array();
978
+		$post_meta = array();
979
+
980
+		/// Hotels ////post start 6///
981
+		$image_array[] = "$dummy_image_url/hotels17.jpg";
982
+		$image_array[] = "$dummy_image_url/hotels18.jpg";
983
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
984
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
985
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
986
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
987
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
988
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
989
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
990
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
991
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
992
+
993
+		$post_info[] = array(
994
+			"listing_type" => 'gd_place',
995
+			"post_title" => 'Courtyard Philadelphia Downtown',
996
+			"post_desc" => '
997 997
 	<h3>Overview </h3>
998 998
 	
999 999
 	The Philadelphia Downtown Courtyard opened it&acute;s doors after a grand $75 million restoration, recapturing the grandeur of its 1926 origins while incorporating state of the art systems throughout.
@@ -1023,45 +1023,45 @@  discard block
 block discarded – undo
1023 1023
 	
1024 1024
 	Recently featured on WE TV&acute;s “My Fair Wedding”, the Courtyard Marriott Philadelphia is one of the city&acute;s leading venues for corporate and social affairs with over 10,000 sq ft of flexible meeting space, including two Grand Ballrooms each with over 3,000 square feet accommodating up to 250 people. In addition, the hotel has a total of 11 meeting rooms making it an ideal home for all occasions. The hotel boasts an experienced full-service Event and Culinary Teams, ready to take care of all the details and ensure your event is not only a success, but a lasting memory. 
1025 1025
 	',
1026
-            "post_images" => $image_array,
1027
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1028
-            "post_tags" => array(''),
1029
-            "geodir_video" => '',
1030
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
1031
-            "geodir_contact" => '(888) 888-8888',
1032
-            "geodir_email" => '[email protected]',
1033
-            "geodir_website" => 'http://www.theinnatpenn.com/',
1034
-            "geodir_twitter" => 'http://twitter.com/theinnatpenn',
1035
-            "geodir_facebook" => 'http://facebook.com/theinnatpenn',
1036
-            "post_dummy" => '1'
1037
-        );
1038
-
1039
-        ////post end///
1040
-        /// Hotels ////post start 6///
1041
-
1042
-        break;
1043
-    case 17:
1044
-
1045
-        $image_array = array();
1046
-        $post_meta = array();
1047
-
1048
-        /// Hotels ////post start 7///
1049
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
1050
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1051
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1052
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1053
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1054
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1055
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1056
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1057
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1058
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1059
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1060
-
1061
-        $post_info[] = array(
1062
-            "listing_type" => 'gd_place',
1063
-            "post_title" => 'Four Seasons Philadelphia',
1064
-            "post_desc" => '
1026
+			"post_images" => $image_array,
1027
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1028
+			"post_tags" => array(''),
1029
+			"geodir_video" => '',
1030
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
1031
+			"geodir_contact" => '(888) 888-8888',
1032
+			"geodir_email" => '[email protected]',
1033
+			"geodir_website" => 'http://www.theinnatpenn.com/',
1034
+			"geodir_twitter" => 'http://twitter.com/theinnatpenn',
1035
+			"geodir_facebook" => 'http://facebook.com/theinnatpenn',
1036
+			"post_dummy" => '1'
1037
+		);
1038
+
1039
+		////post end///
1040
+		/// Hotels ////post start 6///
1041
+
1042
+		break;
1043
+	case 17:
1044
+
1045
+		$image_array = array();
1046
+		$post_meta = array();
1047
+
1048
+		/// Hotels ////post start 7///
1049
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
1050
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1051
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1052
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1053
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1054
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1055
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1056
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1057
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1058
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1059
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1060
+
1061
+		$post_info[] = array(
1062
+			"listing_type" => 'gd_place',
1063
+			"post_title" => 'Four Seasons Philadelphia',
1064
+			"post_desc" => '
1065 1065
 	<h3>Overview </h3>
1066 1066
 	
1067 1067
 	The Philadelphia Downtown Courtyard opened it&acute;s doors after a grand $75 million restoration, recapturing the grandeur of its 1926 origins while incorporating state of the art systems throughout.
@@ -1091,45 +1091,45 @@  discard block
 block discarded – undo
1091 1091
 	
1092 1092
 	Recently featured on WE TV&acute;s “My Fair Wedding”, the Courtyard Marriott Philadelphia is one of the city&acute;s leading venues for corporate and social affairs with over 10,000 sq ft of flexible meeting space, including two Grand Ballrooms each with over 3,000 square feet accommodating up to 250 people. In addition, the hotel has a total of 11 meeting rooms making it an ideal home for all occasions. The hotel boasts an experienced full-service Event and Culinary Teams, ready to take care of all the details and ensure your event is not only a success, but a lasting memory. 
1093 1093
 	',
1094
-            "post_images" => $image_array,
1095
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1096
-            "post_tags" => array(''),
1097
-            "geodir_video" => '',
1098
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
1099
-            "geodir_contact" => '(143) 888-8888',
1100
-            "geodir_email" => '[email protected]',
1101
-            "geodir_website" => 'http://www.fourseasons.com/philadelphia/',
1102
-            "geodir_twitter" => 'http://twitter.com/fourseasons',
1103
-            "geodir_facebook" => 'http://facebook.com/fourseasons',
1104
-            "post_dummy" => '1'
1105
-        );
1106
-
1107
-        ////post end///
1108
-        /// Hotels ////post start 7///
1109
-        break;
1110
-    case 18:
1111
-
1112
-
1113
-        $image_array = array();
1114
-        $post_meta = array();
1115
-
1116
-        /// Hotels ////post start 8///
1117
-        $image_array[] = "$dummy_image_url/hotels11.jpg";
1118
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1119
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1120
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1121
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1122
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1123
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1124
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1125
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1126
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1127
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1128
-
1129
-        $post_info[] = array(
1130
-            "listing_type" => 'gd_place',
1131
-            "post_title" => 'Alexander Inn',
1132
-            "post_desc" => '
1094
+			"post_images" => $image_array,
1095
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1096
+			"post_tags" => array(''),
1097
+			"geodir_video" => '',
1098
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
1099
+			"geodir_contact" => '(143) 888-8888',
1100
+			"geodir_email" => '[email protected]',
1101
+			"geodir_website" => 'http://www.fourseasons.com/philadelphia/',
1102
+			"geodir_twitter" => 'http://twitter.com/fourseasons',
1103
+			"geodir_facebook" => 'http://facebook.com/fourseasons',
1104
+			"post_dummy" => '1'
1105
+		);
1106
+
1107
+		////post end///
1108
+		/// Hotels ////post start 7///
1109
+		break;
1110
+	case 18:
1111
+
1112
+
1113
+		$image_array = array();
1114
+		$post_meta = array();
1115
+
1116
+		/// Hotels ////post start 8///
1117
+		$image_array[] = "$dummy_image_url/hotels11.jpg";
1118
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1119
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1120
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1121
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1122
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1123
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1124
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1125
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1126
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1127
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1128
+
1129
+		$post_info[] = array(
1130
+			"listing_type" => 'gd_place',
1131
+			"post_title" => 'Alexander Inn',
1132
+			"post_desc" => '
1133 1133
 	The Alexander Inn is one of Philadelphia&acute;s most popular and reasonably priced small hotels.
1134 1134
 	
1135 1135
 	Conveniently located in the heart of the Washington Square West neighborhood in Center City Philadelphia, the Alexander Inn is a great place to base your stay in Philadelphia.
@@ -1138,45 +1138,45 @@  discard block
 block discarded – undo
1138 1138
 	
1139 1139
 	Rooms are also fitted with DirecTV (including many complimentary channels like CNN, ESPN, eight movie channels, etc.) and telephones with modem ports and direct dial. You will also have access to the hotel&acute;s free 24-hour fitness and e-mail centers.  
1140 1140
 	',
1141
-            "post_images" => $image_array,
1142
-            "post_category" => array('gd_placecategory' => array('Hotels')),
1143
-            "post_tags" => array(''),
1144
-            "geodir_video" => '',
1145
-            "geodir_timing" => 'Daily : 11 am to 11 pm',
1146
-            "geodir_contact" => '(143) 888-8888',
1147
-            "geodir_email" => '[email protected]',
1148
-            "geodir_website" => 'http://www.alexanderinn.com/',
1149
-            "geodir_twitter" => 'http://twitter.com/alexanderinn',
1150
-            "geodir_facebook" => 'http://facebook.com/alexanderinn',
1151
-            "post_dummy" => '1'
1152
-        );
1153
-
1154
-        ////post end///
1155
-        /// Hotels ////post start 8///
1156
-        break;
1157
-    case 19:
1158
-
1159
-
1160
-        $image_array = array();
1161
-        $post_meta = array();
1162
-
1163
-        /// Hotels ////post start 9///
1164
-        $image_array[] = "$dummy_image_url/hotels5.jpg";
1165
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1166
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1167
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1168
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1169
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1170
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1171
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1172
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1173
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1174
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1175
-
1176
-        $post_info[] = array(
1177
-            "listing_type" => 'gd_place',
1178
-            "post_title" => 'Best Western Center City Hotel',
1179
-            "post_desc" => '
1141
+			"post_images" => $image_array,
1142
+			"post_category" => array('gd_placecategory' => array('Hotels')),
1143
+			"post_tags" => array(''),
1144
+			"geodir_video" => '',
1145
+			"geodir_timing" => 'Daily : 11 am to 11 pm',
1146
+			"geodir_contact" => '(143) 888-8888',
1147
+			"geodir_email" => '[email protected]',
1148
+			"geodir_website" => 'http://www.alexanderinn.com/',
1149
+			"geodir_twitter" => 'http://twitter.com/alexanderinn',
1150
+			"geodir_facebook" => 'http://facebook.com/alexanderinn',
1151
+			"post_dummy" => '1'
1152
+		);
1153
+
1154
+		////post end///
1155
+		/// Hotels ////post start 8///
1156
+		break;
1157
+	case 19:
1158
+
1159
+
1160
+		$image_array = array();
1161
+		$post_meta = array();
1162
+
1163
+		/// Hotels ////post start 9///
1164
+		$image_array[] = "$dummy_image_url/hotels5.jpg";
1165
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1166
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1167
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1168
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1169
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1170
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1171
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1172
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1173
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1174
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1175
+
1176
+		$post_info[] = array(
1177
+			"listing_type" => 'gd_place',
1178
+			"post_title" => 'Best Western Center City Hotel',
1179
+			"post_desc" => '
1180 1180
 	The Alexander Inn is one of Philadelphia&acute;s most popular and reasonably priced small hotels.
1181 1181
 	
1182 1182
 	Conveniently located in the heart of the Washington Square West neighborhood in Center City Philadelphia, the Alexander Inn is a great place to base your stay in Philadelphia.
@@ -1185,91 +1185,91 @@  discard block
 block discarded – undo
1185 1185
 	
1186 1186
 	Rooms are also fitted with DirecTV (including many complimentary channels like CNN, ESPN, eight movie channels, etc.) and telephones with modem ports and direct dial. You will also have access to the hotel&acute;s free 24-hour fitness and e-mail centers.  
1187 1187
 	',
1188
-            "post_images" => $image_array,
1189
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1190
-            "post_tags" => array(''),
1191
-            "geodir_video" => '',
1192
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1193
-            "geodir_contact" => '(243) 222-12344',
1194
-            "geodir_email" => '[email protected]',
1195
-            "geodir_website" => 'http://book.bestwestern.com/bestwestern/productInfo.do?propertyCode=39087',
1196
-            "geodir_twitter" => 'http://twitter.com/bestwestern',
1197
-            "geodir_facebook" => 'http://facebook.com/bestwestern',
1198
-            "post_dummy" => '1'
1199
-        );
1200
-
1201
-        ////post end///
1202
-        /// Hotels ////post start 9///
1203
-        break;
1204
-    case 20:
1205
-
1206
-
1207
-        $image_array = array();
1208
-        $post_meta = array();
1209
-
1210
-        /// Hotels ////post start 10///
1211
-        $image_array[] = "$dummy_image_url/hotels7.jpg";
1212
-        $image_array[] = "$dummy_image_url/hotels10.jpg";
1213
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1214
-        $image_array[] = "$dummy_image_url/hotels4.jpg";
1215
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1216
-        $image_array[] = "$dummy_image_url/hotels6.jpg";
1217
-        $image_array[] = "$dummy_image_url/hotels12.jpg";
1218
-        $image_array[] = "$dummy_image_url/hotels8.jpg";
1219
-        $image_array[] = "$dummy_image_url/hotels9.jpg";
1220
-        $image_array[] = "$dummy_image_url/hotels1.jpg";
1221
-        $image_array[] = "$dummy_image_url/hotels2.jpg";
1222
-
1223
-        $post_info[] = array(
1224
-            "listing_type" => 'gd_place',
1225
-            "post_title" => 'Chestnut Hill Hotel',
1226
-            "post_desc" => '
1188
+			"post_images" => $image_array,
1189
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Food Nightlife')),
1190
+			"post_tags" => array(''),
1191
+			"geodir_video" => '',
1192
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1193
+			"geodir_contact" => '(243) 222-12344',
1194
+			"geodir_email" => '[email protected]',
1195
+			"geodir_website" => 'http://book.bestwestern.com/bestwestern/productInfo.do?propertyCode=39087',
1196
+			"geodir_twitter" => 'http://twitter.com/bestwestern',
1197
+			"geodir_facebook" => 'http://facebook.com/bestwestern',
1198
+			"post_dummy" => '1'
1199
+		);
1200
+
1201
+		////post end///
1202
+		/// Hotels ////post start 9///
1203
+		break;
1204
+	case 20:
1205
+
1206
+
1207
+		$image_array = array();
1208
+		$post_meta = array();
1209
+
1210
+		/// Hotels ////post start 10///
1211
+		$image_array[] = "$dummy_image_url/hotels7.jpg";
1212
+		$image_array[] = "$dummy_image_url/hotels10.jpg";
1213
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1214
+		$image_array[] = "$dummy_image_url/hotels4.jpg";
1215
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1216
+		$image_array[] = "$dummy_image_url/hotels6.jpg";
1217
+		$image_array[] = "$dummy_image_url/hotels12.jpg";
1218
+		$image_array[] = "$dummy_image_url/hotels8.jpg";
1219
+		$image_array[] = "$dummy_image_url/hotels9.jpg";
1220
+		$image_array[] = "$dummy_image_url/hotels1.jpg";
1221
+		$image_array[] = "$dummy_image_url/hotels2.jpg";
1222
+
1223
+		$post_info[] = array(
1224
+			"listing_type" => 'gd_place',
1225
+			"post_title" => 'Chestnut Hill Hotel',
1226
+			"post_desc" => '
1227 1227
 	The Chestnut Hill Hotel is located in the historic community of Chestnut Hill, approximately nine miles northwest from Center City Philadelphia. Although Chestnut Hill is close to Center City by today&acute;s standards, it was originally a distant “suburb” on the outskirts of the Philadelphia countryside.
1228 1228
 	
1229 1229
 	Today, it is one of the region&acute;s most charming neighborhoods. Tree-lined streets and grand estates surround its main street, Germantown Avenue, where you can stroll and shop at more than 200 specialty shops and restaurants, along with trendy salons and other modern boutiques.
1230 1230
 	
1231 1231
 	The Chestnut Hill Hotel fits perfectly in this setting - the hotel&acute;s 36 rooms and suites, decorated in an 18th-century style, hold the hotel to its boutique roots. It&acute;s a perfect place at which to enjoy a romantic getaway in Philadelphia. 
1232 1232
 	',
1233
-            "post_images" => $image_array,
1234
-            "post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
1235
-            "post_tags" => array(''),
1236
-            "geodir_video" => '',
1237
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1238
-            "geodir_contact" => '(243) 222-12344',
1239
-            "geodir_email" => '[email protected]',
1240
-            "geodir_website" => 'http://www.chestnuthillhotel.com/',
1241
-            "geodir_twitter" => 'http://twitter.com/chestnuthillhotel',
1242
-            "geodir_facebook" => 'http://facebook.com/chestnuthillhotel',
1243
-            "post_dummy" => '1'
1244
-        );
1245
-
1246
-        ////post end///
1247
-        /// Hotels ////post start 10///
1248
-
1249
-        break;
1250
-    case 21:
1251
-
1252
-
1253
-        $image_array = array();
1254
-        $post_meta = array();
1255
-
1256
-        /// Restaurants ////post start 1//
1257
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1258
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1259
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1260
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1261
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1262
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1263
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1264
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1265
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1266
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1267
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1268
-
1269
-        $post_info[] = array(
1270
-            "listing_type" => 'gd_place',
1271
-            "post_title" => 'Village Whiskey',
1272
-            "post_desc" => '
1233
+			"post_images" => $image_array,
1234
+			"post_category" => array('gd_placecategory' => array('Hotels', 'Feature')),
1235
+			"post_tags" => array(''),
1236
+			"geodir_video" => '',
1237
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1238
+			"geodir_contact" => '(243) 222-12344',
1239
+			"geodir_email" => '[email protected]',
1240
+			"geodir_website" => 'http://www.chestnuthillhotel.com/',
1241
+			"geodir_twitter" => 'http://twitter.com/chestnuthillhotel',
1242
+			"geodir_facebook" => 'http://facebook.com/chestnuthillhotel',
1243
+			"post_dummy" => '1'
1244
+		);
1245
+
1246
+		////post end///
1247
+		/// Hotels ////post start 10///
1248
+
1249
+		break;
1250
+	case 21:
1251
+
1252
+
1253
+		$image_array = array();
1254
+		$post_meta = array();
1255
+
1256
+		/// Restaurants ////post start 1//
1257
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1258
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1259
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1260
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1261
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1262
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1263
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1264
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1265
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1266
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1267
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1268
+
1269
+		$post_info[] = array(
1270
+			"listing_type" => 'gd_place',
1271
+			"post_title" => 'Village Whiskey',
1272
+			"post_desc" => '
1273 1273
 	
1274 1274
 	
1275 1275
 	Located in a Rittenhouse Square space evoking the free-wheeling spirit of a speakeasy, Village Whiskey is prolific Chef Jose Garces’ intimate, 30-seat tribute to the time-honored liquor.
@@ -1295,45 +1295,45 @@  discard block
 block discarded – undo
1295 1295
 	
1296 1296
 	During the warmer months, diners can sit at large, wooden tables placed along Sansom Street for whiskey alfresco.
1297 1297
 	',
1298
-            "post_images" => $image_array,
1299
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1300
-            "post_tags" => array('Sample Tag1'),
1301
-            "geodir_video" => '',
1302
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1303
-            "geodir_contact" => '(243) 222-12344',
1304
-            "geodir_email" => '[email protected]',
1305
-            "geodir_website" => 'http://www.villagewhiskey.com/',
1306
-            "geodir_twitter" => 'http://twitter.com/villagewhiskey',
1307
-            "geodir_facebook" => 'http://facebook.com/villagewhiskey',
1308
-            "post_dummy" => '1'
1309
-        );
1310
-
1311
-        ////post end///
1312
-        /// Restaurants ////post start 1///
1313
-        break;
1314
-    case 22:
1315
-
1316
-
1317
-        $image_array = array();
1318
-        $post_meta = array();
1319
-
1320
-        /// Restaurants ////post start 2//
1321
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1322
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1323
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1324
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1325
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1326
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1327
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1328
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1329
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1330
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1331
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1332
-
1333
-        $post_info[] = array(
1334
-            "listing_type" => 'gd_place',
1335
-            "post_title" => 'Zavino Pizzeria and Wine Bar',
1336
-            "post_desc" => '
1298
+			"post_images" => $image_array,
1299
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1300
+			"post_tags" => array('Sample Tag1'),
1301
+			"geodir_video" => '',
1302
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1303
+			"geodir_contact" => '(243) 222-12344',
1304
+			"geodir_email" => '[email protected]',
1305
+			"geodir_website" => 'http://www.villagewhiskey.com/',
1306
+			"geodir_twitter" => 'http://twitter.com/villagewhiskey',
1307
+			"geodir_facebook" => 'http://facebook.com/villagewhiskey',
1308
+			"post_dummy" => '1'
1309
+		);
1310
+
1311
+		////post end///
1312
+		/// Restaurants ////post start 1///
1313
+		break;
1314
+	case 22:
1315
+
1316
+
1317
+		$image_array = array();
1318
+		$post_meta = array();
1319
+
1320
+		/// Restaurants ////post start 2//
1321
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1322
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1323
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1324
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1325
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1326
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1327
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1328
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1329
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1330
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1331
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1332
+
1333
+		$post_info[] = array(
1334
+			"listing_type" => 'gd_place',
1335
+			"post_title" => 'Zavino Pizzeria and Wine Bar',
1336
+			"post_desc" => '
1337 1337
 	Zavino is a new pizzeria and wine bar located at the epicenter of the city&acute;s trendy Midtown Village neighborhood. The restaurant features a seasonal menu, classic cocktails, an approachable selection of wine and beer and some of the best late night menu offerings in the area.
1338 1338
 	
1339 1339
 	The restaurant&acute;s interior looks great - it has a simple, rustic feel with an original brick wall, large picture windows, a long bar and a large outdoor cafe coming this spring.
@@ -1352,46 +1352,46 @@  discard block
 block discarded – undo
1352 1352
 	
1353 1353
 	Pizzas vary in price from $8 to $12.
1354 1354
 	',
1355
-            "post_images" => $image_array,
1356
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1357
-            "post_tags" => array('Sample Tag1'),
1358
-            "geodir_video" => '',
1359
-            "geodir_timing" => 'Daily : 10 am to 11 pm',
1360
-            "geodir_contact" => '(243) 222-12344',
1361
-            "geodir_email" => '[email protected]',
1362
-            "geodir_website" => 'http://www.villagewhiskey.com/',
1363
-            "geodir_twitter" => 'http://twitter.com/villagewhiskey',
1364
-            "geodir_facebook" => 'http://facebook.com/villagewhiskey',
1365
-            "post_dummy" => '1'
1366
-        );
1367
-
1368
-        ////post end///
1369
-        /// Restaurants ////post start 2///
1370
-
1371
-        break;
1372
-    case 23:
1373
-
1374
-
1375
-        $image_array = array();
1376
-        $post_meta = array();
1377
-
1378
-        /// Restaurants ////post start 3//
1379
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1380
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1381
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1382
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1383
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1384
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1385
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1386
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1387
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1388
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1389
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1390
-
1391
-        $post_info[] = array(
1392
-            "listing_type" => 'gd_place',
1393
-            "post_title" => 'Parc',
1394
-            "post_desc" => '
1355
+			"post_images" => $image_array,
1356
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1357
+			"post_tags" => array('Sample Tag1'),
1358
+			"geodir_video" => '',
1359
+			"geodir_timing" => 'Daily : 10 am to 11 pm',
1360
+			"geodir_contact" => '(243) 222-12344',
1361
+			"geodir_email" => '[email protected]',
1362
+			"geodir_website" => 'http://www.villagewhiskey.com/',
1363
+			"geodir_twitter" => 'http://twitter.com/villagewhiskey',
1364
+			"geodir_facebook" => 'http://facebook.com/villagewhiskey',
1365
+			"post_dummy" => '1'
1366
+		);
1367
+
1368
+		////post end///
1369
+		/// Restaurants ////post start 2///
1370
+
1371
+		break;
1372
+	case 23:
1373
+
1374
+
1375
+		$image_array = array();
1376
+		$post_meta = array();
1377
+
1378
+		/// Restaurants ////post start 3//
1379
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1380
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1381
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1382
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1383
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1384
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1385
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1386
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1387
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1388
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1389
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1390
+
1391
+		$post_info[] = array(
1392
+			"listing_type" => 'gd_place',
1393
+			"post_title" => 'Parc',
1394
+			"post_desc" => '
1395 1395
 	If you love Paris in the springtime, Parc is a veritable grand cru.
1396 1396
 	
1397 1397
 	With Parc, famed restaurateur Stephen Starr brings a certain je ne sais quoi to Rittenhouse Square. Parc offers an authentic French bistro experience, fully equipped with a chic Parisian ambiance and gorgeous sidewalk seating overlooking the Square.
@@ -1419,45 +1419,45 @@  discard block
 block discarded – undo
1419 1419
 	
1420 1420
 	To put it simply, Parc is nothing short of an authentic Parisian dining experience - right here in the heart of Rittenhouse Square.
1421 1421
 	',
1422
-            "post_images" => $image_array,
1423
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1424
-            "post_tags" => array('Sample Tag1'),
1425
-            "geodir_video" => '',
1426
-            "geodir_timing" => 'Daily : 10 am to 12 pm',
1427
-            "geodir_contact" => '(143) 222-12344',
1428
-            "geodir_email" => '[email protected]',
1429
-            "geodir_website" => 'http://www.parc-restaurant.com/',
1430
-            "geodir_twitter" => 'http://twitter.com/parc-restaurant',
1431
-            "geodir_facebook" => 'http://facebook.com/parc-restaurant',
1432
-            "post_dummy" => '1'
1433
-        );
1434
-
1435
-        ////post end///
1436
-        /// Restaurants ////post start 3///
1437
-        break;
1438
-    case 24:
1439
-
1440
-
1441
-        $image_array = array();
1442
-        $post_meta = array();
1443
-
1444
-        /// Restaurants ////post start 4//
1445
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1446
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1447
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1448
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1449
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1450
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1451
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1452
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1453
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1454
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1455
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1456
-
1457
-        $post_info[] = array(
1458
-            "listing_type" => 'gd_place',
1459
-            "post_title" => 'Percy Street Barbecue',
1460
-            "post_desc" => '
1422
+			"post_images" => $image_array,
1423
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1424
+			"post_tags" => array('Sample Tag1'),
1425
+			"geodir_video" => '',
1426
+			"geodir_timing" => 'Daily : 10 am to 12 pm',
1427
+			"geodir_contact" => '(143) 222-12344',
1428
+			"geodir_email" => '[email protected]',
1429
+			"geodir_website" => 'http://www.parc-restaurant.com/',
1430
+			"geodir_twitter" => 'http://twitter.com/parc-restaurant',
1431
+			"geodir_facebook" => 'http://facebook.com/parc-restaurant',
1432
+			"post_dummy" => '1'
1433
+		);
1434
+
1435
+		////post end///
1436
+		/// Restaurants ////post start 3///
1437
+		break;
1438
+	case 24:
1439
+
1440
+
1441
+		$image_array = array();
1442
+		$post_meta = array();
1443
+
1444
+		/// Restaurants ////post start 4//
1445
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1446
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1447
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1448
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1449
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1450
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1451
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1452
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1453
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1454
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1455
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1456
+
1457
+		$post_info[] = array(
1458
+			"listing_type" => 'gd_place',
1459
+			"post_title" => 'Percy Street Barbecue',
1460
+			"post_desc" => '
1461 1461
 	Percy Street Barbecue sees the South Street debut of restaurateurs Steven Cook and Michael Solomonov (Zahav, Xochitl).
1462 1462
 	
1463 1463
 	Serving a straightforward selection of slowly smoked meats and homey side dishes alongside craft beers and tasty cocktails, Percy Street is an ideal venue for Chef Erin OShea much-lauded Southern cooking, and is on its way to become the city top spot for barbecue.
@@ -1483,46 +1483,46 @@  discard block
 block discarded – undo
1483 1483
 	
1484 1484
 	Seating in the form of repurposed church pews, and bare light bulbs overhead in the dining room lend to the restaurant Texas-esque aesthetic.
1485 1485
 	',
1486
-            "post_images" => $image_array,
1487
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1488
-            "post_tags" => array('Sample Tag1'),
1489
-            "geodir_video" => '',
1490
-            "geodir_timing" => 'Percy Street is closed on Mondays. The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1491
-            "geodir_contact" => '(143) 222-12344',
1492
-            "geodir_email" => '[email protected]',
1493
-            "geodir_website" => 'http://www.percystreet.com/',
1494
-            "geodir_twitter" => 'http://twitter.com/percystreet',
1495
-            "geodir_facebook" => 'http://facebook.com/percystreet',
1496
-            "post_dummy" => '1'
1497
-        );
1498
-
1499
-        ////post end///
1500
-        /// Restaurants ////post start 4///
1501
-
1502
-        break;
1503
-    case 25:
1504
-
1505
-
1506
-        $image_array = array();
1507
-        $post_meta = array();
1508
-
1509
-        /// Restaurants ////post start 5//
1510
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1511
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1512
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1513
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1514
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1515
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1516
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1517
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1518
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1519
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1520
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1521
-
1522
-        $post_info[] = array(
1523
-            "listing_type" => 'gd_place',
1524
-            "post_title" => 'The Fountain Restaurant',
1525
-            "post_desc" => '
1486
+			"post_images" => $image_array,
1487
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Feature')),
1488
+			"post_tags" => array('Sample Tag1'),
1489
+			"geodir_video" => '',
1490
+			"geodir_timing" => 'Percy Street is closed on Mondays. The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1491
+			"geodir_contact" => '(143) 222-12344',
1492
+			"geodir_email" => '[email protected]',
1493
+			"geodir_website" => 'http://www.percystreet.com/',
1494
+			"geodir_twitter" => 'http://twitter.com/percystreet',
1495
+			"geodir_facebook" => 'http://facebook.com/percystreet',
1496
+			"post_dummy" => '1'
1497
+		);
1498
+
1499
+		////post end///
1500
+		/// Restaurants ////post start 4///
1501
+
1502
+		break;
1503
+	case 25:
1504
+
1505
+
1506
+		$image_array = array();
1507
+		$post_meta = array();
1508
+
1509
+		/// Restaurants ////post start 5//
1510
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1511
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1512
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1513
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1514
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1515
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1516
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1517
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1518
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1519
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1520
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1521
+
1522
+		$post_info[] = array(
1523
+			"listing_type" => 'gd_place',
1524
+			"post_title" => 'The Fountain Restaurant',
1525
+			"post_desc" => '
1526 1526
 	The Fountain Restaurant in the Four Seasons Hotel Philadelphia has received seemingly every type of accolade there is, from top honors in Gourmet magazine to Forbes Travel Guide&acute;s 2010 Five Star award to a perfect Five Diamond rating from AAA. It&acute;s been a Philadelphia favorite for special occasion meals for decades.
1527 1527
 	
1528 1528
 	Additionally rated as the best restaurant in Philadelphia by Zagat&acute;s, the Fountain Restaurant overlooks the majestic Swann Memorial Fountain sculpture by Alexander Stirling Calder in the center of Logan Square. You&acute;ll also enjoy sweeping views of the grand Benjamin Franklin Parkway and its gorgeous Beaux Arts architecture.
@@ -1532,45 +1532,45 @@  discard block
 block discarded – undo
1532 1532
 	You can order a la carte or select the prix fix option to enjoy the “spontaneous tastes” menu which gives the chef control of a few courses. The menu changes regularly, but you can expect to see globaly influenced items like Pan-fried Veal Sweetbreads, Braised Dover Sole Roulade, Sautéed Venison Medallions and Roasted Australian Lamb Saddle.
1533 1533
 	
1534 1534
 	',
1535
-            "post_images" => $image_array,
1536
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1537
-            "post_tags" => array('food'),
1538
-            "geodir_video" => '',
1539
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1540
-            "geodir_contact" => '(103) 100-12344',
1541
-            "geodir_email" => '[email protected]',
1542
-            "geodir_website" => 'http://www.fourseasons.com/philadelphia/dining',
1543
-            "geodir_twitter" => 'http://twitter.com/fourseasons',
1544
-            "geodir_facebook" => 'http://facebook.com/fourseasons',
1545
-            "post_dummy" => '1'
1546
-        );
1547
-
1548
-        ////post end///
1549
-        /// Restaurants ////post start 5///
1550
-        break;
1551
-    case 26:
1552
-
1553
-
1554
-        $image_array = array();
1555
-        $post_meta = array();
1556
-
1557
-        /// Restaurants ////post start 6//
1558
-        $image_array[] = "$dummy_image_url/restaurants11.jpg";
1559
-        $image_array[] = "$dummy_image_url/restaurants10.jpg";
1560
-        $image_array[] = "$dummy_image_url/restaurants3.jpg";
1561
-        $image_array[] = "$dummy_image_url/restaurants1.jpg";
1562
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1563
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1564
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1565
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1566
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1567
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1568
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1569
-
1570
-        $post_info[] = array(
1571
-            "listing_type" => 'gd_place',
1572
-            "post_title" => 'Lacroix at The Rittenhouse',
1573
-            "post_desc" => '
1535
+			"post_images" => $image_array,
1536
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1537
+			"post_tags" => array('food'),
1538
+			"geodir_video" => '',
1539
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 11:30 a.m. to 2:30 p.m.',
1540
+			"geodir_contact" => '(103) 100-12344',
1541
+			"geodir_email" => '[email protected]',
1542
+			"geodir_website" => 'http://www.fourseasons.com/philadelphia/dining',
1543
+			"geodir_twitter" => 'http://twitter.com/fourseasons',
1544
+			"geodir_facebook" => 'http://facebook.com/fourseasons',
1545
+			"post_dummy" => '1'
1546
+		);
1547
+
1548
+		////post end///
1549
+		/// Restaurants ////post start 5///
1550
+		break;
1551
+	case 26:
1552
+
1553
+
1554
+		$image_array = array();
1555
+		$post_meta = array();
1556
+
1557
+		/// Restaurants ////post start 6//
1558
+		$image_array[] = "$dummy_image_url/restaurants11.jpg";
1559
+		$image_array[] = "$dummy_image_url/restaurants10.jpg";
1560
+		$image_array[] = "$dummy_image_url/restaurants3.jpg";
1561
+		$image_array[] = "$dummy_image_url/restaurants1.jpg";
1562
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1563
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1564
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1565
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1566
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1567
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1568
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1569
+
1570
+		$post_info[] = array(
1571
+			"listing_type" => 'gd_place',
1572
+			"post_title" => 'Lacroix at The Rittenhouse',
1573
+			"post_desc" => '
1574 1574
 	A deluxe hotel like The Rittenhouse deserves a deluxe restaurant, a fitting description for Lacroix, named “Restaurant of the Year” in 2003 by Esquire magazine.
1575 1575
 	
1576 1576
 	Located on the second floor of the Rittenhouse Hotel, Lacroix features elegant décor and a broad view of Rittenhouse Square, which combine to make the ambiance at Lacroix as enjoyable as the meal itself.
@@ -1581,46 +1581,46 @@  discard block
 block discarded – undo
1581 1581
 	
1582 1582
 	Sunday Brunch at Lacroix - which features such delectable dishes as baby lamb chops with garlic crust and banyuls sauce, niman ranch smoked bacon, quail eggs with artichoke, golden beet and shiitakes, and french baguette toast with apple, raspberry and rosemary jam - is also highly recommended.
1583 1583
 	',
1584
-            "post_images" => $image_array,
1585
-            "post_category" => array('gd_placecategory' => array('Restaurants')),
1586
-            "post_tags" => array('food'),
1587
-            "geodir_video" => '',
1588
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1589
-            "geodir_contact" => '(113) 121-12344',
1590
-            "geodir_email" => '[email protected]',
1591
-            "geodir_website" => 'http://www.rittenhousehotel.com/lacroix.cfm',
1592
-            "geodir_twitter" => 'http://twitter.com/rittenhousehotel',
1593
-            "geodir_facebook" => 'http://facebook.com/rittenhousehotel',
1594
-            "post_dummy" => '1'
1595
-        );
1596
-
1597
-        ////post end///
1598
-        /// Restaurants ////post start 6///
1599
-
1600
-        break;
1601
-    case 27:
1602
-
1603
-
1604
-        $image_array = array();
1605
-        $post_meta = array();
1606
-
1607
-        /// Restaurants ////post start 7//
1608
-        $image_array[] = "$dummy_image_url/restaurants12.jpg";
1609
-        $image_array[] = "$dummy_image_url/restaurants13.jpg";
1610
-        $image_array[] = "$dummy_image_url/restaurants14.jpg";
1611
-        $image_array[] = "$dummy_image_url/restaurants15.jpg";
1612
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1613
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1614
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1615
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1616
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1617
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1618
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1619
-
1620
-        $post_info[] = array(
1621
-            "listing_type" => 'gd_place',
1622
-            "post_title" => 'Lacroix at The Rittenhouse',
1623
-            "post_desc" => '
1584
+			"post_images" => $image_array,
1585
+			"post_category" => array('gd_placecategory' => array('Restaurants')),
1586
+			"post_tags" => array('food'),
1587
+			"geodir_video" => '',
1588
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1589
+			"geodir_contact" => '(113) 121-12344',
1590
+			"geodir_email" => '[email protected]',
1591
+			"geodir_website" => 'http://www.rittenhousehotel.com/lacroix.cfm',
1592
+			"geodir_twitter" => 'http://twitter.com/rittenhousehotel',
1593
+			"geodir_facebook" => 'http://facebook.com/rittenhousehotel',
1594
+			"post_dummy" => '1'
1595
+		);
1596
+
1597
+		////post end///
1598
+		/// Restaurants ////post start 6///
1599
+
1600
+		break;
1601
+	case 27:
1602
+
1603
+
1604
+		$image_array = array();
1605
+		$post_meta = array();
1606
+
1607
+		/// Restaurants ////post start 7//
1608
+		$image_array[] = "$dummy_image_url/restaurants12.jpg";
1609
+		$image_array[] = "$dummy_image_url/restaurants13.jpg";
1610
+		$image_array[] = "$dummy_image_url/restaurants14.jpg";
1611
+		$image_array[] = "$dummy_image_url/restaurants15.jpg";
1612
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1613
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1614
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1615
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1616
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1617
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1618
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1619
+
1620
+		$post_info[] = array(
1621
+			"listing_type" => 'gd_place',
1622
+			"post_title" => 'Lacroix at The Rittenhouse',
1623
+			"post_desc" => '
1624 1624
 	A deluxe hotel like The Rittenhouse deserves a deluxe restaurant, a fitting description for Lacroix, named “Restaurant of the Year” in 2003 by Esquire magazine.
1625 1625
 	
1626 1626
 	Located on the second floor of the Rittenhouse Hotel, Lacroix features elegant décor and a broad view of Rittenhouse Square, which combine to make the ambiance at Lacroix as enjoyable as the meal itself.
@@ -1631,45 +1631,45 @@  discard block
 block discarded – undo
1631 1631
 	
1632 1632
 	Sunday Brunch at Lacroix - which features such delectable dishes as baby lamb chops with garlic crust and banyuls sauce, niman ranch smoked bacon, quail eggs with artichoke, golden beet and shiitakes, and french baguette toast with apple, raspberry and rosemary jam - is also highly recommended.
1633 1633
 	',
1634
-            "post_images" => $image_array,
1635
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1636
-            "post_tags" => array('food'),
1637
-            "geodir_video" => '',
1638
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1639
-            "geodir_contact" => '(113) 121-12344',
1640
-            "geodir_email" => '[email protected]',
1641
-            "geodir_website" => 'http://www.zamarestaurant.com/',
1642
-            "geodir_twitter" => 'http://twitter.com/zamarestaurant',
1643
-            "geodir_facebook" => 'http://facebook.com/zamarestaurant',
1644
-            "post_dummy" => '1'
1645
-        );
1646
-
1647
-        ////post end///
1648
-        /// Restaurants ////post start 7///
1649
-
1650
-        break;
1651
-    case 28:
1652
-
1653
-        $image_array = array();
1654
-        $post_meta = array();
1655
-
1656
-        /// Restaurants ////post start 8//
1657
-        $image_array[] = "$dummy_image_url/restaurants16.jpg";
1658
-        $image_array[] = "$dummy_image_url/restaurants17.jpg";
1659
-        $image_array[] = "$dummy_image_url/restaurants18.jpg";
1660
-        $image_array[] = "$dummy_image_url/restaurants19.jpg";
1661
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1662
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1663
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1664
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1665
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1666
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1667
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1668
-
1669
-        $post_info[] = array(
1670
-            "listing_type" => 'gd_place',
1671
-            "post_title" => 'Sampan',
1672
-            "post_desc" => '
1634
+			"post_images" => $image_array,
1635
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1636
+			"post_tags" => array('food'),
1637
+			"geodir_video" => '',
1638
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1639
+			"geodir_contact" => '(113) 121-12344',
1640
+			"geodir_email" => '[email protected]',
1641
+			"geodir_website" => 'http://www.zamarestaurant.com/',
1642
+			"geodir_twitter" => 'http://twitter.com/zamarestaurant',
1643
+			"geodir_facebook" => 'http://facebook.com/zamarestaurant',
1644
+			"post_dummy" => '1'
1645
+		);
1646
+
1647
+		////post end///
1648
+		/// Restaurants ////post start 7///
1649
+
1650
+		break;
1651
+	case 28:
1652
+
1653
+		$image_array = array();
1654
+		$post_meta = array();
1655
+
1656
+		/// Restaurants ////post start 8//
1657
+		$image_array[] = "$dummy_image_url/restaurants16.jpg";
1658
+		$image_array[] = "$dummy_image_url/restaurants17.jpg";
1659
+		$image_array[] = "$dummy_image_url/restaurants18.jpg";
1660
+		$image_array[] = "$dummy_image_url/restaurants19.jpg";
1661
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1662
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1663
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1664
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1665
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1666
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1667
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1668
+
1669
+		$post_info[] = array(
1670
+			"listing_type" => 'gd_place',
1671
+			"post_title" => 'Sampan',
1672
+			"post_desc" => '
1673 1673
 	Chef and charismatic television star Michael Schulson returns to Philadelphia with the opening of Sampan, a modern Asian restaurant where he serves the acclaimed cuisine that has made him one of the country&acute;s highly sought-after culinary talents.
1674 1674
 	
1675 1675
 	Schulson returns to Philadelphia after having opened Buddakan in New York City for Stephen Starr and Izakaya at the Borgata in Atlantic City and then having gone on to star in Style network&acute;s popular series Pantry Raid and TLC Ultimate Cake Off.
@@ -1688,45 +1688,45 @@  discard block
 block discarded – undo
1688 1688
 	
1689 1689
 	Prices range from $5 to $19.
1690 1690
 	',
1691
-            "post_images" => $image_array,
1692
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1693
-            "post_tags" => array('restaurant'),
1694
-            "geodir_video" => '',
1695
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1696
-            "geodir_contact" => '(000) 111-2222',
1697
-            "geodir_email" => '[email protected]',
1698
-            "geodir_website" => 'http://www.sampanphilly.com/',
1699
-            "geodir_twitter" => 'http://twitter.com/sampanphilly',
1700
-            "geodir_facebook" => 'http://facebook.com/sampanphilly',
1701
-            "post_dummy" => '1'
1702
-        );
1703
-
1704
-        ////post end///
1705
-        /// Restaurants ////post start 8///
1706
-
1707
-        break;
1708
-    case 29:
1709
-
1710
-        $image_array = array();
1711
-        $post_meta = array();
1712
-
1713
-        /// Restaurants ////post start 9//
1714
-        $image_array[] = "$dummy_image_url/restaurants17.jpg";
1715
-        $image_array[] = "$dummy_image_url/restaurants16.jpg";
1716
-        $image_array[] = "$dummy_image_url/restaurants18.jpg";
1717
-        $image_array[] = "$dummy_image_url/restaurants19.jpg";
1718
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1719
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1720
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1721
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1722
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1723
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1724
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1725
-
1726
-        $post_info[] = array(
1727
-            "listing_type" => 'gd_place',
1728
-            "post_title" => 'Morimoto',
1729
-            "post_desc" => '
1691
+			"post_images" => $image_array,
1692
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1693
+			"post_tags" => array('restaurant'),
1694
+			"geodir_video" => '',
1695
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1696
+			"geodir_contact" => '(000) 111-2222',
1697
+			"geodir_email" => '[email protected]',
1698
+			"geodir_website" => 'http://www.sampanphilly.com/',
1699
+			"geodir_twitter" => 'http://twitter.com/sampanphilly',
1700
+			"geodir_facebook" => 'http://facebook.com/sampanphilly',
1701
+			"post_dummy" => '1'
1702
+		);
1703
+
1704
+		////post end///
1705
+		/// Restaurants ////post start 8///
1706
+
1707
+		break;
1708
+	case 29:
1709
+
1710
+		$image_array = array();
1711
+		$post_meta = array();
1712
+
1713
+		/// Restaurants ////post start 9//
1714
+		$image_array[] = "$dummy_image_url/restaurants17.jpg";
1715
+		$image_array[] = "$dummy_image_url/restaurants16.jpg";
1716
+		$image_array[] = "$dummy_image_url/restaurants18.jpg";
1717
+		$image_array[] = "$dummy_image_url/restaurants19.jpg";
1718
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1719
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1720
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1721
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1722
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1723
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1724
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1725
+
1726
+		$post_info[] = array(
1727
+			"listing_type" => 'gd_place',
1728
+			"post_title" => 'Morimoto',
1729
+			"post_desc" => '
1730 1730
 	Stephen Starr creative Japanese restaurant has garnered all kinds of national and international attention since opening a few years back. Located a block from Independence Hall on Chestnut Street, Morimoto has an interior - awash in glass and colors - that is both striking and serene in its design.
1731 1731
 	
1732 1732
 	The restaurant&acute;s namesake and head chef, Morimoto (of Food Network&acute;s Iron Chef fame), has created a menu offering the very best in contemporary Japanese cusine. While regulars flock here for the exquisitely prepared sushi, Morimoto offers diners a broad spectrum of flavors that delve beyond nigiri and sashimi.
@@ -1739,45 +1739,45 @@  discard block
 block discarded – undo
1739 1739
 	
1740 1740
 	The mezzanine level lounge is a great spot to have a pre-meal cocktail while waiting for your table. You can enjoy a sake or try a “Sakura” - a cosmo made with Sake - in the sleek space that overlooks the brilliant restaurant below.
1741 1741
 	',
1742
-            "post_images" => $image_array,
1743
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife', 'Feature')),
1744
-            "post_tags" => array('America'),
1745
-            "geodir_video" => '',
1746
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1747
-            "geodir_contact" => '(000) 111-2222',
1748
-            "geodir_email" => '[email protected]',
1749
-            "geodir_website" => 'http://www.morimotorestaurant.com/',
1750
-            "geodir_twitter" => 'http://twitter.com/morimotorestaurant',
1751
-            "geodir_facebook" => 'http://facebook.com/morimotorestaurant',
1752
-            "post_dummy" => '1'
1753
-        );
1754
-
1755
-        ////post end///
1756
-        /// Restaurants ////post start 9///
1757
-        break;
1758
-    case 30:
1759
-
1760
-
1761
-        $image_array = array();
1762
-        $post_meta = array();
1763
-
1764
-        /// Restaurants ////post start 10//
1765
-        $image_array[] = "$dummy_image_url/restaurants19.jpg";
1766
-        $image_array[] = "$dummy_image_url/restaurants17.jpg";
1767
-        $image_array[] = "$dummy_image_url/restaurants18.jpg";
1768
-        $image_array[] = "$dummy_image_url/restaurants16.jpg";
1769
-        $image_array[] = "$dummy_image_url/restaurants5.jpg";
1770
-        $image_array[] = "$dummy_image_url/restaurants6.jpg";
1771
-        $image_array[] = "$dummy_image_url/restaurants7.jpg";
1772
-        $image_array[] = "$dummy_image_url/restaurants8.jpg";
1773
-        $image_array[] = "$dummy_image_url/restaurants9.jpg";
1774
-        $image_array[] = "$dummy_image_url/restaurants2.jpg";
1775
-        $image_array[] = "$dummy_image_url/restaurants4.jpg";
1776
-
1777
-        $post_info[] = array(
1778
-            "listing_type" => 'gd_place',
1779
-            "post_title" => 'Buddakan',
1780
-            "post_desc" => '
1742
+			"post_images" => $image_array,
1743
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife', 'Feature')),
1744
+			"post_tags" => array('America'),
1745
+			"geodir_video" => '',
1746
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1747
+			"geodir_contact" => '(000) 111-2222',
1748
+			"geodir_email" => '[email protected]',
1749
+			"geodir_website" => 'http://www.morimotorestaurant.com/',
1750
+			"geodir_twitter" => 'http://twitter.com/morimotorestaurant',
1751
+			"geodir_facebook" => 'http://facebook.com/morimotorestaurant',
1752
+			"post_dummy" => '1'
1753
+		);
1754
+
1755
+		////post end///
1756
+		/// Restaurants ////post start 9///
1757
+		break;
1758
+	case 30:
1759
+
1760
+
1761
+		$image_array = array();
1762
+		$post_meta = array();
1763
+
1764
+		/// Restaurants ////post start 10//
1765
+		$image_array[] = "$dummy_image_url/restaurants19.jpg";
1766
+		$image_array[] = "$dummy_image_url/restaurants17.jpg";
1767
+		$image_array[] = "$dummy_image_url/restaurants18.jpg";
1768
+		$image_array[] = "$dummy_image_url/restaurants16.jpg";
1769
+		$image_array[] = "$dummy_image_url/restaurants5.jpg";
1770
+		$image_array[] = "$dummy_image_url/restaurants6.jpg";
1771
+		$image_array[] = "$dummy_image_url/restaurants7.jpg";
1772
+		$image_array[] = "$dummy_image_url/restaurants8.jpg";
1773
+		$image_array[] = "$dummy_image_url/restaurants9.jpg";
1774
+		$image_array[] = "$dummy_image_url/restaurants2.jpg";
1775
+		$image_array[] = "$dummy_image_url/restaurants4.jpg";
1776
+
1777
+		$post_info[] = array(
1778
+			"listing_type" => 'gd_place',
1779
+			"post_title" => 'Buddakan',
1780
+			"post_desc" => '
1781 1781
 	<h3>The Experience </h3>
1782 1782
 	
1783 1783
 	A towering gilded statue of the Buddha generates elegant calm in this 175-seat, Pan Asian restaurant with sleek, modern decor. Immensely popular, Buddakan is a restaurant that is great for both large parties and intimate dinners.
@@ -1788,86 +1788,86 @@  discard block
 block discarded – undo
1788 1788
 	
1789 1789
 	Be sure to make your reservation before coming to town as Buddakan fills up quickly especially on weekends. Better yet, make your reservation right now .
1790 1790
 	',
1791
-            "post_images" => $image_array,
1792
-            "post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1793
-            "post_tags" => array('America'),
1794
-            "geodir_video" => '',
1795
-            "geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1796
-            "geodir_contact" => '(000) 111-2222',
1797
-            "geodir_email" => '[email protected]',
1798
-            "geodir_website" => 'http://www.buddakan.com/',
1799
-            "geodir_twitter" => 'http://twitter.com/buddakan',
1800
-            "geodir_facebook" => 'http://facebook.com/buddakan',
1801
-            "post_dummy" => '1'
1802
-        );
1803
-        break;
1804
-
1805
-    ////post end///
1806
-    /// Restaurants ////post start 10///
1791
+			"post_images" => $image_array,
1792
+			"post_category" => array('gd_placecategory' => array('Restaurants', 'Food Nightlife')),
1793
+			"post_tags" => array('America'),
1794
+			"geodir_video" => '',
1795
+			"geodir_timing" => 'The restaurant is also open for weekend lunch/brunch from 10:30 a.m. to 6:30 p.m.',
1796
+			"geodir_contact" => '(000) 111-2222',
1797
+			"geodir_email" => '[email protected]',
1798
+			"geodir_website" => 'http://www.buddakan.com/',
1799
+			"geodir_twitter" => 'http://twitter.com/buddakan',
1800
+			"geodir_facebook" => 'http://facebook.com/buddakan',
1801
+			"post_dummy" => '1'
1802
+		);
1803
+		break;
1804
+
1805
+	////post end///
1806
+	/// Restaurants ////post start 10///
1807 1807
 } // end of switch
1808 1808
 
1809 1809
 
1810 1810
 foreach ($post_info as $post_info) {
1811
-    $default_location = geodir_get_default_location();
1812
-    if ($city_bound_lat1 > $city_bound_lat2)
1813
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1814
-    else
1815
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1811
+	$default_location = geodir_get_default_location();
1812
+	if ($city_bound_lat1 > $city_bound_lat2)
1813
+		$dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1814
+	else
1815
+		$dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1816 1816
 
1817 1817
 
1818
-    if ($city_bound_lng1 > $city_bound_lng2)
1819
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1820
-    else
1821
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1818
+	if ($city_bound_lng1 > $city_bound_lng2)
1819
+		$dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1820
+	else
1821
+		$dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1822 1822
 
1823
-    $load_map = get_option('geodir_load_map');
1823
+	$load_map = get_option('geodir_load_map');
1824 1824
     
1825
-    if ($load_map == 'osm') {
1826
-        $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1827
-    } else {
1828
-        $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1829
-    }
1830
-
1831
-    $postal_code = '';
1832
-    if (!empty($post_address)) {
1833
-        if ($load_map == 'osm') {
1834
-            $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : '';
1835
-            $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : '';
1836
-        } else {
1837
-            $addresses = array();
1838
-            $addresses_default = array();
1825
+	if ($load_map == 'osm') {
1826
+		$post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1827
+	} else {
1828
+		$post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude);
1829
+	}
1830
+
1831
+	$postal_code = '';
1832
+	if (!empty($post_address)) {
1833
+		if ($load_map == 'osm') {
1834
+			$address = !empty($post_address->formatted_address) ? $post_address->formatted_address : '';
1835
+			$postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : '';
1836
+		} else {
1837
+			$addresses = array();
1838
+			$addresses_default = array();
1839 1839
             
1840
-            foreach ($post_address as $add_key => $add_value) {
1841
-                if ($add_key < 2 && !empty($add_value->long_name)) {
1842
-                    $addresses_default[] = $add_value->long_name;
1843
-                }
1844
-                if ($add_value->types[0] == 'postal_code') {
1845
-                    $postal_code = $add_value->long_name;
1846
-                }
1847
-                if ($add_value->types[0] == 'street_number') {
1848
-                    $addresses[] = $add_value->long_name;
1849
-                }
1850
-                if ($add_value->types[0] == 'route') {
1851
-                    $addresses[] = $add_value->long_name;
1852
-                }
1853
-                if ($add_value->types[0] == 'neighborhood') {
1854
-                    $addresses[] = $add_value->long_name;
1855
-                }
1856
-                if ($add_value->types[0] == 'sublocality') {
1857
-                    $addresses[] = $add_value->long_name;
1858
-                }
1859
-            }
1860
-            $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : '');
1861
-        }
1862
-
1863
-        $post_info['post_address'] = !empty($address) ? $address : $default_location->city;
1864
-        $post_info['post_city'] = $default_location->city;
1865
-        $post_info['post_region'] = $default_location->region;
1866
-        $post_info['post_country'] = $default_location->country;
1867
-        $post_info['post_zip'] = $postal_code;
1868
-        $post_info['post_latitude'] = $dummy_post_latitude;
1869
-        $post_info['post_longitude'] = $dummy_post_longitude;
1870
-    }
1840
+			foreach ($post_address as $add_key => $add_value) {
1841
+				if ($add_key < 2 && !empty($add_value->long_name)) {
1842
+					$addresses_default[] = $add_value->long_name;
1843
+				}
1844
+				if ($add_value->types[0] == 'postal_code') {
1845
+					$postal_code = $add_value->long_name;
1846
+				}
1847
+				if ($add_value->types[0] == 'street_number') {
1848
+					$addresses[] = $add_value->long_name;
1849
+				}
1850
+				if ($add_value->types[0] == 'route') {
1851
+					$addresses[] = $add_value->long_name;
1852
+				}
1853
+				if ($add_value->types[0] == 'neighborhood') {
1854
+					$addresses[] = $add_value->long_name;
1855
+				}
1856
+				if ($add_value->types[0] == 'sublocality') {
1857
+					$addresses[] = $add_value->long_name;
1858
+				}
1859
+			}
1860
+			$address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : '');
1861
+		}
1862
+
1863
+		$post_info['post_address'] = !empty($address) ? $address : $default_location->city;
1864
+		$post_info['post_city'] = $default_location->city;
1865
+		$post_info['post_region'] = $default_location->region;
1866
+		$post_info['post_country'] = $default_location->country;
1867
+		$post_info['post_zip'] = $postal_code;
1868
+		$post_info['post_latitude'] = $dummy_post_latitude;
1869
+		$post_info['post_longitude'] = $dummy_post_longitude;
1870
+	}
1871 1871
     
1872
-    geodir_save_listing($post_info, true);
1872
+	geodir_save_listing($post_info, true);
1873 1873
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 $post_meta = array();
13 13
 
14 14
 if (geodir_dummy_folder_exists())
15
-    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
15
+    $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy";
16 16
 else
17 17
     $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
18 18
 
Please login to merge, or discard this patch.
Braces   +17 added lines, -14 removed lines patch added patch discarded remove patch
@@ -11,10 +11,11 @@  discard block
 block discarded – undo
11 11
 $image_array = array();
12 12
 $post_meta = array();
13 13
 
14
-if (geodir_dummy_folder_exists())
15
-    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
16
-else
17
-    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
14
+if (geodir_dummy_folder_exists()) {
15
+    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy";
16
+} else {
17
+    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy';
18
+}
18 19
 
19 20
 $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url);
20 21
 
@@ -1809,16 +1810,18 @@  discard block
 block discarded – undo
1809 1810
 
1810 1811
 foreach ($post_info as $post_info) {
1811 1812
     $default_location = geodir_get_default_location();
1812
-    if ($city_bound_lat1 > $city_bound_lat2)
1813
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1814
-    else
1815
-        $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1816
-
1817
-
1818
-    if ($city_bound_lng1 > $city_bound_lng2)
1819
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1820
-    else
1821
-        $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1813
+    if ($city_bound_lat1 > $city_bound_lat2) {
1814
+            $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1));
1815
+    } else {
1816
+            $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2));
1817
+    }
1818
+
1819
+
1820
+    if ($city_bound_lng1 > $city_bound_lng2) {
1821
+            $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1));
1822
+    } else {
1823
+            $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2));
1824
+    }
1822 1825
 
1823 1826
     $load_map = get_option('geodir_load_map');
1824 1827
     
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-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.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 			break;
302 302
 		case 'preview':
303 303
 			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
304
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
304
+				 && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
305 305
 			) {
306 306
 				return true;
307 307
 			}
@@ -505,9 +505,9 @@  discard block
 block discarded – undo
505 505
 
506 506
 //check if homepage
507 507
 		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
508
-		     && ! isset( $wp->query_vars['page_id'] )
509
-		     && ! isset( $wp->query_vars['pagename'] )
510
-		     && is_page_geodir_home()
508
+			 && ! isset( $wp->query_vars['page_id'] )
509
+			 && ! isset( $wp->query_vars['pagename'] )
510
+			 && is_page_geodir_home()
511 511
 		) {
512 512
 			$wp->query_vars['gd_is_geodir_page'] = true;
513 513
 		}
@@ -692,8 +692,8 @@  discard block
 block discarded – undo
692 692
 		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
693 693
 		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
694 694
 		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
695
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
696
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
695
+						  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
696
+						  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
697 697
 		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
698 698
 		$distance       = $earthMeanRadius * $c;
699 699
 
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,10 @@  discard block
 block discarded – undo
29 29
 
30 30
 	if ( is_ssl() ) :
31 31
 		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
32
-	else :
33
-		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
32
+	else {
33
+		:
34
+		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
35
+	}
34 36
 	endif;
35 37
 }
36 38
 
@@ -1496,12 +1498,14 @@  discard block
 block discarded – undo
1496 1498
 	 */
1497 1499
 	function geodir_allow_wpadmin() {
1498 1500
 		global $wpdb;
1499
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1501
+		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) {
1502
+			// checking action in request to allow ajax request go through
1500 1503
 		{
1501 1504
 			if ( current_user_can( 'administrator' ) ) {
1502 1505
 			} else {
1503 1506
 
1504
-				wp_redirect( home_url() );
1507
+				wp_redirect( home_url() );
1508
+		}
1505 1509
 				exit;
1506 1510
 			}
1507 1511
 
Please login to merge, or discard this patch.
Spacing   +1337 added lines, -1337 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,10 +27,10 @@  discard block
 block discarded – undo
27 27
  */
28 28
 function geodir_plugin_url() {
29 29
 
30
-	if ( is_ssl() ) :
31
-		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
30
+	if (is_ssl()) :
31
+		return str_replace('http://', 'https://', WP_PLUGIN_URL)."/".plugin_basename(dirname(dirname(__FILE__)));
32 32
 	else :
33
-		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
33
+		return WP_PLUGIN_URL."/".plugin_basename(dirname(dirname(__FILE__)));
34 34
 	endif;
35 35
 }
36 36
 
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
46 46
  */
47 47
 function geodir_plugin_path() {
48
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
49
-		return dirname( dirname( __FILE__ ) );
48
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
49
+		return dirname(dirname(__FILE__));
50 50
 	} else {
51
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
51
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
52 52
 	}
53 53
 }
54 54
 
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
  * @return bool true or false.
64 64
  * @todo    check if this is faster than normal WP check and remove if not.
65 65
  */
66
-function geodir_is_plugin_active( $plugin ) {
67
-	$active_plugins = get_option( 'active_plugins' );
68
-	foreach ( $active_plugins as $key => $active_plugin ) {
69
-		if ( strstr( $active_plugin, $plugin ) ) {
66
+function geodir_is_plugin_active($plugin) {
67
+	$active_plugins = get_option('active_plugins');
68
+	foreach ($active_plugins as $key => $active_plugin) {
69
+		if (strstr($active_plugin, $plugin)) {
70 70
 			return true;
71 71
 		}
72 72
 	}
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return bool|int|string the formatted date.
90 90
  */
91
-function geodir_get_formated_date( $date ) {
92
-	return mysql2date( get_option( 'date_format' ), $date );
91
+function geodir_get_formated_date($date) {
92
+	return mysql2date(get_option('date_format'), $date);
93 93
 }
94 94
 
95 95
 /**
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * @return bool|int|string the formatted time.
107 107
  */
108
-function geodir_get_formated_time( $time ) {
109
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
108
+function geodir_get_formated_time($time) {
109
+	return mysql2date(get_option('time_format'), $time, $translate = true);
110 110
 }
111 111
 
112 112
 
@@ -124,35 +124,35 @@  discard block
 block discarded – undo
124 124
  *
125 125
  * @return string Formatted link.
126 126
  */
127
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
128
-	if ( $use_existing_arguments ) {
127
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
128
+	if ($use_existing_arguments) {
129 129
 		$params = $params + $_GET;
130 130
 	}
131
-	if ( ! $params ) {
131
+	if (!$params) {
132 132
 		return $url;
133 133
 	}
134 134
 	$link = $url;
135
-	if ( strpos( $link, '?' ) === false ) {
135
+	if (strpos($link, '?') === false) {
136 136
 		$link .= '?';
137 137
 	} //If there is no '?' add one at the end
138
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
138
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
139 139
 		$link .= '&amp;';
140 140
 	} //If there is no '&' at the END, add one.
141
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
141
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
142 142
 		$link .= '&';
143 143
 	} //If there is no '&' at the END, add one.
144 144
 
145 145
 	$params_arr = array();
146
-	foreach ( $params as $key => $value ) {
147
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
148
-			foreach ( $value as $val ) {
149
-				$params_arr[] = $key . '[]=' . urlencode( $val );
146
+	foreach ($params as $key => $value) {
147
+		if (gettype($value) == 'array') { //Handle array data properly
148
+			foreach ($value as $val) {
149
+				$params_arr[] = $key.'[]='.urlencode($val);
150 150
 			}
151 151
 		} else {
152
-			$params_arr[] = $key . '=' . urlencode( $value );
152
+			$params_arr[] = $key.'='.urlencode($value);
153 153
 		}
154 154
 	}
155
-	$link .= implode( '&', $params_arr );
155
+	$link .= implode('&', $params_arr);
156 156
 
157 157
 	return $link;
158 158
 }
@@ -169,18 +169,18 @@  discard block
 block discarded – undo
169 169
  *
170 170
  * @return string Listing page url if valid. Otherwise home url will be returned.
171 171
  */
172
-function geodir_get_addlisting_link( $post_type = '' ) {
172
+function geodir_get_addlisting_link($post_type = '') {
173 173
 	global $wpdb;
174 174
 
175 175
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
176 176
 	$check_pkg = 1;
177
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
177
+	if (post_type_exists($post_type) && $check_pkg) {
178 178
 
179
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
179
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
180 180
 
181
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
181
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
182 182
 	} else {
183
-		return get_bloginfo( 'url' );
183
+		return get_bloginfo('url');
184 184
 	}
185 185
 }
186 186
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 	if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
209 209
 		// To build the entire URI we need to prepend the protocol, and the http host
210 210
 		// to the URI string.
211
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
211
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
212 212
 	} else {
213 213
 		/*
214 214
 		 * Since we do not have REQUEST_URI to work with, we will assume we are
@@ -217,11 +217,11 @@  discard block
 block discarded – undo
217 217
 		 *
218 218
 		 * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
219 219
 		 */
220
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
220
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
221 221
 		
222 222
 		// If the query string exists append it to the URI string
223 223
 		if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
224
-			$pageURL .= '?' . $_SERVER['QUERY_STRING'];
224
+			$pageURL .= '?'.$_SERVER['QUERY_STRING'];
225 225
 		}
226 226
 	}
227 227
 	
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 	 *
233 233
 	 * @param string $pageURL The URL of the current page.
234 234
 	 */
235
-	return apply_filters( 'geodir_curPageURL', $pageURL );
235
+	return apply_filters('geodir_curPageURL', $pageURL);
236 236
 }
237 237
 
238 238
 /**
@@ -247,12 +247,12 @@  discard block
 block discarded – undo
247 247
  *
248 248
  * @return string Cleaned variable.
249 249
  */
250
-function geodir_clean( $string ) {
250
+function geodir_clean($string) {
251 251
 
252
-	$string = trim( strip_tags( stripslashes( $string ) ) );
253
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
254
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
255
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
252
+	$string = trim(strip_tags(stripslashes($string)));
253
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
254
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
255
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
256 256
 
257 257
 	return $string;
258 258
 }
@@ -266,13 +266,13 @@  discard block
 block discarded – undo
266 266
  */
267 267
 function geodir_get_weekday() {
268 268
 	return array(
269
-		__( 'Sunday', 'geodirectory' ),
270
-		__( 'Monday', 'geodirectory' ),
271
-		__( 'Tuesday', 'geodirectory' ),
272
-		__( 'Wednesday', 'geodirectory' ),
273
-		__( 'Thursday', 'geodirectory' ),
274
-		__( 'Friday', 'geodirectory' ),
275
-		__( 'Saturday', 'geodirectory' )
269
+		__('Sunday', 'geodirectory'),
270
+		__('Monday', 'geodirectory'),
271
+		__('Tuesday', 'geodirectory'),
272
+		__('Wednesday', 'geodirectory'),
273
+		__('Thursday', 'geodirectory'),
274
+		__('Friday', 'geodirectory'),
275
+		__('Saturday', 'geodirectory')
276 276
 	);
277 277
 }
278 278
 
@@ -285,11 +285,11 @@  discard block
 block discarded – undo
285 285
  */
286 286
 function geodir_get_weeks() {
287 287
 	return array(
288
-		__( 'First', 'geodirectory' ),
289
-		__( 'Second', 'geodirectory' ),
290
-		__( 'Third', 'geodirectory' ),
291
-		__( 'Fourth', 'geodirectory' ),
292
-		__( 'Last', 'geodirectory' )
288
+		__('First', 'geodirectory'),
289
+		__('Second', 'geodirectory'),
290
+		__('Third', 'geodirectory'),
291
+		__('Fourth', 'geodirectory'),
292
+		__('Last', 'geodirectory')
293 293
 	);
294 294
 }
295 295
 
@@ -308,112 +308,112 @@  discard block
 block discarded – undo
308 308
  *
309 309
  * @return bool If valid returns true. Otherwise false.
310 310
  */
311
-function geodir_is_page( $gdpage = '' ) {
311
+function geodir_is_page($gdpage = '') {
312 312
 
313 313
 	global $wp_query, $post, $wp;
314 314
 	//if(!is_admin()):
315 315
 
316
-	switch ( $gdpage ):
316
+	switch ($gdpage):
317 317
 		case 'add-listing':
318 318
 
319
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
319
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
320 320
 				return true;
321
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
321
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
322 322
 				return true;
323 323
 			}
324 324
 
325 325
 			break;
326 326
 		case 'preview':
327
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
328
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
327
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
328
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
329 329
 			) {
330 330
 				return true;
331 331
 			}
332 332
 			break;
333 333
 		case 'listing-success':
334
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
334
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
335 335
 				return true;
336 336
 			}
337 337
 			break;
338 338
 		case 'detail':
339
-			$post_type = get_query_var( 'post_type' );
340
-			if ( is_array( $post_type ) ) {
341
-				$post_type = reset( $post_type );
339
+			$post_type = get_query_var('post_type');
340
+			if (is_array($post_type)) {
341
+				$post_type = reset($post_type);
342 342
 			}
343
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
343
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
344 344
 				return true;
345 345
 			}
346 346
 			break;
347 347
 		case 'pt':
348
-			$post_type = get_query_var( 'post_type' );
349
-			if ( is_array( $post_type ) ) {
350
-				$post_type = reset( $post_type );
348
+			$post_type = get_query_var('post_type');
349
+			if (is_array($post_type)) {
350
+				$post_type = reset($post_type);
351 351
 			}
352
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
352
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
353 353
 				return true;
354 354
 			}
355 355
 
356 356
 			break;
357 357
 		case 'listing':
358
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
358
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
359 359
 				global $current_term, $taxonomy, $term;
360 360
 
361 361
 				return true;
362 362
 			}
363
-			$post_type = get_query_var( 'post_type' );
364
-			if ( is_array( $post_type ) ) {
365
-				$post_type = reset( $post_type );
363
+			$post_type = get_query_var('post_type');
364
+			if (is_array($post_type)) {
365
+				$post_type = reset($post_type);
366 366
 			}
367
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
367
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
368 368
 				return true;
369 369
 			}
370 370
 
371 371
 			break;
372 372
 		case 'home':
373 373
 
374
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
374
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
375 375
 				return true;
376 376
 			}
377 377
 
378 378
 			break;
379 379
 		case 'location':
380
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
380
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
381 381
 				return true;
382 382
 			}
383 383
 			break;
384 384
 		case 'author':
385
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
385
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
386 386
 				return true;
387 387
 			}
388 388
 
389
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
390
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
389
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
390
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
391 391
 					return true;
392 392
 				}
393 393
 			}
394 394
 			break;
395 395
 		case 'search':
396
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
396
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
397 397
 				return true;
398 398
 			}
399 399
 			break;
400 400
 		case 'info':
401
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
401
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
402 402
 				return true;
403 403
 			}
404 404
 			break;
405 405
 		case 'login':
406
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
406
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
407 407
 				return true;
408 408
 			}
409 409
 			break;
410 410
 		case 'checkout':
411
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
411
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
412 412
 				return true;
413 413
 			}
414 414
 			break;
415 415
 		case 'invoices':
416
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
416
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
417 417
 				return true;
418 418
 			}
419 419
 			break;
@@ -438,28 +438,28 @@  discard block
 block discarded – undo
438 438
  *
439 439
  * @param object $wp WordPress object.
440 440
  */
441
-function geodir_set_is_geodir_page( $wp ) {
442
-	if ( ! is_admin() ) {
441
+function geodir_set_is_geodir_page($wp) {
442
+	if (!is_admin()) {
443 443
 		//$wp->query_vars['gd_is_geodir_page'] = false;
444 444
 		//print_r()
445
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
445
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
446 446
 				'preview',
447 447
 				'page',
448 448
 				'paged',
449 449
 				'cpage'
450
-			) )
450
+			))
451 451
 		) {
452
-			if ( get_option( 'geodir_set_as_home' ) ) {
452
+			if (get_option('geodir_set_as_home')) {
453 453
 				$wp->query_vars['gd_is_geodir_page'] = true;
454 454
 			}
455
-			if ( geodir_is_page( 'home' ) ) {
455
+			if (geodir_is_page('home')) {
456 456
 				$wp->query_vars['gd_is_geodir_page'] = true;
457 457
 			}
458 458
 
459 459
 
460 460
 		}
461 461
 
462
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
462
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
463 463
 			if (
464 464
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
465 465
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -468,26 +468,26 @@  discard block
 block discarded – undo
468 468
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
469 469
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
470 470
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
471
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
472
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
471
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
472
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
473 473
 			) {
474 474
 				$wp->query_vars['gd_is_geodir_page'] = true;
475 475
 			}
476 476
 		}
477 477
 
478
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
479
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
478
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
479
+			$page = get_page_by_path($wp->query_vars['pagename']);
480 480
 
481
-			if ( ! empty( $page ) && (
481
+			if (!empty($page) && (
482 482
 					$page->ID == geodir_add_listing_page_id()
483 483
 					|| $page->ID == geodir_preview_page_id()
484 484
 					|| $page->ID == geodir_success_page_id()
485 485
 					|| $page->ID == geodir_location_page_id()
486
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
487
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
488
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
489
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
490
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
486
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
487
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
488
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
489
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
490
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
491 491
 				)
492 492
 			) {
493 493
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -495,20 +495,20 @@  discard block
 block discarded – undo
495 495
 		}
496 496
 
497 497
 
498
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
498
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
499 499
 			$requested_post_type = $wp->query_vars['post_type'];
500 500
 			// check if this post type is geodirectory post types
501 501
 			$post_type_array = geodir_get_posttypes();
502
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
502
+			if (in_array($requested_post_type, $post_type_array)) {
503 503
 				$wp->query_vars['gd_is_geodir_page'] = true;
504 504
 			}
505 505
 		}
506 506
 
507
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
508
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
509
-			if ( ! empty( $geodir_taxonomis ) ) {
510
-				foreach ( $geodir_taxonomis as $taxonomy ) {
511
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
507
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
508
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
509
+			if (!empty($geodir_taxonomis)) {
510
+				foreach ($geodir_taxonomis as $taxonomy) {
511
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
512 512
 						$wp->query_vars['gd_is_geodir_page'] = true;
513 513
 						break;
514 514
 					}
@@ -517,20 +517,20 @@  discard block
 block discarded – undo
517 517
 
518 518
 		}
519 519
 
520
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
520
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
521 521
 			$wp->query_vars['gd_is_geodir_page'] = true;
522 522
 		}
523 523
 
524 524
 
525
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
525
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
526 526
 			$wp->query_vars['gd_is_geodir_page'] = true;
527 527
 		}
528 528
 
529 529
 
530 530
 //check if homepage
531
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
532
-		     && ! isset( $wp->query_vars['page_id'] )
533
-		     && ! isset( $wp->query_vars['pagename'] )
531
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
532
+		     && !isset($wp->query_vars['page_id'])
533
+		     && !isset($wp->query_vars['pagename'])
534 534
 		     && is_page_geodir_home()
535 535
 		) {
536 536
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -554,14 +554,14 @@  discard block
 block discarded – undo
554 554
  */
555 555
 function geodir_is_geodir_page() {
556 556
 	global $wp;
557
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
557
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
558 558
 		return true;
559 559
 	} else {
560 560
 		return false;
561 561
 	}
562 562
 }
563 563
 
564
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
564
+if (!function_exists('geodir_get_imagesize')) {
565 565
 	/**
566 566
 	 * Get image size using the size key .
567 567
 	 *
@@ -572,13 +572,13 @@  discard block
 block discarded – undo
572 572
 	 *
573 573
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
574 574
 	 */
575
-	function geodir_get_imagesize( $size = '' ) {
575
+	function geodir_get_imagesize($size = '') {
576 576
 
577 577
 		$imagesizes = array(
578
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
579
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
580
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
581
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
578
+			'list-thumb'   => array('w' => 283, 'h' => 188),
579
+			'thumbnail'    => array('w' => 125, 'h' => 125),
580
+			'widget-thumb' => array('w' => 50, 'h' => 50),
581
+			'slider-thumb' => array('w' => 100, 'h' => 100)
582 582
 		);
583 583
 
584 584
 		/**
@@ -588,9 +588,9 @@  discard block
 block discarded – undo
588 588
 		 *
589 589
 		 * @param array $imagesizes Image size array.
590 590
 		 */
591
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
591
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
592 592
 
593
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
593
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
594 594
 			/**
595 595
 			 * Filters image size of the passed key.
596 596
 			 *
@@ -598,11 +598,11 @@  discard block
 block discarded – undo
598 598
 			 *
599 599
 			 * @param array $imagesizes [$size] Image size array of the passed key.
600 600
 			 */
601
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
601
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
602 602
 
603
-		} elseif ( ! empty( $size ) ) {
603
+		} elseif (!empty($size)) {
604 604
 
605
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
605
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
606 606
 
607 607
 		}
608 608
 
@@ -626,7 +626,7 @@  discard block
 block discarded – undo
626 626
 */
627 627
 
628 628
 
629
-if ( ! function_exists( 'createRandomString' ) ) {
629
+if (!function_exists('createRandomString')) {
630 630
 	/**
631 631
 	 * Creates random string.
632 632
 	 *
@@ -636,21 +636,21 @@  discard block
 block discarded – undo
636 636
 	 */
637 637
 	function createRandomString() {
638 638
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
639
-		srand( (double) microtime() * 1000000 );
639
+		srand((double) microtime() * 1000000);
640 640
 		$i       = 0;
641 641
 		$rstring = '';
642
-		while ( $i <= 25 ) {
642
+		while ($i <= 25) {
643 643
 			$num     = rand() % 33;
644
-			$tmp     = substr( $chars, $num, 1 );
645
-			$rstring = $rstring . $tmp;
646
-			$i ++;
644
+			$tmp     = substr($chars, $num, 1);
645
+			$rstring = $rstring.$tmp;
646
+			$i++;
647 647
 		}
648 648
 
649 649
 		return $rstring;
650 650
 	}
651 651
 }
652 652
 
653
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
653
+if (!function_exists('geodir_getDistanceRadius')) {
654 654
 	/**
655 655
 	 * Calculates the distance radius.
656 656
 	 *
@@ -661,9 +661,9 @@  discard block
 block discarded – undo
661 661
 	 *
662 662
 	 * @return float The mean radius.
663 663
 	 */
664
-	function geodir_getDistanceRadius( $uom = 'km' ) {
664
+	function geodir_getDistanceRadius($uom = 'km') {
665 665
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
666
-		switch ( geodir_strtolower( $uom ) ):
666
+		switch (geodir_strtolower($uom)):
667 667
 			case 'km'    :
668 668
 				$earthMeanRadius = 6371.009; // km
669 669
 				break;
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
 }
696 696
 
697 697
 
698
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
698
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
699 699
 	/**
700 700
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
701 701
 	 *
@@ -708,17 +708,17 @@  discard block
 block discarded – undo
708 708
 	 *
709 709
 	 * @return float The distance.
710 710
 	 */
711
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
711
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
712 712
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
713 713
 
714
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
714
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
715 715
 
716
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
717
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
718
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
719
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
720
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
721
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
716
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
717
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
718
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
719
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
720
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
721
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
722 722
 		$distance       = $earthMeanRadius * $c;
723 723
 
724 724
 		return $distance;
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
 }
728 728
 
729 729
 
730
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
730
+if (!function_exists('geodir_sendEmail')) {
731 731
 	/**
732 732
 	 * The main function that send transactional emails using the args provided.
733 733
 	 *
@@ -746,83 +746,83 @@  discard block
 block discarded – undo
746 746
 	 * @param string $post_id       The post ID.
747 747
 	 * @param string $user_id       The user ID.
748 748
 	 */
749
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
749
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
750 750
 		$login_details = '';
751 751
 
752 752
 		// strip slashes from subject & message text
753
-		$to_subject = stripslashes_deep( $to_subject );
754
-		$to_message = stripslashes_deep( $to_message );
755
-
756
-		if ( $message_type == 'send_friend' ) {
757
-			$subject = get_option( 'geodir_email_friend_subject' );
758
-			$message = get_option( 'geodir_email_friend_content' );
759
-		} elseif ( $message_type == 'send_enquiry' ) {
760
-			$subject = get_option( 'geodir_email_enquiry_subject' );
761
-			$message = get_option( 'geodir_email_enquiry_content' );
762
-		} elseif ( $message_type == 'forgot_password' ) {
763
-			$subject       = get_option( 'geodir_forgot_password_subject' );
764
-			$message       = get_option( 'geodir_forgot_password_content' );
753
+		$to_subject = stripslashes_deep($to_subject);
754
+		$to_message = stripslashes_deep($to_message);
755
+
756
+		if ($message_type == 'send_friend') {
757
+			$subject = get_option('geodir_email_friend_subject');
758
+			$message = get_option('geodir_email_friend_content');
759
+		} elseif ($message_type == 'send_enquiry') {
760
+			$subject = get_option('geodir_email_enquiry_subject');
761
+			$message = get_option('geodir_email_enquiry_content');
762
+		} elseif ($message_type == 'forgot_password') {
763
+			$subject       = get_option('geodir_forgot_password_subject');
764
+			$message       = get_option('geodir_forgot_password_content');
765 765
 			$login_details = $to_message;
766
-		} elseif ( $message_type == 'registration' ) {
767
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
768
-			$message       = get_option( 'geodir_registration_success_email_content' );
766
+		} elseif ($message_type == 'registration') {
767
+			$subject       = get_option('geodir_registration_success_email_subject');
768
+			$message       = get_option('geodir_registration_success_email_content');
769 769
 			$login_details = $to_message;
770
-		} elseif ( $message_type == 'post_submit' ) {
771
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
772
-			$message = get_option( 'geodir_post_submited_success_email_content' );
773
-		} elseif ( $message_type == 'listing_published' ) {
774
-			$subject = get_option( 'geodir_post_published_email_subject' );
775
-			$message = get_option( 'geodir_post_published_email_content' );
776
-		} elseif ( $message_type == 'listing_edited' ) {
777
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
778
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
770
+		} elseif ($message_type == 'post_submit') {
771
+			$subject = get_option('geodir_post_submited_success_email_subject');
772
+			$message = get_option('geodir_post_submited_success_email_content');
773
+		} elseif ($message_type == 'listing_published') {
774
+			$subject = get_option('geodir_post_published_email_subject');
775
+			$message = get_option('geodir_post_published_email_content');
776
+		} elseif ($message_type == 'listing_edited') {
777
+			$subject = get_option('geodir_post_edited_email_subject_admin');
778
+			$message = get_option('geodir_post_edited_email_content_admin');
779 779
 		}
780 780
 
781
-		if ( ! empty( $subject ) ) {
782
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
781
+		if (!empty($subject)) {
782
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
783 783
 		}
784 784
 
785
-		if ( ! empty( $message ) ) {
786
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
785
+		if (!empty($message)) {
786
+			$message = __(stripslashes_deep($message), 'geodirectory');
787 787
 		}
788 788
 
789
-		$to_message        = nl2br( $to_message );
790
-		$sitefromEmail     = get_option( 'site_email' );
789
+		$to_message        = nl2br($to_message);
790
+		$sitefromEmail     = get_option('site_email');
791 791
 		$sitefromEmailName = get_site_emailName();
792
-		$productlink       = get_permalink( $post_id );
792
+		$productlink       = get_permalink($post_id);
793 793
 
794 794
 		$user_login = '';
795
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
795
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
796 796
 			$user_login = $user_info->user_login;
797 797
 		}
798 798
 
799 799
 		$posted_date = '';
800 800
 		$listingLink = '';
801 801
 
802
-		$post_info = get_post( $post_id );
802
+		$post_info = get_post($post_id);
803 803
 
804
-		if ( $post_info ) {
804
+		if ($post_info) {
805 805
 			$posted_date = $post_info->post_date;
806
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
806
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
807 807
 		}
808 808
 		$siteurl       = home_url();
809
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
809
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
810 810
 		$loginurl      = geodir_login_url();
811
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
811
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
812 812
 
813
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
814
-		$post_author_name = geodir_get_client_name( $post_author_id );
815
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
813
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
814
+		$post_author_name = geodir_get_client_name($post_author_id);
815
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
816 816
 
817
-		if ( $fromEmail == '' ) {
818
-			$fromEmail = get_option( 'site_email' );
817
+		if ($fromEmail == '') {
818
+			$fromEmail = get_option('site_email');
819 819
 		}
820 820
 
821
-		if ( $fromEmailName == '' ) {
822
-			$fromEmailName = get_option( 'site_email_name' );
821
+		if ($fromEmailName == '') {
822
+			$fromEmailName = get_option('site_email_name');
823 823
 		}
824 824
 
825
-		$search_array  = array(
825
+		$search_array = array(
826 826
 			'[#listing_link#]',
827 827
 			'[#site_name_url#]',
828 828
 			'[#post_id#]',
@@ -862,7 +862,7 @@  discard block
 block discarded – undo
862 862
 			$post_author_name,
863 863
 			$current_date
864 864
 		);
865
-		$message       = str_replace( $search_array, $replace_array, $message );
865
+		$message       = str_replace($search_array, $replace_array, $message);
866 866
 
867 867
 		$search_array  = array(
868 868
 			'[#listing_link#]',
@@ -898,12 +898,12 @@  discard block
 block discarded – undo
898 898
 			$post_author_name,
899 899
 			$current_date
900 900
 		);
901
-		$subject       = str_replace( $search_array, $replace_array, $subject );
901
+		$subject = str_replace($search_array, $replace_array, $subject);
902 902
 
903
-		$headers = 'MIME-Version: 1.0' . "\r\n";
904
-		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
905
-		$headers .= "Reply-To: " . $fromEmail . "\r\n";
906
-		$headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n";
903
+		$headers = 'MIME-Version: 1.0'."\r\n";
904
+		$headers .= 'Content-type: text/html; charset=UTF-8'."\r\n";
905
+		$headers .= "Reply-To: ".$fromEmail."\r\n";
906
+		$headers .= 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>'."\r\n";
907 907
 
908 908
 		$to = $toEmail;
909 909
 
@@ -925,7 +925,7 @@  discard block
 block discarded – undo
925 925
 		 * @param string $post_id       The post ID.
926 926
 		 * @param string $user_id       The user ID.
927 927
 		 */
928
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
928
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
929 929
 		/**
930 930
 		 * Filter the client email subject.
931 931
 		 *
@@ -944,7 +944,7 @@  discard block
 block discarded – undo
944 944
 		 * @param string $post_id       The post ID.
945 945
 		 * @param string $user_id       The user ID.
946 946
 		 */
947
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
947
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
948 948
 		/**
949 949
 		 * Filter the client email message.
950 950
 		 *
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
 		 * @param string $post_id       The post ID.
964 964
 		 * @param string $user_id       The user ID.
965 965
 		 */
966
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
966
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
967 967
 		/**
968 968
 		 * Filter the client email headers.
969 969
 		 *
@@ -982,39 +982,39 @@  discard block
 block discarded – undo
982 982
 		 * @param string $post_id       The post ID.
983 983
 		 * @param string $user_id       The user ID.
984 984
 		 */
985
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
985
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
986 986
 
987
-		$sent = wp_mail( $to, $subject, $message, $headers );
987
+		$sent = wp_mail($to, $subject, $message, $headers);
988 988
 
989
-		if ( ! $sent ) {
990
-			if ( is_array( $to ) ) {
991
-				$to = implode( ',', $to );
989
+		if (!$sent) {
990
+			if (is_array($to)) {
991
+				$to = implode(',', $to);
992 992
 			}
993 993
 			$log_message = sprintf(
994
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
994
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
995 995
 				$message_type,
996
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
996
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
997 997
 				$to,
998 998
 				$subject
999 999
 			);
1000
-			geodir_error_log( $log_message );
1000
+			geodir_error_log($log_message);
1001 1001
 		}
1002 1002
 
1003 1003
 		///////// ADMIN BCC EMIALS
1004
-		$adminEmail = get_bloginfo( 'admin_email' );
1004
+		$adminEmail = get_bloginfo('admin_email');
1005 1005
 		$to         = $adminEmail;
1006 1006
 
1007 1007
 		$admin_bcc = false;
1008
-		if ( $message_type == 'registration' ) {
1009
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1010
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1011
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1008
+		if ($message_type == 'registration') {
1009
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1010
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1011
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1012 1012
 		}
1013
-		if ( $message_type == 'post_submit' ) {
1014
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1015
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1013
+		if ($message_type == 'post_submit') {
1014
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1015
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1016 1016
 
1017
-			$search_array  = array(
1017
+			$search_array = array(
1018 1018
 				'[#listing_link#]',
1019 1019
 				'[#site_name_url#]',
1020 1020
 				'[#post_id#]',
@@ -1046,7 +1046,7 @@  discard block
 block discarded – undo
1046 1046
 				$user_login,
1047 1047
 				$user_login
1048 1048
 			);
1049
-			$message       = str_replace( $search_array, $replace_array, $message );
1049
+			$message       = str_replace($search_array, $replace_array, $message);
1050 1050
 
1051 1051
 			$search_array  = array(
1052 1052
 				'[#listing_link#]',
@@ -1074,40 +1074,40 @@  discard block
 block discarded – undo
1074 1074
 				$user_login,
1075 1075
 				$user_login
1076 1076
 			);
1077
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1077
+			$subject = str_replace($search_array, $replace_array, $subject);
1078 1078
 
1079 1079
 			$subject .= ' - ADMIN BCC COPY';
1080 1080
 			$admin_bcc = true;
1081 1081
 
1082
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1082
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1083 1083
 			$subject .= ' - ADMIN BCC COPY';
1084 1084
 			$admin_bcc = true;
1085
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1085
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1086 1086
 			$subject .= ' - ADMIN BCC COPY';
1087 1087
 			$admin_bcc = true;
1088
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1088
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1089 1089
 			$subject .= ' - ADMIN BCC COPY';
1090 1090
 			$admin_bcc = true;
1091
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1091
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1092 1092
 			$subject .= ' - ADMIN BCC COPY';
1093 1093
 			$admin_bcc = true;
1094 1094
 		}
1095 1095
 
1096
-		if ( $admin_bcc === true ) {
1097
-			$sent = wp_mail( $to, $subject, $message, $headers );
1096
+		if ($admin_bcc === true) {
1097
+			$sent = wp_mail($to, $subject, $message, $headers);
1098 1098
 
1099
-			if ( ! $sent ) {
1100
-				if ( is_array( $to ) ) {
1101
-					$to = implode( ',', $to );
1099
+			if (!$sent) {
1100
+				if (is_array($to)) {
1101
+					$to = implode(',', $to);
1102 1102
 				}
1103 1103
 				$log_message = sprintf(
1104
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1104
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1105 1105
 					$message_type,
1106
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1106
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1107 1107
 					$to,
1108 1108
 					$subject
1109 1109
 				);
1110
-				geodir_error_log( $log_message );
1110
+				geodir_error_log($log_message);
1111 1111
 			}
1112 1112
 		}
1113 1113
 
@@ -1123,52 +1123,52 @@  discard block
 block discarded – undo
1123 1123
  */
1124 1124
 function geodir_taxonomy_breadcrumb() {
1125 1125
 
1126
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1126
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1127 1127
 	$parent = $term->parent;
1128 1128
 
1129
-	while ( $parent ):
1129
+	while ($parent):
1130 1130
 		$parents[]  = $parent;
1131
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1131
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1132 1132
 		$parent     = $new_parent->parent;
1133 1133
 	endwhile;
1134 1134
 
1135
-	if ( ! empty( $parents ) ):
1136
-		$parents = array_reverse( $parents );
1135
+	if (!empty($parents)):
1136
+		$parents = array_reverse($parents);
1137 1137
 
1138
-		foreach ( $parents as $parent ):
1139
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1140
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1141
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1138
+		foreach ($parents as $parent):
1139
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1140
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1141
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1142 1142
 		endforeach;
1143 1143
 
1144 1144
 	endif;
1145 1145
 
1146
-	echo '<li> > ' . $term->name . '</li>';
1146
+	echo '<li> > '.$term->name.'</li>';
1147 1147
 }
1148 1148
 
1149
-function geodir_wpml_post_type_archive_link($link, $post_type){
1149
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1150 1150
 
1151
-	if(function_exists('icl_object_id')) {
1152
-		$post_types   = get_option( 'geodir_post_types' );
1153
-		$slug         = $post_types[ $post_type ]['rewrite']['slug'];
1151
+	if (function_exists('icl_object_id')) {
1152
+		$post_types   = get_option('geodir_post_types');
1153
+		$slug         = $post_types[$post_type]['rewrite']['slug'];
1154 1154
 
1155 1155
 		//echo $link.'###'.gd_wpml_get_lang_from_url( $link) ;
1156 1156
 
1157 1157
 		// Alter the CPT slug if WPML is set to do so
1158
-		if ( function_exists( 'icl_object_id' ) ) {
1159
-			if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1158
+		if (function_exists('icl_object_id')) {
1159
+			if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1160 1160
 
1161 1161
 				$org_slug = $slug;
1162
-				$slug     = apply_filters( 'wpml_translate_single_string',
1162
+				$slug     = apply_filters('wpml_translate_single_string',
1163 1163
 					$slug,
1164 1164
 					'WordPress',
1165
-					'URL slug: ' . $slug,
1166
-					$language_code );
1165
+					'URL slug: '.$slug,
1166
+					$language_code);
1167 1167
 
1168
-				if ( ! $slug ) {
1168
+				if (!$slug) {
1169 1169
 					$slug = $org_slug;
1170 1170
 				} else {
1171
-					$link = str_replace( $org_slug, $slug, $link );
1171
+					$link = str_replace($org_slug, $slug, $link);
1172 1172
 				}
1173 1173
 
1174 1174
 			}
@@ -1199,9 +1199,9 @@  discard block
 block discarded – undo
1199 1199
 	 *
1200 1200
 	 * @since 1.0.0
1201 1201
 	 */
1202
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1202
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1203 1203
 
1204
-	if ( ! geodir_is_page( 'home' ) ) {
1204
+	if (!geodir_is_page('home')) {
1205 1205
 		$breadcrumb    = '';
1206 1206
 		$url_categoris = '';
1207 1207
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1210,162 +1210,162 @@  discard block
 block discarded – undo
1210 1210
 		 *
1211 1211
 		 * @since 1.0.0
1212 1212
 		 */
1213
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1213
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1214 1214
 
1215 1215
 		$gd_post_type   = geodir_get_current_posttype();
1216
-		$post_type_info = get_post_type_object( $gd_post_type );
1216
+		$post_type_info = get_post_type_object($gd_post_type);
1217 1217
 
1218
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1218
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1219 1219
 
1220
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1220
+		$listing_link = get_post_type_archive_link($gd_post_type);
1221 1221
 
1222
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1223
-		$listing_link = rtrim( $listing_link, '/' );
1222
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1223
+		$listing_link = rtrim($listing_link, '/');
1224 1224
 		$listing_link .= '/';
1225 1225
 
1226 1226
 		$post_type_for_location_link = $listing_link;
1227
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1227
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1228 1228
 
1229 1229
 		global $wp, $gd_session;
1230 1230
 		$location_link = $post_type_for_location_link;
1231 1231
 
1232
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1232
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1233 1233
 			global $post;
1234
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1235
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1234
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1235
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1236 1236
 
1237
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1237
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1238 1238
 				$location_terms = array(
1239 1239
 					'gd_country' => $post->country_slug,
1240 1240
 					'gd_region'  => $post->region_slug,
1241 1241
 					'gd_city'    => $post->city_slug
1242 1242
 				);
1243 1243
 
1244
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1244
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1245 1245
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1246 1246
 				}
1247 1247
 			}
1248 1248
 
1249
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1249
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1250 1250
 
1251 1251
 			$hide_url_part = array();
1252
-			if ( $location_manager ) {
1253
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1254
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1255
-
1256
-				if ( $hide_region_part && $hide_country_part ) {
1257
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1258
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1259
-					$hide_url_part = array( 'gd_region' );
1260
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1261
-					$hide_url_part = array( 'gd_country' );
1252
+			if ($location_manager) {
1253
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1254
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1255
+
1256
+				if ($hide_region_part && $hide_country_part) {
1257
+					$hide_url_part = array('gd_country', 'gd_region');
1258
+				} else if ($hide_region_part && !$hide_country_part) {
1259
+					$hide_url_part = array('gd_region');
1260
+				} else if (!$hide_region_part && $hide_country_part) {
1261
+					$hide_url_part = array('gd_country');
1262 1262
 				}
1263 1263
 			}
1264 1264
 
1265 1265
 			$hide_text_part = array();
1266
-			if ( $geodir_show_location_url == 'country_city' ) {
1267
-				$hide_text_part = array( 'gd_region' );
1266
+			if ($geodir_show_location_url == 'country_city') {
1267
+				$hide_text_part = array('gd_region');
1268 1268
 
1269
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1270
-					unset( $location_terms['gd_region'] );
1269
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1270
+					unset($location_terms['gd_region']);
1271 1271
 				}
1272
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1273
-				$hide_text_part = array( 'gd_country' );
1272
+			} else if ($geodir_show_location_url == 'region_city') {
1273
+				$hide_text_part = array('gd_country');
1274 1274
 
1275
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1276
-					unset( $location_terms['gd_country'] );
1275
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1276
+					unset($location_terms['gd_country']);
1277 1277
 				}
1278
-			} else if ( $geodir_show_location_url == 'city' ) {
1279
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1278
+			} else if ($geodir_show_location_url == 'city') {
1279
+				$hide_text_part = array('gd_country', 'gd_region');
1280 1280
 
1281
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1282
-					unset( $location_terms['gd_country'] );
1281
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1282
+					unset($location_terms['gd_country']);
1283 1283
 				}
1284
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1285
-					unset( $location_terms['gd_region'] );
1284
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1285
+					unset($location_terms['gd_region']);
1286 1286
 				}
1287 1287
 			}
1288 1288
 
1289 1289
 			$is_location_last = '';
1290 1290
 			$is_taxonomy_last = '';
1291 1291
 			$breadcrumb .= '<li>';
1292
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1293
-				$gd_taxonomy = $gd_post_type . 'category';
1294
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1295
-				$gd_taxonomy = $gd_post_type . '_tags';
1292
+			if (get_query_var($gd_post_type.'category')) {
1293
+				$gd_taxonomy = $gd_post_type.'category';
1294
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1295
+				$gd_taxonomy = $gd_post_type.'_tags';
1296 1296
 			}
1297 1297
 
1298
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1299
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1298
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1299
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1300 1300
 				$is_location_last = false;
1301 1301
 			} else {
1302 1302
 				$is_location_last = true;
1303 1303
 			}
1304 1304
 
1305
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1305
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1306 1306
 				$is_taxonomy_last = true;
1307 1307
 			} else {
1308 1308
 				$is_taxonomy_last = false;
1309 1309
 			}
1310 1310
 
1311
-			if ( ! empty( $location_terms ) ) {
1312
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1311
+			if (!empty($location_terms)) {
1312
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1313 1313
 
1314
-				foreach ( $location_terms as $key => $location_term ) {
1315
-					if ( $location_term != '' ) {
1316
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1314
+				foreach ($location_terms as $key => $location_term) {
1315
+					if ($location_term != '') {
1316
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1317 1317
 							continue;
1318 1318
 						}
1319 1319
 
1320
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1321
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1322
-						$gd_location_link_text = ucfirst( $gd_location_link_text );
1320
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1321
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1322
+						$gd_location_link_text = ucfirst($gd_location_link_text);
1323 1323
 
1324 1324
 						$location_term_actual_country = '';
1325 1325
 						$location_term_actual_region  = '';
1326 1326
 						$location_term_actual_city    = '';
1327
-						if ( $geodir_get_locations ) {
1328
-							if ( $key == 'gd_country' ) {
1329
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1330
-							} else if ( $key == 'gd_region' ) {
1331
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1332
-							} else if ( $key == 'gd_city' ) {
1333
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1327
+						if ($geodir_get_locations) {
1328
+							if ($key == 'gd_country') {
1329
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1330
+							} else if ($key == 'gd_region') {
1331
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1332
+							} else if ($key == 'gd_city') {
1333
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1334 1334
 							}
1335 1335
 						} else {
1336 1336
 							$location_info = geodir_get_location();
1337 1337
 
1338
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1339
-								if ( $key == 'gd_country' ) {
1340
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1341
-								} else if ( $key == 'gd_region' ) {
1342
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1343
-								} else if ( $key == 'gd_city' ) {
1344
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1338
+							if (!empty($location_info) && isset($location_info->location_id)) {
1339
+								if ($key == 'gd_country') {
1340
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1341
+								} else if ($key == 'gd_region') {
1342
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1343
+								} else if ($key == 'gd_city') {
1344
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1345 1345
 								}
1346 1346
 							}
1347 1347
 						}
1348 1348
 
1349
-						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'] != '' ) ) {
1350
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1351
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1352
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1353
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1354
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1355
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1356
-							$breadcrumb .= $separator . $gd_location_link_text;
1349
+						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'] != '')) {
1350
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1351
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1352
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1353
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1354
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1355
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1356
+							$breadcrumb .= $separator.$gd_location_link_text;
1357 1357
 						} else {
1358
-							if ( get_option( 'permalink_structure' ) != '' ) {
1359
-								$location_link .= $location_term . '/';
1358
+							if (get_option('permalink_structure') != '') {
1359
+								$location_link .= $location_term.'/';
1360 1360
 							} else {
1361
-								$location_link .= "&$key=" . $location_term;
1361
+								$location_link .= "&$key=".$location_term;
1362 1362
 							}
1363 1363
 
1364
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1364
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1365 1365
 								$gd_location_link_text = $location_term_actual_country;
1366
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1366
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1367 1367
 								$gd_location_link_text = $location_term_actual_region;
1368
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1368
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1369 1369
 								$gd_location_link_text = $location_term_actual_city;
1370 1370
 							}
1371 1371
 
@@ -1375,76 +1375,76 @@  discard block
 block discarded – undo
1375 1375
                             }
1376 1376
                             */
1377 1377
 
1378
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1378
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1379 1379
 						}
1380 1380
 					}
1381 1381
 				}
1382 1382
 			}
1383 1383
 
1384
-			if ( ! empty( $gd_taxonomy ) ) {
1384
+			if (!empty($gd_taxonomy)) {
1385 1385
 				$term_index = 1;
1386 1386
 
1387 1387
 				//if(get_option('geodir_add_categories_url'))
1388 1388
 				{
1389
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1390
-						$cat_link = $listing_link . 'tags/';
1389
+					if (get_query_var($gd_post_type.'_tags')) {
1390
+						$cat_link = $listing_link.'tags/';
1391 1391
 					} else {
1392 1392
 						$cat_link = $listing_link;
1393 1393
 					}
1394 1394
 
1395
-					foreach ( $location_terms as $key => $location_term ) {
1396
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1395
+					foreach ($location_terms as $key => $location_term) {
1396
+						if ($location_manager && in_array($key, $hide_url_part)) {
1397 1397
 							continue;
1398 1398
 						}
1399 1399
 
1400
-						if ( $location_term != '' ) {
1401
-							if ( get_option( 'permalink_structure' ) != '' ) {
1402
-								$cat_link .= $location_term . '/';
1400
+						if ($location_term != '') {
1401
+							if (get_option('permalink_structure') != '') {
1402
+								$cat_link .= $location_term.'/';
1403 1403
 							}
1404 1404
 						}
1405 1405
 					}
1406 1406
 
1407
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1408
-					foreach ( $term_array as $term ) {
1409
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1410
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1407
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1408
+					foreach ($term_array as $term) {
1409
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1410
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1411 1411
 
1412 1412
 						// get term actual name
1413
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1414
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1415
-							$term_link_text = urldecode( $term_info['name'] );
1413
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1414
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1415
+							$term_link_text = urldecode($term_info['name']);
1416 1416
 						} else {
1417 1417
 							continue;
1418 1418
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1419 1419
 						}
1420 1420
 
1421
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1422
-							$breadcrumb .= $separator . $term_link_text;
1421
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1422
+							$breadcrumb .= $separator.$term_link_text;
1423 1423
 						} else {
1424
-							$cat_link .= $term . '/';
1425
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1424
+							$cat_link .= $term.'/';
1425
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1426 1426
 						}
1427
-						$term_index ++;
1427
+						$term_index++;
1428 1428
 					}
1429 1429
 				}
1430 1430
 
1431 1431
 
1432 1432
 			}
1433 1433
 
1434
-			if ( geodir_is_page( 'detail' ) ) {
1435
-				$breadcrumb .= $separator . get_the_title();
1434
+			if (geodir_is_page('detail')) {
1435
+				$breadcrumb .= $separator.get_the_title();
1436 1436
 			}
1437 1437
 
1438 1438
 			$breadcrumb .= '</li>';
1439 1439
 
1440 1440
 
1441
-		} elseif ( geodir_is_page( 'author' ) ) {
1441
+		} elseif (geodir_is_page('author')) {
1442 1442
 			$user_id             = get_current_user_id();
1443
-			$author_link         = get_author_posts_url( $user_id );
1444
-			$default_author_link = geodir_getlink( $author_link, array(
1443
+			$author_link         = get_author_posts_url($user_id);
1444
+			$default_author_link = geodir_getlink($author_link, array(
1445 1445
 				'geodir_dashbord' => 'true',
1446 1446
 				'stype'           => 'gd_place'
1447
-			), false );
1447
+			), false);
1448 1448
 
1449 1449
 			/**
1450 1450
 			 * Filter author page link.
@@ -1454,16 +1454,16 @@  discard block
 block discarded – undo
1454 1454
 			 * @param string $default_author_link Default author link.
1455 1455
 			 * @param int $user_id                Author ID.
1456 1456
 			 */
1457
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1457
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1458 1458
 
1459 1459
 			$breadcrumb .= '<li>';
1460
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1460
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1461 1461
 
1462
-			if ( isset( $_REQUEST['list'] ) ) {
1463
-				$author_link = geodir_getlink( $author_link, array(
1462
+			if (isset($_REQUEST['list'])) {
1463
+				$author_link = geodir_getlink($author_link, array(
1464 1464
 					'geodir_dashbord' => 'true',
1465 1465
 					'stype'           => $_REQUEST['stype']
1466
-				), false );
1466
+				), false);
1467 1467
 
1468 1468
 				/**
1469 1469
 				 * Filter author page link.
@@ -1474,61 +1474,61 @@  discard block
 block discarded – undo
1474 1474
 				 * @param int $user_id        Author ID.
1475 1475
 				 * @param string $_REQUEST    ['stype'] Post type.
1476 1476
 				 */
1477
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1477
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1478 1478
 
1479
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1480
-				$breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1479
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1480
+				$breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1481 1481
 			} else {
1482
-				$breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' );
1482
+				$breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory');
1483 1483
 			}
1484 1484
 
1485 1485
 			$breadcrumb .= '</li>';
1486
-		} elseif ( is_category() || is_single() ) {
1486
+		} elseif (is_category() || is_single()) {
1487 1487
 			$category = get_the_category();
1488
-			if ( is_category() ) {
1489
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1488
+			if (is_category()) {
1489
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1490 1490
 			}
1491
-			if ( is_single() ) {
1492
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1493
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1491
+			if (is_single()) {
1492
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1493
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1494 1494
 			}
1495 1495
 			/* End of my version ##################################################### */
1496
-		} else if ( is_page() ) {
1496
+		} else if (is_page()) {
1497 1497
 			$page_title = get_the_title();
1498 1498
 
1499
-			if ( geodir_is_page( 'location' ) ) {
1499
+			if (geodir_is_page('location')) {
1500 1500
 				$location_page_id = geodir_location_page_id();
1501
-				$loc_post         = get_post( $location_page_id );
1501
+				$loc_post         = get_post($location_page_id);
1502 1502
 				$post_name        = $loc_post->post_name;
1503
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1504
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1503
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1504
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1505 1505
 			}
1506 1506
 
1507
-			$breadcrumb .= '<li>' . $separator;
1508
-			$breadcrumb .= stripslashes_deep( $page_title );
1507
+			$breadcrumb .= '<li>'.$separator;
1508
+			$breadcrumb .= stripslashes_deep($page_title);
1509 1509
 			$breadcrumb .= '</li>';
1510
-		} else if ( is_tag() ) {
1511
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1512
-		} else if ( is_day() ) {
1513
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1514
-			the_time( 'F jS, Y' );
1510
+		} else if (is_tag()) {
1511
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1512
+		} else if (is_day()) {
1513
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1514
+			the_time('F jS, Y');
1515 1515
 			$breadcrumb .= '</li>';
1516
-		} else if ( is_month() ) {
1517
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1518
-			the_time( 'F, Y' );
1516
+		} else if (is_month()) {
1517
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1518
+			the_time('F, Y');
1519 1519
 			$breadcrumb .= '</li>';
1520
-		} else if ( is_year() ) {
1521
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1522
-			the_time( 'Y' );
1520
+		} else if (is_year()) {
1521
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1522
+			the_time('Y');
1523 1523
 			$breadcrumb .= '</li>';
1524
-		} else if ( is_author() ) {
1525
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1524
+		} else if (is_author()) {
1525
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1526 1526
 			$breadcrumb .= '</li>';
1527
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1528
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1527
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1528
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1529 1529
 			$breadcrumb .= '</li>';
1530
-		} else if ( is_search() ) {
1531
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1530
+		} else if (is_search()) {
1531
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1532 1532
 			$breadcrumb .= '</li>';
1533 1533
 		}
1534 1534
 		$breadcrumb .= '</ul></div>';
@@ -1541,13 +1541,13 @@  discard block
 block discarded – undo
1541 1541
 		 * @param string $breadcrumb Breadcrumb HTML.
1542 1542
 		 * @param string $separator  Breadcrumb separator.
1543 1543
 		 */
1544
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1544
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1545 1545
 	}
1546 1546
 }
1547 1547
 
1548 1548
 
1549
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1550
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1549
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1550
+if (!function_exists('geodir_allow_wpadmin')) {
1551 1551
 	/**
1552 1552
 	 * Allow only admins to access wp-admin.
1553 1553
 	 *
@@ -1559,12 +1559,12 @@  discard block
 block discarded – undo
1559 1559
 	 */
1560 1560
 	function geodir_allow_wpadmin() {
1561 1561
 		global $wpdb;
1562
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1562
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1563 1563
 		{
1564
-			if ( current_user_can( 'administrator' ) ) {
1564
+			if (current_user_can('administrator')) {
1565 1565
 			} else {
1566 1566
 
1567
-				wp_redirect( home_url() );
1567
+				wp_redirect(home_url());
1568 1568
 				exit;
1569 1569
 			}
1570 1570
 
@@ -1583,23 +1583,23 @@  discard block
 block discarded – undo
1583 1583
  *
1584 1584
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1585 1585
  */
1586
-function fetch_remote_file( $url ) {
1586
+function fetch_remote_file($url) {
1587 1587
 	// extract the file name and extension from the url
1588
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1589
-	$file_name = basename( $url );
1590
-	if ( strpos( $file_name, '?' ) !== false ) {
1591
-		list( $file_name ) = explode( '?', $file_name );
1588
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1589
+	$file_name = basename($url);
1590
+	if (strpos($file_name, '?') !== false) {
1591
+		list($file_name) = explode('?', $file_name);
1592 1592
 	}
1593 1593
 	$dummy        = false;
1594 1594
 	$add_to_cache = false;
1595 1595
 	$key          = null;
1596
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1596
+	if (strpos($url, '/dummy/') !== false) {
1597 1597
 		$dummy = true;
1598
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1599
-		$value = get_transient( 'cached_dummy_images' );
1600
-		if ( $value ) {
1601
-			if ( isset( $value[ $key ] ) ) {
1602
-				return $value[ $key ];
1598
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1599
+		$value = get_transient('cached_dummy_images');
1600
+		if ($value) {
1601
+			if (isset($value[$key])) {
1602
+				return $value[$key];
1603 1603
 			} else {
1604 1604
 				$add_to_cache = true;
1605 1605
 			}
@@ -1610,58 +1610,58 @@  discard block
 block discarded – undo
1610 1610
 
1611 1611
 	// get placeholder file in the upload dir with a unique, sanitized filename
1612 1612
 
1613
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1613
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1614 1614
 
1615
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1616
-	if ( $upload['error'] ) {
1617
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1615
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1616
+	if ($upload['error']) {
1617
+		return new WP_Error('upload_dir_error', $upload['error']);
1618 1618
 	}
1619 1619
 
1620 1620
 
1621
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1621
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1622 1622
 
1623 1623
 	// fetch the remote url and write it to the placeholder file
1624
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1624
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1625 1625
 
1626 1626
 	$log_message = '';
1627
-	if ( is_wp_error( $headers ) ) {
1628
-		echo 'file: ' . $url;
1627
+	if (is_wp_error($headers)) {
1628
+		echo 'file: '.$url;
1629 1629
 
1630
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1630
+		return new WP_Error('import_file_error', $headers->get_error_message());
1631 1631
 	}
1632 1632
 
1633
-	$filesize = filesize( $upload['file'] );
1633
+	$filesize = filesize($upload['file']);
1634 1634
 	// request failed
1635
-	if ( ! $headers ) {
1636
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1635
+	if (!$headers) {
1636
+		$log_message = __('Remote server did not respond', 'geodirectory');
1637 1637
 	} // make sure the fetch was successful
1638
-	elseif ( $headers['response']['code'] != '200' ) {
1639
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1640
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1641
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1642
-	} elseif ( 0 == $filesize ) {
1643
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1644
-	}
1645
-
1646
-	if ( $log_message ) {
1647
-		$del = unlink( $upload['file'] );
1648
-		if ( ! $del ) {
1649
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1638
+	elseif ($headers['response']['code'] != '200') {
1639
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1640
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1641
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1642
+	} elseif (0 == $filesize) {
1643
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1644
+	}
1645
+
1646
+	if ($log_message) {
1647
+		$del = unlink($upload['file']);
1648
+		if (!$del) {
1649
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1650 1650
 		}
1651 1651
 
1652
-		return new WP_Error( 'import_file_error', $log_message );
1652
+		return new WP_Error('import_file_error', $log_message);
1653 1653
 	}
1654 1654
 
1655
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1656
-		$images = get_transient( 'cached_dummy_images' );
1657
-		if ( is_array( $images ) ) {
1658
-			$images[ $key ] = $upload;
1655
+	if ($dummy && $add_to_cache && is_array($upload)) {
1656
+		$images = get_transient('cached_dummy_images');
1657
+		if (is_array($images)) {
1658
+			$images[$key] = $upload;
1659 1659
 		} else {
1660
-			$images = array( $key => $upload );
1660
+			$images = array($key => $upload);
1661 1661
 		}
1662 1662
 
1663 1663
 		//setting the cache using the WP Transient API
1664
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1664
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1665 1665
 	}
1666 1666
 
1667 1667
 	return $upload;
@@ -1675,12 +1675,12 @@  discard block
 block discarded – undo
1675 1675
  * @return string|void Max upload size.
1676 1676
  */
1677 1677
 function geodir_max_upload_size() {
1678
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1678
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1679 1679
 
1680
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1681
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1680
+	if ($max_filesize > 0 && $max_filesize < 1) {
1681
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1682 1682
 	} else {
1683
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1683
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1684 1684
 	}
1685 1685
 
1686 1686
 	/**
@@ -1690,7 +1690,7 @@  discard block
 block discarded – undo
1690 1690
 	 *
1691 1691
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1692 1692
 	 */
1693
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1693
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1694 1694
 }
1695 1695
 
1696 1696
 /**
@@ -1703,8 +1703,8 @@  discard block
 block discarded – undo
1703 1703
  * @return bool If dummy folder exists returns true, else false.
1704 1704
  */
1705 1705
 function geodir_dummy_folder_exists() {
1706
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1707
-	if ( ! is_dir( $path ) ) {
1706
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1707
+	if (!is_dir($path)) {
1708 1708
 		return false;
1709 1709
 	} else {
1710 1710
 		return true;
@@ -1723,17 +1723,17 @@  discard block
 block discarded – undo
1723 1723
  *
1724 1724
  * @return object Author info.
1725 1725
  */
1726
-function geodir_get_author_info( $aid ) {
1726
+function geodir_get_author_info($aid) {
1727 1727
 	global $wpdb;
1728 1728
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1729
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1730
-	$info    = $wpdb->get_results( $infosql );
1731
-	if ( $info ) {
1729
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1730
+	$info    = $wpdb->get_results($infosql);
1731
+	if ($info) {
1732 1732
 		return $info[0];
1733 1733
 	}
1734 1734
 }
1735 1735
 
1736
-if ( ! function_exists( 'adminEmail' ) ) {
1736
+if (!function_exists('adminEmail')) {
1737 1737
 	/**
1738 1738
 	 * Send emails to client on post submission, renew etc.
1739 1739
 	 *
@@ -1746,67 +1746,67 @@  discard block
 block discarded – undo
1746 1746
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1747 1747
 	 * @param string $custom_1     Custom data to be sent.
1748 1748
 	 */
1749
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1749
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1750 1750
 		global $wpdb;
1751
-		if ( $message_type == 'expiration' ) {
1752
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1753
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1754
-		} elseif ( $message_type == 'post_submited' ) {
1755
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1756
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1757
-		} elseif ( $message_type == 'renew' ) {
1758
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1759
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1760
-		} elseif ( $message_type == 'upgrade' ) {
1761
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1762
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1763
-		} elseif ( $message_type == 'claim_approved' ) {
1764
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1765
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1766
-		} elseif ( $message_type == 'claim_rejected' ) {
1767
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1768
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1769
-		} elseif ( $message_type == 'claim_requested' ) {
1770
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1771
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1772
-		} elseif ( $message_type == 'auto_claim' ) {
1773
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1774
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1775
-		} elseif ( $message_type == 'payment_success' ) {
1776
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1777
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1778
-		} elseif ( $message_type == 'payment_fail' ) {
1779
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1780
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1751
+		if ($message_type == 'expiration') {
1752
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1753
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1754
+		} elseif ($message_type == 'post_submited') {
1755
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1756
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1757
+		} elseif ($message_type == 'renew') {
1758
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1759
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1760
+		} elseif ($message_type == 'upgrade') {
1761
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1762
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1763
+		} elseif ($message_type == 'claim_approved') {
1764
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1765
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1766
+		} elseif ($message_type == 'claim_rejected') {
1767
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1768
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1769
+		} elseif ($message_type == 'claim_requested') {
1770
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1771
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1772
+		} elseif ($message_type == 'auto_claim') {
1773
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1774
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1775
+		} elseif ($message_type == 'payment_success') {
1776
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1777
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1778
+		} elseif ($message_type == 'payment_fail') {
1779
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1780
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1781 1781
 		}
1782 1782
 		$transaction_details = $custom_1;
1783
-		$fromEmail           = get_option( 'site_email' );
1783
+		$fromEmail           = get_option('site_email');
1784 1784
 		$fromEmailName       = get_site_emailName();
1785 1785
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1786
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1786
+		$pkg_limit            = get_property_price_info_listing($page_id);
1787 1787
 		$alivedays            = $pkg_limit['days'];
1788
-		$productlink          = get_permalink( $page_id );
1789
-		$post_info            = get_post( $page_id );
1790
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1791
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1788
+		$productlink          = get_permalink($page_id);
1789
+		$post_info            = get_post($page_id);
1790
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1791
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1792 1792
 		$loginurl             = geodir_login_url();
1793
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1793
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1794 1794
 		$siteurl              = home_url();
1795
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1796
-		$user_info            = get_userdata( $user_id );
1795
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1796
+		$user_info            = get_userdata($user_id);
1797 1797
 		$user_email           = $user_info->user_email;
1798
-		$display_name         = geodir_get_client_name( $user_id );
1798
+		$display_name         = geodir_get_client_name($user_id);
1799 1799
 		$user_login           = $user_info->user_login;
1800
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1801
-		if ( $number_of_grace_days == '' ) {
1800
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1801
+		if ($number_of_grace_days == '') {
1802 1802
 			$number_of_grace_days = 1;
1803 1803
 		}
1804
-		if ( $post_info->post_type == 'event' ) {
1804
+		if ($post_info->post_type == 'event') {
1805 1805
 			$post_type = 'event';
1806 1806
 		} else {
1807 1807
 			$post_type = 'listing';
1808 1808
 		}
1809
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1809
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1810 1810
 		$search_array   = array(
1811 1811
 			'[#client_name#]',
1812 1812
 			'[#listing_link#]',
@@ -1822,7 +1822,7 @@  discard block
 block discarded – undo
1822 1822
 			'[#site_name#]',
1823 1823
 			'[#transaction_details#]'
1824 1824
 		);
1825
-		$replace_array  = array(
1825
+		$replace_array = array(
1826 1826
 			$display_name,
1827 1827
 			$listingLink,
1828 1828
 			$post_date,
@@ -1837,11 +1837,11 @@  discard block
 block discarded – undo
1837 1837
 			$fromEmailName,
1838 1838
 			$transaction_details
1839 1839
 		);
1840
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1841
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1842
-		$headers        = 'MIME-Version: 1.0' . "\r\n";
1843
-		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
1844
-		$headers .= 'From: ' . $fromEmailName . ' <' . $fromEmail . '>' . "\r\n";
1840
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1841
+		$subject        = str_replace($search_array, $replace_array, $subject);
1842
+		$headers        = 'MIME-Version: 1.0'."\r\n";
1843
+		$headers .= 'Content-type: text/html; charset=UTF-8'."\r\n";
1844
+		$headers .= 'From: '.$fromEmailName.' <'.$fromEmail.'>'."\r\n";
1845 1845
 
1846 1846
 		$to      = $fromEmail;
1847 1847
 		$message = $client_message;
@@ -1859,7 +1859,7 @@  discard block
 block discarded – undo
1859 1859
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1860 1860
 		 * @param string $custom_1     Custom data to be sent.
1861 1861
 		 */
1862
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1862
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1863 1863
 		/**
1864 1864
 		 * Filter the admin email subject.
1865 1865
 		 *
@@ -1872,7 +1872,7 @@  discard block
 block discarded – undo
1872 1872
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1873 1873
 		 * @param string $custom_1     Custom data to be sent.
1874 1874
 		 */
1875
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1875
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1876 1876
 		/**
1877 1877
 		 * Filter the admin email message.
1878 1878
 		 *
@@ -1885,7 +1885,7 @@  discard block
 block discarded – undo
1885 1885
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1886 1886
 		 * @param string $custom_1     Custom data to be sent.
1887 1887
 		 */
1888
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1888
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1889 1889
 		/**
1890 1890
 		 * Filter the admin email headers.
1891 1891
 		 *
@@ -1898,22 +1898,22 @@  discard block
 block discarded – undo
1898 1898
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1899 1899
 		 * @param string $custom_1     Custom data to be sent.
1900 1900
 		 */
1901
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1901
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1902 1902
 
1903 1903
 
1904
-		$sent = wp_mail( $to, $subject, $message, $headers );
1905
-		if ( ! $sent ) {
1906
-			if ( is_array( $to ) ) {
1907
-				$to = implode( ',', $to );
1904
+		$sent = wp_mail($to, $subject, $message, $headers);
1905
+		if (!$sent) {
1906
+			if (is_array($to)) {
1907
+				$to = implode(',', $to);
1908 1908
 			}
1909 1909
 			$log_message = sprintf(
1910
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1910
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1911 1911
 				$message_type,
1912
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1912
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1913 1913
 				$to,
1914 1914
 				$subject
1915 1915
 			);
1916
-			geodir_error_log( $log_message );
1916
+			geodir_error_log($log_message);
1917 1917
 		}
1918 1918
 	}
1919 1919
 }
@@ -1933,12 +1933,12 @@  discard block
 block discarded – undo
1933 1933
  *
1934 1934
  * @return array Category IDs.
1935 1935
  */
1936
-function gd_lang_object_ids( $ids_array, $type ) {
1937
-	if ( function_exists( 'icl_object_id' ) ) {
1936
+function gd_lang_object_ids($ids_array, $type) {
1937
+	if (function_exists('icl_object_id')) {
1938 1938
 		$res = array();
1939
-		foreach ( $ids_array as $id ) {
1940
-			$xlat = icl_object_id( $id, $type, false );
1941
-			if ( ! is_null( $xlat ) ) {
1939
+		foreach ($ids_array as $id) {
1940
+			$xlat = icl_object_id($id, $type, false);
1941
+			if (!is_null($xlat)) {
1942 1942
 				$res[] = $xlat;
1943 1943
 			}
1944 1944
 		}
@@ -1962,20 +1962,20 @@  discard block
 block discarded – undo
1962 1962
  *
1963 1963
  * @return array Modified Body CSS classes.
1964 1964
  */
1965
-function geodir_custom_posts_body_class( $classes ) {
1965
+function geodir_custom_posts_body_class($classes) {
1966 1966
 	global $wpdb, $wp;
1967
-	$post_types = geodir_get_posttypes( 'object' );
1968
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
1967
+	$post_types = geodir_get_posttypes('object');
1968
+	if (!empty($post_types) && count((array) $post_types) > 1) {
1969 1969
 		$classes[] = 'geodir_custom_posts';
1970 1970
 	}
1971 1971
 
1972 1972
 	// fix body class for signup page
1973
-	if ( geodir_is_page( 'login' ) ) {
1973
+	if (geodir_is_page('login')) {
1974 1974
 		$new_classes   = array();
1975 1975
 		$new_classes[] = 'signup page-geodir-signup';
1976
-		if ( ! empty( $classes ) ) {
1977
-			foreach ( $classes as $class ) {
1978
-				if ( $class && $class != 'home' && $class != 'blog' ) {
1976
+		if (!empty($classes)) {
1977
+			foreach ($classes as $class) {
1978
+				if ($class && $class != 'home' && $class != 'blog') {
1979 1979
 					$new_classes[] = $class;
1980 1980
 				}
1981 1981
 			}
@@ -1983,14 +1983,14 @@  discard block
 block discarded – undo
1983 1983
 		$classes = $new_classes;
1984 1984
 	}
1985 1985
 
1986
-	if ( geodir_is_geodir_page() ) {
1986
+	if (geodir_is_geodir_page()) {
1987 1987
 		$classes[] = 'geodir-page';
1988 1988
 	}
1989 1989
 
1990 1990
 	return $classes;
1991 1991
 }
1992 1992
 
1993
-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
1993
+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
1994 1994
 
1995 1995
 
1996 1996
 /**
@@ -2006,7 +2006,7 @@  discard block
 block discarded – undo
2006 2006
 	 *
2007 2007
 	 * @since 1.0.0
2008 2008
 	 */
2009
-	return apply_filters( 'geodir_map_zoom_level', array(
2009
+	return apply_filters('geodir_map_zoom_level', array(
2010 2010
 		1,
2011 2011
 		2,
2012 2012
 		3,
@@ -2026,7 +2026,7 @@  discard block
 block discarded – undo
2026 2026
 		17,
2027 2027
 		18,
2028 2028
 		19
2029
-	) );
2029
+	));
2030 2030
 
2031 2031
 }
2032 2032
 
@@ -2039,12 +2039,12 @@  discard block
 block discarded – undo
2039 2039
  *
2040 2040
  * @param string $geodir_option_name Option key.
2041 2041
  */
2042
-function geodir_option_version_backup( $geodir_option_name ) {
2042
+function geodir_option_version_backup($geodir_option_name) {
2043 2043
 	$version_date  = time();
2044
-	$geodir_option = get_option( $geodir_option_name );
2044
+	$geodir_option = get_option($geodir_option_name);
2045 2045
 
2046
-	if ( ! empty( $geodir_option ) ) {
2047
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2046
+	if (!empty($geodir_option)) {
2047
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2048 2048
 	}
2049 2049
 }
2050 2050
 
@@ -2058,10 +2058,10 @@  discard block
 block discarded – undo
2058 2058
  *
2059 2059
  * @return int Page ID.
2060 2060
  */
2061
-function get_page_id_geodir_add_listing_page( $page_id ) {
2062
-	if ( geodir_wpml_multilingual_status() ) {
2061
+function get_page_id_geodir_add_listing_page($page_id) {
2062
+	if (geodir_wpml_multilingual_status()) {
2063 2063
 		$post_type = 'post_page';
2064
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2064
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2065 2065
 	}
2066 2066
 
2067 2067
 	return $page_id;
@@ -2075,7 +2075,7 @@  discard block
 block discarded – undo
2075 2075
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2076 2076
  */
2077 2077
 function geodir_wpml_multilingual_status() {
2078
-	if ( function_exists( 'icl_object_id' ) ) {
2078
+	if (function_exists('icl_object_id')) {
2079 2079
 		return true;
2080 2080
 	}
2081 2081
 
@@ -2093,19 +2093,19 @@  discard block
 block discarded – undo
2093 2093
  *
2094 2094
  * @return int Element ID when exists. Else the page id.
2095 2095
  */
2096
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2096
+function geodir_get_wpml_element_id($page_id, $post_type) {
2097 2097
 	global $sitepress;
2098
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2099
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2098
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2099
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2100 2100
 
2101
-		if ( $trid > 0 ) {
2102
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2101
+		if ($trid > 0) {
2102
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2103 2103
 
2104 2104
 			$lang = $sitepress->get_current_language();
2105 2105
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2106 2106
 
2107
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2108
-				$page_id = $translations[ $lang ]->element_id;
2107
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2108
+				$page_id = $translations[$lang]->element_id;
2109 2109
 			}
2110 2110
 		}
2111 2111
 	}
@@ -2122,15 +2122,15 @@  discard block
 block discarded – undo
2122 2122
  */
2123 2123
 function geodir_wpml_check_element_id() {
2124 2124
 	global $sitepress;
2125
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2125
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2126 2126
 		$el_type      = 'post_page';
2127
-		$el_id        = get_option( 'geodir_add_listing_page' );
2127
+		$el_id        = get_option('geodir_add_listing_page');
2128 2128
 		$default_lang = $sitepress->get_default_language();
2129
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2129
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2130 2130
 
2131
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2132
-			if ( ! $el_details->source_language_code ) {
2133
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2131
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2132
+			if (!$el_details->source_language_code) {
2133
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2134 2134
 				$sitepress->icl_translations_cache->clear();
2135 2135
 			}
2136 2136
 		}
@@ -2149,41 +2149,41 @@  discard block
 block discarded – undo
2149 2149
  *
2150 2150
  * @return string Orderby SQL.
2151 2151
  */
2152
-function geodir_widget_listings_get_order( $query_args ) {
2152
+function geodir_widget_listings_get_order($query_args) {
2153 2153
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2154 2154
 
2155 2155
 	$query_args = $gd_query_args_widgets;
2156
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2157
-		return $wpdb->posts . ".post_date DESC, ";
2156
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2157
+		return $wpdb->posts.".post_date DESC, ";
2158 2158
 	}
2159 2159
 
2160
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2161
-	$table     = $plugin_prefix . $post_type . '_detail';
2160
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2161
+	$table     = $plugin_prefix.$post_type.'_detail';
2162 2162
 
2163
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2163
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2164 2164
 
2165
-	switch ( $sort_by ) {
2165
+	switch ($sort_by) {
2166 2166
 		case 'latest':
2167 2167
 		case 'newest':
2168
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2168
+			$orderby = $wpdb->posts.".post_date DESC, ";
2169 2169
 			break;
2170 2170
 		case 'featured':
2171
-			$orderby = $table . ".is_featured ASC, ";
2171
+			$orderby = $table.".is_featured ASC, ";
2172 2172
 			break;
2173 2173
 		case 'az':
2174
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2174
+			$orderby = $wpdb->posts.".post_title ASC, ";
2175 2175
 			break;
2176 2176
 		case 'high_review':
2177
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2177
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2178 2178
 			break;
2179 2179
 		case 'high_rating':
2180
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2180
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2181 2181
 			break;
2182 2182
 		case 'random':
2183 2183
 			$orderby = "RAND(), ";
2184 2184
 			break;
2185 2185
 		default:
2186
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2186
+			$orderby = $wpdb->posts.".post_title ASC, ";
2187 2187
 			break;
2188 2188
 	}
2189 2189
 
@@ -2205,15 +2205,15 @@  discard block
 block discarded – undo
2205 2205
  *
2206 2206
  * @return mixed Result object.
2207 2207
  */
2208
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2208
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2209 2209
 	global $wpdb, $plugin_prefix, $table_prefix;
2210 2210
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2211 2211
 	$gd_query_args_widgets            = $query_args;
2212 2212
 
2213
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2214
-	$table     = $plugin_prefix . $post_type . '_detail';
2213
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2214
+	$table     = $plugin_prefix.$post_type.'_detail';
2215 2215
 
2216
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2216
+	$fields = $wpdb->posts.".*, ".$table.".*";
2217 2217
 	/**
2218 2218
 	 * Filter widget listing fields string part that is being used for query.
2219 2219
 	 *
@@ -2223,17 +2223,17 @@  discard block
 block discarded – undo
2223 2223
 	 * @param string $table     Table name.
2224 2224
 	 * @param string $post_type Post type.
2225 2225
 	 */
2226
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2226
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2227 2227
 
2228
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2228
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2229 2229
 
2230 2230
 	########### WPML ###########
2231 2231
 
2232
-	if ( function_exists( 'icl_object_id' ) ) {
2232
+	if (function_exists('icl_object_id')) {
2233 2233
 		global $sitepress;
2234 2234
 		$lang_code = ICL_LANGUAGE_CODE;
2235
-		if ( $lang_code ) {
2236
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2235
+		if ($lang_code) {
2236
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2237 2237
 		}
2238 2238
 	}
2239 2239
 
@@ -2247,15 +2247,15 @@  discard block
 block discarded – undo
2247 2247
 	 * @param string $join      Join clause string.
2248 2248
 	 * @param string $post_type Post type.
2249 2249
 	 */
2250
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2250
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2251 2251
 
2252
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2252
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2253 2253
 
2254
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2254
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2255 2255
 
2256 2256
 	########### WPML ###########
2257
-	if ( function_exists( 'icl_object_id' ) ) {
2258
-		if ( $lang_code ) {
2257
+	if (function_exists('icl_object_id')) {
2258
+		if ($lang_code) {
2259 2259
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2260 2260
 		}
2261 2261
 	}
@@ -2268,8 +2268,8 @@  discard block
 block discarded – undo
2268 2268
 	 * @param string $where     Where clause string.
2269 2269
 	 * @param string $post_type Post type.
2270 2270
 	 */
2271
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2272
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2271
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2272
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2273 2273
 
2274 2274
 	$groupby = " GROUP BY $wpdb->posts.ID ";
2275 2275
 	/**
@@ -2280,15 +2280,15 @@  discard block
 block discarded – undo
2280 2280
 	 * @param string $groupby   Group by clause string.
2281 2281
 	 * @param string $post_type Post type.
2282 2282
 	 */
2283
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2283
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2284 2284
 
2285
-	if ( $count_only ) {
2286
-		$sql  = "SELECT COUNT(" . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2287
-			" . $join . "
2285
+	if ($count_only) {
2286
+		$sql  = "SELECT COUNT(".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2287
+			" . $join."
2288 2288
 			" . $where;
2289
-		$rows = (int) $wpdb->get_var( $sql );
2289
+		$rows = (int) $wpdb->get_var($sql);
2290 2290
 	} else {
2291
-		$orderby = geodir_widget_listings_get_order( $query_args );
2291
+		$orderby = geodir_widget_listings_get_order($query_args);
2292 2292
 		/**
2293 2293
 		 * Filter widget listing orderby clause string part that is being used for query.
2294 2294
 		 *
@@ -2298,11 +2298,11 @@  discard block
 block discarded – undo
2298 2298
 		 * @param string $table     Table name.
2299 2299
 		 * @param string $post_type Post type.
2300 2300
 		 */
2301
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2302
-		$orderby .= $wpdb->posts . ".post_title ASC";
2303
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2301
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2302
+		$orderby .= $wpdb->posts.".post_title ASC";
2303
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2304 2304
 
2305
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2305
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2306 2306
 		/**
2307 2307
 		 * Filter widget listing limit that is being used for query.
2308 2308
 		 *
@@ -2311,26 +2311,26 @@  discard block
 block discarded – undo
2311 2311
 		 * @param int $limit        Query results limit.
2312 2312
 		 * @param string $post_type Post type.
2313 2313
 		 */
2314
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2314
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2315 2315
 
2316
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2317
-		if ( ! $page ) {
2316
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2317
+		if (!$page) {
2318 2318
 			$page = 1;
2319 2319
 		}
2320 2320
 
2321
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2321
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2322 2322
 
2323
-		$sql  = "SELECT SQL_CALC_FOUND_ROWS " . $fields . " FROM " . $wpdb->posts . "
2324
-			" . $join . "
2325
-			" . $where . "
2326
-			" . $groupby . "
2327
-			" . $orderby . "
2323
+		$sql = "SELECT SQL_CALC_FOUND_ROWS ".$fields." FROM ".$wpdb->posts."
2324
+			" . $join."
2325
+			" . $where."
2326
+			" . $groupby."
2327
+			" . $orderby."
2328 2328
 			" . $limit;
2329
-		$rows = $wpdb->get_results( $sql );
2329
+		$rows = $wpdb->get_results($sql);
2330 2330
 	}
2331 2331
 
2332
-	unset( $GLOBALS['gd_query_args_widgets'] );
2333
-	unset( $gd_query_args_widgets );
2332
+	unset($GLOBALS['gd_query_args_widgets']);
2333
+	unset($gd_query_args_widgets);
2334 2334
 
2335 2335
 	return $rows;
2336 2336
 }
@@ -2347,11 +2347,11 @@  discard block
 block discarded – undo
2347 2347
  *
2348 2348
  * @return string Modified fields SQL.
2349 2349
  */
2350
-function geodir_function_widget_listings_fields( $fields ) {
2350
+function geodir_function_widget_listings_fields($fields) {
2351 2351
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2352 2352
 
2353 2353
 	$query_args = $gd_query_args_widgets;
2354
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2354
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2355 2355
 		return $fields;
2356 2356
 	}
2357 2357
 
@@ -2370,24 +2370,24 @@  discard block
 block discarded – undo
2370 2370
  *
2371 2371
  * @return string Modified join clause SQL.
2372 2372
  */
2373
-function geodir_function_widget_listings_join( $join ) {
2373
+function geodir_function_widget_listings_join($join) {
2374 2374
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2375 2375
 
2376 2376
 	$query_args = $gd_query_args_widgets;
2377
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2377
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2378 2378
 		return $join;
2379 2379
 	}
2380 2380
 
2381
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2382
-	$table     = $plugin_prefix . $post_type . '_detail';
2381
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2382
+	$table     = $plugin_prefix.$post_type.'_detail';
2383 2383
 
2384
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2385
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2384
+	if (!empty($query_args['with_pics_only'])) {
2385
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2386 2386
 	}
2387 2387
 
2388
-	if ( ! empty( $query_args['tax_query'] ) ) {
2389
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2390
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2388
+	if (!empty($query_args['tax_query'])) {
2389
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2390
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2391 2391
 			$join .= $tax_queries['join'];
2392 2392
 		}
2393 2393
 	}
@@ -2407,49 +2407,49 @@  discard block
 block discarded – undo
2407 2407
  *
2408 2408
  * @return string Modified where clause SQL.
2409 2409
  */
2410
-function geodir_function_widget_listings_where( $where ) {
2410
+function geodir_function_widget_listings_where($where) {
2411 2411
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2412 2412
 
2413 2413
 	$query_args = $gd_query_args_widgets;
2414
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2414
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2415 2415
 		return $where;
2416 2416
 	}
2417
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2418
-	$table     = $plugin_prefix . $post_type . '_detail';
2417
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2418
+	$table     = $plugin_prefix.$post_type.'_detail';
2419 2419
 
2420
-	if ( ! empty( $query_args ) ) {
2421
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2422
-			$where = geodir_default_location_where( $where, $table );
2420
+	if (!empty($query_args)) {
2421
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2422
+			$where = geodir_default_location_where($where, $table);
2423 2423
 		}
2424 2424
 
2425
-		if ( ! empty( $query_args['post_author'] ) ) {
2426
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2425
+		if (!empty($query_args['post_author'])) {
2426
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2427 2427
 		}
2428 2428
 
2429
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2430
-			$where .= " AND " . $table . ".is_featured = '1'";
2429
+		if (!empty($query_args['show_featured_only'])) {
2430
+			$where .= " AND ".$table.".is_featured = '1'";
2431 2431
 		}
2432 2432
 
2433
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2434
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2433
+		if (!empty($query_args['show_special_only'])) {
2434
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2435 2435
 		}
2436 2436
 
2437
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2438
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2437
+		if (!empty($query_args['with_pics_only'])) {
2438
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2439 2439
 		}
2440 2440
 
2441
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2442
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2441
+		if (!empty($query_args['featured_image_only'])) {
2442
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2443 2443
 		}
2444 2444
 
2445
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2446
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2445
+		if (!empty($query_args['with_videos_only'])) {
2446
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2447 2447
 		}
2448 2448
 
2449
-		if ( ! empty( $query_args['tax_query'] ) ) {
2450
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2449
+		if (!empty($query_args['tax_query'])) {
2450
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2451 2451
 
2452
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2452
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2453 2453
 				$where .= $tax_queries['where'];
2454 2454
 			}
2455 2455
 		}
@@ -2470,11 +2470,11 @@  discard block
 block discarded – undo
2470 2470
  *
2471 2471
  * @return string Modified orderby clause SQL.
2472 2472
  */
2473
-function geodir_function_widget_listings_orderby( $orderby ) {
2473
+function geodir_function_widget_listings_orderby($orderby) {
2474 2474
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2475 2475
 
2476 2476
 	$query_args = $gd_query_args_widgets;
2477
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2477
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2478 2478
 		return $orderby;
2479 2479
 	}
2480 2480
 
@@ -2493,15 +2493,15 @@  discard block
 block discarded – undo
2493 2493
  *
2494 2494
  * @return int Query limit.
2495 2495
  */
2496
-function geodir_function_widget_listings_limit( $limit ) {
2496
+function geodir_function_widget_listings_limit($limit) {
2497 2497
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2498 2498
 
2499 2499
 	$query_args = $gd_query_args_widgets;
2500
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2500
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2501 2501
 		return $limit;
2502 2502
 	}
2503 2503
 
2504
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2504
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2505 2505
 		$limit = (int) $query_args['posts_per_page'];
2506 2506
 	}
2507 2507
 
@@ -2519,12 +2519,12 @@  discard block
 block discarded – undo
2519 2519
  *
2520 2520
  * @return int Large size width.
2521 2521
  */
2522
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2523
-	$large_size_w = get_option( 'large_size_w' );
2522
+function geodir_media_image_large_width($default = 800, $params = '') {
2523
+	$large_size_w = get_option('large_size_w');
2524 2524
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2525
-	$large_size_w = absint( $large_size_w );
2525
+	$large_size_w = absint($large_size_w);
2526 2526
 
2527
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2527
+	if (!get_option('geodir_use_wp_media_large_size')) {
2528 2528
 		$large_size_w = 800;
2529 2529
 	}
2530 2530
 
@@ -2537,7 +2537,7 @@  discard block
 block discarded – undo
2537 2537
 	 * @param int $default         Default width.
2538 2538
 	 * @param string|array $params Image parameters.
2539 2539
 	 */
2540
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2540
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2541 2541
 
2542 2542
 	return $large_size_w;
2543 2543
 }
@@ -2553,12 +2553,12 @@  discard block
 block discarded – undo
2553 2553
  *
2554 2554
  * @return int Large size height.
2555 2555
  */
2556
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2557
-	$large_size_h = get_option( 'large_size_h' );
2556
+function geodir_media_image_large_height($default = 800, $params = '') {
2557
+	$large_size_h = get_option('large_size_h');
2558 2558
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2559
-	$large_size_h = absint( $large_size_h );
2559
+	$large_size_h = absint($large_size_h);
2560 2560
 
2561
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2561
+	if (!get_option('geodir_use_wp_media_large_size')) {
2562 2562
 		$large_size_h = 800;
2563 2563
 	}
2564 2564
 
@@ -2571,7 +2571,7 @@  discard block
 block discarded – undo
2571 2571
 	 * @param int $default         Default height.
2572 2572
 	 * @param string|array $params Image parameters.
2573 2573
 	 */
2574
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2574
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2575 2575
 
2576 2576
 	return $large_size_h;
2577 2577
 }
@@ -2588,8 +2588,8 @@  discard block
 block discarded – undo
2588 2588
  *
2589 2589
  * @return string Sanitized name.
2590 2590
  */
2591
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2592
-	if ( $name == '' ) {
2591
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2592
+	if ($name == '') {
2593 2593
 		return null;
2594 2594
 	}
2595 2595
 
@@ -2598,13 +2598,13 @@  discard block
 block discarded – undo
2598 2598
 	$type = $type == 'gd_city' ? 'city' : $type;
2599 2599
 
2600 2600
 	$return = $name;
2601
-	if ( function_exists( 'get_actual_location_name' ) ) {
2602
-		$return = get_actual_location_name( $type, $name, $translate );
2601
+	if (function_exists('get_actual_location_name')) {
2602
+		$return = get_actual_location_name($type, $name, $translate);
2603 2603
 	} else {
2604
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2605
-		$return = preg_replace( '/[_-]/', ' ', $return );
2606
-		$return = geodir_ucwords( $return );
2607
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2604
+		$return = preg_replace('/-(\d+)$/', '', $return);
2605
+		$return = preg_replace('/[_-]/', ' ', $return);
2606
+		$return = geodir_ucwords($return);
2607
+		$return = $translate ? __($return, 'geodirectory') : $return;
2608 2608
 	}
2609 2609
 
2610 2610
 	return $return;
@@ -2619,14 +2619,14 @@  discard block
 block discarded – undo
2619 2619
  *
2620 2620
  * @param int $number Comments number.
2621 2621
  */
2622
-function geodir_comments_number( $number ) {
2622
+function geodir_comments_number($number) {
2623 2623
 
2624
-	if ( $number > 1 ) {
2625
-		$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2626
-	} elseif ( $number == 0 || $number == '' ) {
2627
-		$output = __( 'No Reviews', 'geodirectory' );
2624
+	if ($number > 1) {
2625
+		$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2626
+	} elseif ($number == 0 || $number == '') {
2627
+		$output = __('No Reviews', 'geodirectory');
2628 2628
 	} else { // must be one
2629
-		$output = __( '1 Review', 'geodirectory' );
2629
+		$output = __('1 Review', 'geodirectory');
2630 2630
 	}
2631 2631
 	echo $output;
2632 2632
 }
@@ -2641,18 +2641,18 @@  discard block
 block discarded – undo
2641 2641
  */
2642 2642
 function is_page_geodir_home() {
2643 2643
 	global $wpdb;
2644
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2645
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2646
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2644
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2645
+	if (function_exists('geodir_location_geo_home_link')) {
2646
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2647 2647
 	}
2648
-	$home_url = home_url( '', 'http' );
2649
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2650
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2648
+	$home_url = home_url('', 'http');
2649
+	if (function_exists('geodir_location_geo_home_link')) {
2650
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2651 2651
 	}
2652
-	$home_url = str_replace( "www.", "", $home_url );
2653
-	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' ) ) ) {
2652
+	$home_url = str_replace("www.", "", $home_url);
2653
+	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'))) {
2654 2654
 		return true;
2655
-	} 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' ) ) {
2655
+	} 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')) {
2656 2656
 		return true;
2657 2657
 	} else {
2658 2658
 		return false;
@@ -2672,18 +2672,18 @@  discard block
 block discarded – undo
2672 2672
  *
2673 2673
  * @return string The canonical URL.
2674 2674
  */
2675
-function geodir_wpseo_homepage_canonical( $url ) {
2675
+function geodir_wpseo_homepage_canonical($url) {
2676 2676
 	global $post;
2677 2677
 
2678
-	if ( is_page_geodir_home() ) {
2678
+	if (is_page_geodir_home()) {
2679 2679
 		return home_url();
2680 2680
 	}
2681 2681
 
2682 2682
 	return $url;
2683 2683
 }
2684 2684
 
2685
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2686
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2685
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2686
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2687 2687
 
2688 2688
 /**
2689 2689
  * Add extra fields to google maps script call.
@@ -2696,20 +2696,20 @@  discard block
 block discarded – undo
2696 2696
  *
2697 2697
  * @return string Modified extra string.
2698 2698
  */
2699
-function geodir_googlemap_script_extra_details_page( $extra ) {
2699
+function geodir_googlemap_script_extra_details_page($extra) {
2700 2700
 	global $post;
2701 2701
 	$add_google_places_api = false;
2702
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2702
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2703 2703
 		$add_google_places_api = true;
2704 2704
 	}
2705
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2705
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2706 2706
 		$extra .= "&amp;libraries=places";
2707 2707
 	}
2708 2708
 
2709 2709
 	return $extra;
2710 2710
 }
2711 2711
 
2712
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2712
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2713 2713
 
2714 2714
 
2715 2715
 /**
@@ -2727,99 +2727,99 @@  discard block
 block discarded – undo
2727 2727
  *                                          after_widget.
2728 2728
  * @param array|string $instance            The settings for the particular instance of the widget.
2729 2729
  */
2730
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2730
+function geodir_popular_post_category_output($args = '', $instance = '') {
2731 2731
 	// prints the widget
2732 2732
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2733
-	extract( $args, EXTR_SKIP );
2733
+	extract($args, EXTR_SKIP);
2734 2734
 
2735 2735
 	echo $before_widget;
2736 2736
 
2737 2737
 	/** This filter is documented in geodirectory_widgets.php */
2738
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2738
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2739 2739
 
2740 2740
 	$gd_post_type = geodir_get_current_posttype();
2741 2741
 
2742
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2743
-	if ( ! empty( $gd_post_type ) ) {
2742
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2743
+	if (!empty($gd_post_type)) {
2744 2744
 		$default_post_type = $gd_post_type;
2745
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2745
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2746 2746
 		$default_post_type = $instance['default_post_type'];
2747 2747
 	} else {
2748 2748
 		$all_gd_post_type  = geodir_get_posttypes();
2749
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2749
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2750 2750
 	}
2751
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2751
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2752 2752
 
2753 2753
 	$taxonomy = array();
2754
-	if ( ! empty( $gd_post_type ) ) {
2755
-		$taxonomy[] = $gd_post_type . "category";
2754
+	if (!empty($gd_post_type)) {
2755
+		$taxonomy[] = $gd_post_type."category";
2756 2756
 	} else {
2757
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2757
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2758 2758
 	}
2759 2759
     
2760
-	$term_args = array( 'taxonomy' => $taxonomy );
2761
-	if ( $parent_only ) {
2760
+	$term_args = array('taxonomy' => $taxonomy);
2761
+	if ($parent_only) {
2762 2762
 		$term_args['parent'] = 0;
2763 2763
 	}
2764 2764
 
2765
-	$terms   = get_terms( $term_args );
2765
+	$terms   = get_terms($term_args);
2766 2766
 	$a_terms = array();
2767 2767
 	$b_terms = array();
2768 2768
 
2769
-	foreach ( $terms as $term ) {
2770
-		if ( $term->count > 0 ) {
2771
-			$a_terms[ $term->taxonomy ][] = $term;
2769
+	foreach ($terms as $term) {
2770
+		if ($term->count > 0) {
2771
+			$a_terms[$term->taxonomy][] = $term;
2772 2772
 		}
2773 2773
 	}
2774 2774
 
2775
-	if ( ! empty( $a_terms ) ) {
2776
-		foreach ( $a_terms as $b_key => $b_val ) {
2777
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2775
+	if (!empty($a_terms)) {
2776
+		foreach ($a_terms as $b_key => $b_val) {
2777
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2778 2778
 		}
2779 2779
 
2780
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2780
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2781 2781
 
2782 2782
 		$tax_change_output = '';
2783
-		if ( count( $b_terms ) > 1 ) {
2784
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2785
-			foreach ( $b_terms as $key => $val ) {
2786
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2787
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2788
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2783
+		if (count($b_terms) > 1) {
2784
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2785
+			foreach ($b_terms as $key => $val) {
2786
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2787
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2788
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2789 2789
 			}
2790 2790
 			$tax_change_output .= "</select>";
2791 2791
 		}
2792 2792
 
2793
-		if ( ! empty( $b_terms ) ) {
2794
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2795
-			global $cat_count;//make global so we can change via function
2793
+		if (!empty($b_terms)) {
2794
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2795
+			global $cat_count; //make global so we can change via function
2796 2796
 			$cat_count = 0;
2797 2797
 			?>
2798 2798
 			<div class="geodir-category-list-in clearfix">
2799 2799
 				<div class="geodir-cat-list clearfix">
2800 2800
 					<?php
2801
-					echo $before_title . __( $title ) . $after_title;
2801
+					echo $before_title.__($title).$after_title;
2802 2802
 
2803 2803
 					echo $tax_change_output;
2804 2804
 
2805 2805
 					echo '<ul class="geodir-popular-cat-list">';
2806 2806
 
2807
-					geodir_helper_cat_list_output( $terms, $category_limit );
2807
+					geodir_helper_cat_list_output($terms, $category_limit);
2808 2808
 
2809 2809
 					echo '</ul>';
2810 2810
 					?>
2811 2811
 				</div>
2812 2812
 				<?php
2813 2813
 				$hide = '';
2814
-				if ( $cat_count < $category_limit ) {
2814
+				if ($cat_count < $category_limit) {
2815 2815
 					$hide = 'style="display:none;"';
2816 2816
 				}
2817 2817
 				echo "<div class='geodir-cat-list-more' $hide >";
2818
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2819
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2818
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2819
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2820 2820
 				echo "</div>";
2821 2821
 				/* add scripts */
2822
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2822
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2823 2823
 				?>
2824 2824
 			</div>
2825 2825
 			<?php
@@ -2838,25 +2838,25 @@  discard block
 block discarded – undo
2838 2838
  * @param array $terms                      An array of term objects.
2839 2839
  * @param int $category_limit               Number of categories to display by default.
2840 2840
  */
2841
-function geodir_helper_cat_list_output( $terms, $category_limit ) {
2841
+function geodir_helper_cat_list_output($terms, $category_limit) {
2842 2842
 	global $geodir_post_category_str, $cat_count;
2843 2843
 	$term_icons = geodir_get_term_icon();
2844 2844
 
2845 2845
 	$geodir_post_category_str = array();
2846 2846
 
2847 2847
 
2848
-	foreach ( $terms as $cat ) {
2849
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2850
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2848
+	foreach ($terms as $cat) {
2849
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2850
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2851 2851
 
2852
-		$cat_count ++;
2852
+		$cat_count++;
2853 2853
 
2854
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
2854
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2855 2855
 
2856 2856
 		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2857 2857
 		$total_post = $cat->count;
2858 2858
 
2859
-		$term_link = get_term_link( $cat, $cat->taxonomy );
2859
+		$term_link = get_term_link($cat, $cat->taxonomy);
2860 2860
 		/**
2861 2861
 		 * Filer the category term link.
2862 2862
 		 *
@@ -2866,11 +2866,11 @@  discard block
 block discarded – undo
2866 2866
 		 * @param int $cat          ->term_id The term id.
2867 2867
 		 * @param string $post_type Wordpress post type.
2868 2868
 		 */
2869
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2869
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
2870 2870
 
2871
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2872
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
2873
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2871
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
2872
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
2873
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
2874 2874
 		echo '</a></li>';
2875 2875
 	}
2876 2876
 }
@@ -2885,14 +2885,14 @@  discard block
 block discarded – undo
2885 2885
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
2886 2886
  * @param array|string $instance The settings for the particular instance of the widget.
2887 2887
  */
2888
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
2888
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
2889 2889
 	// prints the widget
2890
-	extract( $args, EXTR_SKIP );
2890
+	extract($args, EXTR_SKIP);
2891 2891
 
2892 2892
 	echo $before_widget;
2893 2893
 
2894 2894
 	/** This filter is documented in geodirectory_widgets.php */
2895
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2895
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2896 2896
 	/**
2897 2897
 	 * Filter the widget post type.
2898 2898
 	 *
@@ -2900,7 +2900,7 @@  discard block
 block discarded – undo
2900 2900
 	 *
2901 2901
 	 * @param string $instance ['post_type'] Post type of listing.
2902 2902
 	 */
2903
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
2903
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2904 2904
 	/**
2905 2905
 	 * Filter the widget's term.
2906 2906
 	 *
@@ -2908,7 +2908,7 @@  discard block
 block discarded – undo
2908 2908
 	 *
2909 2909
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
2910 2910
 	 */
2911
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
2911
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
2912 2912
 	/**
2913 2913
 	 * Filter widget's "add_location_filter" value.
2914 2914
 	 *
@@ -2916,7 +2916,7 @@  discard block
 block discarded – undo
2916 2916
 	 *
2917 2917
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
2918 2918
 	 */
2919
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
2919
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
2920 2920
 	/**
2921 2921
 	 * Filter the widget listings limit.
2922 2922
 	 *
@@ -2924,7 +2924,7 @@  discard block
 block discarded – undo
2924 2924
 	 *
2925 2925
 	 * @param string $instance ['post_number'] Number of listings to display.
2926 2926
 	 */
2927
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
2927
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
2928 2928
 	/**
2929 2929
 	 * Filter the widget listings limit shown at one time.
2930 2930
 	 *
@@ -2932,7 +2932,7 @@  discard block
 block discarded – undo
2932 2932
 	 *
2933 2933
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
2934 2934
 	 */
2935
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
2935
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
2936 2936
 	/**
2937 2937
 	 * Filter the widget slide width.
2938 2938
 	 *
@@ -2940,7 +2940,7 @@  discard block
 block discarded – undo
2940 2940
 	 *
2941 2941
 	 * @param string $instance ['slide_width'] Width of the slides shown.
2942 2942
 	 */
2943
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
2943
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
2944 2944
 	/**
2945 2945
 	 * Filter widget's "show title" value.
2946 2946
 	 *
@@ -2948,7 +2948,7 @@  discard block
 block discarded – undo
2948 2948
 	 *
2949 2949
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
2950 2950
 	 */
2951
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
2951
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
2952 2952
 	/**
2953 2953
 	 * Filter widget's "slideshow" value.
2954 2954
 	 *
@@ -2956,7 +2956,7 @@  discard block
 block discarded – undo
2956 2956
 	 *
2957 2957
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
2958 2958
 	 */
2959
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
2959
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
2960 2960
 	/**
2961 2961
 	 * Filter widget's "animationLoop" value.
2962 2962
 	 *
@@ -2964,7 +2964,7 @@  discard block
 block discarded – undo
2964 2964
 	 *
2965 2965
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
2966 2966
 	 */
2967
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
2967
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
2968 2968
 	/**
2969 2969
 	 * Filter widget's "directionNav" value.
2970 2970
 	 *
@@ -2972,7 +2972,7 @@  discard block
 block discarded – undo
2972 2972
 	 *
2973 2973
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
2974 2974
 	 */
2975
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
2975
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
2976 2976
 	/**
2977 2977
 	 * Filter widget's "slideshowSpeed" value.
2978 2978
 	 *
@@ -2980,7 +2980,7 @@  discard block
 block discarded – undo
2980 2980
 	 *
2981 2981
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
2982 2982
 	 */
2983
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
2983
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
2984 2984
 	/**
2985 2985
 	 * Filter widget's "animationSpeed" value.
2986 2986
 	 *
@@ -2988,7 +2988,7 @@  discard block
 block discarded – undo
2988 2988
 	 *
2989 2989
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
2990 2990
 	 */
2991
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
2991
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
2992 2992
 	/**
2993 2993
 	 * Filter widget's "animation" value.
2994 2994
 	 *
@@ -2996,7 +2996,7 @@  discard block
 block discarded – undo
2996 2996
 	 *
2997 2997
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
2998 2998
 	 */
2999
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
2999
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3000 3000
 	/**
3001 3001
 	 * Filter widget's "list_sort" type.
3002 3002
 	 *
@@ -3004,10 +3004,10 @@  discard block
 block discarded – undo
3004 3004
 	 *
3005 3005
 	 * @param string $instance ['list_sort'] Listing sort by type.
3006 3006
 	 */
3007
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3008
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3007
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3008
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3009 3009
 
3010
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3010
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3011 3011
 	?>
3012 3012
 	<script type="text/javascript">
3013 3013
 		jQuery(window).load(function () {
@@ -3025,23 +3025,23 @@  discard block
 block discarded – undo
3025 3025
 				itemWidth: 75,
3026 3026
 				itemMargin: 5,
3027 3027
 				asNavFor: '#geodir_widget_slider',
3028
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3028
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3029 3029
 			});
3030 3030
 
3031 3031
 			jQuery('#geodir_widget_slider').flexslider({
3032
-				animation: "<?php echo $animation;?>",
3032
+				animation: "<?php echo $animation; ?>",
3033 3033
 				selector: ".geodir-slides > li",
3034 3034
 				namespace: "geodir-",
3035 3035
 				controlNav: true,
3036
-				animationLoop: <?php echo $animationLoop;?>,
3037
-				slideshow: <?php echo $slideshow;?>,
3038
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3039
-				animationSpeed: <?php echo $animationSpeed;?>,
3040
-				directionNav: <?php echo $directionNav;?>,
3041
-				maxItems: <?php echo $max_show;?>,
3036
+				animationLoop: <?php echo $animationLoop; ?>,
3037
+				slideshow: <?php echo $slideshow; ?>,
3038
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3039
+				animationSpeed: <?php echo $animationSpeed; ?>,
3040
+				directionNav: <?php echo $directionNav; ?>,
3041
+				maxItems: <?php echo $max_show; ?>,
3042 3042
 				move: 1,
3043
-				<?php if ( $slide_width ) {
3044
-				echo "itemWidth: " . $slide_width . ",";
3043
+				<?php if ($slide_width) {
3044
+				echo "itemWidth: ".$slide_width.",";
3045 3045
 			}?>
3046 3046
 				sync: "#geodir_widget_carousel",
3047 3047
 				start: function (slider) {
@@ -3053,7 +3053,7 @@  discard block
 block discarded – undo
3053 3053
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3054 3054
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3055 3055
 				},
3056
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3056
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3057 3057
 			});
3058 3058
 		});
3059 3059
 	</script>
@@ -3066,62 +3066,62 @@  discard block
 block discarded – undo
3066 3066
 		'order_by'       => $list_sort
3067 3067
 	);
3068 3068
 
3069
-	if ( $show_featured_only ) {
3069
+	if ($show_featured_only) {
3070 3070
 		$query_args['show_featured_only'] = 1;
3071 3071
 	}
3072 3072
 
3073
-	if ( $category != 0 || $category != '' ) {
3074
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3073
+	if ($category != 0 || $category != '') {
3074
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3075 3075
 		$tax_query         = array(
3076 3076
 			'taxonomy' => $category_taxonomy[0],
3077 3077
 			'field'    => 'id',
3078 3078
 			'terms'    => $category
3079 3079
 		);
3080 3080
 
3081
-		$query_args['tax_query'] = array( $tax_query );
3081
+		$query_args['tax_query'] = array($tax_query);
3082 3082
 	}
3083 3083
 
3084 3084
 	// we want listings with featured image only
3085 3085
 	$query_args['featured_image_only'] = 1;
3086 3086
 
3087
-	if ( $post_type == 'gd_event' ) {
3087
+	if ($post_type == 'gd_event') {
3088 3088
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3089 3089
 	}// show only upcoming events
3090 3090
 
3091
-	$widget_listings = geodir_get_widget_listings( $query_args );
3092
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3093
-		if ( $title ) {
3094
-			echo $before_title . $title . $after_title;
3091
+	$widget_listings = geodir_get_widget_listings($query_args);
3092
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3093
+		if ($title) {
3094
+			echo $before_title.$title.$after_title;
3095 3095
 		}
3096 3096
 
3097 3097
 		global $post;
3098 3098
 
3099
-		$current_post = $post;// keep current post info
3099
+		$current_post = $post; // keep current post info
3100 3100
 
3101 3101
 		$widget_main_slides = '';
3102 3102
 		$nav_slides         = '';
3103 3103
 		$widget_slides      = 0;
3104 3104
 
3105
-		foreach ( $widget_listings as $widget_listing ) {
3105
+		foreach ($widget_listings as $widget_listing) {
3106 3106
 			global $gd_widget_listing_type;
3107 3107
 			$post         = $widget_listing;
3108
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3108
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3109 3109
 
3110
-			if ( ! empty( $widget_image ) ) {
3111
-				if ( $widget_image->height >= 200 ) {
3110
+			if (!empty($widget_image)) {
3111
+				if ($widget_image->height >= 200) {
3112 3112
 					$widget_spacer_height = 0;
3113 3113
 				} else {
3114
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3114
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3115 3115
 				}
3116 3116
 
3117
-				$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" />';
3117
+				$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" />';
3118 3118
 
3119 3119
 				$title = '';
3120
-				if ( $show_title ) {
3121
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3120
+				if ($show_title) {
3121
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3122 3122
 					$post_id        = $post->ID;
3123
-					$post_permalink = get_permalink( $post->ID );
3124
-					$post_title     = get_the_title( $post->ID );
3123
+					$post_permalink = get_permalink($post->ID);
3124
+					$post_title     = get_the_title($post->ID);
3125 3125
 					/**
3126 3126
 					 * Filter the listing slider widget title.
3127 3127
 					 *
@@ -3132,12 +3132,12 @@  discard block
 block discarded – undo
3132 3132
 					 * @param string $post_permalink The post permalink url.
3133 3133
 					 * @param string $post_title     The post title text.
3134 3134
 					 */
3135
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3135
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3136 3136
 				}
3137 3137
 
3138
-				$widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>';
3139
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3140
-				$widget_slides ++;
3138
+				$widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>';
3139
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3140
+				$widget_slides++;
3141 3141
 			}
3142 3142
 		}
3143 3143
 		?>
@@ -3146,7 +3146,7 @@  discard block
 block discarded – undo
3146 3146
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3147 3147
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3148 3148
 			</div>
3149
-			<?php if ( $widget_slides > 1 ) { ?>
3149
+			<?php if ($widget_slides > 1) { ?>
3150 3150
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3151 3151
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3152 3152
 				</div>
@@ -3154,7 +3154,7 @@  discard block
 block discarded – undo
3154 3154
 		</div>
3155 3155
 		<?php
3156 3156
 		$GLOBALS['post'] = $current_post;
3157
-		setup_postdata( $current_post );
3157
+		setup_postdata($current_post);
3158 3158
 	}
3159 3159
 	echo $after_widget;
3160 3160
 }
@@ -3170,46 +3170,46 @@  discard block
 block discarded – undo
3170 3170
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3171 3171
  * @param array|string $instance The settings for the particular instance of the widget.
3172 3172
  */
3173
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3173
+function geodir_loginwidget_output($args = '', $instance = '') {
3174 3174
 	//print_r($args);
3175 3175
 	//print_r($instance);
3176 3176
 	// prints the widget
3177
-	extract( $args, EXTR_SKIP );
3177
+	extract($args, EXTR_SKIP);
3178 3178
 
3179 3179
 	/** This filter is documented in geodirectory_widgets.php */
3180
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3180
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3181 3181
 
3182 3182
 	echo $before_widget;
3183
-	echo $before_title . $title . $after_title;
3183
+	echo $before_title.$title.$after_title;
3184 3184
 
3185
-	if ( is_user_logged_in() ) {
3185
+	if (is_user_logged_in()) {
3186 3186
 		global $current_user;
3187 3187
 
3188
-		$author_link = get_author_posts_url( $current_user->data->ID );
3189
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3188
+		$author_link = get_author_posts_url($current_user->data->ID);
3189
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3190 3190
 
3191 3191
 		echo '<ul class="geodir-loginbox-list">';
3192 3192
 		ob_start();
3193 3193
 		?>
3194 3194
 		<li><a class="signin"
3195
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3195
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3196 3196
 		<?php
3197
-		$post_types                           = geodir_get_posttypes( 'object' );
3198
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3199
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3197
+		$post_types                           = geodir_get_posttypes('object');
3198
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3199
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3200 3200
 
3201
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3201
+		if (!empty($show_add_listing_post_types_main_nav)) {
3202 3202
 			$addlisting_links = '';
3203
-			foreach ( $post_types as $key => $postobj ) {
3203
+			foreach ($post_types as $key => $postobj) {
3204 3204
 
3205
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3205
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3206 3206
 
3207
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3207
+					if ($add_link = geodir_get_addlisting_link($key)) {
3208 3208
 
3209 3209
 						$name = $postobj->labels->name;
3210 3210
 
3211 3211
 						$selected = '';
3212
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3212
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3213 3213
 							$selected = 'selected="selected"';
3214 3214
 						}
3215 3215
 
@@ -3222,22 +3222,22 @@  discard block
 block discarded – undo
3222 3222
 						 * @param string $key       Add listing array key.
3223 3223
 						 * @param int $current_user ->ID Current user ID.
3224 3224
 						 */
3225
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3225
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3226 3226
 
3227
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3227
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3228 3228
 
3229 3229
 					}
3230 3230
 				}
3231 3231
 
3232 3232
 			}
3233 3233
 
3234
-			if ( $addlisting_links != '' ) { ?>
3234
+			if ($addlisting_links != '') { ?>
3235 3235
 
3236 3236
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3237 3237
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3238
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3238
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3239 3239
 						<option value="" disabled="disabled" selected="selected"
3240
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3240
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3241 3241
 						<?php echo $addlisting_links; ?>
3242 3242
 					</select></li> <?php
3243 3243
 
@@ -3245,23 +3245,23 @@  discard block
 block discarded – undo
3245 3245
 
3246 3246
 		}
3247 3247
 		// My Favourites in Dashboard
3248
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3248
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3249 3249
 		$user_favourite                    = geodir_user_favourite_listing_count();
3250 3250
 
3251
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3251
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3252 3252
 			$favourite_links = '';
3253 3253
 
3254
-			foreach ( $post_types as $key => $postobj ) {
3255
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3254
+			foreach ($post_types as $key => $postobj) {
3255
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3256 3256
 					$name           = $postobj->labels->name;
3257
-					$post_type_link = geodir_getlink( $author_link, array(
3257
+					$post_type_link = geodir_getlink($author_link, array(
3258 3258
 						'stype' => $key,
3259 3259
 						'list'  => 'favourite'
3260
-					), false );
3260
+					), false);
3261 3261
 
3262 3262
 					$selected = '';
3263 3263
 
3264
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3264
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3265 3265
 						$selected = 'selected="selected"';
3266 3266
 					}
3267 3267
 					/**
@@ -3273,20 +3273,20 @@  discard block
 block discarded – undo
3273 3273
 					 * @param string $key            Favorite listing array key.
3274 3274
 					 * @param int $current_user      ->ID Current user ID.
3275 3275
 					 */
3276
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3276
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3277 3277
 
3278
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3278
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3279 3279
 				}
3280 3280
 			}
3281 3281
 
3282
-			if ( $favourite_links != '' ) {
3282
+			if ($favourite_links != '') {
3283 3283
 				?>
3284 3284
 				<li>
3285 3285
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3286 3286
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3287
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3287
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3288 3288
 						<option value="" disabled="disabled" selected="selected"
3289
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3289
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3290 3290
 						<?php echo $favourite_links; ?>
3291 3291
 					</select>
3292 3292
 				</li>
@@ -3295,19 +3295,19 @@  discard block
 block discarded – undo
3295 3295
 		}
3296 3296
 
3297 3297
 
3298
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3298
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3299 3299
 		$user_listing                     = geodir_user_post_listing_count();
3300 3300
 
3301
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3301
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3302 3302
 			$listing_links = '';
3303 3303
 
3304
-			foreach ( $post_types as $key => $postobj ) {
3305
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3304
+			foreach ($post_types as $key => $postobj) {
3305
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3306 3306
 					$name         = $postobj->labels->name;
3307
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3307
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3308 3308
 
3309 3309
 					$selected = '';
3310
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3310
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3311 3311
 						$selected = 'selected="selected"';
3312 3312
 					}
3313 3313
 
@@ -3320,20 +3320,20 @@  discard block
 block discarded – undo
3320 3320
 					 * @param string $key          My listing array key.
3321 3321
 					 * @param int $current_user    ->ID Current user ID.
3322 3322
 					 */
3323
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3323
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3324 3324
 
3325
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3325
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3326 3326
 				}
3327 3327
 			}
3328 3328
 
3329
-			if ( $listing_links != '' ) {
3329
+			if ($listing_links != '') {
3330 3330
 				?>
3331 3331
 				<li>
3332 3332
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3333 3333
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3334
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3334
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3335 3335
 						<option value="" disabled="disabled" selected="selected"
3336
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3336
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3337 3337
 						<?php echo $listing_links; ?>
3338 3338
 					</select>
3339 3339
 				</li>
@@ -3349,7 +3349,7 @@  discard block
 block discarded – undo
3349 3349
 		 *
3350 3350
 		 * @param string $dashboard_link Dashboard links HTML.
3351 3351
 		 */
3352
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3352
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3353 3353
 		echo '</ul>';
3354 3354
 
3355 3355
 		/**
@@ -3357,7 +3357,7 @@  discard block
 block discarded – undo
3357 3357
 		 *
3358 3358
 		 * @since 1.6.6
3359 3359
 		 */
3360
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3360
+		do_action('geodir_after_loginwidget_form_logged_in');
3361 3361
 
3362 3362
 
3363 3363
 	} else {
@@ -3372,18 +3372,18 @@  discard block
 block discarded – undo
3372 3372
 		<form name="loginform" class="loginform1"
3373 3373
 		      action="<?php echo geodir_login_url(); ?>"
3374 3374
 		      method="post">
3375
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3375
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3376 3376
 			                                    type="text" class="textfield user_login1"/> <span
3377 3377
 					class="user_loginInfo"></span></div>
3378
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3378
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3379 3379
 			                                    name="pwd" type="password"
3380 3380
 			                                    class="textfield user_pass1 input-text"/><span
3381 3381
 					class="user_passInfo"></span></div>
3382 3382
 
3383
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3383
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3384 3384
 			<input type="hidden" name="testcookie" value="1"/>
3385 3385
 
3386
-				<?php do_action( 'login_form' ); ?>
3386
+				<?php do_action('login_form'); ?>
3387 3387
 
3388 3388
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3389 3389
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3396,7 +3396,7 @@  discard block
 block discarded – undo
3396 3396
 					 * @since 1.0.0
3397 3397
 					 */
3398 3398
 					?>
3399
-					<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3399
+					<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3400 3400
 					   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3401 3401
 
3402 3402
 					<?php
@@ -3406,7 +3406,7 @@  discard block
 block discarded – undo
3406 3406
 					 * @since 1.0.0
3407 3407
 					 */
3408 3408
 					?>
3409
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3409
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3410 3410
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3411 3411
 		</form>
3412 3412
 		<?php
@@ -3415,7 +3415,7 @@  discard block
 block discarded – undo
3415 3415
 		 *
3416 3416
 		 * @since 1.6.6
3417 3417
 		 */
3418
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3418
+		do_action('geodir_after_loginwidget_form_logged_out');
3419 3419
 	}
3420 3420
 
3421 3421
 	echo $after_widget;
@@ -3437,16 +3437,16 @@  discard block
 block discarded – undo
3437 3437
  *                                         after_widget.
3438 3438
  * @param array|string $instance           The settings for the particular instance of the widget.
3439 3439
  */
3440
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3440
+function geodir_popular_postview_output($args = '', $instance = '') {
3441 3441
 	global $gd_session;
3442 3442
 
3443 3443
 	// prints the widget
3444
-	extract( $args, EXTR_SKIP );
3444
+	extract($args, EXTR_SKIP);
3445 3445
 
3446 3446
 	echo $before_widget;
3447 3447
 
3448 3448
 	/** This filter is documented in geodirectory_widgets.php */
3449
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3449
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3450 3450
 	/**
3451 3451
 	 * Filter the widget post type.
3452 3452
 	 *
@@ -3454,7 +3454,7 @@  discard block
 block discarded – undo
3454 3454
 	 *
3455 3455
 	 * @param string $instance ['post_type'] Post type of listing.
3456 3456
 	 */
3457
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3457
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3458 3458
 	/**
3459 3459
 	 * Filter the widget's term.
3460 3460
 	 *
@@ -3462,7 +3462,7 @@  discard block
 block discarded – undo
3462 3462
 	 *
3463 3463
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3464 3464
 	 */
3465
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3465
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3466 3466
 	/**
3467 3467
 	 * Filter the widget listings limit.
3468 3468
 	 *
@@ -3470,7 +3470,7 @@  discard block
 block discarded – undo
3470 3470
 	 *
3471 3471
 	 * @param string $instance ['post_number'] Number of listings to display.
3472 3472
 	 */
3473
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3473
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3474 3474
 	/**
3475 3475
 	 * Filter widget's "layout" type.
3476 3476
 	 *
@@ -3478,7 +3478,7 @@  discard block
 block discarded – undo
3478 3478
 	 *
3479 3479
 	 * @param string $instance ['layout'] Widget layout type.
3480 3480
 	 */
3481
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3481
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3482 3482
 	/**
3483 3483
 	 * Filter widget's "add_location_filter" value.
3484 3484
 	 *
@@ -3486,7 +3486,7 @@  discard block
 block discarded – undo
3486 3486
 	 *
3487 3487
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3488 3488
 	 */
3489
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3489
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3490 3490
 	/**
3491 3491
 	 * Filter widget's listing width.
3492 3492
 	 *
@@ -3494,7 +3494,7 @@  discard block
 block discarded – undo
3494 3494
 	 *
3495 3495
 	 * @param string $instance ['listing_width'] Listing width.
3496 3496
 	 */
3497
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3497
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3498 3498
 	/**
3499 3499
 	 * Filter widget's "list_sort" type.
3500 3500
 	 *
@@ -3502,25 +3502,25 @@  discard block
 block discarded – undo
3502 3502
 	 *
3503 3503
 	 * @param string $instance ['list_sort'] Listing sort by type.
3504 3504
 	 */
3505
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3506
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3505
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3506
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3507 3507
 
3508 3508
 	// set post type to current viewing post type
3509
-	if ( $use_viewing_post_type ) {
3509
+	if ($use_viewing_post_type) {
3510 3510
 		$current_post_type = geodir_get_current_posttype();
3511
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3511
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3512 3512
 			$post_type = $current_post_type;
3513 3513
 			$category  = array(); // old post type category will not work for current changed post type
3514 3514
 		}
3515 3515
 	}
3516 3516
 	// replace widget title dynamically
3517
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3518
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3517
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3518
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3519 3519
 
3520
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3521
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3520
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3521
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3522 3522
 
3523
-	if ( isset( $instance['character_count'] ) ) {
3523
+	if (isset($instance['character_count'])) {
3524 3524
 		/**
3525 3525
 		 * Filter the widget's excerpt character count.
3526 3526
 		 *
@@ -3528,37 +3528,37 @@  discard block
 block discarded – undo
3528 3528
 		 *
3529 3529
 		 * @param int $instance ['character_count'] Excerpt character count.
3530 3530
 		 */
3531
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3531
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3532 3532
 	} else {
3533 3533
 		$character_count = '';
3534 3534
 	}
3535 3535
 
3536
-	if ( empty( $title ) || $title == 'All' ) {
3537
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3536
+	if (empty($title) || $title == 'All') {
3537
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3538 3538
 	}
3539 3539
 
3540 3540
 	$location_url = array();
3541
-	$city         = get_query_var( 'gd_city' );
3542
-	if ( ! empty( $city ) ) {
3543
-		$country = get_query_var( 'gd_country' );
3544
-		$region  = get_query_var( 'gd_region' );
3541
+	$city         = get_query_var('gd_city');
3542
+	if (!empty($city)) {
3543
+		$country = get_query_var('gd_country');
3544
+		$region  = get_query_var('gd_region');
3545 3545
 
3546
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3546
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3547 3547
 
3548
-		if ( $geodir_show_location_url == 'all' ) {
3549
-			if ( $country != '' ) {
3548
+		if ($geodir_show_location_url == 'all') {
3549
+			if ($country != '') {
3550 3550
 				$location_url[] = $country;
3551 3551
 			}
3552 3552
 
3553
-			if ( $region != '' ) {
3553
+			if ($region != '') {
3554 3554
 				$location_url[] = $region;
3555 3555
 			}
3556
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3557
-			if ( $country != '' ) {
3556
+		} else if ($geodir_show_location_url == 'country_city') {
3557
+			if ($country != '') {
3558 3558
 				$location_url[] = $country;
3559 3559
 			}
3560
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3561
-			if ( $region != '' ) {
3560
+		} else if ($geodir_show_location_url == 'region_city') {
3561
+			if ($region != '') {
3562 3562
 				$location_url[] = $region;
3563 3563
 			}
3564 3564
 		}
@@ -3566,37 +3566,37 @@  discard block
 block discarded – undo
3566 3566
 		$location_url[] = $city;
3567 3567
 	}
3568 3568
 
3569
-	$location_url  = implode( '/', $location_url );
3569
+	$location_url  = implode('/', $location_url);
3570 3570
 	$skip_location = false;
3571
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3571
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3572 3572
 		$skip_location = true;
3573
-		$gd_session->un_set( 'gd_multi_location' );
3573
+		$gd_session->un_set('gd_multi_location');
3574 3574
 	}
3575 3575
 
3576
-	if ( get_option( 'permalink_structure' ) ) {
3577
-		$viewall_url = get_post_type_archive_link( $post_type );
3576
+	if (get_option('permalink_structure')) {
3577
+		$viewall_url = get_post_type_archive_link($post_type);
3578 3578
 	} else {
3579
-		$viewall_url = get_post_type_archive_link( $post_type );
3579
+		$viewall_url = get_post_type_archive_link($post_type);
3580 3580
 	}
3581 3581
 
3582
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3582
+	if (!empty($category) && $category[0] != '0') {
3583 3583
 		global $geodir_add_location_url;
3584 3584
 
3585 3585
 		$geodir_add_location_url = '0';
3586 3586
 
3587
-		if ( $add_location_filter != '0' ) {
3587
+		if ($add_location_filter != '0') {
3588 3588
 			$geodir_add_location_url = '1';
3589 3589
 		}
3590 3590
 
3591
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3591
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3592 3592
 
3593 3593
 		$geodir_add_location_url = null;
3594 3594
 	}
3595
-	if ( $skip_location ) {
3596
-		$gd_session->set( 'gd_multi_location', 1 );
3595
+	if ($skip_location) {
3596
+		$gd_session->set('gd_multi_location', 1);
3597 3597
 	}
3598 3598
 
3599
-	if ( is_wp_error( $viewall_url ) ) {
3599
+	if (is_wp_error($viewall_url)) {
3600 3600
 		$viewall_url = '';
3601 3601
 	}
3602 3602
 
@@ -3608,34 +3608,34 @@  discard block
 block discarded – undo
3608 3608
 		'order_by'       => $list_sort
3609 3609
 	);
3610 3610
 
3611
-	if ( $character_count ) {
3611
+	if ($character_count) {
3612 3612
 		$query_args['excerpt_length'] = $character_count;
3613 3613
 	}
3614 3614
 
3615
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3615
+	if (!empty($instance['show_featured_only'])) {
3616 3616
 		$query_args['show_featured_only'] = 1;
3617 3617
 	}
3618 3618
 
3619
-	if ( ! empty( $instance['show_special_only'] ) ) {
3619
+	if (!empty($instance['show_special_only'])) {
3620 3620
 		$query_args['show_special_only'] = 1;
3621 3621
 	}
3622 3622
 
3623
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3623
+	if (!empty($instance['with_pics_only'])) {
3624 3624
 		$query_args['with_pics_only']      = 0;
3625 3625
 		$query_args['featured_image_only'] = 1;
3626 3626
 	}
3627 3627
 
3628
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3628
+	if (!empty($instance['with_videos_only'])) {
3629 3629
 		$query_args['with_videos_only'] = 1;
3630 3630
 	}
3631
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3631
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3632 3632
 
3633
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3634
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3633
+	if (!empty($category) && $category[0] != '0') {
3634
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3635 3635
 
3636 3636
 		######### WPML #########
3637
-		if ( function_exists( 'icl_object_id' ) ) {
3638
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3637
+		if (function_exists('icl_object_id')) {
3638
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3639 3639
 		}
3640 3640
 		######### WPML #########
3641 3641
 
@@ -3645,14 +3645,14 @@  discard block
 block discarded – undo
3645 3645
 			'terms'    => $category
3646 3646
 		);
3647 3647
 
3648
-		$query_args['tax_query'] = array( $tax_query );
3648
+		$query_args['tax_query'] = array($tax_query);
3649 3649
 	}
3650 3650
 
3651 3651
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3652 3652
 
3653
-	$widget_listings = geodir_get_widget_listings( $query_args );
3653
+	$widget_listings = geodir_get_widget_listings($query_args);
3654 3654
 
3655
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3655
+	if (!empty($widget_listings) || $with_no_results) {
3656 3656
 		?>
3657 3657
 		<div class="geodir_locations geodir_location_listing">
3658 3658
 
@@ -3662,11 +3662,11 @@  discard block
 block discarded – undo
3662 3662
 			 *
3663 3663
 			 * @since 1.0.0
3664 3664
 			 */
3665
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3665
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3666 3666
 			<div class="geodir_list_heading clearfix">
3667
-				<?php echo $before_title . $title . $after_title; ?>
3667
+				<?php echo $before_title.$title.$after_title; ?>
3668 3668
 				<a href="<?php echo $viewall_url; ?>"
3669
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3669
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3670 3670
 			</div>
3671 3671
 			<?php
3672 3672
 			/**
@@ -3674,10 +3674,10 @@  discard block
 block discarded – undo
3674 3674
 			 *
3675 3675
 			 * @since 1.0.0
3676 3676
 			 */
3677
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3677
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3678 3678
 			<?php
3679
-			if ( strstr( $layout, 'gridview' ) ) {
3680
-				$listing_view_exp        = explode( '_', $layout );
3679
+			if (strstr($layout, 'gridview')) {
3680
+				$listing_view_exp        = explode('_', $layout);
3681 3681
 				$gridview_columns_widget = $layout;
3682 3682
 				$layout                  = $listing_view_exp[0];
3683 3683
 			} else {
@@ -3689,8 +3689,8 @@  discard block
 block discarded – undo
3689 3689
 			 *
3690 3690
 			 * @since 1.0.0
3691 3691
 			 */
3692
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3693
-			if ( ! isset( $character_count ) ) {
3692
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3693
+			if (!isset($character_count)) {
3694 3694
 				/**
3695 3695
 				 * Filter the widget's excerpt character count.
3696 3696
 				 *
@@ -3698,7 +3698,7 @@  discard block
 block discarded – undo
3698 3698
 				 *
3699 3699
 				 * @param int $instance ['character_count'] Excerpt character count.
3700 3700
 				 */
3701
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3701
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3702 3702
 			}
3703 3703
 
3704 3704
 			global $post, $map_jason, $map_canvas_arr;
@@ -3713,13 +3713,13 @@  discard block
 block discarded – undo
3713 3713
 			 *
3714 3714
 			 * @since 1.0.0
3715 3715
 			 */
3716
-			include( $template );
3716
+			include($template);
3717 3717
 
3718 3718
 			$geodir_is_widget_listing = false;
3719 3719
 
3720 3720
 			$GLOBALS['post'] = $current_post;
3721
-			if ( ! empty( $current_post ) ) {
3722
-				setup_postdata( $current_post );
3721
+			if (!empty($current_post)) {
3722
+				setup_postdata($current_post);
3723 3723
 			}
3724 3724
 			$map_jason      = $current_map_jason;
3725 3725
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3750,12 +3750,12 @@  discard block
 block discarded – undo
3750 3750
  *
3751 3751
  * @return int Reviews count.
3752 3752
  */
3753
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3753
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3754 3754
 	global $wpdb, $plugin_prefix;
3755 3755
 
3756
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3756
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3757 3757
 
3758
-	$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 . ")";
3758
+	$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.")";
3759 3759
 
3760 3760
 	/**
3761 3761
 	 * Filter count review sql query.
@@ -3767,9 +3767,9 @@  discard block
 block discarded – undo
3767 3767
 	 * @param int $taxonomy     The taxonomy Id.
3768 3768
 	 * @param string $post_type The post type.
3769 3769
 	 */
3770
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3770
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3771 3771
 
3772
-	$count = $wpdb->get_var( $sql );
3772
+	$count = $wpdb->get_var($sql);
3773 3773
 
3774 3774
 	return $count;
3775 3775
 }
@@ -3787,7 +3787,7 @@  discard block
 block discarded – undo
3787 3787
  *
3788 3788
  * @return array Term array data.
3789 3789
  */
3790
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3790
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3791 3791
 	/**
3792 3792
 	 * Filter review count option data.
3793 3793
 	 *
@@ -3797,78 +3797,78 @@  discard block
 block discarded – undo
3797 3797
 	 * @param bool $force_update Force update option value?. Default.false.
3798 3798
 	 * @param int $post_ID       The post id to update if any.
3799 3799
 	 */
3800
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3801
-	if ( ! empty( $option_data ) ) {
3800
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3801
+	if (!empty($option_data)) {
3802 3802
 		return $option_data;
3803 3803
 	}
3804 3804
 
3805
-	$option_data = get_option( 'geodir_global_review_count' );
3805
+	$option_data = get_option('geodir_global_review_count');
3806 3806
 
3807
-	if ( ! $option_data || $force_update ) {
3808
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3807
+	if (!$option_data || $force_update) {
3808
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3809 3809
 			global $gd_session;
3810 3810
 			$term_array = (array) $option_data;
3811
-			$post_type  = get_post_type( $post_ID );
3812
-			$taxonomy   = $post_type . 'category';
3813
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3814
-
3815
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3816
-				foreach ( $terms as $term_id ) {
3817
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3818
-					$children               = get_term_children( $term_id, $taxonomy );
3819
-					$term_array[ $term_id ] = $count;
3811
+			$post_type  = get_post_type($post_ID);
3812
+			$taxonomy   = $post_type.'category';
3813
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3814
+
3815
+			if (!empty($terms) && !is_wp_error($terms)) {
3816
+				foreach ($terms as $term_id) {
3817
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3818
+					$children               = get_term_children($term_id, $taxonomy);
3819
+					$term_array[$term_id] = $count;
3820 3820
 				}
3821 3821
 			}
3822 3822
 
3823
-			$session_listing = $gd_session->get( 'listing' );
3823
+			$session_listing = $gd_session->get('listing');
3824 3824
 
3825 3825
 			$terms = array();
3826
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3827
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3828
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3829
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3826
+			if (isset($_POST['post_category'][$taxonomy])) {
3827
+				$terms = (array) $_POST['post_category'][$taxonomy];
3828
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3829
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3830 3830
 			}
3831 3831
 
3832
-			if ( ! empty( $terms ) ) {
3833
-				foreach ( $terms as $term_id ) {
3834
-					if ( $term_id > 0 ) {
3835
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3836
-						$children               = get_term_children( $term_id, $taxonomy );
3837
-						$term_array[ $term_id ] = $count;
3832
+			if (!empty($terms)) {
3833
+				foreach ($terms as $term_id) {
3834
+					if ($term_id > 0) {
3835
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3836
+						$children               = get_term_children($term_id, $taxonomy);
3837
+						$term_array[$term_id] = $count;
3838 3838
 					}
3839 3839
 				}
3840 3840
 			}
3841 3841
 		} else { // Update reviews count for all post categories.
3842 3842
 			$term_array = array();
3843 3843
 			$post_types = geodir_get_posttypes();
3844
-			foreach ( $post_types as $post_type ) {
3844
+			foreach ($post_types as $post_type) {
3845 3845
 
3846
-				$taxonomy = geodir_get_taxonomies( $post_type );
3846
+				$taxonomy = geodir_get_taxonomies($post_type);
3847 3847
 				$taxonomy = $taxonomy[0];
3848 3848
 
3849 3849
 				$args = array(
3850 3850
 					'hide_empty' => false
3851 3851
 				);
3852 3852
 
3853
-				$terms = get_terms( $taxonomy, $args );
3853
+				$terms = get_terms($taxonomy, $args);
3854 3854
 
3855
-				foreach ( $terms as $term ) {
3856
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
3857
-					$children = get_term_children( $term->term_id, $taxonomy );
3855
+				foreach ($terms as $term) {
3856
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3857
+					$children = get_term_children($term->term_id, $taxonomy);
3858 3858
 					/*if ( is_array( $children ) ) {
3859 3859
                         foreach ( $children as $child_id ) {
3860 3860
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3861 3861
                             $count = $count + $child_count;
3862 3862
                         }
3863 3863
                     }*/
3864
-					$term_array[ $term->term_id ] = $count;
3864
+					$term_array[$term->term_id] = $count;
3865 3865
 				}
3866 3866
 			}
3867 3867
 		}
3868 3868
 
3869
-		update_option( 'geodir_global_review_count', $term_array );
3869
+		update_option('geodir_global_review_count', $term_array);
3870 3870
 		//clear cache
3871
-		wp_cache_delete( 'geodir_global_review_count' );
3871
+		wp_cache_delete('geodir_global_review_count');
3872 3872
 
3873 3873
 		return $term_array;
3874 3874
 	} else {
@@ -3884,39 +3884,39 @@  discard block
 block discarded – undo
3884 3884
  * @package GeoDirectory
3885 3885
  * @return bool
3886 3886
  */
3887
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3888
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
3887
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
3888
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3889 3889
 		return; // do not run if importing listings
3890 3890
 	}
3891 3891
 
3892
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3892
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3893 3893
 		return;
3894 3894
 	}
3895 3895
 
3896 3896
 	$post_ID = 0;
3897
-	if ( ! empty( $post ) ) {
3898
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
3897
+	if (!empty($post)) {
3898
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3899 3899
 			return;
3900 3900
 		}
3901 3901
 
3902
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
3902
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
3903 3903
 			return;
3904 3904
 		}
3905 3905
 
3906
-		if ( ! empty( $post->ID ) ) {
3906
+		if (!empty($post->ID)) {
3907 3907
 			$post_ID = $post->ID;
3908 3908
 		}
3909 3909
 	}
3910 3910
 
3911
-	if ( $new_status != $old_status ) {
3912
-		geodir_count_reviews_by_terms( true, $post_ID );
3911
+	if ($new_status != $old_status) {
3912
+		geodir_count_reviews_by_terms(true, $post_ID);
3913 3913
 	}
3914 3914
 
3915 3915
 	return true;
3916 3916
 }
3917 3917
 
3918
-function geodir_term_review_count_force_update_single_post( $post_id ) {
3919
-	geodir_count_reviews_by_terms( true, $post_id );
3918
+function geodir_term_review_count_force_update_single_post($post_id) {
3919
+	geodir_count_reviews_by_terms(true, $post_id);
3920 3920
 }
3921 3921
 
3922 3922
 /*-----------------------------------------------------------------------------------*/
@@ -3933,11 +3933,11 @@  discard block
 block discarded – undo
3933 3933
  *
3934 3934
  * @return int Post count.
3935 3935
  */
3936
-function geodir_count_posts_by_term( $data, $term ) {
3936
+function geodir_count_posts_by_term($data, $term) {
3937 3937
 
3938
-	if ( $data ) {
3939
-		if ( isset( $data[ $term->term_id ] ) ) {
3940
-			return $data[ $term->term_id ];
3938
+	if ($data) {
3939
+		if (isset($data[$term->term_id])) {
3940
+			return $data[$term->term_id];
3941 3941
 		} else {
3942 3942
 			return 0;
3943 3943
 		}
@@ -3954,8 +3954,8 @@  discard block
 block discarded – undo
3954 3954
  * param array $terms An array of term objects.
3955 3955
  * @return array Sorted terms array.
3956 3956
  */
3957
-function geodir_sort_terms_by_count( $terms ) {
3958
-	usort( $terms, "geodir_sort_by_count_obj" );
3957
+function geodir_sort_terms_by_count($terms) {
3958
+	usort($terms, "geodir_sort_by_count_obj");
3959 3959
 
3960 3960
 	return $terms;
3961 3961
 }
@@ -3970,8 +3970,8 @@  discard block
 block discarded – undo
3970 3970
  *
3971 3971
  * @return array Sorted terms array.
3972 3972
  */
3973
-function geodir_sort_terms_by_review_count( $terms ) {
3974
-	usort( $terms, "geodir_sort_by_review_count_obj" );
3973
+function geodir_sort_terms_by_review_count($terms) {
3974
+	usort($terms, "geodir_sort_by_review_count_obj");
3975 3975
 
3976 3976
 	return $terms;
3977 3977
 }
@@ -3987,12 +3987,12 @@  discard block
 block discarded – undo
3987 3987
  *
3988 3988
  * @return array Sorted terms array.
3989 3989
  */
3990
-function geodir_sort_terms( $terms, $sort = 'count' ) {
3991
-	if ( $sort == 'count' ) {
3992
-		return geodir_sort_terms_by_count( $terms );
3990
+function geodir_sort_terms($terms, $sort = 'count') {
3991
+	if ($sort == 'count') {
3992
+		return geodir_sort_terms_by_count($terms);
3993 3993
 	}
3994
-	if ( $sort == 'review_count' ) {
3995
-		return geodir_sort_terms_by_review_count( $terms );
3994
+	if ($sort == 'review_count') {
3995
+		return geodir_sort_terms_by_review_count($terms);
3996 3996
 	}
3997 3997
 }
3998 3998
 
@@ -4010,7 +4010,7 @@  discard block
 block discarded – undo
4010 4010
  *
4011 4011
  * @return bool
4012 4012
  */
4013
-function geodir_sort_by_count( $a, $b ) {
4013
+function geodir_sort_by_count($a, $b) {
4014 4014
 	return $a['count'] < $b['count'];
4015 4015
 }
4016 4016
 
@@ -4025,7 +4025,7 @@  discard block
 block discarded – undo
4025 4025
  *
4026 4026
  * @return bool
4027 4027
  */
4028
-function geodir_sort_by_count_obj( $a, $b ) {
4028
+function geodir_sort_by_count_obj($a, $b) {
4029 4029
 	return $a->count < $b->count;
4030 4030
 }
4031 4031
 
@@ -4040,7 +4040,7 @@  discard block
 block discarded – undo
4040 4040
  *
4041 4041
  * @return bool
4042 4042
  */
4043
-function geodir_sort_by_review_count_obj( $a, $b ) {
4043
+function geodir_sort_by_review_count_obj($a, $b) {
4044 4044
 	return $a->review_count < $b->review_count;
4045 4045
 }
4046 4046
 
@@ -4057,35 +4057,35 @@  discard block
 block discarded – undo
4057 4057
 	 * @since   1.4.2
4058 4058
 	 * @package GeoDirectory
4059 4059
 	 */
4060
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4060
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4061 4061
 
4062
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4063
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4062
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4063
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4064 4064
 
4065 4065
 	/**
4066 4066
 	 * Define language constants.
4067 4067
 	 *
4068 4068
 	 * @since 1.0.0
4069 4069
 	 */
4070
-	require_once( geodir_plugin_path() . '/language.php' );
4070
+	require_once(geodir_plugin_path().'/language.php');
4071 4071
 
4072
-	$language_file = geodir_plugin_path() . '/db-language.php';
4072
+	$language_file = geodir_plugin_path().'/db-language.php';
4073 4073
 
4074 4074
 	// Load language string file if not created yet
4075
-	if ( ! file_exists( $language_file ) ) {
4075
+	if (!file_exists($language_file)) {
4076 4076
 		geodirectory_load_db_language();
4077 4077
 	}
4078 4078
 
4079
-	if ( file_exists( $language_file ) ) {
4079
+	if (file_exists($language_file)) {
4080 4080
 		/**
4081 4081
 		 * Language strings from database.
4082 4082
 		 *
4083 4083
 		 * @since 1.4.2
4084 4084
 		 */
4085 4085
 		try {
4086
-			require_once( $language_file );
4087
-		} catch ( Exception $e ) {
4088
-			error_log( 'Language Error: ' . $e->getMessage() );
4086
+			require_once($language_file);
4087
+		} catch (Exception $e) {
4088
+			error_log('Language Error: '.$e->getMessage());
4089 4089
 		}
4090 4090
 	}
4091 4091
 }
@@ -4102,19 +4102,19 @@  discard block
 block discarded – undo
4102 4102
  */
4103 4103
 function geodirectory_load_db_language() {
4104 4104
 	global $wp_filesystem;
4105
-	if ( empty( $wp_filesystem ) ) {
4106
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4105
+	if (empty($wp_filesystem)) {
4106
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4107 4107
 		WP_Filesystem();
4108 4108
 		global $wp_filesystem;
4109 4109
 	}
4110 4110
 
4111
-	$language_file = geodir_plugin_path() . '/db-language.php';
4111
+	$language_file = geodir_plugin_path().'/db-language.php';
4112 4112
 
4113
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4113
+	if (is_file($language_file) && !is_writable($language_file)) {
4114 4114
 		return false;
4115 4115
 	} // Not possible to create.
4116 4116
 
4117
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4117
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4118 4118
 		return false;
4119 4119
 	} // Not possible to create.
4120 4120
 
@@ -4127,9 +4127,9 @@  discard block
 block discarded – undo
4127 4127
 	 *
4128 4128
 	 * @param array $contents_strings Array of strings.
4129 4129
 	 */
4130
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4130
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4131 4131
 
4132
-	$contents_strings = array_unique( $contents_strings );
4132
+	$contents_strings = array_unique($contents_strings);
4133 4133
 
4134 4134
 	$contents_head   = array();
4135 4135
 	$contents_head[] = "<?php";
@@ -4146,20 +4146,20 @@  discard block
 block discarded – undo
4146 4146
 	$contents_foot[] = "";
4147 4147
 	$contents_foot[] = "";
4148 4148
 
4149
-	$contents = implode( PHP_EOL, $contents_head );
4149
+	$contents = implode(PHP_EOL, $contents_head);
4150 4150
 
4151
-	if ( ! empty( $contents_strings ) ) {
4152
-		foreach ( $contents_strings as $string ) {
4153
-			if ( is_scalar( $string ) && $string != '' ) {
4154
-				$string = str_replace( "'", "\'", $string );
4155
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4151
+	if (!empty($contents_strings)) {
4152
+		foreach ($contents_strings as $string) {
4153
+			if (is_scalar($string) && $string != '') {
4154
+				$string = str_replace("'", "\'", $string);
4155
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4156 4156
 			}
4157 4157
 		}
4158 4158
 	}
4159 4159
 
4160
-	$contents .= implode( PHP_EOL, $contents_foot );
4160
+	$contents .= implode(PHP_EOL, $contents_foot);
4161 4161
 
4162
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4162
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4163 4163
 		return false;
4164 4164
 	} // Failure; could not write file.
4165 4165
 
@@ -4179,45 +4179,45 @@  discard block
 block discarded – undo
4179 4179
  *
4180 4180
  * @return array Translation texts.
4181 4181
  */
4182
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4182
+function geodir_load_custom_field_translation($translation_texts = array()) {
4183 4183
 	global $wpdb;
4184 4184
 
4185 4185
 	// Custom fields table
4186
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4187
-	$rows = $wpdb->get_results( $sql );
4186
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4187
+	$rows = $wpdb->get_results($sql);
4188 4188
 
4189
-	if ( ! empty( $rows ) ) {
4190
-		foreach ( $rows as $row ) {
4191
-			if ( ! empty( $row->admin_title ) ) {
4192
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4189
+	if (!empty($rows)) {
4190
+		foreach ($rows as $row) {
4191
+			if (!empty($row->admin_title)) {
4192
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4193 4193
 			}
4194 4194
 
4195
-			if ( ! empty( $row->admin_desc ) ) {
4196
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4195
+			if (!empty($row->admin_desc)) {
4196
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4197 4197
 			}
4198 4198
 
4199
-			if ( ! empty( $row->site_title ) ) {
4200
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4199
+			if (!empty($row->site_title)) {
4200
+				$translation_texts[] = stripslashes_deep($row->site_title);
4201 4201
 			}
4202 4202
 
4203
-			if ( ! empty( $row->clabels ) ) {
4204
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4203
+			if (!empty($row->clabels)) {
4204
+				$translation_texts[] = stripslashes_deep($row->clabels);
4205 4205
 			}
4206 4206
 
4207
-			if ( ! empty( $row->required_msg ) ) {
4208
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4207
+			if (!empty($row->required_msg)) {
4208
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4209 4209
 			}
4210 4210
 
4211
-			if ( ! empty( $row->default_value ) ) {
4212
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4211
+			if (!empty($row->default_value)) {
4212
+				$translation_texts[] = stripslashes_deep($row->default_value);
4213 4213
 			}
4214 4214
 
4215
-			if ( ! empty( $row->option_values ) ) {
4216
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4215
+			if (!empty($row->option_values)) {
4216
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4217 4217
 
4218
-				if ( ! empty( $option_values ) ) {
4219
-					foreach ( $option_values as $option_value ) {
4220
-						if ( ! empty( $option_value['label'] ) ) {
4218
+				if (!empty($option_values)) {
4219
+					foreach ($option_values as $option_value) {
4220
+						if (!empty($option_value['label'])) {
4221 4221
 							$translation_texts[] = $option_value['label'];
4222 4222
 						}
4223 4223
 					}
@@ -4227,48 +4227,48 @@  discard block
 block discarded – undo
4227 4227
 	}
4228 4228
 
4229 4229
 	// Custom sorting fields table
4230
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4231
-	$rows = $wpdb->get_results( $sql );
4230
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4231
+	$rows = $wpdb->get_results($sql);
4232 4232
 
4233
-	if ( ! empty( $rows ) ) {
4234
-		foreach ( $rows as $row ) {
4235
-			if ( ! empty( $row->site_title ) ) {
4236
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4233
+	if (!empty($rows)) {
4234
+		foreach ($rows as $row) {
4235
+			if (!empty($row->site_title)) {
4236
+				$translation_texts[] = stripslashes_deep($row->site_title);
4237 4237
 			}
4238 4238
 
4239
-			if ( ! empty( $row->asc_title ) ) {
4240
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4239
+			if (!empty($row->asc_title)) {
4240
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4241 4241
 			}
4242 4242
 
4243
-			if ( ! empty( $row->desc_title ) ) {
4244
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4243
+			if (!empty($row->desc_title)) {
4244
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4245 4245
 			}
4246 4246
 		}
4247 4247
 	}
4248 4248
 
4249 4249
 	// Advance search filter fields table
4250
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4251
-		$sql  = "SELECT field_site_name, front_search_title, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4252
-		$rows = $wpdb->get_results( $sql );
4253
-
4254
-		if ( ! empty( $rows ) ) {
4255
-			foreach ( $rows as $row ) {
4256
-				if ( ! empty( $row->field_site_name ) ) {
4257
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4250
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4251
+		$sql  = "SELECT field_site_name, front_search_title, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4252
+		$rows = $wpdb->get_results($sql);
4253
+
4254
+		if (!empty($rows)) {
4255
+			foreach ($rows as $row) {
4256
+				if (!empty($row->field_site_name)) {
4257
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4258 4258
 				}
4259 4259
 
4260
-				if ( ! empty( $row->front_search_title ) ) {
4261
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4260
+				if (!empty($row->front_search_title)) {
4261
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4262 4262
 				}
4263 4263
 
4264
-				if ( ! empty( $row->field_desc ) ) {
4265
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4264
+				if (!empty($row->field_desc)) {
4265
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4266 4266
 				}
4267 4267
 			}
4268 4268
 		}
4269 4269
 	}
4270 4270
 
4271
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4271
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4272 4272
 
4273 4273
 	return $translation_texts;
4274 4274
 }
@@ -4290,7 +4290,7 @@  discard block
 block discarded – undo
4290 4290
 	 *
4291 4291
 	 * @param array $geodir_allowed_mime_types and file extensions.
4292 4292
 	 */
4293
-	return apply_filters( 'geodir_allowed_mime_types', array(
4293
+	return apply_filters('geodir_allowed_mime_types', array(
4294 4294
 			'Image'       => array( // Image formats.
4295 4295
 				'jpg'  => 'image/jpeg',
4296 4296
 				'jpe'  => 'image/jpeg',
@@ -4358,18 +4358,18 @@  discard block
 block discarded – undo
4358 4358
  *
4359 4359
  * @return string User display name.
4360 4360
  */
4361
-function geodir_get_client_name( $user_id ) {
4361
+function geodir_get_client_name($user_id) {
4362 4362
 	$client_name = '';
4363 4363
 
4364
-	$user_data = get_userdata( $user_id );
4364
+	$user_data = get_userdata($user_id);
4365 4365
 
4366
-	if ( ! empty( $user_data ) ) {
4367
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4368
-			$client_name = trim( $user_data->display_name );
4369
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4370
-			$client_name = trim( $user_data->user_nicename );
4366
+	if (!empty($user_data)) {
4367
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4368
+			$client_name = trim($user_data->display_name);
4369
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4370
+			$client_name = trim($user_data->user_nicename);
4371 4371
 		} else {
4372
-			$client_name = trim( $user_data->user_login );
4372
+			$client_name = trim($user_data->user_login);
4373 4373
 		}
4374 4374
 	}
4375 4375
 
@@ -4377,19 +4377,19 @@  discard block
 block discarded – undo
4377 4377
 }
4378 4378
 
4379 4379
 
4380
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4380
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4381 4381
 /*
4382 4382
  * Add location variables to wpseo replacements.
4383 4383
  *
4384 4384
  * @since 1.5.4
4385 4385
  */
4386
-function geodir_wpseo_replacements( $vars ) {
4386
+function geodir_wpseo_replacements($vars) {
4387 4387
 
4388 4388
 	global $wp;
4389 4389
 	$title = '';
4390 4390
 	// location variables
4391 4391
 	$gd_post_type   = geodir_get_current_posttype();
4392
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4392
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4393 4393
 	/**
4394 4394
 	 * Filter the title variables location variables array
4395 4395
 	 *
@@ -4399,105 +4399,105 @@  discard block
 block discarded – undo
4399 4399
 	 * @param array $location_array The array of location variables.
4400 4400
 	 * @param array $vars           The page title variables.
4401 4401
 	 */
4402
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4402
+	$location_array  = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4403 4403
 	$location_titles = array();
4404
-	if ( get_query_var( 'gd_country_full' ) ) {
4405
-		if ( get_query_var( 'gd_country_full' ) ) {
4406
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4404
+	if (get_query_var('gd_country_full')) {
4405
+		if (get_query_var('gd_country_full')) {
4406
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4407 4407
 		}
4408
-		if ( get_query_var( 'gd_region_full' ) ) {
4409
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4408
+		if (get_query_var('gd_region_full')) {
4409
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4410 4410
 		}
4411
-		if ( get_query_var( 'gd_city_full' ) ) {
4412
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4411
+		if (get_query_var('gd_city_full')) {
4412
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4413 4413
 		}
4414 4414
 	}
4415 4415
 	$location_single = '';
4416
-	$gd_country      = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : '';
4417
-	$gd_region       = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : '';
4418
-	$gd_city         = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : '';
4416
+	$gd_country      = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4417
+	$gd_region       = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4418
+	$gd_city         = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4419 4419
 
4420 4420
 	$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4421 4421
 
4422
-	if ( function_exists( 'get_actual_location_name' ) ) {
4423
-		$gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country;
4424
-		$gd_region_actual  = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region;
4425
-		$gd_city_actual    = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city;
4422
+	if (function_exists('get_actual_location_name')) {
4423
+		$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4424
+		$gd_region_actual  = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4425
+		$gd_city_actual    = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4426 4426
 	}
4427 4427
 
4428
-	if ( $gd_city != '' ) {
4429
-		if ( $gd_city_actual != '' ) {
4428
+	if ($gd_city != '') {
4429
+		if ($gd_city_actual != '') {
4430 4430
 			$gd_city = $gd_city_actual;
4431 4431
 		} else {
4432
-			$gd_city = preg_replace( '/-(\d+)$/', '', $gd_city );
4433
-			$gd_city = preg_replace( '/[_-]/', ' ', $gd_city );
4434
-			$gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' );
4432
+			$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4433
+			$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4434
+			$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4435 4435
 		}
4436 4436
 		$location_single = $gd_city;
4437 4437
 
4438
-	} else if ( $gd_region != '' ) {
4439
-		if ( $gd_region_actual != '' ) {
4438
+	} else if ($gd_region != '') {
4439
+		if ($gd_region_actual != '') {
4440 4440
 			$gd_region = $gd_region_actual;
4441 4441
 		} else {
4442
-			$gd_region = preg_replace( '/-(\d+)$/', '', $gd_region );
4443
-			$gd_region = preg_replace( '/[_-]/', ' ', $gd_region );
4444
-			$gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' );
4442
+			$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4443
+			$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4444
+			$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4445 4445
 		}
4446 4446
 
4447 4447
 		$location_single = $gd_region;
4448
-	} else if ( $gd_country != '' ) {
4449
-		if ( $gd_country_actual != '' ) {
4448
+	} else if ($gd_country != '') {
4449
+		if ($gd_country_actual != '') {
4450 4450
 			$gd_country = $gd_country_actual;
4451 4451
 		} else {
4452
-			$gd_country = preg_replace( '/-(\d+)$/', '', $gd_country );
4453
-			$gd_country = preg_replace( '/[_-]/', ' ', $gd_country );
4454
-			$gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' );
4452
+			$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4453
+			$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4454
+			$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4455 4455
 		}
4456 4456
 
4457 4457
 		$location_single = $gd_country;
4458 4458
 	}
4459 4459
 
4460
-	if ( ! empty( $location_array ) ) {
4460
+	if (!empty($location_array)) {
4461 4461
 
4462
-		$actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false;
4463
-		$location_array       = array_reverse( $location_array );
4462
+		$actual_location_name = function_exists('get_actual_location_name') ? true : false;
4463
+		$location_array       = array_reverse($location_array);
4464 4464
 
4465
-		foreach ( $location_array as $location_type => $location ) {
4466
-			$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location );
4467
-			$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
4465
+		foreach ($location_array as $location_type => $location) {
4466
+			$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4467
+			$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4468 4468
 
4469
-			$location_name = geodir_ucwords( $gd_location_link_text );
4470
-			$location_name = __( $location_name, 'geodirectory' );
4469
+			$location_name = geodir_ucwords($gd_location_link_text);
4470
+			$location_name = __($location_name, 'geodirectory');
4471 4471
 
4472
-			if ( $actual_location_name ) {
4473
-				$location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type;
4474
-				$location_name = get_actual_location_name( $location_type, $location, true );
4472
+			if ($actual_location_name) {
4473
+				$location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4474
+				$location_name = get_actual_location_name($location_type, $location, true);
4475 4475
 			}
4476 4476
 
4477 4477
 			$location_titles[] = $location_name;
4478 4478
 		}
4479
-		if ( ! empty( $location_titles ) ) {
4480
-			$location_titles = array_unique( $location_titles );
4479
+		if (!empty($location_titles)) {
4480
+			$location_titles = array_unique($location_titles);
4481 4481
 		}
4482 4482
 	}
4483 4483
 
4484 4484
 
4485
-	if ( ! empty( $location_titles ) ) {
4486
-		$vars['%%location%%'] = implode( ", ", $location_titles );
4485
+	if (!empty($location_titles)) {
4486
+		$vars['%%location%%'] = implode(", ", $location_titles);
4487 4487
 	}
4488 4488
 
4489 4489
 
4490
-	if ( ! empty( $location_titles ) ) {
4491
-		$vars['%%in_location%%'] = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles );
4490
+	if (!empty($location_titles)) {
4491
+		$vars['%%in_location%%'] = __('in ', 'geodirectory').implode(", ", $location_titles);
4492 4492
 	}
4493 4493
 
4494 4494
 
4495
-	if ( $location_single ) {
4496
-		$vars['%%in_location_single%%'] = __( 'in', 'geodirectory' ) . ' ' . $location_single;
4495
+	if ($location_single) {
4496
+		$vars['%%in_location_single%%'] = __('in', 'geodirectory').' '.$location_single;
4497 4497
 	}
4498 4498
 
4499 4499
 
4500
-	if ( $location_single ) {
4500
+	if ($location_single) {
4501 4501
 		$vars['%%location_single%%'] = $location_single;
4502 4502
 	}
4503 4503
 
@@ -4510,13 +4510,13 @@  discard block
 block discarded – undo
4510 4510
 	 * @param string $vars          The title with variables.
4511 4511
 	 * @param array $location_array The array of location variables.
4512 4512
 	 */
4513
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4513
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4514 4514
 }
4515 4515
 
4516 4516
 
4517
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4518
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4519
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4517
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4518
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4519
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4520 4520
 
4521 4521
 /**
4522 4522
  * Filter the title variables.
@@ -4558,14 +4558,14 @@  discard block
 block discarded – undo
4558 4558
  *
4559 4559
  * @return string Title after filtered variables.
4560 4560
  */
4561
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4561
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4562 4562
 	global $wp, $post;
4563 4563
 
4564
-	if ( ! $gd_page || ! $title ) {
4564
+	if (!$gd_page || !$title) {
4565 4565
 		return $title; // if no a GD page then bail.
4566 4566
 	}
4567 4567
 
4568
-	if ( $sep == '' ) {
4568
+	if ($sep == '') {
4569 4569
 		/**
4570 4570
 		 * Filter the page title separator.
4571 4571
 		 *
@@ -4574,100 +4574,100 @@  discard block
 block discarded – undo
4574 4574
 		 *
4575 4575
 		 * @param string $sep The separator, default: `|`.
4576 4576
 		 */
4577
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4577
+		$sep = apply_filters('geodir_page_title_separator', '|');
4578 4578
 	}
4579 4579
 
4580
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4581
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4580
+	if (strpos($title, '%%title%%') !== false) {
4581
+		$title = str_replace("%%title%%", $post->post_title, $title);
4582 4582
 	}
4583 4583
 
4584
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4585
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4584
+	if (strpos($title, '%%sitename%%') !== false) {
4585
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4586 4586
 	}
4587 4587
 
4588
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4589
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4588
+	if (strpos($title, '%%sitedesc%%') !== false) {
4589
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4590 4590
 	}
4591 4591
 
4592
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4593
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4592
+	if (strpos($title, '%%excerpt%%') !== false) {
4593
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4594 4594
 	}
4595 4595
 
4596
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4597
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4598
-	} else if ( $gd_page == 'add-listing' ) {
4599
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4600
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4601
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4596
+	if ($gd_page == 'search' || $gd_page == 'author') {
4597
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4598
+	} else if ($gd_page == 'add-listing') {
4599
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4600
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4601
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4602 4602
 		$post_type = $post->post_type;
4603 4603
 	} else {
4604
-		$post_type = get_query_var( 'post_type' );
4604
+		$post_type = get_query_var('post_type');
4605 4605
 	}
4606 4606
 
4607
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4607
+	if (strpos($title, '%%pt_single%%') !== false) {
4608 4608
 		$singular_name = '';
4609
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4610
-			$singular_name = __( $singular_name, 'geodirectory' );
4609
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4610
+			$singular_name = __($singular_name, 'geodirectory');
4611 4611
 		}
4612 4612
 
4613
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4613
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4614 4614
 	}
4615 4615
 
4616
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4616
+	if (strpos($title, '%%pt_plural%%') !== false) {
4617 4617
 		$plural_name = '';
4618
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4619
-			$plural_name = __( $plural_name, 'geodirectory' );
4618
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4619
+			$plural_name = __($plural_name, 'geodirectory');
4620 4620
 		}
4621 4621
 
4622
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4622
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4623 4623
 	}
4624 4624
 
4625
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4625
+	if (strpos($title, '%%category%%') !== false) {
4626 4626
 		$cat_name = '';
4627 4627
 
4628
-		if ( $gd_page == 'detail' ) {
4629
-			if ( $post->default_category ) {
4630
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4631
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4628
+		if ($gd_page == 'detail') {
4629
+			if ($post->default_category) {
4630
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4631
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4632 4632
 			}
4633
-		} else if ( $gd_page == 'listing' ) {
4633
+		} else if ($gd_page == 'listing') {
4634 4634
 			$queried_object = get_queried_object();
4635
-			if ( isset( $queried_object->name ) ) {
4635
+			if (isset($queried_object->name)) {
4636 4636
 				$cat_name = $queried_object->name;
4637 4637
 			}
4638 4638
 		}
4639
-		$title = str_replace( "%%category%%", $cat_name, $title );
4639
+		$title = str_replace("%%category%%", $cat_name, $title);
4640 4640
 	}
4641 4641
 
4642
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4642
+	if (strpos($title, '%%tag%%') !== false) {
4643 4643
 		$cat_name = '';
4644 4644
 
4645
-		if ( $gd_page == 'detail' ) {
4646
-			if ( $post->default_category ) {
4647
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4648
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4645
+		if ($gd_page == 'detail') {
4646
+			if ($post->default_category) {
4647
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4648
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4649 4649
 			}
4650
-		} else if ( $gd_page == 'listing' ) {
4650
+		} else if ($gd_page == 'listing') {
4651 4651
 			$queried_object = get_queried_object();
4652
-			if ( isset( $queried_object->name ) ) {
4652
+			if (isset($queried_object->name)) {
4653 4653
 				$cat_name = $queried_object->name;
4654 4654
 			}
4655 4655
 		}
4656
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4656
+		$title = str_replace("%%tag%%", $cat_name, $title);
4657 4657
 	}
4658 4658
 
4659
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4660
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4661
-		$title = str_replace( "%%id%%", $ID, $title );
4659
+	if (strpos($title, '%%id%%') !== false) {
4660
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4661
+		$title = str_replace("%%id%%", $ID, $title);
4662 4662
 	}
4663 4663
 
4664
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4665
-		$title = str_replace( "%%sep%%", $sep, $title );
4664
+	if (strpos($title, '%%sep%%') !== false) {
4665
+		$title = str_replace("%%sep%%", $sep, $title);
4666 4666
 	}
4667 4667
 
4668 4668
 	// location variables
4669 4669
 	$gd_post_type   = geodir_get_current_posttype();
4670
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4670
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4671 4671
 	/**
4672 4672
 	 * Filter the title variables location variables array
4673 4673
 	 *
@@ -4679,166 +4679,166 @@  discard block
 block discarded – undo
4679 4679
 	 * @param string $gd_page       The page being filtered.
4680 4680
 	 * @param string $sep           The separator, default: `|`.
4681 4681
 	 */
4682
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4682
+	$location_array  = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4683 4683
 	$location_titles = array();
4684
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4685
-		if ( get_query_var( 'gd_country_full' ) ) {
4686
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4684
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4685
+		if (get_query_var('gd_country_full')) {
4686
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4687 4687
 		}
4688
-		if ( get_query_var( 'gd_region_full' ) ) {
4689
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4688
+		if (get_query_var('gd_region_full')) {
4689
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4690 4690
 		}
4691
-		if ( get_query_var( 'gd_city_full' ) ) {
4692
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4691
+		if (get_query_var('gd_city_full')) {
4692
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4693 4693
 		}
4694 4694
 	}
4695 4695
 	$location_single = '';
4696
-	$gd_country      = ( isset( $wp->query_vars['gd_country'] ) && $wp->query_vars['gd_country'] != '' ) ? $wp->query_vars['gd_country'] : '';
4697
-	$gd_region       = ( isset( $wp->query_vars['gd_region'] ) && $wp->query_vars['gd_region'] != '' ) ? $wp->query_vars['gd_region'] : '';
4698
-	$gd_city         = ( isset( $wp->query_vars['gd_city'] ) && $wp->query_vars['gd_city'] != '' ) ? $wp->query_vars['gd_city'] : '';
4696
+	$gd_country      = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4697
+	$gd_region       = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4698
+	$gd_city         = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4699 4699
 
4700 4700
 	$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4701 4701
 
4702
-	if ( function_exists( 'get_actual_location_name' ) ) {
4703
-		$gd_country_actual = $gd_country != '' ? get_actual_location_name( 'country', $gd_country, true ) : $gd_country;
4704
-		$gd_region_actual  = $gd_region != '' ? get_actual_location_name( 'region', $gd_region ) : $gd_region;
4705
-		$gd_city_actual    = $gd_city != '' ? get_actual_location_name( 'city', $gd_city ) : $gd_city;
4702
+	if (function_exists('get_actual_location_name')) {
4703
+		$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4704
+		$gd_region_actual  = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4705
+		$gd_city_actual    = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4706 4706
 	}
4707 4707
 
4708
-	if ( $gd_city != '' ) {
4709
-		if ( $gd_city_actual != '' ) {
4708
+	if ($gd_city != '') {
4709
+		if ($gd_city_actual != '') {
4710 4710
 			$gd_city = $gd_city_actual;
4711 4711
 		} else {
4712
-			$gd_city = preg_replace( '/-(\d+)$/', '', $gd_city );
4713
-			$gd_city = preg_replace( '/[_-]/', ' ', $gd_city );
4714
-			$gd_city = __( geodir_ucwords( $gd_city ), 'geodirectory' );
4712
+			$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4713
+			$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4714
+			$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4715 4715
 		}
4716 4716
 		$location_single = $gd_city;
4717 4717
 
4718
-	} else if ( $gd_region != '' ) {
4719
-		if ( $gd_region_actual != '' ) {
4718
+	} else if ($gd_region != '') {
4719
+		if ($gd_region_actual != '') {
4720 4720
 			$gd_region = $gd_region_actual;
4721 4721
 		} else {
4722
-			$gd_region = preg_replace( '/-(\d+)$/', '', $gd_region );
4723
-			$gd_region = preg_replace( '/[_-]/', ' ', $gd_region );
4724
-			$gd_region = __( geodir_ucwords( $gd_region ), 'geodirectory' );
4722
+			$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4723
+			$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4724
+			$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4725 4725
 		}
4726 4726
 
4727 4727
 		$location_single = $gd_region;
4728
-	} else if ( $gd_country != '' ) {
4729
-		if ( $gd_country_actual != '' ) {
4728
+	} else if ($gd_country != '') {
4729
+		if ($gd_country_actual != '') {
4730 4730
 			$gd_country = $gd_country_actual;
4731 4731
 		} else {
4732
-			$gd_country = preg_replace( '/-(\d+)$/', '', $gd_country );
4733
-			$gd_country = preg_replace( '/[_-]/', ' ', $gd_country );
4734
-			$gd_country = __( geodir_ucwords( $gd_country ), 'geodirectory' );
4732
+			$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4733
+			$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4734
+			$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4735 4735
 		}
4736 4736
 
4737 4737
 		$location_single = $gd_country;
4738 4738
 	}
4739 4739
 
4740
-	if ( ! empty( $location_array ) ) {
4740
+	if (!empty($location_array)) {
4741 4741
 
4742
-		$actual_location_name = function_exists( 'get_actual_location_name' ) ? true : false;
4743
-		$location_array       = array_reverse( $location_array );
4742
+		$actual_location_name = function_exists('get_actual_location_name') ? true : false;
4743
+		$location_array       = array_reverse($location_array);
4744 4744
 
4745
-		foreach ( $location_array as $location_type => $location ) {
4746
-			$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location );
4747
-			$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
4745
+		foreach ($location_array as $location_type => $location) {
4746
+			$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4747
+			$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4748 4748
 
4749
-			$location_name = geodir_ucwords( $gd_location_link_text );
4750
-			$location_name = __( $location_name, 'geodirectory' );
4749
+			$location_name = geodir_ucwords($gd_location_link_text);
4750
+			$location_name = __($location_name, 'geodirectory');
4751 4751
 
4752
-			if ( $actual_location_name ) {
4753
-				$location_type = strpos( $location_type, 'gd_' ) === 0 ? substr( $location_type, 3 ) : $location_type;
4754
-				$location_name = get_actual_location_name( $location_type, $location, true );
4752
+			if ($actual_location_name) {
4753
+				$location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4754
+				$location_name = get_actual_location_name($location_type, $location, true);
4755 4755
 			}
4756 4756
 
4757 4757
 			$location_titles[] = $location_name;
4758 4758
 		}
4759
-		if ( ! empty( $location_titles ) ) {
4760
-			$location_titles = array_unique( $location_titles );
4759
+		if (!empty($location_titles)) {
4760
+			$location_titles = array_unique($location_titles);
4761 4761
 		}
4762 4762
 	}
4763 4763
 
4764 4764
 
4765
-	if ( strpos( $title, '%%location%%' ) !== false ) {
4765
+	if (strpos($title, '%%location%%') !== false) {
4766 4766
 		$location = '';
4767
-		if ( $location_titles ) {
4768
-			$location = implode( ", ", $location_titles );
4767
+		if ($location_titles) {
4768
+			$location = implode(", ", $location_titles);
4769 4769
 		}
4770
-		$title = str_replace( "%%location%%", $location, $title );
4770
+		$title = str_replace("%%location%%", $location, $title);
4771 4771
 	}
4772 4772
 
4773
-	if ( strpos( $title, '%%in_location%%' ) !== false ) {
4773
+	if (strpos($title, '%%in_location%%') !== false) {
4774 4774
 		$location = '';
4775
-		if ( $location_titles ) {
4776
-			$location = __( 'in ', 'geodirectory' ) . implode( ", ", $location_titles );
4775
+		if ($location_titles) {
4776
+			$location = __('in ', 'geodirectory').implode(", ", $location_titles);
4777 4777
 		}
4778
-		$title = str_replace( "%%in_location%%", $location, $title );
4778
+		$title = str_replace("%%in_location%%", $location, $title);
4779 4779
 	}
4780 4780
 
4781
-	if ( strpos( $title, '%%in_location_single%%' ) !== false ) {
4782
-		if ( $location_single ) {
4783
-			$location_single = __( 'in', 'geodirectory' ) . ' ' . $location_single;
4781
+	if (strpos($title, '%%in_location_single%%') !== false) {
4782
+		if ($location_single) {
4783
+			$location_single = __('in', 'geodirectory').' '.$location_single;
4784 4784
 		}
4785
-		$title = str_replace( "%%in_location_single%%", $location_single, $title );
4785
+		$title = str_replace("%%in_location_single%%", $location_single, $title);
4786 4786
 	}
4787 4787
 
4788
-	if ( strpos( $title, '%%location_single%%' ) !== false ) {
4789
-		$title = str_replace( "%%location_single%%", $location_single, $title );
4788
+	if (strpos($title, '%%location_single%%') !== false) {
4789
+		$title = str_replace("%%location_single%%", $location_single, $title);
4790 4790
 	}
4791 4791
 
4792 4792
 
4793
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4793
+	if (strpos($title, '%%search_term%%') !== false) {
4794 4794
 		$search_term = '';
4795
-		if ( isset( $_REQUEST['s'] ) ) {
4796
-			$search_term = esc_attr( $_REQUEST['s'] );
4795
+		if (isset($_REQUEST['s'])) {
4796
+			$search_term = esc_attr($_REQUEST['s']);
4797 4797
 		}
4798
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4798
+		$title = str_replace("%%search_term%%", $search_term, $title);
4799 4799
 	}
4800 4800
 
4801
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4801
+	if (strpos($title, '%%search_near%%') !== false) {
4802 4802
 		$search_term = '';
4803
-		if ( isset( $_REQUEST['snear'] ) ) {
4804
-			$search_term = esc_attr( $_REQUEST['snear'] );
4803
+		if (isset($_REQUEST['snear'])) {
4804
+			$search_term = esc_attr($_REQUEST['snear']);
4805 4805
 		}
4806
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4806
+		$title = str_replace("%%search_near%%", $search_term, $title);
4807 4807
 	}
4808 4808
 
4809
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4810
-		if ( is_author() ) {
4811
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4809
+	if (strpos($title, '%%name%%') !== false) {
4810
+		if (is_author()) {
4811
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4812 4812
 			$author_name = $curauth->display_name;
4813 4813
 		} else {
4814 4814
 			$author_name = get_the_author();
4815 4815
 		}
4816
-		if ( ! $author_name || $author_name === '' ) {
4816
+		if (!$author_name || $author_name === '') {
4817 4817
 			$queried_object = get_queried_object();
4818 4818
 
4819
-			if ( isset( $queried_object->data->user_nicename ) ) {
4819
+			if (isset($queried_object->data->user_nicename)) {
4820 4820
 				$author_name = $queried_object->data->display_name;
4821 4821
 			}
4822 4822
 		}
4823
-		$title = str_replace( "%%name%%", $author_name, $title );
4823
+		$title = str_replace("%%name%%", $author_name, $title);
4824 4824
 	}
4825 4825
 
4826
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4827
-		$page  = geodir_title_meta_page( $sep );
4828
-		$title = str_replace( "%%page%%", $page, $title );
4826
+	if (strpos($title, '%%page%%') !== false) {
4827
+		$page  = geodir_title_meta_page($sep);
4828
+		$title = str_replace("%%page%%", $page, $title);
4829 4829
 	}
4830
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4830
+	if (strpos($title, '%%pagenumber%%') !== false) {
4831 4831
 		$pagenumber = geodir_title_meta_pagenumber();
4832
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4832
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4833 4833
 	}
4834
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4834
+	if (strpos($title, '%%pagetotal%%') !== false) {
4835 4835
 		$pagetotal = geodir_title_meta_pagetotal();
4836
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4836
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4837 4837
 	}
4838 4838
 
4839
-	$title = wptexturize( $title );
4840
-	$title = convert_chars( $title );
4841
-	$title = esc_html( $title );
4839
+	$title = wptexturize($title);
4840
+	$title = convert_chars($title);
4841
+	$title = esc_html($title);
4842 4842
 
4843 4843
 	/**
4844 4844
 	 * Filter the title variables after standard ones have been filtered.
@@ -4852,7 +4852,7 @@  discard block
 block discarded – undo
4852 4852
 	 * @param string $sep           The separator, default: `|`.
4853 4853
 	 */
4854 4854
 
4855
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4855
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4856 4856
 }
4857 4857
 
4858 4858
 /**
@@ -4865,82 +4865,82 @@  discard block
 block discarded – undo
4865 4865
  *
4866 4866
  * @return array Translation texts.
4867 4867
  */
4868
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4869
-	$gd_post_types = geodir_get_posttypes( 'array' );
4868
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4869
+	$gd_post_types = geodir_get_posttypes('array');
4870 4870
 
4871
-	if ( ! empty( $gd_post_types ) ) {
4872
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4873
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4874
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4875
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4871
+	if (!empty($gd_post_types)) {
4872
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4873
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4874
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4875
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4876 4876
 
4877
-			if ( ! empty( $labels ) ) {
4878
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4877
+			if (!empty($labels)) {
4878
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4879 4879
 					$translation_texts[] = $labels['name'];
4880 4880
 				}
4881
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4881
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4882 4882
 					$translation_texts[] = $labels['singular_name'];
4883 4883
 				}
4884
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4884
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4885 4885
 					$translation_texts[] = $labels['add_new'];
4886 4886
 				}
4887
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4887
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4888 4888
 					$translation_texts[] = $labels['add_new_item'];
4889 4889
 				}
4890
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4890
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4891 4891
 					$translation_texts[] = $labels['edit_item'];
4892 4892
 				}
4893
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4893
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4894 4894
 					$translation_texts[] = $labels['new_item'];
4895 4895
 				}
4896
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4896
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4897 4897
 					$translation_texts[] = $labels['view_item'];
4898 4898
 				}
4899
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4899
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4900 4900
 					$translation_texts[] = $labels['search_items'];
4901 4901
 				}
4902
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4902
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4903 4903
 					$translation_texts[] = $labels['not_found'];
4904 4904
 				}
4905
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4905
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4906 4906
 					$translation_texts[] = $labels['not_found_in_trash'];
4907 4907
 				}
4908
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4908
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4909 4909
 					$translation_texts[] = $labels['label_post_profile'];
4910 4910
 				}
4911
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4911
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4912 4912
 					$translation_texts[] = $labels['label_post_info'];
4913 4913
 				}
4914
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4914
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4915 4915
 					$translation_texts[] = $labels['label_post_images'];
4916 4916
 				}
4917
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4917
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4918 4918
 					$translation_texts[] = $labels['label_post_map'];
4919 4919
 				}
4920
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4920
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4921 4921
 					$translation_texts[] = $labels['label_reviews'];
4922 4922
 				}
4923
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4923
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4924 4924
 					$translation_texts[] = $labels['label_related_listing'];
4925 4925
 				}
4926 4926
 			}
4927 4927
 
4928
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4929
-				$translation_texts[] = normalize_whitespace( $description );
4928
+			if ($description != '' && !in_array($description, $translation_texts)) {
4929
+				$translation_texts[] = normalize_whitespace($description);
4930 4930
 			}
4931 4931
 
4932
-			if ( ! empty( $seo ) ) {
4933
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4934
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4932
+			if (!empty($seo)) {
4933
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4934
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4935 4935
 				}
4936 4936
 
4937
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4938
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4937
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4938
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4939 4939
 				}
4940 4940
 			}
4941 4941
 		}
4942 4942
 	}
4943
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4943
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4944 4944
 
4945 4945
 	return $translation_texts;
4946 4946
 }
@@ -4955,27 +4955,27 @@  discard block
 block discarded – undo
4955 4955
  *
4956 4956
  * @return array Location terms.
4957 4957
  */
4958
-function geodir_remove_location_terms( $location_terms = array() ) {
4959
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4958
+function geodir_remove_location_terms($location_terms = array()) {
4959
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4960 4960
 
4961
-	if ( ! empty( $location_terms ) && $location_manager ) {
4962
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4963
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4961
+	if (!empty($location_terms) && $location_manager) {
4962
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4963
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4964 4964
 
4965
-		if ( $hide_region_part && $hide_country_part ) {
4966
-			if ( isset( $location_terms['gd_country'] ) ) {
4967
-				unset( $location_terms['gd_country'] );
4965
+		if ($hide_region_part && $hide_country_part) {
4966
+			if (isset($location_terms['gd_country'])) {
4967
+				unset($location_terms['gd_country']);
4968 4968
 			}
4969
-			if ( isset( $location_terms['gd_region'] ) ) {
4970
-				unset( $location_terms['gd_region'] );
4969
+			if (isset($location_terms['gd_region'])) {
4970
+				unset($location_terms['gd_region']);
4971 4971
 			}
4972
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4973
-			if ( isset( $location_terms['gd_region'] ) ) {
4974
-				unset( $location_terms['gd_region'] );
4972
+		} else if ($hide_region_part && !$hide_country_part) {
4973
+			if (isset($location_terms['gd_region'])) {
4974
+				unset($location_terms['gd_region']);
4975 4975
 			}
4976
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4977
-			if ( isset( $location_terms['gd_country'] ) ) {
4978
-				unset( $location_terms['gd_country'] );
4976
+		} else if (!$hide_region_part && $hide_country_part) {
4977
+			if (isset($location_terms['gd_country'])) {
4978
+				unset($location_terms['gd_country']);
4979 4979
 			}
4980 4980
 		}
4981 4981
 	}
@@ -4993,33 +4993,33 @@  discard block
 block discarded – undo
4993 4993
  * @param WP_Post $post Post object.
4994 4994
  * @param bool $update  Whether this is an existing listing being updated or not.
4995 4995
  */
4996
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4997
-	if ( ! $update ) {
4996
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4997
+	if (!$update) {
4998 4998
 		return;
4999 4999
 	}
5000 5000
 
5001
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5002
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5001
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5002
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5003 5003
 	$inline_save = $action == 'inline-save' ? true : false;
5004 5004
 
5005
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5005
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5006 5006
 		return;
5007 5007
 	}
5008 5008
 
5009
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5009
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5010 5010
 		return;
5011 5011
 	}
5012 5012
 
5013 5013
 	$user_id = (int) get_current_user_id();
5014 5014
 
5015
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5016
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5015
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5016
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5017 5017
 
5018
-		if ( $user_id == $author_id && ! is_super_admin() ) {
5019
-			$from_email   = get_option( 'site_email' );
5018
+		if ($user_id == $author_id && !is_super_admin()) {
5019
+			$from_email   = get_option('site_email');
5020 5020
 			$from_name    = get_site_emailName();
5021
-			$to_email     = get_option( 'admin_email' );
5022
-			$to_name      = get_option( 'name' );
5021
+			$to_email     = get_option('admin_email');
5022
+			$to_name      = get_option('name');
5023 5023
 			$message_type = 'listing_edited';
5024 5024
 
5025 5025
 			$notify_edited = true;
@@ -5031,9 +5031,9 @@  discard block
 block discarded – undo
5031 5031
 			 * @param bool $notify_edited Notify on listing edited by author?
5032 5032
 			 * @param object $post        The current post object.
5033 5033
 			 */
5034
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
5034
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
5035 5035
 
5036
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5036
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5037 5037
 		}
5038 5038
 	}
5039 5039
 }
@@ -5048,14 +5048,14 @@  discard block
 block discarded – undo
5048 5048
  *
5049 5049
  * @return string|null The current page start & end numbering.
5050 5050
  */
5051
-function geodir_title_meta_page( $sep ) {
5051
+function geodir_title_meta_page($sep) {
5052 5052
 	$replacement = null;
5053 5053
 
5054
-	$max = geodir_title_meta_pagenumbering( 'max' );
5055
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5054
+	$max = geodir_title_meta_pagenumbering('max');
5055
+	$nr  = geodir_title_meta_pagenumbering('nr');
5056 5056
 
5057
-	if ( $max > 1 && $nr > 1 ) {
5058
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5057
+	if ($max > 1 && $nr > 1) {
5058
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5059 5059
 	}
5060 5060
 
5061 5061
 	return $replacement;
@@ -5072,8 +5072,8 @@  discard block
 block discarded – undo
5072 5072
 function geodir_title_meta_pagenumber() {
5073 5073
 	$replacement = null;
5074 5074
 
5075
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5076
-	if ( isset( $nr ) && $nr > 0 ) {
5075
+	$nr = geodir_title_meta_pagenumbering('nr');
5076
+	if (isset($nr) && $nr > 0) {
5077 5077
 		$replacement = (string) $nr;
5078 5078
 	}
5079 5079
 
@@ -5091,8 +5091,8 @@  discard block
 block discarded – undo
5091 5091
 function geodir_title_meta_pagetotal() {
5092 5092
 	$replacement = null;
5093 5093
 
5094
-	$max = geodir_title_meta_pagenumbering( 'max' );
5095
-	if ( isset( $max ) && $max > 0 ) {
5094
+	$max = geodir_title_meta_pagenumbering('max');
5095
+	if (isset($max) && $max > 0) {
5096 5096
 		$replacement = (string) $max;
5097 5097
 	}
5098 5098
 
@@ -5112,36 +5112,36 @@  discard block
 block discarded – undo
5112 5112
  *
5113 5113
  * @return int|null The current page numbering.
5114 5114
  */
5115
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5115
+function geodir_title_meta_pagenumbering($request = 'nr') {
5116 5116
 	global $wp_query, $post;
5117 5117
 	$max_num_pages = null;
5118 5118
 	$page_number   = null;
5119 5119
 
5120 5120
 	$max_num_pages = 1;
5121 5121
 
5122
-	if ( ! is_singular() ) {
5123
-		$page_number = get_query_var( 'paged' );
5124
-		if ( $page_number === 0 || $page_number === '' ) {
5122
+	if (!is_singular()) {
5123
+		$page_number = get_query_var('paged');
5124
+		if ($page_number === 0 || $page_number === '') {
5125 5125
 			$page_number = 1;
5126 5126
 		}
5127 5127
 
5128
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5128
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5129 5129
 			$max_num_pages = $wp_query->max_num_pages;
5130 5130
 		}
5131 5131
 	} else {
5132
-		$page_number = get_query_var( 'page' );
5133
-		if ( $page_number === 0 || $page_number === '' ) {
5132
+		$page_number = get_query_var('page');
5133
+		if ($page_number === 0 || $page_number === '') {
5134 5134
 			$page_number = 1;
5135 5135
 		}
5136 5136
 
5137
-		if ( isset( $post->post_content ) ) {
5138
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5137
+		if (isset($post->post_content)) {
5138
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5139 5139
 		}
5140 5140
 	}
5141 5141
 
5142 5142
 	$return = null;
5143 5143
 
5144
-	switch ( $request ) {
5144
+	switch ($request) {
5145 5145
 		case 'nr':
5146 5146
 			$return = $page_number;
5147 5147
 			break;
@@ -5162,14 +5162,14 @@  discard block
 block discarded – undo
5162 5162
  *
5163 5163
  * @return array Terms.
5164 5164
  */
5165
-function geodir_filter_empty_terms( $terms ) {
5166
-	if ( empty( $terms ) ) {
5165
+function geodir_filter_empty_terms($terms) {
5166
+	if (empty($terms)) {
5167 5167
 		return $terms;
5168 5168
 	}
5169 5169
 
5170 5170
 	$return = array();
5171
-	foreach ( $terms as $term ) {
5172
-		if ( isset( $term->count ) && $term->count > 0 ) {
5171
+	foreach ($terms as $term) {
5172
+		if (isset($term->count) && $term->count > 0) {
5173 5173
 			$return[] = $term;
5174 5174
 		} else {
5175 5175
 			/**
@@ -5180,7 +5180,7 @@  discard block
 block discarded – undo
5180 5180
 			 * @param array $return The array of terms to return.
5181 5181
 			 * @param object $term  The term object.
5182 5182
 			 */
5183
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5183
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5184 5184
 		}
5185 5185
 	}
5186 5186
 
@@ -5197,12 +5197,12 @@  discard block
 block discarded – undo
5197 5197
  *
5198 5198
  * @return array
5199 5199
  */
5200
-function geodir_remove_hentry( $class ) {
5201
-	if ( geodir_is_page( 'detail' ) ) {
5202
-		$class = array_diff( $class, array( 'hentry' ) );
5200
+function geodir_remove_hentry($class) {
5201
+	if (geodir_is_page('detail')) {
5202
+		$class = array_diff($class, array('hentry'));
5203 5203
 	}
5204 5204
 
5205 5205
 	return $class;
5206 5206
 }
5207 5207
 
5208
-add_filter( 'post_class', 'geodir_remove_hentry' );
5209 5208
\ No newline at end of file
5209
+add_filter('post_class', 'geodir_remove_hentry');
5210 5210
\ 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   +541 added lines, -541 removed lines patch added patch discarded remove patch
@@ -10,47 +10,47 @@  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
-    }
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 24
 
25
-    if (GEODIRECTORY_VERSION <= '1.4.6') {
26
-        add_action('init', 'geodir_upgrade_146', 11);
27
-    }
25
+	if (GEODIRECTORY_VERSION <= '1.4.6') {
26
+		add_action('init', 'geodir_upgrade_146', 11);
27
+	}
28 28
 
29
-    if (GEODIRECTORY_VERSION <= '1.4.8') {
30
-        add_action('init', 'geodir_upgrade_148', 11);
31
-    }
29
+	if (GEODIRECTORY_VERSION <= '1.4.8') {
30
+		add_action('init', 'geodir_upgrade_148', 11);
31
+	}
32 32
 
33
-    if (GEODIRECTORY_VERSION <= '1.5.0') {
34
-        add_action('init', 'geodir_upgrade_150', 11);
35
-    }
33
+	if (GEODIRECTORY_VERSION <= '1.5.0') {
34
+		add_action('init', 'geodir_upgrade_150', 11);
35
+	}
36 36
 
37
-    if (GEODIRECTORY_VERSION <= '1.5.2') {
38
-        add_action('init', 'geodir_upgrade_152', 11);
39
-    }
37
+	if (GEODIRECTORY_VERSION <= '1.5.2') {
38
+		add_action('init', 'geodir_upgrade_152', 11);
39
+	}
40 40
 
41
-    if (GEODIRECTORY_VERSION <= '1.5.3') {
42
-        add_action('init', 'geodir_upgrade_153', 11);
43
-    }
41
+	if (GEODIRECTORY_VERSION <= '1.5.3') {
42
+		add_action('init', 'geodir_upgrade_153', 11);
43
+	}
44 44
 
45
-    if (GEODIRECTORY_VERSION <= '1.5.4') {
46
-        add_action('init', 'geodir_upgrade_154', 11);
47
-    }
45
+	if (GEODIRECTORY_VERSION <= '1.5.4') {
46
+		add_action('init', 'geodir_upgrade_154', 11);
47
+	}
48 48
 
49 49
 
50 50
 
51
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
51
+	add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
52 52
 
53
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
53
+	update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
54 54
 
55 55
 }
56 56
 
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
  */
64 64
 function geodirectory_upgrade_all()
65 65
 {
66
-    geodir_create_tables();
67
-    geodir_update_review_db();
68
-    gd_install_theme_compat();
69
-    gd_convert_custom_field_display();
66
+	geodir_create_tables();
67
+	geodir_update_review_db();
68
+	gd_install_theme_compat();
69
+	gd_convert_custom_field_display();
70 70
 }
71 71
 
72 72
 /**
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
  */
78 78
 function geodir_upgrade_136()
79 79
 {
80
-    geodir_fix_review_overall_rating();
80
+	geodir_fix_review_overall_rating();
81 81
 }
82 82
 
83 83
 /**
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
  * @package GeoDirectory
88 88
  */
89 89
 function geodir_upgrade_146(){
90
-    gd_convert_virtual_pages();
90
+	gd_convert_virtual_pages();
91 91
 }
92 92
 
93 93
 /**
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
  * @package GeoDirectory
98 98
  */
99 99
 function geodir_upgrade_150(){
100
-    gd_fix_cpt_rewrite_slug();
100
+	gd_fix_cpt_rewrite_slug();
101 101
 }
102 102
 
103 103
 
@@ -109,11 +109,11 @@  discard block
 block discarded – undo
109 109
  * @package GeoDirectory
110 110
  */
111 111
 function geodir_upgrade_148(){
112
-    /*
112
+	/*
113 113
      * Blank the users google password if present as we now use oAuth 2.0
114 114
      */
115
-    update_option('geodir_ga_pass','');
116
-    update_option('geodir_ga_user','');
115
+	update_option('geodir_ga_pass','');
116
+	update_option('geodir_ga_user','');
117 117
 
118 118
 }
119 119
 
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
  * @package GeoDirectory
126 126
  */
127 127
 function geodir_upgrade_153(){
128
-    geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
129
-    geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
128
+	geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
129
+	geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
130 130
 }
131 131
 
132 132
 /**
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
  * @package GeoDirectory
137 137
  */
138 138
 function geodir_upgrade_154(){
139
-    geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
139
+	geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
140 140
 }
141 141
 
142 142
 /**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
  * @package GeoDirectory
147 147
  */
148 148
 function geodir_upgrade_152(){
149
-    gd_fix_address_detail_table_limit();
149
+	gd_fix_address_detail_table_limit();
150 150
 }
151 151
 
152 152
 
@@ -162,12 +162,12 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function geodir_update_review_db()
164 164
 {
165
-    global $wpdb, $plugin_prefix;
165
+	global $wpdb, $plugin_prefix;
166 166
 
167
-    geodir_fix_review_date();
168
-    geodir_fix_review_post_status();
169
-    geodir_fix_review_content();
170
-    geodir_fix_review_location();
167
+	geodir_fix_review_date();
168
+	geodir_fix_review_post_status();
169
+	geodir_fix_review_content();
170
+	geodir_fix_review_location();
171 171
 
172 172
 }
173 173
 
@@ -180,8 +180,8 @@  discard block
 block discarded – undo
180 180
  */
181 181
 function geodir_fix_review_date()
182 182
 {
183
-    global $wpdb;
184
-    $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'");
183
+	global $wpdb;
184
+	$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'");
185 185
 }
186 186
 
187 187
 /**
@@ -193,8 +193,8 @@  discard block
 block discarded – undo
193 193
  */
194 194
 function geodir_fix_review_post_status()
195 195
 {
196
-    global $wpdb;
197
-    $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'");
196
+	global $wpdb;
197
+	$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'");
198 198
 }
199 199
 
200 200
 /**
@@ -207,12 +207,12 @@  discard block
 block discarded – undo
207 207
  */
208 208
 function geodir_fix_review_content()
209 209
 {
210
-    global $wpdb;
211
-    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")) {
212
-        return true;
213
-    } else {
214
-        return false;
215
-    }
210
+	global $wpdb;
211
+	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")) {
212
+		return true;
213
+	} else {
214
+		return false;
215
+	}
216 216
 }
217 217
 
218 218
 /**
@@ -225,20 +225,20 @@  discard block
 block discarded – undo
225 225
  */
226 226
 function geodir_fix_review_location()
227 227
 {
228
-    global $wpdb;
228
+	global $wpdb;
229 229
 
230
-    $all_postypes = geodir_get_posttypes();
230
+	$all_postypes = geodir_get_posttypes();
231 231
 
232
-    if (!empty($all_postypes)) {
233
-        foreach ($all_postypes as $key) {
234
-            // update each GD CTP
232
+	if (!empty($all_postypes)) {
233
+		foreach ($all_postypes as $key) {
234
+			// update each GD CTP
235 235
 
236
-            $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");
236
+			$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");
237 237
 
238
-        }
239
-        return true;
240
-    }
241
-    return false;
238
+		}
239
+		return true;
240
+	}
241
+	return false;
242 242
 }
243 243
 
244 244
 /**
@@ -250,82 +250,82 @@  discard block
 block discarded – undo
250 250
  */
251 251
 function geodir_fix_review_overall_rating()
252 252
 {
253
-    global $wpdb;
253
+	global $wpdb;
254 254
 
255
-    $all_postypes = geodir_get_posttypes();
255
+	$all_postypes = geodir_get_posttypes();
256 256
 
257
-    if (!empty($all_postypes)) {
258
-        foreach ($all_postypes as $key) {
259
-            // update each GD CTP
260
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
257
+	if (!empty($all_postypes)) {
258
+		foreach ($all_postypes as $key) {
259
+			// update each GD CTP
260
+			$reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
261 261
 
262
-            if (!empty($reviews)) {
263
-                foreach ($reviews as $post_id) {
264
-                    geodir_update_postrating($post_id->post_id, $key);
265
-                }
262
+			if (!empty($reviews)) {
263
+				foreach ($reviews as $post_id) {
264
+					geodir_update_postrating($post_id->post_id, $key);
265
+				}
266 266
 
267
-            }
267
+			}
268 268
 
269
-        }
269
+		}
270 270
 
271
-    }
271
+	}
272 272
 }
273 273
 
274 274
 
275 275
 function gd_convert_custom_field_display(){
276
-    global $wpdb;
276
+	global $wpdb;
277 277
 
278
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
278
+	$field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
279 279
 
280
-    $has_run = get_option('gd_convert_custom_field_display');
281
-    if($has_run){return;}
280
+	$has_run = get_option('gd_convert_custom_field_display');
281
+	if($has_run){return;}
282 282
 
283
-    // set the field_type_key for standard fields
284
-    $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
283
+	// set the field_type_key for standard fields
284
+	$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
285 285
 
286 286
 
287
-    if(is_array( $field_info)){
287
+	if(is_array( $field_info)){
288 288
 
289
-        foreach( $field_info as $cf){
289
+		foreach( $field_info as $cf){
290 290
 
291
-            $id = $cf->id;
291
+			$id = $cf->id;
292 292
 
293
-            if(!property_exists($cf,'show_in') || !$id){return;}
293
+			if(!property_exists($cf,'show_in') || !$id){return;}
294 294
 
295
-            $show_in_arr = array();
295
+			$show_in_arr = array();
296 296
 
297
-            if($cf->is_default){
298
-                $show_in_arr[] = "[detail]";
299
-            }
297
+			if($cf->is_default){
298
+				$show_in_arr[] = "[detail]";
299
+			}
300 300
 
301
-            if($cf->show_on_detail){
302
-                $show_in_arr[] = "[moreinfo]";
303
-            }
301
+			if($cf->show_on_detail){
302
+				$show_in_arr[] = "[moreinfo]";
303
+			}
304 304
 
305
-            if($cf->show_on_listing){
306
-                $show_in_arr[] = "[listing]";
307
-            }
305
+			if($cf->show_on_listing){
306
+				$show_in_arr[] = "[listing]";
307
+			}
308 308
 
309
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
310
-                $show_in_arr[] = "[owntab]";
311
-            }
309
+			if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
310
+				$show_in_arr[] = "[owntab]";
311
+			}
312 312
 
313
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
314
-                $show_in_arr[] = "[mapbubble]";
315
-            }
313
+			if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
314
+				$show_in_arr[] = "[mapbubble]";
315
+			}
316 316
 
317
-            if(!empty($show_in_arr )){
318
-                $show_in_arr = implode(',',$show_in_arr);
319
-            }else{
320
-                $show_in_arr = '';
321
-            }
317
+			if(!empty($show_in_arr )){
318
+				$show_in_arr = implode(',',$show_in_arr);
319
+			}else{
320
+				$show_in_arr = '';
321
+			}
322 322
 
323
-            $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
323
+			$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
324 324
 
325
-        }
325
+		}
326 326
 
327
-        update_option('gd_convert_custom_field_display',1);
328
-    }
327
+		update_option('gd_convert_custom_field_display',1);
328
+	}
329 329
 }
330 330
 
331 331
 ############################################
@@ -341,367 +341,367 @@  discard block
 block discarded – undo
341 341
  */
342 342
 function gd_install_theme_compat()
343 343
 {
344
-    global $wpdb;
344
+	global $wpdb;
345 345
 
346
-    $theme_compat = array();
347
-    $theme_compat = get_option('gd_theme_compats');
346
+	$theme_compat = array();
347
+	$theme_compat = get_option('gd_theme_compats');
348 348
 //GDF
349
-    $theme_compat['GeoDirectory_Framework'] = array(
350
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
351
-        'geodir_wrapper_open_class' => '',
352
-        'geodir_wrapper_open_replace' => '',
353
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
354
-        'geodir_wrapper_content_open_id' => 'geodir_content',
355
-        'geodir_wrapper_content_open_class' => '',
356
-        'geodir_wrapper_content_open_replace' => '',
357
-        'geodir_wrapper_content_close_replace' => '',
358
-        'geodir_article_open_id' => '',
359
-        'geodir_article_open_class' => '',
360
-        'geodir_article_open_replace' => '',
361
-        'geodir_article_close_replace' => '',
362
-        'geodir_sidebar_right_open_id' => '',
363
-        'geodir_sidebar_right_open_class' => '',
364
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
365
-        'geodir_sidebar_right_close_replace' => '',
366
-        'geodir_sidebar_left_open_id' => '',
367
-        'geodir_sidebar_left_open_class' => '',
368
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
369
-        'geodir_sidebar_left_close_replace' => '',
370
-        'geodir_main_content_open_id' => '',
371
-        'geodir_main_content_open_class' => '',
372
-        'geodir_main_content_open_replace' => '<!-- removed -->',
373
-        'geodir_main_content_close_replace' => '<!-- removed -->',
374
-        'geodir_top_content_add' => '',
375
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
376
-        'geodir_before_widget_filter' => '',
377
-        'geodir_after_widget_filter' => '',
378
-        'geodir_theme_compat_css' => '',
379
-        'geodir_theme_compat_js' => '',
380
-        'geodir_theme_compat_default_options' => '',
381
-        'geodir_theme_compat_code' => ''
382
-    );
349
+	$theme_compat['GeoDirectory_Framework'] = array(
350
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
351
+		'geodir_wrapper_open_class' => '',
352
+		'geodir_wrapper_open_replace' => '',
353
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
354
+		'geodir_wrapper_content_open_id' => 'geodir_content',
355
+		'geodir_wrapper_content_open_class' => '',
356
+		'geodir_wrapper_content_open_replace' => '',
357
+		'geodir_wrapper_content_close_replace' => '',
358
+		'geodir_article_open_id' => '',
359
+		'geodir_article_open_class' => '',
360
+		'geodir_article_open_replace' => '',
361
+		'geodir_article_close_replace' => '',
362
+		'geodir_sidebar_right_open_id' => '',
363
+		'geodir_sidebar_right_open_class' => '',
364
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
365
+		'geodir_sidebar_right_close_replace' => '',
366
+		'geodir_sidebar_left_open_id' => '',
367
+		'geodir_sidebar_left_open_class' => '',
368
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
369
+		'geodir_sidebar_left_close_replace' => '',
370
+		'geodir_main_content_open_id' => '',
371
+		'geodir_main_content_open_class' => '',
372
+		'geodir_main_content_open_replace' => '<!-- removed -->',
373
+		'geodir_main_content_close_replace' => '<!-- removed -->',
374
+		'geodir_top_content_add' => '',
375
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
376
+		'geodir_before_widget_filter' => '',
377
+		'geodir_after_widget_filter' => '',
378
+		'geodir_theme_compat_css' => '',
379
+		'geodir_theme_compat_js' => '',
380
+		'geodir_theme_compat_default_options' => '',
381
+		'geodir_theme_compat_code' => ''
382
+	);
383 383
 
384 384
 //Directory Theme
385
-    $theme_compat['Directory_Starter'] = array(
386
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
387
-        'geodir_wrapper_open_class' => '',
388
-        'geodir_wrapper_open_replace' => '',
389
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
390
-        'geodir_wrapper_content_open_id' => 'geodir_content',
391
-        'geodir_wrapper_content_open_class' => '',
392
-        'geodir_wrapper_content_open_replace' => '',
393
-        'geodir_wrapper_content_close_replace' => '',
394
-        'geodir_article_open_id' => '',
395
-        'geodir_article_open_class' => '',
396
-        'geodir_article_open_replace' => '',
397
-        'geodir_article_close_replace' => '',
398
-        'geodir_sidebar_right_open_id' => '',
399
-        'geodir_sidebar_right_open_class' => '',
400
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
401
-        'geodir_sidebar_right_close_replace' => '',
402
-        'geodir_sidebar_left_open_id' => '',
403
-        'geodir_sidebar_left_open_class' => '',
404
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
405
-        'geodir_sidebar_left_close_replace' => '',
406
-        'geodir_main_content_open_id' => '',
407
-        'geodir_main_content_open_class' => '',
408
-        'geodir_main_content_open_replace' => '<!-- removed -->',
409
-        'geodir_main_content_close_replace' => '<!-- removed -->',
410
-        'geodir_top_content_add' => '',
411
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
412
-        'geodir_before_widget_filter' => '',
413
-        'geodir_after_widget_filter' => '',
414
-        'geodir_theme_compat_css' => '',
415
-        'geodir_theme_compat_js' => '',
416
-        'geodir_theme_compat_default_options' => '',
417
-        'geodir_theme_compat_code' => ''
418
-    );
385
+	$theme_compat['Directory_Starter'] = array(
386
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
387
+		'geodir_wrapper_open_class' => '',
388
+		'geodir_wrapper_open_replace' => '',
389
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
390
+		'geodir_wrapper_content_open_id' => 'geodir_content',
391
+		'geodir_wrapper_content_open_class' => '',
392
+		'geodir_wrapper_content_open_replace' => '',
393
+		'geodir_wrapper_content_close_replace' => '',
394
+		'geodir_article_open_id' => '',
395
+		'geodir_article_open_class' => '',
396
+		'geodir_article_open_replace' => '',
397
+		'geodir_article_close_replace' => '',
398
+		'geodir_sidebar_right_open_id' => '',
399
+		'geodir_sidebar_right_open_class' => '',
400
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
401
+		'geodir_sidebar_right_close_replace' => '',
402
+		'geodir_sidebar_left_open_id' => '',
403
+		'geodir_sidebar_left_open_class' => '',
404
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
405
+		'geodir_sidebar_left_close_replace' => '',
406
+		'geodir_main_content_open_id' => '',
407
+		'geodir_main_content_open_class' => '',
408
+		'geodir_main_content_open_replace' => '<!-- removed -->',
409
+		'geodir_main_content_close_replace' => '<!-- removed -->',
410
+		'geodir_top_content_add' => '',
411
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
412
+		'geodir_before_widget_filter' => '',
413
+		'geodir_after_widget_filter' => '',
414
+		'geodir_theme_compat_css' => '',
415
+		'geodir_theme_compat_js' => '',
416
+		'geodir_theme_compat_default_options' => '',
417
+		'geodir_theme_compat_code' => ''
418
+	);
419 419
 
420 420
 //Jobby
421
-    $theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
421
+	$theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
422 422
 
423 423
 //GeoProperty
424
-    $theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
424
+	$theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
425 425
 
426 426
 //Avada
427
-    $theme_compat['Avada'] = array(
428
-        'geodir_wrapper_open_id' => '',
429
-        'geodir_wrapper_open_class' => '',
430
-        'geodir_wrapper_open_replace' => '<!-- removed -->',
431
-        'geodir_wrapper_close_replace' => '<!-- removed -->',
432
-        'geodir_wrapper_content_open_id' => 'content',
433
-        'geodir_wrapper_content_open_class' => '',
434
-        'geodir_wrapper_content_open_replace' => '',
435
-        'geodir_wrapper_content_close_replace' => '',
436
-        'geodir_article_open_id' => '',
437
-        'geodir_article_open_class' => '',
438
-        'geodir_article_open_replace' => '',
439
-        'geodir_article_close_replace' => '',
440
-        'geodir_sidebar_right_open_id' => '',
441
-        'geodir_sidebar_right_open_class' => '',
442
-        'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
443
-        'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
444
-        'geodir_sidebar_left_open_id' => '',
445
-        'geodir_sidebar_left_open_class' => '',
446
-        'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
447
-        'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
448
-        'geodir_main_content_open_id' => '',
449
-        'geodir_main_content_open_class' => '',
450
-        'geodir_main_content_open_replace' => '<!-- removed -->',
451
-        'geodir_main_content_close_replace' => '<!-- removed -->',
452
-        'geodir_top_content_add' => '',
453
-        'geodir_before_main_content_add' => '',
454
-        'geodir_before_widget_filter' => '',
455
-        'geodir_after_widget_filter' => '',
456
-        '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;}'),
457
-        'geodir_theme_compat_js' => '',
458
-        'geodir_theme_compat_default_options' => '',
459
-        'geodir_theme_compat_code' => 'Avada'
460
-    );
427
+	$theme_compat['Avada'] = array(
428
+		'geodir_wrapper_open_id' => '',
429
+		'geodir_wrapper_open_class' => '',
430
+		'geodir_wrapper_open_replace' => '<!-- removed -->',
431
+		'geodir_wrapper_close_replace' => '<!-- removed -->',
432
+		'geodir_wrapper_content_open_id' => 'content',
433
+		'geodir_wrapper_content_open_class' => '',
434
+		'geodir_wrapper_content_open_replace' => '',
435
+		'geodir_wrapper_content_close_replace' => '',
436
+		'geodir_article_open_id' => '',
437
+		'geodir_article_open_class' => '',
438
+		'geodir_article_open_replace' => '',
439
+		'geodir_article_close_replace' => '',
440
+		'geodir_sidebar_right_open_id' => '',
441
+		'geodir_sidebar_right_open_class' => '',
442
+		'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
443
+		'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
444
+		'geodir_sidebar_left_open_id' => '',
445
+		'geodir_sidebar_left_open_class' => '',
446
+		'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
447
+		'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
448
+		'geodir_main_content_open_id' => '',
449
+		'geodir_main_content_open_class' => '',
450
+		'geodir_main_content_open_replace' => '<!-- removed -->',
451
+		'geodir_main_content_close_replace' => '<!-- removed -->',
452
+		'geodir_top_content_add' => '',
453
+		'geodir_before_main_content_add' => '',
454
+		'geodir_before_widget_filter' => '',
455
+		'geodir_after_widget_filter' => '',
456
+		'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;}'),
457
+		'geodir_theme_compat_js' => '',
458
+		'geodir_theme_compat_default_options' => '',
459
+		'geodir_theme_compat_code' => 'Avada'
460
+	);
461 461
 
462 462
 //Enfold
463
-    $theme_compat['Enfold'] = array(
464
-        'geodir_wrapper_open_id' => '',
465
-        'geodir_wrapper_open_class' => '',
466
-        'geodir_wrapper_open_replace' => '',
467
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
468
-        'geodir_wrapper_content_open_id' => '',
469
-        'geodir_wrapper_content_open_class' => '',
470
-        'geodir_wrapper_content_open_replace' => '',
471
-        'geodir_wrapper_content_close_replace' => '</div></main>',
472
-        'geodir_article_open_id' => '',
473
-        'geodir_article_open_class' => '',
474
-        'geodir_article_open_replace' => '',
475
-        'geodir_article_close_replace' => '',
476
-        'geodir_sidebar_right_open_id' => '',
477
-        'geodir_sidebar_right_open_class' => '',
478
-        'geodir_sidebar_right_open_replace' => '',
479
-        'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
480
-        'geodir_sidebar_left_open_id' => '',
481
-        'geodir_sidebar_left_open_class' => '',
482
-        'geodir_sidebar_left_open_replace' => '',
483
-        'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
484
-        'geodir_main_content_open_id' => '',
485
-        'geodir_main_content_open_class' => '',
486
-        'geodir_main_content_open_replace' => '',
487
-        'geodir_main_content_close_replace' => '',
488
-        'geodir_top_content_add' => '',
489
-        'geodir_before_main_content_add' => '',
490
-        'geodir_before_widget_filter' => '',
491
-        'geodir_after_widget_filter' => '',
492
-        '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;}'),
493
-        'geodir_theme_compat_js' => '',
494
-        'geodir_theme_compat_default_options' => '',
495
-        'geodir_theme_compat_code' => 'Enfold'
496
-    );
463
+	$theme_compat['Enfold'] = array(
464
+		'geodir_wrapper_open_id' => '',
465
+		'geodir_wrapper_open_class' => '',
466
+		'geodir_wrapper_open_replace' => '',
467
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
468
+		'geodir_wrapper_content_open_id' => '',
469
+		'geodir_wrapper_content_open_class' => '',
470
+		'geodir_wrapper_content_open_replace' => '',
471
+		'geodir_wrapper_content_close_replace' => '</div></main>',
472
+		'geodir_article_open_id' => '',
473
+		'geodir_article_open_class' => '',
474
+		'geodir_article_open_replace' => '',
475
+		'geodir_article_close_replace' => '',
476
+		'geodir_sidebar_right_open_id' => '',
477
+		'geodir_sidebar_right_open_class' => '',
478
+		'geodir_sidebar_right_open_replace' => '',
479
+		'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
480
+		'geodir_sidebar_left_open_id' => '',
481
+		'geodir_sidebar_left_open_class' => '',
482
+		'geodir_sidebar_left_open_replace' => '',
483
+		'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
484
+		'geodir_main_content_open_id' => '',
485
+		'geodir_main_content_open_class' => '',
486
+		'geodir_main_content_open_replace' => '',
487
+		'geodir_main_content_close_replace' => '',
488
+		'geodir_top_content_add' => '',
489
+		'geodir_before_main_content_add' => '',
490
+		'geodir_before_widget_filter' => '',
491
+		'geodir_after_widget_filter' => '',
492
+		'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;}'),
493
+		'geodir_theme_compat_js' => '',
494
+		'geodir_theme_compat_default_options' => '',
495
+		'geodir_theme_compat_code' => 'Enfold'
496
+	);
497 497
 
498 498
 // X
499
-    $theme_compat['X'] = array(
500
-        'geodir_wrapper_open_id' => '',
501
-        'geodir_wrapper_open_class' => '',
502
-        'geodir_wrapper_open_replace' => '',
503
-        'geodir_wrapper_close_replace' => '',
504
-        'geodir_wrapper_content_open_id' => '',
505
-        'geodir_wrapper_content_open_class' => '',
506
-        'geodir_wrapper_content_open_replace' => '',
507
-        'geodir_wrapper_content_close_replace' => '',
508
-        'geodir_article_open_id' => '',
509
-        'geodir_article_open_class' => '',
510
-        'geodir_article_open_replace' => '',
511
-        'geodir_article_close_replace' => '',
512
-        'geodir_sidebar_right_open_id' => '',
513
-        'geodir_sidebar_right_open_class' => '',
514
-        'geodir_sidebar_right_open_replace' => '',
515
-        'geodir_sidebar_right_close_replace' => '',
516
-        'geodir_sidebar_left_open_id' => '',
517
-        'geodir_sidebar_left_open_class' => '',
518
-        'geodir_sidebar_left_open_replace' => '',
519
-        'geodir_sidebar_left_close_replace' => '',
520
-        'geodir_main_content_open_id' => '',
521
-        'geodir_main_content_open_class' => '',
522
-        'geodir_main_content_open_replace' => '',
523
-        'geodir_main_content_close_replace' => '',
524
-        'geodir_top_content_add' => '',
525
-        'geodir_before_main_content_add' => '',
526
-        'geodir_before_widget_filter' => '',
527
-        'geodir_after_widget_filter' => '',
528
-        '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}'),
529
-        'geodir_theme_compat_js' => '',
530
-        'geodir_theme_compat_default_options' => '',
531
-        'geodir_theme_compat_code' => 'X'
532
-    );
499
+	$theme_compat['X'] = array(
500
+		'geodir_wrapper_open_id' => '',
501
+		'geodir_wrapper_open_class' => '',
502
+		'geodir_wrapper_open_replace' => '',
503
+		'geodir_wrapper_close_replace' => '',
504
+		'geodir_wrapper_content_open_id' => '',
505
+		'geodir_wrapper_content_open_class' => '',
506
+		'geodir_wrapper_content_open_replace' => '',
507
+		'geodir_wrapper_content_close_replace' => '',
508
+		'geodir_article_open_id' => '',
509
+		'geodir_article_open_class' => '',
510
+		'geodir_article_open_replace' => '',
511
+		'geodir_article_close_replace' => '',
512
+		'geodir_sidebar_right_open_id' => '',
513
+		'geodir_sidebar_right_open_class' => '',
514
+		'geodir_sidebar_right_open_replace' => '',
515
+		'geodir_sidebar_right_close_replace' => '',
516
+		'geodir_sidebar_left_open_id' => '',
517
+		'geodir_sidebar_left_open_class' => '',
518
+		'geodir_sidebar_left_open_replace' => '',
519
+		'geodir_sidebar_left_close_replace' => '',
520
+		'geodir_main_content_open_id' => '',
521
+		'geodir_main_content_open_class' => '',
522
+		'geodir_main_content_open_replace' => '',
523
+		'geodir_main_content_close_replace' => '',
524
+		'geodir_top_content_add' => '',
525
+		'geodir_before_main_content_add' => '',
526
+		'geodir_before_widget_filter' => '',
527
+		'geodir_after_widget_filter' => '',
528
+		'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}'),
529
+		'geodir_theme_compat_js' => '',
530
+		'geodir_theme_compat_default_options' => '',
531
+		'geodir_theme_compat_code' => 'X'
532
+	);
533 533
 
534 534
 // Divi
535
-    $theme_compat['Divi'] = array(
536
-        'geodir_wrapper_open_id' => 'main-content',
537
-        'geodir_wrapper_open_class' => '',
538
-        'geodir_wrapper_open_replace' => '',
539
-        'geodir_wrapper_close_replace' => '',
540
-        'geodir_wrapper_content_open_id' => 'left-area',
541
-        'geodir_wrapper_content_open_class' => '',
542
-        'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
543
-        'geodir_wrapper_content_close_replace' => '',
544
-        'geodir_article_open_id' => '',
545
-        'geodir_article_open_class' => '',
546
-        'geodir_article_open_replace' => '',
547
-        'geodir_article_close_replace' => '',
548
-        'geodir_sidebar_right_open_id' => 'sidebar',
549
-        'geodir_sidebar_right_open_class' => '',
550
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
551
-        'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
552
-        'geodir_sidebar_left_open_id' => 'sidebar',
553
-        'geodir_sidebar_left_open_class' => '',
554
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
555
-        'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
556
-        'geodir_main_content_open_id' => '',
557
-        'geodir_main_content_open_class' => '',
558
-        'geodir_main_content_open_replace' => '',
559
-        'geodir_main_content_close_replace' => '',
560
-        'geodir_top_content_add' => '',
561
-        'geodir_before_main_content_add' => '',
562
-        'geodir_before_widget_filter' => '',
563
-        'geodir_after_widget_filter' => '',
564
-        '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{margin:0 auto;width:1080px}#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}@media only screen and ( max-width: 980px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:690px}}@media only screen and ( max-width: 767px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:400px}}@media only screen and ( max-width: 479px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:280px}}.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}'),
565
-        'geodir_theme_compat_js' => '',
566
-        'geodir_theme_compat_default_options' => '',
567
-        'geodir_theme_compat_code' => 'Divi'
568
-    );
535
+	$theme_compat['Divi'] = array(
536
+		'geodir_wrapper_open_id' => 'main-content',
537
+		'geodir_wrapper_open_class' => '',
538
+		'geodir_wrapper_open_replace' => '',
539
+		'geodir_wrapper_close_replace' => '',
540
+		'geodir_wrapper_content_open_id' => 'left-area',
541
+		'geodir_wrapper_content_open_class' => '',
542
+		'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
543
+		'geodir_wrapper_content_close_replace' => '',
544
+		'geodir_article_open_id' => '',
545
+		'geodir_article_open_class' => '',
546
+		'geodir_article_open_replace' => '',
547
+		'geodir_article_close_replace' => '',
548
+		'geodir_sidebar_right_open_id' => 'sidebar',
549
+		'geodir_sidebar_right_open_class' => '',
550
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
551
+		'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
552
+		'geodir_sidebar_left_open_id' => 'sidebar',
553
+		'geodir_sidebar_left_open_class' => '',
554
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
555
+		'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
556
+		'geodir_main_content_open_id' => '',
557
+		'geodir_main_content_open_class' => '',
558
+		'geodir_main_content_open_replace' => '',
559
+		'geodir_main_content_close_replace' => '',
560
+		'geodir_top_content_add' => '',
561
+		'geodir_before_main_content_add' => '',
562
+		'geodir_before_widget_filter' => '',
563
+		'geodir_after_widget_filter' => '',
564
+		'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{margin:0 auto;width:1080px}#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}@media only screen and ( max-width: 980px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:690px}}@media only screen and ( max-width: 767px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:400px}}@media only screen and ( max-width: 479px ){.geodir-loc-bar-in,.geodir-cat-list,ul#breadcrumbs{width:280px}}.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}'),
565
+		'geodir_theme_compat_js' => '',
566
+		'geodir_theme_compat_default_options' => '',
567
+		'geodir_theme_compat_code' => 'Divi'
568
+	);
569 569
 
570 570
 // Genesis
571
-    $theme_compat['Genesis'] = array(
572
-        'geodir_wrapper_open_id' => '',
573
-        'geodir_wrapper_open_class' => 'content-sidebar-wrap',
574
-        'geodir_wrapper_open_replace' => '',
575
-        'geodir_wrapper_close_replace' => '',
576
-        'geodir_wrapper_content_open_id' => '',
577
-        'geodir_wrapper_content_open_class' => 'content',
578
-        'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
579
-        'geodir_wrapper_content_close_replace' => '',
580
-        'geodir_article_open_id' => '',
581
-        'geodir_article_open_class' => '',
582
-        'geodir_article_open_replace' => '',
583
-        'geodir_article_close_replace' => '',
584
-        'geodir_sidebar_right_open_id' => '',
585
-        'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
586
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
587
-        'geodir_sidebar_right_close_replace' => '',
588
-        'geodir_sidebar_left_open_id' => '',
589
-        'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
590
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
591
-        'geodir_sidebar_left_close_replace' => '',
592
-        'geodir_main_content_open_id' => '',
593
-        'geodir_main_content_open_class' => '',
594
-        'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
595
-        'geodir_main_content_close_replace' => '',
596
-        'geodir_top_content_add' => '',
597
-        'geodir_before_main_content_add' => '',
598
-        'geodir_before_widget_filter' => '',
599
-        'geodir_after_widget_filter' => '',
600
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
601
-        '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}'),
602
-        'geodir_theme_compat_js' => '',
603
-        'geodir_theme_compat_default_options' => '',
604
-        'geodir_theme_compat_code' => 'Genesis'
605
-    );
571
+	$theme_compat['Genesis'] = array(
572
+		'geodir_wrapper_open_id' => '',
573
+		'geodir_wrapper_open_class' => 'content-sidebar-wrap',
574
+		'geodir_wrapper_open_replace' => '',
575
+		'geodir_wrapper_close_replace' => '',
576
+		'geodir_wrapper_content_open_id' => '',
577
+		'geodir_wrapper_content_open_class' => 'content',
578
+		'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
579
+		'geodir_wrapper_content_close_replace' => '',
580
+		'geodir_article_open_id' => '',
581
+		'geodir_article_open_class' => '',
582
+		'geodir_article_open_replace' => '',
583
+		'geodir_article_close_replace' => '',
584
+		'geodir_sidebar_right_open_id' => '',
585
+		'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
586
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
587
+		'geodir_sidebar_right_close_replace' => '',
588
+		'geodir_sidebar_left_open_id' => '',
589
+		'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
590
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
591
+		'geodir_sidebar_left_close_replace' => '',
592
+		'geodir_main_content_open_id' => '',
593
+		'geodir_main_content_open_class' => '',
594
+		'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
595
+		'geodir_main_content_close_replace' => '',
596
+		'geodir_top_content_add' => '',
597
+		'geodir_before_main_content_add' => '',
598
+		'geodir_before_widget_filter' => '',
599
+		'geodir_after_widget_filter' => '',
600
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
601
+		'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}'),
602
+		'geodir_theme_compat_js' => '',
603
+		'geodir_theme_compat_default_options' => '',
604
+		'geodir_theme_compat_code' => 'Genesis'
605
+	);
606 606
 
607 607
 // Jupiter
608
-    $theme_compat['Jupiter'] = array(
609
-        'geodir_wrapper_open_id' => '',
610
-        'geodir_wrapper_open_class' => '',
611
-        '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">',
612
-        'geodir_wrapper_close_replace' => '</div></div></div>',
613
-        'geodir_wrapper_content_open_id' => '',
614
-        'geodir_wrapper_content_open_class' => '',
615
-        'geodir_wrapper_content_open_replace' => '',
616
-        'geodir_wrapper_content_close_replace' => '',
617
-        'geodir_article_open_id' => '',
618
-        'geodir_article_open_class' => '',
619
-        'geodir_article_open_replace' => '',
620
-        'geodir_article_close_replace' => '',
621
-        'geodir_sidebar_right_open_id' => 'mk-sidebar',
622
-        'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
623
-        'geodir_sidebar_right_open_replace' => '',
624
-        'geodir_sidebar_right_close_replace' => '',
625
-        'geodir_sidebar_left_open_id' => 'mk-sidebar',
626
-        'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
627
-        'geodir_sidebar_left_open_replace' => '',
628
-        'geodir_sidebar_left_close_replace' => '',
629
-        'geodir_main_content_open_id' => '',
630
-        'geodir_main_content_open_class' => '',
631
-        'geodir_main_content_open_replace' => '',
632
-        'geodir_main_content_close_replace' => '',
633
-        'geodir_top_content_add' => '',
634
-        'geodir_before_main_content_add' => '',
635
-        'geodir_before_widget_filter' => '',
636
-        'geodir_after_widget_filter' => '',
637
-        'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
638
-        'geodir_after_title_filter' => '',
639
-        'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
640
-        'geodir_sub_menu_ul_class_filter' => '',
641
-        'geodir_sub_menu_li_class_filter' => '',
642
-        'geodir_menu_a_class_filter' => 'menu-item-link',
643
-        'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
644
-        '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',
645
-        'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
646
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
647
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
648
-        '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}'),
649
-        'geodir_theme_compat_js' => '',
650
-        'geodir_theme_compat_default_options' => '',
651
-        'geodir_theme_compat_code' => 'Jupiter'
652
-    );
608
+	$theme_compat['Jupiter'] = array(
609
+		'geodir_wrapper_open_id' => '',
610
+		'geodir_wrapper_open_class' => '',
611
+		'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">',
612
+		'geodir_wrapper_close_replace' => '</div></div></div>',
613
+		'geodir_wrapper_content_open_id' => '',
614
+		'geodir_wrapper_content_open_class' => '',
615
+		'geodir_wrapper_content_open_replace' => '',
616
+		'geodir_wrapper_content_close_replace' => '',
617
+		'geodir_article_open_id' => '',
618
+		'geodir_article_open_class' => '',
619
+		'geodir_article_open_replace' => '',
620
+		'geodir_article_close_replace' => '',
621
+		'geodir_sidebar_right_open_id' => 'mk-sidebar',
622
+		'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
623
+		'geodir_sidebar_right_open_replace' => '',
624
+		'geodir_sidebar_right_close_replace' => '',
625
+		'geodir_sidebar_left_open_id' => 'mk-sidebar',
626
+		'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
627
+		'geodir_sidebar_left_open_replace' => '',
628
+		'geodir_sidebar_left_close_replace' => '',
629
+		'geodir_main_content_open_id' => '',
630
+		'geodir_main_content_open_class' => '',
631
+		'geodir_main_content_open_replace' => '',
632
+		'geodir_main_content_close_replace' => '',
633
+		'geodir_top_content_add' => '',
634
+		'geodir_before_main_content_add' => '',
635
+		'geodir_before_widget_filter' => '',
636
+		'geodir_after_widget_filter' => '',
637
+		'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
638
+		'geodir_after_title_filter' => '',
639
+		'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
640
+		'geodir_sub_menu_ul_class_filter' => '',
641
+		'geodir_sub_menu_li_class_filter' => '',
642
+		'geodir_menu_a_class_filter' => 'menu-item-link',
643
+		'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
644
+		'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',
645
+		'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
646
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
647
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
648
+		'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}'),
649
+		'geodir_theme_compat_js' => '',
650
+		'geodir_theme_compat_default_options' => '',
651
+		'geodir_theme_compat_code' => 'Jupiter'
652
+	);
653 653
 
654 654
 // Multi News
655
-    $theme_compat['Multi_News'] = array(
656
-        'geodir_wrapper_open_id' => '',
657
-        'geodir_wrapper_open_class' => 'main-container clearfix',
658
-        'geodir_wrapper_open_replace' => '',
659
-        'geodir_wrapper_close_replace' => '',
660
-        'geodir_wrapper_content_open_id' => '',
661
-        'geodir_wrapper_content_open_class' => '',
662
-        'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
663
-        'geodir_wrapper_content_close_replace' => '</div></div></div>',
664
-        'geodir_article_open_id' => '',
665
-        'geodir_article_open_class' => '',
666
-        'geodir_article_open_replace' => '',
667
-        'geodir_article_close_replace' => '',
668
-        'geodir_sidebar_right_open_id' => '',
669
-        'geodir_sidebar_right_open_class' => '',
670
-        'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
671
-        'geodir_sidebar_right_close_replace' => '',
672
-        'geodir_sidebar_left_open_id' => '',
673
-        'geodir_sidebar_left_open_class' => '',
674
-        'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
675
-        'geodir_sidebar_left_close_replace' => '',
676
-        'geodir_main_content_open_id' => '',
677
-        'geodir_main_content_open_class' => '',
678
-        'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
679
-        'geodir_main_content_close_replace' => '</div>',
680
-        'geodir_top_content_add' => '',
681
-        'geodir_before_main_content_add' => '',
682
-        'geodir_full_page_class_filter' => 'section full-width-section',
683
-        'geodir_before_widget_filter' => '',
684
-        'geodir_after_widget_filter' => '',
685
-        'geodir_before_title_filter' => '<div class="widget-title"><h2>',
686
-        'geodir_after_title_filter' => '</h2></div>',
687
-        'geodir_menu_li_class_filter' => '',
688
-        'geodir_sub_menu_ul_class_filter' => '',
689
-        'geodir_sub_menu_li_class_filter' => '',
690
-        'geodir_menu_a_class_filter' => '',
691
-        'geodir_sub_menu_a_class_filter' => '',
692
-        'geodir_location_switcher_menu_li_class_filter' => '',
693
-        'geodir_location_switcher_menu_a_class_filter' => '',
694
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
695
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
696
-        '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}'),
697
-        '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"})});',
698
-        'geodir_theme_compat_default_options' => '',
699
-        'geodir_theme_compat_code' => 'Multi_News'
700
-    );
701
-
702
-    update_option('gd_theme_compats', $theme_compat);
703
-
704
-    gd_set_theme_compat();// set the compat pack if avail
655
+	$theme_compat['Multi_News'] = array(
656
+		'geodir_wrapper_open_id' => '',
657
+		'geodir_wrapper_open_class' => 'main-container clearfix',
658
+		'geodir_wrapper_open_replace' => '',
659
+		'geodir_wrapper_close_replace' => '',
660
+		'geodir_wrapper_content_open_id' => '',
661
+		'geodir_wrapper_content_open_class' => '',
662
+		'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
663
+		'geodir_wrapper_content_close_replace' => '</div></div></div>',
664
+		'geodir_article_open_id' => '',
665
+		'geodir_article_open_class' => '',
666
+		'geodir_article_open_replace' => '',
667
+		'geodir_article_close_replace' => '',
668
+		'geodir_sidebar_right_open_id' => '',
669
+		'geodir_sidebar_right_open_class' => '',
670
+		'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
671
+		'geodir_sidebar_right_close_replace' => '',
672
+		'geodir_sidebar_left_open_id' => '',
673
+		'geodir_sidebar_left_open_class' => '',
674
+		'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
675
+		'geodir_sidebar_left_close_replace' => '',
676
+		'geodir_main_content_open_id' => '',
677
+		'geodir_main_content_open_class' => '',
678
+		'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
679
+		'geodir_main_content_close_replace' => '</div>',
680
+		'geodir_top_content_add' => '',
681
+		'geodir_before_main_content_add' => '',
682
+		'geodir_full_page_class_filter' => 'section full-width-section',
683
+		'geodir_before_widget_filter' => '',
684
+		'geodir_after_widget_filter' => '',
685
+		'geodir_before_title_filter' => '<div class="widget-title"><h2>',
686
+		'geodir_after_title_filter' => '</h2></div>',
687
+		'geodir_menu_li_class_filter' => '',
688
+		'geodir_sub_menu_ul_class_filter' => '',
689
+		'geodir_sub_menu_li_class_filter' => '',
690
+		'geodir_menu_a_class_filter' => '',
691
+		'geodir_sub_menu_a_class_filter' => '',
692
+		'geodir_location_switcher_menu_li_class_filter' => '',
693
+		'geodir_location_switcher_menu_a_class_filter' => '',
694
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
695
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
696
+		'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}'),
697
+		'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"})});',
698
+		'geodir_theme_compat_default_options' => '',
699
+		'geodir_theme_compat_code' => 'Multi_News'
700
+	);
701
+
702
+	update_option('gd_theme_compats', $theme_compat);
703
+
704
+	gd_set_theme_compat();// set the compat pack if avail
705 705
 }
706 706
 
707 707
 
@@ -713,61 +713,61 @@  discard block
 block discarded – undo
713 713
  * @global object $wpdb WordPress Database object.
714 714
  */
715 715
 function gd_convert_virtual_pages(){
716
-    global $wpdb;
717
-
718
-    // Update the add listing page settings
719
-    $add_listing_page = $wpdb->get_var(
720
-        $wpdb->prepare(
721
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
722
-            array('add-listing')
723
-        )
724
-    );
725
-
726
-    if($add_listing_page){
727
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
728
-        update_option( 'geodir_add_listing_page', $add_listing_page);
729
-    }
730
-
731
-    // Update the listing preview page settings
732
-    $listing_preview_page = $wpdb->get_var(
733
-        $wpdb->prepare(
734
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
735
-            array('listing-preview')
736
-        )
737
-    );
738
-
739
-    if($listing_preview_page){
740
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
741
-        update_option( 'geodir_preview_page', $listing_preview_page);
742
-    }
743
-
744
-    // Update the listing success page settings
745
-    $listing_success_page = $wpdb->get_var(
746
-        $wpdb->prepare(
747
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
748
-            array('listing-success')
749
-        )
750
-    );
751
-
752
-    if($listing_success_page){
753
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
754
-        update_option( 'geodir_success_page', $listing_success_page);
755
-    }
756
-
757
-    // Update the listing success page settings
758
-    $location_page = $wpdb->get_var(
759
-        $wpdb->prepare(
760
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
761
-            array('location')
762
-        )
763
-    );
764
-
765
-    if($location_page){
766
-        $location_slug = get_option('geodir_location_prefix');
767
-        if(!$location_slug ){$location_slug  = 'location';}
768
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
769
-        update_option( 'geodir_location_page', $location_page);
770
-    }
716
+	global $wpdb;
717
+
718
+	// Update the add listing page settings
719
+	$add_listing_page = $wpdb->get_var(
720
+		$wpdb->prepare(
721
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
722
+			array('add-listing')
723
+		)
724
+	);
725
+
726
+	if($add_listing_page){
727
+		wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
728
+		update_option( 'geodir_add_listing_page', $add_listing_page);
729
+	}
730
+
731
+	// Update the listing preview page settings
732
+	$listing_preview_page = $wpdb->get_var(
733
+		$wpdb->prepare(
734
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
735
+			array('listing-preview')
736
+		)
737
+	);
738
+
739
+	if($listing_preview_page){
740
+		wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
741
+		update_option( 'geodir_preview_page', $listing_preview_page);
742
+	}
743
+
744
+	// Update the listing success page settings
745
+	$listing_success_page = $wpdb->get_var(
746
+		$wpdb->prepare(
747
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
748
+			array('listing-success')
749
+		)
750
+	);
751
+
752
+	if($listing_success_page){
753
+		wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
754
+		update_option( 'geodir_success_page', $listing_success_page);
755
+	}
756
+
757
+	// Update the listing success page settings
758
+	$location_page = $wpdb->get_var(
759
+		$wpdb->prepare(
760
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
761
+			array('location')
762
+		)
763
+	);
764
+
765
+	if($location_page){
766
+		$location_slug = get_option('geodir_location_prefix');
767
+		if(!$location_slug ){$location_slug  = 'location';}
768
+		wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
769
+		update_option( 'geodir_location_page', $location_page);
770
+	}
771 771
 
772 772
 }
773 773
 
@@ -781,31 +781,31 @@  discard block
 block discarded – undo
781 781
 function gd_fix_cpt_rewrite_slug()
782 782
 {
783 783
 
784
-    $alt_post_types = array();
785
-    $post_types = get_option('geodir_post_types');
784
+	$alt_post_types = array();
785
+	$post_types = get_option('geodir_post_types');
786 786
 
787 787
 
788
-    if (is_array($post_types)){
788
+	if (is_array($post_types)){
789 789
 
790
-        foreach ($post_types as $post_type => $args) {
790
+		foreach ($post_types as $post_type => $args) {
791 791
 
792 792
 
793
-            if(isset($args['rewrite']['slug'])){
794
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
795
-            }
793
+			if(isset($args['rewrite']['slug'])){
794
+				$args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
795
+			}
796 796
 
797
-                $alt_post_types[$post_type] = $args;
797
+				$alt_post_types[$post_type] = $args;
798 798
 
799
-        }
800
-    }
799
+		}
800
+	}
801 801
 
802
-    if(!empty($alt_post_types)) {
803
-        update_option('geodir_post_types',$alt_post_types);
804
-        }
802
+	if(!empty($alt_post_types)) {
803
+		update_option('geodir_post_types',$alt_post_types);
804
+		}
805 805
 
806 806
 
807
-    // flush the rewrite rules
808
-    flush_rewrite_rules();
807
+	// flush the rewrite rules
808
+	flush_rewrite_rules();
809 809
 }
810 810
 
811 811
 
@@ -818,18 +818,18 @@  discard block
 block discarded – undo
818 818
  */
819 819
 function gd_fix_address_detail_table_limit()
820 820
 {
821
-    global $wpdb;
822
-
823
-    $all_postypes = geodir_get_posttypes();
824
-
825
-    if (!empty($all_postypes)) {
826
-        foreach ($all_postypes as $key) {
827
-            // update each GD CTP
828
-            try {
829
-                $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");
830
-            } catch(Exception $e) {
831
-                error_log( 'Error: ' . $e->getMessage() );
832
-            }
833
-        }
834
-    }
821
+	global $wpdb;
822
+
823
+	$all_postypes = geodir_get_posttypes();
824
+
825
+	if (!empty($all_postypes)) {
826
+		foreach ($all_postypes as $key) {
827
+			// update each GD CTP
828
+			try {
829
+				$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");
830
+			} catch(Exception $e) {
831
+				error_log( 'Error: ' . $e->getMessage() );
832
+			}
833
+		}
834
+	}
835 835
 }
Please login to merge, or discard this patch.
Spacing   +58 added lines, -58 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
      *
@@ -48,9 +48,9 @@  discard block
 block discarded – undo
48 48
 
49 49
 
50 50
 
51
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
51
+    add_action('init', 'gd_fix_cpt_rewrite_slug', 11); // this needs to be kept for a few versions
52 52
 
53
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
53
+    update_option('geodirectory'.'_db_version', GEODIRECTORY_VERSION);
54 54
 
55 55
 }
56 56
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
  * @since 1.0.0
87 87
  * @package GeoDirectory
88 88
  */
89
-function geodir_upgrade_146(){
89
+function geodir_upgrade_146() {
90 90
     gd_convert_virtual_pages();
91 91
 }
92 92
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
  * @since 1.5.0
97 97
  * @package GeoDirectory
98 98
  */
99
-function geodir_upgrade_150(){
99
+function geodir_upgrade_150() {
100 100
     gd_fix_cpt_rewrite_slug();
101 101
 }
102 102
 
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
  * @since 1.4.8
109 109
  * @package GeoDirectory
110 110
  */
111
-function geodir_upgrade_148(){
111
+function geodir_upgrade_148() {
112 112
     /*
113 113
      * Blank the users google password if present as we now use oAuth 2.0
114 114
      */
115
-    update_option('geodir_ga_pass','');
116
-    update_option('geodir_ga_user','');
115
+    update_option('geodir_ga_pass', '');
116
+    update_option('geodir_ga_user', '');
117 117
 
118 118
 }
119 119
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
  * @since 1.5.3
125 125
  * @package GeoDirectory
126 126
  */
127
-function geodir_upgrade_153(){
127
+function geodir_upgrade_153() {
128 128
     geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
129 129
     geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
130 130
 }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
  * @since 1.5.3
136 136
  * @package GeoDirectory
137 137
  */
138
-function geodir_upgrade_154(){
138
+function geodir_upgrade_154() {
139 139
     geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
140 140
 }
141 141
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
  * @since 1.5.2
146 146
  * @package GeoDirectory
147 147
  */
148
-function geodir_upgrade_152(){
148
+function geodir_upgrade_152() {
149 149
     gd_fix_address_detail_table_limit();
150 150
 }
151 151
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 function geodir_fix_review_date()
182 182
 {
183 183
     global $wpdb;
184
-    $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'");
184
+    $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'");
185 185
 }
186 186
 
187 187
 /**
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 function geodir_fix_review_post_status()
195 195
 {
196 196
     global $wpdb;
197
-    $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'");
197
+    $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'");
198 198
 }
199 199
 
200 200
 /**
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 function geodir_fix_review_content()
209 209
 {
210 210
     global $wpdb;
211
-    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")) {
211
+    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")) {
212 212
         return true;
213 213
     } else {
214 214
         return false;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
         foreach ($all_postypes as $key) {
234 234
             // update each GD CTP
235 235
 
236
-            $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");
236
+            $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");
237 237
 
238 238
         }
239 239
         return true;
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
     if (!empty($all_postypes)) {
258 258
         foreach ($all_postypes as $key) {
259 259
             // update each GD CTP
260
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
260
+            $reviews = $wpdb->get_results("SELECT post_id FROM ".$wpdb->prefix."geodir_".$key."_detail d");
261 261
 
262 262
             if (!empty($reviews)) {
263 263
                 foreach ($reviews as $post_id) {
@@ -272,51 +272,51 @@  discard block
 block discarded – undo
272 272
 }
273 273
 
274 274
 
275
-function gd_convert_custom_field_display(){
275
+function gd_convert_custom_field_display() {
276 276
     global $wpdb;
277 277
 
278
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
278
+    $field_info = $wpdb->get_results("select * from ".GEODIR_CUSTOM_FIELDS_TABLE);
279 279
 
280 280
     $has_run = get_option('gd_convert_custom_field_display');
281
-    if($has_run){return;}
281
+    if ($has_run) {return; }
282 282
 
283 283
     // set the field_type_key for standard fields
284 284
     $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
285 285
 
286 286
 
287
-    if(is_array( $field_info)){
287
+    if (is_array($field_info)) {
288 288
 
289
-        foreach( $field_info as $cf){
289
+        foreach ($field_info as $cf) {
290 290
 
291 291
             $id = $cf->id;
292 292
 
293
-            if(!property_exists($cf,'show_in') || !$id){return;}
293
+            if (!property_exists($cf, 'show_in') || !$id) {return; }
294 294
 
295 295
             $show_in_arr = array();
296 296
 
297
-            if($cf->is_default){
297
+            if ($cf->is_default) {
298 298
                 $show_in_arr[] = "[detail]";
299 299
             }
300 300
 
301
-            if($cf->show_on_detail){
301
+            if ($cf->show_on_detail) {
302 302
                 $show_in_arr[] = "[moreinfo]";
303 303
             }
304 304
 
305
-            if($cf->show_on_listing){
305
+            if ($cf->show_on_listing) {
306 306
                 $show_in_arr[] = "[listing]";
307 307
             }
308 308
 
309
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
309
+            if ($cf->show_as_tab || $cf->htmlvar_name == 'geodir_video' || $cf->htmlvar_name == 'geodir_special_offers') {
310 310
                 $show_in_arr[] = "[owntab]";
311 311
             }
312 312
 
313
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
313
+            if ($cf->htmlvar_name == 'post' || $cf->htmlvar_name == 'geodir_contact' || $cf->htmlvar_name == 'geodir_timing') {
314 314
                 $show_in_arr[] = "[mapbubble]";
315 315
             }
316 316
 
317
-            if(!empty($show_in_arr )){
318
-                $show_in_arr = implode(',',$show_in_arr);
319
-            }else{
317
+            if (!empty($show_in_arr)) {
318
+                $show_in_arr = implode(',', $show_in_arr);
319
+            } else {
320 320
                 $show_in_arr = '';
321 321
             }
322 322
 
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 
325 325
         }
326 326
 
327
-        update_option('gd_convert_custom_field_display',1);
327
+        update_option('gd_convert_custom_field_display', 1);
328 328
     }
329 329
 }
330 330
 
@@ -701,7 +701,7 @@  discard block
 block discarded – undo
701 701
 
702 702
     update_option('gd_theme_compats', $theme_compat);
703 703
 
704
-    gd_set_theme_compat();// set the compat pack if avail
704
+    gd_set_theme_compat(); // set the compat pack if avail
705 705
 }
706 706
 
707 707
 
@@ -712,61 +712,61 @@  discard block
 block discarded – undo
712 712
  * @package GeoDirectory
713 713
  * @global object $wpdb WordPress Database object.
714 714
  */
715
-function gd_convert_virtual_pages(){
715
+function gd_convert_virtual_pages() {
716 716
     global $wpdb;
717 717
 
718 718
     // Update the add listing page settings
719 719
     $add_listing_page = $wpdb->get_var(
720 720
         $wpdb->prepare(
721
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
721
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
722 722
             array('add-listing')
723 723
         )
724 724
     );
725 725
 
726
-    if($add_listing_page){
727
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
728
-        update_option( 'geodir_add_listing_page', $add_listing_page);
726
+    if ($add_listing_page) {
727
+        wp_update_post(array('ID' => $add_listing_page, 'post_status' => 'publish'));
728
+        update_option('geodir_add_listing_page', $add_listing_page);
729 729
     }
730 730
 
731 731
     // Update the listing preview page settings
732 732
     $listing_preview_page = $wpdb->get_var(
733 733
         $wpdb->prepare(
734
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
734
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
735 735
             array('listing-preview')
736 736
         )
737 737
     );
738 738
 
739
-    if($listing_preview_page){
740
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
741
-        update_option( 'geodir_preview_page', $listing_preview_page);
739
+    if ($listing_preview_page) {
740
+        wp_update_post(array('ID' => $listing_preview_page, 'post_status' => 'publish'));
741
+        update_option('geodir_preview_page', $listing_preview_page);
742 742
     }
743 743
 
744 744
     // Update the listing success page settings
745 745
     $listing_success_page = $wpdb->get_var(
746 746
         $wpdb->prepare(
747
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
747
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
748 748
             array('listing-success')
749 749
         )
750 750
     );
751 751
 
752
-    if($listing_success_page){
753
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
754
-        update_option( 'geodir_success_page', $listing_success_page);
752
+    if ($listing_success_page) {
753
+        wp_update_post(array('ID' => $listing_success_page, 'post_status' => 'publish'));
754
+        update_option('geodir_success_page', $listing_success_page);
755 755
     }
756 756
 
757 757
     // Update the listing success page settings
758 758
     $location_page = $wpdb->get_var(
759 759
         $wpdb->prepare(
760
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
760
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
761 761
             array('location')
762 762
         )
763 763
     );
764 764
 
765
-    if($location_page){
765
+    if ($location_page) {
766 766
         $location_slug = get_option('geodir_location_prefix');
767
-        if(!$location_slug ){$location_slug  = 'location';}
768
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
769
-        update_option( 'geodir_location_page', $location_page);
767
+        if (!$location_slug) {$location_slug = 'location'; }
768
+        wp_update_post(array('ID' => $location_page, 'post_status' => 'publish', 'post_name' => $location_slug));
769
+        update_option('geodir_location_page', $location_page);
770 770
     }
771 771
 
772 772
 }
@@ -785,13 +785,13 @@  discard block
 block discarded – undo
785 785
     $post_types = get_option('geodir_post_types');
786 786
 
787 787
 
788
-    if (is_array($post_types)){
788
+    if (is_array($post_types)) {
789 789
 
790 790
         foreach ($post_types as $post_type => $args) {
791 791
 
792 792
 
793
-            if(isset($args['rewrite']['slug'])){
794
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
793
+            if (isset($args['rewrite']['slug'])) {
794
+                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%", "", $args['rewrite']['slug']);
795 795
             }
796 796
 
797 797
                 $alt_post_types[$post_type] = $args;
@@ -799,8 +799,8 @@  discard block
 block discarded – undo
799 799
         }
800 800
     }
801 801
 
802
-    if(!empty($alt_post_types)) {
803
-        update_option('geodir_post_types',$alt_post_types);
802
+    if (!empty($alt_post_types)) {
803
+        update_option('geodir_post_types', $alt_post_types);
804 804
         }
805 805
 
806 806
 
@@ -826,9 +826,9 @@  discard block
 block discarded – undo
826 826
         foreach ($all_postypes as $key) {
827 827
             // update each GD CTP
828 828
             try {
829
-                $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");
830
-            } catch(Exception $e) {
831
-                error_log( 'Error: ' . $e->getMessage() );
829
+                $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");
830
+            } catch (Exception $e) {
831
+                error_log('Error: '.$e->getMessage());
832 832
             }
833 833
         }
834 834
     }
Please login to merge, or discard this patch.
geodirectory-functions/custom_fields_output_functions.php 3 patches
Braces   +25 added lines, -38 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@  discard block
 block discarded – undo
22 22
 function geodir_cf_checkbox($html,$location,$cf,$p=''){
23 23
 
24 24
     // check we have the post value
25
-    if(is_int($p)){$post = geodir_get_post_info($p);}
26
-    else{ global $post;}
25
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
27 26
 
28 27
     if(!is_array($cf) && $cf!=''){
29 28
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -76,8 +75,10 @@  discard block
 block discarded – undo
76 75
 
77 76
             if ( $post->{$html_var} == '1' ):
78 77
                 $html_val = __( 'Yes', 'geodirectory' );
79
-            else:
78
+            else {
79
+            	:
80 80
                 $html_val = __( 'No', 'geodirectory' );
81
+            }
81 82
             endif;
82 83
 
83 84
             $field_icon = geodir_field_icon_proccess($cf);
@@ -115,8 +116,7 @@  discard block
 block discarded – undo
115 116
 function geodir_cf_fieldset($html,$location,$cf,$p=''){
116 117
 
117 118
     // check we have the post value
118
-    if(is_int($p)){$post = geodir_get_post_info($p);}
119
-    else{ global $post;}
119
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
120 120
 
121 121
     if(!is_array($cf) && $cf!=''){
122 122
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -195,8 +195,7 @@  discard block
 block discarded – undo
195 195
 function geodir_cf_url($html,$location,$cf,$p=''){
196 196
 
197 197
     // check we have the post value
198
-    if(is_int($p)){$post = geodir_get_post_info($p);}
199
-    else{ global $post;}
198
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
200 199
 
201 200
     if(!is_array($cf) && $cf!=''){
202 201
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -310,8 +309,7 @@  discard block
 block discarded – undo
310 309
 function geodir_cf_phone($html,$location,$cf,$p=''){
311 310
 
312 311
     // check we have the post value
313
-    if(is_int($p)){$post = geodir_get_post_info($p);}
314
-    else{ global $post;}
312
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
315 313
 
316 314
     if(!is_array($cf) && $cf!=''){
317 315
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -399,8 +397,7 @@  discard block
 block discarded – undo
399 397
 function geodir_cf_time($html,$location,$cf,$p=''){
400 398
 
401 399
     // check we have the post value
402
-    if(is_int($p)){$post = geodir_get_post_info($p);}
403
-    else{ global $post;}
400
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
404 401
 
405 402
     if(!is_array($cf) && $cf!=''){
406 403
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -452,9 +449,10 @@  discard block
 block discarded – undo
452 449
         if ($post->{$cf['htmlvar_name']}):
453 450
 
454 451
             $value = '';
455
-            if ($post->{$cf['htmlvar_name']} != '')
456
-                //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']}));
452
+            if ($post->{$cf['htmlvar_name']} != '') {
453
+                            //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']}));
457 454
                 $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']}));
455
+            }
458 456
 
459 457
             $field_icon = geodir_field_icon_proccess($cf);
460 458
             if (strpos($field_icon, 'http') !== false) {
@@ -493,8 +491,7 @@  discard block
 block discarded – undo
493 491
 function geodir_cf_datepicker($html,$location,$cf,$p=''){
494 492
 
495 493
     // check we have the post value
496
-    if(is_int($p)){$post = geodir_get_post_info($p);}
497
-    else{ global $post;}
494
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
498 495
 
499 496
     if(!is_array($cf) && $cf!=''){
500 497
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -560,13 +557,13 @@  discard block
 block discarded – undo
560 557
                 $date_format = str_replace($search, $replace, $date_format);
561 558
 
562 559
                 $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
563
-            }else{
560
+            } else{
564 561
                 $post_htmlvar_value = $post->{$cf['htmlvar_name']};
565 562
             }
566 563
 
567 564
             if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") {
568 565
                 $value = date_i18n($date_format, strtotime($post_htmlvar_value));
569
-            }else{
566
+            } else{
570 567
                 return '';
571 568
             }
572 569
 
@@ -609,8 +606,7 @@  discard block
 block discarded – undo
609 606
 function geodir_cf_text($html,$location,$cf,$p=''){
610 607
 
611 608
     // check we have the post value
612
-    if(is_int($p)){$post = geodir_get_post_info($p);}
613
-    else{ global $post;}
609
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
614 610
 
615 611
     if(!is_array($cf) && $cf!=''){
616 612
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -700,8 +696,7 @@  discard block
 block discarded – undo
700 696
 function geodir_cf_radio($html,$location,$cf,$p=''){
701 697
 
702 698
     // check we have the post value
703
-    if(is_int($p)){$post = geodir_get_post_info($p);}
704
-    else{ global $post;}
699
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
705 700
 
706 701
     if(!is_array($cf) && $cf!=''){
707 702
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -807,8 +802,7 @@  discard block
 block discarded – undo
807 802
 function geodir_cf_select($html,$location,$cf,$p=''){
808 803
 
809 804
     // check we have the post value
810
-    if(is_int($p)){$post = geodir_get_post_info($p);}
811
-    else{ global $post;}
805
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
812 806
 
813 807
     if(!is_array($cf) && $cf!=''){
814 808
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -908,8 +902,7 @@  discard block
 block discarded – undo
908 902
 function geodir_cf_multiselect($html,$location,$cf,$p=''){
909 903
 
910 904
     // check we have the post value
911
-    if(is_int($p)){$post = geodir_get_post_info($p);}
912
-    else{ global $post;}
905
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
913 906
 
914 907
     if(!is_array($cf) && $cf!=''){
915 908
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -1030,8 +1023,7 @@  discard block
 block discarded – undo
1030 1023
 function geodir_cf_email($html,$location,$cf,$p=''){
1031 1024
 
1032 1025
     // check we have the post value
1033
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1034
-    else{ global $post;}
1026
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
1035 1027
 
1036 1028
     if(!is_array($cf) && $cf!=''){
1037 1029
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -1162,7 +1154,7 @@  discard block
 block discarded – undo
1162 1154
                      */
1163 1155
                     $email_name = apply_filters('geodir_email_field_name_output',$email,$cf);
1164 1156
                     $html .=  "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>";
1165
-                }else{
1157
+                } else{
1166 1158
                     $html .=  $email;
1167 1159
                 }
1168 1160
                 $html .= '</span></div>';
@@ -1190,8 +1182,7 @@  discard block
 block discarded – undo
1190 1182
 function geodir_cf_file($html,$location,$cf,$p=''){
1191 1183
 
1192 1184
     // check we have the post value
1193
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1194
-    else{ global $post;}
1185
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
1195 1186
 
1196 1187
     if(!is_array($cf) && $cf!=''){
1197 1188
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -1330,8 +1321,7 @@  discard block
 block discarded – undo
1330 1321
 function geodir_cf_textarea($html,$location,$cf,$p=''){
1331 1322
 
1332 1323
     // check we have the post value
1333
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1334
-    else{ global $post;}
1324
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
1335 1325
 
1336 1326
     if(!is_array($cf) && $cf!=''){
1337 1327
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -1420,8 +1410,7 @@  discard block
 block discarded – undo
1420 1410
 function geodir_cf_html($html,$location,$cf,$p=''){
1421 1411
 
1422 1412
     // check we have the post value
1423
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1424
-    else{ global $post;}
1413
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
1425 1414
 
1426 1415
     if(!is_array($cf) && $cf!=''){
1427 1416
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -1509,8 +1498,7 @@  discard block
 block discarded – undo
1509 1498
 function geodir_cf_taxonomy($html,$location,$cf,$p=''){
1510 1499
 
1511 1500
     // check we have the post value
1512
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1513
-    else{ global $post;}
1501
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
1514 1502
 
1515 1503
     if(!is_array($cf) && $cf!=''){
1516 1504
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
@@ -1631,8 +1619,7 @@  discard block
 block discarded – undo
1631 1619
 function geodir_cf_address($html,$location,$cf,$p=''){
1632 1620
 
1633 1621
     // check we have the post value
1634
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1635
-    else{ global $post;}
1622
+    if(is_int($p)){$post = geodir_get_post_info($p);} else{ global $post;}
1636 1623
 
1637 1624
     if(!is_array($cf) && $cf!=''){
1638 1625
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
Please login to merge, or discard this patch.
Indentation   +1538 added lines, -1538 removed lines patch added patch discarded remove patch
@@ -21,84 +21,84 @@  discard block
 block discarded – undo
21 21
  */
22 22
 function geodir_cf_checkbox($html,$location,$cf,$p=''){
23 23
 
24
-    // check we have the post value
25
-    if(is_int($p)){$post = geodir_get_post_info($p);}
26
-    else{ global $post;}
27
-
28
-    if(!is_array($cf) && $cf!=''){
29
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
30
-        if(!$cf){return NULL;}
31
-    }
32
-
33
-    $html_var = $cf['htmlvar_name'];
34
-
35
-    // Check if there is a location specific filter.
36
-    if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){
37
-        /**
38
-         * Filter the checkbox html by location.
39
-         *
40
-         * @param string $html The html to filter.
41
-         * @param array $cf The custom field array.
42
-         * @since 1.6.6
43
-         */
44
-        $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf);
45
-    }
46
-
47
-    // Check if there is a custom field specific filter.
48
-    if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){
49
-        /**
50
-         * Filter the checkbox html by individual custom field.
51
-         *
52
-         * @param string $html The html to filter.
53
-         * @param string $location The location to output the html.
54
-         * @param array $cf The custom field array.
55
-         * @since 1.6.6
56
-         */
57
-        $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf);
58
-    }
59
-
60
-    // Check if there is a custom field key specific filter.
61
-    if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){
62
-        /**
63
-         * Filter the checkbox html by field type key.
64
-         *
65
-         * @param string $html The html to filter.
66
-         * @param string $location The location to output the html.
67
-         * @param array $cf The custom field array.
68
-         * @since 1.6.6
69
-         */
70
-        $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf);
71
-    }
72
-
73
-    // If not html then we run the standard output.
74
-    if(empty($html)){
75
-
76
-        if ( (int) $post->{$html_var} == 1 ):
77
-
78
-            if ( $post->{$html_var} == '1' ):
79
-                $html_val = __( 'Yes', 'geodirectory' );
80
-            else:
81
-                $html_val = __( 'No', 'geodirectory' );
82
-            endif;
83
-
84
-            $field_icon = geodir_field_icon_proccess($cf);
85
-            if (strpos($field_icon, 'http') !== false) {
86
-                $field_icon_af = '';
87
-            } elseif ($field_icon == '') {
88
-                $field_icon_af = '';
89
-            } else {
90
-                $field_icon_af = $field_icon;
91
-                $field_icon = '';
92
-            }
93
-
94
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af;
95
-            $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : '';
96
-            $html .= '</span>' . $html_val . '</div>';
97
-        endif;
98
-
99
-    }
100
-
101
-    return $html;
24
+	// check we have the post value
25
+	if(is_int($p)){$post = geodir_get_post_info($p);}
26
+	else{ global $post;}
27
+
28
+	if(!is_array($cf) && $cf!=''){
29
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
30
+		if(!$cf){return NULL;}
31
+	}
32
+
33
+	$html_var = $cf['htmlvar_name'];
34
+
35
+	// Check if there is a location specific filter.
36
+	if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){
37
+		/**
38
+		 * Filter the checkbox html by location.
39
+		 *
40
+		 * @param string $html The html to filter.
41
+		 * @param array $cf The custom field array.
42
+		 * @since 1.6.6
43
+		 */
44
+		$html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf);
45
+	}
46
+
47
+	// Check if there is a custom field specific filter.
48
+	if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){
49
+		/**
50
+		 * Filter the checkbox html by individual custom field.
51
+		 *
52
+		 * @param string $html The html to filter.
53
+		 * @param string $location The location to output the html.
54
+		 * @param array $cf The custom field array.
55
+		 * @since 1.6.6
56
+		 */
57
+		$html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf);
58
+	}
59
+
60
+	// Check if there is a custom field key specific filter.
61
+	if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){
62
+		/**
63
+		 * Filter the checkbox html by field type key.
64
+		 *
65
+		 * @param string $html The html to filter.
66
+		 * @param string $location The location to output the html.
67
+		 * @param array $cf The custom field array.
68
+		 * @since 1.6.6
69
+		 */
70
+		$html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf);
71
+	}
72
+
73
+	// If not html then we run the standard output.
74
+	if(empty($html)){
75
+
76
+		if ( (int) $post->{$html_var} == 1 ):
77
+
78
+			if ( $post->{$html_var} == '1' ):
79
+				$html_val = __( 'Yes', 'geodirectory' );
80
+			else:
81
+				$html_val = __( 'No', 'geodirectory' );
82
+			endif;
83
+
84
+			$field_icon = geodir_field_icon_proccess($cf);
85
+			if (strpos($field_icon, 'http') !== false) {
86
+				$field_icon_af = '';
87
+			} elseif ($field_icon == '') {
88
+				$field_icon_af = '';
89
+			} else {
90
+				$field_icon_af = $field_icon;
91
+				$field_icon = '';
92
+			}
93
+
94
+			$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af;
95
+			$html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : '';
96
+			$html .= '</span>' . $html_val . '</div>';
97
+		endif;
98
+
99
+	}
100
+
101
+	return $html;
102 102
 }
103 103
 add_filter('geodir_custom_field_output_checkbox','geodir_cf_checkbox',10,3);
104 104
 
@@ -115,71 +115,71 @@  discard block
 block discarded – undo
115 115
  */
116 116
 function geodir_cf_fieldset($html,$location,$cf,$p=''){
117 117
 
118
-    // check we have the post value
119
-    if(is_int($p)){$post = geodir_get_post_info($p);}
120
-    else{ global $post;}
121
-
122
-    if(!is_array($cf) && $cf!=''){
123
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
124
-        if(!$cf){return NULL;}
125
-    }
126
-
127
-    $html_var = $cf['htmlvar_name'];
128
-
129
-    // Check if there is a location specific filter.
130
-    if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){
131
-        /**
132
-         * Filter the fieldset html by location.
133
-         *
134
-         * @param string $html The html to filter.
135
-         * @param array $cf The custom field array.
136
-         * @since 1.6.6
137
-         */
138
-        $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf);
139
-    }
140
-
141
-    // Check if there is a custom field specific filter.
142
-    if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){
143
-        /**
144
-         * Filter the fieldset html by individual custom field.
145
-         *
146
-         * @param string $html The html to filter.
147
-         * @param string $location The location to output the html.
148
-         * @param array $cf The custom field array.
149
-         * @since 1.6.6
150
-         */
151
-        $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf);
152
-    }
153
-
154
-    // Check if there is a custom field key specific filter.
155
-    if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){
156
-        /**
157
-         * Filter the fieldset html by field type key.
158
-         *
159
-         * @param string $html The html to filter.
160
-         * @param string $location The location to output the html.
161
-         * @param array $cf The custom field array.
162
-         * @since 1.6.6
163
-         */
164
-        $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf);
165
-    }
166
-
167
-    // If not html then we run the standard output.
168
-    if(empty($html)){
169
-
170
-        global $field_set_start;
171
-        $fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']);
172
-
173
-        if ($field_set_start == 1) {
174
-            $html = '';
175
-        } else {
176
-            $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>';
177
-            //$field_set_start = 1;
178
-        }
179
-
180
-    }
181
-
182
-    return $html;
118
+	// check we have the post value
119
+	if(is_int($p)){$post = geodir_get_post_info($p);}
120
+	else{ global $post;}
121
+
122
+	if(!is_array($cf) && $cf!=''){
123
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
124
+		if(!$cf){return NULL;}
125
+	}
126
+
127
+	$html_var = $cf['htmlvar_name'];
128
+
129
+	// Check if there is a location specific filter.
130
+	if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){
131
+		/**
132
+		 * Filter the fieldset html by location.
133
+		 *
134
+		 * @param string $html The html to filter.
135
+		 * @param array $cf The custom field array.
136
+		 * @since 1.6.6
137
+		 */
138
+		$html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf);
139
+	}
140
+
141
+	// Check if there is a custom field specific filter.
142
+	if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){
143
+		/**
144
+		 * Filter the fieldset html by individual custom field.
145
+		 *
146
+		 * @param string $html The html to filter.
147
+		 * @param string $location The location to output the html.
148
+		 * @param array $cf The custom field array.
149
+		 * @since 1.6.6
150
+		 */
151
+		$html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf);
152
+	}
153
+
154
+	// Check if there is a custom field key specific filter.
155
+	if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){
156
+		/**
157
+		 * Filter the fieldset html by field type key.
158
+		 *
159
+		 * @param string $html The html to filter.
160
+		 * @param string $location The location to output the html.
161
+		 * @param array $cf The custom field array.
162
+		 * @since 1.6.6
163
+		 */
164
+		$html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf);
165
+	}
166
+
167
+	// If not html then we run the standard output.
168
+	if(empty($html)){
169
+
170
+		global $field_set_start;
171
+		$fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']);
172
+
173
+		if ($field_set_start == 1) {
174
+			$html = '';
175
+		} else {
176
+			$html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>';
177
+			//$field_set_start = 1;
178
+		}
179
+
180
+	}
181
+
182
+	return $html;
183 183
 }
184 184
 add_filter('geodir_custom_field_output_fieldset','geodir_cf_fieldset',10,3);
185 185
 
@@ -196,106 +196,106 @@  discard block
 block discarded – undo
196 196
  */
197 197
 function geodir_cf_url($html,$location,$cf,$p=''){
198 198
 
199
-    // check we have the post value
200
-    if(is_int($p)){$post = geodir_get_post_info($p);}
201
-    else{ global $post;}
202
-
203
-    if(!is_array($cf) && $cf!=''){
204
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
205
-        if(!$cf){return NULL;}
206
-    }
207
-
208
-    $html_var = $cf['htmlvar_name'];
209
-
210
-    // Check if there is a location specific filter.
211
-    if(has_filter("geodir_custom_field_output_url_loc_{$location}")){
212
-        /**
213
-         * Filter the url html by location.
214
-         *
215
-         * @param string $html The html to filter.
216
-         * @param array $cf The custom field array.
217
-         * @since 1.6.6
218
-         */
219
-        $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf);
220
-    }
221
-
222
-    // Check if there is a custom field specific filter.
223
-    if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){
224
-        /**
225
-         * Filter the url html by individual custom field.
226
-         *
227
-         * @param string $html The html to filter.
228
-         * @param string $location The location to output the html.
229
-         * @param array $cf The custom field array.
230
-         * @since 1.6.6
231
-         */
232
-        $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf);
233
-    }
234
-
235
-    // Check if there is a custom field key specific filter.
236
-    if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){
237
-        /**
238
-         * Filter the url html by field type key.
239
-         *
240
-         * @param string $html The html to filter.
241
-         * @param string $location The location to output the html.
242
-         * @param array $cf The custom field array.
243
-         * @since 1.6.6
244
-         */
245
-        $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf);
246
-    }
247
-
248
-    // If not html then we run the standard output.
249
-    if(empty($html)){
250
-
251
-        if ($post->{$cf['htmlvar_name']}):
252
-
253
-            $field_icon = geodir_field_icon_proccess($cf);
254
-            if (strpos($field_icon, 'http') !== false) {
255
-                $field_icon_af = '';
256
-            } elseif ($field_icon == '') {
257
-
258
-                if ($cf['name'] == 'geodir_facebook') {
259
-                    $field_icon_af = '<i class="fa fa-facebook-square"></i>';
260
-                } elseif ($cf['name'] == 'geodir_twitter') {
261
-                    $field_icon_af = '<i class="fa fa-twitter-square"></i>';
262
-                } else {
263
-                    $field_icon_af = '<i class="fa fa-link"></i>';
264
-                }
265
-
266
-            } else {
267
-                $field_icon_af = $field_icon;
268
-                $field_icon = '';
269
-            }
270
-
271
-            $a_url = geodir_parse_custom_field_url($post->{$cf['htmlvar_name']});
272
-
273
-
274
-            $website = !empty($a_url['url']) ? $a_url['url'] : '';
275
-            $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title'];
276
-            if(!empty($cf['default_value'])){$title = $cf['default_value'];}
277
-            $title = $title != '' ? __(stripslashes($title), 'geodirectory') : '';
278
-
279
-
280
-
281
-            // all search engines that use the nofollow value exclude links that use it from their ranking calculation
282
-            $rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"';
283
-            /**
284
-             * Filter custom field website name.
285
-             *
286
-             * @since 1.0.0
287
-             *
288
-             * @param string $title Website Title.
289
-             * @param string $website Website URL.
290
-             * @param int $post->ID Post ID.
291
-             */
292
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>';
293
-
294
-        endif;
295
-
296
-    }
297
-
298
-    return $html;
199
+	// check we have the post value
200
+	if(is_int($p)){$post = geodir_get_post_info($p);}
201
+	else{ global $post;}
202
+
203
+	if(!is_array($cf) && $cf!=''){
204
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
205
+		if(!$cf){return NULL;}
206
+	}
207
+
208
+	$html_var = $cf['htmlvar_name'];
209
+
210
+	// Check if there is a location specific filter.
211
+	if(has_filter("geodir_custom_field_output_url_loc_{$location}")){
212
+		/**
213
+		 * Filter the url html by location.
214
+		 *
215
+		 * @param string $html The html to filter.
216
+		 * @param array $cf The custom field array.
217
+		 * @since 1.6.6
218
+		 */
219
+		$html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf);
220
+	}
221
+
222
+	// Check if there is a custom field specific filter.
223
+	if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){
224
+		/**
225
+		 * Filter the url html by individual custom field.
226
+		 *
227
+		 * @param string $html The html to filter.
228
+		 * @param string $location The location to output the html.
229
+		 * @param array $cf The custom field array.
230
+		 * @since 1.6.6
231
+		 */
232
+		$html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf);
233
+	}
234
+
235
+	// Check if there is a custom field key specific filter.
236
+	if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){
237
+		/**
238
+		 * Filter the url html by field type key.
239
+		 *
240
+		 * @param string $html The html to filter.
241
+		 * @param string $location The location to output the html.
242
+		 * @param array $cf The custom field array.
243
+		 * @since 1.6.6
244
+		 */
245
+		$html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf);
246
+	}
247
+
248
+	// If not html then we run the standard output.
249
+	if(empty($html)){
250
+
251
+		if ($post->{$cf['htmlvar_name']}):
252
+
253
+			$field_icon = geodir_field_icon_proccess($cf);
254
+			if (strpos($field_icon, 'http') !== false) {
255
+				$field_icon_af = '';
256
+			} elseif ($field_icon == '') {
257
+
258
+				if ($cf['name'] == 'geodir_facebook') {
259
+					$field_icon_af = '<i class="fa fa-facebook-square"></i>';
260
+				} elseif ($cf['name'] == 'geodir_twitter') {
261
+					$field_icon_af = '<i class="fa fa-twitter-square"></i>';
262
+				} else {
263
+					$field_icon_af = '<i class="fa fa-link"></i>';
264
+				}
265
+
266
+			} else {
267
+				$field_icon_af = $field_icon;
268
+				$field_icon = '';
269
+			}
270
+
271
+			$a_url = geodir_parse_custom_field_url($post->{$cf['htmlvar_name']});
272
+
273
+
274
+			$website = !empty($a_url['url']) ? $a_url['url'] : '';
275
+			$title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title'];
276
+			if(!empty($cf['default_value'])){$title = $cf['default_value'];}
277
+			$title = $title != '' ? __(stripslashes($title), 'geodirectory') : '';
278
+
279
+
280
+
281
+			// all search engines that use the nofollow value exclude links that use it from their ranking calculation
282
+			$rel = strpos($website, get_site_url()) !== false ? '' : 'rel="nofollow"';
283
+			/**
284
+			 * Filter custom field website name.
285
+			 *
286
+			 * @since 1.0.0
287
+			 *
288
+			 * @param string $title Website Title.
289
+			 * @param string $website Website URL.
290
+			 * @param int $post->ID Post ID.
291
+			 */
292
+			$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>';
293
+
294
+		endif;
295
+
296
+	}
297
+
298
+	return $html;
299 299
 }
300 300
 add_filter('geodir_custom_field_output_url','geodir_cf_url',10,3);
301 301
 
@@ -312,80 +312,80 @@  discard block
 block discarded – undo
312 312
  */
313 313
 function geodir_cf_phone($html,$location,$cf,$p=''){
314 314
 
315
-    // check we have the post value
316
-    if(is_int($p)){$post = geodir_get_post_info($p);}
317
-    else{ global $post;}
318
-
319
-    if(!is_array($cf) && $cf!=''){
320
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
321
-        if(!$cf){return NULL;}
322
-    }
323
-
324
-    $html_var = $cf['htmlvar_name'];
325
-
326
-    // Check if there is a location specific filter.
327
-    if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){
328
-        /**
329
-         * Filter the phone html by location.
330
-         *
331
-         * @param string $html The html to filter.
332
-         * @param array $cf The custom field array.
333
-         * @since 1.6.6
334
-         */
335
-        $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf);
336
-    }
337
-
338
-    // Check if there is a custom field specific filter.
339
-    if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){
340
-        /**
341
-         * Filter the phone html by individual custom field.
342
-         *
343
-         * @param string $html The html to filter.
344
-         * @param string $location The location to output the html.
345
-         * @param array $cf The custom field array.
346
-         * @since 1.6.6
347
-         */
348
-        $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf);
349
-    }
350
-
351
-    // Check if there is a custom field key specific filter.
352
-    if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){
353
-        /**
354
-         * Filter the phone html by field type key.
355
-         *
356
-         * @param string $html The html to filter.
357
-         * @param string $location The location to output the html.
358
-         * @param array $cf The custom field array.
359
-         * @since 1.6.6
360
-         */
361
-        $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf);
362
-    }
363
-
364
-    // If not html then we run the standard output.
365
-    if(empty($html)){
366
-
367
-        if ($post->{$cf['htmlvar_name']}):
368
-
369
-            $field_icon = geodir_field_icon_proccess($cf);
370
-            if (strpos($field_icon, 'http') !== false) {
371
-                $field_icon_af = '';
372
-            } elseif ($field_icon == '') {
373
-                $field_icon_af = '<i class="fa fa-phone"></i>';
374
-            } else {
375
-                $field_icon_af = $field_icon;
376
-                $field_icon = '';
377
-            }
378
-
379
-
380
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af .
381
-                    $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '&nbsp;';
382
-            $html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>';
383
-
384
-        endif;
385
-
386
-    }
387
-
388
-    return $html;
315
+	// check we have the post value
316
+	if(is_int($p)){$post = geodir_get_post_info($p);}
317
+	else{ global $post;}
318
+
319
+	if(!is_array($cf) && $cf!=''){
320
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
321
+		if(!$cf){return NULL;}
322
+	}
323
+
324
+	$html_var = $cf['htmlvar_name'];
325
+
326
+	// Check if there is a location specific filter.
327
+	if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){
328
+		/**
329
+		 * Filter the phone html by location.
330
+		 *
331
+		 * @param string $html The html to filter.
332
+		 * @param array $cf The custom field array.
333
+		 * @since 1.6.6
334
+		 */
335
+		$html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf);
336
+	}
337
+
338
+	// Check if there is a custom field specific filter.
339
+	if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){
340
+		/**
341
+		 * Filter the phone html by individual custom field.
342
+		 *
343
+		 * @param string $html The html to filter.
344
+		 * @param string $location The location to output the html.
345
+		 * @param array $cf The custom field array.
346
+		 * @since 1.6.6
347
+		 */
348
+		$html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf);
349
+	}
350
+
351
+	// Check if there is a custom field key specific filter.
352
+	if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){
353
+		/**
354
+		 * Filter the phone html by field type key.
355
+		 *
356
+		 * @param string $html The html to filter.
357
+		 * @param string $location The location to output the html.
358
+		 * @param array $cf The custom field array.
359
+		 * @since 1.6.6
360
+		 */
361
+		$html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf);
362
+	}
363
+
364
+	// If not html then we run the standard output.
365
+	if(empty($html)){
366
+
367
+		if ($post->{$cf['htmlvar_name']}):
368
+
369
+			$field_icon = geodir_field_icon_proccess($cf);
370
+			if (strpos($field_icon, 'http') !== false) {
371
+				$field_icon_af = '';
372
+			} elseif ($field_icon == '') {
373
+				$field_icon_af = '<i class="fa fa-phone"></i>';
374
+			} else {
375
+				$field_icon_af = $field_icon;
376
+				$field_icon = '';
377
+			}
378
+
379
+
380
+			$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af .
381
+					$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '&nbsp;';
382
+			$html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>';
383
+
384
+		endif;
385
+
386
+	}
387
+
388
+	return $html;
389 389
 }
390 390
 add_filter('geodir_custom_field_output_phone','geodir_cf_phone',10,3);
391 391
 
@@ -402,85 +402,85 @@  discard block
 block discarded – undo
402 402
  */
403 403
 function geodir_cf_time($html,$location,$cf,$p=''){
404 404
 
405
-    // check we have the post value
406
-    if(is_int($p)){$post = geodir_get_post_info($p);}
407
-    else{ global $post;}
408
-
409
-    if(!is_array($cf) && $cf!=''){
410
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
411
-        if(!$cf){return NULL;}
412
-    }
413
-
414
-    $html_var = $cf['htmlvar_name'];
415
-
416
-    // Check if there is a location specific filter.
417
-    if(has_filter("geodir_custom_field_output_time_loc_{$location}")){
418
-        /**
419
-         * Filter the time html by location.
420
-         *
421
-         * @param string $html The html to filter.
422
-         * @param array $cf The custom field array.
423
-         * @since 1.6.6
424
-         */
425
-        $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf);
426
-    }
427
-
428
-    // Check if there is a custom field specific filter.
429
-    if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){
430
-        /**
431
-         * Filter the time html by individual custom field.
432
-         *
433
-         * @param string $html The html to filter.
434
-         * @param string $location The location to output the html.
435
-         * @param array $cf The custom field array.
436
-         * @since 1.6.6
437
-         */
438
-        $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf);
439
-    }
440
-
441
-    // Check if there is a custom field key specific filter.
442
-    if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){
443
-        /**
444
-         * Filter the time html by field type key.
445
-         *
446
-         * @param string $html The html to filter.
447
-         * @param string $location The location to output the html.
448
-         * @param array $cf The custom field array.
449
-         * @since 1.6.6
450
-         */
451
-        $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf);
452
-    }
453
-
454
-    // If not html then we run the standard output.
455
-    if(empty($html)){
456
-
457
-        if ($post->{$cf['htmlvar_name']}):
458
-
459
-            $value = '';
460
-            if ($post->{$cf['htmlvar_name']} != '')
461
-                //$value = date('h:i',strtotime($post->{$cf['htmlvar_name']}));
462
-                $value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']}));
463
-
464
-            $field_icon = geodir_field_icon_proccess($cf);
465
-            if (strpos($field_icon, 'http') !== false) {
466
-                $field_icon_af = '';
467
-            } elseif ($field_icon == '') {
468
-                $field_icon_af = '<i class="fa fa-clock-o"></i>';
469
-            } else {
470
-                $field_icon_af = $field_icon;
471
-                $field_icon = '';
472
-            }
473
-
474
-
475
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af;
476
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '&nbsp;';
477
-            $html .= '</span>' . $value . '</div>';
478
-
479
-        endif;
480
-
481
-    }
482
-
483
-    return $html;
405
+	// check we have the post value
406
+	if(is_int($p)){$post = geodir_get_post_info($p);}
407
+	else{ global $post;}
408
+
409
+	if(!is_array($cf) && $cf!=''){
410
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
411
+		if(!$cf){return NULL;}
412
+	}
413
+
414
+	$html_var = $cf['htmlvar_name'];
415
+
416
+	// Check if there is a location specific filter.
417
+	if(has_filter("geodir_custom_field_output_time_loc_{$location}")){
418
+		/**
419
+		 * Filter the time html by location.
420
+		 *
421
+		 * @param string $html The html to filter.
422
+		 * @param array $cf The custom field array.
423
+		 * @since 1.6.6
424
+		 */
425
+		$html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf);
426
+	}
427
+
428
+	// Check if there is a custom field specific filter.
429
+	if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){
430
+		/**
431
+		 * Filter the time html by individual custom field.
432
+		 *
433
+		 * @param string $html The html to filter.
434
+		 * @param string $location The location to output the html.
435
+		 * @param array $cf The custom field array.
436
+		 * @since 1.6.6
437
+		 */
438
+		$html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf);
439
+	}
440
+
441
+	// Check if there is a custom field key specific filter.
442
+	if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){
443
+		/**
444
+		 * Filter the time html by field type key.
445
+		 *
446
+		 * @param string $html The html to filter.
447
+		 * @param string $location The location to output the html.
448
+		 * @param array $cf The custom field array.
449
+		 * @since 1.6.6
450
+		 */
451
+		$html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf);
452
+	}
453
+
454
+	// If not html then we run the standard output.
455
+	if(empty($html)){
456
+
457
+		if ($post->{$cf['htmlvar_name']}):
458
+
459
+			$value = '';
460
+			if ($post->{$cf['htmlvar_name']} != '')
461
+				//$value = date('h:i',strtotime($post->{$cf['htmlvar_name']}));
462
+				$value = date(get_option('time_format'), strtotime($post->{$cf['htmlvar_name']}));
463
+
464
+			$field_icon = geodir_field_icon_proccess($cf);
465
+			if (strpos($field_icon, 'http') !== false) {
466
+				$field_icon_af = '';
467
+			} elseif ($field_icon == '') {
468
+				$field_icon_af = '<i class="fa fa-clock-o"></i>';
469
+			} else {
470
+				$field_icon_af = $field_icon;
471
+				$field_icon = '';
472
+			}
473
+
474
+
475
+			$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af;
476
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '&nbsp;';
477
+			$html .= '</span>' . $value . '</div>';
478
+
479
+		endif;
480
+
481
+	}
482
+
483
+	return $html;
484 484
 }
485 485
 add_filter('geodir_custom_field_output_time','geodir_cf_time',10,3);
486 486
 
@@ -496,111 +496,111 @@  discard block
 block discarded – undo
496 496
  * @return string The html to output for the custom field.
497 497
  */
498 498
 function geodir_cf_datepicker($html,$location,$cf,$p=''){
499
-    global $preview;
500
-    // check we have the post value
501
-    if(is_int($p)){$post = geodir_get_post_info($p);}
502
-    else{ global $post;}
503
-
504
-    if(!is_array($cf) && $cf!=''){
505
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
506
-        if(!$cf){return NULL;}
507
-    }
508
-
509
-    $html_var = $cf['htmlvar_name'];
510
-
511
-    // Check if there is a location specific filter.
512
-    if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){
513
-        /**
514
-         * Filter the datepicker html by location.
515
-         *
516
-         * @param string $html The html to filter.
517
-         * @param array $cf The custom field array.
518
-         * @since 1.6.6
519
-         */
520
-        $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf);
521
-    }
522
-
523
-    // Check if there is a custom field specific filter.
524
-    if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){
525
-        /**
526
-         * Filter the datepicker html by individual custom field.
527
-         *
528
-         * @param string $html The html to filter.
529
-         * @param string $location The location to output the html.
530
-         * @param array $cf The custom field array.
531
-         * @since 1.6.6
532
-         */
533
-        $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf);
534
-    }
535
-
536
-    // Check if there is a custom field key specific filter.
537
-    if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){
538
-        /**
539
-         * Filter the datepicker html by field type key.
540
-         *
541
-         * @param string $html The html to filter.
542
-         * @param string $location The location to output the html.
543
-         * @param array $cf The custom field array.
544
-         * @since 1.6.6
545
-         */
546
-        $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf);
547
-    }
548
-
549
-    // If not html then we run the standard output.
550
-    if(empty($html)){
551
-
552
-        if ($post->{$cf['htmlvar_name']}):
553
-
554
-            $date_format = geodir_default_date_format();
555
-            if ($cf['extra_fields'] != '') {
556
-                $date_format = unserialize($cf['extra_fields']);
557
-                $date_format = $date_format['date_format'];
558
-            }
559
-            // check if we need to change the format or not
560
-            $date_format_len = strlen(str_replace(' ', '', $date_format));
561
-            if($date_format_len>5){// if greater then 4 then it's the old style format.
562
-
563
-                $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
564
-                $replace = array('d','j','l','m','n','F','Y');//PHP date format
565
-
566
-                $date_format = str_replace($search, $replace, $date_format);
567
-
568
-                $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
569
-            }else{
570
-                $post_htmlvar_value = $post->{$cf['htmlvar_name']};
571
-            }
572
-
573
-            if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") {
574
-                $date_format_from = $preview ? $date_format : 'Y-m-d';
575
-                $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d
576
-                //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value;
577
-                //$value = date_i18n($date_format, strtotime($post_htmlvar_value));
578
-            }else{
579
-                return '';
580
-            }
581
-
582
-            $field_icon = geodir_field_icon_proccess($cf);
583
-
584
-            if (strpos($field_icon, 'http') !== false) {
585
-                $field_icon_af = '';
586
-            } elseif ($field_icon == '') {
587
-                $field_icon_af = '<i class="fa fa-calendar"></i>';
588
-            } else {
589
-                $field_icon_af = $field_icon;
590
-                $field_icon = '';
591
-            }
592
-
593
-
594
-
595
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af;
596
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
597
-            $html .= '</span>' . $value . '</div>';
598
-
599
-        endif;
600
-
601
-    }
602
-
603
-    return $html;
499
+	global $preview;
500
+	// check we have the post value
501
+	if(is_int($p)){$post = geodir_get_post_info($p);}
502
+	else{ global $post;}
503
+
504
+	if(!is_array($cf) && $cf!=''){
505
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
506
+		if(!$cf){return NULL;}
507
+	}
508
+
509
+	$html_var = $cf['htmlvar_name'];
510
+
511
+	// Check if there is a location specific filter.
512
+	if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){
513
+		/**
514
+		 * Filter the datepicker html by location.
515
+		 *
516
+		 * @param string $html The html to filter.
517
+		 * @param array $cf The custom field array.
518
+		 * @since 1.6.6
519
+		 */
520
+		$html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf);
521
+	}
522
+
523
+	// Check if there is a custom field specific filter.
524
+	if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){
525
+		/**
526
+		 * Filter the datepicker html by individual custom field.
527
+		 *
528
+		 * @param string $html The html to filter.
529
+		 * @param string $location The location to output the html.
530
+		 * @param array $cf The custom field array.
531
+		 * @since 1.6.6
532
+		 */
533
+		$html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf);
534
+	}
535
+
536
+	// Check if there is a custom field key specific filter.
537
+	if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){
538
+		/**
539
+		 * Filter the datepicker html by field type key.
540
+		 *
541
+		 * @param string $html The html to filter.
542
+		 * @param string $location The location to output the html.
543
+		 * @param array $cf The custom field array.
544
+		 * @since 1.6.6
545
+		 */
546
+		$html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf);
547
+	}
548
+
549
+	// If not html then we run the standard output.
550
+	if(empty($html)){
551
+
552
+		if ($post->{$cf['htmlvar_name']}):
553
+
554
+			$date_format = geodir_default_date_format();
555
+			if ($cf['extra_fields'] != '') {
556
+				$date_format = unserialize($cf['extra_fields']);
557
+				$date_format = $date_format['date_format'];
558
+			}
559
+			// check if we need to change the format or not
560
+			$date_format_len = strlen(str_replace(' ', '', $date_format));
561
+			if($date_format_len>5){// if greater then 4 then it's the old style format.
562
+
563
+				$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
564
+				$replace = array('d','j','l','m','n','F','Y');//PHP date format
565
+
566
+				$date_format = str_replace($search, $replace, $date_format);
567
+
568
+				$post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
569
+			}else{
570
+				$post_htmlvar_value = $post->{$cf['htmlvar_name']};
571
+			}
572
+
573
+			if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") {
574
+				$date_format_from = $preview ? $date_format : 'Y-m-d';
575
+				$value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d
576
+				//$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value;
577
+				//$value = date_i18n($date_format, strtotime($post_htmlvar_value));
578
+			}else{
579
+				return '';
580
+			}
581
+
582
+			$field_icon = geodir_field_icon_proccess($cf);
583
+
584
+			if (strpos($field_icon, 'http') !== false) {
585
+				$field_icon_af = '';
586
+			} elseif ($field_icon == '') {
587
+				$field_icon_af = '<i class="fa fa-calendar"></i>';
588
+			} else {
589
+				$field_icon_af = $field_icon;
590
+				$field_icon = '';
591
+			}
592
+
593
+
594
+
595
+			$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af;
596
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
597
+			$html .= '</span>' . $value . '</div>';
598
+
599
+		endif;
600
+
601
+	}
602
+
603
+	return $html;
604 604
 }
605 605
 add_filter('geodir_custom_field_output_datepicker','geodir_cf_datepicker',10,3);
606 606
 
@@ -617,96 +617,96 @@  discard block
 block discarded – undo
617 617
  */
618 618
 function geodir_cf_text($html,$location,$cf,$p=''){
619 619
 
620
-    // check we have the post value
621
-    if(is_int($p)){$post = geodir_get_post_info($p);}
622
-    else{ global $post;}
623
-
624
-    if(!is_array($cf) && $cf!=''){
625
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
626
-        if(!$cf){return NULL;}
627
-    }
628
-
629
-    $html_var = $cf['htmlvar_name'];
630
-
631
-    // Check if there is a location specific filter.
632
-    if(has_filter("geodir_custom_field_output_text_loc_{$location}")){
633
-        /**
634
-         * Filter the text html by location.
635
-         *
636
-         * @param string $html The html to filter.
637
-         * @param array $cf The custom field array.
638
-         * @since 1.6.6
639
-         */
640
-        $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf);
641
-    }
642
-
643
-    // Check if there is a custom field specific filter.
644
-    if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){
645
-        /**
646
-         * Filter the text html by individual custom field.
647
-         *
648
-         * @param string $html The html to filter.
649
-         * @param string $location The location to output the html.
650
-         * @param array $cf The custom field array.
651
-         * @since 1.6.6
652
-         */
653
-        $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf);
654
-    }
655
-
656
-    // Check if there is a custom field key specific filter.
657
-    if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){
658
-        /**
659
-         * Filter the text html by field type key.
660
-         *
661
-         * @param string $html The html to filter.
662
-         * @param string $location The location to output the html.
663
-         * @param array $cf The custom field array.
664
-         * @since 1.6.6
665
-         */
666
-        $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf);
667
-    }
620
+	// check we have the post value
621
+	if(is_int($p)){$post = geodir_get_post_info($p);}
622
+	else{ global $post;}
623
+
624
+	if(!is_array($cf) && $cf!=''){
625
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
626
+		if(!$cf){return NULL;}
627
+	}
628
+
629
+	$html_var = $cf['htmlvar_name'];
630
+
631
+	// Check if there is a location specific filter.
632
+	if(has_filter("geodir_custom_field_output_text_loc_{$location}")){
633
+		/**
634
+		 * Filter the text html by location.
635
+		 *
636
+		 * @param string $html The html to filter.
637
+		 * @param array $cf The custom field array.
638
+		 * @since 1.6.6
639
+		 */
640
+		$html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf);
641
+	}
642
+
643
+	// Check if there is a custom field specific filter.
644
+	if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){
645
+		/**
646
+		 * Filter the text html by individual custom field.
647
+		 *
648
+		 * @param string $html The html to filter.
649
+		 * @param string $location The location to output the html.
650
+		 * @param array $cf The custom field array.
651
+		 * @since 1.6.6
652
+		 */
653
+		$html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf);
654
+	}
655
+
656
+	// Check if there is a custom field key specific filter.
657
+	if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){
658
+		/**
659
+		 * Filter the text html by field type key.
660
+		 *
661
+		 * @param string $html The html to filter.
662
+		 * @param string $location The location to output the html.
663
+		 * @param array $cf The custom field array.
664
+		 * @since 1.6.6
665
+		 */
666
+		$html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf);
667
+	}
668 668
 
669 669
     
670 670
 
671
-    // If not html then we run the standard output.
672
-    if(empty($html)){
671
+	// If not html then we run the standard output.
672
+	if(empty($html)){
673 673
 
674
-        if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ):
674
+		if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ):
675 675
 
676
-            $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text";
676
+			$class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text";
677 677
 
678
-            $field_icon = geodir_field_icon_proccess($cf);
679
-            if (strpos($field_icon, 'http') !== false) {
680
-                $field_icon_af = '';
681
-            } elseif ($field_icon == '') {
682
-                $field_icon_af = ($cf['htmlvar_name'] == 'geodir_timing') ? '<i class="fa fa-clock-o"></i>' : "";
683
-            } else {
684
-                $field_icon_af = $field_icon;
685
-                $field_icon = '';
686
-            }
678
+			$field_icon = geodir_field_icon_proccess($cf);
679
+			if (strpos($field_icon, 'http') !== false) {
680
+				$field_icon_af = '';
681
+			} elseif ($field_icon == '') {
682
+				$field_icon_af = ($cf['htmlvar_name'] == 'geodir_timing') ? '<i class="fa fa-clock-o"></i>' : "";
683
+			} else {
684
+				$field_icon_af = $field_icon;
685
+				$field_icon = '';
686
+			}
687 687
 
688 688
 
689
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af;
690
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
691
-            $html .= '</span>';
689
+			$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af;
690
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
691
+			$html .= '</span>';
692 692
 
693
-            $value = $post->{$cf['htmlvar_name']};
694
-            if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){
695
-                $extra_fields = maybe_unserialize($cf['extra_fields']);
696
-                if(isset($extra_fields['is_price']) && $extra_fields['is_price']){
697
-                    $value = geodir_currency_format_number($value,$cf);
698
-                }
699
-            }
693
+			$value = $post->{$cf['htmlvar_name']};
694
+			if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){
695
+				$extra_fields = maybe_unserialize($cf['extra_fields']);
696
+				if(isset($extra_fields['is_price']) && $extra_fields['is_price']){
697
+					$value = geodir_currency_format_number($value,$cf);
698
+				}
699
+			}
700 700
 
701 701
 
702
-            $html .= $value;
703
-            $html .= '</div>';
702
+			$html .= $value;
703
+			$html .= '</div>';
704 704
 
705
-        endif;
705
+		endif;
706 706
 
707
-    }
707
+	}
708 708
 
709
-    return $html;
709
+	return $html;
710 710
 }
711 711
 add_filter('geodir_custom_field_output_text','geodir_cf_text',10,3);
712 712
 
@@ -723,98 +723,98 @@  discard block
 block discarded – undo
723 723
  */
724 724
 function geodir_cf_radio($html,$location,$cf,$p=''){
725 725
 
726
-    // check we have the post value
727
-    if(is_int($p)){$post = geodir_get_post_info($p);}
728
-    else{ global $post;}
729
-
730
-    if(!is_array($cf) && $cf!=''){
731
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
732
-        if(!$cf){return NULL;}
733
-    }
734
-
735
-    $html_var = $cf['htmlvar_name'];
736
-
737
-    // Check if there is a location specific filter.
738
-    if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){
739
-        /**
740
-         * Filter the radio html by location.
741
-         *
742
-         * @param string $html The html to filter.
743
-         * @param array $cf The custom field array.
744
-         * @since 1.6.6
745
-         */
746
-        $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf);
747
-    }
748
-
749
-    // Check if there is a custom field specific filter.
750
-    if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){
751
-        /**
752
-         * Filter the radio html by individual custom field.
753
-         *
754
-         * @param string $html The html to filter.
755
-         * @param string $location The location to output the html.
756
-         * @param array $cf The custom field array.
757
-         * @since 1.6.6
758
-         */
759
-        $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf);
760
-    }
761
-
762
-    // Check if there is a custom field key specific filter.
763
-    if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){
764
-        /**
765
-         * Filter the radio html by field type key.
766
-         *
767
-         * @param string $html The html to filter.
768
-         * @param string $location The location to output the html.
769
-         * @param array $cf The custom field array.
770
-         * @since 1.6.6
771
-         */
772
-        $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf);
773
-    }
774
-
775
-    // If not html then we run the standard output.
776
-    if(empty($html)){
777
-
778
-        $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : '';
779
-        if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''):
780
-
781
-            if ($post->{$cf['htmlvar_name']} == 'f' || $post->{$cf['htmlvar_name']} == '0') {
782
-                $html_val = __('No', 'geodirectory');
783
-            } else if ($post->{$cf['htmlvar_name']} == 't' || $post->{$cf['htmlvar_name']} == '1') {
784
-                $html_val = __('Yes', 'geodirectory');
785
-            } else {
786
-                if (!empty($cf['option_values'])) {
787
-                    $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true);
788
-
789
-                    if (!empty($cf_option_values)) {
790
-                        foreach ($cf_option_values as $cf_option_value) {
791
-                            if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) {
792
-                                $html_val = $cf_option_value['label'];
793
-                            }
794
-                        }
795
-                    }
796
-                }
797
-            }
798
-
799
-            $field_icon = geodir_field_icon_proccess($cf);
800
-            if (strpos($field_icon, 'http') !== false) {
801
-                $field_icon_af = '';
802
-            } elseif ($field_icon == '') {
803
-                $field_icon_af = '';
804
-            } else {
805
-                $field_icon_af = $field_icon;
806
-                $field_icon = '';
807
-            }
808
-
809
-
810
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af;
811
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
812
-            $html .= '</span>' . $html_val . '</div>';
813
-        endif;
814
-
815
-    }
816
-
817
-    return $html;
726
+	// check we have the post value
727
+	if(is_int($p)){$post = geodir_get_post_info($p);}
728
+	else{ global $post;}
729
+
730
+	if(!is_array($cf) && $cf!=''){
731
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
732
+		if(!$cf){return NULL;}
733
+	}
734
+
735
+	$html_var = $cf['htmlvar_name'];
736
+
737
+	// Check if there is a location specific filter.
738
+	if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){
739
+		/**
740
+		 * Filter the radio html by location.
741
+		 *
742
+		 * @param string $html The html to filter.
743
+		 * @param array $cf The custom field array.
744
+		 * @since 1.6.6
745
+		 */
746
+		$html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf);
747
+	}
748
+
749
+	// Check if there is a custom field specific filter.
750
+	if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){
751
+		/**
752
+		 * Filter the radio html by individual custom field.
753
+		 *
754
+		 * @param string $html The html to filter.
755
+		 * @param string $location The location to output the html.
756
+		 * @param array $cf The custom field array.
757
+		 * @since 1.6.6
758
+		 */
759
+		$html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf);
760
+	}
761
+
762
+	// Check if there is a custom field key specific filter.
763
+	if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){
764
+		/**
765
+		 * Filter the radio html by field type key.
766
+		 *
767
+		 * @param string $html The html to filter.
768
+		 * @param string $location The location to output the html.
769
+		 * @param array $cf The custom field array.
770
+		 * @since 1.6.6
771
+		 */
772
+		$html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf);
773
+	}
774
+
775
+	// If not html then we run the standard output.
776
+	if(empty($html)){
777
+
778
+		$html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : '';
779
+		if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''):
780
+
781
+			if ($post->{$cf['htmlvar_name']} == 'f' || $post->{$cf['htmlvar_name']} == '0') {
782
+				$html_val = __('No', 'geodirectory');
783
+			} else if ($post->{$cf['htmlvar_name']} == 't' || $post->{$cf['htmlvar_name']} == '1') {
784
+				$html_val = __('Yes', 'geodirectory');
785
+			} else {
786
+				if (!empty($cf['option_values'])) {
787
+					$cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true);
788
+
789
+					if (!empty($cf_option_values)) {
790
+						foreach ($cf_option_values as $cf_option_value) {
791
+							if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) {
792
+								$html_val = $cf_option_value['label'];
793
+							}
794
+						}
795
+					}
796
+				}
797
+			}
798
+
799
+			$field_icon = geodir_field_icon_proccess($cf);
800
+			if (strpos($field_icon, 'http') !== false) {
801
+				$field_icon_af = '';
802
+			} elseif ($field_icon == '') {
803
+				$field_icon_af = '';
804
+			} else {
805
+				$field_icon_af = $field_icon;
806
+				$field_icon = '';
807
+			}
808
+
809
+
810
+			$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af;
811
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
812
+			$html .= '</span>' . $html_val . '</div>';
813
+		endif;
814
+
815
+	}
816
+
817
+	return $html;
818 818
 }
819 819
 add_filter('geodir_custom_field_output_radio','geodir_cf_radio',10,3);
820 820
 
@@ -831,92 +831,92 @@  discard block
 block discarded – undo
831 831
  */
832 832
 function geodir_cf_select($html,$location,$cf,$p=''){
833 833
 
834
-    // check we have the post value
835
-    if(is_int($p)){$post = geodir_get_post_info($p);}
836
-    else{ global $post;}
837
-
838
-    if(!is_array($cf) && $cf!=''){
839
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
840
-        if(!$cf){return NULL;}
841
-    }
842
-
843
-    $html_var = $cf['htmlvar_name'];
844
-
845
-    // Check if there is a location specific filter.
846
-    if(has_filter("geodir_custom_field_output_select_loc_{$location}")){
847
-        /**
848
-         * Filter the select html by location.
849
-         *
850
-         * @param string $html The html to filter.
851
-         * @param array $cf The custom field array.
852
-         * @since 1.6.6
853
-         */
854
-        $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf);
855
-    }
856
-
857
-    // Check if there is a custom field specific filter.
858
-    if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){
859
-        /**
860
-         * Filter the select html by individual custom field.
861
-         *
862
-         * @param string $html The html to filter.
863
-         * @param string $location The location to output the html.
864
-         * @param array $cf The custom field array.
865
-         * @since 1.6.6
866
-         */
867
-        $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf);
868
-    }
869
-
870
-    // Check if there is a custom field key specific filter.
871
-    if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){
872
-        /**
873
-         * Filter the select html by field type key.
874
-         *
875
-         * @param string $html The html to filter.
876
-         * @param string $location The location to output the html.
877
-         * @param array $cf The custom field array.
878
-         * @since 1.6.6
879
-         */
880
-        $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf);
881
-    }
882
-
883
-    // If not html then we run the standard output.
884
-    if(empty($html)){
885
-
886
-        if ($post->{$cf['htmlvar_name']}):
887
-            $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory');
888
-
889
-            if (!empty($cf['option_values'])) {
890
-                $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true);
891
-
892
-                if (!empty($cf_option_values)) {
893
-                    foreach ($cf_option_values as $cf_option_value) {
894
-                        if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) {
895
-                            //$field_value = $cf_option_value['label']; // no longer needed here.
896
-                        }
897
-                    }
898
-                }
899
-            }
900
-
901
-            $field_icon = geodir_field_icon_proccess($cf);
902
-            if (strpos($field_icon, 'http') !== false) {
903
-                $field_icon_af = '';
904
-            } elseif ($field_icon == '') {
905
-                $field_icon_af = '';
906
-            } else {
907
-                $field_icon_af = $field_icon;
908
-                $field_icon = '';
909
-            }
910
-
911
-
912
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
913
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
914
-            $html .= '</span>' . $field_value . '</div>';
915
-        endif;
916
-
917
-    }
918
-
919
-    return $html;
834
+	// check we have the post value
835
+	if(is_int($p)){$post = geodir_get_post_info($p);}
836
+	else{ global $post;}
837
+
838
+	if(!is_array($cf) && $cf!=''){
839
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
840
+		if(!$cf){return NULL;}
841
+	}
842
+
843
+	$html_var = $cf['htmlvar_name'];
844
+
845
+	// Check if there is a location specific filter.
846
+	if(has_filter("geodir_custom_field_output_select_loc_{$location}")){
847
+		/**
848
+		 * Filter the select html by location.
849
+		 *
850
+		 * @param string $html The html to filter.
851
+		 * @param array $cf The custom field array.
852
+		 * @since 1.6.6
853
+		 */
854
+		$html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf);
855
+	}
856
+
857
+	// Check if there is a custom field specific filter.
858
+	if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){
859
+		/**
860
+		 * Filter the select html by individual custom field.
861
+		 *
862
+		 * @param string $html The html to filter.
863
+		 * @param string $location The location to output the html.
864
+		 * @param array $cf The custom field array.
865
+		 * @since 1.6.6
866
+		 */
867
+		$html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf);
868
+	}
869
+
870
+	// Check if there is a custom field key specific filter.
871
+	if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){
872
+		/**
873
+		 * Filter the select html by field type key.
874
+		 *
875
+		 * @param string $html The html to filter.
876
+		 * @param string $location The location to output the html.
877
+		 * @param array $cf The custom field array.
878
+		 * @since 1.6.6
879
+		 */
880
+		$html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf);
881
+	}
882
+
883
+	// If not html then we run the standard output.
884
+	if(empty($html)){
885
+
886
+		if ($post->{$cf['htmlvar_name']}):
887
+			$field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory');
888
+
889
+			if (!empty($cf['option_values'])) {
890
+				$cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true);
891
+
892
+				if (!empty($cf_option_values)) {
893
+					foreach ($cf_option_values as $cf_option_value) {
894
+						if (isset($cf_option_value['value']) && $cf_option_value['value'] == $post->{$cf['htmlvar_name']}) {
895
+							//$field_value = $cf_option_value['label']; // no longer needed here.
896
+						}
897
+					}
898
+				}
899
+			}
900
+
901
+			$field_icon = geodir_field_icon_proccess($cf);
902
+			if (strpos($field_icon, 'http') !== false) {
903
+				$field_icon_af = '';
904
+			} elseif ($field_icon == '') {
905
+				$field_icon_af = '';
906
+			} else {
907
+				$field_icon_af = $field_icon;
908
+				$field_icon = '';
909
+			}
910
+
911
+
912
+			$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
913
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
914
+			$html .= '</span>' . $field_value . '</div>';
915
+		endif;
916
+
917
+	}
918
+
919
+	return $html;
920 920
 }
921 921
 add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3);
922 922
 
@@ -933,117 +933,117 @@  discard block
 block discarded – undo
933 933
  */
934 934
 function geodir_cf_multiselect($html,$location,$cf,$p=''){
935 935
 
936
-    // check we have the post value
937
-    if(is_int($p)){$post = geodir_get_post_info($p);}
938
-    else{ global $post;}
939
-
940
-    if(!is_array($cf) && $cf!=''){
941
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
942
-        if(!$cf){return NULL;}
943
-    }
944
-
945
-    $html_var = $cf['htmlvar_name'];
946
-
947
-    // Check if there is a location specific filter.
948
-    if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){
949
-        /**
950
-         * Filter the multiselect html by location.
951
-         *
952
-         * @param string $html The html to filter.
953
-         * @param array $cf The custom field array.
954
-         * @since 1.6.6
955
-         */
956
-        $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf);
957
-    }
958
-
959
-    // Check if there is a custom field specific filter.
960
-    if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){
961
-        /**
962
-         * Filter the multiselect html by individual custom field.
963
-         *
964
-         * @param string $html The html to filter.
965
-         * @param string $location The location to output the html.
966
-         * @param array $cf The custom field array.
967
-         * @since 1.6.6
968
-         */
969
-        $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf);
970
-    }
971
-
972
-    // Check if there is a custom field key specific filter.
973
-    if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){
974
-        /**
975
-         * Filter the multiselect html by field type key.
976
-         *
977
-         * @param string $html The html to filter.
978
-         * @param string $location The location to output the html.
979
-         * @param array $cf The custom field array.
980
-         * @since 1.6.6
981
-         */
982
-        $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf);
983
-    }
984
-
985
-    // If not html then we run the standard output.
986
-    if(empty($html)){
987
-
988
-
989
-        if (!empty($post->{$cf['htmlvar_name']})):
990
-
991
-            if (is_array($post->{$cf['htmlvar_name']})) {
992
-                $post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']});
993
-            }
994
-
995
-            $field_icon = geodir_field_icon_proccess($cf);
996
-            if (strpos($field_icon, 'http') !== false) {
997
-                $field_icon_af = '';
998
-            } elseif ($field_icon == '') {
999
-                $field_icon_af = '';
1000
-            } else {
1001
-                $field_icon_af = $field_icon;
1002
-                $field_icon = '';
1003
-            }
1004
-
1005
-            $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ","));
1006
-
1007
-            if(is_array($field_values)){
1008
-                $field_values = array_map('trim', $field_values);
1009
-            }
1010
-
1011
-            $option_values = array();
1012
-            if (!empty($cf['option_values'])) {
1013
-                $cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true);
1014
-
1015
-                if (!empty($cf_option_values)) {
1016
-                    foreach ($cf_option_values as $cf_option_value) {
1017
-                        if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) {
1018
-                            $option_values[] = $cf_option_value['label'];
1019
-                        }
1020
-                    }
1021
-                }
1022
-            }
1023
-
1024
-
1025
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
1026
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1027
-            $html .= '</span>';
1028
-
1029
-            if (count($option_values) > 1) {
1030
-                $html .= '<ul>';
1031
-
1032
-                foreach ($option_values as $val) {
1033
-                    $html .= '<li>' . $val . '</li>';
1034
-                }
1035
-
1036
-                $html .= '</ul>';
1037
-            } else {
1038
-                $html .= $post->{$cf['htmlvar_name']};
1039
-            }
1040
-
1041
-            $html .= '</div>';
1042
-        endif;
1043
-
1044
-    }
1045
-
1046
-    return $html;
936
+	// check we have the post value
937
+	if(is_int($p)){$post = geodir_get_post_info($p);}
938
+	else{ global $post;}
939
+
940
+	if(!is_array($cf) && $cf!=''){
941
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
942
+		if(!$cf){return NULL;}
943
+	}
944
+
945
+	$html_var = $cf['htmlvar_name'];
946
+
947
+	// Check if there is a location specific filter.
948
+	if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){
949
+		/**
950
+		 * Filter the multiselect html by location.
951
+		 *
952
+		 * @param string $html The html to filter.
953
+		 * @param array $cf The custom field array.
954
+		 * @since 1.6.6
955
+		 */
956
+		$html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf);
957
+	}
958
+
959
+	// Check if there is a custom field specific filter.
960
+	if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){
961
+		/**
962
+		 * Filter the multiselect html by individual custom field.
963
+		 *
964
+		 * @param string $html The html to filter.
965
+		 * @param string $location The location to output the html.
966
+		 * @param array $cf The custom field array.
967
+		 * @since 1.6.6
968
+		 */
969
+		$html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf);
970
+	}
971
+
972
+	// Check if there is a custom field key specific filter.
973
+	if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){
974
+		/**
975
+		 * Filter the multiselect html by field type key.
976
+		 *
977
+		 * @param string $html The html to filter.
978
+		 * @param string $location The location to output the html.
979
+		 * @param array $cf The custom field array.
980
+		 * @since 1.6.6
981
+		 */
982
+		$html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf);
983
+	}
984
+
985
+	// If not html then we run the standard output.
986
+	if(empty($html)){
987
+
988
+
989
+		if (!empty($post->{$cf['htmlvar_name']})):
990
+
991
+			if (is_array($post->{$cf['htmlvar_name']})) {
992
+				$post->{$cf['htmlvar_name']} = implode(', ', $post->{$cf['htmlvar_name']});
993
+			}
994
+
995
+			$field_icon = geodir_field_icon_proccess($cf);
996
+			if (strpos($field_icon, 'http') !== false) {
997
+				$field_icon_af = '';
998
+			} elseif ($field_icon == '') {
999
+				$field_icon_af = '';
1000
+			} else {
1001
+				$field_icon_af = $field_icon;
1002
+				$field_icon = '';
1003
+			}
1004
+
1005
+			$field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ","));
1006
+
1007
+			if(is_array($field_values)){
1008
+				$field_values = array_map('trim', $field_values);
1009
+			}
1010
+
1011
+			$option_values = array();
1012
+			if (!empty($cf['option_values'])) {
1013
+				$cf_option_values = geodir_string_values_to_options(stripslashes_deep($cf['option_values']), true);
1014
+
1015
+				if (!empty($cf_option_values)) {
1016
+					foreach ($cf_option_values as $cf_option_value) {
1017
+						if (isset($cf_option_value['value']) && in_array($cf_option_value['value'], $field_values)) {
1018
+							$option_values[] = $cf_option_value['label'];
1019
+						}
1020
+					}
1021
+				}
1022
+			}
1023
+
1024
+
1025
+			$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
1026
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1027
+			$html .= '</span>';
1028
+
1029
+			if (count($option_values) > 1) {
1030
+				$html .= '<ul>';
1031
+
1032
+				foreach ($option_values as $val) {
1033
+					$html .= '<li>' . $val . '</li>';
1034
+				}
1035
+
1036
+				$html .= '</ul>';
1037
+			} else {
1038
+				$html .= $post->{$cf['htmlvar_name']};
1039
+			}
1040
+
1041
+			$html .= '</div>';
1042
+		endif;
1043
+
1044
+	}
1045
+
1046
+	return $html;
1047 1047
 }
1048 1048
 add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3);
1049 1049
 
@@ -1060,152 +1060,152 @@  discard block
 block discarded – undo
1060 1060
  */
1061 1061
 function geodir_cf_email($html,$location,$cf,$p=''){
1062 1062
 
1063
-    // check we have the post value
1064
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1065
-    else{ global $post;}
1066
-
1067
-    if(!is_array($cf) && $cf!=''){
1068
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1069
-        if(!$cf){return NULL;}
1070
-    }
1071
-
1072
-    $html_var = $cf['htmlvar_name'];
1073
-
1074
-    // Check if there is a location specific filter.
1075
-    if(has_filter("geodir_custom_field_output_email_loc_{$location}")){
1076
-        /**
1077
-         * Filter the email html by location.
1078
-         *
1079
-         * @param string $html The html to filter.
1080
-         * @param array $cf The custom field array.
1081
-         * @since 1.6.6
1082
-         */
1083
-        $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf);
1084
-    }
1085
-
1086
-    // Check if there is a custom field specific filter.
1087
-    if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){
1088
-        /**
1089
-         * Filter the email html by individual custom field.
1090
-         *
1091
-         * @param string $html The html to filter.
1092
-         * @param string $location The location to output the html.
1093
-         * @param array $cf The custom field array.
1094
-         * @since 1.6.6
1095
-         */
1096
-        $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf);
1097
-    }
1098
-
1099
-    // Check if there is a custom field key specific filter.
1100
-    if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){
1101
-        /**
1102
-         * Filter the email html by field type key.
1103
-         *
1104
-         * @param string $html The html to filter.
1105
-         * @param string $location The location to output the html.
1106
-         * @param array $cf The custom field array.
1107
-         * @since 1.6.6
1108
-         */
1109
-        $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf);
1110
-    }
1111
-
1112
-    // If not html then we run the standard output.
1113
-    if(empty($html)){
1114
-
1115
-        global $preview;
1116
-        if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) {
1117
-            return ''; // Remove Send Enquiry | Send To Friend from listings page
1118
-        }
1119
-
1120
-        $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type);
1121
-
1122
-        if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) {
1123
-            $send_to_friend = true;
1124
-            $b_send_inquiry = '';
1125
-            $b_sendtofriend = '';
1126
-
1127
-            $html = '';
1128
-            if (!$preview) {
1129
-                $b_send_inquiry = 'b_send_inquiry';
1130
-                $b_sendtofriend = 'b_sendtofriend';
1131
-                $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>';
1132
-            }
1133
-
1134
-            $field_icon = geodir_field_icon_proccess($cf);
1135
-            if (strpos($field_icon, 'http') !== false) {
1136
-                $field_icon_af = '';
1137
-            } elseif ($field_icon == '') {
1138
-                $field_icon_af = '<i class="fa fa-envelope"></i>';
1139
-            } else {
1140
-                $field_icon_af = $field_icon;
1141
-                $field_icon = '';
1142
-            }
1143
-
1144
-            $html .= '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
1145
-            $seperator = '';
1146
-            if ($post->{$cf['htmlvar_name']}) {
1147
-                $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>';
1148
-                $seperator = ' | ';
1149
-            }
1150
-
1151
-            if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) {
1152
-                $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>';
1153
-            }
1154
-
1155
-            $html .= '</span></div>';
1156
-
1157
-
1158
-            if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') {
1159
-                $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>';
1160
-            } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') {
1161
-                $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>';
1162
-            } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') {
1163
-                $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>';
1164
-            }
1165
-
1166
-            /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/
1167
-
1168
-        } else {
1169
-
1170
-            if ($post->{$cf['htmlvar_name']}) {
1171
-
1172
-                $field_icon = geodir_field_icon_proccess($cf);
1173
-                if (strpos($field_icon, 'http') !== false) {
1174
-                    $field_icon_af = '';
1175
-                } elseif ($field_icon == '') {
1176
-                    $field_icon_af = '<i class="fa fa-envelope"></i>';
1177
-                } else {
1178
-                    $field_icon_af = $field_icon;
1179
-                    $field_icon = '';
1180
-                }
1181
-
1182
-
1183
-                $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
1184
-                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1185
-                $html .= '</span><span class="geodir-email-address-output">';
1186
-                $email = $post->{$cf['htmlvar_name']} ;
1187
-                if($e_split = explode('@',$email)){
1188
-                    /**
1189
-                     * Filter email custom field name output.
1190
-                     *
1191
-                     * @since 1.5.3
1192
-                     *
1193
-                     * @param string $email The email string being output.
1194
-                     * @param array $cf Custom field variables array.
1195
-                     */
1196
-                    $email_name = apply_filters('geodir_email_field_name_output',$email,$cf);
1197
-                    $html .=  "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>";
1198
-                }else{
1199
-                    $html .=  $email;
1200
-                }
1201
-                $html .= '</span></div>';
1202
-            }
1203
-
1204
-        }
1205
-
1206
-    }
1207
-
1208
-    return $html;
1063
+	// check we have the post value
1064
+	if(is_int($p)){$post = geodir_get_post_info($p);}
1065
+	else{ global $post;}
1066
+
1067
+	if(!is_array($cf) && $cf!=''){
1068
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1069
+		if(!$cf){return NULL;}
1070
+	}
1071
+
1072
+	$html_var = $cf['htmlvar_name'];
1073
+
1074
+	// Check if there is a location specific filter.
1075
+	if(has_filter("geodir_custom_field_output_email_loc_{$location}")){
1076
+		/**
1077
+		 * Filter the email html by location.
1078
+		 *
1079
+		 * @param string $html The html to filter.
1080
+		 * @param array $cf The custom field array.
1081
+		 * @since 1.6.6
1082
+		 */
1083
+		$html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf);
1084
+	}
1085
+
1086
+	// Check if there is a custom field specific filter.
1087
+	if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){
1088
+		/**
1089
+		 * Filter the email html by individual custom field.
1090
+		 *
1091
+		 * @param string $html The html to filter.
1092
+		 * @param string $location The location to output the html.
1093
+		 * @param array $cf The custom field array.
1094
+		 * @since 1.6.6
1095
+		 */
1096
+		$html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf);
1097
+	}
1098
+
1099
+	// Check if there is a custom field key specific filter.
1100
+	if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){
1101
+		/**
1102
+		 * Filter the email html by field type key.
1103
+		 *
1104
+		 * @param string $html The html to filter.
1105
+		 * @param string $location The location to output the html.
1106
+		 * @param array $cf The custom field array.
1107
+		 * @since 1.6.6
1108
+		 */
1109
+		$html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf);
1110
+	}
1111
+
1112
+	// If not html then we run the standard output.
1113
+	if(empty($html)){
1114
+
1115
+		global $preview;
1116
+		if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) {
1117
+			return ''; // Remove Send Enquiry | Send To Friend from listings page
1118
+		}
1119
+
1120
+		$package_info = (array)geodir_post_package_info(array(), $post, $post->post_type);
1121
+
1122
+		if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) {
1123
+			$send_to_friend = true;
1124
+			$b_send_inquiry = '';
1125
+			$b_sendtofriend = '';
1126
+
1127
+			$html = '';
1128
+			if (!$preview) {
1129
+				$b_send_inquiry = 'b_send_inquiry';
1130
+				$b_sendtofriend = 'b_sendtofriend';
1131
+				$html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>';
1132
+			}
1133
+
1134
+			$field_icon = geodir_field_icon_proccess($cf);
1135
+			if (strpos($field_icon, 'http') !== false) {
1136
+				$field_icon_af = '';
1137
+			} elseif ($field_icon == '') {
1138
+				$field_icon_af = '<i class="fa fa-envelope"></i>';
1139
+			} else {
1140
+				$field_icon_af = $field_icon;
1141
+				$field_icon = '';
1142
+			}
1143
+
1144
+			$html .= '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
1145
+			$seperator = '';
1146
+			if ($post->{$cf['htmlvar_name']}) {
1147
+				$html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>';
1148
+				$seperator = ' | ';
1149
+			}
1150
+
1151
+			if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) {
1152
+				$html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>';
1153
+			}
1154
+
1155
+			$html .= '</span></div>';
1156
+
1157
+
1158
+			if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') {
1159
+				$html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>';
1160
+			} elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') {
1161
+				$html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>';
1162
+			} elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') {
1163
+				$html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>';
1164
+			}
1165
+
1166
+			/*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/
1167
+
1168
+		} else {
1169
+
1170
+			if ($post->{$cf['htmlvar_name']}) {
1171
+
1172
+				$field_icon = geodir_field_icon_proccess($cf);
1173
+				if (strpos($field_icon, 'http') !== false) {
1174
+					$field_icon_af = '';
1175
+				} elseif ($field_icon == '') {
1176
+					$field_icon_af = '<i class="fa fa-envelope"></i>';
1177
+				} else {
1178
+					$field_icon_af = $field_icon;
1179
+					$field_icon = '';
1180
+				}
1181
+
1182
+
1183
+				$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
1184
+				$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1185
+				$html .= '</span><span class="geodir-email-address-output">';
1186
+				$email = $post->{$cf['htmlvar_name']} ;
1187
+				if($e_split = explode('@',$email)){
1188
+					/**
1189
+					 * Filter email custom field name output.
1190
+					 *
1191
+					 * @since 1.5.3
1192
+					 *
1193
+					 * @param string $email The email string being output.
1194
+					 * @param array $cf Custom field variables array.
1195
+					 */
1196
+					$email_name = apply_filters('geodir_email_field_name_output',$email,$cf);
1197
+					$html .=  "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>";
1198
+				}else{
1199
+					$html .=  $email;
1200
+				}
1201
+				$html .= '</span></div>';
1202
+			}
1203
+
1204
+		}
1205
+
1206
+	}
1207
+
1208
+	return $html;
1209 1209
 }
1210 1210
 add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3);
1211 1211
 
@@ -1222,130 +1222,130 @@  discard block
 block discarded – undo
1222 1222
  */
1223 1223
 function geodir_cf_file($html,$location,$cf,$p=''){
1224 1224
 
1225
-    // check we have the post value
1226
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1227
-    else{ global $post;}
1228
-
1229
-    if(!is_array($cf) && $cf!=''){
1230
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1231
-        if(!$cf){return NULL;}
1232
-    }
1233
-
1234
-    $html_var = $cf['htmlvar_name'];
1235
-
1236
-    // Check if there is a location specific filter.
1237
-    if(has_filter("geodir_custom_field_output_file_loc_{$location}")){
1238
-        /**
1239
-         * Filter the file html by location.
1240
-         *
1241
-         * @param string $html The html to filter.
1242
-         * @param array $cf The custom field array.
1243
-         * @since 1.6.6
1244
-         */
1245
-        $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf);
1246
-    }
1247
-
1248
-    // Check if there is a custom field specific filter.
1249
-    if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){
1250
-        /**
1251
-         * Filter the file html by individual custom field.
1252
-         *
1253
-         * @param string $html The html to filter.
1254
-         * @param string $location The location to output the html.
1255
-         * @param array $cf The custom field array.
1256
-         * @since 1.6.6
1257
-         */
1258
-        $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf);
1259
-    }
1260
-
1261
-    // Check if there is a custom field key specific filter.
1262
-    if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){
1263
-        /**
1264
-         * Filter the file html by field type key.
1265
-         *
1266
-         * @param string $html The html to filter.
1267
-         * @param string $location The location to output the html.
1268
-         * @param array $cf The custom field array.
1269
-         * @since 1.6.6
1270
-         */
1271
-        $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf);
1272
-    }
1273
-
1274
-    // If not html then we run the standard output.
1275
-    if(empty($html)){
1276
-
1277
-        if (!empty($post->{$cf['htmlvar_name']})):
1278
-
1279
-            $files = explode(",", $post->{$cf['htmlvar_name']});
1280
-            if (!empty($files)):
1281
-
1282
-                $extra_fields = !empty($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : NULL;
1283
-                $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'] : '';
1284
-
1285
-                $file_paths = '';
1286
-                foreach ($files as $file) {
1287
-                    if (!empty($file)) {
1288
-
1289
-                        // $filetype = wp_check_filetype($file);
1290
-
1291
-                        $image_name_arr = explode('/', $file);
1292
-                        $curr_img_dir = $image_name_arr[count($image_name_arr) - 2];
1293
-                        $filename = end($image_name_arr);
1294
-                        $img_name_arr = explode('.', $filename);
1295
-
1296
-                        $arr_file_type = wp_check_filetype($filename);
1297
-                        if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) {
1298
-                            continue;
1299
-                        }
1300
-
1301
-                        $uploaded_file_type = $arr_file_type['type'];
1302
-                        $uploaded_file_ext = $arr_file_type['ext'];
1303
-
1304
-                        if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) {
1305
-                            continue; // Invalid file type.
1306
-                        }
1307
-
1308
-                        //$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain');
1309
-                        $image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon');
1310
-
1311
-                        // If the uploaded file is image
1312
-                        if (in_array($uploaded_file_type, $image_file_types)) {
1313
-                            $file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">';
1314
-                            $file_paths .= '<a href="'.$file.'">';
1315
-                            $file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false);
1316
-                            $file_paths .= '</a>';
1317
-                            //$file_paths .= '<img src="'.$file.'"  />';	
1318
-                            $file_paths .= '</div>';
1319
-                        } else {
1320
-                            $ext_path = '_' . $html_var . '_';
1321
-                            $filename = explode($ext_path, $filename);
1322
-                            $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>';
1323
-                        }
1324
-                    }
1325
-                }
1326
-
1327
-                $field_icon = geodir_field_icon_proccess($cf);
1328
-                if (strpos($field_icon, 'http') !== false) {
1329
-                    $field_icon_af = '';
1330
-                } elseif ($field_icon == '') {
1331
-                    $field_icon_af = '';
1332
-                } else {
1333
-                    $field_icon_af = $field_icon;
1334
-                    $field_icon = '';
1335
-                }
1336
-
1337
-                $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
1338
-                $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">';
1339
-                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1340
-                $html .= '</span>';
1341
-                $html .= $file_paths . '</div></div>';
1342
-
1343
-            endif;
1344
-        endif;
1345
-
1346
-    }
1347
-
1348
-    return $html;
1225
+	// check we have the post value
1226
+	if(is_int($p)){$post = geodir_get_post_info($p);}
1227
+	else{ global $post;}
1228
+
1229
+	if(!is_array($cf) && $cf!=''){
1230
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1231
+		if(!$cf){return NULL;}
1232
+	}
1233
+
1234
+	$html_var = $cf['htmlvar_name'];
1235
+
1236
+	// Check if there is a location specific filter.
1237
+	if(has_filter("geodir_custom_field_output_file_loc_{$location}")){
1238
+		/**
1239
+		 * Filter the file html by location.
1240
+		 *
1241
+		 * @param string $html The html to filter.
1242
+		 * @param array $cf The custom field array.
1243
+		 * @since 1.6.6
1244
+		 */
1245
+		$html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf);
1246
+	}
1247
+
1248
+	// Check if there is a custom field specific filter.
1249
+	if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){
1250
+		/**
1251
+		 * Filter the file html by individual custom field.
1252
+		 *
1253
+		 * @param string $html The html to filter.
1254
+		 * @param string $location The location to output the html.
1255
+		 * @param array $cf The custom field array.
1256
+		 * @since 1.6.6
1257
+		 */
1258
+		$html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf);
1259
+	}
1260
+
1261
+	// Check if there is a custom field key specific filter.
1262
+	if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){
1263
+		/**
1264
+		 * Filter the file html by field type key.
1265
+		 *
1266
+		 * @param string $html The html to filter.
1267
+		 * @param string $location The location to output the html.
1268
+		 * @param array $cf The custom field array.
1269
+		 * @since 1.6.6
1270
+		 */
1271
+		$html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf);
1272
+	}
1273
+
1274
+	// If not html then we run the standard output.
1275
+	if(empty($html)){
1276
+
1277
+		if (!empty($post->{$cf['htmlvar_name']})):
1278
+
1279
+			$files = explode(",", $post->{$cf['htmlvar_name']});
1280
+			if (!empty($files)):
1281
+
1282
+				$extra_fields = !empty($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : NULL;
1283
+				$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'] : '';
1284
+
1285
+				$file_paths = '';
1286
+				foreach ($files as $file) {
1287
+					if (!empty($file)) {
1288
+
1289
+						// $filetype = wp_check_filetype($file);
1290
+
1291
+						$image_name_arr = explode('/', $file);
1292
+						$curr_img_dir = $image_name_arr[count($image_name_arr) - 2];
1293
+						$filename = end($image_name_arr);
1294
+						$img_name_arr = explode('.', $filename);
1295
+
1296
+						$arr_file_type = wp_check_filetype($filename);
1297
+						if (empty($arr_file_type['ext']) || empty($arr_file_type['type'])) {
1298
+							continue;
1299
+						}
1300
+
1301
+						$uploaded_file_type = $arr_file_type['type'];
1302
+						$uploaded_file_ext = $arr_file_type['ext'];
1303
+
1304
+						if (!empty($allowed_file_types) && !in_array($uploaded_file_ext, $allowed_file_types)) {
1305
+							continue; // Invalid file type.
1306
+						}
1307
+
1308
+						//$allowed_file_types = array('application/pdf', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'text/csv', 'text/plain');
1309
+						$image_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png', 'image/bmp', 'image/x-icon');
1310
+
1311
+						// If the uploaded file is image
1312
+						if (in_array($uploaded_file_type, $image_file_types)) {
1313
+							$file_paths .= '<div class="geodir-custom-post-gallery" class="clearfix">';
1314
+							$file_paths .= '<a href="'.$file.'">';
1315
+							$file_paths .= geodir_show_image(array('src' => $file), 'thumbnail', false, false);
1316
+							$file_paths .= '</a>';
1317
+							//$file_paths .= '<img src="'.$file.'"  />';	
1318
+							$file_paths .= '</div>';
1319
+						} else {
1320
+							$ext_path = '_' . $html_var . '_';
1321
+							$filename = explode($ext_path, $filename);
1322
+							$file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>';
1323
+						}
1324
+					}
1325
+				}
1326
+
1327
+				$field_icon = geodir_field_icon_proccess($cf);
1328
+				if (strpos($field_icon, 'http') !== false) {
1329
+					$field_icon_af = '';
1330
+				} elseif ($field_icon == '') {
1331
+					$field_icon_af = '';
1332
+				} else {
1333
+					$field_icon_af = $field_icon;
1334
+					$field_icon = '';
1335
+				}
1336
+
1337
+				$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
1338
+				$html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">';
1339
+				$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1340
+				$html .= '</span>';
1341
+				$html .= $file_paths . '</div></div>';
1342
+
1343
+			endif;
1344
+		endif;
1345
+
1346
+	}
1347
+
1348
+	return $html;
1349 1349
 }
1350 1350
 add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3);
1351 1351
 
@@ -1363,80 +1363,80 @@  discard block
 block discarded – undo
1363 1363
  */
1364 1364
 function geodir_cf_textarea($html,$location,$cf,$p=''){
1365 1365
 
1366
-    // check we have the post value
1367
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1368
-    else{ global $post;}
1369
-
1370
-    if(!is_array($cf) && $cf!=''){
1371
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1372
-        if(!$cf){return NULL;}
1373
-    }
1374
-
1375
-    $html_var = $cf['htmlvar_name'];
1376
-
1377
-    // Check if there is a location specific filter.
1378
-    if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){
1379
-        /**
1380
-         * Filter the textarea html by location.
1381
-         *
1382
-         * @param string $html The html to filter.
1383
-         * @param array $cf The custom field array.
1384
-         * @since 1.6.6
1385
-         */
1386
-        $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf);
1387
-    }
1388
-
1389
-    // Check if there is a custom field specific filter.
1390
-    if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){
1391
-        /**
1392
-         * Filter the textarea html by individual custom field.
1393
-         *
1394
-         * @param string $html The html to filter.
1395
-         * @param string $location The location to output the html.
1396
-         * @param array $cf The custom field array.
1397
-         * @since 1.6.6
1398
-         */
1399
-        $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf);
1400
-    }
1401
-
1402
-    // Check if there is a custom field key specific filter.
1403
-    if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){
1404
-        /**
1405
-         * Filter the textarea html by field type key.
1406
-         *
1407
-         * @param string $html The html to filter.
1408
-         * @param string $location The location to output the html.
1409
-         * @param array $cf The custom field array.
1410
-         * @since 1.6.6
1411
-         */
1412
-        $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf);
1413
-    }
1414
-
1415
-    // If not html then we run the standard output.
1416
-    if(empty($html)){
1417
-
1418
-        if (!empty($post->{$cf['htmlvar_name']})) {
1419
-
1420
-            $field_icon = geodir_field_icon_proccess($cf);
1421
-            if (strpos($field_icon, 'http') !== false) {
1422
-                $field_icon_af = '';
1423
-            } elseif ($field_icon == '') {
1424
-                $field_icon_af = '';
1425
-            } else {
1426
-                $field_icon_af = $field_icon;
1427
-                $field_icon = '';
1428
-            }
1429
-
1430
-
1431
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
1432
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1433
-            $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>';
1434
-
1435
-        }
1436
-
1437
-    }
1438
-
1439
-    return $html;
1366
+	// check we have the post value
1367
+	if(is_int($p)){$post = geodir_get_post_info($p);}
1368
+	else{ global $post;}
1369
+
1370
+	if(!is_array($cf) && $cf!=''){
1371
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1372
+		if(!$cf){return NULL;}
1373
+	}
1374
+
1375
+	$html_var = $cf['htmlvar_name'];
1376
+
1377
+	// Check if there is a location specific filter.
1378
+	if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){
1379
+		/**
1380
+		 * Filter the textarea html by location.
1381
+		 *
1382
+		 * @param string $html The html to filter.
1383
+		 * @param array $cf The custom field array.
1384
+		 * @since 1.6.6
1385
+		 */
1386
+		$html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf);
1387
+	}
1388
+
1389
+	// Check if there is a custom field specific filter.
1390
+	if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){
1391
+		/**
1392
+		 * Filter the textarea html by individual custom field.
1393
+		 *
1394
+		 * @param string $html The html to filter.
1395
+		 * @param string $location The location to output the html.
1396
+		 * @param array $cf The custom field array.
1397
+		 * @since 1.6.6
1398
+		 */
1399
+		$html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf);
1400
+	}
1401
+
1402
+	// Check if there is a custom field key specific filter.
1403
+	if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){
1404
+		/**
1405
+		 * Filter the textarea html by field type key.
1406
+		 *
1407
+		 * @param string $html The html to filter.
1408
+		 * @param string $location The location to output the html.
1409
+		 * @param array $cf The custom field array.
1410
+		 * @since 1.6.6
1411
+		 */
1412
+		$html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf);
1413
+	}
1414
+
1415
+	// If not html then we run the standard output.
1416
+	if(empty($html)){
1417
+
1418
+		if (!empty($post->{$cf['htmlvar_name']})) {
1419
+
1420
+			$field_icon = geodir_field_icon_proccess($cf);
1421
+			if (strpos($field_icon, 'http') !== false) {
1422
+				$field_icon_af = '';
1423
+			} elseif ($field_icon == '') {
1424
+				$field_icon_af = '';
1425
+			} else {
1426
+				$field_icon_af = $field_icon;
1427
+				$field_icon = '';
1428
+			}
1429
+
1430
+
1431
+			$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
1432
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1433
+			$html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>';
1434
+
1435
+		}
1436
+
1437
+	}
1438
+
1439
+	return $html;
1440 1440
 }
1441 1441
 add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3);
1442 1442
 
@@ -1454,79 +1454,79 @@  discard block
 block discarded – undo
1454 1454
  */
1455 1455
 function geodir_cf_html($html,$location,$cf,$p=''){
1456 1456
 
1457
-    // check we have the post value
1458
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1459
-    else{ global $post;}
1460
-
1461
-    if(!is_array($cf) && $cf!=''){
1462
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1463
-        if(!$cf){return NULL;}
1464
-    }
1465
-
1466
-    $html_var = $cf['htmlvar_name'];
1467
-
1468
-    // Check if there is a location specific filter.
1469
-    if(has_filter("geodir_custom_field_output_html_loc_{$location}")){
1470
-        /**
1471
-         * Filter the html html by location.
1472
-         *
1473
-         * @param string $html The html to filter.
1474
-         * @param array $cf The custom field array.
1475
-         * @since 1.6.6
1476
-         */
1477
-        $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf);
1478
-    }
1479
-
1480
-    // Check if there is a custom field specific filter.
1481
-    if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){
1482
-        /**
1483
-         * Filter the html html by individual custom field.
1484
-         *
1485
-         * @param string $html The html to filter.
1486
-         * @param string $location The location to output the html.
1487
-         * @param array $cf The custom field array.
1488
-         * @since 1.6.6
1489
-         */
1490
-        $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf);
1491
-    }
1492
-
1493
-    // Check if there is a custom field key specific filter.
1494
-    if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){
1495
-        /**
1496
-         * Filter the html html by field type key.
1497
-         *
1498
-         * @param string $html The html to filter.
1499
-         * @param string $location The location to output the html.
1500
-         * @param array $cf The custom field array.
1501
-         * @since 1.6.6
1502
-         */
1503
-        $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf);
1504
-    }
1505
-
1506
-    // If not html then we run the standard output.
1507
-    if(empty($html)){
1508
-
1509
-        if (!empty($post->{$cf['htmlvar_name']})) {
1510
-
1511
-            $field_icon = geodir_field_icon_proccess($cf);
1512
-            if (strpos($field_icon, 'http') !== false) {
1513
-                $field_icon_af = '';
1514
-            } elseif ($field_icon == '') {
1515
-                $field_icon_af = '';
1516
-            } else {
1517
-                $field_icon_af = $field_icon;
1518
-                $field_icon = '';
1519
-            }
1520
-
1521
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
1522
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1523
-            $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>';
1524
-
1525
-        }
1526
-
1527
-    }
1528
-
1529
-    return $html;
1457
+	// check we have the post value
1458
+	if(is_int($p)){$post = geodir_get_post_info($p);}
1459
+	else{ global $post;}
1460
+
1461
+	if(!is_array($cf) && $cf!=''){
1462
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1463
+		if(!$cf){return NULL;}
1464
+	}
1465
+
1466
+	$html_var = $cf['htmlvar_name'];
1467
+
1468
+	// Check if there is a location specific filter.
1469
+	if(has_filter("geodir_custom_field_output_html_loc_{$location}")){
1470
+		/**
1471
+		 * Filter the html html by location.
1472
+		 *
1473
+		 * @param string $html The html to filter.
1474
+		 * @param array $cf The custom field array.
1475
+		 * @since 1.6.6
1476
+		 */
1477
+		$html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf);
1478
+	}
1479
+
1480
+	// Check if there is a custom field specific filter.
1481
+	if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){
1482
+		/**
1483
+		 * Filter the html html by individual custom field.
1484
+		 *
1485
+		 * @param string $html The html to filter.
1486
+		 * @param string $location The location to output the html.
1487
+		 * @param array $cf The custom field array.
1488
+		 * @since 1.6.6
1489
+		 */
1490
+		$html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf);
1491
+	}
1492
+
1493
+	// Check if there is a custom field key specific filter.
1494
+	if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){
1495
+		/**
1496
+		 * Filter the html html by field type key.
1497
+		 *
1498
+		 * @param string $html The html to filter.
1499
+		 * @param string $location The location to output the html.
1500
+		 * @param array $cf The custom field array.
1501
+		 * @since 1.6.6
1502
+		 */
1503
+		$html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf);
1504
+	}
1505
+
1506
+	// If not html then we run the standard output.
1507
+	if(empty($html)){
1508
+
1509
+		if (!empty($post->{$cf['htmlvar_name']})) {
1510
+
1511
+			$field_icon = geodir_field_icon_proccess($cf);
1512
+			if (strpos($field_icon, 'http') !== false) {
1513
+				$field_icon_af = '';
1514
+			} elseif ($field_icon == '') {
1515
+				$field_icon_af = '';
1516
+			} else {
1517
+				$field_icon_af = $field_icon;
1518
+				$field_icon = '';
1519
+			}
1520
+
1521
+			$html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
1522
+			$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1523
+			$html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>';
1524
+
1525
+		}
1526
+
1527
+	}
1528
+
1529
+	return $html;
1530 1530
 }
1531 1531
 add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3);
1532 1532
 
@@ -1544,113 +1544,113 @@  discard block
 block discarded – undo
1544 1544
  */
1545 1545
 function geodir_cf_taxonomy($html,$location,$cf,$p=''){
1546 1546
 
1547
-    // check we have the post value
1548
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1549
-    else{ global $post;}
1550
-
1551
-    if(!is_array($cf) && $cf!=''){
1552
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1553
-        if(!$cf){return NULL;}
1554
-    }
1555
-
1556
-    $html_var = $cf['htmlvar_name'];
1557
-
1558
-    // Check if there is a location specific filter.
1559
-    if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){
1560
-        /**
1561
-         * Filter the taxonomy html by location.
1562
-         *
1563
-         * @param string $html The html to filter.
1564
-         * @param array $cf The custom field array.
1565
-         * @since 1.6.6
1566
-         */
1567
-        $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf);
1568
-    }
1569
-
1570
-    // Check if there is a custom field specific filter.
1571
-    if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){
1572
-        /**
1573
-         * Filter the taxonomy html by individual custom field.
1574
-         *
1575
-         * @param string $html The html to filter.
1576
-         * @param string $location The location to output the html.
1577
-         * @param array $cf The custom field array.
1578
-         * @since 1.6.6
1579
-         */
1580
-        $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf);
1581
-    }
1582
-
1583
-    // Check if there is a custom field key specific filter.
1584
-    if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){
1585
-        /**
1586
-         * Filter the taxonomy html by field type key.
1587
-         *
1588
-         * @param string $html The html to filter.
1589
-         * @param string $location The location to output the html.
1590
-         * @param array $cf The custom field array.
1591
-         * @since 1.6.6
1592
-         */
1593
-        $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf);
1594
-    }
1595
-
1596
-    // If not html then we run the standard output.
1597
-    if(empty($html)){
1598
-
1599
-        if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) {
1600
-            $post_taxonomy = $post->post_type . 'category';
1601
-            $field_value = $post->{$html_var};
1602
-            $links = array();
1603
-            $terms = array();
1604
-            $termsOrdered = array();
1605
-            if (!is_array($field_value)) {
1606
-                $field_value = explode(",", trim($field_value, ","));
1607
-            }
1608
-
1609
-            $field_value = array_unique($field_value);
1610
-
1611
-            if (!empty($field_value)) {
1612
-                foreach ($field_value as $term) {
1613
-                    $term = trim($term);
1614
-
1615
-                    if ($term != '') {
1616
-                        $term = get_term_by('id', $term, $html_var);
1617
-                        if (is_object($term)) {
1618
-                            $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>";
1619
-                            $terms[] = $term;
1620
-                        }
1621
-                    }
1622
-                }
1623
-                if (!empty($links)) {
1624
-                    // order alphabetically
1625
-                    asort($links);
1626
-                    foreach (array_keys($links) as $key) {
1627
-                        $termsOrdered[$key] = $terms[$key];
1628
-                    }
1629
-                    $terms = $termsOrdered;
1630
-                }
1631
-            }
1632
-            $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : '';
1633
-
1634
-            if ($html_value != '') {
1635
-                $field_icon = geodir_field_icon_proccess($cf);
1636
-                if (strpos($field_icon, 'http') !== false) {
1637
-                    $field_icon_af = '';
1638
-                } else if ($field_icon == '') {
1639
-                    $field_icon_af = '';
1640
-                } else {
1641
-                    $field_icon_af = $field_icon;
1642
-                    $field_icon = '';
1643
-                }
1644
-
1645
-                $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af;
1646
-                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1647
-                $html .= '</span> ' . $html_value . '</div>';
1648
-            }
1649
-        }
1650
-
1651
-    }
1652
-
1653
-    return $html;
1547
+	// check we have the post value
1548
+	if(is_int($p)){$post = geodir_get_post_info($p);}
1549
+	else{ global $post;}
1550
+
1551
+	if(!is_array($cf) && $cf!=''){
1552
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1553
+		if(!$cf){return NULL;}
1554
+	}
1555
+
1556
+	$html_var = $cf['htmlvar_name'];
1557
+
1558
+	// Check if there is a location specific filter.
1559
+	if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){
1560
+		/**
1561
+		 * Filter the taxonomy html by location.
1562
+		 *
1563
+		 * @param string $html The html to filter.
1564
+		 * @param array $cf The custom field array.
1565
+		 * @since 1.6.6
1566
+		 */
1567
+		$html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf);
1568
+	}
1569
+
1570
+	// Check if there is a custom field specific filter.
1571
+	if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){
1572
+		/**
1573
+		 * Filter the taxonomy html by individual custom field.
1574
+		 *
1575
+		 * @param string $html The html to filter.
1576
+		 * @param string $location The location to output the html.
1577
+		 * @param array $cf The custom field array.
1578
+		 * @since 1.6.6
1579
+		 */
1580
+		$html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf);
1581
+	}
1582
+
1583
+	// Check if there is a custom field key specific filter.
1584
+	if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){
1585
+		/**
1586
+		 * Filter the taxonomy html by field type key.
1587
+		 *
1588
+		 * @param string $html The html to filter.
1589
+		 * @param string $location The location to output the html.
1590
+		 * @param array $cf The custom field array.
1591
+		 * @since 1.6.6
1592
+		 */
1593
+		$html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf);
1594
+	}
1595
+
1596
+	// If not html then we run the standard output.
1597
+	if(empty($html)){
1598
+
1599
+		if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) {
1600
+			$post_taxonomy = $post->post_type . 'category';
1601
+			$field_value = $post->{$html_var};
1602
+			$links = array();
1603
+			$terms = array();
1604
+			$termsOrdered = array();
1605
+			if (!is_array($field_value)) {
1606
+				$field_value = explode(",", trim($field_value, ","));
1607
+			}
1608
+
1609
+			$field_value = array_unique($field_value);
1610
+
1611
+			if (!empty($field_value)) {
1612
+				foreach ($field_value as $term) {
1613
+					$term = trim($term);
1614
+
1615
+					if ($term != '') {
1616
+						$term = get_term_by('id', $term, $html_var);
1617
+						if (is_object($term)) {
1618
+							$links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>";
1619
+							$terms[] = $term;
1620
+						}
1621
+					}
1622
+				}
1623
+				if (!empty($links)) {
1624
+					// order alphabetically
1625
+					asort($links);
1626
+					foreach (array_keys($links) as $key) {
1627
+						$termsOrdered[$key] = $terms[$key];
1628
+					}
1629
+					$terms = $termsOrdered;
1630
+				}
1631
+			}
1632
+			$html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : '';
1633
+
1634
+			if ($html_value != '') {
1635
+				$field_icon = geodir_field_icon_proccess($cf);
1636
+				if (strpos($field_icon, 'http') !== false) {
1637
+					$field_icon_af = '';
1638
+				} else if ($field_icon == '') {
1639
+					$field_icon_af = '';
1640
+				} else {
1641
+					$field_icon_af = $field_icon;
1642
+					$field_icon = '';
1643
+				}
1644
+
1645
+				$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af;
1646
+				$html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1647
+				$html .= '</span> ' . $html_value . '</div>';
1648
+			}
1649
+		}
1650
+
1651
+	}
1652
+
1653
+	return $html;
1654 1654
 }
1655 1655
 add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3);
1656 1656
 
@@ -1667,161 +1667,161 @@  discard block
 block discarded – undo
1667 1667
  */
1668 1668
 function geodir_cf_address($html,$location,$cf,$p=''){
1669 1669
 
1670
-    // check we have the post value
1671
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1672
-    else{ global $post;}
1673
-
1674
-    if(!is_array($cf) && $cf!=''){
1675
-        $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1676
-        if(!$cf){return NULL;}
1677
-    }
1678
-
1679
-    $html_var = $cf['htmlvar_name'];
1680
-
1681
-    // Check if there is a location specific filter.
1682
-    if(has_filter("geodir_custom_field_output_address_loc_{$location}")){
1683
-        /**
1684
-         * Filter the address html by location.
1685
-         *
1686
-         * @param string $html The html to filter.
1687
-         * @param array $cf The custom field array.
1688
-         * @since 1.6.6
1689
-         */
1690
-        $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf);
1691
-    }
1692
-
1693
-    // Check if there is a custom field specific filter.
1694
-    if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){
1695
-        /**
1696
-         * Filter the address html by individual custom field.
1697
-         *
1698
-         * @param string $html The html to filter.
1699
-         * @param string $location The location to output the html.
1700
-         * @param array $cf The custom field array.
1701
-         * @since 1.6.6
1702
-         */
1703
-        $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf);
1704
-    }
1705
-
1706
-    // Check if there is a custom field key specific filter.
1707
-    if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){
1708
-        /**
1709
-         * Filter the address html by field type key.
1710
-         *
1711
-         * @param string $html The html to filter.
1712
-         * @param string $location The location to output the html.
1713
-         * @param array $cf The custom field array.
1714
-         * @since 1.6.6
1715
-         */
1716
-        $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf);
1717
-    }
1718
-
1719
-    // If not html then we run the standard output.
1720
-    if(empty($html)){
1721
-
1722
-        global $preview;
1723
-        $html_var = $cf['htmlvar_name'] . '_address';
1724
-
1725
-        if ($cf['extra_fields']) {
1726
-
1727
-            $extra_fields = unserialize($cf['extra_fields']);
1728
-
1729
-            $addition_fields = '';
1730
-
1731
-            if (!empty($extra_fields)) {
1732
-
1733
-                $show_city_in_address = false;
1734
-                if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
1735
-                    $show_city_in_address = true;
1736
-                }
1737
-                /**
1738
-                 * Filter "show city in address" value.
1739
-                 *
1740
-                 * @since 1.0.0
1741
-                 */
1742
-                $show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address);
1743
-
1744
-
1745
-                $show_region_in_address = false;
1746
-                if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
1747
-                    $show_region_in_address = true;
1748
-                }
1749
-                /**
1750
-                 * Filter "show region in address" value.
1751
-                 *
1752
-                 * @since 1.6.6
1753
-                 */
1754
-                $show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address);
1755
-
1756
-                $show_country_in_address = false;
1757
-                if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
1758
-                    $show_country_in_address = true;
1759
-                }
1760
-                /**
1761
-                 * Filter "show country in address" value.
1762
-                 *
1763
-                 * @since 1.6.6
1764
-                 */
1765
-                $show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address);
1766
-
1767
-                $show_zip_in_address = false;
1768
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
1769
-                    $show_zip_in_address = true;
1770
-                }
1771
-                /**
1772
-                 * Filter "show zip in address" value.
1773
-                 *
1774
-                 * @since 1.6.6
1775
-                 */
1776
-                $show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address);
1777
-
1778
-
1779
-            }
1780
-
1781
-        }
1782
-
1783
-
1784
-        if ($post->{$html_var}) {
1785
-
1786
-            $field_icon = geodir_field_icon_proccess( $cf );
1787
-            if ( strpos( $field_icon, 'http' ) !== false ) {
1788
-                $field_icon_af = '';
1789
-            } elseif ( $field_icon == '' ) {
1790
-                $field_icon_af = '<i class="fa fa-home"></i>';
1791
-            } else {
1792
-                $field_icon_af = $field_icon;
1793
-                $field_icon    = '';
1794
-            }
1670
+	// check we have the post value
1671
+	if(is_int($p)){$post = geodir_get_post_info($p);}
1672
+	else{ global $post;}
1673
+
1674
+	if(!is_array($cf) && $cf!=''){
1675
+		$cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1676
+		if(!$cf){return NULL;}
1677
+	}
1678
+
1679
+	$html_var = $cf['htmlvar_name'];
1680
+
1681
+	// Check if there is a location specific filter.
1682
+	if(has_filter("geodir_custom_field_output_address_loc_{$location}")){
1683
+		/**
1684
+		 * Filter the address html by location.
1685
+		 *
1686
+		 * @param string $html The html to filter.
1687
+		 * @param array $cf The custom field array.
1688
+		 * @since 1.6.6
1689
+		 */
1690
+		$html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf);
1691
+	}
1692
+
1693
+	// Check if there is a custom field specific filter.
1694
+	if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){
1695
+		/**
1696
+		 * Filter the address html by individual custom field.
1697
+		 *
1698
+		 * @param string $html The html to filter.
1699
+		 * @param string $location The location to output the html.
1700
+		 * @param array $cf The custom field array.
1701
+		 * @since 1.6.6
1702
+		 */
1703
+		$html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf);
1704
+	}
1705
+
1706
+	// Check if there is a custom field key specific filter.
1707
+	if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){
1708
+		/**
1709
+		 * Filter the address html by field type key.
1710
+		 *
1711
+		 * @param string $html The html to filter.
1712
+		 * @param string $location The location to output the html.
1713
+		 * @param array $cf The custom field array.
1714
+		 * @since 1.6.6
1715
+		 */
1716
+		$html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf);
1717
+	}
1718
+
1719
+	// If not html then we run the standard output.
1720
+	if(empty($html)){
1721
+
1722
+		global $preview;
1723
+		$html_var = $cf['htmlvar_name'] . '_address';
1724
+
1725
+		if ($cf['extra_fields']) {
1726
+
1727
+			$extra_fields = unserialize($cf['extra_fields']);
1728
+
1729
+			$addition_fields = '';
1730
+
1731
+			if (!empty($extra_fields)) {
1732
+
1733
+				$show_city_in_address = false;
1734
+				if (isset($extra_fields['show_city']) && $extra_fields['show_city']) {
1735
+					$show_city_in_address = true;
1736
+				}
1737
+				/**
1738
+				 * Filter "show city in address" value.
1739
+				 *
1740
+				 * @since 1.0.0
1741
+				 */
1742
+				$show_city_in_address = apply_filters('geodir_show_city_in_address', $show_city_in_address);
1743
+
1744
+
1745
+				$show_region_in_address = false;
1746
+				if (isset($extra_fields['show_region']) && $extra_fields['show_region']) {
1747
+					$show_region_in_address = true;
1748
+				}
1749
+				/**
1750
+				 * Filter "show region in address" value.
1751
+				 *
1752
+				 * @since 1.6.6
1753
+				 */
1754
+				$show_region_in_address = apply_filters('geodir_show_region_in_address', $show_region_in_address);
1755
+
1756
+				$show_country_in_address = false;
1757
+				if (isset($extra_fields['show_country']) && $extra_fields['show_country']) {
1758
+					$show_country_in_address = true;
1759
+				}
1760
+				/**
1761
+				 * Filter "show country in address" value.
1762
+				 *
1763
+				 * @since 1.6.6
1764
+				 */
1765
+				$show_country_in_address = apply_filters('geodir_show_country_in_address', $show_country_in_address);
1766
+
1767
+				$show_zip_in_address = false;
1768
+				if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
1769
+					$show_zip_in_address = true;
1770
+				}
1771
+				/**
1772
+				 * Filter "show zip in address" value.
1773
+				 *
1774
+				 * @since 1.6.6
1775
+				 */
1776
+				$show_zip_in_address = apply_filters('geodir_show_zip_in_address', $show_zip_in_address);
1777
+
1778
+
1779
+			}
1780
+
1781
+		}
1782
+
1783
+
1784
+		if ($post->{$html_var}) {
1785
+
1786
+			$field_icon = geodir_field_icon_proccess( $cf );
1787
+			if ( strpos( $field_icon, 'http' ) !== false ) {
1788
+				$field_icon_af = '';
1789
+			} elseif ( $field_icon == '' ) {
1790
+				$field_icon_af = '<i class="fa fa-home"></i>';
1791
+			} else {
1792
+				$field_icon_af = $field_icon;
1793
+				$field_icon    = '';
1794
+			}
1795 1795
             
1796 1796
 
1797 1797
 
1798
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"  itemscope itemtype="http://schema.org/PostalAddress">';
1799
-            $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af;
1800
-            $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : '&nbsp;';
1801
-            $html .= '</span>';
1798
+			$html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"  itemscope itemtype="http://schema.org/PostalAddress">';
1799
+			$html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af;
1800
+			$html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : '&nbsp;';
1801
+			$html .= '</span>';
1802 1802
 
1803
-            if ( isset($post->post_address) ) {
1804
-                $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>';
1805
-            }
1806
-            if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) {
1807
-                $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>';
1808
-            }
1809
-            if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) {
1810
-                $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>';
1811
-            }
1812
-            if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) {
1813
-                $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>';
1814
-            }
1815
-            if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) {
1816
-                $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>';
1817
-            }
1818
-            $html .= '</div>';
1803
+			if ( isset($post->post_address) ) {
1804
+				$html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>';
1805
+			}
1806
+			if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) {
1807
+				$html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>';
1808
+			}
1809
+			if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) {
1810
+				$html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>';
1811
+			}
1812
+			if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) {
1813
+				$html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>';
1814
+			}
1815
+			if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) {
1816
+				$html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>';
1817
+			}
1818
+			$html .= '</div>';
1819 1819
 
1820
-        }
1820
+		}
1821 1821
 
1822
-    }
1822
+	}
1823 1823
 
1824 1824
 
1825
-    return $html;
1825
+	return $html;
1826 1826
 }
1827 1827
 add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3);
1828 1828
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +301 added lines, -301 removed lines patch added patch discarded remove patch
@@ -19,21 +19,21 @@  discard block
 block discarded – undo
19 19
  *
20 20
  * @return string The html to output for the custom field.
21 21
  */
22
-function geodir_cf_checkbox($html,$location,$cf,$p=''){
22
+function geodir_cf_checkbox($html, $location, $cf, $p = '') {
23 23
 
24 24
     // check we have the post value
25
-    if(is_int($p)){$post = geodir_get_post_info($p);}
26
-    else{ global $post;}
25
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
26
+    else { global $post; }
27 27
 
28
-    if(!is_array($cf) && $cf!=''){
28
+    if (!is_array($cf) && $cf != '') {
29 29
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
30
-        if(!$cf){return NULL;}
30
+        if (!$cf) {return NULL; }
31 31
     }
32 32
 
33 33
     $html_var = $cf['htmlvar_name'];
34 34
 
35 35
     // Check if there is a location specific filter.
36
-    if(has_filter("geodir_custom_field_output_checkbox_loc_{$location}")){
36
+    if (has_filter("geodir_custom_field_output_checkbox_loc_{$location}")) {
37 37
         /**
38 38
          * Filter the checkbox html by location.
39 39
          *
@@ -41,11 +41,11 @@  discard block
 block discarded – undo
41 41
          * @param array $cf The custom field array.
42 42
          * @since 1.6.6
43 43
          */
44
-        $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}",$html,$cf);
44
+        $html = apply_filters("geodir_custom_field_output_checkbox_loc_{$location}", $html, $cf);
45 45
     }
46 46
 
47 47
     // Check if there is a custom field specific filter.
48
-    if(has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")){
48
+    if (has_filter("geodir_custom_field_output_checkbox_var_{$html_var}")) {
49 49
         /**
50 50
          * Filter the checkbox html by individual custom field.
51 51
          *
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
          * @param array $cf The custom field array.
55 55
          * @since 1.6.6
56 56
          */
57
-        $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}",$html,$location,$cf);
57
+        $html = apply_filters("geodir_custom_field_output_checkbox_var_{$html_var}", $html, $location, $cf);
58 58
     }
59 59
 
60 60
     // Check if there is a custom field key specific filter.
61
-    if(has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")){
61
+    if (has_filter("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}")) {
62 62
         /**
63 63
          * Filter the checkbox html by field type key.
64 64
          *
@@ -67,18 +67,18 @@  discard block
 block discarded – undo
67 67
          * @param array $cf The custom field array.
68 68
          * @since 1.6.6
69 69
          */
70
-        $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}",$html,$location,$cf);
70
+        $html = apply_filters("geodir_custom_field_output_checkbox_key_{$cf['field_type_key']}", $html, $location, $cf);
71 71
     }
72 72
 
73 73
     // If not html then we run the standard output.
74
-    if(empty($html)){
74
+    if (empty($html)) {
75 75
 
76
-        if ( (int) $post->{$html_var} == 1 ):
76
+        if ((int) $post->{$html_var} == 1):
77 77
 
78
-            if ( $post->{$html_var} == '1' ):
79
-                $html_val = __( 'Yes', 'geodirectory' );
78
+            if ($post->{$html_var} == '1'):
79
+                $html_val = __('Yes', 'geodirectory');
80 80
             else:
81
-                $html_val = __( 'No', 'geodirectory' );
81
+                $html_val = __('No', 'geodirectory');
82 82
             endif;
83 83
 
84 84
             $field_icon = geodir_field_icon_proccess($cf);
@@ -91,16 +91,16 @@  discard block
 block discarded – undo
91 91
                 $field_icon = '';
92 92
             }
93 93
 
94
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-checkbox" style="' . $field_icon . '">' . $field_icon_af;
95
-            $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : '';
96
-            $html .= '</span>' . $html_val . '</div>';
94
+            $html = '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-checkbox" style="'.$field_icon.'">'.$field_icon_af;
95
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
96
+            $html .= '</span>'.$html_val.'</div>';
97 97
         endif;
98 98
 
99 99
     }
100 100
 
101 101
     return $html;
102 102
 }
103
-add_filter('geodir_custom_field_output_checkbox','geodir_cf_checkbox',10,3);
103
+add_filter('geodir_custom_field_output_checkbox', 'geodir_cf_checkbox', 10, 3);
104 104
 
105 105
 
106 106
 /**
@@ -113,21 +113,21 @@  discard block
 block discarded – undo
113 113
  *
114 114
  * @return string The html to output for the custom field.
115 115
  */
116
-function geodir_cf_fieldset($html,$location,$cf,$p=''){
116
+function geodir_cf_fieldset($html, $location, $cf, $p = '') {
117 117
 
118 118
     // check we have the post value
119
-    if(is_int($p)){$post = geodir_get_post_info($p);}
120
-    else{ global $post;}
119
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
120
+    else { global $post; }
121 121
 
122
-    if(!is_array($cf) && $cf!=''){
122
+    if (!is_array($cf) && $cf != '') {
123 123
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
124
-        if(!$cf){return NULL;}
124
+        if (!$cf) {return NULL; }
125 125
     }
126 126
 
127 127
     $html_var = $cf['htmlvar_name'];
128 128
 
129 129
     // Check if there is a location specific filter.
130
-    if(has_filter("geodir_custom_field_output_fieldset_loc_{$location}")){
130
+    if (has_filter("geodir_custom_field_output_fieldset_loc_{$location}")) {
131 131
         /**
132 132
          * Filter the fieldset html by location.
133 133
          *
@@ -135,11 +135,11 @@  discard block
 block discarded – undo
135 135
          * @param array $cf The custom field array.
136 136
          * @since 1.6.6
137 137
          */
138
-        $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}",$html,$cf);
138
+        $html = apply_filters("geodir_custom_field_output_fieldset_loc_{$location}", $html, $cf);
139 139
     }
140 140
 
141 141
     // Check if there is a custom field specific filter.
142
-    if(has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")){
142
+    if (has_filter("geodir_custom_field_output_fieldset_var_{$html_var}")) {
143 143
         /**
144 144
          * Filter the fieldset html by individual custom field.
145 145
          *
@@ -148,11 +148,11 @@  discard block
 block discarded – undo
148 148
          * @param array $cf The custom field array.
149 149
          * @since 1.6.6
150 150
          */
151
-        $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}",$html,$location,$cf);
151
+        $html = apply_filters("geodir_custom_field_output_fieldset_var_{$html_var}", $html, $location, $cf);
152 152
     }
153 153
 
154 154
     // Check if there is a custom field key specific filter.
155
-    if(has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")){
155
+    if (has_filter("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}")) {
156 156
         /**
157 157
          * Filter the fieldset html by field type key.
158 158
          *
@@ -161,11 +161,11 @@  discard block
 block discarded – undo
161 161
          * @param array $cf The custom field array.
162 162
          * @since 1.6.6
163 163
          */
164
-        $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}",$html,$location,$cf);
164
+        $html = apply_filters("geodir_custom_field_output_fieldset_key_{$cf['field_type_key']}", $html, $location, $cf);
165 165
     }
166 166
 
167 167
     // If not html then we run the standard output.
168
-    if(empty($html)){
168
+    if (empty($html)) {
169 169
 
170 170
         global $field_set_start;
171 171
         $fieldset_class = 'fieldset-'.sanitize_title_with_dashes($cf['site_title']);
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
         if ($field_set_start == 1) {
174 174
             $html = '';
175 175
         } else {
176
-            $html = '<h2 class="'.$fieldset_class.'">'. __($cf['site_title'], 'geodirectory') . '</h2>';
176
+            $html = '<h2 class="'.$fieldset_class.'">'.__($cf['site_title'], 'geodirectory').'</h2>';
177 177
             //$field_set_start = 1;
178 178
         }
179 179
 
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
     return $html;
183 183
 }
184
-add_filter('geodir_custom_field_output_fieldset','geodir_cf_fieldset',10,3);
184
+add_filter('geodir_custom_field_output_fieldset', 'geodir_cf_fieldset', 10, 3);
185 185
 
186 186
 
187 187
 /**
@@ -194,21 +194,21 @@  discard block
 block discarded – undo
194 194
  *
195 195
  * @return string The html to output for the custom field.
196 196
  */
197
-function geodir_cf_url($html,$location,$cf,$p=''){
197
+function geodir_cf_url($html, $location, $cf, $p = '') {
198 198
 
199 199
     // check we have the post value
200
-    if(is_int($p)){$post = geodir_get_post_info($p);}
201
-    else{ global $post;}
200
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
201
+    else { global $post; }
202 202
 
203
-    if(!is_array($cf) && $cf!=''){
203
+    if (!is_array($cf) && $cf != '') {
204 204
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
205
-        if(!$cf){return NULL;}
205
+        if (!$cf) {return NULL; }
206 206
     }
207 207
 
208 208
     $html_var = $cf['htmlvar_name'];
209 209
 
210 210
     // Check if there is a location specific filter.
211
-    if(has_filter("geodir_custom_field_output_url_loc_{$location}")){
211
+    if (has_filter("geodir_custom_field_output_url_loc_{$location}")) {
212 212
         /**
213 213
          * Filter the url html by location.
214 214
          *
@@ -216,11 +216,11 @@  discard block
 block discarded – undo
216 216
          * @param array $cf The custom field array.
217 217
          * @since 1.6.6
218 218
          */
219
-        $html = apply_filters("geodir_custom_field_output_url_loc_{$location}",$html,$cf);
219
+        $html = apply_filters("geodir_custom_field_output_url_loc_{$location}", $html, $cf);
220 220
     }
221 221
 
222 222
     // Check if there is a custom field specific filter.
223
-    if(has_filter("geodir_custom_field_output_url_var_{$html_var}")){
223
+    if (has_filter("geodir_custom_field_output_url_var_{$html_var}")) {
224 224
         /**
225 225
          * Filter the url html by individual custom field.
226 226
          *
@@ -229,11 +229,11 @@  discard block
 block discarded – undo
229 229
          * @param array $cf The custom field array.
230 230
          * @since 1.6.6
231 231
          */
232
-        $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}",$html,$location,$cf);
232
+        $html = apply_filters("geodir_custom_field_output_url_var_{$html_var}", $html, $location, $cf);
233 233
     }
234 234
 
235 235
     // Check if there is a custom field key specific filter.
236
-    if(has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")){
236
+    if (has_filter("geodir_custom_field_output_url_key_{$cf['field_type_key']}")) {
237 237
         /**
238 238
          * Filter the url html by field type key.
239 239
          *
@@ -242,11 +242,11 @@  discard block
 block discarded – undo
242 242
          * @param array $cf The custom field array.
243 243
          * @since 1.6.6
244 244
          */
245
-        $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}",$html,$location,$cf);
245
+        $html = apply_filters("geodir_custom_field_output_url_key_{$cf['field_type_key']}", $html, $location, $cf);
246 246
     }
247 247
 
248 248
     // If not html then we run the standard output.
249
-    if(empty($html)){
249
+    if (empty($html)) {
250 250
 
251 251
         if ($post->{$cf['htmlvar_name']}):
252 252
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 
274 274
             $website = !empty($a_url['url']) ? $a_url['url'] : '';
275 275
             $title = !empty($a_url['label']) ? $a_url['label'] : $cf['site_title'];
276
-            if(!empty($cf['default_value'])){$title = $cf['default_value'];}
276
+            if (!empty($cf['default_value'])) {$title = $cf['default_value']; }
277 277
             $title = $title != '' ? __(stripslashes($title), 'geodirectory') : '';
278 278
 
279 279
 
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
              * @param string $website Website URL.
290 290
              * @param int $post->ID Post ID.
291 291
              */
292
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-website" style="' . $field_icon . '">' . $field_icon_af . '<a href="' . $website . '" target="_blank" ' . $rel . ' ><strong>' . apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID) . '</strong></a></span></div>';
292
+            $html = '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'"><span class="geodir-i-website" style="'.$field_icon.'">'.$field_icon_af.'<a href="'.$website.'" target="_blank" '.$rel.' ><strong>'.apply_filters('geodir_custom_field_website_name', $title, $website, $post->ID).'</strong></a></span></div>';
293 293
 
294 294
         endif;
295 295
 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 
298 298
     return $html;
299 299
 }
300
-add_filter('geodir_custom_field_output_url','geodir_cf_url',10,3);
300
+add_filter('geodir_custom_field_output_url', 'geodir_cf_url', 10, 3);
301 301
 
302 302
 
303 303
 /**
@@ -310,21 +310,21 @@  discard block
 block discarded – undo
310 310
  *
311 311
  * @return string The html to output for the custom field.
312 312
  */
313
-function geodir_cf_phone($html,$location,$cf,$p=''){
313
+function geodir_cf_phone($html, $location, $cf, $p = '') {
314 314
 
315 315
     // check we have the post value
316
-    if(is_int($p)){$post = geodir_get_post_info($p);}
317
-    else{ global $post;}
316
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
317
+    else { global $post; }
318 318
 
319
-    if(!is_array($cf) && $cf!=''){
319
+    if (!is_array($cf) && $cf != '') {
320 320
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
321
-        if(!$cf){return NULL;}
321
+        if (!$cf) {return NULL; }
322 322
     }
323 323
 
324 324
     $html_var = $cf['htmlvar_name'];
325 325
 
326 326
     // Check if there is a location specific filter.
327
-    if(has_filter("geodir_custom_field_output_phone_loc_{$location}")){
327
+    if (has_filter("geodir_custom_field_output_phone_loc_{$location}")) {
328 328
         /**
329 329
          * Filter the phone html by location.
330 330
          *
@@ -332,11 +332,11 @@  discard block
 block discarded – undo
332 332
          * @param array $cf The custom field array.
333 333
          * @since 1.6.6
334 334
          */
335
-        $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}",$html,$cf);
335
+        $html = apply_filters("geodir_custom_field_output_phone_loc_{$location}", $html, $cf);
336 336
     }
337 337
 
338 338
     // Check if there is a custom field specific filter.
339
-    if(has_filter("geodir_custom_field_output_phone_var_{$html_var}")){
339
+    if (has_filter("geodir_custom_field_output_phone_var_{$html_var}")) {
340 340
         /**
341 341
          * Filter the phone html by individual custom field.
342 342
          *
@@ -345,11 +345,11 @@  discard block
 block discarded – undo
345 345
          * @param array $cf The custom field array.
346 346
          * @since 1.6.6
347 347
          */
348
-        $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}",$html,$location,$cf);
348
+        $html = apply_filters("geodir_custom_field_output_phone_var_{$html_var}", $html, $location, $cf);
349 349
     }
350 350
 
351 351
     // Check if there is a custom field key specific filter.
352
-    if(has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")){
352
+    if (has_filter("geodir_custom_field_output_phone_key_{$cf['field_type_key']}")) {
353 353
         /**
354 354
          * Filter the phone html by field type key.
355 355
          *
@@ -358,11 +358,11 @@  discard block
 block discarded – undo
358 358
          * @param array $cf The custom field array.
359 359
          * @since 1.6.6
360 360
          */
361
-        $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}",$html,$location,$cf);
361
+        $html = apply_filters("geodir_custom_field_output_phone_key_{$cf['field_type_key']}", $html, $location, $cf);
362 362
     }
363 363
 
364 364
     // If not html then we run the standard output.
365
-    if(empty($html)){
365
+    if (empty($html)) {
366 366
 
367 367
         if ($post->{$cf['htmlvar_name']}):
368 368
 
@@ -377,9 +377,9 @@  discard block
 block discarded – undo
377 377
             }
378 378
 
379 379
 
380
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-contact" style="' . $field_icon . '">' . $field_icon_af .
381
-                    $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '&nbsp;';
382
-            $html .= '</span><a href="tel:' . preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}) . '">' . $post->{$cf['htmlvar_name']} . '</a></div>';
380
+            $html = '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-contact" style="'.$field_icon.'">'.$field_icon_af.
381
+                    $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '&nbsp;';
382
+            $html .= '</span><a href="tel:'.preg_replace('/[^0-9+]/', '', $post->{$cf['htmlvar_name']}).'">'.$post->{$cf['htmlvar_name']}.'</a></div>';
383 383
 
384 384
         endif;
385 385
 
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 
388 388
     return $html;
389 389
 }
390
-add_filter('geodir_custom_field_output_phone','geodir_cf_phone',10,3);
390
+add_filter('geodir_custom_field_output_phone', 'geodir_cf_phone', 10, 3);
391 391
 
392 392
 
393 393
 /**
@@ -400,21 +400,21 @@  discard block
 block discarded – undo
400 400
  *
401 401
  * @return string The html to output for the custom field.
402 402
  */
403
-function geodir_cf_time($html,$location,$cf,$p=''){
403
+function geodir_cf_time($html, $location, $cf, $p = '') {
404 404
 
405 405
     // check we have the post value
406
-    if(is_int($p)){$post = geodir_get_post_info($p);}
407
-    else{ global $post;}
406
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
407
+    else { global $post; }
408 408
 
409
-    if(!is_array($cf) && $cf!=''){
409
+    if (!is_array($cf) && $cf != '') {
410 410
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
411
-        if(!$cf){return NULL;}
411
+        if (!$cf) {return NULL; }
412 412
     }
413 413
 
414 414
     $html_var = $cf['htmlvar_name'];
415 415
 
416 416
     // Check if there is a location specific filter.
417
-    if(has_filter("geodir_custom_field_output_time_loc_{$location}")){
417
+    if (has_filter("geodir_custom_field_output_time_loc_{$location}")) {
418 418
         /**
419 419
          * Filter the time html by location.
420 420
          *
@@ -422,11 +422,11 @@  discard block
 block discarded – undo
422 422
          * @param array $cf The custom field array.
423 423
          * @since 1.6.6
424 424
          */
425
-        $html = apply_filters("geodir_custom_field_output_time_loc_{$location}",$html,$cf);
425
+        $html = apply_filters("geodir_custom_field_output_time_loc_{$location}", $html, $cf);
426 426
     }
427 427
 
428 428
     // Check if there is a custom field specific filter.
429
-    if(has_filter("geodir_custom_field_output_time_var_{$html_var}")){
429
+    if (has_filter("geodir_custom_field_output_time_var_{$html_var}")) {
430 430
         /**
431 431
          * Filter the time html by individual custom field.
432 432
          *
@@ -435,11 +435,11 @@  discard block
 block discarded – undo
435 435
          * @param array $cf The custom field array.
436 436
          * @since 1.6.6
437 437
          */
438
-        $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}",$html,$location,$cf);
438
+        $html = apply_filters("geodir_custom_field_output_time_var_{$html_var}", $html, $location, $cf);
439 439
     }
440 440
 
441 441
     // Check if there is a custom field key specific filter.
442
-    if(has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")){
442
+    if (has_filter("geodir_custom_field_output_time_key_{$cf['field_type_key']}")) {
443 443
         /**
444 444
          * Filter the time html by field type key.
445 445
          *
@@ -448,11 +448,11 @@  discard block
 block discarded – undo
448 448
          * @param array $cf The custom field array.
449 449
          * @since 1.6.6
450 450
          */
451
-        $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}",$html,$location,$cf);
451
+        $html = apply_filters("geodir_custom_field_output_time_key_{$cf['field_type_key']}", $html, $location, $cf);
452 452
     }
453 453
 
454 454
     // If not html then we run the standard output.
455
-    if(empty($html)){
455
+    if (empty($html)) {
456 456
 
457 457
         if ($post->{$cf['htmlvar_name']}):
458 458
 
@@ -472,9 +472,9 @@  discard block
 block discarded – undo
472 472
             }
473 473
 
474 474
 
475
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-time" style="' . $field_icon . '">' . $field_icon_af;
476
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '&nbsp;';
477
-            $html .= '</span>' . $value . '</div>';
475
+            $html = '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-time" style="'.$field_icon.'">'.$field_icon_af;
476
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '&nbsp;';
477
+            $html .= '</span>'.$value.'</div>';
478 478
 
479 479
         endif;
480 480
 
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
 
483 483
     return $html;
484 484
 }
485
-add_filter('geodir_custom_field_output_time','geodir_cf_time',10,3);
485
+add_filter('geodir_custom_field_output_time', 'geodir_cf_time', 10, 3);
486 486
 
487 487
 
488 488
 /**
@@ -495,21 +495,21 @@  discard block
 block discarded – undo
495 495
  *
496 496
  * @return string The html to output for the custom field.
497 497
  */
498
-function geodir_cf_datepicker($html,$location,$cf,$p=''){
498
+function geodir_cf_datepicker($html, $location, $cf, $p = '') {
499 499
     global $preview;
500 500
     // check we have the post value
501
-    if(is_int($p)){$post = geodir_get_post_info($p);}
502
-    else{ global $post;}
501
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
502
+    else { global $post; }
503 503
 
504
-    if(!is_array($cf) && $cf!=''){
504
+    if (!is_array($cf) && $cf != '') {
505 505
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
506
-        if(!$cf){return NULL;}
506
+        if (!$cf) {return NULL; }
507 507
     }
508 508
 
509 509
     $html_var = $cf['htmlvar_name'];
510 510
 
511 511
     // Check if there is a location specific filter.
512
-    if(has_filter("geodir_custom_field_output_datepicker_loc_{$location}")){
512
+    if (has_filter("geodir_custom_field_output_datepicker_loc_{$location}")) {
513 513
         /**
514 514
          * Filter the datepicker html by location.
515 515
          *
@@ -517,11 +517,11 @@  discard block
 block discarded – undo
517 517
          * @param array $cf The custom field array.
518 518
          * @since 1.6.6
519 519
          */
520
-        $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}",$html,$cf);
520
+        $html = apply_filters("geodir_custom_field_output_datepicker_loc_{$location}", $html, $cf);
521 521
     }
522 522
 
523 523
     // Check if there is a custom field specific filter.
524
-    if(has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")){
524
+    if (has_filter("geodir_custom_field_output_datepicker_var_{$html_var}")) {
525 525
         /**
526 526
          * Filter the datepicker html by individual custom field.
527 527
          *
@@ -530,11 +530,11 @@  discard block
 block discarded – undo
530 530
          * @param array $cf The custom field array.
531 531
          * @since 1.6.6
532 532
          */
533
-        $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}",$html,$location,$cf);
533
+        $html = apply_filters("geodir_custom_field_output_datepicker_var_{$html_var}", $html, $location, $cf);
534 534
     }
535 535
 
536 536
     // Check if there is a custom field key specific filter.
537
-    if(has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")){
537
+    if (has_filter("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}")) {
538 538
         /**
539 539
          * Filter the datepicker html by field type key.
540 540
          *
@@ -543,11 +543,11 @@  discard block
 block discarded – undo
543 543
          * @param array $cf The custom field array.
544 544
          * @since 1.6.6
545 545
          */
546
-        $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}",$html,$location,$cf);
546
+        $html = apply_filters("geodir_custom_field_output_datepicker_key_{$cf['field_type_key']}", $html, $location, $cf);
547 547
     }
548 548
 
549 549
     // If not html then we run the standard output.
550
-    if(empty($html)){
550
+    if (empty($html)) {
551 551
 
552 552
         if ($post->{$cf['htmlvar_name']}):
553 553
 
@@ -558,24 +558,24 @@  discard block
 block discarded – undo
558 558
             }
559 559
             // check if we need to change the format or not
560 560
             $date_format_len = strlen(str_replace(' ', '', $date_format));
561
-            if($date_format_len>5){// if greater then 4 then it's the old style format.
561
+            if ($date_format_len > 5) {// if greater then 4 then it's the old style format.
562 562
 
563
-                $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
564
-                $replace = array('d','j','l','m','n','F','Y');//PHP date format
563
+                $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
564
+                $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
565 565
 
566 566
                 $date_format = str_replace($search, $replace, $date_format);
567 567
 
568
-                $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y' ) ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
569
-            }else{
568
+                $post_htmlvar_value = ($date_format == 'd/m/Y' || $date_format == 'j/n/Y') ? str_replace('/', '-', $post->{$cf['htmlvar_name']}) : $post->{$cf['htmlvar_name']}; // PHP doesn't work well with dd/mm/yyyy format
569
+            } else {
570 570
                 $post_htmlvar_value = $post->{$cf['htmlvar_name']};
571 571
             }
572 572
 
573
-            if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']}!="0000-00-00") {
573
+            if ($post->{$cf['htmlvar_name']} != '' && $post->{$cf['htmlvar_name']} != "0000-00-00") {
574 574
                 $date_format_from = $preview ? $date_format : 'Y-m-d';
575 575
                 $value = geodir_date($post_htmlvar_value, $date_format, $date_format_from); // save as sql format Y-m-d
576 576
                 //$post_htmlvar_value = strpos($post_htmlvar_value, '/') !== false ? str_replace('/', '-', $post_htmlvar_value) : $post_htmlvar_value;
577 577
                 //$value = date_i18n($date_format, strtotime($post_htmlvar_value));
578
-            }else{
578
+            } else {
579 579
                 return '';
580 580
             }
581 581
 
@@ -592,9 +592,9 @@  discard block
 block discarded – undo
592 592
 
593 593
 
594 594
 
595
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-datepicker" style="' . $field_icon . '">' . $field_icon_af;
596
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
597
-            $html .= '</span>' . $value . '</div>';
595
+            $html = '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-datepicker" style="'.$field_icon.'">'.$field_icon_af;
596
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
597
+            $html .= '</span>'.$value.'</div>';
598 598
 
599 599
         endif;
600 600
 
@@ -602,7 +602,7 @@  discard block
 block discarded – undo
602 602
 
603 603
     return $html;
604 604
 }
605
-add_filter('geodir_custom_field_output_datepicker','geodir_cf_datepicker',10,3);
605
+add_filter('geodir_custom_field_output_datepicker', 'geodir_cf_datepicker', 10, 3);
606 606
 
607 607
 
608 608
 /**
@@ -615,21 +615,21 @@  discard block
 block discarded – undo
615 615
  *
616 616
  * @return string The html to output for the custom field.
617 617
  */
618
-function geodir_cf_text($html,$location,$cf,$p=''){
618
+function geodir_cf_text($html, $location, $cf, $p = '') {
619 619
 
620 620
     // check we have the post value
621
-    if(is_int($p)){$post = geodir_get_post_info($p);}
622
-    else{ global $post;}
621
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
622
+    else { global $post; }
623 623
 
624
-    if(!is_array($cf) && $cf!=''){
624
+    if (!is_array($cf) && $cf != '') {
625 625
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
626
-        if(!$cf){return NULL;}
626
+        if (!$cf) {return NULL; }
627 627
     }
628 628
 
629 629
     $html_var = $cf['htmlvar_name'];
630 630
 
631 631
     // Check if there is a location specific filter.
632
-    if(has_filter("geodir_custom_field_output_text_loc_{$location}")){
632
+    if (has_filter("geodir_custom_field_output_text_loc_{$location}")) {
633 633
         /**
634 634
          * Filter the text html by location.
635 635
          *
@@ -637,11 +637,11 @@  discard block
 block discarded – undo
637 637
          * @param array $cf The custom field array.
638 638
          * @since 1.6.6
639 639
          */
640
-        $html = apply_filters("geodir_custom_field_output_text_loc_{$location}",$html,$cf);
640
+        $html = apply_filters("geodir_custom_field_output_text_loc_{$location}", $html, $cf);
641 641
     }
642 642
 
643 643
     // Check if there is a custom field specific filter.
644
-    if(has_filter("geodir_custom_field_output_text_var_{$html_var}")){
644
+    if (has_filter("geodir_custom_field_output_text_var_{$html_var}")) {
645 645
         /**
646 646
          * Filter the text html by individual custom field.
647 647
          *
@@ -650,11 +650,11 @@  discard block
 block discarded – undo
650 650
          * @param array $cf The custom field array.
651 651
          * @since 1.6.6
652 652
          */
653
-        $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}",$html,$location,$cf);
653
+        $html = apply_filters("geodir_custom_field_output_text_var_{$html_var}", $html, $location, $cf);
654 654
     }
655 655
 
656 656
     // Check if there is a custom field key specific filter.
657
-    if(has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")){
657
+    if (has_filter("geodir_custom_field_output_text_key_{$cf['field_type_key']}")) {
658 658
         /**
659 659
          * Filter the text html by field type key.
660 660
          *
@@ -663,15 +663,15 @@  discard block
 block discarded – undo
663 663
          * @param array $cf The custom field array.
664 664
          * @since 1.6.6
665 665
          */
666
-        $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}",$html,$location,$cf);
666
+        $html = apply_filters("geodir_custom_field_output_text_key_{$cf['field_type_key']}", $html, $location, $cf);
667 667
     }
668 668
 
669 669
     
670 670
 
671 671
     // If not html then we run the standard output.
672
-    if(empty($html)){
672
+    if (empty($html)) {
673 673
 
674
-        if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != '' ):
674
+        if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''):
675 675
 
676 676
             $class = ($cf['htmlvar_name'] == 'geodir_timing') ? "geodir-i-time" : "geodir-i-text";
677 677
 
@@ -686,15 +686,15 @@  discard block
 block discarded – undo
686 686
             }
687 687
 
688 688
 
689
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="'.$class.'" style="' . $field_icon . '">' . $field_icon_af;
690
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
689
+            $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="'.$class.'" style="'.$field_icon.'">'.$field_icon_af;
690
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
691 691
             $html .= '</span>';
692 692
 
693 693
             $value = $post->{$cf['htmlvar_name']};
694
-            if(isset($cf['data_type']) && ($cf['data_type']=='INT' || $cf['data_type']=='FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']){
694
+            if (isset($cf['data_type']) && ($cf['data_type'] == 'INT' || $cf['data_type'] == 'FLOAT') && isset($cf['extra_fields']) && $cf['extra_fields']) {
695 695
                 $extra_fields = maybe_unserialize($cf['extra_fields']);
696
-                if(isset($extra_fields['is_price']) && $extra_fields['is_price']){
697
-                    $value = geodir_currency_format_number($value,$cf);
696
+                if (isset($extra_fields['is_price']) && $extra_fields['is_price']) {
697
+                    $value = geodir_currency_format_number($value, $cf);
698 698
                 }
699 699
             }
700 700
 
@@ -708,7 +708,7 @@  discard block
 block discarded – undo
708 708
 
709 709
     return $html;
710 710
 }
711
-add_filter('geodir_custom_field_output_text','geodir_cf_text',10,3);
711
+add_filter('geodir_custom_field_output_text', 'geodir_cf_text', 10, 3);
712 712
 
713 713
 
714 714
 /**
@@ -721,21 +721,21 @@  discard block
 block discarded – undo
721 721
  *
722 722
  * @return string The html to output for the custom field.
723 723
  */
724
-function geodir_cf_radio($html,$location,$cf,$p=''){
724
+function geodir_cf_radio($html, $location, $cf, $p = '') {
725 725
 
726 726
     // check we have the post value
727
-    if(is_int($p)){$post = geodir_get_post_info($p);}
728
-    else{ global $post;}
727
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
728
+    else { global $post; }
729 729
 
730
-    if(!is_array($cf) && $cf!=''){
730
+    if (!is_array($cf) && $cf != '') {
731 731
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
732
-        if(!$cf){return NULL;}
732
+        if (!$cf) {return NULL; }
733 733
     }
734 734
 
735 735
     $html_var = $cf['htmlvar_name'];
736 736
 
737 737
     // Check if there is a location specific filter.
738
-    if(has_filter("geodir_custom_field_output_radio_loc_{$location}")){
738
+    if (has_filter("geodir_custom_field_output_radio_loc_{$location}")) {
739 739
         /**
740 740
          * Filter the radio html by location.
741 741
          *
@@ -743,11 +743,11 @@  discard block
 block discarded – undo
743 743
          * @param array $cf The custom field array.
744 744
          * @since 1.6.6
745 745
          */
746
-        $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}",$html,$cf);
746
+        $html = apply_filters("geodir_custom_field_output_radio_loc_{$location}", $html, $cf);
747 747
     }
748 748
 
749 749
     // Check if there is a custom field specific filter.
750
-    if(has_filter("geodir_custom_field_output_radio_var_{$html_var}")){
750
+    if (has_filter("geodir_custom_field_output_radio_var_{$html_var}")) {
751 751
         /**
752 752
          * Filter the radio html by individual custom field.
753 753
          *
@@ -756,11 +756,11 @@  discard block
 block discarded – undo
756 756
          * @param array $cf The custom field array.
757 757
          * @since 1.6.6
758 758
          */
759
-        $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}",$html,$location,$cf);
759
+        $html = apply_filters("geodir_custom_field_output_radio_var_{$html_var}", $html, $location, $cf);
760 760
     }
761 761
 
762 762
     // Check if there is a custom field key specific filter.
763
-    if(has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")){
763
+    if (has_filter("geodir_custom_field_output_radio_key_{$cf['field_type_key']}")) {
764 764
         /**
765 765
          * Filter the radio html by field type key.
766 766
          *
@@ -769,11 +769,11 @@  discard block
 block discarded – undo
769 769
          * @param array $cf The custom field array.
770 770
          * @since 1.6.6
771 771
          */
772
-        $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}",$html,$location,$cf);
772
+        $html = apply_filters("geodir_custom_field_output_radio_key_{$cf['field_type_key']}", $html, $location, $cf);
773 773
     }
774 774
 
775 775
     // If not html then we run the standard output.
776
-    if(empty($html)){
776
+    if (empty($html)) {
777 777
 
778 778
         $html_val = isset($post->{$cf['htmlvar_name']}) ? __($post->{$cf['htmlvar_name']}, 'geodirectory') : '';
779 779
         if (isset($post->{$cf['htmlvar_name']}) && $post->{$cf['htmlvar_name']} != ''):
@@ -807,16 +807,16 @@  discard block
 block discarded – undo
807 807
             }
808 808
 
809 809
 
810
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-radio" style="' . $field_icon . '">' . $field_icon_af;
811
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
812
-            $html .= '</span>' . $html_val . '</div>';
810
+            $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-radio" style="'.$field_icon.'">'.$field_icon_af;
811
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
812
+            $html .= '</span>'.$html_val.'</div>';
813 813
         endif;
814 814
 
815 815
     }
816 816
 
817 817
     return $html;
818 818
 }
819
-add_filter('geodir_custom_field_output_radio','geodir_cf_radio',10,3);
819
+add_filter('geodir_custom_field_output_radio', 'geodir_cf_radio', 10, 3);
820 820
 
821 821
 
822 822
 /**
@@ -829,21 +829,21 @@  discard block
 block discarded – undo
829 829
  *
830 830
  * @return string The html to output for the custom field.
831 831
  */
832
-function geodir_cf_select($html,$location,$cf,$p=''){
832
+function geodir_cf_select($html, $location, $cf, $p = '') {
833 833
 
834 834
     // check we have the post value
835
-    if(is_int($p)){$post = geodir_get_post_info($p);}
836
-    else{ global $post;}
835
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
836
+    else { global $post; }
837 837
 
838
-    if(!is_array($cf) && $cf!=''){
838
+    if (!is_array($cf) && $cf != '') {
839 839
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
840
-        if(!$cf){return NULL;}
840
+        if (!$cf) {return NULL; }
841 841
     }
842 842
 
843 843
     $html_var = $cf['htmlvar_name'];
844 844
 
845 845
     // Check if there is a location specific filter.
846
-    if(has_filter("geodir_custom_field_output_select_loc_{$location}")){
846
+    if (has_filter("geodir_custom_field_output_select_loc_{$location}")) {
847 847
         /**
848 848
          * Filter the select html by location.
849 849
          *
@@ -851,11 +851,11 @@  discard block
 block discarded – undo
851 851
          * @param array $cf The custom field array.
852 852
          * @since 1.6.6
853 853
          */
854
-        $html = apply_filters("geodir_custom_field_output_select_loc_{$location}",$html,$cf);
854
+        $html = apply_filters("geodir_custom_field_output_select_loc_{$location}", $html, $cf);
855 855
     }
856 856
 
857 857
     // Check if there is a custom field specific filter.
858
-    if(has_filter("geodir_custom_field_output_select_var_{$html_var}")){
858
+    if (has_filter("geodir_custom_field_output_select_var_{$html_var}")) {
859 859
         /**
860 860
          * Filter the select html by individual custom field.
861 861
          *
@@ -864,11 +864,11 @@  discard block
 block discarded – undo
864 864
          * @param array $cf The custom field array.
865 865
          * @since 1.6.6
866 866
          */
867
-        $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}",$html,$location,$cf);
867
+        $html = apply_filters("geodir_custom_field_output_select_var_{$html_var}", $html, $location, $cf);
868 868
     }
869 869
 
870 870
     // Check if there is a custom field key specific filter.
871
-    if(has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")){
871
+    if (has_filter("geodir_custom_field_output_select_key_{$cf['field_type_key']}")) {
872 872
         /**
873 873
          * Filter the select html by field type key.
874 874
          *
@@ -877,11 +877,11 @@  discard block
 block discarded – undo
877 877
          * @param array $cf The custom field array.
878 878
          * @since 1.6.6
879 879
          */
880
-        $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}",$html,$location,$cf);
880
+        $html = apply_filters("geodir_custom_field_output_select_key_{$cf['field_type_key']}", $html, $location, $cf);
881 881
     }
882 882
 
883 883
     // If not html then we run the standard output.
884
-    if(empty($html)){
884
+    if (empty($html)) {
885 885
 
886 886
         if ($post->{$cf['htmlvar_name']}):
887 887
             $field_value = __($post->{$cf['htmlvar_name']}, 'geodirectory');
@@ -909,16 +909,16 @@  discard block
 block discarded – undo
909 909
             }
910 910
 
911 911
 
912
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
913
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
914
-            $html .= '</span>' . $field_value . '</div>';
912
+            $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-select" style="'.$field_icon.'">'.$field_icon_af;
913
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
914
+            $html .= '</span>'.$field_value.'</div>';
915 915
         endif;
916 916
 
917 917
     }
918 918
 
919 919
     return $html;
920 920
 }
921
-add_filter('geodir_custom_field_output_select','geodir_cf_select',10,3);
921
+add_filter('geodir_custom_field_output_select', 'geodir_cf_select', 10, 3);
922 922
 
923 923
 
924 924
 /**
@@ -931,21 +931,21 @@  discard block
 block discarded – undo
931 931
  *
932 932
  * @return string The html to output for the custom field.
933 933
  */
934
-function geodir_cf_multiselect($html,$location,$cf,$p=''){
934
+function geodir_cf_multiselect($html, $location, $cf, $p = '') {
935 935
 
936 936
     // check we have the post value
937
-    if(is_int($p)){$post = geodir_get_post_info($p);}
938
-    else{ global $post;}
937
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
938
+    else { global $post; }
939 939
 
940
-    if(!is_array($cf) && $cf!=''){
940
+    if (!is_array($cf) && $cf != '') {
941 941
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
942
-        if(!$cf){return NULL;}
942
+        if (!$cf) {return NULL; }
943 943
     }
944 944
 
945 945
     $html_var = $cf['htmlvar_name'];
946 946
 
947 947
     // Check if there is a location specific filter.
948
-    if(has_filter("geodir_custom_field_output_multiselect_loc_{$location}")){
948
+    if (has_filter("geodir_custom_field_output_multiselect_loc_{$location}")) {
949 949
         /**
950 950
          * Filter the multiselect html by location.
951 951
          *
@@ -953,11 +953,11 @@  discard block
 block discarded – undo
953 953
          * @param array $cf The custom field array.
954 954
          * @since 1.6.6
955 955
          */
956
-        $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}",$html,$cf);
956
+        $html = apply_filters("geodir_custom_field_output_multiselect_loc_{$location}", $html, $cf);
957 957
     }
958 958
 
959 959
     // Check if there is a custom field specific filter.
960
-    if(has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")){
960
+    if (has_filter("geodir_custom_field_output_multiselect_var_{$html_var}")) {
961 961
         /**
962 962
          * Filter the multiselect html by individual custom field.
963 963
          *
@@ -966,11 +966,11 @@  discard block
 block discarded – undo
966 966
          * @param array $cf The custom field array.
967 967
          * @since 1.6.6
968 968
          */
969
-        $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}",$html,$location,$cf);
969
+        $html = apply_filters("geodir_custom_field_output_multiselect_var_{$html_var}", $html, $location, $cf);
970 970
     }
971 971
 
972 972
     // Check if there is a custom field key specific filter.
973
-    if(has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")){
973
+    if (has_filter("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}")) {
974 974
         /**
975 975
          * Filter the multiselect html by field type key.
976 976
          *
@@ -979,11 +979,11 @@  discard block
 block discarded – undo
979 979
          * @param array $cf The custom field array.
980 980
          * @since 1.6.6
981 981
          */
982
-        $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}",$html,$location,$cf);
982
+        $html = apply_filters("geodir_custom_field_output_multiselect_key_{$cf['field_type_key']}", $html, $location, $cf);
983 983
     }
984 984
 
985 985
     // If not html then we run the standard output.
986
-    if(empty($html)){
986
+    if (empty($html)) {
987 987
 
988 988
 
989 989
         if (!empty($post->{$cf['htmlvar_name']})):
@@ -1004,7 +1004,7 @@  discard block
 block discarded – undo
1004 1004
 
1005 1005
             $field_values = explode(',', trim($post->{$cf['htmlvar_name']}, ","));
1006 1006
 
1007
-            if(is_array($field_values)){
1007
+            if (is_array($field_values)) {
1008 1008
                 $field_values = array_map('trim', $field_values);
1009 1009
             }
1010 1010
 
@@ -1022,15 +1022,15 @@  discard block
 block discarded – undo
1022 1022
             }
1023 1023
 
1024 1024
 
1025
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
1026
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1025
+            $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-select" style="'.$field_icon.'">'.$field_icon_af;
1026
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
1027 1027
             $html .= '</span>';
1028 1028
 
1029 1029
             if (count($option_values) > 1) {
1030 1030
                 $html .= '<ul>';
1031 1031
 
1032 1032
                 foreach ($option_values as $val) {
1033
-                    $html .= '<li>' . $val . '</li>';
1033
+                    $html .= '<li>'.$val.'</li>';
1034 1034
                 }
1035 1035
 
1036 1036
                 $html .= '</ul>';
@@ -1045,7 +1045,7 @@  discard block
 block discarded – undo
1045 1045
 
1046 1046
     return $html;
1047 1047
 }
1048
-add_filter('geodir_custom_field_output_multiselect','geodir_cf_multiselect',10,3);
1048
+add_filter('geodir_custom_field_output_multiselect', 'geodir_cf_multiselect', 10, 3);
1049 1049
 
1050 1050
 
1051 1051
 /**
@@ -1058,21 +1058,21 @@  discard block
 block discarded – undo
1058 1058
  *
1059 1059
  * @return string The html to output for the custom field.
1060 1060
  */
1061
-function geodir_cf_email($html,$location,$cf,$p=''){
1061
+function geodir_cf_email($html, $location, $cf, $p = '') {
1062 1062
 
1063 1063
     // check we have the post value
1064
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1065
-    else{ global $post;}
1064
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
1065
+    else { global $post; }
1066 1066
 
1067
-    if(!is_array($cf) && $cf!=''){
1067
+    if (!is_array($cf) && $cf != '') {
1068 1068
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1069
-        if(!$cf){return NULL;}
1069
+        if (!$cf) {return NULL; }
1070 1070
     }
1071 1071
 
1072 1072
     $html_var = $cf['htmlvar_name'];
1073 1073
 
1074 1074
     // Check if there is a location specific filter.
1075
-    if(has_filter("geodir_custom_field_output_email_loc_{$location}")){
1075
+    if (has_filter("geodir_custom_field_output_email_loc_{$location}")) {
1076 1076
         /**
1077 1077
          * Filter the email html by location.
1078 1078
          *
@@ -1080,11 +1080,11 @@  discard block
 block discarded – undo
1080 1080
          * @param array $cf The custom field array.
1081 1081
          * @since 1.6.6
1082 1082
          */
1083
-        $html = apply_filters("geodir_custom_field_output_email_loc_{$location}",$html,$cf);
1083
+        $html = apply_filters("geodir_custom_field_output_email_loc_{$location}", $html, $cf);
1084 1084
     }
1085 1085
 
1086 1086
     // Check if there is a custom field specific filter.
1087
-    if(has_filter("geodir_custom_field_output_email_var_{$html_var}")){
1087
+    if (has_filter("geodir_custom_field_output_email_var_{$html_var}")) {
1088 1088
         /**
1089 1089
          * Filter the email html by individual custom field.
1090 1090
          *
@@ -1093,11 +1093,11 @@  discard block
 block discarded – undo
1093 1093
          * @param array $cf The custom field array.
1094 1094
          * @since 1.6.6
1095 1095
          */
1096
-        $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}",$html,$location,$cf);
1096
+        $html = apply_filters("geodir_custom_field_output_email_var_{$html_var}", $html, $location, $cf);
1097 1097
     }
1098 1098
 
1099 1099
     // Check if there is a custom field key specific filter.
1100
-    if(has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")){
1100
+    if (has_filter("geodir_custom_field_output_email_key_{$cf['field_type_key']}")) {
1101 1101
         /**
1102 1102
          * Filter the email html by field type key.
1103 1103
          *
@@ -1106,18 +1106,18 @@  discard block
 block discarded – undo
1106 1106
          * @param array $cf The custom field array.
1107 1107
          * @since 1.6.6
1108 1108
          */
1109
-        $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}",$html,$location,$cf);
1109
+        $html = apply_filters("geodir_custom_field_output_email_key_{$cf['field_type_key']}", $html, $location, $cf);
1110 1110
     }
1111 1111
 
1112 1112
     // If not html then we run the standard output.
1113
-    if(empty($html)){
1113
+    if (empty($html)) {
1114 1114
 
1115 1115
         global $preview;
1116 1116
         if ($cf['htmlvar_name'] == 'geodir_email' && !(geodir_is_page('detail') || geodir_is_page('preview'))) {
1117 1117
             return ''; // Remove Send Enquiry | Send To Friend from listings page
1118 1118
         }
1119 1119
 
1120
-        $package_info = (array)geodir_post_package_info(array(), $post, $post->post_type);
1120
+        $package_info = (array) geodir_post_package_info(array(), $post, $post->post_type);
1121 1121
 
1122 1122
         if ($cf['htmlvar_name'] == 'geodir_email' && ((isset($package_info['sendtofriend']) && $package_info['sendtofriend']) || $post->{$cf['htmlvar_name']})) {
1123 1123
             $send_to_friend = true;
@@ -1128,7 +1128,7 @@  discard block
 block discarded – undo
1128 1128
             if (!$preview) {
1129 1129
                 $b_send_inquiry = 'b_send_inquiry';
1130 1130
                 $b_sendtofriend = 'b_sendtofriend';
1131
-                $html = '<input type="hidden" name="geodir_popup_post_id" value="' . $post->ID . '" /><div class="geodir_display_popup_forms"></div>';
1131
+                $html = '<input type="hidden" name="geodir_popup_post_id" value="'.$post->ID.'" /><div class="geodir_display_popup_forms"></div>';
1132 1132
             }
1133 1133
 
1134 1134
             $field_icon = geodir_field_icon_proccess($cf);
@@ -1141,26 +1141,26 @@  discard block
 block discarded – undo
1141 1141
                 $field_icon = '';
1142 1142
             }
1143 1143
 
1144
-            $html .= '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
1144
+            $html .= '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'"><span class="geodir-i-email" style="'.$field_icon.'">'.$field_icon_af;
1145 1145
             $seperator = '';
1146 1146
             if ($post->{$cf['htmlvar_name']}) {
1147
-                $html .= '<a href="javascript:void(0);" class="' . $b_send_inquiry . '" >' . SEND_INQUIRY . '</a>';
1147
+                $html .= '<a href="javascript:void(0);" class="'.$b_send_inquiry.'" >'.SEND_INQUIRY.'</a>';
1148 1148
                 $seperator = ' | ';
1149 1149
             }
1150 1150
 
1151 1151
             if (isset($package_info['sendtofriend']) && $package_info['sendtofriend']) {
1152
-                $html .= $seperator . '<a href="javascript:void(0);" class="' . $b_sendtofriend . '">' . SEND_TO_FRIEND . '</a>';
1152
+                $html .= $seperator.'<a href="javascript:void(0);" class="'.$b_sendtofriend.'">'.SEND_TO_FRIEND.'</a>';
1153 1153
             }
1154 1154
 
1155 1155
             $html .= '</span></div>';
1156 1156
 
1157 1157
 
1158 1158
             if (isset($_REQUEST['send_inquiry']) && $_REQUEST['send_inquiry'] == 'success') {
1159
-                $html .= '<p class="sucess_msg">' . SEND_INQUIRY_SUCCESS . '</p>';
1159
+                $html .= '<p class="sucess_msg">'.SEND_INQUIRY_SUCCESS.'</p>';
1160 1160
             } elseif (isset($_REQUEST['sendtofrnd']) && $_REQUEST['sendtofrnd'] == 'success') {
1161
-                $html .= '<p class="sucess_msg">' . SEND_FRIEND_SUCCESS . '</p>';
1161
+                $html .= '<p class="sucess_msg">'.SEND_FRIEND_SUCCESS.'</p>';
1162 1162
             } elseif (isset($_REQUEST['emsg']) && $_REQUEST['emsg'] == 'captch') {
1163
-                $html .= '<p class="error_msg_fix">' . WRONG_CAPTCH_MSG . '</p>';
1163
+                $html .= '<p class="error_msg_fix">'.WRONG_CAPTCH_MSG.'</p>';
1164 1164
             }
1165 1165
 
1166 1166
             /*if(!$preview){require_once (geodir_plugin_path().'/geodirectory-templates/popup-forms.php');}*/
@@ -1180,11 +1180,11 @@  discard block
 block discarded – undo
1180 1180
                 }
1181 1181
 
1182 1182
 
1183
-                $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-email" style="' . $field_icon . '">' . $field_icon_af;
1184
-                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1183
+                $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-email" style="'.$field_icon.'">'.$field_icon_af;
1184
+                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
1185 1185
                 $html .= '</span><span class="geodir-email-address-output">';
1186 1186
                 $email = $post->{$cf['htmlvar_name']} ;
1187
-                if($e_split = explode('@',$email)){
1187
+                if ($e_split = explode('@', $email)) {
1188 1188
                     /**
1189 1189
                      * Filter email custom field name output.
1190 1190
                      *
@@ -1193,10 +1193,10 @@  discard block
 block discarded – undo
1193 1193
                      * @param string $email The email string being output.
1194 1194
                      * @param array $cf Custom field variables array.
1195 1195
                      */
1196
-                    $email_name = apply_filters('geodir_email_field_name_output',$email,$cf);
1197
-                    $html .=  "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>";
1198
-                }else{
1199
-                    $html .=  $email;
1196
+                    $email_name = apply_filters('geodir_email_field_name_output', $email, $cf);
1197
+                    $html .= "<script>document.write('<a href=\"mailto:'+'$e_split[0]' + '@' + '$e_split[1]'+'\">$email_name</a>')</script>";
1198
+                } else {
1199
+                    $html .= $email;
1200 1200
                 }
1201 1201
                 $html .= '</span></div>';
1202 1202
             }
@@ -1207,7 +1207,7 @@  discard block
 block discarded – undo
1207 1207
 
1208 1208
     return $html;
1209 1209
 }
1210
-add_filter('geodir_custom_field_output_email','geodir_cf_email',10,3);
1210
+add_filter('geodir_custom_field_output_email', 'geodir_cf_email', 10, 3);
1211 1211
 
1212 1212
 
1213 1213
 /**
@@ -1220,21 +1220,21 @@  discard block
 block discarded – undo
1220 1220
  *
1221 1221
  * @return string The html to output for the custom field.
1222 1222
  */
1223
-function geodir_cf_file($html,$location,$cf,$p=''){
1223
+function geodir_cf_file($html, $location, $cf, $p = '') {
1224 1224
 
1225 1225
     // check we have the post value
1226
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1227
-    else{ global $post;}
1226
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
1227
+    else { global $post; }
1228 1228
 
1229
-    if(!is_array($cf) && $cf!=''){
1229
+    if (!is_array($cf) && $cf != '') {
1230 1230
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1231
-        if(!$cf){return NULL;}
1231
+        if (!$cf) {return NULL; }
1232 1232
     }
1233 1233
 
1234 1234
     $html_var = $cf['htmlvar_name'];
1235 1235
 
1236 1236
     // Check if there is a location specific filter.
1237
-    if(has_filter("geodir_custom_field_output_file_loc_{$location}")){
1237
+    if (has_filter("geodir_custom_field_output_file_loc_{$location}")) {
1238 1238
         /**
1239 1239
          * Filter the file html by location.
1240 1240
          *
@@ -1242,11 +1242,11 @@  discard block
 block discarded – undo
1242 1242
          * @param array $cf The custom field array.
1243 1243
          * @since 1.6.6
1244 1244
          */
1245
-        $html = apply_filters("geodir_custom_field_output_file_loc_{$location}",$html,$cf);
1245
+        $html = apply_filters("geodir_custom_field_output_file_loc_{$location}", $html, $cf);
1246 1246
     }
1247 1247
 
1248 1248
     // Check if there is a custom field specific filter.
1249
-    if(has_filter("geodir_custom_field_output_file_var_{$html_var}")){
1249
+    if (has_filter("geodir_custom_field_output_file_var_{$html_var}")) {
1250 1250
         /**
1251 1251
          * Filter the file html by individual custom field.
1252 1252
          *
@@ -1255,11 +1255,11 @@  discard block
 block discarded – undo
1255 1255
          * @param array $cf The custom field array.
1256 1256
          * @since 1.6.6
1257 1257
          */
1258
-        $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}",$html,$location,$cf);
1258
+        $html = apply_filters("geodir_custom_field_output_file_var_{$html_var}", $html, $location, $cf);
1259 1259
     }
1260 1260
 
1261 1261
     // Check if there is a custom field key specific filter.
1262
-    if(has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")){
1262
+    if (has_filter("geodir_custom_field_output_file_key_{$cf['field_type_key']}")) {
1263 1263
         /**
1264 1264
          * Filter the file html by field type key.
1265 1265
          *
@@ -1268,11 +1268,11 @@  discard block
 block discarded – undo
1268 1268
          * @param array $cf The custom field array.
1269 1269
          * @since 1.6.6
1270 1270
          */
1271
-        $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}",$html,$location,$cf);
1271
+        $html = apply_filters("geodir_custom_field_output_file_key_{$cf['field_type_key']}", $html, $location, $cf);
1272 1272
     }
1273 1273
 
1274 1274
     // If not html then we run the standard output.
1275
-    if(empty($html)){
1275
+    if (empty($html)) {
1276 1276
 
1277 1277
         if (!empty($post->{$cf['htmlvar_name']})):
1278 1278
 
@@ -1280,7 +1280,7 @@  discard block
 block discarded – undo
1280 1280
             if (!empty($files)):
1281 1281
 
1282 1282
                 $extra_fields = !empty($cf['extra_fields']) ? maybe_unserialize($cf['extra_fields']) : NULL;
1283
-                $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'] : '';
1283
+                $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'] : '';
1284 1284
 
1285 1285
                 $file_paths = '';
1286 1286
                 foreach ($files as $file) {
@@ -1317,9 +1317,9 @@  discard block
 block discarded – undo
1317 1317
                             //$file_paths .= '<img src="'.$file.'"  />';	
1318 1318
                             $file_paths .= '</div>';
1319 1319
                         } else {
1320
-                            $ext_path = '_' . $html_var . '_';
1320
+                            $ext_path = '_'.$html_var.'_';
1321 1321
                             $filename = explode($ext_path, $filename);
1322
-                            $file_paths .= '<a href="' . $file . '" target="_blank">' . $filename[count($filename) - 1] . '</a>';
1322
+                            $file_paths .= '<a href="'.$file.'" target="_blank">'.$filename[count($filename) - 1].'</a>';
1323 1323
                         }
1324 1324
                     }
1325 1325
                 }
@@ -1334,11 +1334,11 @@  discard block
 block discarded – undo
1334 1334
                     $field_icon = '';
1335 1335
                 }
1336 1336
 
1337
-                $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' geodir-custom-file-box ' . $cf['htmlvar_name'] . '"><div class="geodir-i-select" style="' . $field_icon . '">' . $field_icon_af;
1337
+                $html = '<div class="geodir_more_info  '.$cf['css_class'].' geodir-custom-file-box '.$cf['htmlvar_name'].'"><div class="geodir-i-select" style="'.$field_icon.'">'.$field_icon_af;
1338 1338
                 $html .= '<span style="display: inline-block; vertical-align: top; padding-right: 14px;">';
1339
-                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1339
+                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
1340 1340
                 $html .= '</span>';
1341
-                $html .= $file_paths . '</div></div>';
1341
+                $html .= $file_paths.'</div></div>';
1342 1342
 
1343 1343
             endif;
1344 1344
         endif;
@@ -1347,7 +1347,7 @@  discard block
 block discarded – undo
1347 1347
 
1348 1348
     return $html;
1349 1349
 }
1350
-add_filter('geodir_custom_field_output_file','geodir_cf_file',10,3);
1350
+add_filter('geodir_custom_field_output_file', 'geodir_cf_file', 10, 3);
1351 1351
 
1352 1352
 
1353 1353
 
@@ -1361,21 +1361,21 @@  discard block
 block discarded – undo
1361 1361
  *
1362 1362
  * @return string The html to output for the custom field.
1363 1363
  */
1364
-function geodir_cf_textarea($html,$location,$cf,$p=''){
1364
+function geodir_cf_textarea($html, $location, $cf, $p = '') {
1365 1365
 
1366 1366
     // check we have the post value
1367
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1368
-    else{ global $post;}
1367
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
1368
+    else { global $post; }
1369 1369
 
1370
-    if(!is_array($cf) && $cf!=''){
1370
+    if (!is_array($cf) && $cf != '') {
1371 1371
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1372
-        if(!$cf){return NULL;}
1372
+        if (!$cf) {return NULL; }
1373 1373
     }
1374 1374
 
1375 1375
     $html_var = $cf['htmlvar_name'];
1376 1376
 
1377 1377
     // Check if there is a location specific filter.
1378
-    if(has_filter("geodir_custom_field_output_textarea_loc_{$location}")){
1378
+    if (has_filter("geodir_custom_field_output_textarea_loc_{$location}")) {
1379 1379
         /**
1380 1380
          * Filter the textarea html by location.
1381 1381
          *
@@ -1383,11 +1383,11 @@  discard block
 block discarded – undo
1383 1383
          * @param array $cf The custom field array.
1384 1384
          * @since 1.6.6
1385 1385
          */
1386
-        $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}",$html,$cf);
1386
+        $html = apply_filters("geodir_custom_field_output_textarea_loc_{$location}", $html, $cf);
1387 1387
     }
1388 1388
 
1389 1389
     // Check if there is a custom field specific filter.
1390
-    if(has_filter("geodir_custom_field_output_textarea_var_{$html_var}")){
1390
+    if (has_filter("geodir_custom_field_output_textarea_var_{$html_var}")) {
1391 1391
         /**
1392 1392
          * Filter the textarea html by individual custom field.
1393 1393
          *
@@ -1396,11 +1396,11 @@  discard block
 block discarded – undo
1396 1396
          * @param array $cf The custom field array.
1397 1397
          * @since 1.6.6
1398 1398
          */
1399
-        $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}",$html,$location,$cf);
1399
+        $html = apply_filters("geodir_custom_field_output_textarea_var_{$html_var}", $html, $location, $cf);
1400 1400
     }
1401 1401
 
1402 1402
     // Check if there is a custom field key specific filter.
1403
-    if(has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")){
1403
+    if (has_filter("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}")) {
1404 1404
         /**
1405 1405
          * Filter the textarea html by field type key.
1406 1406
          *
@@ -1409,11 +1409,11 @@  discard block
 block discarded – undo
1409 1409
          * @param array $cf The custom field array.
1410 1410
          * @since 1.6.6
1411 1411
          */
1412
-        $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}",$html,$location,$cf);
1412
+        $html = apply_filters("geodir_custom_field_output_textarea_key_{$cf['field_type_key']}", $html, $location, $cf);
1413 1413
     }
1414 1414
 
1415 1415
     // If not html then we run the standard output.
1416
-    if(empty($html)){
1416
+    if (empty($html)) {
1417 1417
 
1418 1418
         if (!empty($post->{$cf['htmlvar_name']})) {
1419 1419
 
@@ -1428,9 +1428,9 @@  discard block
 block discarded – undo
1428 1428
             }
1429 1429
 
1430 1430
 
1431
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
1432
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1433
-            $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>';
1431
+            $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-text" style="'.$field_icon.'">'.$field_icon_af;
1432
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
1433
+            $html .= '</span>'.wpautop($post->{$cf['htmlvar_name']}).'</div>';
1434 1434
 
1435 1435
         }
1436 1436
 
@@ -1438,7 +1438,7 @@  discard block
 block discarded – undo
1438 1438
 
1439 1439
     return $html;
1440 1440
 }
1441
-add_filter('geodir_custom_field_output_textarea','geodir_cf_textarea',10,3);
1441
+add_filter('geodir_custom_field_output_textarea', 'geodir_cf_textarea', 10, 3);
1442 1442
 
1443 1443
 
1444 1444
 
@@ -1452,21 +1452,21 @@  discard block
 block discarded – undo
1452 1452
  *
1453 1453
  * @return string The html to output for the custom field.
1454 1454
  */
1455
-function geodir_cf_html($html,$location,$cf,$p=''){
1455
+function geodir_cf_html($html, $location, $cf, $p = '') {
1456 1456
 
1457 1457
     // check we have the post value
1458
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1459
-    else{ global $post;}
1458
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
1459
+    else { global $post; }
1460 1460
 
1461
-    if(!is_array($cf) && $cf!=''){
1461
+    if (!is_array($cf) && $cf != '') {
1462 1462
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1463
-        if(!$cf){return NULL;}
1463
+        if (!$cf) {return NULL; }
1464 1464
     }
1465 1465
 
1466 1466
     $html_var = $cf['htmlvar_name'];
1467 1467
 
1468 1468
     // Check if there is a location specific filter.
1469
-    if(has_filter("geodir_custom_field_output_html_loc_{$location}")){
1469
+    if (has_filter("geodir_custom_field_output_html_loc_{$location}")) {
1470 1470
         /**
1471 1471
          * Filter the html html by location.
1472 1472
          *
@@ -1474,11 +1474,11 @@  discard block
 block discarded – undo
1474 1474
          * @param array $cf The custom field array.
1475 1475
          * @since 1.6.6
1476 1476
          */
1477
-        $html = apply_filters("geodir_custom_field_output_html_loc_{$location}",$html,$cf);
1477
+        $html = apply_filters("geodir_custom_field_output_html_loc_{$location}", $html, $cf);
1478 1478
     }
1479 1479
 
1480 1480
     // Check if there is a custom field specific filter.
1481
-    if(has_filter("geodir_custom_field_output_html_var_{$html_var}")){
1481
+    if (has_filter("geodir_custom_field_output_html_var_{$html_var}")) {
1482 1482
         /**
1483 1483
          * Filter the html html by individual custom field.
1484 1484
          *
@@ -1487,11 +1487,11 @@  discard block
 block discarded – undo
1487 1487
          * @param array $cf The custom field array.
1488 1488
          * @since 1.6.6
1489 1489
          */
1490
-        $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}",$html,$location,$cf);
1490
+        $html = apply_filters("geodir_custom_field_output_html_var_{$html_var}", $html, $location, $cf);
1491 1491
     }
1492 1492
 
1493 1493
     // Check if there is a custom field key specific filter.
1494
-    if(has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")){
1494
+    if (has_filter("geodir_custom_field_output_html_key_{$cf['field_type_key']}")) {
1495 1495
         /**
1496 1496
          * Filter the html html by field type key.
1497 1497
          *
@@ -1500,11 +1500,11 @@  discard block
 block discarded – undo
1500 1500
          * @param array $cf The custom field array.
1501 1501
          * @since 1.6.6
1502 1502
          */
1503
-        $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}",$html,$location,$cf);
1503
+        $html = apply_filters("geodir_custom_field_output_html_key_{$cf['field_type_key']}", $html, $location, $cf);
1504 1504
     }
1505 1505
 
1506 1506
     // If not html then we run the standard output.
1507
-    if(empty($html)){
1507
+    if (empty($html)) {
1508 1508
 
1509 1509
         if (!empty($post->{$cf['htmlvar_name']})) {
1510 1510
 
@@ -1518,9 +1518,9 @@  discard block
 block discarded – undo
1518 1518
                 $field_icon = '';
1519 1519
             }
1520 1520
 
1521
-            $html = '<div class="geodir_more_info  ' . $cf['css_class'] . ' ' . $cf['htmlvar_name'] . '" style="clear:both;"><span class="geodir-i-text" style="' . $field_icon . '">' . $field_icon_af;
1522
-            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1523
-            $html .= '</span>' . wpautop($post->{$cf['htmlvar_name']}) . '</div>';
1521
+            $html = '<div class="geodir_more_info  '.$cf['css_class'].' '.$cf['htmlvar_name'].'" style="clear:both;"><span class="geodir-i-text" style="'.$field_icon.'">'.$field_icon_af;
1522
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
1523
+            $html .= '</span>'.wpautop($post->{$cf['htmlvar_name']}).'</div>';
1524 1524
 
1525 1525
         }
1526 1526
 
@@ -1528,7 +1528,7 @@  discard block
 block discarded – undo
1528 1528
 
1529 1529
     return $html;
1530 1530
 }
1531
-add_filter('geodir_custom_field_output_html','geodir_cf_html',10,3);
1531
+add_filter('geodir_custom_field_output_html', 'geodir_cf_html', 10, 3);
1532 1532
 
1533 1533
 
1534 1534
 
@@ -1542,21 +1542,21 @@  discard block
 block discarded – undo
1542 1542
  *
1543 1543
  * @return string The html to output for the custom field.
1544 1544
  */
1545
-function geodir_cf_taxonomy($html,$location,$cf,$p=''){
1545
+function geodir_cf_taxonomy($html, $location, $cf, $p = '') {
1546 1546
 
1547 1547
     // check we have the post value
1548
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1549
-    else{ global $post;}
1548
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
1549
+    else { global $post; }
1550 1550
 
1551
-    if(!is_array($cf) && $cf!=''){
1551
+    if (!is_array($cf) && $cf != '') {
1552 1552
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1553
-        if(!$cf){return NULL;}
1553
+        if (!$cf) {return NULL; }
1554 1554
     }
1555 1555
 
1556 1556
     $html_var = $cf['htmlvar_name'];
1557 1557
 
1558 1558
     // Check if there is a location specific filter.
1559
-    if(has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")){
1559
+    if (has_filter("geodir_custom_field_output_taxonomy_loc_{$location}")) {
1560 1560
         /**
1561 1561
          * Filter the taxonomy html by location.
1562 1562
          *
@@ -1564,11 +1564,11 @@  discard block
 block discarded – undo
1564 1564
          * @param array $cf The custom field array.
1565 1565
          * @since 1.6.6
1566 1566
          */
1567
-        $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}",$html,$cf);
1567
+        $html = apply_filters("geodir_custom_field_output_taxonomy_loc_{$location}", $html, $cf);
1568 1568
     }
1569 1569
 
1570 1570
     // Check if there is a custom field specific filter.
1571
-    if(has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")){
1571
+    if (has_filter("geodir_custom_field_output_taxonomy_var_{$html_var}")) {
1572 1572
         /**
1573 1573
          * Filter the taxonomy html by individual custom field.
1574 1574
          *
@@ -1577,11 +1577,11 @@  discard block
 block discarded – undo
1577 1577
          * @param array $cf The custom field array.
1578 1578
          * @since 1.6.6
1579 1579
          */
1580
-        $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}",$html,$location,$cf);
1580
+        $html = apply_filters("geodir_custom_field_output_taxonomy_var_{$html_var}", $html, $location, $cf);
1581 1581
     }
1582 1582
 
1583 1583
     // Check if there is a custom field key specific filter.
1584
-    if(has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")){
1584
+    if (has_filter("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}")) {
1585 1585
         /**
1586 1586
          * Filter the taxonomy html by field type key.
1587 1587
          *
@@ -1590,14 +1590,14 @@  discard block
 block discarded – undo
1590 1590
          * @param array $cf The custom field array.
1591 1591
          * @since 1.6.6
1592 1592
          */
1593
-        $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}",$html,$location,$cf);
1593
+        $html = apply_filters("geodir_custom_field_output_taxonomy_key_{$cf['field_type_key']}", $html, $location, $cf);
1594 1594
     }
1595 1595
 
1596 1596
     // If not html then we run the standard output.
1597
-    if(empty($html)){
1597
+    if (empty($html)) {
1598 1598
 
1599
-        if ($html_var == $post->post_type . 'category' && !empty($post->{$html_var})) {
1600
-            $post_taxonomy = $post->post_type . 'category';
1599
+        if ($html_var == $post->post_type.'category' && !empty($post->{$html_var})) {
1600
+            $post_taxonomy = $post->post_type.'category';
1601 1601
             $field_value = $post->{$html_var};
1602 1602
             $links = array();
1603 1603
             $terms = array();
@@ -1615,7 +1615,7 @@  discard block
 block discarded – undo
1615 1615
                     if ($term != '') {
1616 1616
                         $term = get_term_by('id', $term, $html_var);
1617 1617
                         if (is_object($term)) {
1618
-                            $links[] = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>" . $term->name . "</a>";
1618
+                            $links[] = "<a href='".esc_attr(get_term_link($term, $post_taxonomy))."'>".$term->name."</a>";
1619 1619
                             $terms[] = $term;
1620 1620
                         }
1621 1621
                     }
@@ -1629,7 +1629,7 @@  discard block
 block discarded – undo
1629 1629
                     $terms = $termsOrdered;
1630 1630
                 }
1631 1631
             }
1632
-            $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object)$terms) : '';
1632
+            $html_value = !empty($links) && !empty($terms) ? wp_sprintf('%l', $links, (object) $terms) : '';
1633 1633
 
1634 1634
             if ($html_value != '') {
1635 1635
                 $field_icon = geodir_field_icon_proccess($cf);
@@ -1642,9 +1642,9 @@  discard block
 block discarded – undo
1642 1642
                     $field_icon = '';
1643 1643
                 }
1644 1644
 
1645
-                $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="' . $field_icon . '">' . $field_icon_af;
1646
-                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory') . ': ' : '';
1647
-                $html .= '</span> ' . $html_value . '</div>';
1645
+                $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$html_var.'" style="clear:both;"><span class="geodir-i-taxonomy geodir-i-category" style="'.$field_icon.'">'.$field_icon_af;
1646
+                $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '';
1647
+                $html .= '</span> '.$html_value.'</div>';
1648 1648
             }
1649 1649
         }
1650 1650
 
@@ -1652,7 +1652,7 @@  discard block
 block discarded – undo
1652 1652
 
1653 1653
     return $html;
1654 1654
 }
1655
-add_filter('geodir_custom_field_output_taxonomy','geodir_cf_taxonomy',10,3);
1655
+add_filter('geodir_custom_field_output_taxonomy', 'geodir_cf_taxonomy', 10, 3);
1656 1656
 
1657 1657
 
1658 1658
 /**
@@ -1665,21 +1665,21 @@  discard block
 block discarded – undo
1665 1665
  *
1666 1666
  * @return string The html to output for the custom field.
1667 1667
  */
1668
-function geodir_cf_address($html,$location,$cf,$p=''){
1668
+function geodir_cf_address($html, $location, $cf, $p = '') {
1669 1669
 
1670 1670
     // check we have the post value
1671
-    if(is_int($p)){$post = geodir_get_post_info($p);}
1672
-    else{ global $post;}
1671
+    if (is_int($p)) {$post = geodir_get_post_info($p); }
1672
+    else { global $post; }
1673 1673
 
1674
-    if(!is_array($cf) && $cf!=''){
1674
+    if (!is_array($cf) && $cf != '') {
1675 1675
         $cf = geodir_get_field_infoby('htmlvar_name', $cf, $post->post_type);
1676
-        if(!$cf){return NULL;}
1676
+        if (!$cf) {return NULL; }
1677 1677
     }
1678 1678
 
1679 1679
     $html_var = $cf['htmlvar_name'];
1680 1680
 
1681 1681
     // Check if there is a location specific filter.
1682
-    if(has_filter("geodir_custom_field_output_address_loc_{$location}")){
1682
+    if (has_filter("geodir_custom_field_output_address_loc_{$location}")) {
1683 1683
         /**
1684 1684
          * Filter the address html by location.
1685 1685
          *
@@ -1687,11 +1687,11 @@  discard block
 block discarded – undo
1687 1687
          * @param array $cf The custom field array.
1688 1688
          * @since 1.6.6
1689 1689
          */
1690
-        $html = apply_filters("geodir_custom_field_output_address_loc_{$location}",$html,$cf);
1690
+        $html = apply_filters("geodir_custom_field_output_address_loc_{$location}", $html, $cf);
1691 1691
     }
1692 1692
 
1693 1693
     // Check if there is a custom field specific filter.
1694
-    if(has_filter("geodir_custom_field_output_address_var_{$html_var}")){
1694
+    if (has_filter("geodir_custom_field_output_address_var_{$html_var}")) {
1695 1695
         /**
1696 1696
          * Filter the address html by individual custom field.
1697 1697
          *
@@ -1700,11 +1700,11 @@  discard block
 block discarded – undo
1700 1700
          * @param array $cf The custom field array.
1701 1701
          * @since 1.6.6
1702 1702
          */
1703
-        $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}",$html,$location,$cf);
1703
+        $html = apply_filters("geodir_custom_field_output_address_var_{$html_var}", $html, $location, $cf);
1704 1704
     }
1705 1705
 
1706 1706
     // Check if there is a custom field key specific filter.
1707
-    if(has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")){
1707
+    if (has_filter("geodir_custom_field_output_address_key_{$cf['field_type_key']}")) {
1708 1708
         /**
1709 1709
          * Filter the address html by field type key.
1710 1710
          *
@@ -1713,14 +1713,14 @@  discard block
 block discarded – undo
1713 1713
          * @param array $cf The custom field array.
1714 1714
          * @since 1.6.6
1715 1715
          */
1716
-        $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}",$html,$location,$cf);
1716
+        $html = apply_filters("geodir_custom_field_output_address_key_{$cf['field_type_key']}", $html, $location, $cf);
1717 1717
     }
1718 1718
 
1719 1719
     // If not html then we run the standard output.
1720
-    if(empty($html)){
1720
+    if (empty($html)) {
1721 1721
 
1722 1722
         global $preview;
1723
-        $html_var = $cf['htmlvar_name'] . '_address';
1723
+        $html_var = $cf['htmlvar_name'].'_address';
1724 1724
 
1725 1725
         if ($cf['extra_fields']) {
1726 1726
 
@@ -1783,10 +1783,10 @@  discard block
 block discarded – undo
1783 1783
 
1784 1784
         if ($post->{$html_var}) {
1785 1785
 
1786
-            $field_icon = geodir_field_icon_proccess( $cf );
1787
-            if ( strpos( $field_icon, 'http' ) !== false ) {
1786
+            $field_icon = geodir_field_icon_proccess($cf);
1787
+            if (strpos($field_icon, 'http') !== false) {
1788 1788
                 $field_icon_af = '';
1789
-            } elseif ( $field_icon == '' ) {
1789
+            } elseif ($field_icon == '') {
1790 1790
                 $field_icon_af = '<i class="fa fa-home"></i>';
1791 1791
             } else {
1792 1792
                 $field_icon_af = $field_icon;
@@ -1795,25 +1795,25 @@  discard block
 block discarded – undo
1795 1795
             
1796 1796
 
1797 1797
 
1798
-            $html = '<div class="geodir_more_info ' . $cf['css_class'] . ' ' . $html_var . '" style="clear:both;"  itemscope itemtype="http://schema.org/PostalAddress">';
1799
-            $html .= '<span class="geodir-i-location" style="' . $field_icon . '">' . $field_icon_af;
1800
-            $html .= ( trim( $cf['site_title'] ) ) ? __( $cf['site_title'], 'geodirectory' ) . ': ' : '&nbsp;';
1798
+            $html = '<div class="geodir_more_info '.$cf['css_class'].' '.$html_var.'" style="clear:both;"  itemscope itemtype="http://schema.org/PostalAddress">';
1799
+            $html .= '<span class="geodir-i-location" style="'.$field_icon.'">'.$field_icon_af;
1800
+            $html .= (trim($cf['site_title'])) ? __($cf['site_title'], 'geodirectory').': ' : '&nbsp;';
1801 1801
             $html .= '</span>';
1802 1802
 
1803
-            if ( isset($post->post_address) ) {
1804
-                $html .= '<span itemprop="streetAddress">' . $post->post_address . '</span><br>';
1803
+            if (isset($post->post_address)) {
1804
+                $html .= '<span itemprop="streetAddress">'.$post->post_address.'</span><br>';
1805 1805
             }
1806
-            if ($show_city_in_address && isset( $post->post_city ) && $post->post_city ) {
1807
-                $html .= '<span itemprop="addressLocality">' . $post->post_city . '</span><br>';
1806
+            if ($show_city_in_address && isset($post->post_city) && $post->post_city) {
1807
+                $html .= '<span itemprop="addressLocality">'.$post->post_city.'</span><br>';
1808 1808
             }
1809
-            if ($show_region_in_address && isset( $post->post_region ) && $post->post_region ) {
1810
-                $html .= '<span itemprop="addressRegion">' . $post->post_region . '</span><br>';
1809
+            if ($show_region_in_address && isset($post->post_region) && $post->post_region) {
1810
+                $html .= '<span itemprop="addressRegion">'.$post->post_region.'</span><br>';
1811 1811
             }
1812
-            if ($show_zip_in_address && isset( $post->post_zip ) && $post->post_zip ) {
1813
-                $html .= '<span itemprop="postalCode">' . $post->post_zip . '</span><br>';
1812
+            if ($show_zip_in_address && isset($post->post_zip) && $post->post_zip) {
1813
+                $html .= '<span itemprop="postalCode">'.$post->post_zip.'</span><br>';
1814 1814
             }
1815
-            if ($show_country_in_address && isset( $post->post_country ) && $post->post_country ) {
1816
-                $html .= '<span itemprop="addressCountry">' . __( $post->post_country, 'geodirectory' ) . '</span><br>';
1815
+            if ($show_country_in_address && isset($post->post_country) && $post->post_country) {
1816
+                $html .= '<span itemprop="addressCountry">'.__($post->post_country, 'geodirectory').'</span><br>';
1817 1817
             }
1818 1818
             $html .= '</div>';
1819 1819
 
@@ -1824,4 +1824,4 @@  discard block
 block discarded – undo
1824 1824
 
1825 1825
     return $html;
1826 1826
 }
1827
-add_filter('geodir_custom_field_output_address','geodir_cf_address',10,3);
1828 1827
\ No newline at end of file
1828
+add_filter('geodir_custom_field_output_address', 'geodir_cf_address', 10, 3);
1829 1829
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/custom_fields_input_functions.php 3 patches
Braces   +191 added lines, -68 removed lines patch added patch discarded remove patch
@@ -86,26 +86,31 @@  discard block
 block discarded – undo
86 86
         $value = geodir_get_cf_value($cf);
87 87
         $type = $cf['type'];
88 88
         //number and float validation $validation_pattern
89
-        if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';}
90
-        elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';}
89
+        if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';} elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';}
91 90
 
92 91
         //validation
93 92
         if(isset($cf['validation_pattern']) && $cf['validation_pattern']){
94 93
             $validation = 'pattern="'.$cf['validation_pattern'].'"';
95
-        }else{$validation='';}
94
+        } else{$validation='';}
96 95
 
97 96
         // validation message
98 97
         if(isset($cf['validation_msg']) && $cf['validation_msg']){
99 98
             $validation_msg = 'title="'.$cf['validation_msg'].'"';
100
-        }else{$validation_msg='';}
99
+        } else{$validation_msg='';}
101 100
         ?>
102 101
 
103 102
         <div id="<?php echo $cf['name'];?>_row"
104
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
103
+             class="<?php if ($cf['is_required']) {
104
+	echo 'required_field';
105
+}
106
+?> geodir_form_row clearfix gd-fieldset-details">
105 107
             <label>
106 108
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
107 109
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
108
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
110
+                <?php if ($cf['is_required']) {
111
+	echo '<span>*</span>';
112
+}
113
+?>
109 114
             </label>
110 115
             <input field_type="<?php echo $type;?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
111 116
                    value="<?php echo esc_attr(stripslashes($value));?>" type="<?php echo $type;?>" class="geodir_textfield" <?php echo $validation;echo $validation_msg;?> />
@@ -160,11 +165,17 @@  discard block
 block discarded – undo
160 165
         }?>
161 166
 
162 167
         <div id="<?php echo $cf['name'];?>_row"
163
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
168
+             class="<?php if ($cf['is_required']) {
169
+	echo 'required_field';
170
+}
171
+?> geodir_form_row clearfix gd-fieldset-details">
164 172
             <label>
165 173
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
166 174
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
167
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
175
+                <?php if ($cf['is_required']) {
176
+	echo '<span>*</span>';
177
+}
178
+?>
168 179
             </label>
169 180
             <input field_type="<?php echo $cf['type'];?>" name="<?php  $cf['name'];?>" id="<?php echo $cf['name'];?>"
170 181
                    value="<?php echo esc_attr(stripslashes($value));?>" type="email" class="geodir_textfield"/>
@@ -220,11 +231,17 @@  discard block
 block discarded – undo
220 231
         }?>
221 232
 
222 233
         <div id="<?php echo $cf['name'];?>_row"
223
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
234
+             class="<?php if ($cf['is_required']) {
235
+	echo 'required_field';
236
+}
237
+?> geodir_form_row clearfix gd-fieldset-details">
224 238
             <label>
225 239
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
226 240
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
227
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
241
+                <?php if ($cf['is_required']) {
242
+	echo '<span>*</span>';
243
+}
244
+?>
228 245
             </label>
229 246
             <input field_type="<?php echo $cf['type'];?>" name="<?php  $cf['name'];?>" id="<?php echo $cf['name'];?>"
230 247
                    value="<?php echo esc_attr(stripslashes($value));?>" type="tel" class="geodir_textfield"/>
@@ -280,11 +297,17 @@  discard block
 block discarded – undo
280 297
         }?>
281 298
 
282 299
         <div id="<?php echo $cf['name'];?>_row"
283
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
300
+             class="<?php if ($cf['is_required']) {
301
+	echo 'required_field';
302
+}
303
+?> geodir_form_row clearfix gd-fieldset-details">
284 304
             <label>
285 305
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
286 306
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
287
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
307
+                <?php if ($cf['is_required']) {
308
+	echo '<span>*</span>';
309
+}
310
+?>
288 311
             </label>
289 312
             <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
290 313
                    value="<?php echo esc_attr(stripslashes($value));?>" type="url" class="geodir_textfield"
@@ -339,11 +362,17 @@  discard block
 block discarded – undo
339 362
 
340 363
         ?>
341 364
         <div id="<?php echo $cf['name'];?>_row"
342
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
365
+             class="<?php if ($cf['is_required']) {
366
+	echo 'required_field';
367
+}
368
+?> geodir_form_row clearfix gd-fieldset-details">
343 369
             <label>
344 370
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
345 371
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
346
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
372
+                <?php if ($cf['is_required']) {
373
+	echo '<span>*</span>';
374
+}
375
+?>
347 376
             </label>
348 377
             <?php if ($cf['option_values']) {
349 378
                 $option_values = geodir_string_values_to_options($cf['option_values'], true);
@@ -410,11 +439,17 @@  discard block
 block discarded – undo
410 439
         }?>
411 440
 
412 441
         <div id="<?php echo $cf['name'];?>_row"
413
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
442
+             class="<?php if ($cf['is_required']) {
443
+	echo 'required_field';
444
+}
445
+?> geodir_form_row clearfix gd-fieldset-details">
414 446
             <label>
415 447
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
416 448
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
417
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
449
+                <?php if ($cf['is_required']) {
450
+	echo '<span>*</span>';
451
+}
452
+?>
418 453
             </label>
419 454
             <?php if ($value != '1') {
420 455
                 $value = '0';
@@ -474,11 +509,17 @@  discard block
 block discarded – undo
474 509
         ?>
475 510
 
476 511
         <div id="<?php echo $cf['name'];?>_row"
477
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
512
+             class="<?php if ($cf['is_required']) {
513
+	echo 'required_field';
514
+}
515
+?> geodir_form_row clearfix gd-fieldset-details">
478 516
             <label>
479 517
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
480 518
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
481
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
519
+                <?php if ($cf['is_required']) {
520
+	echo '<span>*</span>';
521
+}
522
+?>
482 523
             </label><?php
483 524
 
484 525
 
@@ -546,11 +587,17 @@  discard block
 block discarded – undo
546 587
 
547 588
         ?>
548 589
         <div id="<?php echo $cf['name'];?>_row"
549
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
590
+             class="<?php if ($cf['is_required']) {
591
+	echo 'required_field';
592
+}
593
+?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
550 594
             <label>
551 595
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
552 596
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
553
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
597
+                <?php if ($cf['is_required']) {
598
+	echo '<span>*</span>';
599
+}
600
+?>
554 601
             </label>
555 602
             <?php
556 603
             $option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
@@ -627,11 +674,17 @@  discard block
 block discarded – undo
627 674
         }
628 675
         ?>
629 676
         <div id="<?php echo $cf['name']; ?>_row"
630
-             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
677
+             class="<?php if ($cf['is_required']) {
678
+	echo 'required_field';
679
+}
680
+?> geodir_form_row clearfix gd-fieldset-details">
631 681
             <label>
632 682
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
633 683
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
634
-                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
684
+                <?php if ($cf['is_required']) {
685
+	echo '<span>*</span>';
686
+}
687
+?>
635 688
             </label>
636 689
             <input type="hidden" name="gd_field_<?php echo $cf['name']; ?>" value="1"/>
637 690
             <?php if ($multi_display == 'select') { ?>
@@ -738,11 +791,17 @@  discard block
 block discarded – undo
738 791
         ?>
739 792
 
740 793
         <div id="<?php echo $cf['name']; ?>_row"
741
-             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
794
+             class="<?php if ($cf['is_required']) {
795
+	echo 'required_field';
796
+}
797
+?> geodir_form_row clearfix gd-fieldset-details">
742 798
             <label>
743 799
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
744 800
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
745
-                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
801
+                <?php if ($cf['is_required']) {
802
+	echo '<span>*</span>';
803
+}
804
+?>
746 805
             </label>
747 806
 
748 807
             <?php $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10); ?>
@@ -802,8 +861,9 @@  discard block
 block discarded – undo
802 861
         $extra_fields = unserialize($cf['extra_fields']);
803 862
         $name = $cf['name'];
804 863
 
805
-        if ($extra_fields['date_format'] == '')
806
-            $extra_fields['date_format'] = 'yy-mm-dd';
864
+        if ($extra_fields['date_format'] == '') {
865
+                    $extra_fields['date_format'] = 'yy-mm-dd';
866
+        }
807 867
 
808 868
         $date_format = $extra_fields['date_format'];
809 869
         $jquery_date_format  = $date_format;
@@ -817,7 +877,7 @@  discard block
 block discarded – undo
817 877
             $replace = array('d','j','l','m','n','F','Y');//PHP date format
818 878
 
819 879
             $date_format = str_replace($search, $replace, $date_format);
820
-        }else{
880
+        } else{
821 881
             $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
822 882
         }
823 883
 
@@ -851,12 +911,18 @@  discard block
 block discarded – undo
851 911
 
852 912
         </script>
853 913
         <div id="<?php echo $name;?>_row"
854
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
914
+             class="<?php if ($cf['is_required']) {
915
+	echo 'required_field';
916
+}
917
+?> geodir_form_row clearfix gd-fieldset-details">
855 918
             <label>
856 919
 
857 920
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
858 921
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
859
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
922
+                <?php if ($cf['is_required']) {
923
+	echo '<span>*</span>';
924
+}
925
+?>
860 926
             </label>
861 927
 
862 928
             <input field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" id="<?php echo $name;?>"
@@ -910,8 +976,9 @@  discard block
 block discarded – undo
910 976
 
911 977
         $name = $cf['name'];
912 978
 
913
-        if ($value != '')
914
-            $value = date('H:i', strtotime($value));
979
+        if ($value != '') {
980
+                    $value = date('H:i', strtotime($value));
981
+        }
915 982
         ?>
916 983
         <script type="text/javascript">
917 984
             jQuery(document).ready(function () {
@@ -924,12 +991,18 @@  discard block
 block discarded – undo
924 991
             });
925 992
         </script>
926 993
         <div id="<?php echo $name;?>_row"
927
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
994
+             class="<?php if ($cf['is_required']) {
995
+	echo 'required_field';
996
+}
997
+?> geodir_form_row clearfix gd-fieldset-details">
928 998
             <label>
929 999
 
930 1000
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
931 1001
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
932
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
1002
+                <?php if ($cf['is_required']) {
1003
+	echo '<span>*</span>';
1004
+}
1005
+?>
933 1006
             </label>
934 1007
             <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>"
935 1008
                    id="<?php echo $name;?>" value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/>
@@ -1021,17 +1094,27 @@  discard block
 block discarded – undo
1021 1094
         }
1022 1095
 
1023 1096
         $location = geodir_get_default_location();
1024
-        if (empty($city)) $city = isset($location->city) ? $location->city : '';
1025
-        if (empty($region)) $region = isset($location->region) ? $location->region : '';
1026
-        if (empty($country)) $country = isset($location->country) ? $location->country : '';
1097
+        if (empty($city)) {
1098
+        	$city = isset($location->city) ? $location->city : '';
1099
+        }
1100
+        if (empty($region)) {
1101
+        	$region = isset($location->region) ? $location->region : '';
1102
+        }
1103
+        if (empty($country)) {
1104
+        	$country = isset($location->country) ? $location->country : '';
1105
+        }
1027 1106
 
1028 1107
         $lat_lng_blank = false;
1029 1108
         if (empty($lat) && empty($lng)) {
1030 1109
             $lat_lng_blank = true;
1031 1110
         }
1032 1111
 
1033
-        if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : '';
1034
-        if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : '';
1112
+        if (empty($lat)) {
1113
+        	$lat = isset($location->city_latitude) ? $location->city_latitude : '';
1114
+        }
1115
+        if (empty($lng)) {
1116
+        	$lng = isset($location->city_longitude) ? $location->city_longitude : '';
1117
+        }
1035 1118
 
1036 1119
         /**
1037 1120
          * Filter the default latitude.
@@ -1055,10 +1138,16 @@  discard block
 block discarded – undo
1055 1138
         ?>
1056 1139
 
1057 1140
         <div id="geodir_<?php echo $prefix . 'address';?>_row"
1058
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1141
+             class="<?php if ($is_required) {
1142
+	echo 'required_field';
1143
+}
1144
+?> geodir_form_row clearfix gd-fieldset-details">
1059 1145
             <label>
1060 1146
                 <?php _e($address_title, 'geodirectory'); ?>
1061
-                <?php if ($is_required) echo '<span>*</span>';?>
1147
+                <?php if ($is_required) {
1148
+	echo '<span>*</span>';
1149
+}
1150
+?>
1062 1151
             </label>
1063 1152
             <input type="text" field_type="<?php echo $type;?>" name="<?php echo $prefix . 'address';?>"
1064 1153
                    id="<?php echo $prefix . 'address';?>" class="geodir_textfield"
@@ -1119,10 +1208,16 @@  discard block
 block discarded – undo
1119 1208
             /* show lat lng */
1120 1209
             $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1121 1210
             <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row"
1122
-                 class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1211
+                 class="<?php if ($is_required) {
1212
+	echo 'required_field';
1213
+}
1214
+?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1123 1215
                 <label>
1124 1216
                     <?php echo PLACE_ADDRESS_LAT; ?>
1125
-                    <?php if ($is_required) echo '<span>*</span>'; ?>
1217
+                    <?php if ($is_required) {
1218
+	echo '<span>*</span>';
1219
+}
1220
+?>
1126 1221
                 </label>
1127 1222
                 <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'latitude'; ?>"
1128 1223
                        id="<?php echo $prefix . 'latitude'; ?>" class="geodir_textfield"
@@ -1134,10 +1229,16 @@  discard block
 block discarded – undo
1134 1229
             </div>
1135 1230
 
1136 1231
             <div id="geodir_<?php echo $prefix . 'longitude'; ?>_row"
1137
-                 class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1232
+                 class="<?php if ($is_required) {
1233
+	echo 'required_field';
1234
+}
1235
+?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1138 1236
                 <label>
1139 1237
                     <?php echo PLACE_ADDRESS_LNG; ?>
1140
-                    <?php if ($is_required) echo '<span>*</span>'; ?>
1238
+                    <?php if ($is_required) {
1239
+	echo '<span>*</span>';
1240
+}
1241
+?>
1141 1242
                 </label>
1142 1243
                 <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'longitude'; ?>"
1143 1244
                        id="<?php echo $prefix . 'longitude'; ?>" class="geodir_textfield"
@@ -1241,11 +1342,17 @@  discard block
 block discarded – undo
1241 1342
             $value = '';
1242 1343
         } ?>
1243 1344
         <div id="<?php echo $name;?>_row"
1244
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1345
+             class="<?php if ($is_required) {
1346
+	echo 'required_field';
1347
+}
1348
+?> geodir_form_row clearfix gd-fieldset-details">
1245 1349
             <label>
1246 1350
                 <?php $site_title = __($site_title, 'geodirectory');
1247 1351
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1248
-                <?php if ($is_required) echo '<span>*</span>';?>
1352
+                <?php if ($is_required) {
1353
+	echo '<span>*</span>';
1354
+}
1355
+?>
1249 1356
             </label>
1250 1357
 
1251 1358
             <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
@@ -1279,8 +1386,9 @@  discard block
 block discarded – undo
1279 1386
                     $post_cat = implode(",", $post_cat[$name]);
1280 1387
 
1281 1388
                 } else {
1282
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
1283
-                        $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1389
+                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
1390
+                                            $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1391
+                    }
1284 1392
                 }
1285 1393
 
1286 1394
 
@@ -1318,21 +1426,24 @@  discard block
 block discarded – undo
1318 1426
 
1319 1427
                         $cat_display == '';
1320 1428
                         $multiple = '';
1321
-                        if ($cat_display == 'multiselect')
1322
-                            $multiple = 'multiple="multiple"';
1429
+                        if ($cat_display == 'multiselect') {
1430
+                                                    $multiple = 'multiple="multiple"';
1431
+                        }
1323 1432
 
1324 1433
                         echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">';
1325 1434
 
1326 1435
 
1327
-                        if ($cat_display == 'select')
1328
-                            echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1436
+                        if ($cat_display == 'select') {
1437
+                                                    echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1438
+                        }
1329 1439
 
1330 1440
                     }
1331 1441
 
1332 1442
                     echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0);
1333 1443
 
1334
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
1335
-                        echo '</select>';
1444
+                    if ($cat_display == 'select' || $cat_display == 'multiselect') {
1445
+                                            echo '</select>';
1446
+                    }
1336 1447
 
1337 1448
                 } else {
1338 1449
 
@@ -1404,18 +1515,23 @@  discard block
 block discarded – undo
1404 1515
 
1405 1516
             $file_value = trim($value, ","); // this will be initial value of the above form field. Image urls.
1406 1517
 
1407
-        } else
1408
-            $file_value = '';
1518
+        } else {
1519
+                    $file_value = '';
1520
+        }
1409 1521
 
1410
-        if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple'])
1411
-            $file_multiple = true; // allow multiple files upload
1412
-        else
1413
-            $file_multiple = false;
1522
+        if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple']) {
1523
+                    $file_multiple = true;
1524
+        }
1525
+        // allow multiple files upload
1526
+        else {
1527
+                    $file_multiple = false;
1528
+        }
1414 1529
 
1415
-        if (isset($extra_fields['image_limit']) && $extra_fields['image_limit'])
1416
-            $file_image_limit = $extra_fields['image_limit'];
1417
-        else
1418
-            $file_image_limit = 1;
1530
+        if (isset($extra_fields['image_limit']) && $extra_fields['image_limit']) {
1531
+                    $file_image_limit = $extra_fields['image_limit'];
1532
+        } else {
1533
+                    $file_image_limit = 1;
1534
+        }
1419 1535
 
1420 1536
         $file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1421 1537
 
@@ -1423,8 +1539,9 @@  discard block
 block discarded – undo
1423 1539
 
1424 1540
         if (!empty($file_value)) {
1425 1541
             $curImages = explode(',', $file_value);
1426
-            if (!empty($curImages))
1427
-                $file_totImg = count($curImages);
1542
+            if (!empty($curImages)) {
1543
+                            $file_totImg = count($curImages);
1544
+            }
1428 1545
         }
1429 1546
 
1430 1547
         $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : '';
@@ -1439,12 +1556,18 @@  discard block
 block discarded – undo
1439 1556
         ?>
1440 1557
 
1441 1558
         <div id="<?php echo $name;?>_row"
1442
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1559
+             class="<?php if ($is_required) {
1560
+	echo 'required_field';
1561
+}
1562
+?> geodir_form_row clearfix gd-fieldset-details">
1443 1563
 
1444 1564
             <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;">
1445 1565
                 <label
1446 1566
                     style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory');
1447
-                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1567
+                    echo $site_title; ?><?php if ($is_required) {
1568
+                    	echo '<span>*</span>';
1569
+                    }
1570
+                    ?></label>
1448 1571
                 <input class="geodir-custom-file-upload" field_type="file" type="hidden"
1449 1572
                        name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>"
1450 1573
                        value="<?php echo esc_attr($file_value); ?>"/>
Please login to merge, or discard this patch.
Spacing   +233 added lines, -233 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@  discard block
 block discarded – undo
17 17
  *
18 18
  * @return string The html to output for the custom field.
19 19
  */
20
-function geodir_cfi_fieldset($html,$cf){
20
+function geodir_cfi_fieldset($html, $cf) {
21 21
 
22 22
     $html_var = $cf['htmlvar_name'];
23 23
 
24 24
     // Check if there is a custom field specific filter.
25
-    if(has_filter("geodir_custom_field_input_fieldset_{$html_var}")){
25
+    if (has_filter("geodir_custom_field_input_fieldset_{$html_var}")) {
26 26
         /**
27 27
          * Filter the fieldset html by individual custom field.
28 28
          *
@@ -30,18 +30,18 @@  discard block
 block discarded – undo
30 30
          * @param array $cf The custom field array.
31 31
          * @since 1.6.6
32 32
          */
33
-        $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}",$html,$cf);
33
+        $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}", $html, $cf);
34 34
     }
35 35
 
36 36
     // If no html then we run the standard output.
37
-    if(empty($html)) {
37
+    if (empty($html)) {
38 38
 
39 39
         ob_start(); // Start  buffering;
40 40
         ?>
41 41
         <h5 id="geodir_fieldset_<?php echo (int) $cf['id']; ?>" class="geodir-fieldset-row"
42 42
             gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo $cf['site_title']; ?>
43
-            <?php if ( $cf['desc'] != '' ) {
44
-                echo '<small>( ' . $cf['desc'] . ' )</small>';
43
+            <?php if ($cf['desc'] != '') {
44
+                echo '<small>( '.$cf['desc'].' )</small>';
45 45
             } ?></h5>
46 46
         <?php
47 47
         $html = ob_get_clean();
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     return $html;
51 51
 }
52
-add_filter('geodir_custom_field_input_fieldset','geodir_cfi_fieldset',10,2);
52
+add_filter('geodir_custom_field_input_fieldset', 'geodir_cfi_fieldset', 10, 2);
53 53
 
54 54
 
55 55
 
@@ -62,12 +62,12 @@  discard block
 block discarded – undo
62 62
  *
63 63
  * @return string The html to output for the custom field.
64 64
  */
65
-function geodir_cfi_text($html,$cf){
65
+function geodir_cfi_text($html, $cf) {
66 66
 
67 67
     $html_var = $cf['htmlvar_name'];
68 68
 
69 69
     // Check if there is a custom field specific filter.
70
-    if(has_filter("geodir_custom_field_input_text_{$html_var}")){
70
+    if (has_filter("geodir_custom_field_input_text_{$html_var}")) {
71 71
         /**
72 72
          * Filter the text html by individual custom field.
73 73
          *
@@ -75,41 +75,41 @@  discard block
 block discarded – undo
75 75
          * @param array $cf The custom field array.
76 76
          * @since 1.6.6
77 77
          */
78
-        $html = apply_filters("geodir_custom_field_input_text_{$html_var}",$html,$cf);
78
+        $html = apply_filters("geodir_custom_field_input_text_{$html_var}", $html, $cf);
79 79
     }
80 80
 
81 81
     // If no html then we run the standard output.
82
-    if(empty($html)) {
82
+    if (empty($html)) {
83 83
 
84 84
         ob_start(); // Start  buffering;
85 85
 
86 86
         $value = geodir_get_cf_value($cf);
87 87
         $type = $cf['type'];
88 88
         //number and float validation $validation_pattern
89
-        if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';}
90
-        elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';}
89
+        if (isset($cf['data_type']) && $cf['data_type'] == 'INT') {$type = 'number'; }
90
+        elseif (isset($cf['data_type']) && $cf['data_type'] == 'FLOAT') {$type = 'float'; }
91 91
 
92 92
         //validation
93
-        if(isset($cf['validation_pattern']) && $cf['validation_pattern']){
93
+        if (isset($cf['validation_pattern']) && $cf['validation_pattern']) {
94 94
             $validation = 'pattern="'.$cf['validation_pattern'].'"';
95
-        }else{$validation='';}
95
+        } else {$validation = ''; }
96 96
 
97 97
         // validation message
98
-        if(isset($cf['validation_msg']) && $cf['validation_msg']){
98
+        if (isset($cf['validation_msg']) && $cf['validation_msg']) {
99 99
             $validation_msg = 'title="'.$cf['validation_msg'].'"';
100
-        }else{$validation_msg='';}
100
+        } else {$validation_msg = ''; }
101 101
         ?>
102 102
 
103
-        <div id="<?php echo $cf['name'];?>_row"
104
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
103
+        <div id="<?php echo $cf['name']; ?>_row"
104
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
105 105
             <label>
106 106
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
107 107
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
108
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
108
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
109 109
             </label>
110
-            <input field_type="<?php echo $type;?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
111
-                   value="<?php echo esc_attr(stripslashes($value));?>" type="<?php echo $type;?>" class="geodir_textfield" <?php echo $validation;echo $validation_msg;?> />
112
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
110
+            <input field_type="<?php echo $type; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>"
111
+                   value="<?php echo esc_attr(stripslashes($value)); ?>" type="<?php echo $type; ?>" class="geodir_textfield" <?php echo $validation; echo $validation_msg; ?> />
112
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
113 113
             <?php if ($cf['is_required']) { ?>
114 114
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
115 115
             <?php } ?>
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
     return $html;
123 123
 }
124
-add_filter('geodir_custom_field_input_text','geodir_cfi_text',10,2);
124
+add_filter('geodir_custom_field_input_text', 'geodir_cfi_text', 10, 2);
125 125
 
126 126
 
127 127
 /**
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
  *
134 134
  * @return string The html to output for the custom field.
135 135
  */
136
-function geodir_cfi_email($html,$cf){
136
+function geodir_cfi_email($html, $cf) {
137 137
 
138 138
     $html_var = $cf['htmlvar_name'];
139 139
 
140 140
     // Check if there is a custom field specific filter.
141
-    if(has_filter("geodir_custom_field_input_email_{$html_var}")){
141
+    if (has_filter("geodir_custom_field_input_email_{$html_var}")) {
142 142
         /**
143 143
          * Filter the email html by individual custom field.
144 144
          *
@@ -146,11 +146,11 @@  discard block
 block discarded – undo
146 146
          * @param array $cf The custom field array.
147 147
          * @since 1.6.6
148 148
          */
149
-        $html = apply_filters("geodir_custom_field_input_email_{$html_var}",$html,$cf);
149
+        $html = apply_filters("geodir_custom_field_input_email_{$html_var}", $html, $cf);
150 150
     }
151 151
 
152 152
     // If no html then we run the standard output.
153
-    if(empty($html)) {
153
+    if (empty($html)) {
154 154
 
155 155
         ob_start(); // Start  buffering;
156 156
         $value = geodir_get_cf_value($cf);
@@ -159,16 +159,16 @@  discard block
 block discarded – undo
159 159
             $value = '';
160 160
         }?>
161 161
 
162
-        <div id="<?php echo $cf['name'];?>_row"
163
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
162
+        <div id="<?php echo $cf['name']; ?>_row"
163
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
164 164
             <label>
165 165
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
166 166
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
167
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
167
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
168 168
             </label>
169
-            <input field_type="<?php echo $cf['type'];?>" name="<?php  echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
170
-                   value="<?php echo esc_attr(stripslashes($value));?>" type="email" class="geodir_textfield"/>
171
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
169
+            <input field_type="<?php echo $cf['type']; ?>" name="<?php  echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>"
170
+                   value="<?php echo esc_attr(stripslashes($value)); ?>" type="email" class="geodir_textfield"/>
171
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
172 172
             <?php if ($cf['is_required']) { ?>
173 173
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
174 174
             <?php } ?>
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 
181 181
     return $html;
182 182
 }
183
-add_filter('geodir_custom_field_input_email','geodir_cfi_email',10,2);
183
+add_filter('geodir_custom_field_input_email', 'geodir_cfi_email', 10, 2);
184 184
 
185 185
 
186 186
 
@@ -193,12 +193,12 @@  discard block
 block discarded – undo
193 193
  *
194 194
  * @return string The html to output for the custom field.
195 195
  */
196
-function geodir_cfi_phone($html,$cf){
196
+function geodir_cfi_phone($html, $cf) {
197 197
 
198 198
     $html_var = $cf['htmlvar_name'];
199 199
 
200 200
     // Check if there is a custom field specific filter.
201
-    if(has_filter("geodir_custom_field_input_phone_{$html_var}")){
201
+    if (has_filter("geodir_custom_field_input_phone_{$html_var}")) {
202 202
         /**
203 203
          * Filter the phone html by individual custom field.
204 204
          *
@@ -206,11 +206,11 @@  discard block
 block discarded – undo
206 206
          * @param array $cf The custom field array.
207 207
          * @since 1.6.6
208 208
          */
209
-        $html = apply_filters("geodir_custom_field_input_phone_{$html_var}",$html,$cf);
209
+        $html = apply_filters("geodir_custom_field_input_phone_{$html_var}", $html, $cf);
210 210
     }
211 211
 
212 212
     // If no html then we run the standard output.
213
-    if(empty($html)) {
213
+    if (empty($html)) {
214 214
 
215 215
         ob_start(); // Start  buffering;
216 216
         $value = geodir_get_cf_value($cf);
@@ -219,16 +219,16 @@  discard block
 block discarded – undo
219 219
             $value = '';
220 220
         }?>
221 221
 
222
-        <div id="<?php echo $cf['name'];?>_row"
223
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
222
+        <div id="<?php echo $cf['name']; ?>_row"
223
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
224 224
             <label>
225 225
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
226 226
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
227
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
227
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
228 228
             </label>
229
-            <input field_type="<?php echo $cf['type'];?>" name="<?php  echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
230
-                   value="<?php echo esc_attr(stripslashes($value));?>" type="tel" class="geodir_textfield"/>
231
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
229
+            <input field_type="<?php echo $cf['type']; ?>" name="<?php  echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>"
230
+                   value="<?php echo esc_attr(stripslashes($value)); ?>" type="tel" class="geodir_textfield"/>
231
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
232 232
             <?php if ($cf['is_required']) { ?>
233 233
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
234 234
             <?php } ?>
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
 
241 241
     return $html;
242 242
 }
243
-add_filter('geodir_custom_field_input_phone','geodir_cfi_phone',10,2);
243
+add_filter('geodir_custom_field_input_phone', 'geodir_cfi_phone', 10, 2);
244 244
 
245 245
 
246 246
 
@@ -253,12 +253,12 @@  discard block
 block discarded – undo
253 253
  *
254 254
  * @return string The html to output for the custom field.
255 255
  */
256
-function geodir_cfi_url($html,$cf){
256
+function geodir_cfi_url($html, $cf) {
257 257
 
258 258
     $html_var = $cf['htmlvar_name'];
259 259
 
260 260
     // Check if there is a custom field specific filter.
261
-    if(has_filter("geodir_custom_field_input_url_{$html_var}")){
261
+    if (has_filter("geodir_custom_field_input_url_{$html_var}")) {
262 262
         /**
263 263
          * Filter the url html by individual custom field.
264 264
          *
@@ -266,11 +266,11 @@  discard block
 block discarded – undo
266 266
          * @param array $cf The custom field array.
267 267
          * @since 1.6.6
268 268
          */
269
-        $html = apply_filters("geodir_custom_field_input_url_{$html_var}",$html,$cf);
269
+        $html = apply_filters("geodir_custom_field_input_url_{$html_var}", $html, $cf);
270 270
     }
271 271
 
272 272
     // If no html then we run the standard output.
273
-    if(empty($html)) {
273
+    if (empty($html)) {
274 274
 
275 275
         ob_start(); // Start  buffering;
276 276
         $value = geodir_get_cf_value($cf);
@@ -279,19 +279,19 @@  discard block
 block discarded – undo
279 279
             $value = '';
280 280
         }?>
281 281
 
282
-        <div id="<?php echo $cf['name'];?>_row"
283
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
282
+        <div id="<?php echo $cf['name']; ?>_row"
283
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
284 284
             <label>
285 285
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
286 286
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
287
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
287
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
288 288
             </label>
289
-            <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
290
-                   value="<?php echo esc_attr(stripslashes($value));?>" type="url" class="geodir_textfield"
289
+            <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>"
290
+                   value="<?php echo esc_attr(stripslashes($value)); ?>" type="url" class="geodir_textfield"
291 291
                    oninvalid="setCustomValidity('<?php _e('Please enter a valid URL including http://', 'geodirectory'); ?>')"
292 292
                    onchange="try{setCustomValidity('')}catch(e){}"
293 293
             />
294
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
294
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
295 295
             <?php if ($cf['is_required']) { ?>
296 296
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
297 297
             <?php } ?>
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
 
304 304
     return $html;
305 305
 }
306
-add_filter('geodir_custom_field_input_url','geodir_cfi_url',10,2);
306
+add_filter('geodir_custom_field_input_url', 'geodir_cfi_url', 10, 2);
307 307
 
308 308
 
309 309
 /**
@@ -315,12 +315,12 @@  discard block
 block discarded – undo
315 315
  *
316 316
  * @return string The html to output for the custom field.
317 317
  */
318
-function geodir_cfi_radio($html,$cf){
318
+function geodir_cfi_radio($html, $cf) {
319 319
 
320 320
     $html_var = $cf['htmlvar_name'];
321 321
 
322 322
     // Check if there is a custom field specific filter.
323
-    if(has_filter("geodir_custom_field_input_radio_{$html_var}")){
323
+    if (has_filter("geodir_custom_field_input_radio_{$html_var}")) {
324 324
         /**
325 325
          * Filter the radio html by individual custom field.
326 326
          *
@@ -328,22 +328,22 @@  discard block
 block discarded – undo
328 328
          * @param array $cf The custom field array.
329 329
          * @since 1.6.6
330 330
          */
331
-        $html = apply_filters("geodir_custom_field_input_radio_{$html_var}",$html,$cf);
331
+        $html = apply_filters("geodir_custom_field_input_radio_{$html_var}", $html, $cf);
332 332
     }
333 333
 
334 334
     // If no html then we run the standard output.
335
-    if(empty($html)) {
335
+    if (empty($html)) {
336 336
 
337 337
         ob_start(); // Start  buffering;
338 338
         $value = geodir_get_cf_value($cf);
339 339
 
340 340
         ?>
341
-        <div id="<?php echo $cf['name'];?>_row"
342
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
341
+        <div id="<?php echo $cf['name']; ?>_row"
342
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
343 343
             <label>
344 344
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
345 345
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
346
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
346
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
347 347
             </label>
348 348
             <?php if ($cf['option_values']) {
349 349
                 $option_values = geodir_string_values_to_options($cf['option_values'], true);
@@ -352,14 +352,14 @@  discard block
 block discarded – undo
352 352
                     foreach ($option_values as $option_value) {
353 353
                         if (empty($option_value['optgroup'])) {
354 354
                             ?>
355
-                            <span class="gd-radios"><input name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" <?php checked($value, $option_value['value']);?> value="<?php echo esc_attr($option_value['value']); ?>" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="radio" /><?php echo $option_value['label']; ?></span>
355
+                            <span class="gd-radios"><input name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" <?php checked($value, $option_value['value']); ?> value="<?php echo esc_attr($option_value['value']); ?>" class="gd-checkbox" field_type="<?php echo $cf['type']; ?>" type="radio" /><?php echo $option_value['label']; ?></span>
356 356
                             <?php
357 357
                         }
358 358
                     }
359 359
                 }
360 360
             }
361 361
             ?>
362
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
362
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
363 363
             <?php if ($cf['is_required']) { ?>
364 364
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
365 365
             <?php } ?>
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
 
372 372
     return $html;
373 373
 }
374
-add_filter('geodir_custom_field_input_radio','geodir_cfi_radio',10,2);
374
+add_filter('geodir_custom_field_input_radio', 'geodir_cfi_radio', 10, 2);
375 375
 
376 376
 
377 377
 /**
@@ -383,12 +383,12 @@  discard block
 block discarded – undo
383 383
  *
384 384
  * @return string The html to output for the custom field.
385 385
  */
386
-function geodir_cfi_checkbox($html,$cf){
386
+function geodir_cfi_checkbox($html, $cf) {
387 387
 
388 388
     $html_var = $cf['htmlvar_name'];
389 389
 
390 390
     // Check if there is a custom field specific filter.
391
-    if(has_filter("geodir_custom_field_input_checkbox_{$html_var}")){
391
+    if (has_filter("geodir_custom_field_input_checkbox_{$html_var}")) {
392 392
         /**
393 393
          * Filter the checkbox html by individual custom field.
394 394
          *
@@ -396,11 +396,11 @@  discard block
 block discarded – undo
396 396
          * @param array $cf The custom field array.
397 397
          * @since 1.6.6
398 398
          */
399
-        $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}",$html,$cf);
399
+        $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}", $html, $cf);
400 400
     }
401 401
 
402 402
     // If no html then we run the standard output.
403
-    if(empty($html)) {
403
+    if (empty($html)) {
404 404
 
405 405
         ob_start(); // Start  buffering;
406 406
         $value = geodir_get_cf_value($cf);
@@ -409,22 +409,22 @@  discard block
 block discarded – undo
409 409
             $value = '';
410 410
         }?>
411 411
 
412
-        <div id="<?php echo $cf['name'];?>_row"
413
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
412
+        <div id="<?php echo $cf['name']; ?>_row"
413
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
414 414
             <label>
415 415
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
416 416
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
417
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
417
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
418 418
             </label>
419 419
             <?php if ($value != '1') {
420 420
                 $value = '0';
421 421
             }?>
422
-            <input type="hidden" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" value="<?php echo esc_attr($value);?>"/>
422
+            <input type="hidden" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" value="<?php echo esc_attr($value); ?>"/>
423 423
             <input  <?php if ($value == '1') {
424 424
                 echo 'checked="checked"';
425
-            }?>  value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox"
426
-                 onchange="if(this.checked){jQuery('#<?php echo $cf['name'];?>').val('1');} else{ jQuery('#<?php echo $cf['name'];?>').val('0');}"/>
427
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
425
+            }?>  value="1" class="gd-checkbox" field_type="<?php echo $cf['type']; ?>" type="checkbox"
426
+                 onchange="if(this.checked){jQuery('#<?php echo $cf['name']; ?>').val('1');} else{ jQuery('#<?php echo $cf['name']; ?>').val('0');}"/>
427
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
428 428
             <?php if ($cf['is_required']) { ?>
429 429
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
430 430
             <?php } ?>
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
 
437 437
     return $html;
438 438
 }
439
-add_filter('geodir_custom_field_input_checkbox','geodir_cfi_checkbox',10,2);
439
+add_filter('geodir_custom_field_input_checkbox', 'geodir_cfi_checkbox', 10, 2);
440 440
 
441 441
 
442 442
 /**
@@ -448,12 +448,12 @@  discard block
 block discarded – undo
448 448
  *
449 449
  * @return string The html to output for the custom field.
450 450
  */
451
-function geodir_cfi_textarea($html,$cf){
451
+function geodir_cfi_textarea($html, $cf) {
452 452
 
453 453
     $html_var = $cf['htmlvar_name'];
454 454
 
455 455
     // Check if there is a custom field specific filter.
456
-    if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){
456
+    if (has_filter("geodir_custom_field_input_textarea_{$html_var}")) {
457 457
         /**
458 458
          * Filter the textarea html by individual custom field.
459 459
          *
@@ -461,11 +461,11 @@  discard block
 block discarded – undo
461 461
          * @param array $cf The custom field array.
462 462
          * @since 1.6.6
463 463
          */
464
-        $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf);
464
+        $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}", $html, $cf);
465 465
     }
466 466
 
467 467
     // If no html then we run the standard output.
468
-    if(empty($html)) {
468
+    if (empty($html)) {
469 469
 
470 470
         ob_start(); // Start  buffering;
471 471
         $value = geodir_get_cf_value($cf);
@@ -473,32 +473,32 @@  discard block
 block discarded – undo
473 473
         $extra_fields = unserialize($cf['extra_fields']);
474 474
         ?>
475 475
 
476
-        <div id="<?php echo $cf['name'];?>_row"
477
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
476
+        <div id="<?php echo $cf['name']; ?>_row"
477
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
478 478
             <label>
479 479
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
480 480
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
481
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
481
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
482 482
             </label><?php
483 483
 
484 484
 
485 485
             if (is_array($extra_fields) && in_array('1', $extra_fields)) {
486 486
 
487
-                $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);?>
487
+                $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10); ?>
488 488
 
489
-            <div class="editor" field_id="<?php echo $cf['name'];?>" field_type="editor">
489
+            <div class="editor" field_id="<?php echo $cf['name']; ?>" field_type="editor">
490 490
                 <?php wp_editor(stripslashes($value), $cf['name'], $editor_settings); ?>
491 491
                 </div><?php
492 492
 
493 493
             } else {
494 494
 
495
-                ?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>"
496
-                            id="<?php echo $cf['name'];?>"><?php echo stripslashes($value);?></textarea><?php
495
+                ?><textarea field_type="<?php echo $cf['type']; ?>" class="geodir_textarea" name="<?php echo $cf['name']; ?>"
496
+                            id="<?php echo $cf['name']; ?>"><?php echo stripslashes($value); ?></textarea><?php
497 497
 
498 498
             }?>
499 499
 
500 500
 
501
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
501
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
502 502
             <?php if ($cf['is_required']) { ?>
503 503
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
504 504
             <?php } ?>
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
 
511 511
     return $html;
512 512
 }
513
-add_filter('geodir_custom_field_input_textarea','geodir_cfi_textarea',10,2);
513
+add_filter('geodir_custom_field_input_textarea', 'geodir_cfi_textarea', 10, 2);
514 514
 
515 515
 
516 516
 /**
@@ -522,12 +522,12 @@  discard block
 block discarded – undo
522 522
  *
523 523
  * @return string The html to output for the custom field.
524 524
  */
525
-function geodir_cfi_select($html,$cf){
525
+function geodir_cfi_select($html, $cf) {
526 526
 
527 527
     $html_var = $cf['htmlvar_name'];
528 528
 
529 529
     // Check if there is a custom field specific filter.
530
-    if(has_filter("geodir_custom_field_input_select_{$html_var}")){
530
+    if (has_filter("geodir_custom_field_input_select_{$html_var}")) {
531 531
         /**
532 532
          * Filter the select html by individual custom field.
533 533
          *
@@ -535,22 +535,22 @@  discard block
 block discarded – undo
535 535
          * @param array $cf The custom field array.
536 536
          * @since 1.6.6
537 537
          */
538
-        $html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf);
538
+        $html = apply_filters("geodir_custom_field_input_select_{$html_var}", $html, $cf);
539 539
     }
540 540
 
541 541
     // If no html then we run the standard output.
542
-    if(empty($html)) {
542
+    if (empty($html)) {
543 543
 
544 544
         ob_start(); // Start  buffering;
545 545
         $value = geodir_get_cf_value($cf);
546 546
 
547 547
         ?>
548
-        <div id="<?php echo $cf['name'];?>_row"
549
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
548
+        <div id="<?php echo $cf['name']; ?>_row"
549
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
550 550
             <label>
551 551
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
552 552
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
553
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
553
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
554 554
             </label>
555 555
             <?php
556 556
             $option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
@@ -560,22 +560,22 @@  discard block
 block discarded – undo
560 560
                     if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) {
561 561
                         $option_label = isset($option_row['label']) ? $option_row['label'] : '';
562 562
 
563
-                        $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
563
+                        $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="'.esc_attr($option_label).'">' : '</optgroup>';
564 564
                     } else {
565 565
                         $option_label = isset($option_row['label']) ? $option_row['label'] : '';
566 566
                         $option_value = isset($option_row['value']) ? $option_row['value'] : '';
567 567
                         $selected = $option_value == $value ? 'selected="selected"' : '';
568 568
 
569
-                        $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
569
+                        $select_options .= '<option value="'.esc_attr($option_value).'" '.$selected.'>'.$option_label.'</option>';
570 570
                     }
571 571
                 }
572 572
             }
573 573
             ?>
574
-            <select field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
574
+            <select field_type="<?php echo $cf['type']; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>"
575 575
                     class="geodir_textfield textfield_x chosen_select"
576
-                    data-placeholder="<?php echo __('Choose', 'geodirectory') . ' ' . $site_title . '&hellip;';?>"
577
-                    option-ajaxchosen="false"><?php echo $select_options;?></select>
578
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
576
+                    data-placeholder="<?php echo __('Choose', 'geodirectory').' '.$site_title.'&hellip;'; ?>"
577
+                    option-ajaxchosen="false"><?php echo $select_options; ?></select>
578
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
579 579
             <?php if ($cf['is_required']) { ?>
580 580
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
581 581
             <?php } ?>
@@ -587,7 +587,7 @@  discard block
 block discarded – undo
587 587
 
588 588
     return $html;
589 589
 }
590
-add_filter('geodir_custom_field_input_select','geodir_cfi_select',10,2);
590
+add_filter('geodir_custom_field_input_select', 'geodir_cfi_select', 10, 2);
591 591
 
592 592
 
593 593
 /**
@@ -599,12 +599,12 @@  discard block
 block discarded – undo
599 599
  *
600 600
  * @return string The html to output for the custom field.
601 601
  */
602
-function geodir_cfi_multiselect($html,$cf){
602
+function geodir_cfi_multiselect($html, $cf) {
603 603
 
604 604
     $html_var = $cf['htmlvar_name'];
605 605
 
606 606
     // Check if there is a custom field specific filter.
607
-    if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){
607
+    if (has_filter("geodir_custom_field_input_multiselect_{$html_var}")) {
608 608
         /**
609 609
          * Filter the multiselect html by individual custom field.
610 610
          *
@@ -612,11 +612,11 @@  discard block
 block discarded – undo
612 612
          * @param array $cf The custom field array.
613 613
          * @since 1.6.6
614 614
          */
615
-        $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf);
615
+        $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}", $html, $cf);
616 616
     }
617 617
 
618 618
     // If no html then we run the standard output.
619
-    if(empty($html)) {
619
+    if (empty($html)) {
620 620
 
621 621
         ob_start(); // Start  buffering;
622 622
         $value = geodir_get_cf_value($cf);
@@ -653,9 +653,9 @@  discard block
 block discarded – undo
653 653
                                 $option_label = isset($option_row['label']) ? $option_row['label'] : '';
654 654
 
655 655
                                 if ($multi_display == 'select') {
656
-                                    $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
656
+                                    $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="'.esc_attr($option_label).'">' : '</optgroup>';
657 657
                                 } else {
658
-                                    $select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : '';
658
+                                    $select_options .= $option_row['optgroup'] == 'start' ? '<li>'.$option_label.'</li>' : '';
659 659
                                 }
660 660
                             } else {
661 661
                                 $option_label = isset($option_row['label']) ? $option_row['label'] : '';
@@ -680,9 +680,9 @@  discard block
 block discarded – undo
680 680
                                 }
681 681
 
682 682
                                 if ($multi_display == 'select') {
683
-                                    $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
683
+                                    $select_options .= '<option value="'.esc_attr($option_value).'" '.$selected.'>'.$option_label.'</option>';
684 684
                                 } else {
685
-                                    $select_options .= '<li><input name="' . $cf['name'] . '[]" ' . $checked . ' value="' . esc_attr($option_value) . '" class="gd-' . $multi_display . '" field_type="' . $multi_display . '" type="' . $multi_display . '" />&nbsp;' . $option_label . ' </li>';
685
+                                    $select_options .= '<li><input name="'.$cf['name'].'[]" '.$checked.' value="'.esc_attr($option_value).'" class="gd-'.$multi_display.'" field_type="'.$multi_display.'" type="'.$multi_display.'" />&nbsp;'.$option_label.' </li>';
686 686
                                 }
687 687
                             }
688 688
                         }
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
 
703 703
     return $html;
704 704
 }
705
-add_filter('geodir_custom_field_input_multiselect','geodir_cfi_multiselect',10,2);
705
+add_filter('geodir_custom_field_input_multiselect', 'geodir_cfi_multiselect', 10, 2);
706 706
 
707 707
 
708 708
 /**
@@ -714,12 +714,12 @@  discard block
 block discarded – undo
714 714
  *
715 715
  * @return string The html to output for the custom field.
716 716
  */
717
-function geodir_cfi_html($html,$cf){
717
+function geodir_cfi_html($html, $cf) {
718 718
 
719 719
     $html_var = $cf['htmlvar_name'];
720 720
 
721 721
     // Check if there is a custom field specific filter.
722
-    if(has_filter("geodir_custom_field_input_html_{$html_var}")){
722
+    if (has_filter("geodir_custom_field_input_html_{$html_var}")) {
723 723
         /**
724 724
          * Filter the html html by individual custom field.
725 725
          *
@@ -727,11 +727,11 @@  discard block
 block discarded – undo
727 727
          * @param array $cf The custom field array.
728 728
          * @since 1.6.6
729 729
          */
730
-        $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf);
730
+        $html = apply_filters("geodir_custom_field_input_html_{$html_var}", $html, $cf);
731 731
     }
732 732
 
733 733
     // If no html then we run the standard output.
734
-    if(empty($html)) {
734
+    if (empty($html)) {
735 735
 
736 736
         ob_start(); // Start  buffering;
737 737
         $value = geodir_get_cf_value($cf);
@@ -764,7 +764,7 @@  discard block
 block discarded – undo
764 764
 
765 765
     return $html;
766 766
 }
767
-add_filter('geodir_custom_field_input_html','geodir_cfi_html',10,2);
767
+add_filter('geodir_custom_field_input_html', 'geodir_cfi_html', 10, 2);
768 768
 
769 769
 
770 770
 
@@ -777,12 +777,12 @@  discard block
 block discarded – undo
777 777
  *
778 778
  * @return string The html to output for the custom field.
779 779
  */
780
-function geodir_cfi_datepicker($html,$cf){
780
+function geodir_cfi_datepicker($html, $cf) {
781 781
 
782 782
     $html_var = $cf['htmlvar_name'];
783 783
 
784 784
     // Check if there is a custom field specific filter.
785
-    if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){
785
+    if (has_filter("geodir_custom_field_input_datepicker_{$html_var}")) {
786 786
         /**
787 787
          * Filter the datepicker html by individual custom field.
788 788
          *
@@ -790,11 +790,11 @@  discard block
 block discarded – undo
790 790
          * @param array $cf The custom field array.
791 791
          * @since 1.6.6
792 792
          */
793
-        $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf);
793
+        $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}", $html, $cf);
794 794
     }
795 795
 
796 796
     // If no html then we run the standard output.
797
-    if(empty($html)) {
797
+    if (empty($html)) {
798 798
 
799 799
         ob_start(); // Start  buffering;
800 800
         $value = geodir_get_cf_value($cf);
@@ -806,23 +806,23 @@  discard block
 block discarded – undo
806 806
             $extra_fields['date_format'] = 'yy-mm-dd';
807 807
 
808 808
         $date_format = $extra_fields['date_format'];
809
-        $jquery_date_format  = $date_format;
809
+        $jquery_date_format = $date_format;
810 810
 
811 811
 
812 812
         // check if we need to change the format or not
813 813
         $date_format_len = strlen(str_replace(' ', '', $date_format));
814
-        if($date_format_len>5){// if greater then 5 then it's the old style format.
814
+        if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
815 815
 
816
-            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
817
-            $replace = array('d','j','l','m','n','F','Y');//PHP date format
816
+            $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
817
+            $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
818 818
 
819 819
             $date_format = str_replace($search, $replace, $date_format);
820
-        }else{
821
-            $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
820
+        } else {
821
+            $jquery_date_format = geodir_date_format_php_to_jqueryui($jquery_date_format);
822 822
         }
823 823
 
824
-        if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty
825
-        if($value && !isset($_REQUEST['backandedit'])) {
824
+        if ($value == '0000-00-00') {$value = ''; }//if date not set, then mark it empty
825
+        if ($value && !isset($_REQUEST['backandedit'])) {
826 826
             //$time = strtotime($value);
827 827
             //$value = date_i18n($date_format, $time);
828 828
         }
@@ -833,37 +833,37 @@  discard block
 block discarded – undo
833 833
 
834 834
             jQuery(function () {
835 835
 
836
-                jQuery("#<?php echo $cf['name'];?>").datepicker({changeMonth: true, changeYear: true <?php
836
+                jQuery("#<?php echo $cf['name']; ?>").datepicker({changeMonth: true, changeYear: true <?php
837 837
                     /**
838 838
                      * Used to add extra option to datepicker per custom field.
839 839
                      *
840 840
                      * @since 1.5.7
841 841
                      * @param string $name The custom field name.
842 842
                      */
843
-                    echo apply_filters("gd_datepicker_extra_{$name}",'');?>});
843
+                    echo apply_filters("gd_datepicker_extra_{$name}", ''); ?>});
844 844
 
845
-                jQuery("#<?php echo $name;?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format;?>');
845
+                jQuery("#<?php echo $name; ?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format; ?>');
846 846
 
847
-                <?php if(!empty($value)){?>
848
-                jQuery("#<?php echo $name;?>").datepicker("setDate", '<?php echo $value;?>');
847
+                <?php if (!empty($value)) {?>
848
+                jQuery("#<?php echo $name; ?>").datepicker("setDate", '<?php echo $value; ?>');
849 849
                 <?php } ?>
850 850
 
851 851
             });
852 852
 
853 853
         </script>
854
-        <div id="<?php echo $name;?>_row"
855
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
854
+        <div id="<?php echo $name; ?>_row"
855
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
856 856
             <label>
857 857
 
858 858
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
859 859
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
860
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
860
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
861 861
             </label>
862 862
 
863
-            <input field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" id="<?php echo $name;?>"
864
-                   value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/>
863
+            <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $name; ?>" id="<?php echo $name; ?>"
864
+                   value="<?php echo esc_attr($value); ?>" type="text" class="geodir_textfield"/>
865 865
 
866
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
866
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
867 867
             <?php if ($cf['is_required']) { ?>
868 868
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
869 869
             <?php } ?>
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 
876 876
     return $html;
877 877
 }
878
-add_filter('geodir_custom_field_input_datepicker','geodir_cfi_datepicker',10,2);
878
+add_filter('geodir_custom_field_input_datepicker', 'geodir_cfi_datepicker', 10, 2);
879 879
 
880 880
 
881 881
 /**
@@ -887,12 +887,12 @@  discard block
 block discarded – undo
887 887
  *
888 888
  * @return string The html to output for the custom field.
889 889
  */
890
-function geodir_cfi_time($html,$cf){
890
+function geodir_cfi_time($html, $cf) {
891 891
 
892 892
     $html_var = $cf['htmlvar_name'];
893 893
 
894 894
     // Check if there is a custom field specific filter.
895
-    if(has_filter("geodir_custom_field_input_time_{$html_var}")){
895
+    if (has_filter("geodir_custom_field_input_time_{$html_var}")) {
896 896
         /**
897 897
          * Filter the time html by individual custom field.
898 898
          *
@@ -900,11 +900,11 @@  discard block
 block discarded – undo
900 900
          * @param array $cf The custom field array.
901 901
          * @since 1.6.6
902 902
          */
903
-        $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf);
903
+        $html = apply_filters("geodir_custom_field_input_time_{$html_var}", $html, $cf);
904 904
     }
905 905
 
906 906
     // If no html then we run the standard output.
907
-    if(empty($html)) {
907
+    if (empty($html)) {
908 908
 
909 909
         ob_start(); // Start  buffering;
910 910
         $value = geodir_get_cf_value($cf);
@@ -917,25 +917,25 @@  discard block
 block discarded – undo
917 917
         <script type="text/javascript">
918 918
             jQuery(document).ready(function () {
919 919
 
920
-                jQuery('#<?php echo $name;?>').timepicker({
920
+                jQuery('#<?php echo $name; ?>').timepicker({
921 921
                     showPeriod: true,
922 922
                     showLeadingZero: true,
923 923
                     showPeriod: true,
924 924
                 });
925 925
             });
926 926
         </script>
927
-        <div id="<?php echo $name;?>_row"
928
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
927
+        <div id="<?php echo $name; ?>_row"
928
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
929 929
             <label>
930 930
 
931 931
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
932 932
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
933
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
933
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
934 934
             </label>
935
-            <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>"
936
-                   id="<?php echo $name;?>" value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/>
935
+            <input readonly="readonly" field_type="<?php echo $cf['type']; ?>" name="<?php echo $name; ?>"
936
+                   id="<?php echo $name; ?>" value="<?php echo esc_attr($value); ?>" type="text" class="geodir_textfield"/>
937 937
 
938
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
938
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
939 939
             <?php if ($cf['is_required']) { ?>
940 940
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
941 941
             <?php } ?>
@@ -946,7 +946,7 @@  discard block
 block discarded – undo
946 946
 
947 947
     return $html;
948 948
 }
949
-add_filter('geodir_custom_field_input_time','geodir_cfi_time',10,2);
949
+add_filter('geodir_custom_field_input_time', 'geodir_cfi_time', 10, 2);
950 950
 
951 951
 
952 952
 /**
@@ -958,12 +958,12 @@  discard block
 block discarded – undo
958 958
  *
959 959
  * @return string The html to output for the custom field.
960 960
  */
961
-function geodir_cfi_address($html,$cf){
961
+function geodir_cfi_address($html, $cf) {
962 962
 
963 963
     $html_var = $cf['htmlvar_name'];
964 964
 
965 965
     // Check if there is a custom field specific filter.
966
-    if(has_filter("geodir_custom_field_input_address_{$html_var}")){
966
+    if (has_filter("geodir_custom_field_input_address_{$html_var}")) {
967 967
         /**
968 968
          * Filter the address html by individual custom field.
969 969
          *
@@ -971,11 +971,11 @@  discard block
 block discarded – undo
971 971
          * @param array $cf The custom field array.
972 972
          * @since 1.6.6
973 973
          */
974
-        $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf);
974
+        $html = apply_filters("geodir_custom_field_input_address_{$html_var}", $html, $cf);
975 975
     }
976 976
 
977 977
     // If no html then we run the standard output.
978
-    if(empty($html)) {
978
+    if (empty($html)) {
979 979
 
980 980
         global $gd_session;
981 981
         ob_start(); // Start  buffering;
@@ -988,12 +988,12 @@  discard block
 block discarded – undo
988 988
         $site_title = $cf['site_title'];
989 989
         $is_admin = $cf['is_admin'];
990 990
         $extra_fields = unserialize($cf['extra_fields']);
991
-        $prefix = $name . '_';
991
+        $prefix = $name.'_';
992 992
 
993
-        ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address');
994
-        ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code ');
993
+        ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix.' address');
994
+        ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix.' zip/post code ');
995 995
         ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map');
996
-        ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview');
996
+        ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix.' mapview');
997 997
 
998 998
         $address = '';
999 999
         $zip = '';
@@ -1004,21 +1004,21 @@  discard block
 block discarded – undo
1004 1004
 
1005 1005
         if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1006 1006
             $post = $gd_ses_listing;
1007
-            $address = $post[$prefix . 'address'];
1008
-            $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : '';
1009
-            $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : '';
1010
-            $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : '';
1011
-            $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : '';
1012
-            $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : '';
1007
+            $address = $post[$prefix.'address'];
1008
+            $zip = isset($post[$prefix.'zip']) ? $post[$prefix.'zip'] : '';
1009
+            $lat = isset($post[$prefix.'latitude']) ? $post[$prefix.'latitude'] : '';
1010
+            $lng = isset($post[$prefix.'longitude']) ? $post[$prefix.'longitude'] : '';
1011
+            $mapview = isset($post[$prefix.'mapview']) ? $post[$prefix.'mapview'] : '';
1012
+            $mapzoom = isset($post[$prefix.'mapzoom']) ? $post[$prefix.'mapzoom'] : '';
1013 1013
         } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) {
1014
-            $post_info = (array)$post_info;
1015
-
1016
-            $address = $post_info[$prefix . 'address'];
1017
-            $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : '';
1018
-            $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : '';
1019
-            $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : '';
1020
-            $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : '';
1021
-            $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : '';
1014
+            $post_info = (array) $post_info;
1015
+
1016
+            $address = $post_info[$prefix.'address'];
1017
+            $zip = isset($post_info[$prefix.'zip']) ? $post_info[$prefix.'zip'] : '';
1018
+            $lat = isset($post_info[$prefix.'latitude']) ? $post_info[$prefix.'latitude'] : '';
1019
+            $lng = isset($post_info[$prefix.'longitude']) ? $post_info[$prefix.'longitude'] : '';
1020
+            $mapview = isset($post_info[$prefix.'mapview']) ? $post_info[$prefix.'mapview'] : '';
1021
+            $mapzoom = isset($post_info[$prefix.'mapzoom']) ? $post_info[$prefix.'mapzoom'] : '';
1022 1022
         }
1023 1023
 
1024 1024
         $location = geodir_get_default_location();
@@ -1055,16 +1055,16 @@  discard block
 block discarded – undo
1055 1055
 
1056 1056
         ?>
1057 1057
 
1058
-        <div id="geodir_<?php echo $prefix . 'address';?>_row"
1059
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1058
+        <div id="geodir_<?php echo $prefix.'address'; ?>_row"
1059
+             class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
1060 1060
             <label>
1061 1061
                 <?php _e($address_title, 'geodirectory'); ?>
1062
-                <?php if ($is_required) echo '<span>*</span>';?>
1062
+                <?php if ($is_required) echo '<span>*</span>'; ?>
1063 1063
             </label>
1064
-            <input type="text" field_type="<?php echo $type;?>" name="<?php echo $prefix . 'address';?>"
1065
-                   id="<?php echo $prefix . 'address';?>" class="geodir_textfield"
1064
+            <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'address'; ?>"
1065
+                   id="<?php echo $prefix.'address'; ?>" class="geodir_textfield"
1066 1066
                    value="<?php echo esc_attr(stripslashes($address)); ?>"/>
1067
-            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span>
1067
+            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?></span>
1068 1068
             <?php if ($is_required) { ?>
1069 1069
                 <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
1070 1070
             <?php } ?>
@@ -1084,14 +1084,14 @@  discard block
 block discarded – undo
1084 1084
 
1085 1085
         if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?>
1086 1086
 
1087
-            <div id="geodir_<?php echo $prefix . 'zip'; ?>_row"
1087
+            <div id="geodir_<?php echo $prefix.'zip'; ?>_row"
1088 1088
                  class="<?php /*if($is_required) echo 'required_field';*/ ?> geodir_form_row clearfix gd-fieldset-details">
1089 1089
                 <label>
1090 1090
                     <?php _e($zip_title, 'geodirectory'); ?>
1091 1091
                     <?php /*if($is_required) echo '<span>*</span>';*/ ?>
1092 1092
                 </label>
1093
-                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'zip'; ?>"
1094
-                       id="<?php echo $prefix . 'zip'; ?>" class="geodir_textfield autofill"
1093
+                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'zip'; ?>"
1094
+                       id="<?php echo $prefix.'zip'; ?>" class="geodir_textfield autofill"
1095 1095
                        value="<?php echo esc_attr(stripslashes($zip)); ?>"/>
1096 1096
                 <?php /*if($is_required) {?>
1097 1097
 					<span class="geodir_message_error"><?php echo _e($required_msg,'geodirectory');?></span>
@@ -1101,14 +1101,14 @@  discard block
 block discarded – undo
1101 1101
 
1102 1102
         <?php if (isset($extra_fields['show_map']) && $extra_fields['show_map']) { ?>
1103 1103
 
1104
-            <div id="geodir_<?php echo $prefix . 'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1104
+            <div id="geodir_<?php echo $prefix.'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1105 1105
                 <?php
1106 1106
                 /**
1107 1107
                  * Contains add listing page map functions.
1108 1108
                  *
1109 1109
                  * @since 1.0.0
1110 1110
                  */
1111
-                include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1111
+                include(geodir_plugin_path()."/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1112 1112
                 if ($lat_lng_blank) {
1113 1113
                     $lat = '';
1114 1114
                     $lng = '';
@@ -1119,14 +1119,14 @@  discard block
 block discarded – undo
1119 1119
             <?php
1120 1120
             /* show lat lng */
1121 1121
             $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1122
-            <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row"
1122
+            <div id="geodir_<?php echo $prefix.'latitude'; ?>_row"
1123 1123
                  class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1124 1124
                 <label>
1125 1125
                     <?php echo PLACE_ADDRESS_LAT; ?>
1126 1126
                     <?php if ($is_required) echo '<span>*</span>'; ?>
1127 1127
                 </label>
1128
-                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'latitude'; ?>"
1129
-                       id="<?php echo $prefix . 'latitude'; ?>" class="geodir_textfield"
1128
+                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'latitude'; ?>"
1129
+                       id="<?php echo $prefix.'latitude'; ?>" class="geodir_textfield"
1130 1130
                        value="<?php echo esc_attr(stripslashes($lat)); ?>" size="25"/>
1131 1131
                 <span class="geodir_message_note"><?php echo GET_LATITUDE_MSG; ?></span>
1132 1132
                 <?php if ($is_required) { ?>
@@ -1134,14 +1134,14 @@  discard block
 block discarded – undo
1134 1134
                 <?php } ?>
1135 1135
             </div>
1136 1136
 
1137
-            <div id="geodir_<?php echo $prefix . 'longitude'; ?>_row"
1137
+            <div id="geodir_<?php echo $prefix.'longitude'; ?>_row"
1138 1138
                  class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1139 1139
                 <label>
1140 1140
                     <?php echo PLACE_ADDRESS_LNG; ?>
1141 1141
                     <?php if ($is_required) echo '<span>*</span>'; ?>
1142 1142
                 </label>
1143
-                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'longitude'; ?>"
1144
-                       id="<?php echo $prefix . 'longitude'; ?>" class="geodir_textfield"
1143
+                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'longitude'; ?>"
1144
+                       id="<?php echo $prefix.'longitude'; ?>" class="geodir_textfield"
1145 1145
                        value="<?php echo esc_attr(stripslashes($lng)); ?>" size="25"/>
1146 1146
                 <span class="geodir_message_note"><?php echo GET_LOGNGITUDE_MSG; ?></span>
1147 1147
                 <?php if ($is_required) { ?>
@@ -1151,32 +1151,32 @@  discard block
 block discarded – undo
1151 1151
         <?php } ?>
1152 1152
 
1153 1153
         <?php if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) { ?>
1154
-            <div id="geodir_<?php echo $prefix . 'mapview'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1154
+            <div id="geodir_<?php echo $prefix.'mapview'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1155 1155
                 <label><?php _e($mapview_title, 'geodirectory'); ?></label>
1156 1156
 
1157 1157
 
1158 1158
                     <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1159 1159
                                                             class="gd-checkbox"
1160
-                                                            name="<?php echo $prefix . 'mapview'; ?>"
1161
-                                                            id="<?php echo $prefix . 'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') {
1160
+                                                            name="<?php echo $prefix.'mapview'; ?>"
1161
+                                                            id="<?php echo $prefix.'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') {
1162 1162
                             echo 'checked="checked"';
1163 1163
                         } ?>  value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span>
1164 1164
                     <span class="geodir_user_define"> <input field_type="<?php echo $type; ?>" type="radio"
1165 1165
                                                              class="gd-checkbox"
1166
-                                                             name="<?php echo $prefix . 'mapview'; ?>"
1166
+                                                             name="<?php echo $prefix.'mapview'; ?>"
1167 1167
                                                              id="map_view1" <?php if ($mapview == 'SATELLITE') {
1168 1168
                             echo 'checked="checked"';
1169 1169
                         } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span>
1170 1170
 
1171 1171
                     <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1172 1172
                                                             class="gd-checkbox"
1173
-                                                            name="<?php echo $prefix . 'mapview'; ?>"
1173
+                                                            name="<?php echo $prefix.'mapview'; ?>"
1174 1174
                                                             id="map_view2" <?php if ($mapview == 'HYBRID') {
1175 1175
                             echo 'checked="checked"';
1176 1176
                         } ?>  value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span>
1177 1177
 					<span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1178 1178
                                                             class="gd-checkbox"
1179
-                                                            name="<?php echo $prefix . 'mapview'; ?>"
1179
+                                                            name="<?php echo $prefix.'mapview'; ?>"
1180 1180
                                                             id="map_view3" <?php if ($mapview == 'TERRAIN') {
1181 1181
                             echo 'checked="checked"';
1182 1182
                         } ?>  value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span>
@@ -1188,7 +1188,7 @@  discard block
 block discarded – undo
1188 1188
         <?php if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { ?>
1189 1189
             <input type="hidden" value="<?php if (isset($mapzoom)) {
1190 1190
                 echo esc_attr($mapzoom);
1191
-            } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/>
1191
+            } ?>" name="<?php echo $prefix.'mapzoom'; ?>" id="<?php echo $prefix.'mapzoom'; ?>"/>
1192 1192
         <?php }
1193 1193
 
1194 1194
         $html = ob_get_clean();
@@ -1196,7 +1196,7 @@  discard block
 block discarded – undo
1196 1196
 
1197 1197
     return $html;
1198 1198
 }
1199
-add_filter('geodir_custom_field_input_address','geodir_cfi_address',10,2);
1199
+add_filter('geodir_custom_field_input_address', 'geodir_cfi_address', 10, 2);
1200 1200
 
1201 1201
 
1202 1202
 
@@ -1209,12 +1209,12 @@  discard block
 block discarded – undo
1209 1209
  *
1210 1210
  * @return string The html to output for the custom field.
1211 1211
  */
1212
-function geodir_cfi_taxonomy($html,$cf){
1212
+function geodir_cfi_taxonomy($html, $cf) {
1213 1213
 
1214 1214
     $html_var = $cf['htmlvar_name'];
1215 1215
 
1216 1216
     // Check if there is a custom field specific filter.
1217
-    if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){
1217
+    if (has_filter("geodir_custom_field_input_taxonomy_{$html_var}")) {
1218 1218
         /**
1219 1219
          * Filter the taxonomy html by individual custom field.
1220 1220
          *
@@ -1222,11 +1222,11 @@  discard block
 block discarded – undo
1222 1222
          * @param array $cf The custom field array.
1223 1223
          * @since 1.6.6
1224 1224
          */
1225
-        $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf);
1225
+        $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}", $html, $cf);
1226 1226
     }
1227 1227
 
1228 1228
     // If no html then we run the standard output.
1229
-    if(empty($html)) {
1229
+    if (empty($html)) {
1230 1230
 
1231 1231
         ob_start(); // Start  buffering;
1232 1232
         $value = geodir_get_cf_value($cf);
@@ -1241,15 +1241,15 @@  discard block
 block discarded – undo
1241 1241
         if ($value == $cf['default']) {
1242 1242
             $value = '';
1243 1243
         } ?>
1244
-        <div id="<?php echo $name;?>_row"
1245
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1244
+        <div id="<?php echo $name; ?>_row"
1245
+             class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
1246 1246
             <label>
1247 1247
                 <?php $site_title = __($site_title, 'geodirectory');
1248 1248
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1249
-                <?php if ($is_required) echo '<span>*</span>';?>
1249
+                <?php if ($is_required) echo '<span>*</span>'; ?>
1250 1250
             </label>
1251 1251
 
1252
-            <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
1252
+            <div id="<?php echo $name; ?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
1253 1253
                 <?php
1254 1254
                 global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats;
1255 1255
 
@@ -1261,7 +1261,7 @@  discard block
 block discarded – undo
1261 1261
 
1262 1262
                     $package_info = array();
1263 1263
 
1264
-                    $package_info = (array)geodir_post_package_info($package_info, $post, $post_type);
1264
+                    $package_info = (array) geodir_post_package_info($package_info, $post, $post_type);
1265 1265
 
1266 1266
                     if (!empty($package_info)) {
1267 1267
 
@@ -1290,7 +1290,7 @@  discard block
 block discarded – undo
1290 1290
 
1291 1291
                     $catadd_limit = $wpdb->get_var(
1292 1292
                         $wpdb->prepare(
1293
-                            "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d",
1293
+                            "SELECT cat_limit FROM ".GEODIR_PRICE_TABLE." WHERE pid = %d",
1294 1294
                             array($package_id)
1295 1295
                         )
1296 1296
                     );
@@ -1306,13 +1306,13 @@  discard block
 block discarded – undo
1306 1306
                     $required_limit_msg = '';
1307 1307
                     if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') {
1308 1308
 
1309
-                        $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory');
1309
+                        $required_limit_msg = __('Only select', 'geodirectory').' '.$catadd_limit.__(' categories for this package.', 'geodirectory');
1310 1310
 
1311 1311
                     } else {
1312 1312
                         $required_limit_msg = $required_msg;
1313 1313
                     }
1314 1314
 
1315
-                    echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']"  />';
1315
+                    echo '<input type="hidden" cat_limit="'.$catadd_limit.'" id="cat_limit" value="'.esc_attr($required_limit_msg).'" name="cat_limit['.$name.']"  />';
1316 1316
 
1317 1317
 
1318 1318
                     if ($cat_display == 'select' || $cat_display == 'multiselect') {
@@ -1322,11 +1322,11 @@  discard block
 block discarded – undo
1322 1322
                         if ($cat_display == 'multiselect')
1323 1323
                             $multiple = 'multiple="multiple"';
1324 1324
 
1325
-                        echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">';
1325
+                        echo '<select id="'.$name.'" '.$multiple.' type="'.$name.'" name="post_category['.$name.'][]" alt="'.$name.'" field_type="'.$cat_display.'" class="geodir_textfield textfield_x chosen_select" data-placeholder="'.__('Select Category', 'geodirectory').'">';
1326 1326
 
1327 1327
 
1328 1328
                         if ($cat_display == 'select')
1329
-                            echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1329
+                            echo '<option value="">'.__('Select Category', 'geodirectory').'</option>';
1330 1330
 
1331 1331
                     }
1332 1332
 
@@ -1344,7 +1344,7 @@  discard block
 block discarded – undo
1344 1344
                 ?>
1345 1345
             </div>
1346 1346
 
1347
-            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span>
1347
+            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?></span>
1348 1348
             <?php if ($is_required) { ?>
1349 1349
                 <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
1350 1350
             <?php } ?>
@@ -1356,7 +1356,7 @@  discard block
 block discarded – undo
1356 1356
 
1357 1357
     return $html;
1358 1358
 }
1359
-add_filter('geodir_custom_field_input_taxonomy','geodir_cfi_taxonomy',10,2);
1359
+add_filter('geodir_custom_field_input_taxonomy', 'geodir_cfi_taxonomy', 10, 2);
1360 1360
 
1361 1361
 
1362 1362
 /**
@@ -1368,12 +1368,12 @@  discard block
 block discarded – undo
1368 1368
  *
1369 1369
  * @return string The html to output for the custom field.
1370 1370
  */
1371
-function geodir_cfi_file($html,$cf){
1371
+function geodir_cfi_file($html, $cf) {
1372 1372
 
1373 1373
     $html_var = $cf['htmlvar_name'];
1374 1374
 
1375 1375
     // Check if there is a custom field specific filter.
1376
-    if(has_filter("geodir_custom_field_input_file_{$html_var}")){
1376
+    if (has_filter("geodir_custom_field_input_file_{$html_var}")) {
1377 1377
         /**
1378 1378
          * Filter the file html by individual custom field.
1379 1379
          *
@@ -1381,11 +1381,11 @@  discard block
 block discarded – undo
1381 1381
          * @param array $cf The custom field array.
1382 1382
          * @since 1.6.6
1383 1383
          */
1384
-        $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf);
1384
+        $html = apply_filters("geodir_custom_field_input_file_{$html_var}", $html, $cf);
1385 1385
     }
1386 1386
 
1387 1387
     // If no html then we run the standard output.
1388
-    if(empty($html)) {
1388
+    if (empty($html)) {
1389 1389
 
1390 1390
         ob_start(); // Start  buffering;
1391 1391
         $value = geodir_get_cf_value($cf);
@@ -1428,8 +1428,8 @@  discard block
 block discarded – undo
1428 1428
                 $file_totImg = count($curImages);
1429 1429
         }
1430 1430
 
1431
-        $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : '';
1432
-        $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : '';
1431
+        $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types']) ? implode(",", $extra_fields['gd_file_types']) : '';
1432
+        $display_file_types = $allowed_file_types != '' ? '.'.implode(", .", $extra_fields['gd_file_types']) : '';
1433 1433
 
1434 1434
         ?>
1435 1435
         <?php /*?> <h5 class="geodir-form_title"> <?php echo $site_title; ?>
@@ -1439,13 +1439,13 @@  discard block
 block discarded – undo
1439 1439
 			</h5>   <?php */
1440 1440
         ?>
1441 1441
 
1442
-        <div id="<?php echo $name;?>_row"
1443
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1442
+        <div id="<?php echo $name; ?>_row"
1443
+             class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
1444 1444
 
1445 1445
             <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;">
1446 1446
                 <label
1447 1447
                     style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory');
1448
-                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1448
+                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>'; ?></label>
1449 1449
                 <input class="geodir-custom-file-upload" field_type="file" type="hidden"
1450 1450
                        name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>"
1451 1451
                        value="<?php echo esc_attr($file_value); ?>"/>
@@ -1453,7 +1453,7 @@  discard block
 block discarded – undo
1453 1453
                        id="<?php echo $file_id; ?>image_limit" value="<?php echo $file_image_limit; ?>"/>
1454 1454
                 <?php if ($allowed_file_types != '') { ?>
1455 1455
                     <input type="hidden" name="<?php echo $file_id; ?>_allowed_types"
1456
-                           id="<?php echo $file_id; ?>_allowed_types" value="<?php echo esc_attr($allowed_file_types); ?>" data-exts="<?php echo esc_attr($display_file_types);?>"/>
1456
+                           id="<?php echo $file_id; ?>_allowed_types" value="<?php echo esc_attr($allowed_file_types); ?>" data-exts="<?php echo esc_attr($display_file_types); ?>"/>
1457 1457
                 <?php } ?>
1458 1458
                 <input type="hidden" name="<?php echo $file_id; ?>totImg" id="<?php echo $file_id; ?>totImg"
1459 1459
                        value="<?php if (isset($file_totImg)) {
@@ -1469,10 +1469,10 @@  discard block
 block discarded – undo
1469 1469
                         <?php /*?><h4><?php _e('Drop files to upload');?></h4><br/><?php */
1470 1470
                         ?>
1471 1471
                         <input id="<?php echo $file_id; ?>plupload-browse-button" type="button"
1472
-                               value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory') ); ?>"
1472
+                               value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory')); ?>"
1473 1473
                                class="geodir_button" style="margin-top:10px;"/>
1474 1474
                             <span class="ajaxnonceplu"
1475
-                                  id="ajaxnonceplu<?php echo wp_create_nonce($file_id . 'pluploadan'); ?>"></span>
1475
+                                  id="ajaxnonceplu<?php echo wp_create_nonce($file_id.'pluploadan'); ?>"></span>
1476 1476
                         <?php if ($file_width && $file_height): ?>
1477 1477
                             <span class="plupload-resize"></span>
1478 1478
                             <span class="plupload-width" id="plupload-width<?php echo $file_width; ?>"></span>
@@ -1492,7 +1492,7 @@  discard block
 block discarded – undo
1492 1492
 
1493 1493
                 </div>
1494 1494
             </div>
1495
-            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?> <?php echo ( $display_file_types != '' ? __('Allowed file types:', 'geodirectory') . ' ' . $display_file_types : '' );?></span>
1495
+            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?> <?php echo ($display_file_types != '' ? __('Allowed file types:', 'geodirectory').' '.$display_file_types : ''); ?></span>
1496 1496
             <?php if ($is_required) { ?>
1497 1497
                 <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
1498 1498
             <?php } ?>
@@ -1505,4 +1505,4 @@  discard block
 block discarded – undo
1505 1505
 
1506 1506
     return $html;
1507 1507
 }
1508
-add_filter('geodir_custom_field_input_file','geodir_cfi_file',10,2);
1509 1508
\ No newline at end of file
1509
+add_filter('geodir_custom_field_input_file', 'geodir_cfi_file', 10, 2);
1510 1510
\ No newline at end of file
Please login to merge, or discard this patch.
Indentation   +705 added lines, -705 removed lines patch added patch discarded remove patch
@@ -19,35 +19,35 @@  discard block
 block discarded – undo
19 19
  */
20 20
 function geodir_cfi_fieldset($html,$cf){
21 21
 
22
-    $html_var = $cf['htmlvar_name'];
23
-
24
-    // Check if there is a custom field specific filter.
25
-    if(has_filter("geodir_custom_field_input_fieldset_{$html_var}")){
26
-        /**
27
-         * Filter the fieldset html by individual custom field.
28
-         *
29
-         * @param string $html The html to filter.
30
-         * @param array $cf The custom field array.
31
-         * @since 1.6.6
32
-         */
33
-        $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}",$html,$cf);
34
-    }
35
-
36
-    // If no html then we run the standard output.
37
-    if(empty($html)) {
38
-
39
-        ob_start(); // Start  buffering;
40
-        ?>
22
+	$html_var = $cf['htmlvar_name'];
23
+
24
+	// Check if there is a custom field specific filter.
25
+	if(has_filter("geodir_custom_field_input_fieldset_{$html_var}")){
26
+		/**
27
+		 * Filter the fieldset html by individual custom field.
28
+		 *
29
+		 * @param string $html The html to filter.
30
+		 * @param array $cf The custom field array.
31
+		 * @since 1.6.6
32
+		 */
33
+		$html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}",$html,$cf);
34
+	}
35
+
36
+	// If no html then we run the standard output.
37
+	if(empty($html)) {
38
+
39
+		ob_start(); // Start  buffering;
40
+		?>
41 41
         <h5 id="geodir_fieldset_<?php echo (int) $cf['id']; ?>" class="geodir-fieldset-row"
42 42
             gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo $cf['site_title']; ?>
43 43
             <?php if ( $cf['desc'] != '' ) {
44
-                echo '<small>( ' . $cf['desc'] . ' )</small>';
45
-            } ?></h5>
44
+				echo '<small>( ' . $cf['desc'] . ' )</small>';
45
+			} ?></h5>
46 46
         <?php
47
-        $html = ob_get_clean();
48
-    }
47
+		$html = ob_get_clean();
48
+	}
49 49
 
50
-    return $html;
50
+	return $html;
51 51
 }
52 52
 add_filter('geodir_custom_field_input_fieldset','geodir_cfi_fieldset',10,2);
53 53
 
@@ -64,47 +64,47 @@  discard block
 block discarded – undo
64 64
  */
65 65
 function geodir_cfi_text($html,$cf){
66 66
 
67
-    $html_var = $cf['htmlvar_name'];
68
-
69
-    // Check if there is a custom field specific filter.
70
-    if(has_filter("geodir_custom_field_input_text_{$html_var}")){
71
-        /**
72
-         * Filter the text html by individual custom field.
73
-         *
74
-         * @param string $html The html to filter.
75
-         * @param array $cf The custom field array.
76
-         * @since 1.6.6
77
-         */
78
-        $html = apply_filters("geodir_custom_field_input_text_{$html_var}",$html,$cf);
79
-    }
80
-
81
-    // If no html then we run the standard output.
82
-    if(empty($html)) {
83
-
84
-        ob_start(); // Start  buffering;
85
-
86
-        $value = geodir_get_cf_value($cf);
87
-        $type = $cf['type'];
88
-        //number and float validation $validation_pattern
89
-        if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';}
90
-        elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';}
91
-
92
-        //validation
93
-        if(isset($cf['validation_pattern']) && $cf['validation_pattern']){
94
-            $validation = 'pattern="'.$cf['validation_pattern'].'"';
95
-        }else{$validation='';}
96
-
97
-        // validation message
98
-        if(isset($cf['validation_msg']) && $cf['validation_msg']){
99
-            $validation_msg = 'title="'.$cf['validation_msg'].'"';
100
-        }else{$validation_msg='';}
101
-        ?>
67
+	$html_var = $cf['htmlvar_name'];
68
+
69
+	// Check if there is a custom field specific filter.
70
+	if(has_filter("geodir_custom_field_input_text_{$html_var}")){
71
+		/**
72
+		 * Filter the text html by individual custom field.
73
+		 *
74
+		 * @param string $html The html to filter.
75
+		 * @param array $cf The custom field array.
76
+		 * @since 1.6.6
77
+		 */
78
+		$html = apply_filters("geodir_custom_field_input_text_{$html_var}",$html,$cf);
79
+	}
80
+
81
+	// If no html then we run the standard output.
82
+	if(empty($html)) {
83
+
84
+		ob_start(); // Start  buffering;
85
+
86
+		$value = geodir_get_cf_value($cf);
87
+		$type = $cf['type'];
88
+		//number and float validation $validation_pattern
89
+		if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';}
90
+		elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';}
91
+
92
+		//validation
93
+		if(isset($cf['validation_pattern']) && $cf['validation_pattern']){
94
+			$validation = 'pattern="'.$cf['validation_pattern'].'"';
95
+		}else{$validation='';}
96
+
97
+		// validation message
98
+		if(isset($cf['validation_msg']) && $cf['validation_msg']){
99
+			$validation_msg = 'title="'.$cf['validation_msg'].'"';
100
+		}else{$validation_msg='';}
101
+		?>
102 102
 
103 103
         <div id="<?php echo $cf['name'];?>_row"
104 104
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
105 105
             <label>
106 106
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
107
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
107
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
108 108
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
109 109
             </label>
110 110
             <input field_type="<?php echo $type;?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
@@ -116,10 +116,10 @@  discard block
 block discarded – undo
116 116
         </div>
117 117
 
118 118
         <?php
119
-        $html = ob_get_clean();
120
-    }
119
+		$html = ob_get_clean();
120
+	}
121 121
 
122
-    return $html;
122
+	return $html;
123 123
 }
124 124
 add_filter('geodir_custom_field_input_text','geodir_cfi_text',10,2);
125 125
 
@@ -135,35 +135,35 @@  discard block
 block discarded – undo
135 135
  */
136 136
 function geodir_cfi_email($html,$cf){
137 137
 
138
-    $html_var = $cf['htmlvar_name'];
138
+	$html_var = $cf['htmlvar_name'];
139 139
 
140
-    // Check if there is a custom field specific filter.
141
-    if(has_filter("geodir_custom_field_input_email_{$html_var}")){
142
-        /**
143
-         * Filter the email html by individual custom field.
144
-         *
145
-         * @param string $html The html to filter.
146
-         * @param array $cf The custom field array.
147
-         * @since 1.6.6
148
-         */
149
-        $html = apply_filters("geodir_custom_field_input_email_{$html_var}",$html,$cf);
150
-    }
140
+	// Check if there is a custom field specific filter.
141
+	if(has_filter("geodir_custom_field_input_email_{$html_var}")){
142
+		/**
143
+		 * Filter the email html by individual custom field.
144
+		 *
145
+		 * @param string $html The html to filter.
146
+		 * @param array $cf The custom field array.
147
+		 * @since 1.6.6
148
+		 */
149
+		$html = apply_filters("geodir_custom_field_input_email_{$html_var}",$html,$cf);
150
+	}
151 151
 
152
-    // If no html then we run the standard output.
153
-    if(empty($html)) {
152
+	// If no html then we run the standard output.
153
+	if(empty($html)) {
154 154
 
155
-        ob_start(); // Start  buffering;
156
-        $value = geodir_get_cf_value($cf);
155
+		ob_start(); // Start  buffering;
156
+		$value = geodir_get_cf_value($cf);
157 157
 
158
-        if ($value == $cf['default']) {
159
-            $value = '';
160
-        }?>
158
+		if ($value == $cf['default']) {
159
+			$value = '';
160
+		}?>
161 161
 
162 162
         <div id="<?php echo $cf['name'];?>_row"
163 163
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
164 164
             <label>
165 165
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
166
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
166
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
167 167
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
168 168
             </label>
169 169
             <input field_type="<?php echo $cf['type'];?>" name="<?php  echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
@@ -175,10 +175,10 @@  discard block
 block discarded – undo
175 175
         </div>
176 176
 
177 177
         <?php
178
-        $html = ob_get_clean();
179
-    }
178
+		$html = ob_get_clean();
179
+	}
180 180
 
181
-    return $html;
181
+	return $html;
182 182
 }
183 183
 add_filter('geodir_custom_field_input_email','geodir_cfi_email',10,2);
184 184
 
@@ -195,35 +195,35 @@  discard block
 block discarded – undo
195 195
  */
196 196
 function geodir_cfi_phone($html,$cf){
197 197
 
198
-    $html_var = $cf['htmlvar_name'];
198
+	$html_var = $cf['htmlvar_name'];
199 199
 
200
-    // Check if there is a custom field specific filter.
201
-    if(has_filter("geodir_custom_field_input_phone_{$html_var}")){
202
-        /**
203
-         * Filter the phone html by individual custom field.
204
-         *
205
-         * @param string $html The html to filter.
206
-         * @param array $cf The custom field array.
207
-         * @since 1.6.6
208
-         */
209
-        $html = apply_filters("geodir_custom_field_input_phone_{$html_var}",$html,$cf);
210
-    }
200
+	// Check if there is a custom field specific filter.
201
+	if(has_filter("geodir_custom_field_input_phone_{$html_var}")){
202
+		/**
203
+		 * Filter the phone html by individual custom field.
204
+		 *
205
+		 * @param string $html The html to filter.
206
+		 * @param array $cf The custom field array.
207
+		 * @since 1.6.6
208
+		 */
209
+		$html = apply_filters("geodir_custom_field_input_phone_{$html_var}",$html,$cf);
210
+	}
211 211
 
212
-    // If no html then we run the standard output.
213
-    if(empty($html)) {
212
+	// If no html then we run the standard output.
213
+	if(empty($html)) {
214 214
 
215
-        ob_start(); // Start  buffering;
216
-        $value = geodir_get_cf_value($cf);
215
+		ob_start(); // Start  buffering;
216
+		$value = geodir_get_cf_value($cf);
217 217
 
218
-        if ($value == $cf['default']) {
219
-            $value = '';
220
-        }?>
218
+		if ($value == $cf['default']) {
219
+			$value = '';
220
+		}?>
221 221
 
222 222
         <div id="<?php echo $cf['name'];?>_row"
223 223
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
224 224
             <label>
225 225
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
226
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
226
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
227 227
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
228 228
             </label>
229 229
             <input field_type="<?php echo $cf['type'];?>" name="<?php  echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
@@ -235,10 +235,10 @@  discard block
 block discarded – undo
235 235
         </div>
236 236
 
237 237
         <?php
238
-        $html = ob_get_clean();
239
-    }
238
+		$html = ob_get_clean();
239
+	}
240 240
 
241
-    return $html;
241
+	return $html;
242 242
 }
243 243
 add_filter('geodir_custom_field_input_phone','geodir_cfi_phone',10,2);
244 244
 
@@ -255,35 +255,35 @@  discard block
 block discarded – undo
255 255
  */
256 256
 function geodir_cfi_url($html,$cf){
257 257
 
258
-    $html_var = $cf['htmlvar_name'];
258
+	$html_var = $cf['htmlvar_name'];
259 259
 
260
-    // Check if there is a custom field specific filter.
261
-    if(has_filter("geodir_custom_field_input_url_{$html_var}")){
262
-        /**
263
-         * Filter the url html by individual custom field.
264
-         *
265
-         * @param string $html The html to filter.
266
-         * @param array $cf The custom field array.
267
-         * @since 1.6.6
268
-         */
269
-        $html = apply_filters("geodir_custom_field_input_url_{$html_var}",$html,$cf);
270
-    }
260
+	// Check if there is a custom field specific filter.
261
+	if(has_filter("geodir_custom_field_input_url_{$html_var}")){
262
+		/**
263
+		 * Filter the url html by individual custom field.
264
+		 *
265
+		 * @param string $html The html to filter.
266
+		 * @param array $cf The custom field array.
267
+		 * @since 1.6.6
268
+		 */
269
+		$html = apply_filters("geodir_custom_field_input_url_{$html_var}",$html,$cf);
270
+	}
271 271
 
272
-    // If no html then we run the standard output.
273
-    if(empty($html)) {
272
+	// If no html then we run the standard output.
273
+	if(empty($html)) {
274 274
 
275
-        ob_start(); // Start  buffering;
276
-        $value = geodir_get_cf_value($cf);
275
+		ob_start(); // Start  buffering;
276
+		$value = geodir_get_cf_value($cf);
277 277
 
278
-        if ($value == $cf['default']) {
279
-            $value = '';
280
-        }?>
278
+		if ($value == $cf['default']) {
279
+			$value = '';
280
+		}?>
281 281
 
282 282
         <div id="<?php echo $cf['name'];?>_row"
283 283
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
284 284
             <label>
285 285
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
286
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
286
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
287 287
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
288 288
             </label>
289 289
             <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
@@ -298,10 +298,10 @@  discard block
 block discarded – undo
298 298
         </div>
299 299
 
300 300
         <?php
301
-        $html = ob_get_clean();
302
-    }
301
+		$html = ob_get_clean();
302
+	}
303 303
 
304
-    return $html;
304
+	return $html;
305 305
 }
306 306
 add_filter('geodir_custom_field_input_url','geodir_cfi_url',10,2);
307 307
 
@@ -317,48 +317,48 @@  discard block
 block discarded – undo
317 317
  */
318 318
 function geodir_cfi_radio($html,$cf){
319 319
 
320
-    $html_var = $cf['htmlvar_name'];
320
+	$html_var = $cf['htmlvar_name'];
321 321
 
322
-    // Check if there is a custom field specific filter.
323
-    if(has_filter("geodir_custom_field_input_radio_{$html_var}")){
324
-        /**
325
-         * Filter the radio html by individual custom field.
326
-         *
327
-         * @param string $html The html to filter.
328
-         * @param array $cf The custom field array.
329
-         * @since 1.6.6
330
-         */
331
-        $html = apply_filters("geodir_custom_field_input_radio_{$html_var}",$html,$cf);
332
-    }
322
+	// Check if there is a custom field specific filter.
323
+	if(has_filter("geodir_custom_field_input_radio_{$html_var}")){
324
+		/**
325
+		 * Filter the radio html by individual custom field.
326
+		 *
327
+		 * @param string $html The html to filter.
328
+		 * @param array $cf The custom field array.
329
+		 * @since 1.6.6
330
+		 */
331
+		$html = apply_filters("geodir_custom_field_input_radio_{$html_var}",$html,$cf);
332
+	}
333 333
 
334
-    // If no html then we run the standard output.
335
-    if(empty($html)) {
334
+	// If no html then we run the standard output.
335
+	if(empty($html)) {
336 336
 
337
-        ob_start(); // Start  buffering;
338
-        $value = geodir_get_cf_value($cf);
337
+		ob_start(); // Start  buffering;
338
+		$value = geodir_get_cf_value($cf);
339 339
 
340
-        ?>
340
+		?>
341 341
         <div id="<?php echo $cf['name'];?>_row"
342 342
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
343 343
             <label>
344 344
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
345
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
345
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
346 346
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
347 347
             </label>
348 348
             <?php if ($cf['option_values']) {
349
-                $option_values = geodir_string_values_to_options($cf['option_values'], true);
349
+				$option_values = geodir_string_values_to_options($cf['option_values'], true);
350 350
 
351
-                if (!empty($option_values)) {
352
-                    foreach ($option_values as $option_value) {
353
-                        if (empty($option_value['optgroup'])) {
354
-                            ?>
351
+				if (!empty($option_values)) {
352
+					foreach ($option_values as $option_value) {
353
+						if (empty($option_value['optgroup'])) {
354
+							?>
355 355
                             <span class="gd-radios"><input name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" <?php checked($value, $option_value['value']);?> value="<?php echo esc_attr($option_value['value']); ?>" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="radio" /><?php echo $option_value['label']; ?></span>
356 356
                             <?php
357
-                        }
358
-                    }
359
-                }
360
-            }
361
-            ?>
357
+						}
358
+					}
359
+				}
360
+			}
361
+			?>
362 362
             <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
363 363
             <?php if ($cf['is_required']) { ?>
364 364
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
@@ -366,10 +366,10 @@  discard block
 block discarded – undo
366 366
         </div>
367 367
 
368 368
         <?php
369
-        $html = ob_get_clean();
370
-    }
369
+		$html = ob_get_clean();
370
+	}
371 371
 
372
-    return $html;
372
+	return $html;
373 373
 }
374 374
 add_filter('geodir_custom_field_input_radio','geodir_cfi_radio',10,2);
375 375
 
@@ -385,46 +385,46 @@  discard block
 block discarded – undo
385 385
  */
386 386
 function geodir_cfi_checkbox($html,$cf){
387 387
 
388
-    $html_var = $cf['htmlvar_name'];
388
+	$html_var = $cf['htmlvar_name'];
389 389
 
390
-    // Check if there is a custom field specific filter.
391
-    if(has_filter("geodir_custom_field_input_checkbox_{$html_var}")){
392
-        /**
393
-         * Filter the checkbox html by individual custom field.
394
-         *
395
-         * @param string $html The html to filter.
396
-         * @param array $cf The custom field array.
397
-         * @since 1.6.6
398
-         */
399
-        $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}",$html,$cf);
400
-    }
390
+	// Check if there is a custom field specific filter.
391
+	if(has_filter("geodir_custom_field_input_checkbox_{$html_var}")){
392
+		/**
393
+		 * Filter the checkbox html by individual custom field.
394
+		 *
395
+		 * @param string $html The html to filter.
396
+		 * @param array $cf The custom field array.
397
+		 * @since 1.6.6
398
+		 */
399
+		$html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}",$html,$cf);
400
+	}
401 401
 
402
-    // If no html then we run the standard output.
403
-    if(empty($html)) {
402
+	// If no html then we run the standard output.
403
+	if(empty($html)) {
404 404
 
405
-        ob_start(); // Start  buffering;
406
-        $value = geodir_get_cf_value($cf);
405
+		ob_start(); // Start  buffering;
406
+		$value = geodir_get_cf_value($cf);
407 407
 
408 408
 
409
-        if ($value == '' && $cf['default']) {
410
-            $value = '1';
411
-        }
412
-        ?>
409
+		if ($value == '' && $cf['default']) {
410
+			$value = '1';
411
+		}
412
+		?>
413 413
 
414 414
         <div id="<?php echo $cf['name'];?>_row"
415 415
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
416 416
             <label>
417 417
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
418
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
418
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
419 419
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
420 420
             </label>
421 421
             <?php if ($value != '1') {
422
-                $value = '0';
423
-            }?>
422
+				$value = '0';
423
+			}?>
424 424
             <input type="hidden" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" value="<?php echo esc_attr($value);?>"/>
425 425
             <input  <?php if ($value == '1') {
426
-                echo 'checked="checked"';
427
-            }?>  value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox"
426
+				echo 'checked="checked"';
427
+			}?>  value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox"
428 428
                  onchange="if(this.checked){jQuery('#<?php echo $cf['name'];?>').val('1');} else{ jQuery('#<?php echo $cf['name'];?>').val('0');}"/>
429 429
             <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
430 430
             <?php if ($cf['is_required']) { ?>
@@ -433,10 +433,10 @@  discard block
 block discarded – undo
433 433
         </div>
434 434
 
435 435
         <?php
436
-        $html = ob_get_clean();
437
-    }
436
+		$html = ob_get_clean();
437
+	}
438 438
 
439
-    return $html;
439
+	return $html;
440 440
 }
441 441
 add_filter('geodir_custom_field_input_checkbox','geodir_cfi_checkbox',10,2);
442 442
 
@@ -452,52 +452,52 @@  discard block
 block discarded – undo
452 452
  */
453 453
 function geodir_cfi_textarea($html,$cf){
454 454
 
455
-    $html_var = $cf['htmlvar_name'];
455
+	$html_var = $cf['htmlvar_name'];
456 456
 
457
-    // Check if there is a custom field specific filter.
458
-    if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){
459
-        /**
460
-         * Filter the textarea html by individual custom field.
461
-         *
462
-         * @param string $html The html to filter.
463
-         * @param array $cf The custom field array.
464
-         * @since 1.6.6
465
-         */
466
-        $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf);
467
-    }
457
+	// Check if there is a custom field specific filter.
458
+	if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){
459
+		/**
460
+		 * Filter the textarea html by individual custom field.
461
+		 *
462
+		 * @param string $html The html to filter.
463
+		 * @param array $cf The custom field array.
464
+		 * @since 1.6.6
465
+		 */
466
+		$html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf);
467
+	}
468 468
 
469
-    // If no html then we run the standard output.
470
-    if(empty($html)) {
469
+	// If no html then we run the standard output.
470
+	if(empty($html)) {
471 471
 
472
-        ob_start(); // Start  buffering;
473
-        $value = geodir_get_cf_value($cf);
472
+		ob_start(); // Start  buffering;
473
+		$value = geodir_get_cf_value($cf);
474 474
 
475
-        $extra_fields = unserialize($cf['extra_fields']);
476
-        ?>
475
+		$extra_fields = unserialize($cf['extra_fields']);
476
+		?>
477 477
 
478 478
         <div id="<?php echo $cf['name'];?>_row"
479 479
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
480 480
             <label>
481 481
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
482
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
482
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
483 483
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
484 484
             </label><?php
485 485
 
486 486
 
487
-            if (is_array($extra_fields) && in_array('1', $extra_fields)) {
487
+			if (is_array($extra_fields) && in_array('1', $extra_fields)) {
488 488
 
489
-                $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);?>
489
+				$editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);?>
490 490
 
491 491
             <div class="editor" field_id="<?php echo $cf['name'];?>" field_type="editor">
492 492
                 <?php wp_editor(stripslashes($value), $cf['name'], $editor_settings); ?>
493 493
                 </div><?php
494 494
 
495
-            } else {
495
+			} else {
496 496
 
497
-                ?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>"
497
+				?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>"
498 498
                             id="<?php echo $cf['name'];?>"><?php echo stripslashes($value);?></textarea><?php
499 499
 
500
-            }?>
500
+			}?>
501 501
 
502 502
 
503 503
             <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
@@ -507,10 +507,10 @@  discard block
 block discarded – undo
507 507
         </div>
508 508
 
509 509
         <?php
510
-        $html = ob_get_clean();
511
-    }
510
+		$html = ob_get_clean();
511
+	}
512 512
 
513
-    return $html;
513
+	return $html;
514 514
 }
515 515
 add_filter('geodir_custom_field_input_textarea','geodir_cfi_textarea',10,2);
516 516
 
@@ -526,53 +526,53 @@  discard block
 block discarded – undo
526 526
  */
527 527
 function geodir_cfi_select($html,$cf){
528 528
 
529
-    $html_var = $cf['htmlvar_name'];
529
+	$html_var = $cf['htmlvar_name'];
530 530
 
531
-    // Check if there is a custom field specific filter.
532
-    if(has_filter("geodir_custom_field_input_select_{$html_var}")){
533
-        /**
534
-         * Filter the select html by individual custom field.
535
-         *
536
-         * @param string $html The html to filter.
537
-         * @param array $cf The custom field array.
538
-         * @since 1.6.6
539
-         */
540
-        $html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf);
541
-    }
531
+	// Check if there is a custom field specific filter.
532
+	if(has_filter("geodir_custom_field_input_select_{$html_var}")){
533
+		/**
534
+		 * Filter the select html by individual custom field.
535
+		 *
536
+		 * @param string $html The html to filter.
537
+		 * @param array $cf The custom field array.
538
+		 * @since 1.6.6
539
+		 */
540
+		$html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf);
541
+	}
542 542
 
543
-    // If no html then we run the standard output.
544
-    if(empty($html)) {
543
+	// If no html then we run the standard output.
544
+	if(empty($html)) {
545 545
 
546
-        ob_start(); // Start  buffering;
547
-        $value = geodir_get_cf_value($cf);
546
+		ob_start(); // Start  buffering;
547
+		$value = geodir_get_cf_value($cf);
548 548
 
549
-        ?>
549
+		?>
550 550
         <div id="<?php echo $cf['name'];?>_row"
551 551
              class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
552 552
             <label>
553 553
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
554
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
554
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
555 555
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
556 556
             </label>
557 557
             <?php
558
-            $option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
559
-            $select_options = '';
560
-            if (!empty($option_values_arr)) {
561
-                foreach ($option_values_arr as $option_row) {
562
-                    if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) {
563
-                        $option_label = isset($option_row['label']) ? $option_row['label'] : '';
564
-
565
-                        $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
566
-                    } else {
567
-                        $option_label = isset($option_row['label']) ? $option_row['label'] : '';
568
-                        $option_value = isset($option_row['value']) ? $option_row['value'] : '';
569
-                        $selected = $option_value == $value ? 'selected="selected"' : '';
570
-
571
-                        $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
572
-                    }
573
-                }
574
-            }
575
-            ?>
558
+			$option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
559
+			$select_options = '';
560
+			if (!empty($option_values_arr)) {
561
+				foreach ($option_values_arr as $option_row) {
562
+					if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) {
563
+						$option_label = isset($option_row['label']) ? $option_row['label'] : '';
564
+
565
+						$select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
566
+					} else {
567
+						$option_label = isset($option_row['label']) ? $option_row['label'] : '';
568
+						$option_value = isset($option_row['value']) ? $option_row['value'] : '';
569
+						$selected = $option_value == $value ? 'selected="selected"' : '';
570
+
571
+						$select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
572
+					}
573
+				}
574
+			}
575
+			?>
576 576
             <select field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
577 577
                     class="geodir_textfield textfield_x chosen_select"
578 578
                     data-placeholder="<?php echo __('Choose', 'geodirectory') . ' ' . $site_title . '&hellip;';?>"
@@ -584,10 +584,10 @@  discard block
 block discarded – undo
584 584
         </div>
585 585
 
586 586
         <?php
587
-        $html = ob_get_clean();
588
-    }
587
+		$html = ob_get_clean();
588
+	}
589 589
 
590
-    return $html;
590
+	return $html;
591 591
 }
592 592
 add_filter('geodir_custom_field_input_select','geodir_cfi_select',10,2);
593 593
 
@@ -603,36 +603,36 @@  discard block
 block discarded – undo
603 603
  */
604 604
 function geodir_cfi_multiselect($html,$cf){
605 605
 
606
-    $html_var = $cf['htmlvar_name'];
607
-
608
-    // Check if there is a custom field specific filter.
609
-    if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){
610
-        /**
611
-         * Filter the multiselect html by individual custom field.
612
-         *
613
-         * @param string $html The html to filter.
614
-         * @param array $cf The custom field array.
615
-         * @since 1.6.6
616
-         */
617
-        $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf);
618
-    }
619
-
620
-    // If no html then we run the standard output.
621
-    if(empty($html)) {
622
-
623
-        ob_start(); // Start  buffering;
624
-        $value = geodir_get_cf_value($cf);
625
-
626
-        $multi_display = 'select';
627
-        if (!empty($cf['extra_fields'])) {
628
-            $multi_display = unserialize($cf['extra_fields']);
629
-        }
630
-        ?>
606
+	$html_var = $cf['htmlvar_name'];
607
+
608
+	// Check if there is a custom field specific filter.
609
+	if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){
610
+		/**
611
+		 * Filter the multiselect html by individual custom field.
612
+		 *
613
+		 * @param string $html The html to filter.
614
+		 * @param array $cf The custom field array.
615
+		 * @since 1.6.6
616
+		 */
617
+		$html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf);
618
+	}
619
+
620
+	// If no html then we run the standard output.
621
+	if(empty($html)) {
622
+
623
+		ob_start(); // Start  buffering;
624
+		$value = geodir_get_cf_value($cf);
625
+
626
+		$multi_display = 'select';
627
+		if (!empty($cf['extra_fields'])) {
628
+			$multi_display = unserialize($cf['extra_fields']);
629
+		}
630
+		?>
631 631
         <div id="<?php echo $cf['name']; ?>_row"
632 632
              class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
633 633
             <label>
634 634
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
635
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
635
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
636 636
                 <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
637 637
             </label>
638 638
             <input type="hidden" name="gd_field_<?php echo $cf['name']; ?>" value="1"/>
@@ -643,55 +643,55 @@  discard block
 block discarded – undo
643 643
                         data-placeholder="<?php _e('Select', 'geodirectory'); ?>"
644 644
                         option-ajaxchosen="false">
645 645
                     <?php
646
-                    } else {
647
-                        echo '<ul class="gd_multi_choice">';
648
-                    }
649
-
650
-                    $option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
651
-                    $select_options = '';
652
-                    if (!empty($option_values_arr)) {
653
-                        foreach ($option_values_arr as $option_row) {
654
-                            if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) {
655
-                                $option_label = isset($option_row['label']) ? $option_row['label'] : '';
656
-
657
-                                if ($multi_display == 'select') {
658
-                                    $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
659
-                                } else {
660
-                                    $select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : '';
661
-                                }
662
-                            } else {
663
-                                $option_label = isset($option_row['label']) ? $option_row['label'] : '';
664
-                                $option_value = isset($option_row['value']) ? $option_row['value'] : '';
665
-                                $selected = $option_value == $value ? 'selected="selected"' : '';
666
-                                $selected = '';
667
-                                $checked = '';
668
-
669
-                                if ((!is_array($value) && trim($value) != '') || (is_array($value) && !empty($value))) {
670
-                                    if (!is_array($value)) {
671
-                                        $value_array = explode(',', $value);
672
-                                    } else {
673
-                                        $value_array = $value;
674
-                                    }
675
-
676
-                                    if (is_array($value_array)) {
677
-                                        if (in_array($option_value, $value_array)) {
678
-                                            $selected = 'selected="selected"';
679
-                                            $checked = 'checked="checked"';
680
-                                        }
681
-                                    }
682
-                                }
683
-
684
-                                if ($multi_display == 'select') {
685
-                                    $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
686
-                                } else {
687
-                                    $select_options .= '<li><input name="' . $cf['name'] . '[]" ' . $checked . ' value="' . esc_attr($option_value) . '" class="gd-' . $multi_display . '" field_type="' . $multi_display . '" type="' . $multi_display . '" />&nbsp;' . $option_label . ' </li>';
688
-                                }
689
-                            }
690
-                        }
691
-                    }
692
-                    echo $select_options;
693
-
694
-                    if ($multi_display == 'select') { ?></select></div>
646
+					} else {
647
+						echo '<ul class="gd_multi_choice">';
648
+					}
649
+
650
+					$option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
651
+					$select_options = '';
652
+					if (!empty($option_values_arr)) {
653
+						foreach ($option_values_arr as $option_row) {
654
+							if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) {
655
+								$option_label = isset($option_row['label']) ? $option_row['label'] : '';
656
+
657
+								if ($multi_display == 'select') {
658
+									$select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
659
+								} else {
660
+									$select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : '';
661
+								}
662
+							} else {
663
+								$option_label = isset($option_row['label']) ? $option_row['label'] : '';
664
+								$option_value = isset($option_row['value']) ? $option_row['value'] : '';
665
+								$selected = $option_value == $value ? 'selected="selected"' : '';
666
+								$selected = '';
667
+								$checked = '';
668
+
669
+								if ((!is_array($value) && trim($value) != '') || (is_array($value) && !empty($value))) {
670
+									if (!is_array($value)) {
671
+										$value_array = explode(',', $value);
672
+									} else {
673
+										$value_array = $value;
674
+									}
675
+
676
+									if (is_array($value_array)) {
677
+										if (in_array($option_value, $value_array)) {
678
+											$selected = 'selected="selected"';
679
+											$checked = 'checked="checked"';
680
+										}
681
+									}
682
+								}
683
+
684
+								if ($multi_display == 'select') {
685
+									$select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
686
+								} else {
687
+									$select_options .= '<li><input name="' . $cf['name'] . '[]" ' . $checked . ' value="' . esc_attr($option_value) . '" class="gd-' . $multi_display . '" field_type="' . $multi_display . '" type="' . $multi_display . '" />&nbsp;' . $option_label . ' </li>';
688
+								}
689
+							}
690
+						}
691
+					}
692
+					echo $select_options;
693
+
694
+					if ($multi_display == 'select') { ?></select></div>
695 695
         <?php } else { ?></ul><?php } ?>
696 696
             <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
697 697
             <?php if ($cf['is_required']) { ?>
@@ -699,10 +699,10 @@  discard block
 block discarded – undo
699 699
             <?php } ?>
700 700
         </div>
701 701
         <?php
702
-        $html = ob_get_clean();
703
-    }
702
+		$html = ob_get_clean();
703
+	}
704 704
 
705
-    return $html;
705
+	return $html;
706 706
 }
707 707
 add_filter('geodir_custom_field_input_multiselect','geodir_cfi_multiselect',10,2);
708 708
 
@@ -718,32 +718,32 @@  discard block
 block discarded – undo
718 718
  */
719 719
 function geodir_cfi_html($html,$cf){
720 720
 
721
-    $html_var = $cf['htmlvar_name'];
721
+	$html_var = $cf['htmlvar_name'];
722 722
 
723
-    // Check if there is a custom field specific filter.
724
-    if(has_filter("geodir_custom_field_input_html_{$html_var}")){
725
-        /**
726
-         * Filter the html html by individual custom field.
727
-         *
728
-         * @param string $html The html to filter.
729
-         * @param array $cf The custom field array.
730
-         * @since 1.6.6
731
-         */
732
-        $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf);
733
-    }
723
+	// Check if there is a custom field specific filter.
724
+	if(has_filter("geodir_custom_field_input_html_{$html_var}")){
725
+		/**
726
+		 * Filter the html html by individual custom field.
727
+		 *
728
+		 * @param string $html The html to filter.
729
+		 * @param array $cf The custom field array.
730
+		 * @since 1.6.6
731
+		 */
732
+		$html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf);
733
+	}
734 734
 
735
-    // If no html then we run the standard output.
736
-    if(empty($html)) {
735
+	// If no html then we run the standard output.
736
+	if(empty($html)) {
737 737
 
738
-        ob_start(); // Start  buffering;
739
-        $value = geodir_get_cf_value($cf);
740
-        ?>
738
+		ob_start(); // Start  buffering;
739
+		$value = geodir_get_cf_value($cf);
740
+		?>
741 741
 
742 742
         <div id="<?php echo $cf['name']; ?>_row"
743 743
              class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
744 744
             <label>
745 745
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
746
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
746
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
747 747
                 <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
748 748
             </label>
749 749
 
@@ -761,10 +761,10 @@  discard block
 block discarded – undo
761 761
         </div>
762 762
 
763 763
         <?php
764
-        $html = ob_get_clean();
765
-    }
764
+		$html = ob_get_clean();
765
+	}
766 766
 
767
-    return $html;
767
+	return $html;
768 768
 }
769 769
 add_filter('geodir_custom_field_input_html','geodir_cfi_html',10,2);
770 770
 
@@ -781,68 +781,68 @@  discard block
 block discarded – undo
781 781
  */
782 782
 function geodir_cfi_datepicker($html,$cf){
783 783
 
784
-    $html_var = $cf['htmlvar_name'];
784
+	$html_var = $cf['htmlvar_name'];
785 785
 
786
-    // Check if there is a custom field specific filter.
787
-    if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){
788
-        /**
789
-         * Filter the datepicker html by individual custom field.
790
-         *
791
-         * @param string $html The html to filter.
792
-         * @param array $cf The custom field array.
793
-         * @since 1.6.6
794
-         */
795
-        $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf);
796
-    }
786
+	// Check if there is a custom field specific filter.
787
+	if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){
788
+		/**
789
+		 * Filter the datepicker html by individual custom field.
790
+		 *
791
+		 * @param string $html The html to filter.
792
+		 * @param array $cf The custom field array.
793
+		 * @since 1.6.6
794
+		 */
795
+		$html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf);
796
+	}
797 797
 
798
-    // If no html then we run the standard output.
799
-    if(empty($html)) {
798
+	// If no html then we run the standard output.
799
+	if(empty($html)) {
800 800
 
801
-        ob_start(); // Start  buffering;
802
-        $value = geodir_get_cf_value($cf);
801
+		ob_start(); // Start  buffering;
802
+		$value = geodir_get_cf_value($cf);
803 803
 
804
-        $extra_fields = unserialize($cf['extra_fields']);
805
-        $name = $cf['name'];
804
+		$extra_fields = unserialize($cf['extra_fields']);
805
+		$name = $cf['name'];
806 806
 
807
-        if ($extra_fields['date_format'] == '')
808
-            $extra_fields['date_format'] = 'yy-mm-dd';
807
+		if ($extra_fields['date_format'] == '')
808
+			$extra_fields['date_format'] = 'yy-mm-dd';
809 809
 
810
-        $date_format = $extra_fields['date_format'];
811
-        $jquery_date_format  = $date_format;
810
+		$date_format = $extra_fields['date_format'];
811
+		$jquery_date_format  = $date_format;
812 812
 
813 813
 
814
-        // check if we need to change the format or not
815
-        $date_format_len = strlen(str_replace(' ', '', $date_format));
816
-        if($date_format_len>5){// if greater then 5 then it's the old style format.
814
+		// check if we need to change the format or not
815
+		$date_format_len = strlen(str_replace(' ', '', $date_format));
816
+		if($date_format_len>5){// if greater then 5 then it's the old style format.
817 817
 
818
-            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
819
-            $replace = array('d','j','l','m','n','F','Y');//PHP date format
818
+			$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
819
+			$replace = array('d','j','l','m','n','F','Y');//PHP date format
820 820
 
821
-            $date_format = str_replace($search, $replace, $date_format);
822
-        }else{
823
-            $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
824
-        }
821
+			$date_format = str_replace($search, $replace, $date_format);
822
+		}else{
823
+			$jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
824
+		}
825 825
 
826
-        if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty
827
-        if($value && !isset($_REQUEST['backandedit'])) {
828
-            //$time = strtotime($value);
829
-            //$value = date_i18n($date_format, $time);
830
-        }
831
-        $value = geodir_date($value, 'Y-m-d', $date_format);
826
+		if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty
827
+		if($value && !isset($_REQUEST['backandedit'])) {
828
+			//$time = strtotime($value);
829
+			//$value = date_i18n($date_format, $time);
830
+		}
831
+		$value = geodir_date($value, 'Y-m-d', $date_format);
832 832
 
833
-        ?>
833
+		?>
834 834
         <script type="text/javascript">
835 835
 
836 836
             jQuery(function () {
837 837
 
838 838
                 jQuery("#<?php echo $cf['name'];?>").datepicker({changeMonth: true, changeYear: true <?php
839
-                    /**
840
-                     * Used to add extra option to datepicker per custom field.
841
-                     *
842
-                     * @since 1.5.7
843
-                     * @param string $name The custom field name.
844
-                     */
845
-                    echo apply_filters("gd_datepicker_extra_{$name}",'');?>});
839
+					/**
840
+					 * Used to add extra option to datepicker per custom field.
841
+					 *
842
+					 * @since 1.5.7
843
+					 * @param string $name The custom field name.
844
+					 */
845
+					echo apply_filters("gd_datepicker_extra_{$name}",'');?>});
846 846
 
847 847
                 jQuery("#<?php echo $name;?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format;?>');
848 848
 
@@ -858,7 +858,7 @@  discard block
 block discarded – undo
858 858
             <label>
859 859
 
860 860
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
861
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
861
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
862 862
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
863 863
             </label>
864 864
 
@@ -872,10 +872,10 @@  discard block
 block discarded – undo
872 872
         </div>
873 873
 
874 874
         <?php
875
-        $html = ob_get_clean();
876
-    }
875
+		$html = ob_get_clean();
876
+	}
877 877
 
878
-    return $html;
878
+	return $html;
879 879
 }
880 880
 add_filter('geodir_custom_field_input_datepicker','geodir_cfi_datepicker',10,2);
881 881
 
@@ -891,31 +891,31 @@  discard block
 block discarded – undo
891 891
  */
892 892
 function geodir_cfi_time($html,$cf){
893 893
 
894
-    $html_var = $cf['htmlvar_name'];
894
+	$html_var = $cf['htmlvar_name'];
895 895
 
896
-    // Check if there is a custom field specific filter.
897
-    if(has_filter("geodir_custom_field_input_time_{$html_var}")){
898
-        /**
899
-         * Filter the time html by individual custom field.
900
-         *
901
-         * @param string $html The html to filter.
902
-         * @param array $cf The custom field array.
903
-         * @since 1.6.6
904
-         */
905
-        $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf);
906
-    }
896
+	// Check if there is a custom field specific filter.
897
+	if(has_filter("geodir_custom_field_input_time_{$html_var}")){
898
+		/**
899
+		 * Filter the time html by individual custom field.
900
+		 *
901
+		 * @param string $html The html to filter.
902
+		 * @param array $cf The custom field array.
903
+		 * @since 1.6.6
904
+		 */
905
+		$html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf);
906
+	}
907 907
 
908
-    // If no html then we run the standard output.
909
-    if(empty($html)) {
908
+	// If no html then we run the standard output.
909
+	if(empty($html)) {
910 910
 
911
-        ob_start(); // Start  buffering;
912
-        $value = geodir_get_cf_value($cf);
911
+		ob_start(); // Start  buffering;
912
+		$value = geodir_get_cf_value($cf);
913 913
 
914
-        $name = $cf['name'];
914
+		$name = $cf['name'];
915 915
 
916
-        if ($value != '')
917
-            $value = date('H:i', strtotime($value));
918
-        ?>
916
+		if ($value != '')
917
+			$value = date('H:i', strtotime($value));
918
+		?>
919 919
         <script type="text/javascript">
920 920
             jQuery(document).ready(function () {
921 921
 
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
             <label>
932 932
 
933 933
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
934
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
934
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
935 935
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
936 936
             </label>
937 937
             <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>"
@@ -943,10 +943,10 @@  discard block
 block discarded – undo
943 943
             <?php } ?>
944 944
         </div>
945 945
         <?php
946
-        $html = ob_get_clean();
947
-    }
946
+		$html = ob_get_clean();
947
+	}
948 948
 
949
-    return $html;
949
+	return $html;
950 950
 }
951 951
 add_filter('geodir_custom_field_input_time','geodir_cfi_time',10,2);
952 952
 
@@ -962,100 +962,100 @@  discard block
 block discarded – undo
962 962
  */
963 963
 function geodir_cfi_address($html,$cf){
964 964
 
965
-    $html_var = $cf['htmlvar_name'];
966
-
967
-    // Check if there is a custom field specific filter.
968
-    if(has_filter("geodir_custom_field_input_address_{$html_var}")){
969
-        /**
970
-         * Filter the address html by individual custom field.
971
-         *
972
-         * @param string $html The html to filter.
973
-         * @param array $cf The custom field array.
974
-         * @since 1.6.6
975
-         */
976
-        $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf);
977
-    }
978
-
979
-    // If no html then we run the standard output.
980
-    if(empty($html)) {
981
-
982
-        global $gd_session;
983
-        ob_start(); // Start  buffering;
984
-        $value = geodir_get_cf_value($cf);
985
-        $name = $cf['name'];
986
-        $type = $cf['type'];
987
-        $admin_desc = $cf['desc'];
988
-        $is_required = $cf['is_required'];
989
-        $required_msg = $cf['required_msg'];
990
-        $site_title = $cf['site_title'];
991
-        $is_admin = $cf['is_admin'];
992
-        $extra_fields = unserialize($cf['extra_fields']);
993
-        $prefix = $name . '_';
994
-
995
-        ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address');
996
-        ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code ');
997
-        ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map');
998
-        ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview');
999
-
1000
-        $address = '';
1001
-        $zip = '';
1002
-        $mapview = '';
1003
-        $mapzoom = '';
1004
-        $lat = '';
1005
-        $lng = '';
1006
-
1007
-        if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1008
-            $post = $gd_ses_listing;
1009
-            $address = $post[$prefix . 'address'];
1010
-            $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : '';
1011
-            $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : '';
1012
-            $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : '';
1013
-            $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : '';
1014
-            $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : '';
1015
-        } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) {
1016
-            $post_info = (array)$post_info;
1017
-
1018
-            $address = $post_info[$prefix . 'address'];
1019
-            $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : '';
1020
-            $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : '';
1021
-            $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : '';
1022
-            $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : '';
1023
-            $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : '';
1024
-        }
1025
-
1026
-        $location = geodir_get_default_location();
1027
-        if (empty($city)) $city = isset($location->city) ? $location->city : '';
1028
-        if (empty($region)) $region = isset($location->region) ? $location->region : '';
1029
-        if (empty($country)) $country = isset($location->country) ? $location->country : '';
1030
-
1031
-        $lat_lng_blank = false;
1032
-        if (empty($lat) && empty($lng)) {
1033
-            $lat_lng_blank = true;
1034
-        }
1035
-
1036
-        if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : '';
1037
-        if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : '';
1038
-
1039
-        /**
1040
-         * Filter the default latitude.
1041
-         *
1042
-         * @since 1.0.0
1043
-         *
1044
-         * @param float $lat Default latitude.
1045
-         * @param bool $is_admin For admin use only?.
1046
-         */
1047
-        $lat = apply_filters('geodir_default_latitude', $lat, $is_admin);
1048
-        /**
1049
-         * Filter the default longitude.
1050
-         *
1051
-         * @since 1.0.0
1052
-         *
1053
-         * @param float $lat Default longitude.
1054
-         * @param bool $is_admin For admin use only?.
1055
-         */
1056
-        $lng = apply_filters('geodir_default_longitude', $lng, $is_admin);
1057
-
1058
-        ?>
965
+	$html_var = $cf['htmlvar_name'];
966
+
967
+	// Check if there is a custom field specific filter.
968
+	if(has_filter("geodir_custom_field_input_address_{$html_var}")){
969
+		/**
970
+		 * Filter the address html by individual custom field.
971
+		 *
972
+		 * @param string $html The html to filter.
973
+		 * @param array $cf The custom field array.
974
+		 * @since 1.6.6
975
+		 */
976
+		$html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf);
977
+	}
978
+
979
+	// If no html then we run the standard output.
980
+	if(empty($html)) {
981
+
982
+		global $gd_session;
983
+		ob_start(); // Start  buffering;
984
+		$value = geodir_get_cf_value($cf);
985
+		$name = $cf['name'];
986
+		$type = $cf['type'];
987
+		$admin_desc = $cf['desc'];
988
+		$is_required = $cf['is_required'];
989
+		$required_msg = $cf['required_msg'];
990
+		$site_title = $cf['site_title'];
991
+		$is_admin = $cf['is_admin'];
992
+		$extra_fields = unserialize($cf['extra_fields']);
993
+		$prefix = $name . '_';
994
+
995
+		($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address');
996
+		($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code ');
997
+		($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map');
998
+		($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview');
999
+
1000
+		$address = '';
1001
+		$zip = '';
1002
+		$mapview = '';
1003
+		$mapzoom = '';
1004
+		$lat = '';
1005
+		$lng = '';
1006
+
1007
+		if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1008
+			$post = $gd_ses_listing;
1009
+			$address = $post[$prefix . 'address'];
1010
+			$zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : '';
1011
+			$lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : '';
1012
+			$lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : '';
1013
+			$mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : '';
1014
+			$mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : '';
1015
+		} else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) {
1016
+			$post_info = (array)$post_info;
1017
+
1018
+			$address = $post_info[$prefix . 'address'];
1019
+			$zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : '';
1020
+			$lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : '';
1021
+			$lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : '';
1022
+			$mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : '';
1023
+			$mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : '';
1024
+		}
1025
+
1026
+		$location = geodir_get_default_location();
1027
+		if (empty($city)) $city = isset($location->city) ? $location->city : '';
1028
+		if (empty($region)) $region = isset($location->region) ? $location->region : '';
1029
+		if (empty($country)) $country = isset($location->country) ? $location->country : '';
1030
+
1031
+		$lat_lng_blank = false;
1032
+		if (empty($lat) && empty($lng)) {
1033
+			$lat_lng_blank = true;
1034
+		}
1035
+
1036
+		if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : '';
1037
+		if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : '';
1038
+
1039
+		/**
1040
+		 * Filter the default latitude.
1041
+		 *
1042
+		 * @since 1.0.0
1043
+		 *
1044
+		 * @param float $lat Default latitude.
1045
+		 * @param bool $is_admin For admin use only?.
1046
+		 */
1047
+		$lat = apply_filters('geodir_default_latitude', $lat, $is_admin);
1048
+		/**
1049
+		 * Filter the default longitude.
1050
+		 *
1051
+		 * @since 1.0.0
1052
+		 *
1053
+		 * @param float $lat Default longitude.
1054
+		 * @param bool $is_admin For admin use only?.
1055
+		 */
1056
+		$lng = apply_filters('geodir_default_longitude', $lng, $is_admin);
1057
+
1058
+		?>
1059 1059
 
1060 1060
         <div id="geodir_<?php echo $prefix . 'address';?>_row"
1061 1061
              class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
@@ -1074,17 +1074,17 @@  discard block
 block discarded – undo
1074 1074
 
1075 1075
 
1076 1076
         <?php
1077
-        /**
1078
-         * Called after the address input on the add listings.
1079
-         *
1080
-         * This is used by the location manage to add further locations info etc.
1081
-         *
1082
-         * @since 1.0.0
1083
-         * @param array $cf The array of setting for the custom field. {@see geodir_custom_field_save()}.
1084
-         */
1085
-        do_action('geodir_address_extra_listing_fields', $cf);
1086
-
1087
-        if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?>
1077
+		/**
1078
+		 * Called after the address input on the add listings.
1079
+		 *
1080
+		 * This is used by the location manage to add further locations info etc.
1081
+		 *
1082
+		 * @since 1.0.0
1083
+		 * @param array $cf The array of setting for the custom field. {@see geodir_custom_field_save()}.
1084
+		 */
1085
+		do_action('geodir_address_extra_listing_fields', $cf);
1086
+
1087
+		if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?>
1088 1088
 
1089 1089
             <div id="geodir_<?php echo $prefix . 'zip'; ?>_row"
1090 1090
                  class="<?php /*if($is_required) echo 'required_field';*/ ?> geodir_form_row clearfix gd-fieldset-details">
@@ -1105,22 +1105,22 @@  discard block
 block discarded – undo
1105 1105
 
1106 1106
             <div id="geodir_<?php echo $prefix . 'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1107 1107
                 <?php
1108
-                /**
1109
-                 * Contains add listing page map functions.
1110
-                 *
1111
-                 * @since 1.0.0
1112
-                 */
1113
-                include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1114
-                if ($lat_lng_blank) {
1115
-                    $lat = '';
1116
-                    $lng = '';
1117
-                }
1118
-                ?>
1108
+				/**
1109
+				 * Contains add listing page map functions.
1110
+				 *
1111
+				 * @since 1.0.0
1112
+				 */
1113
+				include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1114
+				if ($lat_lng_blank) {
1115
+					$lat = '';
1116
+					$lng = '';
1117
+				}
1118
+				?>
1119 1119
                 <span class="geodir_message_note"><?php echo GET_MAP_MSG; ?></span>
1120 1120
             </div>
1121 1121
             <?php
1122
-            /* show lat lng */
1123
-            $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1122
+			/* show lat lng */
1123
+			$style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1124 1124
             <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row"
1125 1125
                  class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1126 1126
                 <label>
@@ -1161,27 +1161,27 @@  discard block
 block discarded – undo
1161 1161
                                                             class="gd-checkbox"
1162 1162
                                                             name="<?php echo $prefix . 'mapview'; ?>"
1163 1163
                                                             id="<?php echo $prefix . 'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') {
1164
-                            echo 'checked="checked"';
1165
-                        } ?>  value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span>
1164
+							echo 'checked="checked"';
1165
+						} ?>  value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span>
1166 1166
                     <span class="geodir_user_define"> <input field_type="<?php echo $type; ?>" type="radio"
1167 1167
                                                              class="gd-checkbox"
1168 1168
                                                              name="<?php echo $prefix . 'mapview'; ?>"
1169 1169
                                                              id="map_view1" <?php if ($mapview == 'SATELLITE') {
1170
-                            echo 'checked="checked"';
1171
-                        } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span>
1170
+							echo 'checked="checked"';
1171
+						} ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span>
1172 1172
 
1173 1173
                     <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1174 1174
                                                             class="gd-checkbox"
1175 1175
                                                             name="<?php echo $prefix . 'mapview'; ?>"
1176 1176
                                                             id="map_view2" <?php if ($mapview == 'HYBRID') {
1177
-                            echo 'checked="checked"';
1178
-                        } ?>  value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span>
1177
+							echo 'checked="checked"';
1178
+						} ?>  value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span>
1179 1179
 					<span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1180 1180
                                                             class="gd-checkbox"
1181 1181
                                                             name="<?php echo $prefix . 'mapview'; ?>"
1182 1182
                                                             id="map_view3" <?php if ($mapview == 'TERRAIN') {
1183
-                            echo 'checked="checked"';
1184
-                        } ?>  value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span>
1183
+							echo 'checked="checked"';
1184
+						} ?>  value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span>
1185 1185
 
1186 1186
 
1187 1187
             </div>
@@ -1189,14 +1189,14 @@  discard block
 block discarded – undo
1189 1189
 
1190 1190
         <?php if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { ?>
1191 1191
             <input type="hidden" value="<?php if (isset($mapzoom)) {
1192
-                echo esc_attr($mapzoom);
1193
-            } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/>
1192
+				echo esc_attr($mapzoom);
1193
+			} ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/>
1194 1194
         <?php }
1195 1195
 
1196
-        $html = ob_get_clean();
1197
-    }
1196
+		$html = ob_get_clean();
1197
+	}
1198 1198
 
1199
-    return $html;
1199
+	return $html;
1200 1200
 }
1201 1201
 add_filter('geodir_custom_field_input_address','geodir_cfi_address',10,2);
1202 1202
 
@@ -1213,137 +1213,137 @@  discard block
 block discarded – undo
1213 1213
  */
1214 1214
 function geodir_cfi_taxonomy($html,$cf){
1215 1215
 
1216
-    $html_var = $cf['htmlvar_name'];
1217
-
1218
-    // Check if there is a custom field specific filter.
1219
-    if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){
1220
-        /**
1221
-         * Filter the taxonomy html by individual custom field.
1222
-         *
1223
-         * @param string $html The html to filter.
1224
-         * @param array $cf The custom field array.
1225
-         * @since 1.6.6
1226
-         */
1227
-        $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf);
1228
-    }
1229
-
1230
-    // If no html then we run the standard output.
1231
-    if(empty($html)) {
1232
-
1233
-        ob_start(); // Start  buffering;
1234
-        $value = geodir_get_cf_value($cf);
1235
-
1236
-        $name = $cf['name'];
1237
-        $site_title = $cf['site_title'];
1238
-        $admin_desc = $cf['desc'];
1239
-        $is_required = $cf['is_required'];
1240
-        $is_admin = $cf['is_admin'];
1241
-        $required_msg = $cf['required_msg'];
1242
-
1243
-        if ($value == $cf['default']) {
1244
-            $value = '';
1245
-        } ?>
1216
+	$html_var = $cf['htmlvar_name'];
1217
+
1218
+	// Check if there is a custom field specific filter.
1219
+	if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){
1220
+		/**
1221
+		 * Filter the taxonomy html by individual custom field.
1222
+		 *
1223
+		 * @param string $html The html to filter.
1224
+		 * @param array $cf The custom field array.
1225
+		 * @since 1.6.6
1226
+		 */
1227
+		$html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf);
1228
+	}
1229
+
1230
+	// If no html then we run the standard output.
1231
+	if(empty($html)) {
1232
+
1233
+		ob_start(); // Start  buffering;
1234
+		$value = geodir_get_cf_value($cf);
1235
+
1236
+		$name = $cf['name'];
1237
+		$site_title = $cf['site_title'];
1238
+		$admin_desc = $cf['desc'];
1239
+		$is_required = $cf['is_required'];
1240
+		$is_admin = $cf['is_admin'];
1241
+		$required_msg = $cf['required_msg'];
1242
+
1243
+		if ($value == $cf['default']) {
1244
+			$value = '';
1245
+		} ?>
1246 1246
         <div id="<?php echo $name;?>_row"
1247 1247
              class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1248 1248
             <label>
1249 1249
                 <?php $site_title = __($site_title, 'geodirectory');
1250
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1250
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1251 1251
                 <?php if ($is_required) echo '<span>*</span>';?>
1252 1252
             </label>
1253 1253
 
1254 1254
             <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
1255 1255
                 <?php
1256
-                global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats;
1256
+				global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats;
1257 1257
 
1258
-                $exclude_cats = array();
1258
+				$exclude_cats = array();
1259 1259
 
1260
-                if ($is_admin == '1') {
1260
+				if ($is_admin == '1') {
1261 1261
 
1262
-                    $post_type = get_post_type();
1262
+					$post_type = get_post_type();
1263 1263
 
1264
-                    $package_info = array();
1264
+					$package_info = array();
1265 1265
 
1266
-                    $package_info = (array)geodir_post_package_info($package_info, $post, $post_type);
1266
+					$package_info = (array)geodir_post_package_info($package_info, $post, $post_type);
1267 1267
 
1268
-                    if (!empty($package_info)) {
1268
+					if (!empty($package_info)) {
1269 1269
 
1270
-                        if (isset($package_info['cat']) && $package_info['cat'] != '') {
1270
+						if (isset($package_info['cat']) && $package_info['cat'] != '') {
1271 1271
 
1272
-                            $exclude_cats = explode(',', $package_info['cat']);
1272
+							$exclude_cats = explode(',', $package_info['cat']);
1273 1273
 
1274
-                        }
1275
-                    }
1276
-                }
1274
+						}
1275
+					}
1276
+				}
1277 1277
 
1278
-                $cat_display = unserialize($cf['extra_fields']);
1278
+				$cat_display = unserialize($cf['extra_fields']);
1279 1279
 
1280
-                if (isset($_REQUEST['backandedit']) && (is_array($post_cat[$name]) && !empty($post_cat[$name]))) {
1280
+				if (isset($_REQUEST['backandedit']) && (is_array($post_cat[$name]) && !empty($post_cat[$name]))) {
1281 1281
 
1282
-                    $post_cat = implode(",", $post_cat[$name]);
1282
+					$post_cat = implode(",", $post_cat[$name]);
1283 1283
 
1284
-                } else {
1285
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
1286
-                        $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1287
-                }
1284
+				} else {
1285
+					if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
1286
+						$post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1287
+				}
1288 1288
 
1289 1289
 
1290
-                global $geodir_addon_list;
1291
-                if (!empty($geodir_addon_list) && array_key_exists('geodir_payment_manager', $geodir_addon_list) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1290
+				global $geodir_addon_list;
1291
+				if (!empty($geodir_addon_list) && array_key_exists('geodir_payment_manager', $geodir_addon_list) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1292 1292
 
1293
-                    $catadd_limit = $wpdb->get_var(
1294
-                        $wpdb->prepare(
1295
-                            "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d",
1296
-                            array($package_id)
1297
-                        )
1298
-                    );
1293
+					$catadd_limit = $wpdb->get_var(
1294
+						$wpdb->prepare(
1295
+							"SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d",
1296
+							array($package_id)
1297
+						)
1298
+					);
1299 1299
 
1300 1300
 
1301
-                } else {
1302
-                    $catadd_limit = 0;
1303
-                }
1301
+				} else {
1302
+					$catadd_limit = 0;
1303
+				}
1304 1304
 
1305 1305
 
1306
-                if ($cat_display != '' && $cat_display != 'ajax_chained') {
1306
+				if ($cat_display != '' && $cat_display != 'ajax_chained') {
1307 1307
 
1308
-                    $required_limit_msg = '';
1309
-                    if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') {
1308
+					$required_limit_msg = '';
1309
+					if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') {
1310 1310
 
1311
-                        $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory');
1311
+						$required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory');
1312 1312
 
1313
-                    } else {
1314
-                        $required_limit_msg = $required_msg;
1315
-                    }
1313
+					} else {
1314
+						$required_limit_msg = $required_msg;
1315
+					}
1316 1316
 
1317
-                    echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']"  />';
1317
+					echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']"  />';
1318 1318
 
1319 1319
 
1320
-                    if ($cat_display == 'select' || $cat_display == 'multiselect') {
1320
+					if ($cat_display == 'select' || $cat_display == 'multiselect') {
1321 1321
 
1322
-                        $cat_display == '';
1323
-                        $multiple = '';
1324
-                        if ($cat_display == 'multiselect')
1325
-                            $multiple = 'multiple="multiple"';
1322
+						$cat_display == '';
1323
+						$multiple = '';
1324
+						if ($cat_display == 'multiselect')
1325
+							$multiple = 'multiple="multiple"';
1326 1326
 
1327
-                        echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">';
1327
+						echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">';
1328 1328
 
1329 1329
 
1330
-                        if ($cat_display == 'select')
1331
-                            echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1330
+						if ($cat_display == 'select')
1331
+							echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1332 1332
 
1333
-                    }
1333
+					}
1334 1334
 
1335
-                    echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0);
1335
+					echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0);
1336 1336
 
1337
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
1338
-                        echo '</select>';
1337
+					if ($cat_display == 'select' || $cat_display == 'multiselect')
1338
+						echo '</select>';
1339 1339
 
1340
-                } else {
1340
+				} else {
1341 1341
 
1342
-                    echo geodir_custom_taxonomy_walker2($name, $catadd_limit);
1342
+					echo geodir_custom_taxonomy_walker2($name, $catadd_limit);
1343 1343
 
1344
-                }
1344
+				}
1345 1345
 
1346
-                ?>
1346
+				?>
1347 1347
             </div>
1348 1348
 
1349 1349
             <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span>
@@ -1353,10 +1353,10 @@  discard block
 block discarded – undo
1353 1353
         </div>
1354 1354
 
1355 1355
         <?php
1356
-        $html = ob_get_clean();
1357
-    }
1356
+		$html = ob_get_clean();
1357
+	}
1358 1358
 
1359
-    return $html;
1359
+	return $html;
1360 1360
 }
1361 1361
 add_filter('geodir_custom_field_input_taxonomy','geodir_cfi_taxonomy',10,2);
1362 1362
 
@@ -1372,74 +1372,74 @@  discard block
 block discarded – undo
1372 1372
  */
1373 1373
 function geodir_cfi_file($html,$cf){
1374 1374
 
1375
-    $html_var = $cf['htmlvar_name'];
1375
+	$html_var = $cf['htmlvar_name'];
1376 1376
 
1377
-    // Check if there is a custom field specific filter.
1378
-    if(has_filter("geodir_custom_field_input_file_{$html_var}")){
1379
-        /**
1380
-         * Filter the file html by individual custom field.
1381
-         *
1382
-         * @param string $html The html to filter.
1383
-         * @param array $cf The custom field array.
1384
-         * @since 1.6.6
1385
-         */
1386
-        $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf);
1387
-    }
1377
+	// Check if there is a custom field specific filter.
1378
+	if(has_filter("geodir_custom_field_input_file_{$html_var}")){
1379
+		/**
1380
+		 * Filter the file html by individual custom field.
1381
+		 *
1382
+		 * @param string $html The html to filter.
1383
+		 * @param array $cf The custom field array.
1384
+		 * @since 1.6.6
1385
+		 */
1386
+		$html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf);
1387
+	}
1388 1388
 
1389
-    // If no html then we run the standard output.
1390
-    if(empty($html)) {
1389
+	// If no html then we run the standard output.
1390
+	if(empty($html)) {
1391 1391
 
1392
-        ob_start(); // Start  buffering;
1393
-        $value = geodir_get_cf_value($cf);
1392
+		ob_start(); // Start  buffering;
1393
+		$value = geodir_get_cf_value($cf);
1394 1394
 
1395
-        $name = $cf['name'];
1396
-        $site_title = $cf['site_title'];
1397
-        $admin_desc = $cf['desc'];
1398
-        $is_required = $cf['is_required'];
1399
-        $required_msg = $cf['required_msg'];
1400
-        $extra_fields = unserialize($cf['extra_fields']);
1395
+		$name = $cf['name'];
1396
+		$site_title = $cf['site_title'];
1397
+		$admin_desc = $cf['desc'];
1398
+		$is_required = $cf['is_required'];
1399
+		$required_msg = $cf['required_msg'];
1400
+		$extra_fields = unserialize($cf['extra_fields']);
1401 1401
 
1402 1402
 
1403
-        // adjust values here
1404
-        $file_id = $name; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
1403
+		// adjust values here
1404
+		$file_id = $name; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
1405 1405
 
1406
-        if ($value != '') {
1406
+		if ($value != '') {
1407 1407
 
1408
-            $file_value = trim($value, ","); // this will be initial value of the above form field. Image urls.
1408
+			$file_value = trim($value, ","); // this will be initial value of the above form field. Image urls.
1409 1409
 
1410
-        } else
1411
-            $file_value = '';
1410
+		} else
1411
+			$file_value = '';
1412 1412
 
1413
-        if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple'])
1414
-            $file_multiple = true; // allow multiple files upload
1415
-        else
1416
-            $file_multiple = false;
1413
+		if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple'])
1414
+			$file_multiple = true; // allow multiple files upload
1415
+		else
1416
+			$file_multiple = false;
1417 1417
 
1418
-        if (isset($extra_fields['image_limit']) && $extra_fields['image_limit'])
1419
-            $file_image_limit = $extra_fields['image_limit'];
1420
-        else
1421
-            $file_image_limit = 1;
1418
+		if (isset($extra_fields['image_limit']) && $extra_fields['image_limit'])
1419
+			$file_image_limit = $extra_fields['image_limit'];
1420
+		else
1421
+			$file_image_limit = 1;
1422 1422
 
1423
-        $file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1423
+		$file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1424 1424
 
1425
-        $file_height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1425
+		$file_height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1426 1426
 
1427
-        if (!empty($file_value)) {
1428
-            $curImages = explode(',', $file_value);
1429
-            if (!empty($curImages))
1430
-                $file_totImg = count($curImages);
1431
-        }
1427
+		if (!empty($file_value)) {
1428
+			$curImages = explode(',', $file_value);
1429
+			if (!empty($curImages))
1430
+				$file_totImg = count($curImages);
1431
+		}
1432 1432
 
1433
-        $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : '';
1434
-        $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : '';
1433
+		$allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : '';
1434
+		$display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : '';
1435 1435
 
1436
-        ?>
1436
+		?>
1437 1437
         <?php /*?> <h5 class="geodir-form_title"> <?php echo $site_title; ?>
1438 1438
 				 <?php if($file_image_limit!=0 && $file_image_limit==1 ){echo '<br /><small>('.__('You can upload').' '.$file_image_limit.' '.__('image with this package').')</small>';} ?>
1439 1439
 				 <?php if($file_image_limit!=0 && $file_image_limit>1 ){echo '<br /><small>('.__('You can upload').' '.$file_image_limit.' '.__('images with this package').')</small>';} ?>
1440 1440
 				 <?php if($file_image_limit==0){echo '<br /><small>('.__('You can upload unlimited images with this package').')</small>';} ?>
1441 1441
 			</h5>   <?php */
1442
-        ?>
1442
+		?>
1443 1443
 
1444 1444
         <div id="<?php echo $name;?>_row"
1445 1445
              class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
@@ -1447,7 +1447,7 @@  discard block
 block discarded – undo
1447 1447
             <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;">
1448 1448
                 <label
1449 1449
                     style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory');
1450
-                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1450
+					echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1451 1451
                 <input class="geodir-custom-file-upload" field_type="file" type="hidden"
1452 1452
                        name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>"
1453 1453
                        value="<?php echo esc_attr($file_value); ?>"/>
@@ -1459,17 +1459,17 @@  discard block
 block discarded – undo
1459 1459
                 <?php } ?>
1460 1460
                 <input type="hidden" name="<?php echo $file_id; ?>totImg" id="<?php echo $file_id; ?>totImg"
1461 1461
                        value="<?php if (isset($file_totImg)) {
1462
-                           echo esc_attr($file_totImg);
1463
-                       } else {
1464
-                           echo '0';
1465
-                       } ?>"/>
1462
+						   echo esc_attr($file_totImg);
1463
+					   } else {
1464
+						   echo '0';
1465
+					   } ?>"/>
1466 1466
 
1467 1467
                 <div style="float:left; width:55%;">
1468 1468
                     <div
1469 1469
                         class="plupload-upload-uic hide-if-no-js <?php if ($file_multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
1470 1470
                         id="<?php echo $file_id; ?>plupload-upload-ui" style="float:left; width:30%;">
1471 1471
                         <?php /*?><h4><?php _e('Drop files to upload');?></h4><br/><?php */
1472
-                        ?>
1472
+						?>
1473 1473
                         <input id="<?php echo $file_id; ?>plupload-browse-button" type="button"
1474 1474
                                value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory') ); ?>"
1475 1475
                                class="geodir_button" style="margin-top:10px;"/>
@@ -1488,7 +1488,7 @@  discard block
 block discarded – undo
1488 1488
                         style=" clear:inherit; margin-top:0; margin-left:15px; padding-top:10px; float:left; width:50%;">
1489 1489
                     </div>
1490 1490
                     <?php /*?><span id="upload-msg" ><?php _e('Please drag &amp; drop the images to rearrange the order');?></span><?php */
1491
-                    ?>
1491
+					?>
1492 1492
 
1493 1493
                     <span id="<?php echo $file_id; ?>upload-error" style="display:none"></span>
1494 1494
 
@@ -1502,9 +1502,9 @@  discard block
 block discarded – undo
1502 1502
 
1503 1503
 
1504 1504
         <?php
1505
-        $html = ob_get_clean();
1506
-    }
1505
+		$html = ob_get_clean();
1506
+	}
1507 1507
 
1508
-    return $html;
1508
+	return $html;
1509 1509
 }
1510 1510
 add_filter('geodir_custom_field_input_file','geodir_cfi_file',10,2);
1511 1511
\ No newline at end of file
Please login to merge, or discard this patch.