Test Failed
Pull Request — master (#377)
by Kiran
14:44
created
geodirectory-functions/location_functions.php 4 patches
Braces   +31 added lines, -22 removed lines patch added patch discarded remove patch
@@ -61,11 +61,12 @@  discard block
 block discarded – undo
61 61
 function geodir_is_default_location_set()
62 62
 {
63 63
     $default_location = geodir_get_default_location();
64
-    if (!empty($default_location))
65
-        return true;
66
-    else
67
-        return false;
68
-}
64
+    if (!empty($default_location)) {
65
+            return true;
66
+    } else {
67
+            return false;
68
+    }
69
+    }
69 70
 
70 71
 /**
71 72
  * Returns location slug using location string.
@@ -259,8 +260,9 @@  discard block
 block discarded – undo
259 260
         }
260 261
         */
261 262
 
262
-        if ($geodir_location->is_default)
263
-            update_option('geodir_default_location', $geodir_location);
263
+        if ($geodir_location->is_default) {
264
+                    update_option('geodir_default_location', $geodir_location);
265
+        }
264 266
 
265 267
         return $geodir_location->location_id;
266 268
 
@@ -308,9 +310,10 @@  discard block
 block discarded – undo
308 310
     $status = $data->status;
309 311
     if ($status == "OK") {
310 312
         return $data->results[0]->address_components;
311
-    } else
312
-        return false;
313
-}
313
+    } else {
314
+            return false;
315
+    }
316
+    }
314 317
 
315 318
 /**
316 319
  * Returns current location terms.
@@ -334,16 +337,19 @@  discard block
 block discarded – undo
334 337
         }
335 338
 
336 339
         $country = $gd_session->get('gd_country');
337
-        if ($country != '' && $country)
338
-            $location_array['gd_country'] = urldecode($country);
340
+        if ($country != '' && $country) {
341
+                    $location_array['gd_country'] = urldecode($country);
342
+        }
339 343
 
340 344
         $region = $gd_session->get('gd_region');
341
-        if ($region != '' && $region)
342
-            $location_array['gd_region'] = urldecode($region);
345
+        if ($region != '' && $region) {
346
+                    $location_array['gd_region'] = urldecode($region);
347
+        }
343 348
 
344 349
         $city = $gd_session->get('gd_city');
345
-        if ($city != '' && $city)
346
-            $location_array['gd_city'] = urldecode($city);
350
+        if ($city != '' && $city) {
351
+                    $location_array['gd_city'] = urldecode($city);
352
+        }
347 353
     } else {
348 354
         if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) {
349 355
             return $location_array;
@@ -355,14 +361,17 @@  discard block
 block discarded – undo
355 361
 
356 362
         $city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
357 363
 
358
-        if ($country != '')
359
-            $location_array['gd_country'] = urldecode($country);
364
+        if ($country != '') {
365
+                    $location_array['gd_country'] = urldecode($country);
366
+        }
360 367
 
361
-        if ($region != '')
362
-            $location_array['gd_region'] = urldecode($region);
368
+        if ($region != '') {
369
+                    $location_array['gd_region'] = urldecode($region);
370
+        }
363 371
 
364
-        if ($city != '')
365
-            $location_array['gd_city'] = urldecode($city);
372
+        if ($city != '') {
373
+                    $location_array['gd_city'] = urldecode($city);
374
+        }
366 375
 			
367 376
 		// Fix category link in ajax popular category widget on change post type
368 377
 		if (empty($location_array) && defined('DOING_AJAX') && DOING_AJAX) {
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
  *
37 37
  * @since 1.0.0
38 38
  * @package GeoDirectory
39
- * @return object
39
+ * @return string
40 40
  */
41 41
 function geodir_get_default_location()
42 42
 {
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
  * @package GeoDirectory
277 277
  * @param int $min The minimum number. Default: 0.
278 278
  * @param int $max The maximum number. Default: 1.
279
- * @return float
279
+ * @return integer
280 280
  */
281 281
 function geodir_random_float($min = 0, $max = 1)
282 282
 {
@@ -594,6 +594,9 @@  discard block
 block discarded – undo
594 594
 add_filter('geodir_replace_location_variables', 'geodir_replace_location_variables');
595 595
 
596 596
 
597
+/**
598
+ * @param string $sep
599
+ */
597 600
 function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = ''){
598 601
 
599 602
     global $wp;
Please login to merge, or discard this patch.
Indentation   +378 added lines, -378 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@  discard block
 block discarded – undo
9 9
  */
10 10
 function geodir_get_current_city_lat()
11 11
 {
12
-    $location = geodir_get_default_location();
13
-    $lat = isset($location_result->city_latitude) ? $location_result->city_latitude : '39.952484';
12
+	$location = geodir_get_default_location();
13
+	$lat = isset($location_result->city_latitude) ? $location_result->city_latitude : '39.952484';
14 14
 
15
-    return $lat;
15
+	return $lat;
16 16
 }
17 17
 
18 18
 /**
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
  */
26 26
 function geodir_get_current_city_lng()
27 27
 {
28
-    $location = geodir_get_default_location();
29
-    $lng = isset($location_result->city_longitude) ? $location_result->city_longitude : '-75.163786';
30
-    return $lng;
28
+	$location = geodir_get_default_location();
29
+	$lng = isset($location_result->city_longitude) ? $location_result->city_longitude : '-75.163786';
30
+	return $lng;
31 31
 }
32 32
 
33 33
 
@@ -40,15 +40,15 @@  discard block
 block discarded – undo
40 40
  */
41 41
 function geodir_get_default_location()
42 42
 {
43
-    /**
44
-     * Filter the default location.
45
-     *
46
-     * @since 1.0.0
47
-     * @package GeoDirectory
48
-     *
49
-     * @param string $location_result The default location object.
50
-     */
51
-    return $location_result = apply_filters('geodir_get_default_location', get_option('geodir_default_location'));
43
+	/**
44
+	 * Filter the default location.
45
+	 *
46
+	 * @since 1.0.0
47
+	 * @package GeoDirectory
48
+	 *
49
+	 * @param string $location_result The default location object.
50
+	 */
51
+	return $location_result = apply_filters('geodir_get_default_location', get_option('geodir_default_location'));
52 52
 }
53 53
 
54 54
 /**
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
  */
61 61
 function geodir_is_default_location_set()
62 62
 {
63
-    $default_location = geodir_get_default_location();
64
-    if (!empty($default_location))
65
-        return true;
66
-    else
67
-        return false;
63
+	$default_location = geodir_get_default_location();
64
+	if (!empty($default_location))
65
+		return true;
66
+	else
67
+		return false;
68 68
 }
69 69
 
70 70
 /**
@@ -78,15 +78,15 @@  discard block
 block discarded – undo
78 78
 function create_location_slug($location_string)
79 79
 {
80 80
 
81
-    /**
82
-     * Filter the location slug.
83
-     *
84
-     * @since 1.0.0
85
-     * @package GeoDirectory
86
-     *
87
-     * @param string $location_string Sanitized location string.
88
-     */
89
-    return urldecode(apply_filters('geodir_location_slug_check', sanitize_title($location_string)));
81
+	/**
82
+	 * Filter the location slug.
83
+	 *
84
+	 * @since 1.0.0
85
+	 * @package GeoDirectory
86
+	 *
87
+	 * @param string $location_string Sanitized location string.
88
+	 */
89
+	return urldecode(apply_filters('geodir_location_slug_check', sanitize_title($location_string)));
90 90
 
91 91
 }
92 92
 
@@ -100,15 +100,15 @@  discard block
 block discarded – undo
100 100
  */
101 101
 function geodir_get_location($id = '')
102 102
 {
103
-    /**
104
-     * Filter the location information.
105
-     *
106
-     * @since 1.0.0
107
-     * @package GeoDirectory
108
-     *
109
-     * @param string $id The location ID.
110
-     */
111
-    return $location_result = apply_filters('geodir_get_location_by_id', get_option('geodir_default_location'), $id);
103
+	/**
104
+	 * Filter the location information.
105
+	 *
106
+	 * @since 1.0.0
107
+	 * @package GeoDirectory
108
+	 *
109
+	 * @param string $id The location ID.
110
+	 */
111
+	return $location_result = apply_filters('geodir_get_location_by_id', get_option('geodir_default_location'), $id);
112 112
 }
113 113
 
114 114
 /**
@@ -122,28 +122,28 @@  discard block
 block discarded – undo
122 122
  */
123 123
 function geodir_get_country_dl($post_country = '', $prefix = '')
124 124
 {
125
-    global $wpdb;
125
+	global $wpdb;
126 126
 
127
-    $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
127
+	$rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
128 128
     
129
-    $ISO2 = array();
130
-    $countries = array();
129
+	$ISO2 = array();
130
+	$countries = array();
131 131
     
132
-    foreach ($rows as $row) {
133
-        $ISO2[$row->Country] = $row->ISO2;
134
-        $countries[$row->Country] = __($row->Country, 'geodirectory');
135
-    }
132
+	foreach ($rows as $row) {
133
+		$ISO2[$row->Country] = $row->ISO2;
134
+		$countries[$row->Country] = __($row->Country, 'geodirectory');
135
+	}
136 136
     
137
-    asort($countries);
137
+	asort($countries);
138 138
     
139
-    $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
140
-    foreach ($countries as $country => $name) {
141
-        $ccode = $ISO2[$country];
139
+	$out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
140
+	foreach ($countries as $country => $name) {
141
+		$ccode = $ISO2[$country];
142 142
 
143
-        $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>';
144
-    }
143
+		$out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>';
144
+	}
145 145
 
146
-    echo $out_put;
146
+	echo $out_put;
147 147
 }
148 148
 
149 149
 
@@ -158,40 +158,40 @@  discard block
 block discarded – undo
158 158
 function geodir_location_form_submit()
159 159
 {
160 160
 
161
-    global $wpdb, $plugin_prefix;
162
-    if (isset($_REQUEST['add_location'])) {
161
+	global $wpdb, $plugin_prefix;
162
+	if (isset($_REQUEST['add_location'])) {
163 163
 
164
-        $location_info = array(
165
-            'city' => $_REQUEST['city'],
166
-            'region' => $_REQUEST['region'],
167
-            'country' => $_REQUEST['country'],
168
-            'geo_lat' => $_REQUEST['latitude'],
169
-            'geo_lng' => $_REQUEST['longitude'],
170
-            'is_default' => $_REQUEST['is_default'],
171
-            'update_city' => $_REQUEST['update_city']
172
-        );
164
+		$location_info = array(
165
+			'city' => $_REQUEST['city'],
166
+			'region' => $_REQUEST['region'],
167
+			'country' => $_REQUEST['country'],
168
+			'geo_lat' => $_REQUEST['latitude'],
169
+			'geo_lng' => $_REQUEST['longitude'],
170
+			'is_default' => $_REQUEST['is_default'],
171
+			'update_city' => $_REQUEST['update_city']
172
+		);
173 173
 
174
-        $old_location = geodir_get_default_location();
174
+		$old_location = geodir_get_default_location();
175 175
 
176
-        $locationid = geodir_add_new_location($location_info);
176
+		$locationid = geodir_add_new_location($location_info);
177 177
 
178
-        $default_location = geodir_get_location($locationid);
178
+		$default_location = geodir_get_location($locationid);
179 179
 
180
-        //UPDATE AND DELETE LISTING
181
-        $posttype = geodir_get_posttypes();
182
-        if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
180
+		//UPDATE AND DELETE LISTING
181
+		$posttype = geodir_get_posttypes();
182
+		if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
183 183
 
184
-            foreach ($posttype as $posttypeobj) {
185
-                $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location
184
+			foreach ($posttype as $posttypeobj) {
185
+				$post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location
186 186
 
187
-                $sql = $wpdb->prepare(
188
-                    "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
189
-                    array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations)
190
-                );
191
-                $wpdb->query($sql);
192
-            }
193
-        }
194
-    }
187
+				$sql = $wpdb->prepare(
188
+					"UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
189
+					array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations)
190
+				);
191
+				$wpdb->query($sql);
192
+			}
193
+		}
194
+	}
195 195
 }
196 196
 
197 197
 /**
@@ -215,37 +215,37 @@  discard block
 block discarded – undo
215 215
  */
216 216
 function geodir_add_new_location($location_info = array())
217 217
 {
218
-    global $wpdb;
219
-
220
-    if (!empty($location_info)) {
221
-        $location_city = ($location_info['city'] != '') ? $location_info['city'] : 'all';
222
-        $location_region = ($location_info['region'] != '') ? $location_info['region'] : 'all';
223
-        $location_country = ($location_info['country'] != '') ? geodir_get_normal_country($location_info['country']) : 'all';
224
-        $location_lat = ($location_info['geo_lat'] != '') ? $location_info['geo_lat'] : '';
225
-        $location_lng = ($location_info['geo_lng'] != '') ? $location_info['geo_lng'] : '';
226
-        $is_default = isset($location_info['is_default']) ? $location_info['is_default'] : '';
227
-        $country_slug = create_location_slug(__($location_country, 'geodirectory'));
228
-        $region_slug = create_location_slug($location_region);
229
-        $city_slug = create_location_slug($location_city);
218
+	global $wpdb;
219
+
220
+	if (!empty($location_info)) {
221
+		$location_city = ($location_info['city'] != '') ? $location_info['city'] : 'all';
222
+		$location_region = ($location_info['region'] != '') ? $location_info['region'] : 'all';
223
+		$location_country = ($location_info['country'] != '') ? geodir_get_normal_country($location_info['country']) : 'all';
224
+		$location_lat = ($location_info['geo_lat'] != '') ? $location_info['geo_lat'] : '';
225
+		$location_lng = ($location_info['geo_lng'] != '') ? $location_info['geo_lng'] : '';
226
+		$is_default = isset($location_info['is_default']) ? $location_info['is_default'] : '';
227
+		$country_slug = create_location_slug(__($location_country, 'geodirectory'));
228
+		$region_slug = create_location_slug($location_region);
229
+		$city_slug = create_location_slug($location_city);
230 230
         
231
-        /**
232
-         * Filter add new location data.
233
-         *
234
-         * @since 1.0.0
235
-         */
236
-        $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
237
-            'country' => $location_country,
238
-            'region' => $location_region,
239
-            'city' => $location_city,
240
-            'country_slug' => $country_slug,
241
-            'region_slug' => $region_slug,
242
-            'city_slug' => $city_slug,
243
-            'city_latitude' => $location_lat,
244
-            'city_longitude' => $location_lng,
245
-            'is_default' => $is_default
246
-        ));
247
-
248
-        /* // Not allowed to create country in DB : 2016-12-09
231
+		/**
232
+		 * Filter add new location data.
233
+		 *
234
+		 * @since 1.0.0
235
+		 */
236
+		$geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
237
+			'country' => $location_country,
238
+			'region' => $location_region,
239
+			'city' => $location_city,
240
+			'country_slug' => $country_slug,
241
+			'region_slug' => $region_slug,
242
+			'city_slug' => $city_slug,
243
+			'city_latitude' => $location_lat,
244
+			'city_longitude' => $location_lng,
245
+			'is_default' => $is_default
246
+		));
247
+
248
+		/* // Not allowed to create country in DB : 2016-12-09
249 249
         if ($geodir_location->country) {
250 250
 
251 251
             $get_country = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country=%s", array($geodir_location->country)));
@@ -259,14 +259,14 @@  discard block
 block discarded – undo
259 259
         }
260 260
         */
261 261
 
262
-        if ($geodir_location->is_default)
263
-            update_option('geodir_default_location', $geodir_location);
262
+		if ($geodir_location->is_default)
263
+			update_option('geodir_default_location', $geodir_location);
264 264
 
265
-        return $geodir_location->location_id;
265
+		return $geodir_location->location_id;
266 266
 
267
-    } else {
268
-        return false;
269
-    }
267
+	} else {
268
+		return false;
269
+	}
270 270
 }
271 271
 
272 272
 /**
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
  */
281 281
 function geodir_random_float($min = 0, $max = 1)
282 282
 {
283
-    return $min + mt_rand() / mt_getrandmax() * ($max - $min);
283
+	return $min + mt_rand() / mt_getrandmax() * ($max - $min);
284 284
 }
285 285
 
286 286
 /**
@@ -294,22 +294,22 @@  discard block
 block discarded – undo
294 294
  */
295 295
 function geodir_get_address_by_lat_lan($lat, $lng)
296 296
 {
297
-    $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ;
298
-
299
-    $ch = curl_init();
300
-    curl_setopt($ch, CURLOPT_URL, $url);
301
-    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
302
-    curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
303
-    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
304
-    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
305
-    $response = curl_exec($ch);
306
-    curl_close($ch);
307
-    $data = json_decode($response);
308
-    $status = $data->status;
309
-    if ($status == "OK") {
310
-        return $data->results[0]->address_components;
311
-    } else
312
-        return false;
297
+	$url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ;
298
+
299
+	$ch = curl_init();
300
+	curl_setopt($ch, CURLOPT_URL, $url);
301
+	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
302
+	curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
303
+	curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
304
+	curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
305
+	$response = curl_exec($ch);
306
+	curl_close($ch);
307
+	$data = json_decode($response);
308
+	$status = $data->status;
309
+	if ($status == "OK") {
310
+		return $data->results[0]->address_components;
311
+	} else
312
+		return false;
313 313
 }
314 314
 
315 315
 /**
@@ -326,70 +326,70 @@  discard block
 block discarded – undo
326 326
  */
327 327
 function geodir_get_current_location_terms($location_array_from = 'session', $gd_post_type = '')
328 328
 {
329
-    global $wp, $gd_session;
330
-    $location_array = array();
331
-    if ($location_array_from == 'session') {
332
-        if ($gd_session->get('gd_country') == 'me' || $gd_session->get('gd_region') == 'me' || $gd_session->get('gd_city') == 'me') {
333
-            return $location_array;
334
-        }
329
+	global $wp, $gd_session;
330
+	$location_array = array();
331
+	if ($location_array_from == 'session') {
332
+		if ($gd_session->get('gd_country') == 'me' || $gd_session->get('gd_region') == 'me' || $gd_session->get('gd_city') == 'me') {
333
+			return $location_array;
334
+		}
335 335
 
336
-        $country = $gd_session->get('gd_country');
337
-        if ($country != '' && $country)
338
-            $location_array['gd_country'] = urldecode($country);
336
+		$country = $gd_session->get('gd_country');
337
+		if ($country != '' && $country)
338
+			$location_array['gd_country'] = urldecode($country);
339 339
 
340
-        $region = $gd_session->get('gd_region');
341
-        if ($region != '' && $region)
342
-            $location_array['gd_region'] = urldecode($region);
340
+		$region = $gd_session->get('gd_region');
341
+		if ($region != '' && $region)
342
+			$location_array['gd_region'] = urldecode($region);
343 343
 
344
-        $city = $gd_session->get('gd_city');
345
-        if ($city != '' && $city)
346
-            $location_array['gd_city'] = urldecode($city);
347
-    } else {
348
-        if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) {
349
-            return $location_array;
350
-        }
344
+		$city = $gd_session->get('gd_city');
345
+		if ($city != '' && $city)
346
+			$location_array['gd_city'] = urldecode($city);
347
+	} else {
348
+		if ((isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] == 'me') || (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] == 'me') || (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] == 'me')) {
349
+			return $location_array;
350
+		}
351 351
 
352
-        $country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
352
+		$country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
353 353
 
354
-        $region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
354
+		$region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
355 355
 
356
-        $city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
356
+		$city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
357 357
 
358
-        if ($country != '')
359
-            $location_array['gd_country'] = urldecode($country);
358
+		if ($country != '')
359
+			$location_array['gd_country'] = urldecode($country);
360 360
 
361
-        if ($region != '')
362
-            $location_array['gd_region'] = urldecode($region);
361
+		if ($region != '')
362
+			$location_array['gd_region'] = urldecode($region);
363 363
 
364
-        if ($city != '')
365
-            $location_array['gd_city'] = urldecode($city);
364
+		if ($city != '')
365
+			$location_array['gd_city'] = urldecode($city);
366 366
 			
367 367
 		// Fix category link in ajax popular category widget on change post type
368 368
 		if (empty($location_array) && defined('DOING_AJAX') && DOING_AJAX) {
369 369
 			$location_array = geodir_get_current_location_terms('session');
370 370
 		}
371
-    }
371
+	}
372 372
 
373 373
 	/**
374 374
 	 * Filter the location terms.
375 375
 	 *
376 376
 	 * @since 1.4.6
377
-     * @package GeoDirectory
377
+	 * @package GeoDirectory
378
+	 *
379
+	 * @param array $location_array {
380
+	 *    Attributes of the location_array.
381
+	 *
382
+	 *    @type string $gd_country The country slug.
383
+	 *    @type string $gd_region The region slug.
384
+	 *    @type string $gd_city The city slug.
378 385
 	 *
379
-     * @param array $location_array {
380
-     *    Attributes of the location_array.
381
-     *
382
-     *    @type string $gd_country The country slug.
383
-     *    @type string $gd_region The region slug.
384
-     *    @type string $gd_city The city slug.
385
-     *
386
-     * }
386
+	 * }
387 387
 	 * @param string $location_array_from Source type of location terms. Default session.
388 388
 	 * @param string $gd_post_type WP post type.
389 389
 	 */
390 390
 	$location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type );
391 391
 
392
-    return $location_array;
392
+	return $location_array;
393 393
 
394 394
 }
395 395
 
@@ -402,24 +402,24 @@  discard block
 block discarded – undo
402 402
  * @return bool|string
403 403
  */
404 404
 function geodir_get_location_link($which_location = 'current') {
405
-    $location_link = get_permalink(geodir_location_page_id());
406
-
407
-    if ($which_location == 'base') {
408
-        return $location_link;
409
-    } else {
410
-        $location_terms = geodir_get_current_location_terms();
411
-
412
-        if (!empty($location_terms)) {
413
-            if (get_option('permalink_structure') != '') {
414
-                $location_terms = implode("/", $location_terms);
415
-                $location_terms = rtrim($location_terms, '/');
416
-                $location_link .= $location_terms;
417
-            } else {
418
-                $location_link = geodir_getlink($location_link, $location_terms);
419
-            }
420
-        }
421
-    }
422
-    return $location_link;
405
+	$location_link = get_permalink(geodir_location_page_id());
406
+
407
+	if ($which_location == 'base') {
408
+		return $location_link;
409
+	} else {
410
+		$location_terms = geodir_get_current_location_terms();
411
+
412
+		if (!empty($location_terms)) {
413
+			if (get_option('permalink_structure') != '') {
414
+				$location_terms = implode("/", $location_terms);
415
+				$location_terms = rtrim($location_terms, '/');
416
+				$location_link .= $location_terms;
417
+			} else {
418
+				$location_link = geodir_getlink($location_link, $location_terms);
419
+			}
420
+		}
421
+	}
422
+	return $location_link;
423 423
 }
424 424
 
425 425
 /**
@@ -432,34 +432,34 @@  discard block
 block discarded – undo
432 432
  * @return array|bool Returns address on success.
433 433
  */
434 434
 function geodir_get_osm_address_by_lat_lan($lat, $lng) {
435
-    $url = is_ssl() ? 'https:' : 'http:';
436
-    $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
437
-
438
-    $ch = curl_init();
439
-    curl_setopt($ch, CURLOPT_URL, $url);
440
-    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
441
-    curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
442
-    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
443
-    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
444
-    $response = curl_exec($ch);
445
-    curl_close($ch);
446
-    $data = json_decode($response);
435
+	$url = is_ssl() ? 'https:' : 'http:';
436
+	$url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
437
+
438
+	$ch = curl_init();
439
+	curl_setopt($ch, CURLOPT_URL, $url);
440
+	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
441
+	curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
442
+	curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
443
+	curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
444
+	$response = curl_exec($ch);
445
+	curl_close($ch);
446
+	$data = json_decode($response);
447 447
     
448
-    if (!empty($data) && !empty($data->address)) {
449
-        $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
450
-        $formatted_address = (array)$data->address;
448
+	if (!empty($data) && !empty($data->address)) {
449
+		$address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
450
+		$formatted_address = (array)$data->address;
451 451
         
452
-        foreach ( $data->address as $key => $value ) {
453
-            if (!in_array($key, $address_fields)) {
454
-                unset($formatted_address[$key]);
455
-            }
456
-        }
457
-        $data->formatted_address = !empty($formatted_address) ? implode(', ', $formatted_address) : '';
452
+		foreach ( $data->address as $key => $value ) {
453
+			if (!in_array($key, $address_fields)) {
454
+				unset($formatted_address[$key]);
455
+			}
456
+		}
457
+		$data->formatted_address = !empty($formatted_address) ? implode(', ', $formatted_address) : '';
458 458
         
459
-        return $data;
460
-    } else {
461
-        return false;
462
-    }
459
+		return $data;
460
+	} else {
461
+		return false;
462
+	}
463 463
 }
464 464
 
465 465
 /**
@@ -471,47 +471,47 @@  discard block
 block discarded – undo
471 471
  * @return string Returns the country.
472 472
  */
473 473
 function geodir_get_normal_country($country) {
474
-    global $wpdb;
475
-    if ($result = geodir_get_country_by_name($country)) {
476
-        return $result;
477
-    }
474
+	global $wpdb;
475
+	if ($result = geodir_get_country_by_name($country)) {
476
+		return $result;
477
+	}
478 478
     
479
-    if (defined('POST_LOCATION_TABLE')) {
480
-        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
481
-        if (!empty($rows)) {
482
-            foreach ($rows as $row) {
483
-                $translated = __($row->country, 'geodirectory');
484
-                if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
485
-                    return $result;
486
-                }
487
-            }
488
-        }
479
+	if (defined('POST_LOCATION_TABLE')) {
480
+		$rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
481
+		if (!empty($rows)) {
482
+			foreach ($rows as $row) {
483
+				$translated = __($row->country, 'geodirectory');
484
+				if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
485
+					return $result;
486
+				}
487
+			}
488
+		}
489 489
         
490
-        $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) );
491
-        if (!empty($rows)) {
492
-            foreach ($rows as $row) {
493
-                $translated = __($row->country, 'geodirectory');
494
-                if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
495
-                    return $result;
496
-                }
497
-            }
498
-        }
499
-    }
490
+		$rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) );
491
+		if (!empty($rows)) {
492
+			foreach ($rows as $row) {
493
+				$translated = __($row->country, 'geodirectory');
494
+				if (geodir_strtolower($translated) == geodir_strtolower($country) && $result = geodir_get_country_by_name($row->country)) {
495
+					return $result;
496
+				}
497
+			}
498
+		}
499
+	}
500 500
     
501
-    $default_location = geodir_get_default_location();
502
-    if (!empty($default_location->country) && $result = geodir_get_country_by_name($default_location->country)) {
503
-        return $result;
504
-    }
501
+	$default_location = geodir_get_default_location();
502
+	if (!empty($default_location->country) && $result = geodir_get_country_by_name($default_location->country)) {
503
+		return $result;
504
+	}
505 505
     
506
-    if (!empty($default_location->country_slug) && $result = geodir_get_country_by_name($default_location->country_slug)) {
507
-        return $result;
508
-    }
506
+	if (!empty($default_location->country_slug) && $result = geodir_get_country_by_name($default_location->country_slug)) {
507
+		return $result;
508
+	}
509 509
     
510
-    if (!empty($default_location->country_ISO2) && $result = geodir_get_country_by_name($default_location->country_ISO2, true)) {
511
-        return $result;
512
-    }
510
+	if (!empty($default_location->country_ISO2) && $result = geodir_get_country_by_name($default_location->country_ISO2, true)) {
511
+		return $result;
512
+	}
513 513
     
514
-    return $country;
514
+	return $country;
515 515
 }
516 516
 
517 517
 /**
@@ -523,16 +523,16 @@  discard block
 block discarded – undo
523 523
  * @return string Country ISO2 code.
524 524
  */
525 525
 function geodir_get_country_iso2($country) {
526
-    global $wpdb;
526
+	global $wpdb;
527 527
     
528
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
529
-        return $result;
530
-    }
531
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
532
-        return $result;
533
-    }
528
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
529
+		return $result;
530
+	}
531
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
532
+		return $result;
533
+	}
534 534
     
535
-    return $country;
535
+	return $country;
536 536
 }
537 537
 
538 538
 /**
@@ -545,16 +545,16 @@  discard block
 block discarded – undo
545 545
  * @return string|null Country ISO2 code.
546 546
  */
547 547
 function geodir_get_country_by_name($country, $iso2 = false) {
548
-    global $wpdb;
548
+	global $wpdb;
549 549
     
550
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
551
-        return $result;
552
-    }
553
-    if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) {
554
-        return $result;
555
-    }
550
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
551
+		return $result;
552
+	}
553
+	if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) {
554
+		return $result;
555
+	}
556 556
     
557
-    return NULL;
557
+	return NULL;
558 558
 }
559 559
 
560 560
 
@@ -574,130 +574,130 @@  discard block
 block discarded – undo
574 574
  */
575 575
 function geodir_replace_location_variables($content, $location_array = array(), $sep = NULL, $gd_page = '') {
576 576
 
577
-    if (empty($content)) {
578
-        return $content;
579
-    }
577
+	if (empty($content)) {
578
+		return $content;
579
+	}
580 580
 
581 581
 
582
-    $location_replace_vars = geodir_location_replace_vars($location_array, $sep, $gd_page);
582
+	$location_replace_vars = geodir_location_replace_vars($location_array, $sep, $gd_page);
583 583
 
584
-    if (!empty($location_replace_vars)) {
585
-        foreach ($location_replace_vars as $search => $replace) {
586
-            if (!empty($search) && strpos($content, $search) !== false) {
587
-                $content = str_replace($search, $replace, $content);
588
-            }
589
-        }
590
-    }
584
+	if (!empty($location_replace_vars)) {
585
+		foreach ($location_replace_vars as $search => $replace) {
586
+			if (!empty($search) && strpos($content, $search) !== false) {
587
+				$content = str_replace($search, $replace, $content);
588
+			}
589
+		}
590
+	}
591 591
 
592
-    return $content;
592
+	return $content;
593 593
 }
594 594
 add_filter('geodir_replace_location_variables', 'geodir_replace_location_variables');
595 595
 
596 596
 
597 597
 function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = ''){
598 598
 
599
-    global $wp;
599
+	global $wp;
600 600
     
601
-    $location_manager = defined('GEODIRLOCATION_VERSION') ? true : false;
602
-
603
-    if (empty($location_array)) {
604
-        $location_array = geodir_get_current_location_terms('query_vars');
605
-    }
606
-
607
-    $location_terms = array();
608
-    $location_terms['gd_neighbourhood'] = !empty($wp->query_vars['gd_neighbourhood']) ? $wp->query_vars['gd_neighbourhood'] : '';
609
-    $location_terms['gd_city'] = !empty($wp->query_vars['gd_city']) ? $wp->query_vars['gd_city'] : '';
610
-    $location_terms['gd_region'] = !empty($wp->query_vars['gd_region']) ? $wp->query_vars['gd_region'] : '';
611
-    $location_terms['gd_country'] = !empty($wp->query_vars['gd_country']) ? $wp->query_vars['gd_country'] : '';
612
-
613
-    $location_names = array();
614
-    foreach ($location_terms as $type => $location) {
615
-        $location_name = $location;
616
-
617
-        if (!empty($location_name)) {
618
-            if ($location_manager) {
619
-                $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
620
-                $location_name = get_actual_location_name($location_type, $location, true);
621
-            } else {
622
-                $location_name = preg_replace( '/-(\d+)$/', '', $location_name);
623
-                $location_name = preg_replace( '/[_-]/', ' ', $location_name );
624
-                $location_name = __(geodir_ucwords($location_name), 'geodirectory');
625
-            }
626
-        }
601
+	$location_manager = defined('GEODIRLOCATION_VERSION') ? true : false;
602
+
603
+	if (empty($location_array)) {
604
+		$location_array = geodir_get_current_location_terms('query_vars');
605
+	}
606
+
607
+	$location_terms = array();
608
+	$location_terms['gd_neighbourhood'] = !empty($wp->query_vars['gd_neighbourhood']) ? $wp->query_vars['gd_neighbourhood'] : '';
609
+	$location_terms['gd_city'] = !empty($wp->query_vars['gd_city']) ? $wp->query_vars['gd_city'] : '';
610
+	$location_terms['gd_region'] = !empty($wp->query_vars['gd_region']) ? $wp->query_vars['gd_region'] : '';
611
+	$location_terms['gd_country'] = !empty($wp->query_vars['gd_country']) ? $wp->query_vars['gd_country'] : '';
612
+
613
+	$location_names = array();
614
+	foreach ($location_terms as $type => $location) {
615
+		$location_name = $location;
616
+
617
+		if (!empty($location_name)) {
618
+			if ($location_manager) {
619
+				$location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
620
+				$location_name = get_actual_location_name($location_type, $location, true);
621
+			} else {
622
+				$location_name = preg_replace( '/-(\d+)$/', '', $location_name);
623
+				$location_name = preg_replace( '/[_-]/', ' ', $location_name );
624
+				$location_name = __(geodir_ucwords($location_name), 'geodirectory');
625
+			}
626
+		}
627 627
 
628
-        $location_names[$type] = $location_name;
629
-    }
630
-
631
-    $location_single = '';
632
-    foreach ($location_terms as $type => $location) {
633
-        if (!empty($location)) {
634
-            if (!empty($location_names[$type])) {
635
-                $location_single = $location_names[$type];
636
-            } else {
637
-                if ($location_manager) {
638
-                    $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
639
-                    $location_single = get_actual_location_name($location_type, $location, true);
640
-                } else {
641
-                    $location_name = preg_replace( '/-(\d+)$/', '', $location);
642
-                    $location_name = preg_replace( '/[_-]/', ' ', $location_name );
643
-                    $location_single = __(geodir_ucwords($location_name), 'geodirectory');
644
-                }
645
-            }
646
-            break;
647
-        }
648
-    }
649
-
650
-    $full_location = array();
651
-    if (!empty($location_array)) {
652
-        $location_array = array_reverse($location_array);
653
-
654
-        foreach ($location_array as $type => $location) {
655
-            if (!empty($location_names[$type])) {
656
-                $location_name = $location_names[$type];
657
-            } else {
658
-                if ($location_manager) {
659
-                    $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
660
-                    $location_name = get_actual_location_name($location_type, $location, true);
661
-                } else {
662
-                    $location_name = preg_replace( '/-(\d+)$/', '', $location);
663
-                    $location_name = preg_replace( '/[_-]/', ' ', $location_name );
664
-                    $location_name = __(geodir_ucwords($location_name), 'geodirectory');
665
-                }
666
-            }
628
+		$location_names[$type] = $location_name;
629
+	}
630
+
631
+	$location_single = '';
632
+	foreach ($location_terms as $type => $location) {
633
+		if (!empty($location)) {
634
+			if (!empty($location_names[$type])) {
635
+				$location_single = $location_names[$type];
636
+			} else {
637
+				if ($location_manager) {
638
+					$location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
639
+					$location_single = get_actual_location_name($location_type, $location, true);
640
+				} else {
641
+					$location_name = preg_replace( '/-(\d+)$/', '', $location);
642
+					$location_name = preg_replace( '/[_-]/', ' ', $location_name );
643
+					$location_single = __(geodir_ucwords($location_name), 'geodirectory');
644
+				}
645
+			}
646
+			break;
647
+		}
648
+	}
649
+
650
+	$full_location = array();
651
+	if (!empty($location_array)) {
652
+		$location_array = array_reverse($location_array);
653
+
654
+		foreach ($location_array as $type => $location) {
655
+			if (!empty($location_names[$type])) {
656
+				$location_name = $location_names[$type];
657
+			} else {
658
+				if ($location_manager) {
659
+					$location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
660
+					$location_name = get_actual_location_name($location_type, $location, true);
661
+				} else {
662
+					$location_name = preg_replace( '/-(\d+)$/', '', $location);
663
+					$location_name = preg_replace( '/[_-]/', ' ', $location_name );
664
+					$location_name = __(geodir_ucwords($location_name), 'geodirectory');
665
+				}
666
+			}
667
+
668
+			$full_location[] = $location_name;
669
+		}
667 670
 
668
-            $full_location[] = $location_name;
669
-        }
671
+		if (!empty($full_location)) {
672
+			$full_location = array_unique($full_location);
673
+		}
674
+	}
675
+	$full_location = !empty($full_location) ? implode(', ', $full_location): '';
670 676
 
671
-        if (!empty($full_location)) {
672
-            $full_location = array_unique($full_location);
673
-        }
674
-    }
675
-    $full_location = !empty($full_location) ? implode(', ', $full_location): '';
676
-
677
-    $location_replace_vars = array();
678
-    $location_replace_vars['%%location_sep%%'] = $sep !== NULL ? $sep : '|';
679
-    $location_replace_vars['%%location%%'] = $full_location;
680
-    $location_replace_vars['%%in_location%%'] = $full_location != '' ? __( 'in', 'geodirectory' ) . ' ' . $full_location : '';
681
-    $location_replace_vars['%%location_single%%'] = $location_single;
682
-    $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? __( 'in', 'geodirectory' ) . ' ' . $location_single : '';
683
-
684
-    foreach ($location_names as $type => $name) {
685
-        $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
686
-
687
-        $location_replace_vars['%%location_' . $location_type . '%%'] = $name;
688
-        $location_replace_vars['%%in_location_' . $location_type . '%%'] = !empty($name) ? __( 'in', 'geodirectory' ) . ' ' . $name : '';
689
-    }
690
-
691
-    /**
692
-     * Filter the location terms variables to search & replace.
693
-     *
694
-     * @since   1.6.16
695
-     * @package GeoDirectory
696
-     *
697
-     * @param array $location_replace_vars The array of search & replace variables.
698
-     * @param array $location_array The array of location variables.
699
-     * @param string $gd_page       The page being filtered.
700
-     * @param string $sep           The separator.
701
-     */
702
-    return apply_filters( 'geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep );
677
+	$location_replace_vars = array();
678
+	$location_replace_vars['%%location_sep%%'] = $sep !== NULL ? $sep : '|';
679
+	$location_replace_vars['%%location%%'] = $full_location;
680
+	$location_replace_vars['%%in_location%%'] = $full_location != '' ? __( 'in', 'geodirectory' ) . ' ' . $full_location : '';
681
+	$location_replace_vars['%%location_single%%'] = $location_single;
682
+	$location_replace_vars['%%in_location_single%%'] = $location_single != '' ? __( 'in', 'geodirectory' ) . ' ' . $location_single : '';
683
+
684
+	foreach ($location_names as $type => $name) {
685
+		$location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
686
+
687
+		$location_replace_vars['%%location_' . $location_type . '%%'] = $name;
688
+		$location_replace_vars['%%in_location_' . $location_type . '%%'] = !empty($name) ? __( 'in', 'geodirectory' ) . ' ' . $name : '';
689
+	}
690
+
691
+	/**
692
+	 * Filter the location terms variables to search & replace.
693
+	 *
694
+	 * @since   1.6.16
695
+	 * @package GeoDirectory
696
+	 *
697
+	 * @param array $location_replace_vars The array of search & replace variables.
698
+	 * @param array $location_array The array of location variables.
699
+	 * @param string $gd_page       The page being filtered.
700
+	 * @param string $sep           The separator.
701
+	 */
702
+	return apply_filters( 'geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep );
703 703
 }
704 704
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 {
125 125
     global $wpdb;
126 126
 
127
-    $rows = $wpdb->get_results("SELECT Country,ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " ORDER BY Country ASC");
127
+    $rows = $wpdb->get_results("SELECT Country,ISO2 FROM ".GEODIR_COUNTRIES_TABLE." ORDER BY Country ASC");
128 128
     
129 129
     $ISO2 = array();
130 130
     $countries = array();
@@ -136,11 +136,11 @@  discard block
 block discarded – undo
136 136
     
137 137
     asort($countries);
138 138
     
139
-    $out_put = '<option ' . selected('', $post_country, false) . ' value="">' . __('Select Country', 'geodirectory') . '</option>';
139
+    $out_put = '<option '.selected('', $post_country, false).' value="">'.__('Select Country', 'geodirectory').'</option>';
140 140
     foreach ($countries as $country => $name) {
141 141
         $ccode = $ISO2[$country];
142 142
 
143
-        $out_put .= '<option ' . selected($post_country, $country, false) . ' value="' . esc_attr($country) . '" data-country_code="' . $ccode . '">' . $name . '</option>';
143
+        $out_put .= '<option '.selected($post_country, $country, false).' value="'.esc_attr($country).'" data-country_code="'.$ccode.'">'.$name.'</option>';
144 144
     }
145 145
 
146 146
     echo $out_put;
@@ -182,10 +182,10 @@  discard block
 block discarded – undo
182 182
         if (isset($_REQUEST['listing_action']) && $_REQUEST['listing_action'] == 'delete') {
183 183
 
184 184
             foreach ($posttype as $posttypeobj) {
185
-                $post_locations = '[' . $default_location->city_slug . '],[' . $default_location->region_slug . '],[' . $default_location->country_slug . ']'; // set all overall post location
185
+                $post_locations = '['.$default_location->city_slug.'],['.$default_location->region_slug.'],['.$default_location->country_slug.']'; // set all overall post location
186 186
 
187 187
                 $sql = $wpdb->prepare(
188
-                    "UPDATE " . $plugin_prefix . $posttypeobj . "_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
188
+                    "UPDATE ".$plugin_prefix.$posttypeobj."_detail SET post_city=%s, post_region=%s, post_country=%s, post_locations=%s WHERE post_location_id=%d AND ( post_city!=%s OR post_region!=%s OR post_country!=%s OR post_locations!=%s OR post_locations IS NULL)",
189 189
                     array($_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations, $locationid, $_REQUEST['city'], $_REQUEST['region'], $_REQUEST['country'], $post_locations)
190 190
                 );
191 191
                 $wpdb->query($sql);
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
          *
234 234
          * @since 1.0.0
235 235
          */
236
-        $geodir_location = (object)apply_filters('geodir_add_new_location', array('location_id' => 0,
236
+        $geodir_location = (object) apply_filters('geodir_add_new_location', array('location_id' => 0,
237 237
             'country' => $location_country,
238 238
             'region' => $location_region,
239 239
             'city' => $location_city,
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
  */
295 295
 function geodir_get_address_by_lat_lan($lat, $lng)
296 296
 {
297
-    $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng=' . trim($lat) . ',' . trim($lng) ;
297
+    $url = 'https://maps.googleapis.com/maps/api/geocode/json?latlng='.trim($lat).','.trim($lng);
298 298
 
299 299
     $ch = curl_init();
300 300
     curl_setopt($ch, CURLOPT_URL, $url);
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 	 * @param string $location_array_from Source type of location terms. Default session.
388 388
 	 * @param string $gd_post_type WP post type.
389 389
 	 */
390
-	$location_array = apply_filters( 'geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type );
390
+	$location_array = apply_filters('geodir_current_location_terms', $location_array, $location_array_from, $gd_post_type);
391 391
 
392 392
     return $location_array;
393 393
 
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
  */
434 434
 function geodir_get_osm_address_by_lat_lan($lat, $lng) {
435 435
     $url = is_ssl() ? 'https:' : 'http:';
436
-    $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat=' . trim($lat) . '&lon=' . trim($lng) . '&zoom=16&addressdetails=1&email=' . get_option('admin_email');
436
+    $url .= '//nominatim.openstreetmap.org/reverse?format=json&lat='.trim($lat).'&lon='.trim($lng).'&zoom=16&addressdetails=1&email='.get_option('admin_email');
437 437
 
438 438
     $ch = curl_init();
439 439
     curl_setopt($ch, CURLOPT_URL, $url);
@@ -447,9 +447,9 @@  discard block
 block discarded – undo
447 447
     
448 448
     if (!empty($data) && !empty($data->address)) {
449 449
         $address_fields = array('public_building', 'house', 'house_number', 'bakery', 'footway', 'street', 'road', 'village', 'attraction', 'pedestrian', 'neighbourhood', 'suburb');
450
-        $formatted_address = (array)$data->address;
450
+        $formatted_address = (array) $data->address;
451 451
         
452
-        foreach ( $data->address as $key => $value ) {
452
+        foreach ($data->address as $key => $value) {
453 453
             if (!in_array($key, $address_fields)) {
454 454
                 unset($formatted_address[$key]);
455 455
             }
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
     }
478 478
     
479 479
     if (defined('POST_LOCATION_TABLE')) {
480
-        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
480
+        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM ".POST_LOCATION_TABLE." WHERE country NOT LIKE %s ORDER BY location_id ASC", $country));
481 481
         if (!empty($rows)) {
482 482
             foreach ($rows as $row) {
483 483
                 $translated = __($row->country, 'geodirectory');
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
             }
488 488
         }
489 489
         
490
-        $rows = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT country FROM " . POST_LOCATION_TABLE . " WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country ) );
490
+        $rows = $wpdb->get_results($wpdb->prepare("SELECT DISTINCT country FROM ".POST_LOCATION_TABLE." WHERE country_slug LIKE %s AND country NOT LIKE %s ORDER BY location_id", $country, $country));
491 491
         if (!empty($rows)) {
492 492
             foreach ($rows as $row) {
493 493
                 $translated = __($row->country, 'geodirectory');
@@ -525,10 +525,10 @@  discard block
 block discarded – undo
525 525
 function geodir_get_country_iso2($country) {
526 526
     global $wpdb;
527 527
     
528
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
528
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", $country))) {
529 529
         return $result;
530 530
     }
531
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
531
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT ISO2 FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", geodir_get_normal_country($country)))) {
532 532
         return $result;
533 533
     }
534 534
     
@@ -547,10 +547,10 @@  discard block
 block discarded – undo
547 547
 function geodir_get_country_by_name($country, $iso2 = false) {
548 548
     global $wpdb;
549 549
     
550
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE Country LIKE %s", $country))) {
550
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE Country LIKE %s", $country))) {
551 551
         return $result;
552 552
     }
553
-    if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM " . GEODIR_COUNTRIES_TABLE . " WHERE ISO2 LIKE %s", $country))) {
553
+    if ($iso2 && $result = $wpdb->get_var($wpdb->prepare("SELECT Country FROM ".GEODIR_COUNTRIES_TABLE." WHERE ISO2 LIKE %s", $country))) {
554 554
         return $result;
555 555
     }
556 556
     
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
 add_filter('geodir_replace_location_variables', 'geodir_replace_location_variables');
595 595
 
596 596
 
597
-function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = ''){
597
+function geodir_location_replace_vars($location_array = array(), $sep = NULL, $gd_page = '') {
598 598
 
599 599
     global $wp;
600 600
     
@@ -619,8 +619,8 @@  discard block
 block discarded – undo
619 619
                 $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
620 620
                 $location_name = get_actual_location_name($location_type, $location, true);
621 621
             } else {
622
-                $location_name = preg_replace( '/-(\d+)$/', '', $location_name);
623
-                $location_name = preg_replace( '/[_-]/', ' ', $location_name );
622
+                $location_name = preg_replace('/-(\d+)$/', '', $location_name);
623
+                $location_name = preg_replace('/[_-]/', ' ', $location_name);
624 624
                 $location_name = __(geodir_ucwords($location_name), 'geodirectory');
625 625
             }
626 626
         }
@@ -638,8 +638,8 @@  discard block
 block discarded – undo
638 638
                     $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
639 639
                     $location_single = get_actual_location_name($location_type, $location, true);
640 640
                 } else {
641
-                    $location_name = preg_replace( '/-(\d+)$/', '', $location);
642
-                    $location_name = preg_replace( '/[_-]/', ' ', $location_name );
641
+                    $location_name = preg_replace('/-(\d+)$/', '', $location);
642
+                    $location_name = preg_replace('/[_-]/', ' ', $location_name);
643 643
                     $location_single = __(geodir_ucwords($location_name), 'geodirectory');
644 644
                 }
645 645
             }
@@ -659,8 +659,8 @@  discard block
 block discarded – undo
659 659
                     $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
660 660
                     $location_name = get_actual_location_name($location_type, $location, true);
661 661
                 } else {
662
-                    $location_name = preg_replace( '/-(\d+)$/', '', $location);
663
-                    $location_name = preg_replace( '/[_-]/', ' ', $location_name );
662
+                    $location_name = preg_replace('/-(\d+)$/', '', $location);
663
+                    $location_name = preg_replace('/[_-]/', ' ', $location_name);
664 664
                     $location_name = __(geodir_ucwords($location_name), 'geodirectory');
665 665
                 }
666 666
             }
@@ -672,20 +672,20 @@  discard block
 block discarded – undo
672 672
             $full_location = array_unique($full_location);
673 673
         }
674 674
     }
675
-    $full_location = !empty($full_location) ? implode(', ', $full_location): '';
675
+    $full_location = !empty($full_location) ? implode(', ', $full_location) : '';
676 676
 
677 677
     $location_replace_vars = array();
678 678
     $location_replace_vars['%%location_sep%%'] = $sep !== NULL ? $sep : '|';
679 679
     $location_replace_vars['%%location%%'] = $full_location;
680
-    $location_replace_vars['%%in_location%%'] = $full_location != '' ? __( 'in', 'geodirectory' ) . ' ' . $full_location : '';
680
+    $location_replace_vars['%%in_location%%'] = $full_location != '' ? __('in', 'geodirectory').' '.$full_location : '';
681 681
     $location_replace_vars['%%location_single%%'] = $location_single;
682
-    $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? __( 'in', 'geodirectory' ) . ' ' . $location_single : '';
682
+    $location_replace_vars['%%in_location_single%%'] = $location_single != '' ? __('in', 'geodirectory').' '.$location_single : '';
683 683
 
684 684
     foreach ($location_names as $type => $name) {
685 685
         $location_type = strpos($type, 'gd_') === 0 ? substr($type, 3) : $type;
686 686
 
687
-        $location_replace_vars['%%location_' . $location_type . '%%'] = $name;
688
-        $location_replace_vars['%%in_location_' . $location_type . '%%'] = !empty($name) ? __( 'in', 'geodirectory' ) . ' ' . $name : '';
687
+        $location_replace_vars['%%location_'.$location_type.'%%'] = $name;
688
+        $location_replace_vars['%%in_location_'.$location_type.'%%'] = !empty($name) ? __('in', 'geodirectory').' '.$name : '';
689 689
     }
690 690
 
691 691
     /**
@@ -699,5 +699,5 @@  discard block
 block discarded – undo
699 699
      * @param string $gd_page       The page being filtered.
700 700
      * @param string $sep           The separator.
701 701
      */
702
-    return apply_filters( 'geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep );
702
+    return apply_filters('geodir_filter_location_replace_variables', $location_replace_vars, $location_array, $gd_page, $sep);
703 703
 }
704 704
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/custom_functions.php 4 patches
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2256,7 +2256,7 @@  discard block
 block discarded – undo
2256 2256
 
2257 2257
 	if ( $new_style ) {
2258 2258
 		$default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>';
2259
-	}else{
2259
+	} else{
2260 2260
 		$default_search_button_label = 'Search';
2261 2261
 	}
2262 2262
 	if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) {
@@ -2283,7 +2283,7 @@  discard block
 block discarded – undo
2283 2283
 	if ( $new_style ) {
2284 2284
 	?>
2285 2285
 		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button>
2286
-<?php }else{?>
2286
+<?php } else{?>
2287 2287
 		<input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>"
2288 2288
 	       class="geodir_submit_search <?php echo $fa_class; ?>"/>
2289 2289
 	<?php }
@@ -2333,17 +2333,17 @@  discard block
 block discarded – undo
2333 2333
 			if ( $new_style ) {
2334 2334
 				echo "</div>";
2335 2335
 			}
2336
-		}else{
2336
+		} else{
2337 2337
 			if(! empty( $post_types )){
2338 2338
 				$pt_arr = (array)$post_types;
2339 2339
 				echo '<input type="hidden" name="stype" value="' . key( $pt_arr  ) . '"  />';
2340
-			}else{
2340
+			} else{
2341 2341
 				echo '<input type="hidden" name="stype" value="gd_place"  />';
2342 2342
 			}
2343 2343
 
2344 2344
 		}
2345 2345
 
2346
-	}elseif ( ! empty( $post_types ) ) {
2346
+	} elseif ( ! empty( $post_types ) ) {
2347 2347
 		echo '<input type="hidden" name="stype" value="gd_place"  />';
2348 2348
 	}
2349 2349
 }
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
  * @param object|string $post The post object.
162 162
  * @param string $post_type   The post type.
163 163
  *
164
- * @return object Returns filtered package info as an object.
164
+ * @return string Returns filtered package info as an object.
165 165
  */
166 166
 function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) {
167 167
 	$package_info['pid']              = 0;
@@ -2489,7 +2489,7 @@  discard block
 block discarded – undo
2489 2489
  *
2490 2490
  * @since 1.5.0
2491 2491
  *
2492
- * @return True if WPML is active else False.
2492
+ * @return boolean if WPML is active else False.
2493 2493
  */
2494 2494
 function geodir_is_wpml() {
2495 2495
     if (function_exists('icl_object_id')) {
@@ -2561,7 +2561,6 @@  discard block
 block discarded – undo
2561 2561
  * @since 1.6.16 Sync reviews if sync comments allowed.
2562 2562
  *
2563 2563
  * @param int $post_id The Post ID.
2564
- * @param string $lang Language code for translating post.
2565 2564
  * @param array $request_info The post details in an array.
2566 2565
  */
2567 2566
 function geodir_wpml_duplicate_listing($post_id, $request_info) {
@@ -2645,7 +2644,7 @@  discard block
 block discarded – undo
2645 2644
  * @param int $master_post_id Original Post ID.
2646 2645
  * @param int $tr_post_id Translation Post ID.
2647 2646
  * @param string $lang Language code for translating post.
2648
- * @return bool True for success, False for fail.
2647
+ * @return boolean|null True for success, False for fail.
2649 2648
  */
2650 2649
 function geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang) {
2651 2650
     global $sitepress, $wpdb;
@@ -2888,8 +2887,6 @@  discard block
 block discarded – undo
2888 2887
  *
2889 2888
  * @since 1.6.16
2890 2889
  *
2891
- * @param string $post_type WP post type or WP texonomy. Ex: gd_place.
2892
- * @param bool $taxonomy Whether $post_type is taxonomy or not.
2893 2890
  * @return bool True if review star disabled, otherwise false.
2894 2891
  */ 
2895 2892
 function geodir_rating_disabled_post_types() {
Please login to merge, or discard this patch.
Indentation   +204 added lines, -204 removed lines patch added patch discarded remove patch
@@ -2363,10 +2363,10 @@  discard block
 block discarded – undo
2363 2363
 	?>
2364 2364
 	<input class="search_text" name="s"
2365 2365
 	       value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
2366
-		       echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2367
-	       } else {
2368
-		       echo $default_search_for_text;
2369
-	       } ?>" type="text"
2366
+			   echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2367
+		   } else {
2368
+			   echo $default_search_for_text;
2369
+		   } ?>" type="text"
2370 2370
 	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
2371 2371
 	       onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
2372 2372
 	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);">
@@ -2493,11 +2493,11 @@  discard block
 block discarded – undo
2493 2493
  * @return True if WPML is active else False.
2494 2494
  */
2495 2495
 function geodir_is_wpml() {
2496
-    if (function_exists('icl_object_id')) {
2497
-        return true;
2498
-    }
2496
+	if (function_exists('icl_object_id')) {
2497
+		return true;
2498
+	}
2499 2499
 
2500
-    return false;
2500
+	return false;
2501 2501
 }
2502 2502
 
2503 2503
 /**
@@ -2512,9 +2512,9 @@  discard block
 block discarded – undo
2512 2512
  * @return Language code.
2513 2513
  */
2514 2514
 function geodir_get_language_for_element($element_id, $element_type) {
2515
-    global $sitepress;
2515
+	global $sitepress;
2516 2516
 
2517
-    return $sitepress->get_language_for_element($element_id, $element_type);
2517
+	return $sitepress->get_language_for_element($element_id, $element_type);
2518 2518
 }
2519 2519
 
2520 2520
 /**
@@ -2531,31 +2531,31 @@  discard block
 block discarded – undo
2531 2531
  *                         Added to fix duplicate transaltion for front end.
2532 2532
  */
2533 2533
 function geodir_icl_make_duplicate($master_post_id, $lang, $postarr, $tr_post_id, $after_save = false) {
2534
-    global $sitepress;
2534
+	global $sitepress;
2535 2535
     
2536
-    $post_type = get_post_type($master_post_id);
2537
-    $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2538
-    if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2539
-        $icl_ajx_action = true;
2540
-    }
2536
+	$post_type = get_post_type($master_post_id);
2537
+	$icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2538
+	if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2539
+		$icl_ajx_action = true;
2540
+	}
2541 2541
     
2542
-    if (in_array($post_type, geodir_get_posttypes())) {
2543
-        if ($icl_ajx_action || $after_save) {
2544
-            // Duplicate post details
2545
-            geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang);
2542
+	if (in_array($post_type, geodir_get_posttypes())) {
2543
+		if ($icl_ajx_action || $after_save) {
2544
+			// Duplicate post details
2545
+			geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang);
2546 2546
             
2547
-            // Duplicate taxonomies
2548
-            geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang);
2547
+			// Duplicate taxonomies
2548
+			geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang);
2549 2549
             
2550
-            // Duplicate post images
2551
-            geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang);
2552
-        }
2550
+			// Duplicate post images
2551
+			geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang);
2552
+		}
2553 2553
         
2554
-        // Sync post reviews
2555
-        if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2556
-            geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang);
2557
-        }
2558
-    }
2554
+		// Sync post reviews
2555
+		if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2556
+			geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang);
2557
+		}
2558
+	}
2559 2559
 }
2560 2560
 add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 );
2561 2561
 
@@ -2569,18 +2569,18 @@  discard block
 block discarded – undo
2569 2569
  * @param array $request_info The post details in an array.
2570 2570
  */
2571 2571
 function geodir_wpml_duplicate_listing($post_id, $request_info) {
2572
-    global $sitepress;
2572
+	global $sitepress;
2573 2573
     
2574
-    $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2575
-    if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2576
-        $icl_ajx_action = true;
2577
-    }
2574
+	$icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2575
+	if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2576
+		$icl_ajx_action = true;
2577
+	}
2578 2578
     
2579
-    if (!$icl_ajx_action && in_array(get_post_type($post_id), geodir_get_posttypes()) && $post_duplicates = $sitepress->get_duplicates($post_id)) {
2580
-        foreach ($post_duplicates as $lang => $dup_post_id) {
2581
-            geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true);
2582
-        }
2583
-    }
2579
+	if (!$icl_ajx_action && in_array(get_post_type($post_id), geodir_get_posttypes()) && $post_duplicates = $sitepress->get_duplicates($post_id)) {
2580
+		foreach ($post_duplicates as $lang => $dup_post_id) {
2581
+			geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true);
2582
+		}
2583
+	}
2584 2584
 }
2585 2585
 
2586 2586
 /**
@@ -2596,17 +2596,17 @@  discard block
 block discarded – undo
2596 2596
  * @return bool True for success, False for fail.
2597 2597
  */
2598 2598
 function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) {
2599
-    global $wpdb;
2599
+	global $wpdb;
2600 2600
 
2601
-    $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2601
+	$reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2602 2602
 
2603
-    if (!empty($reviews)) {
2604
-        foreach ($reviews as $review) {
2605
-            geodir_wpml_duplicate_post_review($review['comment_id'], $master_post_id, $tr_post_id, $lang);
2606
-        }
2607
-    }
2603
+	if (!empty($reviews)) {
2604
+		foreach ($reviews as $review) {
2605
+			geodir_wpml_duplicate_post_review($review['comment_id'], $master_post_id, $tr_post_id, $lang);
2606
+		}
2607
+	}
2608 2608
 
2609
-    return false;
2609
+	return false;
2610 2610
 }
2611 2611
 
2612 2612
 /**
@@ -2623,22 +2623,22 @@  discard block
 block discarded – undo
2623 2623
  * @return bool True for success, False for fail.
2624 2624
  */
2625 2625
 function geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang) {
2626
-    global $wpdb, $plugin_prefix;
2626
+	global $wpdb, $plugin_prefix;
2627 2627
 
2628
-    $post_type = get_post_type($master_post_id);
2629
-    $post_table = $plugin_prefix . $post_type . '_detail';
2628
+	$post_type = get_post_type($master_post_id);
2629
+	$post_table = $plugin_prefix . $post_type . '_detail';
2630 2630
 
2631
-    $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
2632
-    $data = (array)$wpdb->get_row($query);
2631
+	$query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
2632
+	$data = (array)$wpdb->get_row($query);
2633 2633
 
2634
-    if ( !empty( $data ) ) {
2635
-        $data['post_id'] = $tr_post_id;
2636
-        unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']);
2637
-        $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
2638
-        return true;
2639
-    }
2634
+	if ( !empty( $data ) ) {
2635
+		$data['post_id'] = $tr_post_id;
2636
+		unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']);
2637
+		$wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
2638
+		return true;
2639
+	}
2640 2640
 
2641
-    return false;
2641
+	return false;
2642 2642
 }
2643 2643
 
2644 2644
 /**
@@ -2655,40 +2655,40 @@  discard block
 block discarded – undo
2655 2655
  * @return bool True for success, False for fail.
2656 2656
  */
2657 2657
 function geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang) {
2658
-    global $sitepress, $wpdb;
2659
-    $post_type = get_post_type($master_post_id);
2658
+	global $sitepress, $wpdb;
2659
+	$post_type = get_post_type($master_post_id);
2660 2660
 
2661
-    remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
2661
+	remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
2662 2662
 
2663
-    $taxonomies = get_object_taxonomies($post_type);
2664
-    foreach ($taxonomies as $taxonomy) {
2665
-        $terms = get_the_terms($master_post_id, $taxonomy);
2666
-        $terms_array = array();
2663
+	$taxonomies = get_object_taxonomies($post_type);
2664
+	foreach ($taxonomies as $taxonomy) {
2665
+		$terms = get_the_terms($master_post_id, $taxonomy);
2666
+		$terms_array = array();
2667 2667
         
2668
-        if ($terms) {
2669
-            foreach ($terms as $term) {
2670
-                $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
2668
+		if ($terms) {
2669
+			foreach ($terms as $term) {
2670
+				$tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
2671 2671
                 
2672
-                if (!is_null($tr_id)){
2673
-                    // not using get_term - unfiltered get_term
2674
-                    $translated_term = $wpdb->get_row($wpdb->prepare("
2672
+				if (!is_null($tr_id)){
2673
+					// not using get_term - unfiltered get_term
2674
+					$translated_term = $wpdb->get_row($wpdb->prepare("
2675 2675
                         SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
2676 2676
 
2677
-                    $terms_array[] = $translated_term->term_id;
2678
-                }
2679
-            }
2677
+					$terms_array[] = $translated_term->term_id;
2678
+				}
2679
+			}
2680 2680
 
2681
-            if (!is_taxonomy_hierarchical($taxonomy)){
2682
-                $terms_array = array_unique( array_map( 'intval', $terms_array ) );
2683
-            }
2681
+			if (!is_taxonomy_hierarchical($taxonomy)){
2682
+				$terms_array = array_unique( array_map( 'intval', $terms_array ) );
2683
+			}
2684 2684
 
2685
-            wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
2685
+			wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
2686 2686
             
2687
-            if ($taxonomy == $post_type . 'category') {
2688
-                geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
2689
-            }
2690
-        }
2691
-    }
2687
+			if ($taxonomy == $post_type . 'category') {
2688
+				geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
2689
+			}
2690
+		}
2691
+	}
2692 2692
 }
2693 2693
 
2694 2694
 /**
@@ -2704,29 +2704,29 @@  discard block
 block discarded – undo
2704 2704
  * @return bool True for success, False for fail.
2705 2705
  */
2706 2706
 function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
2707
-    global $wpdb;
2707
+	global $wpdb;
2708 2708
 
2709
-    $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2710
-    $wpdb->query($query);
2709
+	$query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2710
+	$wpdb->query($query);
2711 2711
 
2712
-    $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2713
-    $post_images = $wpdb->get_results($query);
2712
+	$query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2713
+	$post_images = $wpdb->get_results($query);
2714 2714
 
2715
-    if ( !empty( $post_images ) ) {
2716
-        foreach ( $post_images as $post_image) {
2717
-            $image_data = (array)$post_image;
2718
-            unset($image_data['ID']);
2719
-            $image_data['post_id'] = $tr_post_id;
2715
+	if ( !empty( $post_images ) ) {
2716
+		foreach ( $post_images as $post_image) {
2717
+			$image_data = (array)$post_image;
2718
+			unset($image_data['ID']);
2719
+			$image_data['post_id'] = $tr_post_id;
2720 2720
             
2721
-            $wpdb->insert(GEODIR_ATTACHMENT_TABLE, $image_data);
2721
+			$wpdb->insert(GEODIR_ATTACHMENT_TABLE, $image_data);
2722 2722
             
2723
-            geodir_set_wp_featured_image($tr_post_id);
2724
-        }
2723
+			geodir_set_wp_featured_image($tr_post_id);
2724
+		}
2725 2725
         
2726
-        return true;
2727
-    }
2726
+		return true;
2727
+	}
2728 2728
 
2729
-    return false;
2729
+	return false;
2730 2730
 }
2731 2731
 
2732 2732
 
@@ -2745,73 +2745,73 @@  discard block
 block discarded – undo
2745 2745
  * @return bool True for success, False for fail.
2746 2746
  */
2747 2747
 function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) {
2748
-    global $wpdb, $plugin_prefix, $sitepress;
2749
-
2750
-    $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2751
-
2752
-    if (empty($review)) {
2753
-        return false;
2754
-    }
2755
-    if ($review['post_id'] != $master_post_id) {
2756
-        $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2757
-        geodir_update_postrating($master_post_id, $post_type);
2758
-    }
2759
-
2760
-    $tr_comment_id = geodir_wpml_duplicate_comment_exists($tr_post_id, $master_comment_id);
2761
-
2762
-    if (empty($tr_comment_id)) {
2763
-        return false;
2764
-    }
2765
-
2766
-    $post_type = get_post_type($master_post_id);
2767
-    $post_table = $plugin_prefix . $post_type . '_detail';
2768
-
2769
-    $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
2770
-    if (empty($translated_post)) {
2771
-        return false;
2772
-    }
2773
-
2774
-    $review['comment_id'] = $tr_comment_id;
2775
-    $review['post_id'] = $tr_post_id;
2776
-    $review['post_title'] = $translated_post['post_title'];
2777
-    $review['post_city'] = $translated_post['post_city'];
2778
-    $review['post_region'] = $translated_post['post_region'];
2779
-    $review['post_country'] = $translated_post['post_country'];
2780
-    $review['post_latitude'] = $translated_post['post_latitude'];
2781
-    $review['post_longitude'] = $translated_post['post_longitude'];
2782
-
2783
-    if (isset($review['id'])) {
2784
-        unset($review['id']);
2785
-    }
2786
-
2787
-    $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2788
-
2789
-    if ($tr_review_id) { // update review
2790
-        $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
2791
-    } else { // insert review
2792
-        $wpdb->insert(GEODIR_REVIEW_TABLE, $review);
2793
-        $tr_review_id = $wpdb->insert_id;
2794
-    }
2795
-
2796
-    if ($tr_post_id) {
2797
-        geodir_update_postrating($tr_post_id, $post_type);
2748
+	global $wpdb, $plugin_prefix, $sitepress;
2749
+
2750
+	$review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2751
+
2752
+	if (empty($review)) {
2753
+		return false;
2754
+	}
2755
+	if ($review['post_id'] != $master_post_id) {
2756
+		$wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2757
+		geodir_update_postrating($master_post_id, $post_type);
2758
+	}
2759
+
2760
+	$tr_comment_id = geodir_wpml_duplicate_comment_exists($tr_post_id, $master_comment_id);
2761
+
2762
+	if (empty($tr_comment_id)) {
2763
+		return false;
2764
+	}
2765
+
2766
+	$post_type = get_post_type($master_post_id);
2767
+	$post_table = $plugin_prefix . $post_type . '_detail';
2768
+
2769
+	$translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
2770
+	if (empty($translated_post)) {
2771
+		return false;
2772
+	}
2773
+
2774
+	$review['comment_id'] = $tr_comment_id;
2775
+	$review['post_id'] = $tr_post_id;
2776
+	$review['post_title'] = $translated_post['post_title'];
2777
+	$review['post_city'] = $translated_post['post_city'];
2778
+	$review['post_region'] = $translated_post['post_region'];
2779
+	$review['post_country'] = $translated_post['post_country'];
2780
+	$review['post_latitude'] = $translated_post['post_latitude'];
2781
+	$review['post_longitude'] = $translated_post['post_longitude'];
2782
+
2783
+	if (isset($review['id'])) {
2784
+		unset($review['id']);
2785
+	}
2786
+
2787
+	$tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2788
+
2789
+	if ($tr_review_id) { // update review
2790
+		$wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
2791
+	} else { // insert review
2792
+		$wpdb->insert(GEODIR_REVIEW_TABLE, $review);
2793
+		$tr_review_id = $wpdb->insert_id;
2794
+	}
2795
+
2796
+	if ($tr_post_id) {
2797
+		geodir_update_postrating($tr_post_id, $post_type);
2798 2798
         
2799
-        if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
2800
-            $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
2801
-            $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2802
-
2803
-            if (!empty($likes)) {
2804
-                foreach ($likes as $like) {
2805
-                    unset($like['like_id']);
2806
-                    $like['comment_id'] = $tr_comment_id;
2799
+		if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
2800
+			$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
2801
+			$likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2802
+
2803
+			if (!empty($likes)) {
2804
+				foreach ($likes as $like) {
2805
+					unset($like['like_id']);
2806
+					$like['comment_id'] = $tr_comment_id;
2807 2807
                     
2808
-                    $wpdb->insert(GEODIR_COMMENTS_REVIEWS_TABLE, $like);
2809
-                }
2810
-            }
2811
-        }
2812
-    }
2808
+					$wpdb->insert(GEODIR_COMMENTS_REVIEWS_TABLE, $like);
2809
+				}
2810
+			}
2811
+		}
2812
+	}
2813 2813
 
2814
-    return $tr_review_id;
2814
+	return $tr_review_id;
2815 2815
 }
2816 2816
 
2817 2817
 /**
@@ -2826,36 +2826,36 @@  discard block
 block discarded – undo
2826 2826
  * @param int $comment_id The Comment ID.
2827 2827
  */
2828 2828
 function gepdir_wpml_sync_comment($comment_id) {
2829
-    global $wpdb, $sitepress, $gd_wpml_posttypes;
2830
-
2831
-    if (empty($gd_post_types)) {
2832
-        $gd_wpml_posttypes = geodir_get_posttypes();
2833
-    }
2834
-
2835
-    $comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_ID=%d", $comment_id), ARRAY_A);
2836
-    if (empty($comment)) {
2837
-        return;
2838
-    }
2839
-
2840
-    $post_id = $comment['comment_post_ID'];
2841
-    $post_type = $post_id ? get_post_type($post_id) : NULL;
2842
-
2843
-    if (!($post_type && in_array($post_type, $gd_wpml_posttypes))) {
2844
-        return;
2845
-    }
2846
-
2847
-    $post_duplicates = $sitepress->get_duplicates($post_id);
2848
-    if (empty($post_duplicates)) {
2849
-        return;
2850
-    }
2851
-
2852
-    foreach ($post_duplicates as $lang => $dup_post_id) {
2853
-        if (empty($comment['comment_parent'])) {
2854
-            geodir_wpml_duplicate_post_review($comment_id, $post_id, $dup_post_id, $lang);
2855
-        }
2856
-    }
2829
+	global $wpdb, $sitepress, $gd_wpml_posttypes;
2830
+
2831
+	if (empty($gd_post_types)) {
2832
+		$gd_wpml_posttypes = geodir_get_posttypes();
2833
+	}
2834
+
2835
+	$comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_ID=%d", $comment_id), ARRAY_A);
2836
+	if (empty($comment)) {
2837
+		return;
2838
+	}
2839
+
2840
+	$post_id = $comment['comment_post_ID'];
2841
+	$post_type = $post_id ? get_post_type($post_id) : NULL;
2842
+
2843
+	if (!($post_type && in_array($post_type, $gd_wpml_posttypes))) {
2844
+		return;
2845
+	}
2846
+
2847
+	$post_duplicates = $sitepress->get_duplicates($post_id);
2848
+	if (empty($post_duplicates)) {
2849
+		return;
2850
+	}
2851
+
2852
+	foreach ($post_duplicates as $lang => $dup_post_id) {
2853
+		if (empty($comment['comment_parent'])) {
2854
+			geodir_wpml_duplicate_post_review($comment_id, $post_id, $dup_post_id, $lang);
2855
+		}
2856
+	}
2857 2857
     
2858
-    return true;
2858
+	return true;
2859 2859
 }
2860 2860
 
2861 2861
 /**
@@ -2870,11 +2870,11 @@  discard block
 block discarded – undo
2870 2870
  * @return int The duplicate comment ID.
2871 2871
  */
2872 2872
 function geodir_wpml_duplicate_comment_exists($dup_post_id, $original_cid) {
2873
-    global $wpdb;
2873
+	global $wpdb;
2874 2874
 
2875
-    $duplicate = $wpdb->get_var(
2876
-        $wpdb->prepare(
2877
-            "   SELECT comm.comment_ID
2875
+	$duplicate = $wpdb->get_var(
2876
+		$wpdb->prepare(
2877
+			"   SELECT comm.comment_ID
2878 2878
                 FROM {$wpdb->comments} comm
2879 2879
                 JOIN {$wpdb->commentmeta} cm
2880 2880
                     ON comm.comment_ID = cm.comment_id
@@ -2882,12 +2882,12 @@  discard block
 block discarded – undo
2882 2882
                     AND cm.meta_key = '_icl_duplicate_of'
2883 2883
                     AND cm.meta_value = %d
2884 2884
                 LIMIT 1",
2885
-            $dup_post_id,
2886
-            $original_cid
2887
-        )
2888
-    );
2885
+			$dup_post_id,
2886
+			$original_cid
2887
+		)
2888
+	);
2889 2889
 
2890
-    return $duplicate;
2890
+	return $duplicate;
2891 2891
 }
2892 2892
 
2893 2893
 /**
@@ -2959,5 +2959,5 @@  discard block
 block discarded – undo
2959 2959
  * @return bool True if Yoast SEO disabled on GD pages.
2960 2960
  */
2961 2961
 function geodir_disable_yoast_seo_metas() {
2962
-    return (bool)get_option( 'geodir_disable_yoast_meta' );
2962
+	return (bool)get_option( 'geodir_disable_yoast_meta' );
2963 2963
 }
2964 2964
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +669 added lines, -669 removed lines patch added patch discarded remove patch
@@ -52,31 +52,31 @@  discard block
 block discarded – undo
52 52
 				jQuery(listSel).children('li').switchClass('gridview_onehalf gridview_onethird gridview_onefourth', 'gridview_onefifth', 600);
53 53
 			}
54 54
 
55
-			jQuery.post("<?php echo geodir_get_ajax_url();?>&gd_listing_view=" + val, function (data) {
55
+			jQuery.post("<?php echo geodir_get_ajax_url(); ?>&gd_listing_view=" + val, function (data) {
56 56
 				//alert(data );
57 57
 			});
58 58
 		}
59 59
 	</script>
60 60
 	<div class="geodir-list-view-select">
61 61
 		<select name="gd_list_view" id="gd_list_view" onchange="geodir_list_view_select(this);">
62
-			<?php $listing_view = (int) $gd_session->get( 'gd_listing_view' ); ?>
63
-			<option value=""><?php _e( 'View:', 'geodirectory' ); ?></option>
62
+			<?php $listing_view = (int) $gd_session->get('gd_listing_view'); ?>
63
+			<option value=""><?php _e('View:', 'geodirectory'); ?></option>
64 64
 			<option
65
-				value="1" <?php selected( 1, $listing_view ); ?>><?php _e( 'View: List', 'geodirectory' ); ?></option>
65
+				value="1" <?php selected(1, $listing_view); ?>><?php _e('View: List', 'geodirectory'); ?></option>
66 66
 			<option
67
-				value="2" <?php selected( 2, $listing_view ); ?>><?php _e( 'View: Grid 2', 'geodirectory' ); ?></option>
67
+				value="2" <?php selected(2, $listing_view); ?>><?php _e('View: Grid 2', 'geodirectory'); ?></option>
68 68
 			<option
69
-				value="3" <?php selected( 3, $listing_view ); ?>><?php _e( 'View: Grid 3', 'geodirectory' ); ?></option>
69
+				value="3" <?php selected(3, $listing_view); ?>><?php _e('View: Grid 3', 'geodirectory'); ?></option>
70 70
 			<option
71
-				value="4" <?php selected( 4, $listing_view ); ?>><?php _e( 'View: Grid 4', 'geodirectory' ); ?></option>
71
+				value="4" <?php selected(4, $listing_view); ?>><?php _e('View: Grid 4', 'geodirectory'); ?></option>
72 72
 			<option
73
-				value="5" <?php selected( 5, $listing_view ); ?>><?php _e( 'View: Grid 5', 'geodirectory' ); ?></option>
73
+				value="5" <?php selected(5, $listing_view); ?>><?php _e('View: Grid 5', 'geodirectory'); ?></option>
74 74
 		</select>
75 75
 	</div>
76 76
 	<?php
77 77
 }
78 78
 
79
-add_action( 'geodir_before_listing', 'geodir_list_view_select', 100 );
79
+add_action('geodir_before_listing', 'geodir_list_view_select', 100);
80 80
 
81 81
 /**
82 82
  * Limit the listing excerpt.
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
  * @global object $post          The current post object.
92 92
  * @return string The modified excerpt.
93 93
  */
94
-function geodir_max_excerpt( $charlength ) {
94
+function geodir_max_excerpt($charlength) {
95 95
 	global $post;
96
-	if ( $charlength == '0' ) {
96
+	if ($charlength == '0') {
97 97
 		return;
98 98
 	}
99 99
 	$out = '';
@@ -101,46 +101,46 @@  discard block
 block discarded – undo
101 101
 	$temp_post = $post;
102 102
 	$excerpt   = get_the_excerpt();
103 103
 
104
-	$charlength ++;
105
-	$excerpt_more = function_exists( 'geodirf_excerpt_more' ) ? geodirf_excerpt_more( '' ) : geodir_excerpt_more( '' );
106
-	if ( geodir_utf8_strlen( $excerpt ) > $charlength ) {
107
-		if ( geodir_utf8_strlen( $excerpt_more ) > 0 && geodir_utf8_strpos( $excerpt, $excerpt_more ) !== false ) {
108
-			$excut = - ( geodir_utf8_strlen( $excerpt_more ) );
109
-			$subex = geodir_utf8_substr( $excerpt, 0, $excut );
110
-			if ( $charlength > 0 && geodir_utf8_strlen( $subex ) > $charlength ) {
111
-				$subex = geodir_utf8_substr( $subex, 0, $charlength );
104
+	$charlength++;
105
+	$excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
106
+	if (geodir_utf8_strlen($excerpt) > $charlength) {
107
+		if (geodir_utf8_strlen($excerpt_more) > 0 && geodir_utf8_strpos($excerpt, $excerpt_more) !== false) {
108
+			$excut = - (geodir_utf8_strlen($excerpt_more));
109
+			$subex = geodir_utf8_substr($excerpt, 0, $excut);
110
+			if ($charlength > 0 && geodir_utf8_strlen($subex) > $charlength) {
111
+				$subex = geodir_utf8_substr($subex, 0, $charlength);
112 112
 			}
113 113
 			$out .= $subex;
114 114
 		} else {
115
-			$subex   = geodir_utf8_substr( $excerpt, 0, $charlength - 5 );
116
-			$exwords = explode( ' ', $subex );
117
-			$excut   = - ( geodir_utf8_strlen( $exwords[ count( $exwords ) - 1 ] ) );
118
-			if ( $excut < 0 ) {
119
-				$out .= geodir_utf8_substr( $subex, 0, $excut );
115
+			$subex   = geodir_utf8_substr($excerpt, 0, $charlength - 5);
116
+			$exwords = explode(' ', $subex);
117
+			$excut   = - (geodir_utf8_strlen($exwords[count($exwords) - 1]));
118
+			if ($excut < 0) {
119
+				$out .= geodir_utf8_substr($subex, 0, $excut);
120 120
 			} else {
121 121
 				$out .= $subex;
122 122
 			}
123 123
 		}
124
-		$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
124
+		$out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">';
125 125
 		/**
126 126
 		 * Filter excerpt read more text.
127 127
 		 *
128 128
 		 * @since 1.0.0
129 129
 		 */
130
-		$out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
130
+		$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
131 131
 		$out .= '</a>';
132 132
 
133 133
 	} else {
134
-		if ( geodir_utf8_strlen( $excerpt_more ) > 0 && geodir_utf8_strpos( $excerpt, $excerpt_more ) !== false ) {
135
-			$excut = - ( geodir_utf8_strlen( $excerpt_more ) );
136
-			$out .= geodir_utf8_substr( $excerpt, 0, $excut );
137
-			$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
134
+		if (geodir_utf8_strlen($excerpt_more) > 0 && geodir_utf8_strpos($excerpt, $excerpt_more) !== false) {
135
+			$excut = - (geodir_utf8_strlen($excerpt_more));
136
+			$out .= geodir_utf8_substr($excerpt, 0, $excut);
137
+			$out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">';
138 138
 			/**
139 139
 			 * Filter excerpt read more text.
140 140
 			 *
141 141
 			 * @since 1.0.0
142 142
 			 */
143
-			$out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
143
+			$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
144 144
 			$out .= '</a>';
145 145
 		} else {
146 146
 			$out .= $excerpt;
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
  *
164 164
  * @return object Returns filtered package info as an object.
165 165
  */
166
-function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) {
166
+function geodir_post_package_info($package_info, $post = '', $post_type = '') {
167 167
 	$package_info['pid']              = 0;
168 168
 	$package_info['days']             = 0;
169 169
 	$package_info['amount']           = 0;
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	 * @param object|string $post  The post object.
193 193
 	 * @param string $post_type    The post type.
194 194
 	 */
195
-	return (object) apply_filters( 'geodir_post_package_info', $package_info, $post, $post_type );
195
+	return (object) apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
196 196
 
197 197
 }
198 198
 
@@ -220,11 +220,11 @@  discard block
 block discarded – undo
220 220
  *
221 221
  * }
222 222
  */
223
-function geodir_send_inquiry( $request ) {
223
+function geodir_send_inquiry($request) {
224 224
 	global $wpdb;
225 225
 
226 226
 	// strip slashes from text
227
-	$request = ! empty( $request ) ? stripslashes_deep( $request ) : $request;
227
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
228 228
 
229 229
 	$yourname      = $request['inq_name'];
230 230
 	$youremail     = $request['inq_email'];
@@ -235,26 +235,26 @@  discard block
 block discarded – undo
235 235
 	$author_id  = '';
236 236
 	$post_title = '';
237 237
 
238
-	if ( $request['pid'] ) {
238
+	if ($request['pid']) {
239 239
 
240 240
 		$productinfosql = $wpdb->prepare(
241 241
 			"select ID,post_author,post_title from $wpdb->posts where ID =%d",
242
-			array( $request['pid'] )
242
+			array($request['pid'])
243 243
 		);
244
-		$productinfo    = $wpdb->get_row( $productinfosql );
244
+		$productinfo = $wpdb->get_row($productinfosql);
245 245
 
246 246
 		$author_id  = $productinfo->post_author;
247 247
 		$post_title = $productinfo->post_title;
248 248
 	}
249 249
 
250
-	$post_title = '<a href="' . get_permalink( $pid ) . '">' . $post_title . '</a>';
250
+	$post_title = '<a href="'.get_permalink($pid).'">'.$post_title.'</a>';
251 251
 
252
-	$user_info = get_userdata( $author_id );
253
-	$to_email  = geodir_get_post_meta( $pid, 'geodir_email', true );
254
-	$to_name   = geodir_get_client_name( $author_id );
252
+	$user_info = get_userdata($author_id);
253
+	$to_email  = geodir_get_post_meta($pid, 'geodir_email', true);
254
+	$to_name   = geodir_get_client_name($author_id);
255 255
 
256
-	if ( $to_email == '' ) {
257
-		$to_email = get_option( 'admin_email' );
256
+	if ($to_email == '') {
257
+		$to_email = get_option('admin_email');
258 258
 	}
259 259
 
260 260
 	/**
@@ -275,10 +275,10 @@  discard block
 block discarded – undo
275 275
 	 * }
276 276
 	 * @param string $type     The form type, default: `Enquiry`.
277 277
 	 */
278
-	do_action( 'geodir_after_send_enquiry', $request, 'Enquiry' );
278
+	do_action('geodir_after_send_enquiry', $request, 'Enquiry');
279 279
 
280 280
 	$client_message = $frnd_comments;
281
-	$client_message .= '<br>' . __( 'From :', 'geodirectory' ) . ' ' . $yourname . '<br>' . __( 'Phone :', 'geodirectory' ) . ' ' . $inq_phone . '<br>' . __( 'Email :', 'geodirectory' ) . ' ' . $youremail . '<br><br>' . __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . trailingslashit( home_url() ) . '">' . get_option( 'blogname' ) . '</a></b>.';
281
+	$client_message .= '<br>'.__('From :', 'geodirectory').' '.$yourname.'<br>'.__('Phone :', 'geodirectory').' '.$inq_phone.'<br>'.__('Email :', 'geodirectory').' '.$youremail.'<br><br>'.__('Sent from', 'geodirectory').' - <b><a href="'.trailingslashit(home_url()).'">'.get_option('blogname').'</a></b>.';
282 282
 	/**
283 283
 	 * Filter client message text.
284 284
 	 *
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 	 *
287 287
 	 * @param string $client_message Client message text.
288 288
 	 */
289
-	$client_message = apply_filters( 'geodir_inquiry_email_msg', $client_message );
289
+	$client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
290 290
 
291 291
 	/**
292 292
 	 * Called before the send enquiry email is sent.
@@ -305,12 +305,12 @@  discard block
 block discarded – undo
305 305
 	 *
306 306
 	 * }
307 307
 	 */
308
-	do_action( 'geodir_before_send_enquiry_email', $request );
309
-	if ( $to_email ) {
308
+	do_action('geodir_before_send_enquiry_email', $request);
309
+	if ($to_email) {
310 310
 		// strip slashes message
311
-		$client_message = stripslashes_deep( $client_message );
311
+		$client_message = stripslashes_deep($client_message);
312 312
 
313
-		geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid'] );//To client email
313
+		geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']); //To client email
314 314
 	}
315 315
 
316 316
 	/**
@@ -330,12 +330,12 @@  discard block
 block discarded – undo
330 330
 	 *
331 331
 	 * }
332 332
 	 */
333
-	do_action( 'geodir_after_send_enquiry_email', $request );
334
-	$url = get_permalink( $pid );
335
-	if ( strstr( $url, '?' ) ) {
336
-		$url = $url . "&send_inquiry=success";
333
+	do_action('geodir_after_send_enquiry_email', $request);
334
+	$url = get_permalink($pid);
335
+	if (strstr($url, '?')) {
336
+		$url = $url."&send_inquiry=success";
337 337
 	} else {
338
-		$url = $url . "?send_inquiry=success";
338
+		$url = $url."?send_inquiry=success";
339 339
 	}
340 340
 	/**
341 341
 	 * Filter redirect url after the send enquiry email is sent.
@@ -344,8 +344,8 @@  discard block
 block discarded – undo
344 344
 	 *
345 345
 	 * @param string $url Redirect url.
346 346
 	 */
347
-	$url = apply_filters( 'geodir_send_enquiry_after_submit_redirect', $url );
348
-	wp_redirect( $url );
347
+	$url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
348
+	wp_redirect($url);
349 349
 	gd_die();
350 350
 
351 351
 }
@@ -374,11 +374,11 @@  discard block
 block discarded – undo
374 374
  * }
375 375
  * @global object $wpdb        WordPress Database object.
376 376
  */
377
-function geodir_send_friend( $request ) {
377
+function geodir_send_friend($request) {
378 378
 	global $wpdb;
379 379
 
380 380
 	// strip slashes from text
381
-	$request = ! empty( $request ) ? stripslashes_deep( $request ) : $request;
381
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
382 382
 
383 383
 	$yourname      = $request['yourname'];
384 384
 	$youremail     = $request['youremail'];
@@ -387,13 +387,13 @@  discard block
 block discarded – undo
387 387
 	$pid           = $request['pid'];
388 388
 	$to_email      = $request['to_email'];
389 389
 	$to_name       = $request['to_name'];
390
-	if ( $request['pid'] ) {
390
+	if ($request['pid']) {
391 391
 		$productinfosql = $wpdb->prepare(
392 392
 			"select ID,post_title from $wpdb->posts where ID =%d",
393
-			array( $request['pid'] )
393
+			array($request['pid'])
394 394
 		);
395
-		$productinfo    = $wpdb->get_results( $productinfosql );
396
-		foreach ( $productinfo as $productinfoObj ) {
395
+		$productinfo = $wpdb->get_results($productinfosql);
396
+		foreach ($productinfo as $productinfoObj) {
397 397
 			$post_title = $productinfoObj->post_title;
398 398
 		}
399 399
 	}
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
 	 *
418 418
 	 * }
419 419
 	 */
420
-	do_action( 'geodir_before_send_to_friend_email', $request );
421
-	geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid'] );//To client email
420
+	do_action('geodir_before_send_to_friend_email', $request);
421
+	geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']); //To client email
422 422
 
423 423
 	/**
424 424
 	 * Called after the send to friend email is sent.
@@ -439,13 +439,13 @@  discard block
 block discarded – undo
439 439
 	 *
440 440
 	 * }
441 441
 	 */
442
-	do_action( 'geodir_after_send_to_friend_email', $request );
442
+	do_action('geodir_after_send_to_friend_email', $request);
443 443
 
444
-	$url = get_permalink( $pid );
445
-	if ( strstr( $url, '?' ) ) {
446
-		$url = $url . "&sendtofrnd=success";
444
+	$url = get_permalink($pid);
445
+	if (strstr($url, '?')) {
446
+		$url = $url."&sendtofrnd=success";
447 447
 	} else {
448
-		$url = $url . "?sendtofrnd=success";
448
+		$url = $url."?sendtofrnd=success";
449 449
 	}
450 450
 	/**
451 451
 	 * Filter redirect url after the send to friend email is sent.
@@ -454,8 +454,8 @@  discard block
 block discarded – undo
454 454
 	 *
455 455
 	 * @param string $url Redirect url.
456 456
 	 */
457
-	$url = apply_filters( 'geodir_send_to_friend_after_submit_redirect', $url );
458
-	wp_redirect( $url );
457
+	$url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
458
+	wp_redirect($url);
459 459
 	gd_die();
460 460
 }
461 461
 
@@ -469,8 +469,8 @@  discard block
 block discarded – undo
469 469
  *
470 470
  * @param string $hash_key
471 471
  */
472
-function geodir_before_tab_content( $hash_key ) {
473
-	switch ( $hash_key ) {
472
+function geodir_before_tab_content($hash_key) {
473
+	switch ($hash_key) {
474 474
 		case 'post_info' :
475 475
 			echo '<div class="geodir-company_info field-group">';
476 476
 			break;
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 			 *
481 481
 			 * @since 1.0.0
482 482
 			 */
483
-			echo ' <div id="' . apply_filters( 'geodir_post_gallery_id', 'geodir-post-gallery' ) . '" class="clearfix" >';
483
+			echo ' <div id="'.apply_filters('geodir_post_gallery_id', 'geodir-post-gallery').'" class="clearfix" >';
484 484
 			break;
485 485
 		case 'reviews' :
486 486
 			echo '<div id="reviews-wrap" class="clearfix"> ';
@@ -504,8 +504,8 @@  discard block
 block discarded – undo
504 504
  *
505 505
  * @param string $hash_key
506 506
  */
507
-function geodir_after_tab_content( $hash_key ) {
508
-	switch ( $hash_key ) {
507
+function geodir_after_tab_content($hash_key) {
508
+	switch ($hash_key) {
509 509
 		case 'post_info' :
510 510
 			echo '</div>';
511 511
 			break;
@@ -536,25 +536,25 @@  discard block
 block discarded – undo
536 536
  * @global object $wpdb     WordPress Database object.
537 537
  * @return bool|null|string Returns default sort results, when the post type is valid. Otherwise returns false.
538 538
  */
539
-function geodir_get_posts_default_sort( $post_type ) {
539
+function geodir_get_posts_default_sort($post_type) {
540 540
 
541 541
 	global $wpdb;
542 542
 
543
-	if ( $post_type != '' ) {
543
+	if ($post_type != '') {
544 544
 
545 545
 		$all_postypes = geodir_get_posttypes();
546 546
 
547
-		if ( ! in_array( $post_type, $all_postypes ) ) {
547
+		if (!in_array($post_type, $all_postypes)) {
548 548
 			return false;
549 549
 		}
550 550
 
551
-		$sort_field_info = $wpdb->get_var( $wpdb->prepare( "select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where	post_type= %s and is_active=%d and is_default=%d", array(
551
+		$sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where	post_type= %s and is_active=%d and is_default=%d", array(
552 552
 			$post_type,
553 553
 			1,
554 554
 			1
555
-		) ) );
555
+		)));
556 556
 
557
-		if ( ! empty( $sort_field_info ) ) {
557
+		if (!empty($sort_field_info)) {
558 558
 			return $sort_field_info;
559 559
 		}
560 560
 
@@ -574,20 +574,20 @@  discard block
 block discarded – undo
574 574
  * @global object $wpdb     WordPress Database object.
575 575
  * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false.
576 576
  */
577
-function geodir_get_sort_options( $post_type ) {
577
+function geodir_get_sort_options($post_type) {
578 578
 	global $wpdb;
579 579
 
580
-	if ( $post_type != '' ) {
580
+	if ($post_type != '') {
581 581
 		$all_postypes = geodir_get_posttypes();
582 582
 
583
-		if ( ! in_array( $post_type, $all_postypes ) ) {
583
+		if (!in_array($post_type, $all_postypes)) {
584 584
 			return false;
585 585
 		}
586 586
 
587
-		$sort_field_info = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
587
+		$sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
588 588
 			$post_type,
589 589
 			1
590
-		) ) );
590
+		)));
591 591
 
592 592
 		/**
593 593
 		 * Filter post sort options.
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 		 * @param array $sort_field_info Unfiltered sort field array.
598 598
 		 * @param string $post_type      Post type.
599 599
 		 */
600
-		return apply_filters( 'geodir_get_sort_options', $sort_field_info, $post_type );
600
+		return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
601 601
 	}
602 602
 
603 603
 }
@@ -618,63 +618,63 @@  discard block
 block discarded – undo
618 618
 	 *
619 619
 	 * @since 1.4.4
620 620
 	 */
621
-	if ( is_search() ) {
621
+	if (is_search()) {
622 622
 		return;
623 623
 	}
624 624
 
625 625
 	$sort_by = '';
626 626
 
627
-	if ( isset( $_REQUEST['sort_by'] ) ) {
627
+	if (isset($_REQUEST['sort_by'])) {
628 628
 		$sort_by = $_REQUEST['sort_by'];
629 629
 	}
630 630
 
631 631
 	$gd_post_type = geodir_get_current_posttype();
632 632
 
633
-	$sort_options = geodir_get_sort_options( $gd_post_type );
633
+	$sort_options = geodir_get_sort_options($gd_post_type);
634 634
 
635 635
 
636 636
 	$sort_field_options = '';
637 637
 
638
-	if ( ! empty( $sort_options ) ) {
639
-		foreach ( $sort_options as $sort ) {
640
-			$sort = stripslashes_deep( $sort ); // strip slashes
638
+	if (!empty($sort_options)) {
639
+		foreach ($sort_options as $sort) {
640
+			$sort = stripslashes_deep($sort); // strip slashes
641 641
 
642
-			$label = __( $sort->site_title, 'geodirectory' );
642
+			$label = __($sort->site_title, 'geodirectory');
643 643
 
644
-			if ( $sort->field_type == 'random' ) {
644
+			if ($sort->field_type == 'random') {
645 645
 				$key = $sort->field_type;
646
-				( $sort_by == $key || ( $sort->is_default == '1' && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
647
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
646
+				($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
647
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
648 648
 			}
649 649
 
650
-			if ( $sort->htmlvar_name == 'comment_count' ) {
650
+			if ($sort->htmlvar_name == 'comment_count') {
651 651
 				$sort->htmlvar_name = 'rating_count';
652 652
 			}
653 653
 
654
-			if ( $sort->sort_asc ) {
655
-				$key   = $sort->htmlvar_name . '_asc';
654
+			if ($sort->sort_asc) {
655
+				$key   = $sort->htmlvar_name.'_asc';
656 656
 				$label = $sort->site_title;
657
-				if ( $sort->asc_title ) {
657
+				if ($sort->asc_title) {
658 658
 					$label = $sort->asc_title;
659 659
 				}
660
-				( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
661
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
660
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
661
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
662 662
 			}
663 663
 
664
-			if ( $sort->sort_desc ) {
665
-				$key   = $sort->htmlvar_name . '_desc';
664
+			if ($sort->sort_desc) {
665
+				$key   = $sort->htmlvar_name.'_desc';
666 666
 				$label = $sort->site_title;
667
-				if ( $sort->desc_title ) {
667
+				if ($sort->desc_title) {
668 668
 					$label = $sort->desc_title;
669 669
 				}
670
-				( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
671
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
670
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
671
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
672 672
 			}
673 673
 
674 674
 		}
675 675
 	}
676 676
 
677
-	if ( $sort_field_options != '' ) {
677
+	if ($sort_field_options != '') {
678 678
 
679 679
 		?>
680 680
 
@@ -683,9 +683,9 @@  discard block
 block discarded – undo
683 683
 			<select name="sort_by" id="sort_by" onchange="javascript:window.location=this.value;">
684 684
 
685 685
 				<option
686
-					value="<?php echo esc_url( add_query_arg( 'sort_by', '' ) ); ?>" <?php if ( $sort_by == '' ) {
686
+					value="<?php echo esc_url(add_query_arg('sort_by', '')); ?>" <?php if ($sort_by == '') {
687 687
 					echo 'selected="selected"';
688
-				} ?>><?php _e( 'Sort By', 'geodirectory' ); ?></option><?php
688
+				} ?>><?php _e('Sort By', 'geodirectory'); ?></option><?php
689 689
 
690 690
 				echo $sort_field_options; ?>
691 691
 
@@ -713,9 +713,9 @@  discard block
 block discarded – undo
713 713
  *
714 714
  * @return string Returns the section title.
715 715
  */
716
-function geodir_advance_customfields_heading( $title, $field_type ) {
716
+function geodir_advance_customfields_heading($title, $field_type) {
717 717
 
718
-	if ( in_array( $field_type, array( 'multiselect', 'textarea', 'taxonomy' ) ) ) {
718
+	if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
719 719
 		$title = '';
720 720
 	}
721 721
 
@@ -737,19 +737,19 @@  discard block
 block discarded – undo
737 737
  * @global object $gd_session       GeoDirectory Session object.
738 738
  * @return string Returns related posts html.
739 739
  */
740
-function geodir_related_posts_display( $request ) {
741
-	if ( ! empty( $request ) ) {
742
-		$before_title = ( isset( $request['before_title'] ) && ! empty( $request['before_title'] ) ) ? $request['before_title'] : '';
743
-		$after_title  = ( isset( $request['after_title'] ) && ! empty( $request['after_title'] ) ) ? $request['after_title'] : '';
744
-
745
-		$title               = ( isset( $request['title'] ) && ! empty( $request['title'] ) ) ? $request['title'] : __( 'Related Listings', 'geodirectory' );
746
-		$post_number         = ( isset( $request['post_number'] ) && ! empty( $request['post_number'] ) ) ? $request['post_number'] : '5';
747
-		$relate_to           = ( isset( $request['relate_to'] ) && ! empty( $request['relate_to'] ) ) ? $request['relate_to'] : 'category';
748
-		$layout              = ( isset( $request['layout'] ) && ! empty( $request['layout'] ) ) ? $request['layout'] : 'gridview_onehalf';
749
-		$add_location_filter = ( isset( $request['add_location_filter'] ) && ! empty( $request['add_location_filter'] ) ) ? $request['add_location_filter'] : '0';
750
-		$listing_width       = ( isset( $request['listing_width'] ) && ! empty( $request['listing_width'] ) ) ? $request['listing_width'] : '';
751
-		$list_sort           = ( isset( $request['list_sort'] ) && ! empty( $request['list_sort'] ) ) ? $request['list_sort'] : 'latest';
752
-		$character_count     = ( isset( $request['character_count'] ) && ! empty( $request['character_count'] ) ) ? $request['character_count'] : '';
740
+function geodir_related_posts_display($request) {
741
+	if (!empty($request)) {
742
+		$before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : '';
743
+		$after_title  = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : '';
744
+
745
+		$title               = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
746
+		$post_number         = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5';
747
+		$relate_to           = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category';
748
+		$layout              = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf';
749
+		$add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0';
750
+		$listing_width       = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : '';
751
+		$list_sort           = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest';
752
+		$character_count     = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : '';
753 753
 
754 754
 		global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon;
755 755
 		$related_parent_lat   = !empty($post->post_latitude) ? $post->post_latitude : '';
@@ -757,10 +757,10 @@  discard block
 block discarded – undo
757 757
 		$arr_detail_page_tabs = geodir_detail_page_tabs_list();
758 758
 
759 759
 		$related_listing_array = array();
760
-		if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
761
-			$related_listing_array = get_option( 'geodir_add_related_listing_posttypes' );
760
+		if (get_option('geodir_add_related_listing_posttypes')) {
761
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
762 762
 		}
763
-		if ( isset($post->post_type) && in_array( $post->post_type, $related_listing_array ) ) {
763
+		if (isset($post->post_type) && in_array($post->post_type, $related_listing_array)) {
764 764
 			$arr_detail_page_tabs['related_listing']['is_display'] = true;
765 765
 		}
766 766
 
@@ -772,90 +772,90 @@  discard block
 block discarded – undo
772 772
 		$tax_field         = 'id';
773 773
 		$category          = array();
774 774
 
775
-		if ( isset( $_REQUEST['backandedit'] ) ) {
776
-			$post      = (object) $gd_session->get( 'listing' );
775
+		if (isset($_REQUEST['backandedit'])) {
776
+			$post      = (object) $gd_session->get('listing');
777 777
 			$post_type = $post->listing_type;
778
-			if ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
778
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
779 779
 				$post_id = $_REQUEST['pid'];
780 780
 			}
781
-		} elseif ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
782
-			$post      = geodir_get_post_info( $_REQUEST['pid'] );
781
+		} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
782
+			$post      = geodir_get_post_info($_REQUEST['pid']);
783 783
 			$post_type = $post->post_type;
784 784
 			$post_id   = $_REQUEST['pid'];
785
-		} elseif ( isset( $post->post_type ) && $post->post_type != '' ) {
785
+		} elseif (isset($post->post_type) && $post->post_type != '') {
786 786
 			$post_type = $post->post_type;
787 787
 			$post_id   = $post->ID;
788 788
 		}
789 789
 
790
-		if ( $relate_to == 'category' ) {
790
+		if ($relate_to == 'category') {
791 791
 
792
-			$category_taxonomy = $post_type . $relate_to;
793
-			if ( isset( $post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '' ) {
794
-				$category = explode( ',', trim( $post->{$category_taxonomy}, ',' ) );
792
+			$category_taxonomy = $post_type.$relate_to;
793
+			if (isset($post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '') {
794
+				$category = explode(',', trim($post->{$category_taxonomy}, ','));
795 795
 			}
796 796
 
797
-		} elseif ( $relate_to == 'tags' ) {
797
+		} elseif ($relate_to == 'tags') {
798 798
 
799
-			$category_taxonomy = $post_type . '_' . $relate_to;
800
-			if ( $post->post_tags != '' ) {
801
-				$category = explode( ',', trim( $post->post_tags, ',' ) );
799
+			$category_taxonomy = $post_type.'_'.$relate_to;
800
+			if ($post->post_tags != '') {
801
+				$category = explode(',', trim($post->post_tags, ','));
802 802
 			}
803 803
 			$tax_field = 'name';
804 804
 		}
805 805
 
806 806
 		/* --- return false in invalid request --- */
807
-		if ( empty( $category ) ) {
807
+		if (empty($category)) {
808 808
 			return false;
809 809
 		}
810 810
 
811 811
 		$all_postypes = geodir_get_posttypes();
812 812
 
813
-		if ( ! in_array( $post_type, $all_postypes ) ) {
813
+		if (!in_array($post_type, $all_postypes)) {
814 814
 			return false;
815 815
 		}
816 816
 
817 817
 		/* --- return false in invalid request --- */
818 818
 
819 819
 		$location_url = '';
820
-		if ( $add_location_filter != '0' ) {
820
+		if ($add_location_filter != '0') {
821 821
 			$location_url             = array();
822
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
822
+			$geodir_show_location_url = get_option('geodir_show_location_url');
823 823
 
824
-			$gd_city = get_query_var( 'gd_city' );
824
+			$gd_city = get_query_var('gd_city');
825 825
 
826
-			if ( $gd_city ) {
827
-				$gd_country = get_query_var( 'gd_country' );
828
-				$gd_region  = get_query_var( 'gd_region' );
826
+			if ($gd_city) {
827
+				$gd_country = get_query_var('gd_country');
828
+				$gd_region  = get_query_var('gd_region');
829 829
 			} else {
830 830
 				$location = geodir_get_default_location();
831 831
 
832
-				$gd_country = isset( $location->country_slug ) ? $location->country_slug : '';
833
-				$gd_region  = isset( $location->region_slug ) ? $location->region_slug : '';
834
-				$gd_city    = isset( $location->city_slug ) ? $location->city_slug : '';
832
+				$gd_country = isset($location->country_slug) ? $location->country_slug : '';
833
+				$gd_region  = isset($location->region_slug) ? $location->region_slug : '';
834
+				$gd_city    = isset($location->city_slug) ? $location->city_slug : '';
835 835
 			}
836 836
 
837
-			if ( $geodir_show_location_url == 'all' ) {
837
+			if ($geodir_show_location_url == 'all') {
838 838
 				$location_url[] = $gd_country;
839 839
 				$location_url[] = $gd_region;
840
-			} else if ( $geodir_show_location_url == 'country_city' ) {
840
+			} else if ($geodir_show_location_url == 'country_city') {
841 841
 				$location_url[] = $gd_country;
842
-			} else if ( $geodir_show_location_url == 'region_city' ) {
842
+			} else if ($geodir_show_location_url == 'region_city') {
843 843
 				$location_url[] = $gd_region;
844 844
 			}
845 845
 
846 846
 			$location_url[] = $gd_city;
847 847
 
848
-			$location_url = implode( '/', $location_url );
848
+			$location_url = implode('/', $location_url);
849 849
 		}
850 850
 
851 851
 
852
-		if ( ! empty( $category ) ) {
852
+		if (!empty($category)) {
853 853
 			global $geodir_add_location_url;
854 854
 			$geodir_add_location_url = '0';
855
-			if ( $add_location_filter != '0' ) {
855
+			if ($add_location_filter != '0') {
856 856
 				$geodir_add_location_url = '1';
857 857
 			}
858
-			$viewall_url             = get_term_link( (int) $category[0], $post_type . $category_taxonomy );
858
+			$viewall_url             = get_term_link((int) $category[0], $post_type.$category_taxonomy);
859 859
 			$geodir_add_location_url = null;
860 860
 		}
861 861
 		ob_start();
@@ -865,24 +865,24 @@  discard block
 block discarded – undo
865 865
 		<div class="geodir_locations geodir_location_listing">
866 866
 
867 867
 			<?php
868
-			if ( isset( $request['is_widget'] ) && $request['is_widget'] == '1' ) {
868
+			if (isset($request['is_widget']) && $request['is_widget'] == '1') {
869 869
 				/** geodir_before_title filter Documented in geodirectory_widgets.php */
870
-				$before_title = isset( $before_title ) ? $before_title : apply_filters( 'geodir_before_title', '<h3 class="widget-title">' );
870
+				$before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
871 871
 				/** geodir_after_title filter Documented in geodirectory_widgets.php */
872
-				$after_title = isset( $after_title ) ? $after_title : apply_filters( 'geodir_after_title', '</h3>' );
872
+				$after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
873 873
 				?>
874 874
 				<div class="location_list_heading clearfix">
875
-					<?php echo $before_title . $title . $after_title; ?>
875
+					<?php echo $before_title.$title.$after_title; ?>
876 876
 				</div>
877 877
 				<?php
878 878
 			}
879 879
 			$query_args = array(
880 880
 				'posts_per_page'   => $post_number,
881 881
 				'is_geodir_loop'   => true,
882
-				'gd_location'      => ( $add_location_filter ) ? true : false,
882
+				'gd_location'      => ($add_location_filter) ? true : false,
883 883
 				'post_type'        => $post_type,
884 884
 				'order_by'         => $list_sort,
885
-				'post__not_in'     => array( $post_id ),
885
+				'post__not_in'     => array($post_id),
886 886
 				'excerpt_length'   => $character_count,
887 887
 				'related_listings' => $is_display
888 888
 			);
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
 				'terms'    => $category
894 894
 			);
895 895
 
896
-			$query_args['tax_query'] = array( $tax_query );
896
+			$query_args['tax_query'] = array($tax_query);
897 897
 
898 898
 			global $gridview_columns, $post;
899 899
 
@@ -905,21 +905,21 @@  discard block
 block discarded – undo
905 905
 			 * @param array $query_args The query array.
906 906
 			 * @param array $request Related posts request array.
907 907
 			 */
908
-			$query_args = apply_filters( 'geodir_related_posts_widget_query_args', $query_args, $request );
908
+			$query_args = apply_filters('geodir_related_posts_widget_query_args', $query_args, $request);
909 909
 
910
-			query_posts( $query_args );
910
+			query_posts($query_args);
911 911
 
912
-			if ( strstr( $layout, 'gridview' ) ) {
913
-				$listing_view_exp = explode( '_', $layout );
912
+			if (strstr($layout, 'gridview')) {
913
+				$listing_view_exp = explode('_', $layout);
914 914
 				$gridview_columns = $layout;
915 915
 				$layout           = $listing_view_exp[0];
916
-			} else if ( $layout == 'list' ) {
916
+			} else if ($layout == 'list') {
917 917
 				$gridview_columns = '';
918 918
 			}
919 919
 			$related_posts = true;
920 920
 
921 921
 			$related_nearest = false;
922
-			if ( $list_sort == 'nearest' ) {
922
+			if ($list_sort == 'nearest') {
923 923
 				$related_nearest = true;
924 924
 			}
925 925
 
@@ -929,14 +929,14 @@  discard block
 block discarded – undo
929 929
 			 *
930 930
 			 * @since 1.0.0
931 931
 			 */
932
-			$template = apply_filters( "geodir_template_part-related-listing-listview", geodir_locate_template( 'listing-listview' ) );
932
+			$template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
933 933
 
934 934
 			/**
935 935
 			 * Includes related listing listview template.
936 936
 			 *
937 937
 			 * @since 1.0.0
938 938
 			 */
939
-			include( $template );
939
+			include($template);
940 940
 
941 941
 			wp_reset_query();
942 942
 			$post            = $origi_post;
@@ -964,12 +964,12 @@  discard block
 block discarded – undo
964 964
 function geodir_category_count_script() {
965 965
 	global $geodir_post_category_str;
966 966
 
967
-	if ( ! empty( $geodir_post_category_str ) ) {
968
-		$geodir_post_category_str = serialize( $geodir_post_category_str );
967
+	if (!empty($geodir_post_category_str)) {
968
+		$geodir_post_category_str = serialize($geodir_post_category_str);
969 969
 	}
970 970
 
971
-	$all_var['post_category_array'] = html_entity_decode( (string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8' );
972
-	$script                         = "var post_category_array = " . json_encode( $all_var ) . ';';
971
+	$all_var['post_category_array'] = html_entity_decode((string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8');
972
+	$script                         = "var post_category_array = ".json_encode($all_var).';';
973 973
 	echo '<script>';
974 974
 	echo $script;
975 975
 	echo '</script>';
@@ -984,8 +984,8 @@  discard block
 block discarded – undo
984 984
  * @return string Returns the default language.
985 985
  */
986 986
 function geodir_get_map_default_language() {
987
-	$geodir_default_map_language = get_option( 'geodir_default_map_language' );
988
-	if ( empty( $geodir_default_map_language ) ) {
987
+	$geodir_default_map_language = get_option('geodir_default_map_language');
988
+	if (empty($geodir_default_map_language)) {
989 989
 		$geodir_default_map_language = 'en';
990 990
 	}
991 991
 
@@ -996,7 +996,7 @@  discard block
 block discarded – undo
996 996
 	 *
997 997
 	 * @param string $geodir_default_map_language Default map language.
998 998
 	 */
999
-	return apply_filters( 'geodir_default_map_language', $geodir_default_map_language );
999
+	return apply_filters('geodir_default_map_language', $geodir_default_map_language);
1000 1000
 }
1001 1001
 
1002 1002
 /**
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
  * @return string Returns the api key.
1008 1008
  */
1009 1009
 function geodir_get_map_api_key() {
1010
-	$key = get_option( 'geodir_google_api_key' );
1010
+	$key = get_option('geodir_google_api_key');
1011 1011
 
1012 1012
 	/**
1013 1013
 	 * Filter Google maps api key.
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
 	 *
1017 1017
 	 * @param string $key Google maps api key.
1018 1018
 	 */
1019
-	return apply_filters( 'geodir_google_api_key', $key );
1019
+	return apply_filters('geodir_google_api_key', $key);
1020 1020
 }
1021 1021
 
1022 1022
 
@@ -1036,20 +1036,20 @@  discard block
 block discarded – undo
1036 1036
 	global $wp, $post, $wp_query, $wpdb, $geodir_addon_list;
1037 1037
 
1038 1038
 	$is_geodir_page = geodir_is_geodir_page();
1039
-	if ( ! $is_geodir_page ) {
1039
+	if (!$is_geodir_page) {
1040 1040
 		return;
1041 1041
 	}// if non GD page, bail
1042 1042
 
1043 1043
 	$use_gd_meta = true;
1044
-	if ( ( class_exists( 'WPSEO_Frontend' ) || class_exists( 'All_in_One_SEO_Pack' ) ) && !geodir_disable_yoast_seo_metas() ) {
1044
+	if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
1045 1045
 		$use_gd_meta = false;
1046 1046
 
1047
-		if ( geodir_is_page( 'search' ) ) {
1047
+		if (geodir_is_page('search')) {
1048 1048
 			$use_gd_meta = true;
1049 1049
 		}
1050 1050
 	}
1051 1051
 
1052
-	if ( ! $use_gd_meta ) {
1052
+	if (!$use_gd_meta) {
1053 1053
 		return;
1054 1054
 	}// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active.
1055 1055
 
@@ -1057,170 +1057,170 @@  discard block
 block discarded – undo
1057 1057
 
1058 1058
 	$all_postypes = geodir_get_posttypes();
1059 1059
 
1060
-	$geodir_taxonomies = geodir_get_taxonomies( '', true );
1060
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1061 1061
 
1062 1062
 	$meta_desc = '';
1063 1063
 	$meta_key  = '';
1064
-	if ( isset( $current_term->ID ) && $current_term->ID == geodir_location_page_id() ) {
1064
+	if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
1065 1065
 		/**
1066 1066
 		 * Filter SEO meta location description.
1067 1067
 		 *
1068 1068
 		 * @since 1.0.0
1069 1069
 		 */
1070
-		$meta_desc = apply_filters( 'geodir_seo_meta_location_description', '' );
1070
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', '');
1071 1071
 		$meta_desc .= '';
1072 1072
 	}
1073
-	if ( have_posts() && is_single() OR is_page() ) {
1074
-		while ( have_posts() ) {
1073
+	if (have_posts() && is_single() OR is_page()) {
1074
+		while (have_posts()) {
1075 1075
 			the_post();
1076 1076
 
1077
-			if ( has_excerpt() ) {
1078
-				$out_excerpt = strip_tags( strip_shortcodes( get_the_excerpt() ) );
1079
-				if ( empty( $out_excerpt ) ) {
1080
-					$out_excerpt = strip_tags( do_shortcode( get_the_excerpt() ) );
1077
+			if (has_excerpt()) {
1078
+				$out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt()));
1079
+				if (empty($out_excerpt)) {
1080
+					$out_excerpt = strip_tags(do_shortcode(get_the_excerpt()));
1081 1081
 				}
1082
-				$out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $out_excerpt );
1082
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
1083 1083
 			} else {
1084
-				$out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $post->post_content );
1085
-				$out_excerpt = strip_tags( strip_shortcodes( $out_excerpt ) );
1086
-				if ( empty( $out_excerpt ) ) {
1087
-					$out_excerpt = strip_tags( do_shortcode( $out_excerpt ) ); // parse short code from content
1084
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
1085
+				$out_excerpt = strip_tags(strip_shortcodes($out_excerpt));
1086
+				if (empty($out_excerpt)) {
1087
+					$out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content
1088 1088
 				}
1089
-				$out_excerpt = trim( wp_trim_words( $out_excerpt, 35, '' ), '.!?,;:-' );
1089
+				$out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-');
1090 1090
 			}
1091 1091
 
1092 1092
 			$meta_desc .= $out_excerpt;
1093 1093
 		}
1094
-	} elseif ( ( is_category() || is_tag() ) && isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
1095
-		if ( is_category() ) {
1096
-			$meta_desc .= __( "Posts related to Category:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_cat_title( "", false ) );
1097
-		} elseif ( is_tag() ) {
1098
-			$meta_desc .= __( "Posts related to Tag:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_tag_title( "", false ) );
1094
+	} elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1095
+		if (is_category()) {
1096
+			$meta_desc .= __("Posts related to Category:", 'geodirectory')." ".geodir_utf8_ucfirst(single_cat_title("", false));
1097
+		} elseif (is_tag()) {
1098
+			$meta_desc .= __("Posts related to Tag:", 'geodirectory')." ".geodir_utf8_ucfirst(single_tag_title("", false));
1099 1099
 		}
1100
-	} elseif ( isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
1101
-		$meta_desc .= isset( $current_term->description ) ? $current_term->description : '';
1100
+	} elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1101
+		$meta_desc .= isset($current_term->description) ? $current_term->description : '';
1102 1102
 	}
1103 1103
 
1104 1104
 
1105 1105
 	$geodir_post_type       = geodir_get_current_posttype();
1106
-	$geodir_post_type_info  = get_post_type_object( $geodir_post_type );
1107
-	$geodir_is_page_listing = geodir_is_page( 'listing' ) ? true : false;
1108
-
1109
-	$category_taxonomy = geodir_get_taxonomies( $geodir_post_type );
1110
-	$tag_taxonomy      = geodir_get_taxonomies( $geodir_post_type, true );
1111
-
1112
-	$geodir_is_category = isset( $category_taxonomy[0] ) && get_query_var( $category_taxonomy[0] ) ? get_query_var( $category_taxonomy[0] ) : false;
1113
-	$geodir_is_tag      = isset( $tag_taxonomy[0] ) && get_query_var( $tag_taxonomy[0] ) ? true : false;
1114
-
1115
-	$geodir_is_search        = geodir_is_page( 'search' ) ? true : false;
1116
-	$geodir_is_location      = geodir_is_page( 'location' ) ? true : false;
1117
-	$geodir_location_manager = isset( $geodir_addon_list['geodir_location_manager'] ) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1118
-	$godir_location_terms    = geodir_get_current_location_terms( 'query_vars' );
1119
-	$gd_city                 = $geodir_location_manager && isset( $godir_location_terms['gd_city'] ) ? $godir_location_terms['gd_city'] : null;
1120
-	$gd_region               = $geodir_location_manager && isset( $godir_location_terms['gd_region'] ) ? $godir_location_terms['gd_region'] : null;
1121
-	$gd_country              = $geodir_location_manager && isset( $godir_location_terms['gd_country'] ) ? $godir_location_terms['gd_country'] : null;
1122
-	$replace_location        = __( 'Everywhere', 'geodirectory' );
1106
+	$geodir_post_type_info  = get_post_type_object($geodir_post_type);
1107
+	$geodir_is_page_listing = geodir_is_page('listing') ? true : false;
1108
+
1109
+	$category_taxonomy = geodir_get_taxonomies($geodir_post_type);
1110
+	$tag_taxonomy      = geodir_get_taxonomies($geodir_post_type, true);
1111
+
1112
+	$geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false;
1113
+	$geodir_is_tag      = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false;
1114
+
1115
+	$geodir_is_search        = geodir_is_page('search') ? true : false;
1116
+	$geodir_is_location      = geodir_is_page('location') ? true : false;
1117
+	$geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1118
+	$godir_location_terms    = geodir_get_current_location_terms('query_vars');
1119
+	$gd_city                 = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : null;
1120
+	$gd_region               = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : null;
1121
+	$gd_country              = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : null;
1122
+	$replace_location        = __('Everywhere', 'geodirectory');
1123 1123
 	$location_id             = null;
1124
-	if ( $geodir_location_manager ) {
1125
-		$sql           = $wpdb->prepare( "SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array( $gd_city ) );
1126
-		$location_id   = (int) $wpdb->get_var( $sql );
1124
+	if ($geodir_location_manager) {
1125
+		$sql           = $wpdb->prepare("SELECT location_id FROM ".POST_LOCATION_TABLE." WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
1126
+		$location_id   = (int) $wpdb->get_var($sql);
1127 1127
 		$location_type = geodir_what_is_current_location();
1128
-		if ( $location_type == 'city' ) {
1129
-			$replace_location = geodir_get_current_location( array( 'what' => 'city', 'echo' => false ) );
1130
-		} elseif ( $location_type == 'region' ) {
1131
-			$replace_location = geodir_get_current_location( array( 'what' => 'region', 'echo' => false ) );
1132
-		} elseif ( $location_type == 'country' ) {
1133
-			$replace_location = geodir_get_current_location( array( 'what' => 'country', 'echo' => false ) );
1134
-			$replace_location = __( $replace_location, 'geodirectory' );
1128
+		if ($location_type == 'city') {
1129
+			$replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
1130
+		} elseif ($location_type == 'region') {
1131
+			$replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
1132
+		} elseif ($location_type == 'country') {
1133
+			$replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
1134
+			$replace_location = __($replace_location, 'geodirectory');
1135 1135
 		}
1136
-		$country          = get_query_var( 'gd_country' );
1137
-		$region           = get_query_var( 'gd_region' );
1138
-		$city             = get_query_var( 'gd_city' );
1136
+		$country          = get_query_var('gd_country');
1137
+		$region           = get_query_var('gd_region');
1138
+		$city             = get_query_var('gd_city');
1139 1139
 		$current_location = '';
1140
-		if ( $country != '' ) {
1141
-			$current_location = get_actual_location_name( 'country', $country, true );
1140
+		if ($country != '') {
1141
+			$current_location = get_actual_location_name('country', $country, true);
1142 1142
 		}
1143
-		if ( $region != '' ) {
1144
-			$current_location = get_actual_location_name( 'region', $region );
1143
+		if ($region != '') {
1144
+			$current_location = get_actual_location_name('region', $region);
1145 1145
 		}
1146
-		if ( $city != '' ) {
1147
-			$current_location = get_actual_location_name( 'city', $city );
1146
+		if ($city != '') {
1147
+			$current_location = get_actual_location_name('city', $city);
1148 1148
 		}
1149 1149
 		$replace_location = $current_location != '' ? $current_location : $replace_location;
1150 1150
 	}
1151 1151
 
1152 1152
 	$geodir_meta_keys = '';
1153 1153
 	$geodir_meta_desc = '';
1154
-	if ( $is_geodir_page && ! empty( $geodir_post_type_info ) ) {
1155
-		if ( $geodir_is_page_listing || $geodir_is_search || geodir_is_page( 'add-listing' ) ) {
1156
-			$geodir_meta_keys = isset( $geodir_post_type_info->seo['meta_keyword'] ) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1154
+	if ($is_geodir_page && !empty($geodir_post_type_info)) {
1155
+		if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
1156
+			$geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1157 1157
 
1158
-			$geodir_meta_desc = isset( $geodir_post_type_info->description ) ? $geodir_post_type_info->description : $geodir_meta_desc;
1159
-			$geodir_meta_desc = isset( $geodir_post_type_info->seo['meta_description'] ) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1158
+			$geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc;
1159
+			$geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1160 1160
 
1161
-			if ( $geodir_is_category ) {
1162
-				$category = $geodir_is_category ? get_term_by( 'slug', $geodir_is_category, $category_taxonomy[0] ) : null;
1163
-				if ( isset( $category->term_id ) && ! empty( $category->term_id ) ) {
1161
+			if ($geodir_is_category) {
1162
+				$category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : null;
1163
+				if (isset($category->term_id) && !empty($category->term_id)) {
1164 1164
 					$category_id   = $category->term_id;
1165
-					$category_desc = trim( $category->description ) != '' ? trim( $category->description ) : get_tax_meta( $category_id, 'ct_cat_top_desc', false, $geodir_post_type );
1166
-					if ( $location_id ) {
1167
-						$option_name    = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id;
1168
-						$cat_loc_option = get_option( $option_name );
1169
-
1170
-						$gd_cat_loc_default = ! empty( $cat_loc_option ) && isset( $cat_loc_option['gd_cat_loc_default'] ) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1171
-						if ( ! $gd_cat_loc_default ) {
1172
-							$option_name   = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id;
1173
-							$option        = get_option( $option_name );
1174
-							$category_desc = isset( $option['gd_cat_loc_desc'] ) && trim( $option['gd_cat_loc_desc'] ) != '' ? trim( $option['gd_cat_loc_desc'] ) : $category_desc;
1165
+					$category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type);
1166
+					if ($location_id) {
1167
+						$option_name    = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id;
1168
+						$cat_loc_option = get_option($option_name);
1169
+
1170
+						$gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1171
+						if (!$gd_cat_loc_default) {
1172
+							$option_name   = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id.'_'.$location_id;
1173
+							$option        = get_option($option_name);
1174
+							$category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc;
1175 1175
 						}
1176 1176
 					}
1177
-					$geodir_meta_desc = __( "Posts related to Category:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_cat_title( "", false ) ) . '. ' . $category_desc;
1177
+					$geodir_meta_desc = __("Posts related to Category:", 'geodirectory')." ".geodir_utf8_ucfirst(single_cat_title("", false)).'. '.$category_desc;
1178 1178
 				}
1179
-			} else if ( $geodir_is_tag ) {
1180
-				$geodir_meta_desc = __( "Posts related to Tag:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_tag_title( "", false ) ) . '. ' . $geodir_meta_desc;
1179
+			} else if ($geodir_is_tag) {
1180
+				$geodir_meta_desc = __("Posts related to Tag:", 'geodirectory')." ".geodir_utf8_ucfirst(single_tag_title("", false)).'. '.$geodir_meta_desc;
1181 1181
 			}
1182 1182
 		}
1183 1183
 	}
1184 1184
 
1185 1185
 
1186 1186
 	$gd_page = '';
1187
-	if ( geodir_is_page( 'home' ) ) {
1187
+	if (geodir_is_page('home')) {
1188 1188
 		$gd_page   = 'home';
1189
-		$meta_desc = ( get_option( 'geodir_meta_desc_homepage' ) ) ? get_option( 'geodir_meta_desc_homepage' ) : $meta_desc;
1190
-	} elseif ( geodir_is_page( 'detail' ) ) {
1189
+		$meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
1190
+	} elseif (geodir_is_page('detail')) {
1191 1191
 		$gd_page   = 'detail';
1192
-		$meta_desc = ( get_option( 'geodir_meta_desc_detail' ) ) ? get_option( 'geodir_meta_desc_detail' ) : $meta_desc;
1193
-	} elseif ( geodir_is_page( 'pt' ) ) {
1192
+		$meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
1193
+	} elseif (geodir_is_page('pt')) {
1194 1194
 		$gd_page   = 'pt';
1195
-		$meta_desc = ( get_option( 'geodir_meta_desc_pt' ) ) ? get_option( 'geodir_meta_desc_pt' ) : $meta_desc;
1196
-	} elseif ( geodir_is_page( 'listing' ) ) {
1195
+		$meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
1196
+	} elseif (geodir_is_page('listing')) {
1197 1197
 		$gd_page   = 'listing';
1198
-		$meta_desc = ( get_option( 'geodir_meta_desc_listing' ) ) ? get_option( 'geodir_meta_desc_listing' ) : $meta_desc;
1199
-	} elseif ( geodir_is_page( 'location' ) ) {
1198
+		$meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
1199
+	} elseif (geodir_is_page('location')) {
1200 1200
 		$gd_page   = 'location';
1201
-		$meta_desc = ( get_option( 'geodir_meta_desc_location' ) ) ? get_option( 'geodir_meta_desc_location' ) : $meta_desc;
1202
-		$meta_desc = apply_filters( 'geodir_seo_meta_location_description', $meta_desc );
1201
+		$meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
1202
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
1203 1203
 
1204
-	} elseif ( geodir_is_page( 'search' ) ) {
1204
+	} elseif (geodir_is_page('search')) {
1205 1205
 		$gd_page   = 'search';
1206
-		$meta_desc = ( get_option( 'geodir_meta_desc_search' ) ) ? get_option( 'geodir_meta_desc_search' ) : $meta_desc;
1207
-	} elseif ( geodir_is_page( 'add-listing' ) ) {
1206
+		$meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
1207
+	} elseif (geodir_is_page('add-listing')) {
1208 1208
 		$gd_page   = 'add-listing';
1209
-		$meta_desc = ( get_option( 'geodir_meta_desc_add-listing' ) ) ? get_option( 'geodir_meta_desc_add-listing' ) : $meta_desc;
1210
-	} elseif ( geodir_is_page( 'author' ) ) {
1209
+		$meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
1210
+	} elseif (geodir_is_page('author')) {
1211 1211
 		$gd_page   = 'author';
1212
-		$meta_desc = ( get_option( 'geodir_meta_desc_author' ) ) ? get_option( 'geodir_meta_desc_author' ) : $meta_desc;
1213
-	} elseif ( geodir_is_page( 'login' ) ) {
1212
+		$meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
1213
+	} elseif (geodir_is_page('login')) {
1214 1214
 		$gd_page   = 'login';
1215
-		$meta_desc = ( get_option( 'geodir_meta_desc_login' ) ) ? get_option( 'geodir_meta_desc_login' ) : $meta_desc;
1216
-	} elseif ( geodir_is_page( 'listing-success' ) ) {
1215
+		$meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
1216
+	} elseif (geodir_is_page('listing-success')) {
1217 1217
 		$gd_page   = 'listing-success';
1218
-		$meta_desc = ( get_option( 'geodir_meta_desc_listing-success' ) ) ? get_option( 'geodir_meta_desc_listing-success' ) : $meta_desc;
1218
+		$meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
1219 1219
 	}
1220 1220
 
1221 1221
 
1222
-	if ( $meta_desc ) {
1223
-		$meta_desc = stripslashes_deep( $meta_desc );
1222
+	if ($meta_desc) {
1223
+		$meta_desc = stripslashes_deep($meta_desc);
1224 1224
 		/**
1225 1225
 		 * Filter page description to replace variables.
1226 1226
 		 *
@@ -1229,7 +1229,7 @@  discard block
 block discarded – undo
1229 1229
 		 * @param string $title   The page description including variables.
1230 1230
 		 * @param string $gd_page The GeoDirectory page type if any.
1231 1231
 		 */
1232
-		$meta_desc = apply_filters( 'geodir_seo_meta_description_pre', __( $meta_desc, 'geodirectory' ), $gd_page, '' );
1232
+		$meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'), $gd_page, '');
1233 1233
 
1234 1234
 		/**
1235 1235
 		 * Filter SEO meta description.
@@ -1238,49 +1238,49 @@  discard block
 block discarded – undo
1238 1238
 		 *
1239 1239
 		 * @param string $meta_desc Meta description content.
1240 1240
 		 */
1241
-		echo apply_filters( 'geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc );
1241
+		echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="'.$meta_desc.'" />', $meta_desc);
1242 1242
 	}
1243 1243
 
1244 1244
 	// meta keywords
1245
-	if ( isset( $post->post_type ) && in_array( $post->post_type, $all_postypes ) ) {
1246
-		$place_tags = wp_get_post_terms( $post->ID, $post->post_type . '_tags', array( "fields" => "names" ) );
1247
-		$place_cats = wp_get_post_terms( $post->ID, $post->post_type . 'category', array( "fields" => "names" ) );
1245
+	if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
1246
+		$place_tags = wp_get_post_terms($post->ID, $post->post_type.'_tags', array("fields" => "names"));
1247
+		$place_cats = wp_get_post_terms($post->ID, $post->post_type.'category', array("fields" => "names"));
1248 1248
 
1249
-		$meta_key .= implode( ", ", array_merge( (array) $place_cats, (array) $place_tags ) );
1249
+		$meta_key .= implode(", ", array_merge((array) $place_cats, (array) $place_tags));
1250 1250
 	} else {
1251 1251
 		$posttags = get_the_tags();
1252
-		if ( $posttags ) {
1253
-			foreach ( $posttags as $tag ) {
1254
-				$meta_key .= $tag->name . ' ';
1252
+		if ($posttags) {
1253
+			foreach ($posttags as $tag) {
1254
+				$meta_key .= $tag->name.' ';
1255 1255
 			}
1256 1256
 		} else {
1257
-			$tags = get_tags( array( 'orderby' => 'count', 'order' => 'DESC' ) );
1257
+			$tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
1258 1258
 			$xt   = 1;
1259 1259
 
1260
-			foreach ( $tags as $tag ) {
1261
-				if ( $xt <= 20 ) {
1262
-					$meta_key .= $tag->name . ", ";
1260
+			foreach ($tags as $tag) {
1261
+				if ($xt <= 20) {
1262
+					$meta_key .= $tag->name.", ";
1263 1263
 				}
1264 1264
 
1265
-				$xt ++;
1265
+				$xt++;
1266 1266
 			}
1267 1267
 		}
1268 1268
 	}
1269 1269
 
1270
-	$meta_key         = $meta_key != '' ? rtrim( trim( $meta_key ), "," ) : $meta_key;
1271
-	$geodir_meta_keys = $geodir_meta_keys != '' ? ( $meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys ) : $meta_key;
1272
-	if ( $geodir_meta_keys != '' ) {
1273
-		$geodir_meta_keys = strip_tags( $geodir_meta_keys );
1274
-		$geodir_meta_keys = esc_html( $geodir_meta_keys );
1275
-		$geodir_meta_keys = geodir_strtolower( $geodir_meta_keys );
1276
-		$geodir_meta_keys = wp_html_excerpt( $geodir_meta_keys, 1000, '' );
1277
-		$geodir_meta_keys = str_replace( '%location%', $replace_location, $geodir_meta_keys );
1270
+	$meta_key         = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key;
1271
+	$geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key.', '.$geodir_meta_keys : $geodir_meta_keys) : $meta_key;
1272
+	if ($geodir_meta_keys != '') {
1273
+		$geodir_meta_keys = strip_tags($geodir_meta_keys);
1274
+		$geodir_meta_keys = esc_html($geodir_meta_keys);
1275
+		$geodir_meta_keys = geodir_strtolower($geodir_meta_keys);
1276
+		$geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, '');
1277
+		$geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
1278 1278
 
1279
-		$meta_key = rtrim( trim( $geodir_meta_keys ), "," );
1279
+		$meta_key = rtrim(trim($geodir_meta_keys), ",");
1280 1280
 	}
1281 1281
 
1282
-	if ( $meta_key ) {
1283
-		$meta_key = stripslashes_deep( $meta_key );
1282
+	if ($meta_key) {
1283
+		$meta_key = stripslashes_deep($meta_key);
1284 1284
 		/**
1285 1285
 		 * Filter SEO meta keywords.
1286 1286
 		 *
@@ -1288,7 +1288,7 @@  discard block
 block discarded – undo
1288 1288
 		 *
1289 1289
 		 * @param string $meta_desc Meta keywords.
1290 1290
 		 */
1291
-		echo apply_filters( 'geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key );
1291
+		echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="'.$meta_key.'" />', $meta_key);
1292 1292
 	}
1293 1293
 
1294 1294
 }
@@ -1308,8 +1308,8 @@  discard block
 block discarded – undo
1308 1308
 
1309 1309
 	$geodir_detail_page_tabs_array = geodir_detail_page_tabs_array();
1310 1310
 
1311
-	foreach ( $geodir_detail_page_tabs_array as $key => $tabs_obj ) {
1312
-		$geodir_detail_page_tabs_key_value_array[ $key ] = $tabs_obj['heading_text'];
1311
+	foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
1312
+		$geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text'];
1313 1313
 	}
1314 1314
 
1315 1315
 	return $geodir_detail_page_tabs_key_value_array;
@@ -1331,57 +1331,57 @@  discard block
 block discarded – undo
1331 1331
 	 * @since 1.0.0
1332 1332
 	 */
1333 1333
 	$arr_tabs['post_profile'] = array(
1334
-		'heading_text'  => __( 'Profile', 'geodirectory' ),
1334
+		'heading_text'  => __('Profile', 'geodirectory'),
1335 1335
 		'is_active_tab' => true,
1336
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_profile' ),
1336
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
1337 1337
 		'tab_content'   => ''
1338 1338
 	);
1339
-	$arr_tabs['post_info']    = array(
1340
-		'heading_text'  => __( 'More Info', 'geodirectory' ),
1339
+	$arr_tabs['post_info'] = array(
1340
+		'heading_text'  => __('More Info', 'geodirectory'),
1341 1341
 		'is_active_tab' => false,
1342
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_info' ),
1342
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
1343 1343
 		'tab_content'   => ''
1344 1344
 	);
1345 1345
 
1346 1346
 	$arr_tabs['post_images'] = array(
1347
-		'heading_text'  => __( 'Photos', 'geodirectory' ),
1347
+		'heading_text'  => __('Photos', 'geodirectory'),
1348 1348
 		'is_active_tab' => false,
1349
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_images' ),
1349
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
1350 1350
 		'tab_content'   => ''
1351 1351
 	);
1352 1352
 
1353 1353
 	$arr_tabs['post_video'] = array(
1354
-		'heading_text'  => __( 'Video', 'geodirectory' ),
1354
+		'heading_text'  => __('Video', 'geodirectory'),
1355 1355
 		'is_active_tab' => false,
1356
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_video' ),
1356
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
1357 1357
 		'tab_content'   => ''
1358 1358
 	);
1359 1359
 
1360 1360
 	$arr_tabs['special_offers'] = array(
1361
-		'heading_text'  => __( 'Special Offers', 'geodirectory' ),
1361
+		'heading_text'  => __('Special Offers', 'geodirectory'),
1362 1362
 		'is_active_tab' => false,
1363
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'special_offers' ),
1363
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
1364 1364
 		'tab_content'   => ''
1365 1365
 	);
1366 1366
 
1367 1367
 	$arr_tabs['post_map'] = array(
1368
-		'heading_text'  => __( 'Map', 'geodirectory' ),
1368
+		'heading_text'  => __('Map', 'geodirectory'),
1369 1369
 		'is_active_tab' => false,
1370
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_map' ),
1370
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
1371 1371
 		'tab_content'   => ''
1372 1372
 	);
1373 1373
 
1374 1374
 	$arr_tabs['reviews'] = array(
1375
-		'heading_text'  => __( 'Reviews', 'geodirectory' ),
1375
+		'heading_text'  => __('Reviews', 'geodirectory'),
1376 1376
 		'is_active_tab' => false,
1377
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'reviews' ),
1377
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
1378 1378
 		'tab_content'   => 'review display'
1379 1379
 	);
1380 1380
 
1381 1381
 	$arr_tabs['related_listing'] = array(
1382
-		'heading_text'  => __( 'Related Listing', 'geodirectory' ),
1382
+		'heading_text'  => __('Related Listing', 'geodirectory'),
1383 1383
 		'is_active_tab' => false,
1384
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'related_listing' ),
1384
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
1385 1385
 		'tab_content'   => ''
1386 1386
 	);
1387 1387
 
@@ -1390,7 +1390,7 @@  discard block
 block discarded – undo
1390 1390
 	 *
1391 1391
 	 * @since 1.0.0
1392 1392
 	 */
1393
-	return apply_filters( 'geodir_detail_page_tab_list_extend', $arr_tabs );
1393
+	return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
1394 1394
 
1395 1395
 
1396 1396
 }
@@ -1404,13 +1404,13 @@  discard block
 block discarded – undo
1404 1404
  * @return mixed|array Tabs array.
1405 1405
  */
1406 1406
 function geodir_detail_page_tabs_list() {
1407
-	$tabs_excluded = get_option( 'geodir_detail_page_tabs_excluded' );
1407
+	$tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
1408 1408
 	$tabs_array    = geodir_detail_page_tabs_array();
1409 1409
 
1410
-	if ( ! empty( $tabs_excluded ) ) {
1411
-		foreach ( $tabs_excluded as $tab ) {
1412
-			if ( array_key_exists( $tab, $tabs_array ) ) {
1413
-				unset( $tabs_array[ $tab ] );
1410
+	if (!empty($tabs_excluded)) {
1411
+		foreach ($tabs_excluded as $tab) {
1412
+			if (array_key_exists($tab, $tabs_array)) {
1413
+				unset($tabs_array[$tab]);
1414 1414
 			}
1415 1415
 		}
1416 1416
 	}
@@ -1434,58 +1434,58 @@  discard block
 block discarded – undo
1434 1434
 function geodir_show_detail_page_tabs() {
1435 1435
 	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields, $preview;
1436 1436
 
1437
-	$post_id            = ! empty( $post ) && isset( $post->ID ) ? (int) $post->ID : 0;
1438
-	$request_post_id    = ! empty( $_REQUEST['p'] ) ? (int) $_REQUEST['p'] : 0;
1439
-	$is_backend_preview = ( is_single() && ! empty( $_REQUEST['post_type'] ) && ! empty( $_REQUEST['preview'] ) && ! empty( $_REQUEST['p'] ) ) && is_super_admin() ? true : false; // skip if preview from backend
1437
+	$post_id            = !empty($post) && isset($post->ID) ? (int) $post->ID : 0;
1438
+	$request_post_id    = !empty($_REQUEST['p']) ? (int) $_REQUEST['p'] : 0;
1439
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1440 1440
 
1441
-	if ( $is_backend_preview && ! $post_id > 0 && $request_post_id > 0 ) {
1442
-		$post = geodir_get_post_info( $request_post_id );
1443
-		setup_postdata( $post );
1441
+	if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
1442
+		$post = geodir_get_post_info($request_post_id);
1443
+		setup_postdata($post);
1444 1444
 	}
1445 1445
 
1446
-	$geodir_post_detail_fields = geodir_show_listing_info( 'moreinfo' );
1446
+	$geodir_post_detail_fields = geodir_show_listing_info('moreinfo');
1447 1447
 
1448 1448
 
1449
-	if ( geodir_is_page( 'detail' ) ) {
1450
-		$video                 = geodir_get_video( $post->ID );
1451
-		$special_offers        = geodir_get_special_offers( $post->ID );
1449
+	if (geodir_is_page('detail')) {
1450
+		$video                 = geodir_get_video($post->ID);
1451
+		$special_offers        = geodir_get_special_offers($post->ID);
1452 1452
 		$related_listing_array = array();
1453
-		if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
1454
-			$related_listing_array = get_option( 'geodir_add_related_listing_posttypes' );
1453
+		if (get_option('geodir_add_related_listing_posttypes')) {
1454
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
1455 1455
 		}
1456 1456
 
1457 1457
 
1458
-		$excluded_tabs = get_option( 'geodir_detail_page_tabs_excluded' );
1459
-		if ( ! $excluded_tabs ) {
1458
+		$excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
1459
+		if (!$excluded_tabs) {
1460 1460
 			$excluded_tabs = array();
1461 1461
 		}
1462 1462
 
1463 1463
 		$related_listing = '';
1464
-		if ( in_array( $post->post_type, $related_listing_array ) && ! in_array( 'related_listing', $excluded_tabs ) ) {
1464
+		if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
1465 1465
 			$request = array(
1466
-				'post_number'         => get_option( 'geodir_related_post_count' ),
1467
-				'relate_to'           => get_option( 'geodir_related_post_relate_to' ),
1468
-				'layout'              => get_option( 'geodir_related_post_listing_view' ),
1469
-				'add_location_filter' => get_option( 'geodir_related_post_location_filter' ),
1470
-				'list_sort'           => get_option( 'geodir_related_post_sortby' ),
1471
-				'character_count'     => get_option( 'geodir_related_post_excerpt' )
1466
+				'post_number'         => get_option('geodir_related_post_count'),
1467
+				'relate_to'           => get_option('geodir_related_post_relate_to'),
1468
+				'layout'              => get_option('geodir_related_post_listing_view'),
1469
+				'add_location_filter' => get_option('geodir_related_post_location_filter'),
1470
+				'list_sort'           => get_option('geodir_related_post_sortby'),
1471
+				'character_count'     => get_option('geodir_related_post_excerpt')
1472 1472
 			);
1473 1473
 
1474
-			if ( $post->post_type == 'gd_event' && defined( 'GDEVENTS_VERSION' ) ) {
1475
-				$related_listing = geodir_get_detail_page_related_events( $request );
1474
+			if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
1475
+				$related_listing = geodir_get_detail_page_related_events($request);
1476 1476
 			} else {
1477
-				$related_listing = geodir_related_posts_display( $request );
1477
+				$related_listing = geodir_related_posts_display($request);
1478 1478
 			}
1479 1479
 
1480 1480
 		}
1481 1481
 
1482
-		$post_images = geodir_get_images( $post->ID, 'thumbnail' );
1482
+		$post_images = geodir_get_images($post->ID, 'thumbnail');
1483 1483
 		$thumb_image = '';
1484
-		if ( ! empty( $post_images ) ) {
1485
-			foreach ( $post_images as $image ) {
1486
-				$caption = ( ! empty( $image->caption ) ) ? $image->caption : '';
1487
-				$thumb_image .= '<a href="' . $image->src . '" title="' . $caption . '">';
1488
-				$thumb_image .= geodir_show_image( $image, 'thumbnail', true, false );
1484
+		if (!empty($post_images)) {
1485
+			foreach ($post_images as $image) {
1486
+				$caption = (!empty($image->caption)) ? $image->caption : '';
1487
+				$thumb_image .= '<a href="'.$image->src.'" title="'.$caption.'">';
1488
+				$thumb_image .= geodir_show_image($image, 'thumbnail', true, false);
1489 1489
 				$thumb_image .= '</a>';
1490 1490
 			}
1491 1491
 		}
@@ -1494,11 +1494,11 @@  discard block
 block discarded – undo
1494 1494
 		$map_args['map_canvas_name'] = 'detail_page_map_canvas';
1495 1495
 		$map_args['width']           = '600';
1496 1496
 		$map_args['height']          = '300';
1497
-		if ( $post->post_mapzoom ) {
1498
-			$map_args['zoom'] = '' . $post->post_mapzoom . '';
1497
+		if ($post->post_mapzoom) {
1498
+			$map_args['zoom'] = ''.$post->post_mapzoom.'';
1499 1499
 		}
1500 1500
 		$map_args['autozoom']                 = false;
1501
-		$map_args['scrollwheel']              = ( get_option( 'geodir_add_listing_mouse_scroll' ) ) ? 0 : 1;
1501
+		$map_args['scrollwheel']              = (get_option('geodir_add_listing_mouse_scroll')) ? 0 : 1;
1502 1502
 		$map_args['child_collapse']           = '0';
1503 1503
 		$map_args['enable_cat_filters']       = false;
1504 1504
 		$map_args['enable_text_search']       = false;
@@ -1507,43 +1507,43 @@  discard block
 block discarded – undo
1507 1507
 		$map_args['enable_jason_on_load']     = true;
1508 1508
 		$map_args['enable_map_direction']     = true;
1509 1509
 		$map_args['map_class_name']           = 'geodir-map-detail-page';
1510
-		$map_args['maptype']                  = ( ! empty( $post->post_mapview ) ) ? $post->post_mapview : 'ROADMAP';
1511
-	} else if ( geodir_is_page( 'preview' ) ) {
1512
-		$video          = isset( $post->geodir_video ) ? $post->geodir_video : '';
1513
-		$special_offers = isset( $post->geodir_special_offers ) ? $post->geodir_special_offers : '';
1510
+		$map_args['maptype']                  = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP';
1511
+	} else if (geodir_is_page('preview')) {
1512
+		$video          = isset($post->geodir_video) ? $post->geodir_video : '';
1513
+		$special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : '';
1514 1514
 
1515
-		if ( isset( $post->post_images ) ) {
1516
-			$post->post_images = trim( $post->post_images, "," );
1515
+		if (isset($post->post_images)) {
1516
+			$post->post_images = trim($post->post_images, ",");
1517 1517
 		}
1518 1518
 
1519
-		if ( isset( $post->post_images ) && ! empty( $post->post_images ) ) {
1520
-			$post_images = explode( ",", $post->post_images );
1519
+		if (isset($post->post_images) && !empty($post->post_images)) {
1520
+			$post_images = explode(",", $post->post_images);
1521 1521
 		}
1522 1522
 
1523 1523
 		$thumb_image = '';
1524
-		if ( ! empty( $post_images ) ) {
1525
-			foreach ( $post_images as $image ) {
1526
-				if ( $image != '' ) {
1527
-					$thumb_image .= '<a href="' . $image . '">';
1528
-					$thumb_image .= geodir_show_image( array( 'src' => $image ), 'thumbnail', true, false );
1524
+		if (!empty($post_images)) {
1525
+			foreach ($post_images as $image) {
1526
+				if ($image != '') {
1527
+					$thumb_image .= '<a href="'.$image.'">';
1528
+					$thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
1529 1529
 					$thumb_image .= '</a>';
1530 1530
 				}
1531 1531
 			}
1532 1532
 		}
1533 1533
 
1534 1534
 		global $map_jason;
1535
-		$marker_json      = $post->marker_json != '' ? json_decode( $post->marker_json, true ) : array();
1536
-		$marker_icon      = ( ! empty( $marker_json ) && ! empty( $marker_json['i'] ) ) ? $marker_json['i'] : '';
1537
-		$icon_size        = geodir_get_marker_size( $marker_icon );
1535
+		$marker_json      = $post->marker_json != '' ? json_decode($post->marker_json, true) : array();
1536
+		$marker_icon      = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : '';
1537
+		$icon_size        = geodir_get_marker_size($marker_icon);
1538 1538
 		$marker_json['w'] = $icon_size['w'];
1539 1539
 		$marker_json['h'] = $icon_size['h'];
1540
-		$map_jason[]      = json_encode( $marker_json );
1540
+		$map_jason[]      = json_encode($marker_json);
1541 1541
 
1542
-		$address_latitude  = isset( $post->post_latitude ) ? $post->post_latitude : '';
1543
-		$address_longitude = isset( $post->post_longitude ) ? $post->post_longitude : '';
1544
-		$mapview           = isset( $post->post_mapview ) ? $post->post_mapview : '';
1545
-		$mapzoom           = isset( $post->post_mapzoom ) ? $post->post_mapzoom : '';
1546
-		if ( ! $mapzoom ) {
1542
+		$address_latitude  = isset($post->post_latitude) ? $post->post_latitude : '';
1543
+		$address_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
1544
+		$mapview           = isset($post->post_mapview) ? $post->post_mapview : '';
1545
+		$mapzoom           = isset($post->post_mapzoom) ? $post->post_mapzoom : '';
1546
+		if (!$mapzoom) {
1547 1547
 			$mapzoom = 12;
1548 1548
 		}
1549 1549
 
@@ -1566,37 +1566,37 @@  discard block
 block discarded – undo
1566 1566
 		$map_args['map_class_name']           = 'geodir-map-preview-page';
1567 1567
 	}
1568 1568
 
1569
-	$arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user
1569
+	$arr_detail_page_tabs = geodir_detail_page_tabs_list(); // get this sooner so we can get the active tab for the user
1570 1570
 
1571 1571
 	$active_tab       = '';
1572 1572
 	$active_tab_name  = '';
1573 1573
 	$default_tab      = '';
1574 1574
 	$default_tab_name = '';
1575
-	foreach ( $arr_detail_page_tabs as $tab_index => $tabs ) {
1576
-		if ( isset( $tabs['is_active_tab'] ) && $tabs['is_active_tab'] && ! empty( $tabs['is_display'] ) && isset( $tabs['heading_text'] ) && $tabs['heading_text'] ) {
1575
+	foreach ($arr_detail_page_tabs as $tab_index => $tabs) {
1576
+		if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
1577 1577
 			$active_tab      = $tab_index;
1578
-			$active_tab_name = __( $tabs['heading_text'], 'geodirectory' );
1578
+			$active_tab_name = __($tabs['heading_text'], 'geodirectory');
1579 1579
 		}
1580 1580
 
1581
-		if ( $default_tab === '' && ! empty( $tabs['is_display'] ) && ! empty( $tabs['heading_text'] ) ) {
1581
+		if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
1582 1582
 			$default_tab      = $tab_index;
1583
-			$default_tab_name = __( $tabs['heading_text'], 'geodirectory' );
1583
+			$default_tab_name = __($tabs['heading_text'], 'geodirectory');
1584 1584
 		}
1585 1585
 	}
1586 1586
 
1587
-	if ( $active_tab === '' && $default_tab !== '' ) { // Make first tab acs a active tab if not any tab is active.
1588
-		if ( isset( $arr_detail_page_tabs[ $active_tab ] ) && isset( $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] ) ) {
1589
-			$arr_detail_page_tabs[ $active_tab ]['is_active_tab'] = false;
1587
+	if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
1588
+		if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
1589
+			$arr_detail_page_tabs[$active_tab]['is_active_tab'] = false;
1590 1590
 		}
1591 1591
 
1592
-		$arr_detail_page_tabs[ $default_tab ]['is_active_tab'] = true;
1592
+		$arr_detail_page_tabs[$default_tab]['is_active_tab'] = true;
1593 1593
 		$active_tab                                            = $default_tab;
1594 1594
 		$active_tab_name                                       = $default_tab_name;
1595 1595
 	}
1596
-	$tab_list = ( get_option( 'geodir_disable_tabs', false ) ) ? true : false;
1596
+	$tab_list = (get_option('geodir_disable_tabs', false)) ? true : false;
1597 1597
 	?>
1598 1598
 	<div class="geodir-tabs" id="gd-tabs" style="position:relative;">
1599
-		<?php if ( ! $tab_list ){ ?>
1599
+		<?php if (!$tab_list) { ?>
1600 1600
 		<div id="geodir-tab-mobile-menu">
1601 1601
 			<i class="fa fa-bars"></i>
1602 1602
 			<span class="geodir-mobile-active-tab"><?php echo $active_tab_name; ?></span>
@@ -1611,26 +1611,26 @@  discard block
 block discarded – undo
1611 1611
 			 * @since 1.0.0
1612 1612
 			 * @see   'geodir_after_tab_list'
1613 1613
 			 */
1614
-			do_action( 'geodir_before_tab_list' ); ?>
1614
+			do_action('geodir_before_tab_list'); ?>
1615 1615
 			<?php
1616 1616
 
1617
-			foreach ( $arr_detail_page_tabs as $tab_index => $detail_page_tab ) {
1618
-				if ( $detail_page_tab['is_display'] ) {
1617
+			foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
1618
+				if ($detail_page_tab['is_display']) {
1619 1619
 
1620
-					if ( ! $tab_list ) {
1620
+					if (!$tab_list) {
1621 1621
 						?>
1622 1622
 						<dt></dt> <!-- added to comply with validation -->
1623
-						<dd <?php if ( $detail_page_tab['is_active_tab'] ){ ?>class="geodir-tab-active"<?php } ?> ><a
1623
+						<dd <?php if ($detail_page_tab['is_active_tab']) { ?>class="geodir-tab-active"<?php } ?> ><a
1624 1624
 								data-tab="#<?php echo $tab_index; ?>"
1625
-								data-status="enable"><?php _e( $detail_page_tab['heading_text'], 'geodirectory' ); ?></a>
1625
+								data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a>
1626 1626
 						</dd>
1627 1627
 						<?php
1628 1628
 					}
1629 1629
 					ob_start() // start tab content buffering
1630 1630
 					?>
1631 1631
 					<li id="<?php echo $tab_index; ?>Tab">
1632
-						<?php if ( $tab_list ) {
1633
-							$tab_title = '<span class="gd-tab-list-title" ><a href="#' . $tab_index . '">' . __( $detail_page_tab['heading_text'], 'geodirectory' ) . '</a></span><hr />';
1632
+						<?php if ($tab_list) {
1633
+							$tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'], 'geodirectory').'</a></span><hr />';
1634 1634
 							/**
1635 1635
 							 * Filter the tab list title html.
1636 1636
 							 *
@@ -1640,7 +1640,7 @@  discard block
 block discarded – undo
1640 1640
 							 * @param string $tab_index      The tab index type.
1641 1641
 							 * @param array $detail_page_tab The array of values including title text.
1642 1642
 							 */
1643
-							echo apply_filters( 'geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab );
1643
+							echo apply_filters('geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab);
1644 1644
 						} ?>
1645 1645
 						<div id="<?php echo $tab_index; ?>" class="hash-offset"></div>
1646 1646
 						<?php
@@ -1651,7 +1651,7 @@  discard block
 block discarded – undo
1651 1651
 						 *
1652 1652
 						 * @param string $tab_index The tab name ID.
1653 1653
 						 */
1654
-						do_action( 'geodir_before_tab_content', $tab_index );
1654
+						do_action('geodir_before_tab_content', $tab_index);
1655 1655
 
1656 1656
 						/**
1657 1657
 						 * Called before the details tab content is output per tab.
@@ -1661,21 +1661,21 @@  discard block
 block discarded – undo
1661 1661
 						 * @since 1.0.0
1662 1662
 						 * @todo  do we need this if we have the hook above? 'geodir_before_tab_content'
1663 1663
 						 */
1664
-						do_action( 'geodir_before_' . $tab_index . '_tab_content' );
1664
+						do_action('geodir_before_'.$tab_index.'_tab_content');
1665 1665
 						/// write a code to generate content of each tab
1666
-						switch ( $tab_index ) {
1666
+						switch ($tab_index) {
1667 1667
 							case 'post_profile':
1668 1668
 								/**
1669 1669
 								 * Called before the listing description content on the details page tab.
1670 1670
 								 *
1671 1671
 								 * @since 1.0.0
1672 1672
 								 */
1673
-								do_action( 'geodir_before_description_on_listing_detail' );
1674
-								if ( geodir_is_page( 'detail' ) ) {
1673
+								do_action('geodir_before_description_on_listing_detail');
1674
+								if (geodir_is_page('detail')) {
1675 1675
 									the_content();
1676 1676
 								} else {
1677 1677
 									/** This action is documented in geodirectory_template_actions.php */
1678
-									echo apply_filters( 'the_content', stripslashes( $post->post_desc ) );
1678
+									echo apply_filters('the_content', stripslashes($post->post_desc));
1679 1679
 								}
1680 1680
 
1681 1681
 								/**
@@ -1683,7 +1683,7 @@  discard block
 block discarded – undo
1683 1683
 								 *
1684 1684
 								 * @since 1.0.0
1685 1685
 								 */
1686
-								do_action( 'geodir_after_description_on_listing_detail' );
1686
+								do_action('geodir_after_description_on_listing_detail');
1687 1687
 								break;
1688 1688
 							case 'post_info':
1689 1689
 								echo $geodir_post_detail_fields;
@@ -1693,32 +1693,32 @@  discard block
 block discarded – undo
1693 1693
 								break;
1694 1694
 							case 'post_video':
1695 1695
 								// some browsers hide $_POST data if used for embeds so we repalce with a placeholder
1696
-								if ( $preview ) {
1697
-									if ( $video ) {
1698
-										echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />" . __( 'Video Preview Placeholder', 'geodirectory' ) . "</p></span>";
1696
+								if ($preview) {
1697
+									if ($video) {
1698
+										echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />".__('Video Preview Placeholder', 'geodirectory')."</p></span>";
1699 1699
 									}
1700 1700
 								} else {
1701 1701
 
1702 1702
 									// stop payment manager filtering content length
1703
-									$filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1704
-									if ( false !== $filter_priority ) {
1705
-										remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1703
+									$filter_priority = has_filter('the_content', 'geodir_payments_the_content');
1704
+									if (false !== $filter_priority) {
1705
+										remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1706 1706
 									}
1707 1707
 
1708 1708
 									/** This action is documented in geodirectory_template_actions.php */
1709
-									echo apply_filters( 'the_content', stripslashes( $video ) );// we apply the_content filter so oembed works also;
1709
+									echo apply_filters('the_content', stripslashes($video)); // we apply the_content filter so oembed works also;
1710 1710
 
1711
-									if ( false !== $filter_priority ) {
1712
-										add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1711
+									if (false !== $filter_priority) {
1712
+										add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1713 1713
 									}
1714 1714
 								}
1715 1715
 								break;
1716 1716
 							case 'special_offers':
1717
-								echo apply_filters( 'gd_special_offers_content', wpautop( stripslashes( $special_offers ) ) );
1717
+								echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
1718 1718
 
1719 1719
 								break;
1720 1720
 							case 'post_map':
1721
-								geodir_draw_map( $map_args );
1721
+								geodir_draw_map($map_args);
1722 1722
 								break;
1723 1723
 							case 'reviews':
1724 1724
 								comments_template();
@@ -1727,7 +1727,7 @@  discard block
 block discarded – undo
1727 1727
 								echo $related_listing;
1728 1728
 								break;
1729 1729
 							default: {
1730
-								if ( ( isset( $post->{$tab_index} ) || ( ! isset( $post->{$tab_index} ) && ( strpos( $tab_index, 'gd_tab_' ) !== false || $tab_index == 'link_business' ) ) ) && ! empty( $detail_page_tab['tab_content'] ) ) {
1730
+								if ((isset($post->{$tab_index} ) || (!isset($post->{$tab_index} ) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
1731 1731
 									echo $detail_page_tab['tab_content'];
1732 1732
 								}
1733 1733
 							}
@@ -1739,7 +1739,7 @@  discard block
 block discarded – undo
1739 1739
 						 *
1740 1740
 						 * @since 1.0.0
1741 1741
 						 */
1742
-						do_action( 'geodir_after_tab_content', $tab_index );
1742
+						do_action('geodir_after_tab_content', $tab_index);
1743 1743
 
1744 1744
 						/**
1745 1745
 						 * Called after the details tab content is output per tab.
@@ -1749,7 +1749,7 @@  discard block
 block discarded – undo
1749 1749
 						 * @since 1.0.0
1750 1750
 						 * @todo  do we need this if we have the hook above? 'geodir_after_tab_content'
1751 1751
 						 */
1752
-						do_action( 'geodir_after_' . $tab_index . '_tab_content' );
1752
+						do_action('geodir_after_'.$tab_index.'_tab_content');
1753 1753
 						?> </li>
1754 1754
 					<?php
1755 1755
 					/**
@@ -1757,7 +1757,7 @@  discard block
 block discarded – undo
1757 1757
 					 *
1758 1758
 					 * @since 1.0.0
1759 1759
 					 */
1760
-					$arr_detail_page_tabs[ $tab_index ]['tab_content'] = apply_filters( "geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean() );
1760
+					$arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_".$detail_page_tab['tab_content']."_tab_content", ob_get_clean());
1761 1761
 				} // end of if for is_display
1762 1762
 			}// end of foreach
1763 1763
 
@@ -1767,14 +1767,14 @@  discard block
 block discarded – undo
1767 1767
 			 * @since 1.0.0
1768 1768
 			 * @see   'geodir_before_tab_list'
1769 1769
 			 */
1770
-			do_action( 'geodir_after_tab_list' );
1770
+			do_action('geodir_after_tab_list');
1771 1771
 			?>
1772
-			<?php if ( ! $tab_list ){ ?></dl><?php } ?>
1773
-		<ul class="geodir-tabs-content entry-content <?php if ( $tab_list ) { ?>geodir-tabs-list<?php } ?>"
1772
+			<?php if (!$tab_list) { ?></dl><?php } ?>
1773
+		<ul class="geodir-tabs-content entry-content <?php if ($tab_list) { ?>geodir-tabs-list<?php } ?>"
1774 1774
 		    style="position:relative;">
1775 1775
 			<?php
1776
-			foreach ( $arr_detail_page_tabs as $detail_page_tab ) {
1777
-				if ( $detail_page_tab['is_display'] && ! empty( $detail_page_tab['tab_content'] ) ) {
1776
+			foreach ($arr_detail_page_tabs as $detail_page_tab) {
1777
+				if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
1778 1778
 					echo $detail_page_tab['tab_content'];
1779 1779
 				}// end of if
1780 1780
 			}// end of foreach
@@ -1784,11 +1784,11 @@  discard block
 block discarded – undo
1784 1784
 			 *
1785 1785
 			 * @since 1.0.0
1786 1786
 			 */
1787
-			do_action( 'geodir_add_tab_content' ); ?>
1787
+			do_action('geodir_add_tab_content'); ?>
1788 1788
 		</ul>
1789 1789
 		<!--gd-tabs-content ul end-->
1790 1790
 	</div>
1791
-	<?php if ( ! $tab_list ) { ?>
1791
+	<?php if (!$tab_list) { ?>
1792 1792
 		<script>
1793 1793
 			if (window.location.hash && window.location.hash.indexOf('&') === -1 && jQuery(window.location.hash + 'Tab').length) {
1794 1794
 				hashVal = window.location.hash;
@@ -1820,31 +1820,31 @@  discard block
 block discarded – undo
1820 1820
  *
1821 1821
  * @return mixed Image file.
1822 1822
  */
1823
-function geodir_exif( $file ) {
1824
-	if ( empty( $file ) || ! is_array( $file ) ) {
1823
+function geodir_exif($file) {
1824
+	if (empty($file) || !is_array($file)) {
1825 1825
 		return $file;
1826 1826
 	}
1827 1827
 
1828
-	$file_path = ! empty( $file['tmp_name'] ) ? sanitize_text_field( $file['tmp_name'] ) : '';
1829
-	if ( ! ( $file_path && file_exists( $file_path ) ) ) {
1828
+	$file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : '';
1829
+	if (!($file_path && file_exists($file_path))) {
1830 1830
 		return $file;
1831 1831
 	}
1832 1832
 	$file['file'] = $file_path;
1833 1833
 
1834
-	if ( ! file_is_valid_image( $file_path ) ) {
1834
+	if (!file_is_valid_image($file_path)) {
1835 1835
 		return $file; // Bail if file is not an image.
1836 1836
 	}
1837 1837
 
1838
-	if ( ! function_exists( 'wp_get_image_editor' ) ) {
1838
+	if (!function_exists('wp_get_image_editor')) {
1839 1839
 		return $file;
1840 1840
 	}
1841 1841
 
1842 1842
 	$mime_type = $file['type'];
1843 1843
 	$exif      = array();
1844
-	if ( $mime_type == 'image/jpeg' && function_exists( 'exif_read_data' ) ) {
1844
+	if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
1845 1845
 		try {
1846
-			$exif = exif_read_data( $file_path );
1847
-		} catch ( Exception $e ) {
1846
+			$exif = exif_read_data($file_path);
1847
+		} catch (Exception $e) {
1848 1848
 			$exif = array();
1849 1849
 		}
1850 1850
 	}
@@ -1853,13 +1853,13 @@  discard block
 block discarded – undo
1853 1853
 	$flip        = false;
1854 1854
 	$modify      = false;
1855 1855
 	$orientation = 0;
1856
-	if ( ! empty( $exif ) && isset( $exif['Orientation'] ) ) {
1857
-		switch ( (int) $exif['Orientation'] ) {
1856
+	if (!empty($exif) && isset($exif['Orientation'])) {
1857
+		switch ((int) $exif['Orientation']) {
1858 1858
 			case 1:
1859 1859
 				// do nothing
1860 1860
 				break;
1861 1861
 			case 2:
1862
-				$flip   = array( false, true );
1862
+				$flip   = array(false, true);
1863 1863
 				$modify = true;
1864 1864
 				break;
1865 1865
 			case 3:
@@ -1868,13 +1868,13 @@  discard block
 block discarded – undo
1868 1868
 				$modify      = true;
1869 1869
 				break;
1870 1870
 			case 4:
1871
-				$flip   = array( true, false );
1871
+				$flip   = array(true, false);
1872 1872
 				$modify = true;
1873 1873
 				break;
1874 1874
 			case 5:
1875 1875
 				$orientation = - 90;
1876 1876
 				$rotate      = true;
1877
-				$flip        = array( false, true );
1877
+				$flip        = array(false, true);
1878 1878
 				$modify      = true;
1879 1879
 				break;
1880 1880
 			case 6:
@@ -1885,7 +1885,7 @@  discard block
 block discarded – undo
1885 1885
 			case 7:
1886 1886
 				$orientation = - 270;
1887 1887
 				$rotate      = true;
1888
-				$flip        = array( false, true );
1888
+				$flip        = array(false, true);
1889 1889
 				$modify      = true;
1890 1890
 				break;
1891 1891
 			case 8:
@@ -1911,31 +1911,31 @@  discard block
 block discarded – undo
1911 1911
 	 * @param int|null $quality Image Compression quality between 1-100% scale. Default null.
1912 1912
 	 * @param string $quality   Image mime type.
1913 1913
 	 */
1914
-	$quality = apply_filters( 'geodir_image_upload_set_quality', $quality, $mime_type );
1915
-	if ( $quality !== null ) {
1914
+	$quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
1915
+	if ($quality !== null) {
1916 1916
 		$modify = true;
1917 1917
 	}
1918 1918
 
1919
-	if ( ! $modify ) {
1919
+	if (!$modify) {
1920 1920
 		return $file; // no change
1921 1921
 	}
1922 1922
 
1923
-	$image = wp_get_image_editor( $file_path );
1924
-	if ( ! is_wp_error( $image ) ) {
1925
-		if ( $rotate ) {
1926
-			$image->rotate( $orientation );
1923
+	$image = wp_get_image_editor($file_path);
1924
+	if (!is_wp_error($image)) {
1925
+		if ($rotate) {
1926
+			$image->rotate($orientation);
1927 1927
 		}
1928 1928
 
1929
-		if ( ! empty( $flip ) ) {
1930
-			$image->flip( $flip[0], $flip[1] );
1929
+		if (!empty($flip)) {
1930
+			$image->flip($flip[0], $flip[1]);
1931 1931
 		}
1932 1932
 
1933
-		if ( $quality !== null ) {
1934
-			$image->set_quality( (int) $quality );
1933
+		if ($quality !== null) {
1934
+			$image->set_quality((int) $quality);
1935 1935
 		}
1936 1936
 
1937
-		$result = $image->save( $file_path );
1938
-		if ( ! is_wp_error( $result ) ) {
1937
+		$result = $image->save($file_path);
1938
+		if (!is_wp_error($result)) {
1939 1939
 			$file['file']     = $result['path'];
1940 1940
 			$file['tmp_name'] = $result['path'];
1941 1941
 		}
@@ -1962,7 +1962,7 @@  discard block
 block discarded – undo
1962 1962
  *
1963 1963
  * @return string Returns the recent reviews html.
1964 1964
  */
1965
-function geodir_get_recent_reviews( $g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false ) {
1965
+function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
1966 1966
 	global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session;
1967 1967
 	$tablecomments = $wpdb->comments;
1968 1968
 	$tableposts    = $wpdb->posts;
@@ -1972,28 +1972,28 @@  discard block
 block discarded – undo
1972 1972
 	$region_filter  = '';
1973 1973
 	$country_filter = '';
1974 1974
 
1975
-	if ( $gd_session->get( 'gd_multi_location' ) ) {
1976
-		if ( $gd_ses_country = $gd_session->get( 'gd_country' ) ) {
1977
-			$country_filter = $wpdb->prepare( " AND r.post_country=%s ", str_replace( "-", " ", $gd_ses_country ) );
1975
+	if ($gd_session->get('gd_multi_location')) {
1976
+		if ($gd_ses_country = $gd_session->get('gd_country')) {
1977
+			$country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
1978 1978
 		}
1979 1979
 
1980
-		if ( $gd_ses_region = $gd_session->get( 'gd_region' ) ) {
1981
-			$region_filter = $wpdb->prepare( " AND r.post_region=%s ", str_replace( "-", " ", $gd_ses_region ) );
1980
+		if ($gd_ses_region = $gd_session->get('gd_region')) {
1981
+			$region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
1982 1982
 		}
1983 1983
 
1984
-		if ( $gd_ses_city = $gd_session->get( 'gd_city' ) ) {
1985
-			$city_filter = $wpdb->prepare( " AND r.post_city=%s ", str_replace( "-", " ", $gd_ses_city ) );
1984
+		if ($gd_ses_city = $gd_session->get('gd_city')) {
1985
+			$city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
1986 1986
 		}
1987 1987
 	}
1988 1988
 
1989 1989
 	$review_table = GEODIR_REVIEW_TABLE;
1990 1990
 	$request      = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments";
1991 1991
 
1992
-	$comments = $wpdb->get_results( $request );
1992
+	$comments = $wpdb->get_results($request);
1993 1993
 
1994
-	foreach ( $comments as $comment ) {
1994
+	foreach ($comments as $comment) {
1995 1995
 		// Set the extra comment info needed.
1996
-		$comment_extra = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID" );
1996
+		$comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
1997 1997
 		//echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID";
1998 1998
 		$comment->comment_content      = $comment_extra->comment_content;
1999 1999
 		$comment->comment_author       = $comment_extra->comment_author;
@@ -2001,75 +2001,75 @@  discard block
 block discarded – undo
2001 2001
 
2002 2002
 		$comment_id      = '';
2003 2003
 		$comment_id      = $comment->comment_ID;
2004
-		$comment_content = strip_tags( $comment->comment_content );
2004
+		$comment_content = strip_tags($comment->comment_content);
2005 2005
 
2006
-		$comment_content = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content );
2006
+		$comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
2007 2007
 
2008
-		$permalink            = get_permalink( $comment->ID ) . "#comment-" . $comment->comment_ID;
2008
+		$permalink            = get_permalink($comment->ID)."#comment-".$comment->comment_ID;
2009 2009
 		$comment_author_email = $comment->comment_author_email;
2010 2010
 		$comment_post_ID      = $comment->post_id;
2011 2011
 
2012 2012
 		$na = true;
2013
-		if ( function_exists( 'icl_object_id' ) && icl_object_id( $comment_post_ID, $comment->post_type, true ) ) {
2014
-			$comment_post_ID2 = icl_object_id( $comment_post_ID, $comment->post_type, false );
2015
-			if ( $comment_post_ID == $comment_post_ID2 ) {
2013
+		if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
2014
+			$comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false);
2015
+			if ($comment_post_ID == $comment_post_ID2) {
2016 2016
 			} else {
2017 2017
 				$na = false;
2018 2018
 			}
2019 2019
 		}
2020 2020
 
2021
-		$post_title        = get_the_title( $comment_post_ID );
2022
-		$permalink         = get_permalink( $comment_post_ID );
2023
-		$comment_permalink = $permalink . "#comment-" . $comment->comment_ID;
2024
-		$read_more         = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __( 'Read more', 'geodirectory' ) . '</a>';
2021
+		$post_title        = get_the_title($comment_post_ID);
2022
+		$permalink         = get_permalink($comment_post_ID);
2023
+		$comment_permalink = $permalink."#comment-".$comment->comment_ID;
2024
+		$read_more         = '<a class="comment_excerpt" href="'.$comment_permalink.'">'.__('Read more', 'geodirectory').'</a>';
2025 2025
 
2026
-		$comment_content_length = strlen( $comment_content );
2027
-		if ( $comment_content_length > $comment_lenth ) {
2028
-			$comment_excerpt = geodir_utf8_substr( $comment_content, 0, $comment_lenth ) . '... ' . $read_more;
2026
+		$comment_content_length = strlen($comment_content);
2027
+		if ($comment_content_length > $comment_lenth) {
2028
+			$comment_excerpt = geodir_utf8_substr($comment_content, 0, $comment_lenth).'... '.$read_more;
2029 2029
 		} else {
2030 2030
 			$comment_excerpt = $comment_content;
2031 2031
 		}
2032 2032
 
2033
-		if ( $comment->user_id ) {
2034
-			$user_profile_url = get_author_posts_url( $comment->user_id );
2033
+		if ($comment->user_id) {
2034
+			$user_profile_url = get_author_posts_url($comment->user_id);
2035 2035
 		} else {
2036 2036
 			$user_profile_url = '';
2037 2037
 		}
2038 2038
 
2039
-		if ( $comment_id && $na ) {
2039
+		if ($comment_id && $na) {
2040 2040
 			$comments_echo .= '<li class="clearfix">';
2041
-			$comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">";
2042
-			if ( function_exists( 'get_avatar' ) ) {
2043
-				if ( ! isset( $comment->comment_type ) ) {
2044
-					if ( $user_profile_url ) {
2045
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2041
+			$comments_echo .= "<span class=\"li".$comment_id." geodir_reviewer_image\">";
2042
+			if (function_exists('get_avatar')) {
2043
+				if (!isset($comment->comment_type)) {
2044
+					if ($user_profile_url) {
2045
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2046 2046
 					}
2047
-					$comments_echo .= get_avatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2048
-					if ( $user_profile_url ) {
2047
+					$comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2048
+					if ($user_profile_url) {
2049 2049
 						$comments_echo .= '</a>';
2050 2050
 					}
2051
-				} elseif ( ( isset( $comment->comment_type ) && $comment->comment_type == 'trackback' ) || ( isset( $comment->comment_type ) && $comment->comment_type == 'pingback' ) ) {
2052
-					if ( $user_profile_url ) {
2053
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2051
+				} elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
2052
+					if ($user_profile_url) {
2053
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2054 2054
 					}
2055
-					$comments_echo .= get_avatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2055
+					$comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2056 2056
 				}
2057
-			} elseif ( function_exists( 'gravatar' ) ) {
2058
-				if ( $user_profile_url ) {
2059
-					$comments_echo .= '<a href="' . $user_profile_url . '">';
2057
+			} elseif (function_exists('gravatar')) {
2058
+				if ($user_profile_url) {
2059
+					$comments_echo .= '<a href="'.$user_profile_url.'">';
2060 2060
 				}
2061 2061
 				$comments_echo .= "<img src=\"";
2062
-				if ( '' == $comment->comment_type ) {
2063
-					$comments_echo .= gravatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2064
-					if ( $user_profile_url ) {
2062
+				if ('' == $comment->comment_type) {
2063
+					$comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2064
+					if ($user_profile_url) {
2065 2065
 						$comments_echo .= '</a>';
2066 2066
 					}
2067
-				} elseif ( ( 'trackback' == $comment->comment_type ) || ( 'pingback' == $comment->comment_type ) ) {
2068
-					if ( $user_profile_url ) {
2069
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2067
+				} elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
2068
+					if ($user_profile_url) {
2069
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2070 2070
 					}
2071
-					$comments_echo .= gravatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2072
-					if ( $user_profile_url ) {
2071
+					$comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2072
+					if ($user_profile_url) {
2073 2073
 						$comments_echo .= '</a>';
2074 2074
 					}
2075 2075
 				}
@@ -2079,17 +2079,17 @@  discard block
 block discarded – undo
2079 2079
 			$comments_echo .= "</span>\n";
2080 2080
 
2081 2081
 			$comments_echo .= '<span class="geodir_reviewer_content">';
2082
-			if ( $comment->user_id ) {
2083
-				$comments_echo .= '<a href="' . get_author_posts_url( $comment->user_id ) . '">';
2082
+			if ($comment->user_id) {
2083
+				$comments_echo .= '<a href="'.get_author_posts_url($comment->user_id).'">';
2084 2084
 			}
2085
-			$comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> ';
2086
-			if ( $comment->user_id ) {
2085
+			$comments_echo .= '<span class="geodir_reviewer_author">'.$comment->comment_author.'</span> ';
2086
+			if ($comment->user_id) {
2087 2087
 				$comments_echo .= '</a>';
2088 2088
 			}
2089
-			$comments_echo .= '<span class="geodir_reviewer_reviewed">' . __( 'reviewed', 'geodirectory' ) . '</span> ';
2090
-			$comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>';
2091
-			$comments_echo .= geodir_get_rating_stars( $comment->overall_rating, $comment_post_ID );
2092
-			$comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . '';
2089
+			$comments_echo .= '<span class="geodir_reviewer_reviewed">'.__('reviewed', 'geodirectory').'</span> ';
2090
+			$comments_echo .= '<a href="'.$permalink.'" class="geodir_reviewer_title">'.$post_title.'</a>';
2091
+			$comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID);
2092
+			$comments_echo .= '<p class="geodir_reviewer_text">'.$comment_excerpt.'';
2093 2093
 			//echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
2094 2094
 			$comments_echo .= '</p>';
2095 2095
 
@@ -2109,25 +2109,25 @@  discard block
 block discarded – undo
2109 2109
  * @return array Returns post categories as an array.
2110 2110
  */
2111 2111
 function geodir_home_map_cats_key_value_array() {
2112
-	$post_types = geodir_get_posttypes( 'object' );
2112
+	$post_types = geodir_get_posttypes('object');
2113 2113
 
2114 2114
 	$return = array();
2115
-	if ( ! empty( $post_types ) ) {
2116
-		foreach ( $post_types as $key => $post_type ) {
2117
-			$cpt_name       = __( $post_type->labels->singular_name, 'geodirectory' );
2118
-			$post_type_name = sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name );
2119
-			$taxonomies     = geodir_get_taxonomies( $key );
2120
-			$cat_taxonomy   = ! empty( $taxonomies[0] ) ? $taxonomies[0] : null;
2121
-			$cat_terms      = $cat_taxonomy ? get_terms( $cat_taxonomy ) : null;
2122
-
2123
-			if ( ! empty( $cat_terms ) ) {
2124
-				$return[ 'optgroup_start-' . $key ] = $post_type_name;
2125
-
2126
-				foreach ( $cat_terms as $cat_term ) {
2127
-					$return[ $key . '_' . $cat_term->term_id ] = $cat_term->name;
2115
+	if (!empty($post_types)) {
2116
+		foreach ($post_types as $key => $post_type) {
2117
+			$cpt_name       = __($post_type->labels->singular_name, 'geodirectory');
2118
+			$post_type_name = sprintf(__('%s Categories', 'geodirectory'), $cpt_name);
2119
+			$taxonomies     = geodir_get_taxonomies($key);
2120
+			$cat_taxonomy   = !empty($taxonomies[0]) ? $taxonomies[0] : null;
2121
+			$cat_terms      = $cat_taxonomy ? get_terms($cat_taxonomy) : null;
2122
+
2123
+			if (!empty($cat_terms)) {
2124
+				$return['optgroup_start-'.$key] = $post_type_name;
2125
+
2126
+				foreach ($cat_terms as $cat_term) {
2127
+					$return[$key.'_'.$cat_term->term_id] = $cat_term->name;
2128 2128
 				}
2129 2129
 
2130
-				$return[ 'optgroup_end-' . $key ] = $post_type_name;
2130
+				$return['optgroup_end-'.$key] = $post_type_name;
2131 2131
 			}
2132 2132
 		}
2133 2133
 	}
@@ -2143,14 +2143,14 @@  discard block
 block discarded – undo
2143 2143
  * @package GeoDirectory
2144 2144
  */
2145 2145
 function geodir_twitter_tweet_button() {
2146
-	if ( isset( $_GET['gde'] ) ) {
2147
-		$link = '?url=' . urlencode( geodir_curPageURL() );
2146
+	if (isset($_GET['gde'])) {
2147
+		$link = '?url='.urlencode(geodir_curPageURL());
2148 2148
 	} else {
2149 2149
 		$link = '';
2150 2150
 	}
2151 2151
 	?>
2152 2152
 	<a href="http://twitter.com/share<?php echo $link; ?>"
2153
-	   class="twitter-share-button"><?php _e( 'Tweet', 'geodirectory' ); ?></a>
2153
+	   class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
2154 2154
 	<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
2155 2155
 	<?php
2156 2156
 }
@@ -2167,10 +2167,10 @@  discard block
 block discarded – undo
2167 2167
 function geodir_fb_like_button() {
2168 2168
 	global $post;
2169 2169
 	?>
2170
-	<iframe <?php if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) ) {
2170
+	<iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
2171 2171
 		echo 'allowtransparency="true"';
2172 2172
 	} ?> class="facebook"
2173
-	     src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode( get_permalink( $post->ID ) ); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2173
+	     src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2174 2174
 	     style="border:none; overflow:hidden; width:100px; height:20px"></iframe>
2175 2175
 	<?php
2176 2176
 }
@@ -2201,7 +2201,7 @@  discard block
 block discarded – undo
2201 2201
 
2202 2202
 
2203 2203
 function geodir_listing_bounce_map_pin_on_hover() {
2204
-	if ( get_option( 'geodir_listing_hover_bounce_map_pin', true ) ) {
2204
+	if (get_option('geodir_listing_hover_bounce_map_pin', true)) {
2205 2205
 		?>
2206 2206
 		<script>
2207 2207
 			jQuery(function ($) {
@@ -2224,44 +2224,44 @@  discard block
 block discarded – undo
2224 2224
 	}
2225 2225
 }
2226 2226
 
2227
-add_action( 'geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10 );
2227
+add_action('geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10);
2228 2228
 
2229
-add_action( 'geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1 );
2230
-function geodir_output_favourite_html_listings( $post_id ) {
2231
-	geodir_favourite_html( '', $post_id );
2229
+add_action('geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1);
2230
+function geodir_output_favourite_html_listings($post_id) {
2231
+	geodir_favourite_html('', $post_id);
2232 2232
 }
2233 2233
 
2234
-add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2 );
2235
-function geodir_output_pinpoint_html_listings( $post_id, $post ) {
2234
+add_action('geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2);
2235
+function geodir_output_pinpoint_html_listings($post_id, $post) {
2236 2236
 	global $wp_query;
2237 2237
 
2238 2238
 	$show_pin_point = $wp_query->is_main_query();
2239 2239
 
2240
-	if ( ! empty( $show_pin_point ) && is_active_widget( false, "", "geodir_map_v3_listing_map" ) ) {
2241
-		$term_icon_url = get_tax_meta( $post->default_category, 'ct_cat_icon', false, $post->post_type );
2242
-		$marker_icon   = isset( $term_icon_url['src'] ) ? $term_icon_url['src'] : get_option( 'geodir_default_marker_icon' );
2240
+	if (!empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
2241
+		$term_icon_url = get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type);
2242
+		$marker_icon   = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
2243 2243
 		?>
2244 2244
 		<span class="geodir-pinpoint"
2245
-		      style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters( 'geodir_listing_listview_pinpoint_inner_content', '', 'listing' ); ?></span>
2245
+		      style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters('geodir_listing_listview_pinpoint_inner_content', '', 'listing'); ?></span>
2246 2246
 		<a class="geodir-pinpoint-link" href="javascript:void(0)"
2247 2247
 		   onclick="if(typeof openMarker=='function'){openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"
2248 2248
 		   onmouseover="if(typeof animate_marker=='function'){animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"
2249
-		   onmouseout="if(typeof stop_marker_animation=='function'){stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"><?php _e( 'Pinpoint', 'geodirectory' ); ?></a>
2249
+		   onmouseout="if(typeof stop_marker_animation=='function'){stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"><?php _e('Pinpoint', 'geodirectory'); ?></a>
2250 2250
 		<?php
2251 2251
 	}
2252 2252
 }
2253 2253
 
2254 2254
 function geodir_search_form_submit_button() {
2255 2255
 
2256
-	$new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true;
2256
+	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2257 2257
 
2258
-	if ( $new_style ) {
2258
+	if ($new_style) {
2259 2259
 		$default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>';
2260
-	}else{
2260
+	} else {
2261 2261
 		$default_search_button_label = 'Search';
2262 2262
 	}
2263
-	if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) {
2264
-		$default_search_button_label = __( get_option( 'geodir_search_button_label' ), 'geodirectory' );
2263
+	if (get_option('geodir_search_button_label') && get_option('geodir_search_button_label') != 'Search') {
2264
+		$default_search_button_label = __(get_option('geodir_search_button_label'), 'geodirectory');
2265 2265
 	}
2266 2266
 
2267 2267
 	/**
@@ -2273,78 +2273,78 @@  discard block
 block discarded – undo
2273 2273
 	 *
2274 2274
 	 * @param string $default_search_button_label The current search button text.
2275 2275
 	 */
2276
-	$default_search_button_label = apply_filters( 'geodir_search_default_search_button_text', $default_search_button_label );
2276
+	$default_search_button_label = apply_filters('geodir_search_default_search_button_text', $default_search_button_label);
2277 2277
 
2278 2278
 	$fa_class = '';
2279
-	if ( strpos( $default_search_button_label, '&#' ) !== false ) {
2279
+	if (strpos($default_search_button_label, '&#') !== false) {
2280 2280
 		$fa_class = 'fa';
2281 2281
 	}
2282 2282
 
2283 2283
 
2284
-	if ( $new_style ) {
2284
+	if ($new_style) {
2285 2285
 	?>
2286
-		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button>
2287
-<?php }else{?>
2288
-		<input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>"
2286
+		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e($default_search_button_label, 'geodirectory'); ?></button>
2287
+<?php } else {?>
2288
+		<input type="button" value="<?php esc_attr_e($default_search_button_label); ?>"
2289 2289
 	       class="geodir_submit_search <?php echo $fa_class; ?>"/>
2290 2290
 	<?php }
2291 2291
 }
2292 2292
 
2293
-add_action( 'geodir_before_search_button', 'geodir_search_form_submit_button', 5000 );
2293
+add_action('geodir_before_search_button', 'geodir_search_form_submit_button', 5000);
2294 2294
 
2295 2295
 function geodir_search_form_post_type_input() {
2296 2296
 	global $geodir_search_post_type;
2297
-	$post_types     = apply_filters( 'geodir_search_form_post_types', geodir_get_posttypes( 'object' ) );
2297
+	$post_types     = apply_filters('geodir_search_form_post_types', geodir_get_posttypes('object'));
2298 2298
 	$curr_post_type = $geodir_search_post_type;
2299 2299
 
2300
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2300
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2301 2301
 
2302
-		foreach ( $post_types as $post_type => $info ){
2302
+		foreach ($post_types as $post_type => $info) {
2303 2303
 			global $wpdb;
2304
-			$has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
2305
-			if ( ! $has_posts ) {
2304
+			$has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
2305
+			if (!$has_posts) {
2306 2306
 				unset($post_types->{$post_type});
2307 2307
 			}
2308 2308
 		}
2309 2309
 
2310
-		if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2310
+		if (!empty($post_types) && count((array) $post_types) > 1) {
2311 2311
 
2312
-			$new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true;
2313
-			if ( $new_style ) {
2312
+			$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2313
+			if ($new_style) {
2314 2314
 				echo "<div class='gd-search-input-wrapper gd-search-field-cpt'>";
2315 2315
 			}
2316 2316
 			?>
2317 2317
 			<select name="stype" class="search_by_post">
2318
-				<?php foreach ( $post_types as $post_type => $info ):
2318
+				<?php foreach ($post_types as $post_type => $info):
2319 2319
 					global $wpdb;
2320 2320
 					?>
2321 2321
 
2322
-					<option data-label="<?php echo get_post_type_archive_link( $post_type ); ?>"
2323
-					        value="<?php echo $post_type; ?>" <?php if ( isset( $_REQUEST['stype'] ) ) {
2324
-						if ( $post_type == $_REQUEST['stype'] ) {
2322
+					<option data-label="<?php echo get_post_type_archive_link($post_type); ?>"
2323
+					        value="<?php echo $post_type; ?>" <?php if (isset($_REQUEST['stype'])) {
2324
+						if ($post_type == $_REQUEST['stype']) {
2325 2325
 							echo 'selected="selected"';
2326 2326
 						}
2327
-					} elseif ( $curr_post_type == $post_type ) {
2327
+					} elseif ($curr_post_type == $post_type) {
2328 2328
 						echo 'selected="selected"';
2329
-					} ?>><?php _e( geodir_utf8_ucfirst( $info->labels->name ), 'geodirectory' ); ?></option>
2329
+					} ?>><?php _e(geodir_utf8_ucfirst($info->labels->name), 'geodirectory'); ?></option>
2330 2330
 
2331 2331
 				<?php endforeach; ?>
2332 2332
 			</select>
2333 2333
 			<?php
2334
-			if ( $new_style ) {
2334
+			if ($new_style) {
2335 2335
 				echo "</div>";
2336 2336
 			}
2337
-		}else{
2338
-			if(! empty( $post_types )){
2339
-				$pt_arr = (array)$post_types;
2340
-				echo '<input type="hidden" name="stype" value="' . key( $pt_arr  ) . '"  />';
2341
-			}else{
2337
+		} else {
2338
+			if (!empty($post_types)) {
2339
+				$pt_arr = (array) $post_types;
2340
+				echo '<input type="hidden" name="stype" value="'.key($pt_arr).'"  />';
2341
+			} else {
2342 2342
 				echo '<input type="hidden" name="stype" value="gd_place"  />';
2343 2343
 			}
2344 2344
 
2345 2345
 		}
2346 2346
 
2347
-	}elseif ( ! empty( $post_types ) ) {
2347
+	}elseif (!empty($post_types)) {
2348 2348
 		echo '<input type="hidden" name="stype" value="gd_place"  />';
2349 2349
 	}
2350 2350
 }
@@ -2352,26 +2352,26 @@  discard block
 block discarded – undo
2352 2352
 function geodir_search_form_search_input() {
2353 2353
 
2354 2354
 	$default_search_for_text = SEARCH_FOR_TEXT;
2355
-	if ( get_option( 'geodir_search_field_default_text' ) ) {
2356
-		$default_search_for_text = __( get_option( 'geodir_search_field_default_text' ), 'geodirectory' );
2355
+	if (get_option('geodir_search_field_default_text')) {
2356
+		$default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
2357 2357
 	}
2358 2358
 
2359 2359
 	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2360
-	if($new_style){
2360
+	if ($new_style) {
2361 2361
 		echo "<div class='gd-search-input-wrapper gd-search-field-search'>";
2362 2362
 	}
2363 2363
 	?>
2364 2364
 	<input class="search_text" name="s"
2365
-	       value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
2366
-		       echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2365
+	       value="<?php if (isset($_REQUEST['s']) && trim($_REQUEST['s']) != '') {
2366
+		       echo esc_attr(stripslashes_deep($_REQUEST['s']));
2367 2367
 	       } else {
2368 2368
 		       echo $default_search_for_text;
2369 2369
 	       } ?>" type="text"
2370
-	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
2371
-	       onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
2370
+	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql($default_search_for_text); ?>';}"
2371
+	       onfocus="if (this.value == '<?php echo esc_sql($default_search_for_text); ?>') {this.value = '';}"
2372 2372
 	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);">
2373 2373
 	<?php
2374
-	if($new_style){
2374
+	if ($new_style) {
2375 2375
 		echo "</div>";
2376 2376
 	}
2377 2377
 }
@@ -2379,12 +2379,12 @@  discard block
 block discarded – undo
2379 2379
 function geodir_search_form_near_input() {
2380 2380
 
2381 2381
 	$default_near_text = NEAR_TEXT;
2382
-	if ( get_option( 'geodir_near_field_default_text' ) ) {
2383
-		$default_near_text = __( get_option( 'geodir_near_field_default_text' ), 'geodirectory' );
2382
+	if (get_option('geodir_near_field_default_text')) {
2383
+		$default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
2384 2384
 	}
2385 2385
 
2386
-	if ( isset( $_REQUEST['snear'] ) && $_REQUEST['snear'] != '' ) {
2387
-		$near = esc_attr( stripslashes_deep( $_REQUEST['snear'] ) );
2386
+	if (isset($_REQUEST['snear']) && $_REQUEST['snear'] != '') {
2387
+		$near = esc_attr(stripslashes_deep($_REQUEST['snear']));
2388 2388
 	} else {
2389 2389
 		$near = $default_near_text;
2390 2390
 	}
@@ -2398,7 +2398,7 @@  discard block
 block discarded – undo
2398 2398
 	 * @since 1.6.9
2399 2399
 	 * @param string $curr_post_type The current post type.
2400 2400
 	 */
2401
-	$near_input_extra = apply_filters('geodir_near_input_extra','',$curr_post_type);
2401
+	$near_input_extra = apply_filters('geodir_near_input_extra', '', $curr_post_type);
2402 2402
 
2403 2403
 
2404 2404
 	/**
@@ -2411,7 +2411,7 @@  discard block
 block discarded – undo
2411 2411
 	 * @param string $near              The current near value.
2412 2412
 	 * @param string $default_near_text The default near value.
2413 2413
 	 */
2414
-	$near = apply_filters( 'geodir_search_near_text', $near, $default_near_text );
2414
+	$near = apply_filters('geodir_search_near_text', $near, $default_near_text);
2415 2415
 	/**
2416 2416
 	 * Filter the default "Near" text value for the search form.
2417 2417
 	 *
@@ -2422,7 +2422,7 @@  discard block
 block discarded – undo
2422 2422
 	 * @param string $near              The current near value.
2423 2423
 	 * @param string $default_near_text The default near value.
2424 2424
 	 */
2425
-	$default_near_text = apply_filters( 'geodir_search_default_near_text', $default_near_text, $near );
2425
+	$default_near_text = apply_filters('geodir_search_default_near_text', $default_near_text, $near);
2426 2426
 	/**
2427 2427
 	 * Filter the class for the near search input.
2428 2428
 	 *
@@ -2430,10 +2430,10 @@  discard block
 block discarded – undo
2430 2430
 	 *
2431 2431
 	 * @param string $class The class for the HTML near input, default is blank.
2432 2432
 	 */
2433
-	$near_class = apply_filters( 'geodir_search_near_class', '' );
2433
+	$near_class = apply_filters('geodir_search_near_class', '');
2434 2434
 
2435 2435
 	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2436
-	if($new_style){
2436
+	if ($new_style) {
2437 2437
 		echo "<div class='gd-search-input-wrapper gd-search-field-near' $near_input_extra>";
2438 2438
 		
2439 2439
 		do_action('geodir_before_near_input');
@@ -2441,30 +2441,30 @@  discard block
 block discarded – undo
2441 2441
 
2442 2442
 	?>
2443 2443
 	<input name="snear" class="snear <?php echo $near_class; ?>" type="text" value="<?php echo $near; ?>"
2444
-	       onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql( $near ); ?>' != '' ? '<?php echo esc_sql( $near ); ?>' : '<?php echo $default_near_text; ?>');}"
2445
-	       onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql( $near ); ?>') {this.value = '';}"
2446
-	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra;?>/>
2444
+	       onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql($near); ?>' != '' ? '<?php echo esc_sql($near); ?>' : '<?php echo $default_near_text; ?>');}"
2445
+	       onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql($near); ?>') {this.value = '';}"
2446
+	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra; ?>/>
2447 2447
 	<?php
2448
-	if($new_style){
2448
+	if ($new_style) {
2449 2449
 		do_action('geodir_after_near_input');
2450 2450
 
2451 2451
 		echo "</div>";
2452 2452
 	}
2453 2453
 }
2454 2454
 
2455
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 );
2456
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 );
2457
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 );
2455
+add_action('geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10);
2456
+add_action('geodir_search_form_inputs', 'geodir_search_form_search_input', 20);
2457
+add_action('geodir_search_form_inputs', 'geodir_search_form_near_input', 30);
2458 2458
 
2459
-function geodir_get_search_post_type($pt=''){
2459
+function geodir_get_search_post_type($pt = '') {
2460 2460
 	global $geodir_search_post_type;
2461 2461
 
2462
-	if($pt!=''){return $geodir_search_post_type = $pt;}
2463
-	if(!empty($geodir_search_post_type)){ return $geodir_search_post_type;}
2462
+	if ($pt != '') {return $geodir_search_post_type = $pt; }
2463
+	if (!empty($geodir_search_post_type)) { return $geodir_search_post_type; }
2464 2464
 
2465 2465
 	$geodir_search_post_type = geodir_get_current_posttype();
2466 2466
 
2467
-	if(!$geodir_search_post_type) {
2467
+	if (!$geodir_search_post_type) {
2468 2468
 		$geodir_search_post_type = geodir_get_default_posttype();
2469 2469
 	}
2470 2470
 
@@ -2472,7 +2472,7 @@  discard block
 block discarded – undo
2472 2472
 	return $geodir_search_post_type;
2473 2473
 }
2474 2474
 
2475
-function geodir_search_form(){
2475
+function geodir_search_form() {
2476 2476
 
2477 2477
 	geodir_get_search_post_type();
2478 2478
 
@@ -2482,8 +2482,8 @@  discard block
 block discarded – undo
2482 2482
 	die();
2483 2483
 }
2484 2484
 
2485
-add_action( 'wp_ajax_geodir_search_form', 'geodir_search_form' );
2486
-add_action( 'wp_ajax_nopriv_geodir_search_form', 'geodir_search_form' );
2485
+add_action('wp_ajax_geodir_search_form', 'geodir_search_form');
2486
+add_action('wp_ajax_nopriv_geodir_search_form', 'geodir_search_form');
2487 2487
 
2488 2488
 /**
2489 2489
  * Check wpml active or not.
@@ -2557,7 +2557,7 @@  discard block
 block discarded – undo
2557 2557
         }
2558 2558
     }
2559 2559
 }
2560
-add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 );
2560
+add_filter('icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4);
2561 2561
 
2562 2562
 /**
2563 2563
  * Duplicate post listing manually after listing saved.
@@ -2598,7 +2598,7 @@  discard block
 block discarded – undo
2598 2598
 function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) {
2599 2599
     global $wpdb;
2600 2600
 
2601
-    $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2601
+    $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM ".GEODIR_REVIEW_TABLE." WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2602 2602
 
2603 2603
     if (!empty($reviews)) {
2604 2604
         foreach ($reviews as $review) {
@@ -2626,14 +2626,14 @@  discard block
 block discarded – undo
2626 2626
     global $wpdb, $plugin_prefix;
2627 2627
 
2628 2628
     $post_type = get_post_type($master_post_id);
2629
-    $post_table = $plugin_prefix . $post_type . '_detail';
2629
+    $post_table = $plugin_prefix.$post_type.'_detail';
2630 2630
 
2631
-    $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
2632
-    $data = (array)$wpdb->get_row($query);
2631
+    $query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id));
2632
+    $data = (array) $wpdb->get_row($query);
2633 2633
 
2634
-    if ( !empty( $data ) ) {
2634
+    if (!empty($data)) {
2635 2635
         $data['post_id'] = $tr_post_id;
2636
-        unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']);
2636
+        unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category']);
2637 2637
         $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
2638 2638
         return true;
2639 2639
     }
@@ -2658,7 +2658,7 @@  discard block
 block discarded – undo
2658 2658
     global $sitepress, $wpdb;
2659 2659
     $post_type = get_post_type($master_post_id);
2660 2660
 
2661
-    remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
2661
+    remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language
2662 2662
 
2663 2663
     $taxonomies = get_object_taxonomies($post_type);
2664 2664
     foreach ($taxonomies as $taxonomy) {
@@ -2667,9 +2667,9 @@  discard block
 block discarded – undo
2667 2667
         
2668 2668
         if ($terms) {
2669 2669
             foreach ($terms as $term) {
2670
-                $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
2670
+                $tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang);
2671 2671
                 
2672
-                if (!is_null($tr_id)){
2672
+                if (!is_null($tr_id)) {
2673 2673
                     // not using get_term - unfiltered get_term
2674 2674
                     $translated_term = $wpdb->get_row($wpdb->prepare("
2675 2675
                         SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
@@ -2678,14 +2678,14 @@  discard block
 block discarded – undo
2678 2678
                 }
2679 2679
             }
2680 2680
 
2681
-            if (!is_taxonomy_hierarchical($taxonomy)){
2682
-                $terms_array = array_unique( array_map( 'intval', $terms_array ) );
2681
+            if (!is_taxonomy_hierarchical($taxonomy)) {
2682
+                $terms_array = array_unique(array_map('intval', $terms_array));
2683 2683
             }
2684 2684
 
2685 2685
             wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
2686 2686
             
2687
-            if ($taxonomy == $post_type . 'category') {
2688
-                geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
2687
+            if ($taxonomy == $post_type.'category') {
2688
+                geodir_set_postcat_structure($tr_post_id, $post_type.'category');
2689 2689
             }
2690 2690
         }
2691 2691
     }
@@ -2706,15 +2706,15 @@  discard block
 block discarded – undo
2706 2706
 function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
2707 2707
     global $wpdb;
2708 2708
 
2709
-    $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2709
+    $query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2710 2710
     $wpdb->query($query);
2711 2711
 
2712
-    $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2712
+    $query = $wpdb->prepare("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2713 2713
     $post_images = $wpdb->get_results($query);
2714 2714
 
2715
-    if ( !empty( $post_images ) ) {
2716
-        foreach ( $post_images as $post_image) {
2717
-            $image_data = (array)$post_image;
2715
+    if (!empty($post_images)) {
2716
+        foreach ($post_images as $post_image) {
2717
+            $image_data = (array) $post_image;
2718 2718
             unset($image_data['ID']);
2719 2719
             $image_data['post_id'] = $tr_post_id;
2720 2720
             
@@ -2747,13 +2747,13 @@  discard block
 block discarded – undo
2747 2747
 function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) {
2748 2748
     global $wpdb, $plugin_prefix, $sitepress;
2749 2749
 
2750
-    $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2750
+    $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2751 2751
 
2752 2752
     if (empty($review)) {
2753 2753
         return false;
2754 2754
     }
2755 2755
     if ($review['post_id'] != $master_post_id) {
2756
-        $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2756
+        $wpdb->query($wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2757 2757
         geodir_update_postrating($master_post_id, $post_type);
2758 2758
     }
2759 2759
 
@@ -2764,9 +2764,9 @@  discard block
 block discarded – undo
2764 2764
     }
2765 2765
 
2766 2766
     $post_type = get_post_type($master_post_id);
2767
-    $post_table = $plugin_prefix . $post_type . '_detail';
2767
+    $post_table = $plugin_prefix.$post_type.'_detail';
2768 2768
 
2769
-    $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
2769
+    $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM ".$post_table." WHERE post_id = %d", $tr_post_id), ARRAY_A);
2770 2770
     if (empty($translated_post)) {
2771 2771
         return false;
2772 2772
     }
@@ -2784,7 +2784,7 @@  discard block
 block discarded – undo
2784 2784
         unset($review['id']);
2785 2785
     }
2786 2786
 
2787
-    $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2787
+    $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2788 2788
 
2789 2789
     if ($tr_review_id) { // update review
2790 2790
         $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
@@ -2797,8 +2797,8 @@  discard block
 block discarded – undo
2797 2797
         geodir_update_postrating($tr_post_id, $post_type);
2798 2798
         
2799 2799
         if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
2800
-            $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
2801
-            $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2800
+            $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id = %d", array($tr_comment_id)));
2801
+            $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2802 2802
 
2803 2803
             if (!empty($likes)) {
2804 2804
                 foreach ($likes as $like) {
@@ -2900,7 +2900,7 @@  discard block
 block discarded – undo
2900 2900
  * @return bool True if review star disabled, otherwise false.
2901 2901
  */ 
2902 2902
 function geodir_rating_disabled_post_types() {
2903
-	$post_types = get_option( 'geodir_disable_rating_cpt' );
2903
+	$post_types = get_option('geodir_disable_rating_cpt');
2904 2904
 	
2905 2905
 	/**
2906 2906
 	 * Filter the post types array which have rating disabled.
@@ -2909,7 +2909,7 @@  discard block
 block discarded – undo
2909 2909
 	 *
2910 2910
 	 * @param array $post_types Array of post types which have rating starts disabled.
2911 2911
 	 */
2912
-	return apply_filters( 'geodir_rating_disabled_post_types', $post_types );
2912
+	return apply_filters('geodir_rating_disabled_post_types', $post_types);
2913 2913
 }
2914 2914
 
2915 2915
 /**
@@ -2921,30 +2921,30 @@  discard block
 block discarded – undo
2921 2921
  * @param bool $taxonomy Whether $post_type is taxonomy or not.
2922 2922
  * @return bool True if review star disabled, otherwise false.
2923 2923
  */ 
2924
-function geodir_cpt_has_rating_disabled( $post_type = '', $taxonomy = false ) {
2924
+function geodir_cpt_has_rating_disabled($post_type = '', $taxonomy = false) {
2925 2925
 	$post_types = geodir_rating_disabled_post_types();
2926 2926
 	
2927
-	if ( empty( $post_types ) ) {
2927
+	if (empty($post_types)) {
2928 2928
 		return false;
2929 2929
 	}
2930 2930
 	
2931
-	if ( is_int( $post_type ) ) {
2932
-		$post_type = get_post_type( $post_type );
2931
+	if (is_int($post_type)) {
2932
+		$post_type = get_post_type($post_type);
2933 2933
 	}
2934 2934
 	
2935
-	if ( $taxonomy && !empty( $post_types ) ) {
2935
+	if ($taxonomy && !empty($post_types)) {
2936 2936
 		$posttypes = array();
2937 2937
 		
2938
-		foreach ( $post_types as $posttype ) {
2939
-			$posttypes[] = $posttype . 'category';
2940
-			$posttypes[] = $posttype . '_tags';
2938
+		foreach ($post_types as $posttype) {
2939
+			$posttypes[] = $posttype.'category';
2940
+			$posttypes[] = $posttype.'_tags';
2941 2941
 		}
2942 2942
 		
2943 2943
 		$post_types = $posttypes;
2944 2944
 	}
2945 2945
 
2946 2946
 	$return = false;
2947
-	if ( $post_type != '' && !empty( $post_types ) && in_array( $post_type, $post_types ) ) {
2947
+	if ($post_type != '' && !empty($post_types) && in_array($post_type, $post_types)) {
2948 2948
 		$return = true;
2949 2949
 	}
2950 2950
 
@@ -2959,5 +2959,5 @@  discard block
 block discarded – undo
2959 2959
  * @return bool True if Yoast SEO disabled on GD pages.
2960 2960
  */
2961 2961
 function geodir_disable_yoast_seo_metas() {
2962
-    return (bool)get_option( 'geodir_disable_yoast_meta' );
2962
+    return (bool) get_option('geodir_disable_yoast_meta');
2963 2963
 }
2964 2964
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/map-functions/map_template_tags.php 3 patches
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -225,10 +225,11 @@  discard block
 block discarded – undo
225 225
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_jason_enabled" value="0"/>
226 226
                 <?php }
227 227
 
228
-                if (!$geodir_map_options['enable_text_search'] && !$geodir_map_options['enable_cat_filters'])
229
-                    $show_entire_cat_panel = "none";
230
-                else
231
-                    $show_entire_cat_panel = "''";
228
+                if (!$geodir_map_options['enable_text_search'] && !$geodir_map_options['enable_cat_filters']) {
229
+                                    $show_entire_cat_panel = "none";
230
+                } else {
231
+                                    $show_entire_cat_panel = "''";
232
+                }
232 233
                 ?>
233 234
 
234 235
                 <?php if ($geodir_map_options['enable_map_direction']) { ?>
@@ -302,8 +303,9 @@  discard block
 block discarded – undo
302 303
 				}
303 304
 				
304 305
 				$geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
305
-				if (empty($geodir_default_map_search_pt))
306
-					$geodir_default_map_search_pt = 'gd_place';
306
+				if (empty($geodir_default_map_search_pt)) {
307
+									$geodir_default_map_search_pt = 'gd_place';
308
+				}
307 309
 
308 310
                 global $gd_session;
309 311
                 $homemap_catlist_ptype = $gd_session->get('homemap_catlist_ptype');
Please login to merge, or discard this patch.
Indentation   +134 added lines, -134 removed lines patch added patch discarded remove patch
@@ -67,77 +67,77 @@  discard block
 block discarded – undo
67 67
  */
68 68
 function geodir_draw_map($map_args = array())
69 69
 {
70
-    global $map_canvas_arr;
71
-    $map_canvas_name = (!empty($map_args) && $map_args['map_canvas_name'] != '') ? $map_args['map_canvas_name'] : 'home_map_canvas';
72
-    $map_class_name = (!empty($map_args) && isset($map_args['map_class_name'])) ? $map_args['map_class_name'] : '';
73
-
74
-    $default_location = geodir_get_default_location();
75
-
76
-    $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
77
-    $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
78
-    $map_default_zoom = 12;
79
-    // map options default values
80
-    $width = 950;
81
-    $height = 450;
82
-    $child_collapse = '0';
83
-    $sticky = '';
84
-    $enable_cat_filters = false;
85
-    $enable_text_search = false;
86
-    $enable_post_type_filters = false;
87
-    $enable_location_filters = false;
88
-    $enable_jason_on_load = false;
89
-    $enable_map_direction = false;
90
-    $enable_marker_cluster = false;
91
-    $enable_map_resize_button = false;
92
-    $maptype = 'ROADMAP';
93
-
94
-    $geodir_map_options = array(
95
-        'width' => $width,
96
-        'height' => $height,
97
-        'child_collapse' => $child_collapse,
98
-        'sticky' => $sticky,
99
-        'enable_map_resize_button' => $enable_map_resize_button,
100
-        'enable_cat_filters' => $enable_cat_filters,
101
-        'enable_text_search' => $enable_text_search,
102
-        'enable_post_type_filters' => $enable_post_type_filters,
103
-        'enable_location_filters' => $enable_location_filters,
104
-        'enable_jason_on_load' => $enable_jason_on_load,
105
-        'enable_map_direction' => $enable_map_direction,
106
-        'enable_marker_cluster' => $enable_marker_cluster,
107
-        'ajax_url' => geodir_get_ajax_url(),
108
-        'map_canvas_name' => $map_canvas_name,
109
-        'inputText' => __('Title or Keyword', 'geodirectory'),
110
-        'latitude' => $map_default_lat,
111
-        'longitude' => $map_default_lng,
112
-        'zoom' => $map_default_zoom,
113
-        'scrollwheel' => true,
114
-        'streetViewControl' => true,
115
-        'maptype' => $maptype,
116
-        'showPreview' => '0',
117
-        'maxZoom' => 21,
118
-        'autozoom' => true,
119
-        'bubble_size' => 'small',
120
-        'token' => '68f48005e256696074e1da9bf9f67f06',
121
-        'navigationControlOptions' => array('position' => 'TOP_LEFT', 'style' => 'ZOOM_PAN')
122
-    );
123
-
124
-    if (!empty($map_args)) {
125
-        foreach ($map_args as $map_option_key => $map_option_value) {
126
-            $geodir_map_options[$map_option_key] = $map_option_value;
127
-        }
128
-    }
129
-
130
-    if (strpos($geodir_map_options['height'], '%') !== false || strpos($geodir_map_options['height'], 'px') !== false || strpos($geodir_map_options['height'], 'vh') !== false) {
131
-    } else {
132
-        $geodir_map_options['height'] = $geodir_map_options['height'] . 'px';
133
-    }
134
-
135
-    if (strpos($geodir_map_options['width'], '%') !== false || strpos($geodir_map_options['width'], 'px') !== false) {
136
-    } else {
137
-        $geodir_map_options['width'] = $geodir_map_options['width'] . 'px';
138
-    }
139
-
140
-    /**
70
+	global $map_canvas_arr;
71
+	$map_canvas_name = (!empty($map_args) && $map_args['map_canvas_name'] != '') ? $map_args['map_canvas_name'] : 'home_map_canvas';
72
+	$map_class_name = (!empty($map_args) && isset($map_args['map_class_name'])) ? $map_args['map_class_name'] : '';
73
+
74
+	$default_location = geodir_get_default_location();
75
+
76
+	$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
77
+	$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
78
+	$map_default_zoom = 12;
79
+	// map options default values
80
+	$width = 950;
81
+	$height = 450;
82
+	$child_collapse = '0';
83
+	$sticky = '';
84
+	$enable_cat_filters = false;
85
+	$enable_text_search = false;
86
+	$enable_post_type_filters = false;
87
+	$enable_location_filters = false;
88
+	$enable_jason_on_load = false;
89
+	$enable_map_direction = false;
90
+	$enable_marker_cluster = false;
91
+	$enable_map_resize_button = false;
92
+	$maptype = 'ROADMAP';
93
+
94
+	$geodir_map_options = array(
95
+		'width' => $width,
96
+		'height' => $height,
97
+		'child_collapse' => $child_collapse,
98
+		'sticky' => $sticky,
99
+		'enable_map_resize_button' => $enable_map_resize_button,
100
+		'enable_cat_filters' => $enable_cat_filters,
101
+		'enable_text_search' => $enable_text_search,
102
+		'enable_post_type_filters' => $enable_post_type_filters,
103
+		'enable_location_filters' => $enable_location_filters,
104
+		'enable_jason_on_load' => $enable_jason_on_load,
105
+		'enable_map_direction' => $enable_map_direction,
106
+		'enable_marker_cluster' => $enable_marker_cluster,
107
+		'ajax_url' => geodir_get_ajax_url(),
108
+		'map_canvas_name' => $map_canvas_name,
109
+		'inputText' => __('Title or Keyword', 'geodirectory'),
110
+		'latitude' => $map_default_lat,
111
+		'longitude' => $map_default_lng,
112
+		'zoom' => $map_default_zoom,
113
+		'scrollwheel' => true,
114
+		'streetViewControl' => true,
115
+		'maptype' => $maptype,
116
+		'showPreview' => '0',
117
+		'maxZoom' => 21,
118
+		'autozoom' => true,
119
+		'bubble_size' => 'small',
120
+		'token' => '68f48005e256696074e1da9bf9f67f06',
121
+		'navigationControlOptions' => array('position' => 'TOP_LEFT', 'style' => 'ZOOM_PAN')
122
+	);
123
+
124
+	if (!empty($map_args)) {
125
+		foreach ($map_args as $map_option_key => $map_option_value) {
126
+			$geodir_map_options[$map_option_key] = $map_option_value;
127
+		}
128
+	}
129
+
130
+	if (strpos($geodir_map_options['height'], '%') !== false || strpos($geodir_map_options['height'], 'px') !== false || strpos($geodir_map_options['height'], 'vh') !== false) {
131
+	} else {
132
+		$geodir_map_options['height'] = $geodir_map_options['height'] . 'px';
133
+	}
134
+
135
+	if (strpos($geodir_map_options['width'], '%') !== false || strpos($geodir_map_options['width'], 'px') !== false) {
136
+	} else {
137
+		$geodir_map_options['width'] = $geodir_map_options['width'] . 'px';
138
+	}
139
+
140
+	/**
141 141
 	 * Filter the options to use in google map.
142 142
 	 *
143 143
 	 * @since 1.0.0
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
 	 */
147 147
 	$geodir_map_options = apply_filters("geodir_map_options_{$map_canvas_name}", $geodir_map_options);
148 148
 
149
-    $map_canvas_arr[$map_canvas_name] = array();
149
+	$map_canvas_arr[$map_canvas_name] = array();
150 150
 
151
-    /**
151
+	/**
152 152
 	 * Filter the post types to display data on map.
153 153
 	 *
154 154
 	 * @since 1.0.0
@@ -166,20 +166,20 @@  discard block
 block discarded – undo
166 166
 	 */
167 167
 	$exclude_post_types = apply_filters("geodir_exclude_post_type_on_map_{$map_canvas_name}", get_option('geodir_exclude_post_type_on_map'));
168 168
 
169
-    if (count((array)$post_types) != count($exclude_post_types) || ($enable_jason_on_load)):
170
-        // Set default map options
169
+	if (count((array)$post_types) != count($exclude_post_types) || ($enable_jason_on_load)):
170
+		// Set default map options
171 171
 
172
-        wp_enqueue_script('geodir-map-widget', geodir_plugin_url() . '/geodirectory-functions/map-functions/js/map.min.js',array(),false,true);
172
+		wp_enqueue_script('geodir-map-widget', geodir_plugin_url() . '/geodirectory-functions/map-functions/js/map.min.js',array(),false,true);
173 173
 
174
-        wp_localize_script('geodir-map-widget', $map_canvas_name, $geodir_map_options);
174
+		wp_localize_script('geodir-map-widget', $map_canvas_name, $geodir_map_options);
175 175
 
176
-        if ($map_canvas_name == 'detail_page_map_canvas' || $map_canvas_name == 'preview_map_canvas') {
177
-            $map_width = '100%';
178
-        } else {
179
-            $map_width = $geodir_map_options['width'];
180
-        }
176
+		if ($map_canvas_name == 'detail_page_map_canvas' || $map_canvas_name == 'preview_map_canvas') {
177
+			$map_width = '100%';
178
+		} else {
179
+			$map_width = $geodir_map_options['width'];
180
+		}
181 181
 
182
-        /**
182
+		/**
183 183
 		 * Filter the width of map.
184 184
 		 *
185 185
 		 * @since 1.0.0
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 		 * @param int $map_width Width of map box, eg: gd_place.
188 188
 		 */
189 189
 		$map_width = apply_filters('geodir_change_map_width', $map_width);
190
-        ?>
190
+		?>
191 191
         <div id="catcher_<?php echo $map_canvas_name;?>"></div>
192 192
         <div class="stick_trigger_container">
193 193
             <div class="trigger_sticky triggeroff_sticky"></div>
@@ -221,15 +221,15 @@  discard block
 block discarded – undo
221 221
                 <?php if ($geodir_map_options['enable_jason_on_load']) { ?>
222 222
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_jason_enabled" value="1"/>
223 223
                 <?php } else {
224
-                    ?>
224
+					?>
225 225
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_jason_enabled" value="0"/>
226 226
                 <?php }
227 227
 
228
-                if (!$geodir_map_options['enable_text_search'] && !$geodir_map_options['enable_cat_filters'])
229
-                    $show_entire_cat_panel = "none";
230
-                else
231
-                    $show_entire_cat_panel = "''";
232
-                ?>
228
+				if (!$geodir_map_options['enable_text_search'] && !$geodir_map_options['enable_cat_filters'])
229
+					$show_entire_cat_panel = "none";
230
+				else
231
+					$show_entire_cat_panel = "''";
232
+				?>
233 233
 
234 234
                 <?php if ($geodir_map_options['enable_map_direction']) { ?>
235 235
                     <div class="gd-input-group gd-get-directions">
@@ -292,8 +292,8 @@  discard block
 block discarded – undo
292 292
                         <select id="travel-units" onchange="calcRoute('<?php echo $map_canvas_name; ?>')">
293 293
                             <option value="miles"><?php _e('Miles', 'geodirectory'); ?></option>
294 294
                             <option <?php if (get_option('geodir_search_dist_1') == 'km') {
295
-                                echo 'selected="selected"';
296
-                            } ?> value="kilometers"><?php _e('Kilometers', 'geodirectory'); ?></option>
295
+								echo 'selected="selected"';
296
+							} ?> value="kilometers"><?php _e('Kilometers', 'geodirectory'); ?></option>
297 297
                         </select>
298 298
                     </div>
299 299
 
@@ -305,12 +305,12 @@  discard block
 block discarded – undo
305 305
 				if (empty($geodir_default_map_search_pt))
306 306
 					$geodir_default_map_search_pt = 'gd_place';
307 307
 
308
-                global $gd_session;
309
-                $homemap_catlist_ptype = $gd_session->get('homemap_catlist_ptype');
308
+				global $gd_session;
309
+				$homemap_catlist_ptype = $gd_session->get('homemap_catlist_ptype');
310 310
 
311
-                if ($homemap_catlist_ptype) {
312
-                    $geodir_default_map_search_pt = $homemap_catlist_ptype;
313
-                }
311
+				if ($homemap_catlist_ptype) {
312
+					$geodir_default_map_search_pt = $homemap_catlist_ptype;
313
+				}
314 314
 
315 315
 				/**
316 316
 				 * Filter the post type to retrieve data for map
@@ -323,13 +323,13 @@  discard block
 block discarded – undo
323 323
 				?>
324 324
                 <div class="map-category-listing-main" style="display:<?php echo $show_entire_cat_panel;?>">
325 325
                     <?php
326
-                    $exclude_post_types = get_option('geodir_exclude_post_type_on_map');
327
-                    $geodir_available_pt_on_map = count(geodir_get_posttypes('array')) - count($exclude_post_types);
326
+					$exclude_post_types = get_option('geodir_exclude_post_type_on_map');
327
+					$geodir_available_pt_on_map = count(geodir_get_posttypes('array')) - count($exclude_post_types);
328 328
 					$map_cat_class = '';
329 329
 					if ($geodir_map_options['enable_post_type_filters']) {
330 330
 						$map_cat_class = $geodir_available_pt_on_map > 1 ? ' map-cat-ptypes' : ' map-cat-floor';
331 331
 					}
332
-                    ?>
332
+					?>
333 333
                     <div
334 334
                         class="map-category-listing<?php echo $map_cat_class;?>">
335 335
                         <div class="gd-trigger gd-triggeroff"><i class="fa fa-compress"></i><i class="fa fa-expand"></i></div>
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
                                 <?php if ($geodir_map_options['child_collapse']) { $child_collapse = "1"; ?>
348 348
                                     <input type="hidden" id="<?php echo $map_canvas_name; ?>_child_collapse" value="1"/>
349 349
                                 <?php } else {$child_collapse = "0";
350
-                                    ?>
350
+									?>
351 351
                                     <input type="hidden" id="<?php echo $map_canvas_name;?>_child_collapse" value="0"/>
352 352
                                 <?php } ?>
353 353
                                 <input type="hidden" id="<?php echo $map_canvas_name; ?>_cat_enabled" value="1"/>
@@ -369,17 +369,17 @@  discard block
 block discarded – undo
369 369
                 <!-- map-category-listings-->
370 370
 
371 371
                 <?php
372
-                if ($geodir_map_options['enable_location_filters']) {
372
+				if ($geodir_map_options['enable_location_filters']) {
373 373
 					$country = get_query_var('gd_country');
374 374
 					$region = get_query_var('gd_region');
375 375
 					$city = get_query_var('gd_city');
376 376
                     
377
-                    //fix for location/me page
378
-                    $country = $country != 'me' ? $country : '';
377
+					//fix for location/me page
378
+					$country = $country != 'me' ? $country : '';
379 379
 					$region = $region != 'me' ? $region : '';
380 380
 					$city = $country != 'me' ? $city : '';
381
-                    $gd_neighbourhood = isset($_REQUEST['gd_neighbourhood']) ? sanitize_text_field($_REQUEST['gd_neighbourhood']) : '';
382
-                    ?>
381
+					$gd_neighbourhood = isset($_REQUEST['gd_neighbourhood']) ? sanitize_text_field($_REQUEST['gd_neighbourhood']) : '';
382
+					?>
383 383
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_location_enabled" value="1"/>
384 384
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_country" name="gd_country"
385 385
                            value="<?php echo $country;?>"/>
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_neighbourhood" name="gd_neighbourhood"
391 391
                            value="<?php echo $gd_neighbourhood;?>"/>
392 392
                 <?php } else { //end of location filter
393
-                    ?>
393
+					?>
394 394
                     <input type="hidden" id="<?php echo $map_canvas_name;?>_location_enabled" value="0"/>
395 395
                 <?php }?>
396 396
 
@@ -401,9 +401,9 @@  discard block
 block discarded – undo
401 401
 
402 402
 
403 403
                 <?php if ($geodir_map_options['enable_post_type_filters']) {
404
-                    $post_types = geodir_get_posttypes('object');
405
-                    if (count((array)($post_types)) > 1) {
406
-                        ?>
404
+					$post_types = geodir_get_posttypes('object');
405
+					if (count((array)($post_types)) > 1) {
406
+						?>
407 407
                         <div class="map-places-listing" id="<?php echo $map_canvas_name;?>_posttype_menu"
408 408
                              style="max-width:<?php echo $map_width;?>!important;">
409 409
 
@@ -411,15 +411,15 @@  discard block
 block discarded – undo
411 411
                             <div class="geodir-map-posttype-list"><?php } ?>
412 412
                                 <ul class="clearfix place-list">
413 413
                                     <?php
414
-                                    $exclude_post_types = get_option('geodir_exclude_post_type_on_map');
414
+									$exclude_post_types = get_option('geodir_exclude_post_type_on_map');
415 415
 
416
-                                    foreach ($post_types as $post_type => $args) {
417
-                                        if (!in_array($post_type, $exclude_post_types)) {
418
-                                            $class = $map_search_pt == $post_type ? 'class="gd-map-search-pt"' : '';
416
+									foreach ($post_types as $post_type => $args) {
417
+										if (!in_array($post_type, $exclude_post_types)) {
418
+											$class = $map_search_pt == $post_type ? 'class="gd-map-search-pt"' : '';
419 419
 											echo '<li id="' . $post_type . '" ' . $class . '><a href="javascript:void(0);" onclick="jQuery(\'#' . $map_canvas_name . '_posttype\').val(\'' . $post_type . '\');build_map_ajax_search_param(\'' . $map_canvas_name . '\', true)">' . __($args->labels->name, 'geodirectory') . '</a></li>';
420
-                                        }
421
-                                    }
422
-                                    ?>
420
+										}
421
+									}
422
+									?>
423 423
                                 </ul>
424 424
                                 <?php if (isset($geodir_map_options['is_geodir_home_map_widget']) && $map_args['is_geodir_home_map_widget']) { ?>
425 425
                             </div><?php } ?>
@@ -433,8 +433,8 @@  discard block
 block discarded – undo
433 433
 
434 434
                         </div> <!-- map-places-listings-->
435 435
                     <?php }
436
-                } // end of post type filter if
437
-                ?>
436
+				} // end of post type filter if
437
+				?>
438 438
 
439 439
             </div>
440 440
         </div> <!--end of stick trigger container-->
@@ -449,8 +449,8 @@  discard block
 block discarded – undo
449 449
         </script>
450 450
         <?php
451 451
 
452
-        if (strpos($geodir_map_options['height'], 'vh')) {
453
-            ?>
452
+		if (strpos($geodir_map_options['height'], 'vh')) {
453
+			?>
454 454
             <script>
455 455
                 (function () {
456 456
                     var screenH = jQuery(window).height();
@@ -472,8 +472,8 @@  discard block
 block discarded – undo
472 472
 
473 473
         <?php
474 474
 
475
-        } elseif (strpos($geodir_map_options['height'], 'px')) {
476
-            ?>
475
+		} elseif (strpos($geodir_map_options['height'], 'px')) {
476
+			?>
477 477
             <script>
478 478
                 (function () {
479 479
                     var screenH = jQuery(window).height();
@@ -488,20 +488,20 @@  discard block
 block discarded – undo
488 488
                 }());
489 489
             </script>
490 490
         <?php
491
-        }
491
+		}
492 492
 
493
-        /**
494
-         * Action that runs after all the map code has been output;
495
-         *
496
-         * @since 1.5.3
497
-         *
498
-         * @param array $geodir_map_options Array of map settings.
499
-         * @param string $map_canvas_name The canvas name and ID for the map.
500
-         */
501
-        do_action('geodir_map_after_render',$geodir_map_options,$map_canvas_name);
493
+		/**
494
+		 * Action that runs after all the map code has been output;
495
+		 *
496
+		 * @since 1.5.3
497
+		 *
498
+		 * @param array $geodir_map_options Array of map settings.
499
+		 * @param string $map_canvas_name The canvas name and ID for the map.
500
+		 */
501
+		do_action('geodir_map_after_render',$geodir_map_options,$map_canvas_name);
502 502
 
503 503
 
504
-    endif; // Exclude posttypes if end
504
+	endif; // Exclude posttypes if end
505 505
 }
506 506
 
507 507
 /**
Please login to merge, or discard this patch.
Spacing   +63 added lines, -63 removed lines patch added patch discarded remove patch
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
 
130 130
     if (strpos($geodir_map_options['height'], '%') !== false || strpos($geodir_map_options['height'], 'px') !== false || strpos($geodir_map_options['height'], 'vh') !== false) {
131 131
     } else {
132
-        $geodir_map_options['height'] = $geodir_map_options['height'] . 'px';
132
+        $geodir_map_options['height'] = $geodir_map_options['height'].'px';
133 133
     }
134 134
 
135 135
     if (strpos($geodir_map_options['width'], '%') !== false || strpos($geodir_map_options['width'], 'px') !== false) {
136 136
     } else {
137
-        $geodir_map_options['width'] = $geodir_map_options['width'] . 'px';
137
+        $geodir_map_options['width'] = $geodir_map_options['width'].'px';
138 138
     }
139 139
 
140 140
     /**
@@ -166,10 +166,10 @@  discard block
 block discarded – undo
166 166
 	 */
167 167
 	$exclude_post_types = apply_filters("geodir_exclude_post_type_on_map_{$map_canvas_name}", get_option('geodir_exclude_post_type_on_map'));
168 168
 
169
-    if (count((array)$post_types) != count($exclude_post_types) || ($enable_jason_on_load)):
169
+    if (count((array) $post_types) != count($exclude_post_types) || ($enable_jason_on_load)):
170 170
         // Set default map options
171 171
 
172
-        wp_enqueue_script('geodir-map-widget', geodir_plugin_url() . '/geodirectory-functions/map-functions/js/map.min.js',array(),false,true);
172
+        wp_enqueue_script('geodir-map-widget', geodir_plugin_url().'/geodirectory-functions/map-functions/js/map.min.js', array(), false, true);
173 173
 
174 174
         wp_localize_script('geodir-map-widget', $map_canvas_name, $geodir_map_options);
175 175
 
@@ -188,41 +188,41 @@  discard block
 block discarded – undo
188 188
 		 */
189 189
 		$map_width = apply_filters('geodir_change_map_width', $map_width);
190 190
         ?>
191
-        <div id="catcher_<?php echo $map_canvas_name;?>"></div>
191
+        <div id="catcher_<?php echo $map_canvas_name; ?>"></div>
192 192
         <div class="stick_trigger_container">
193 193
             <div class="trigger_sticky triggeroff_sticky"></div>
194
-            <div class="top_banner_section geodir_map_container <?php echo $map_class_name;?>"
195
-                 id="sticky_map_<?php echo $map_canvas_name;?>"
196
-                 style="min-height:<?php echo $geodir_map_options['height'];?>;width:<?php echo $map_width;?>;">
194
+            <div class="top_banner_section geodir_map_container <?php echo $map_class_name; ?>"
195
+                 id="sticky_map_<?php echo $map_canvas_name; ?>"
196
+                 style="min-height:<?php echo $geodir_map_options['height']; ?>;width:<?php echo $map_width; ?>;">
197 197
 
198 198
                 <div class="map_background">
199 199
                     <div class="top_banner_section_in clearfix">
200
-                        <div class="<?php echo $map_canvas_name;?>_TopLeft TopLeft"><span class="triggermap" id="<?php echo $map_canvas_name;?>_triggermap" <?php if (!$geodir_map_options['enable_map_resize_button']) { ?> <?php }?>><i class="fa fa-arrows-alt"></i></span></div>
201
-                        <div class="<?php echo $map_canvas_name;?>_TopRight TopRight"></div>
202
-                        <div id="<?php echo $map_canvas_name;?>_wrapper" class="main_map_wrapper"
203
-                             style="height:<?php echo $geodir_map_options['height'];?>;width:<?php echo $map_width;?>;">
200
+                        <div class="<?php echo $map_canvas_name; ?>_TopLeft TopLeft"><span class="triggermap" id="<?php echo $map_canvas_name; ?>_triggermap" <?php if (!$geodir_map_options['enable_map_resize_button']) { ?> <?php }?>><i class="fa fa-arrows-alt"></i></span></div>
201
+                        <div class="<?php echo $map_canvas_name; ?>_TopRight TopRight"></div>
202
+                        <div id="<?php echo $map_canvas_name; ?>_wrapper" class="main_map_wrapper"
203
+                             style="height:<?php echo $geodir_map_options['height']; ?>;width:<?php echo $map_width; ?>;">
204 204
                             <!-- new map start -->
205 205
                             <div class="iprelative">
206
-                                <div class="geodir_marker_cluster" id="<?php echo $map_canvas_name;?>"
207
-                                     style="height:<?php echo $geodir_map_options['height'];?>;width:<?php echo $map_width;?>;"></div>
208
-                                <div id="<?php echo $map_canvas_name;?>_loading_div" class="loading_div"
209
-                                     style=" height:<?php echo $geodir_map_options['height'];?>;width:<?php echo $map_width;?>;"></div>
206
+                                <div class="geodir_marker_cluster" id="<?php echo $map_canvas_name; ?>"
207
+                                     style="height:<?php echo $geodir_map_options['height']; ?>;width:<?php echo $map_width; ?>;"></div>
208
+                                <div id="<?php echo $map_canvas_name; ?>_loading_div" class="loading_div"
209
+                                     style=" height:<?php echo $geodir_map_options['height']; ?>;width:<?php echo $map_width; ?>;"></div>
210 210
                                 <!--<div id="home_map_counter"></div>        -->
211
-                                <div id="<?php echo $map_canvas_name;?>_map_nofound"
211
+                                <div id="<?php echo $map_canvas_name; ?>_map_nofound"
212 212
                                      class="advmap_nofound"><?php echo MAP_NO_RESULTS; ?></div>
213
-                                <div id="<?php echo $map_canvas_name;?>_map_notloaded"
213
+                                <div id="<?php echo $map_canvas_name; ?>_map_notloaded"
214 214
                                      class="advmap_notloaded"><?php _e('<h3>Google Map Not Loaded</h3><p>Sorry, unable to load Google Maps API.', 'geodirectory'); ?></div>
215 215
                             </div>
216 216
                             <!-- new map end -->
217 217
                         </div>
218
-                        <div class="<?php echo $map_canvas_name;?>_BottomLeft BottomLeft"></div>
218
+                        <div class="<?php echo $map_canvas_name; ?>_BottomLeft BottomLeft"></div>
219 219
                     </div>
220 220
                 </div>
221 221
                 <?php if ($geodir_map_options['enable_jason_on_load']) { ?>
222
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_jason_enabled" value="1"/>
222
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_jason_enabled" value="1"/>
223 223
                 <?php } else {
224 224
                     ?>
225
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_jason_enabled" value="0"/>
225
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_jason_enabled" value="0"/>
226 226
                 <?php }
227 227
 
228 228
                 if (!$geodir_map_options['enable_text_search'] && !$geodir_map_options['enable_cat_filters'])
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
                       <div class="gd-input-group-addon gd-directions-right gd-mylocation-go"><input type="button" value="<?php _e('Get Directions', 'geodirectory'); ?>" class="<?php echo $map_canvas_name; ?>_getdirection" id="directions" onclick="calcRoute('<?php echo $map_canvas_name; ?>')" /></div>
243 243
                     </div>
244 244
                     <script>
245
-                        <?php if(geodir_is_page('detail')){?>
245
+                        <?php if (geodir_is_page('detail')) {?>
246 246
                         jQuery(function () {
247 247
                             gd_initialize_ac();
248 248
                         });
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
                                 // Create the autocomplete object, restricting the search
254 254
                                 // to geographical location types.
255 255
                                 autocomplete = new google.maps.places.Autocomplete(
256
-                                    /** @type {HTMLInputElement} */(document.getElementById('<?php echo $map_canvas_name;?>_fromAddress')),
256
+                                    /** @type {HTMLInputElement} */(document.getElementById('<?php echo $map_canvas_name; ?>_fromAddress')),
257 257
                                     {types: ['geocode']});
258 258
                                 // When the user selects an address from the dropdown,
259 259
                                 // populate the address fields in the form.
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
                                 
268 268
                                 if (window.gdMaps == 'osm') {
269 269
                                     window.setTimeout(function() {
270
-                                        calcRoute('<?php echo $map_canvas_name;?>');
270
+                                        calcRoute('<?php echo $map_canvas_name; ?>');
271 271
                                     }, 1000);
272 272
                                 }
273 273
                             }
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
 				 */
322 322
 				$map_search_pt = apply_filters('geodir_default_map_search_pt', $geodir_default_map_search_pt);
323 323
 				?>
324
-                <div class="map-category-listing-main" style="display:<?php echo $show_entire_cat_panel;?>">
324
+                <div class="map-category-listing-main" style="display:<?php echo $show_entire_cat_panel; ?>">
325 325
                     <?php
326 326
                     $exclude_post_types = get_option('geodir_exclude_post_type_on_map');
327 327
                     $geodir_available_pt_on_map = count(geodir_get_posttypes('array')) - count($exclude_post_types);
@@ -331,12 +331,12 @@  discard block
 block discarded – undo
331 331
 					}
332 332
                     ?>
333 333
                     <div
334
-                        class="map-category-listing<?php echo $map_cat_class;?>">
334
+                        class="map-category-listing<?php echo $map_cat_class; ?>">
335 335
                         <div class="gd-trigger gd-triggeroff"><i class="fa fa-compress"></i><i class="fa fa-expand"></i></div>
336
-                        <div id="<?php echo $map_canvas_name;?>_cat"
337
-                             class="<?php echo $map_canvas_name;?>_map_category  map_category"
338
-                             <?php if ($child_collapse){ ?>checked="checked" <?php }?>
339
-                             style="max-height:<?php echo $geodir_map_options['height'];?>;">
336
+                        <div id="<?php echo $map_canvas_name; ?>_cat"
337
+                             class="<?php echo $map_canvas_name; ?>_map_category  map_category"
338
+                             <?php if ($child_collapse) { ?>checked="checked" <?php }?>
339
+                             style="max-height:<?php echo $geodir_map_options['height']; ?>;">
340 340
                             <input
341 341
                                 onkeydown="if(event.keyCode == 13){build_map_ajax_search_param('<?php echo $map_canvas_name; ?>', false)}"
342 342
                                 type="text"
@@ -348,11 +348,11 @@  discard block
 block discarded – undo
348 348
                                     <input type="hidden" id="<?php echo $map_canvas_name; ?>_child_collapse" value="1"/>
349 349
                                 <?php } else {$child_collapse = "0";
350 350
                                     ?>
351
-                                    <input type="hidden" id="<?php echo $map_canvas_name;?>_child_collapse" value="0"/>
351
+                                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_child_collapse" value="0"/>
352 352
                                 <?php } ?>
353 353
                                 <input type="hidden" id="<?php echo $map_canvas_name; ?>_cat_enabled" value="1"/>
354 354
                                 <div class="geodir_toggle">
355
-                                    <?php echo home_map_taxonomy_walker(array($map_search_pt.'category'),0,true,0,$map_canvas_name,$child_collapse,true); ?>
355
+                                    <?php echo home_map_taxonomy_walker(array($map_search_pt.'category'), 0, true, 0, $map_canvas_name, $child_collapse, true); ?>
356 356
                                     <script>jQuery( document ).ready(function() {
357 357
                                             geodir_show_sub_cat_collapse_button();
358 358
                                         });</script>
@@ -380,21 +380,21 @@  discard block
 block discarded – undo
380 380
 					$city = $country != 'me' ? $city : '';
381 381
                     $gd_neighbourhood = isset($_REQUEST['gd_neighbourhood']) ? sanitize_text_field($_REQUEST['gd_neighbourhood']) : '';
382 382
                     ?>
383
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_location_enabled" value="1"/>
384
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_country" name="gd_country"
385
-                           value="<?php echo $country;?>"/>
386
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_region" name="gd_region"
387
-                           value="<?php echo $region;?>"/>
388
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_city" name="gd_city"
389
-                           value="<?php echo $city;?>"/>
390
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_neighbourhood" name="gd_neighbourhood"
391
-                           value="<?php echo $gd_neighbourhood;?>"/>
383
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_location_enabled" value="1"/>
384
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_country" name="gd_country"
385
+                           value="<?php echo $country; ?>"/>
386
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_region" name="gd_region"
387
+                           value="<?php echo $region; ?>"/>
388
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_city" name="gd_city"
389
+                           value="<?php echo $city; ?>"/>
390
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_neighbourhood" name="gd_neighbourhood"
391
+                           value="<?php echo $gd_neighbourhood; ?>"/>
392 392
                 <?php } else { //end of location filter
393 393
                     ?>
394
-                    <input type="hidden" id="<?php echo $map_canvas_name;?>_location_enabled" value="0"/>
394
+                    <input type="hidden" id="<?php echo $map_canvas_name; ?>_location_enabled" value="0"/>
395 395
                 <?php }?>
396 396
 
397
-                <input type="hidden" id="<?php echo $map_canvas_name;?>_posttype" name="gd_posttype" value="<?php echo $map_search_pt;?>"/>
397
+                <input type="hidden" id="<?php echo $map_canvas_name; ?>_posttype" name="gd_posttype" value="<?php echo $map_search_pt; ?>"/>
398 398
 
399 399
                 <input type="hidden" name="limitstart" value=""/>
400 400
 
@@ -402,10 +402,10 @@  discard block
 block discarded – undo
402 402
 
403 403
                 <?php if ($geodir_map_options['enable_post_type_filters']) {
404 404
                     $post_types = geodir_get_posttypes('object');
405
-                    if (count((array)($post_types)) > 1) {
405
+                    if (count((array) ($post_types)) > 1) {
406 406
                         ?>
407
-                        <div class="map-places-listing" id="<?php echo $map_canvas_name;?>_posttype_menu"
408
-                             style="max-width:<?php echo $map_width;?>!important;">
407
+                        <div class="map-places-listing" id="<?php echo $map_canvas_name; ?>_posttype_menu"
408
+                             style="max-width:<?php echo $map_width; ?>!important;">
409 409
 
410 410
                             <?php if (isset($geodir_map_options['is_geodir_home_map_widget']) && $map_args['is_geodir_home_map_widget']) { ?>
411 411
                             <div class="geodir-map-posttype-list"><?php } ?>
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
                                     foreach ($post_types as $post_type => $args) {
417 417
                                         if (!in_array($post_type, $exclude_post_types)) {
418 418
                                             $class = $map_search_pt == $post_type ? 'class="gd-map-search-pt"' : '';
419
-											echo '<li id="' . $post_type . '" ' . $class . '><a href="javascript:void(0);" onclick="jQuery(\'#' . $map_canvas_name . '_posttype\').val(\'' . $post_type . '\');build_map_ajax_search_param(\'' . $map_canvas_name . '\', true)">' . __($args->labels->name, 'geodirectory') . '</a></li>';
419
+											echo '<li id="'.$post_type.'" '.$class.'><a href="javascript:void(0);" onclick="jQuery(\'#'.$map_canvas_name.'_posttype\').val(\''.$post_type.'\');build_map_ajax_search_param(\''.$map_canvas_name.'\', true)">'.__($args->labels->name, 'geodirectory').'</a></li>';
420 420
                                         }
421 421
                                     }
422 422
                                     ?>
@@ -441,9 +441,9 @@  discard block
 block discarded – undo
441 441
         <script type="text/javascript">
442 442
 
443 443
             jQuery(document).ready(function () {
444
-                //initMap('<?php echo $map_canvas_name;?>'); // depreciated, no need to load this twice
445
-                build_map_ajax_search_param('<?php echo $map_canvas_name;?>', false);
446
-                map_sticky('<?php echo $map_canvas_name;?>');
444
+                //initMap('<?php echo $map_canvas_name; ?>'); // depreciated, no need to load this twice
445
+                build_map_ajax_search_param('<?php echo $map_canvas_name; ?>', false);
446
+                map_sticky('<?php echo $map_canvas_name; ?>');
447 447
             });
448 448
 
449 449
         </script>
@@ -454,18 +454,18 @@  discard block
 block discarded – undo
454 454
             <script>
455 455
                 (function () {
456 456
                     var screenH = jQuery(window).height();
457
-                    var heightVH = "<?php echo str_replace("vh", "", $geodir_map_options['height']);?>";
457
+                    var heightVH = "<?php echo str_replace("vh", "", $geodir_map_options['height']); ?>";
458 458
 
459 459
                     var ptypeH = '';
460
-                    if (jQuery("#<?php echo $map_canvas_name;?>_posttype_menu").length) {
461
-                        ptypeH = jQuery("#<?php echo $map_canvas_name;?>_posttype_menu").outerHeight();
460
+                    if (jQuery("#<?php echo $map_canvas_name; ?>_posttype_menu").length) {
461
+                        ptypeH = jQuery("#<?php echo $map_canvas_name; ?>_posttype_menu").outerHeight();
462 462
                     }
463 463
 
464
-                    jQuery("#sticky_map_<?php echo $map_canvas_name;?>").css("min-height", screenH * (heightVH / 100) + 'px');
465
-                    jQuery("#<?php echo $map_canvas_name;?>_wrapper").height(screenH * (heightVH / 100) + 'px');
466
-                    jQuery("#<?php echo $map_canvas_name;?>").height(screenH * (heightVH / 100) + 'px');
467
-                    jQuery("#<?php echo $map_canvas_name;?>_loading_div").height(screenH * (heightVH / 100) + 'px');
468
-                    jQuery("#<?php echo $map_canvas_name;?>_cat").css("max-height", (screenH * (heightVH / 100)) - ptypeH + 'px');
464
+                    jQuery("#sticky_map_<?php echo $map_canvas_name; ?>").css("min-height", screenH * (heightVH / 100) + 'px');
465
+                    jQuery("#<?php echo $map_canvas_name; ?>_wrapper").height(screenH * (heightVH / 100) + 'px');
466
+                    jQuery("#<?php echo $map_canvas_name; ?>").height(screenH * (heightVH / 100) + 'px');
467
+                    jQuery("#<?php echo $map_canvas_name; ?>_loading_div").height(screenH * (heightVH / 100) + 'px');
468
+                    jQuery("#<?php echo $map_canvas_name; ?>_cat").css("max-height", (screenH * (heightVH / 100)) - ptypeH + 'px');
469 469
 
470 470
                 }());
471 471
             </script>
@@ -477,13 +477,13 @@  discard block
 block discarded – undo
477 477
             <script>
478 478
                 (function () {
479 479
                     var screenH = jQuery(window).height();
480
-                    var heightVH = "<?php echo str_replace("px", "", $geodir_map_options['height']);?>";
480
+                    var heightVH = "<?php echo str_replace("px", "", $geodir_map_options['height']); ?>";
481 481
                     var ptypeH = '';
482
-                    if (jQuery("#<?php echo $map_canvas_name;?>_posttype_menu").length) {
483
-                        ptypeH = jQuery("#<?php echo $map_canvas_name;?>_posttype_menu").outerHeight();
482
+                    if (jQuery("#<?php echo $map_canvas_name; ?>_posttype_menu").length) {
483
+                        ptypeH = jQuery("#<?php echo $map_canvas_name; ?>_posttype_menu").outerHeight();
484 484
                     }
485 485
 
486
-                    jQuery("#<?php echo $map_canvas_name;?>_cat").css("max-height", heightVH - ptypeH + 'px');
486
+                    jQuery("#<?php echo $map_canvas_name; ?>_cat").css("max-height", heightVH - ptypeH + 'px');
487 487
 
488 488
                 }());
489 489
             </script>
@@ -498,7 +498,7 @@  discard block
 block discarded – undo
498 498
          * @param array $geodir_map_options Array of map settings.
499 499
          * @param string $map_canvas_name The canvas name and ID for the map.
500 500
          */
501
-        do_action('geodir_map_after_render',$geodir_map_options,$map_canvas_name);
501
+        do_action('geodir_map_after_render', $geodir_map_options, $map_canvas_name);
502 502
 
503 503
 
504 504
     endif; // Exclude posttypes if end
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  echo $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  echo $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);
@@ -412,11 +441,17 @@  discard block
 block discarded – undo
412 441
         ?>
413 442
 
414 443
         <div id="<?php echo $cf['name'];?>_row"
415
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
444
+             class="<?php if ($cf['is_required']) {
445
+	echo 'required_field';
446
+}
447
+?> geodir_form_row clearfix gd-fieldset-details">
416 448
             <label>
417 449
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
418 450
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
419
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
451
+                <?php if ($cf['is_required']) {
452
+	echo '<span>*</span>';
453
+}
454
+?>
420 455
             </label>
421 456
             <?php if ($value != '1') {
422 457
                 $value = '0';
@@ -476,11 +511,17 @@  discard block
 block discarded – undo
476 511
         ?>
477 512
 
478 513
         <div id="<?php echo $cf['name'];?>_row"
479
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
514
+             class="<?php if ($cf['is_required']) {
515
+	echo 'required_field';
516
+}
517
+?> geodir_form_row clearfix gd-fieldset-details">
480 518
             <label>
481 519
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
482 520
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
483
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
521
+                <?php if ($cf['is_required']) {
522
+	echo '<span>*</span>';
523
+}
524
+?>
484 525
             </label><?php
485 526
 
486 527
 
@@ -548,11 +589,17 @@  discard block
 block discarded – undo
548 589
 
549 590
         ?>
550 591
         <div id="<?php echo $cf['name'];?>_row"
551
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
592
+             class="<?php if ($cf['is_required']) {
593
+	echo 'required_field';
594
+}
595
+?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
552 596
             <label>
553 597
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
554 598
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
555
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
599
+                <?php if ($cf['is_required']) {
600
+	echo '<span>*</span>';
601
+}
602
+?>
556 603
             </label>
557 604
             <?php
558 605
             $option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
@@ -629,11 +676,17 @@  discard block
 block discarded – undo
629 676
         }
630 677
         ?>
631 678
         <div id="<?php echo $cf['name']; ?>_row"
632
-             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
679
+             class="<?php if ($cf['is_required']) {
680
+	echo 'required_field';
681
+}
682
+?> geodir_form_row clearfix gd-fieldset-details">
633 683
             <label>
634 684
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
635 685
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
636
-                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
686
+                <?php if ($cf['is_required']) {
687
+	echo '<span>*</span>';
688
+}
689
+?>
637 690
             </label>
638 691
             <input type="hidden" name="gd_field_<?php echo $cf['name']; ?>" value="1"/>
639 692
             <?php if ($multi_display == 'select') { ?>
@@ -746,11 +799,17 @@  discard block
 block discarded – undo
746 799
         ?>
747 800
 
748 801
         <div id="<?php echo $cf['name']; ?>_row"
749
-             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
802
+             class="<?php if ($cf['is_required']) {
803
+	echo 'required_field';
804
+}
805
+?> geodir_form_row clearfix gd-fieldset-details">
750 806
             <label>
751 807
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
752 808
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
753
-                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
809
+                <?php if ($cf['is_required']) {
810
+	echo '<span>*</span>';
811
+}
812
+?>
754 813
             </label>
755 814
 
756 815
             <?php $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10); ?>
@@ -810,8 +869,9 @@  discard block
 block discarded – undo
810 869
         $extra_fields = unserialize($cf['extra_fields']);
811 870
         $name = $cf['name'];
812 871
 
813
-        if ($extra_fields['date_format'] == '')
814
-            $extra_fields['date_format'] = 'yy-mm-dd';
872
+        if ($extra_fields['date_format'] == '') {
873
+                    $extra_fields['date_format'] = 'yy-mm-dd';
874
+        }
815 875
 
816 876
         $date_format = $extra_fields['date_format'];
817 877
         $jquery_date_format  = $date_format;
@@ -825,7 +885,7 @@  discard block
 block discarded – undo
825 885
             $replace = array('d','j','l','m','n','F','Y');//PHP date format
826 886
 
827 887
             $date_format = str_replace($search, $replace, $date_format);
828
-        }else{
888
+        } else{
829 889
             $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
830 890
         }
831 891
 
@@ -860,12 +920,18 @@  discard block
 block discarded – undo
860 920
 
861 921
         </script>
862 922
         <div id="<?php echo $name;?>_row"
863
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
923
+             class="<?php if ($cf['is_required']) {
924
+	echo 'required_field';
925
+}
926
+?> geodir_form_row clearfix gd-fieldset-details">
864 927
             <label>
865 928
 
866 929
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
867 930
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
868
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
931
+                <?php if ($cf['is_required']) {
932
+	echo '<span>*</span>';
933
+}
934
+?>
869 935
             </label>
870 936
 
871 937
             <input field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" id="<?php echo $name;?>"
@@ -919,8 +985,9 @@  discard block
 block discarded – undo
919 985
 
920 986
         $name = $cf['name'];
921 987
 
922
-        if ($value != '')
923
-            $value = date('H:i', strtotime($value));
988
+        if ($value != '') {
989
+                    $value = date('H:i', strtotime($value));
990
+        }
924 991
         ?>
925 992
         <script type="text/javascript">
926 993
             jQuery(document).ready(function () {
@@ -933,12 +1000,18 @@  discard block
 block discarded – undo
933 1000
             });
934 1001
         </script>
935 1002
         <div id="<?php echo $name;?>_row"
936
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1003
+             class="<?php if ($cf['is_required']) {
1004
+	echo 'required_field';
1005
+}
1006
+?> geodir_form_row clearfix gd-fieldset-details">
937 1007
             <label>
938 1008
 
939 1009
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
940 1010
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
941
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
1011
+                <?php if ($cf['is_required']) {
1012
+	echo '<span>*</span>';
1013
+}
1014
+?>
942 1015
             </label>
943 1016
             <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>"
944 1017
                    id="<?php echo $name;?>" value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/>
@@ -1030,17 +1103,27 @@  discard block
 block discarded – undo
1030 1103
         }
1031 1104
 
1032 1105
         $location = geodir_get_default_location();
1033
-        if (empty($city)) $city = isset($location->city) ? $location->city : '';
1034
-        if (empty($region)) $region = isset($location->region) ? $location->region : '';
1035
-        if (empty($country)) $country = isset($location->country) ? $location->country : '';
1106
+        if (empty($city)) {
1107
+        	$city = isset($location->city) ? $location->city : '';
1108
+        }
1109
+        if (empty($region)) {
1110
+        	$region = isset($location->region) ? $location->region : '';
1111
+        }
1112
+        if (empty($country)) {
1113
+        	$country = isset($location->country) ? $location->country : '';
1114
+        }
1036 1115
 
1037 1116
         $lat_lng_blank = false;
1038 1117
         if (empty($lat) && empty($lng)) {
1039 1118
             $lat_lng_blank = true;
1040 1119
         }
1041 1120
 
1042
-        if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : '';
1043
-        if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : '';
1121
+        if (empty($lat)) {
1122
+        	$lat = isset($location->city_latitude) ? $location->city_latitude : '';
1123
+        }
1124
+        if (empty($lng)) {
1125
+        	$lng = isset($location->city_longitude) ? $location->city_longitude : '';
1126
+        }
1044 1127
 
1045 1128
         /**
1046 1129
          * Filter the default latitude.
@@ -1064,10 +1147,16 @@  discard block
 block discarded – undo
1064 1147
         ?>
1065 1148
 
1066 1149
         <div id="geodir_<?php echo $prefix . 'address';?>_row"
1067
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1150
+             class="<?php if ($is_required) {
1151
+	echo 'required_field';
1152
+}
1153
+?> geodir_form_row clearfix gd-fieldset-details">
1068 1154
             <label>
1069 1155
                 <?php _e($address_title, 'geodirectory'); ?>
1070
-                <?php if ($is_required) echo '<span>*</span>';?>
1156
+                <?php if ($is_required) {
1157
+	echo '<span>*</span>';
1158
+}
1159
+?>
1071 1160
             </label>
1072 1161
             <input type="text" field_type="<?php echo $type;?>" name="<?php echo $prefix . 'address';?>"
1073 1162
                    id="<?php echo $prefix . 'address';?>" class="geodir_textfield"
@@ -1128,10 +1217,16 @@  discard block
 block discarded – undo
1128 1217
             /* show lat lng */
1129 1218
             $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1130 1219
             <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row"
1131
-                 class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1220
+                 class="<?php if ($is_required) {
1221
+	echo 'required_field';
1222
+}
1223
+?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1132 1224
                 <label>
1133 1225
                     <?php echo PLACE_ADDRESS_LAT; ?>
1134
-                    <?php if ($is_required) echo '<span>*</span>'; ?>
1226
+                    <?php if ($is_required) {
1227
+	echo '<span>*</span>';
1228
+}
1229
+?>
1135 1230
                 </label>
1136 1231
                 <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'latitude'; ?>"
1137 1232
                        id="<?php echo $prefix . 'latitude'; ?>" class="geodir_textfield"
@@ -1143,10 +1238,16 @@  discard block
 block discarded – undo
1143 1238
             </div>
1144 1239
 
1145 1240
             <div id="geodir_<?php echo $prefix . 'longitude'; ?>_row"
1146
-                 class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1241
+                 class="<?php if ($is_required) {
1242
+	echo 'required_field';
1243
+}
1244
+?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1147 1245
                 <label>
1148 1246
                     <?php echo PLACE_ADDRESS_LNG; ?>
1149
-                    <?php if ($is_required) echo '<span>*</span>'; ?>
1247
+                    <?php if ($is_required) {
1248
+	echo '<span>*</span>';
1249
+}
1250
+?>
1150 1251
                 </label>
1151 1252
                 <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'longitude'; ?>"
1152 1253
                        id="<?php echo $prefix . 'longitude'; ?>" class="geodir_textfield"
@@ -1250,11 +1351,17 @@  discard block
 block discarded – undo
1250 1351
             $value = '';
1251 1352
         } ?>
1252 1353
         <div id="<?php echo $name;?>_row"
1253
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1354
+             class="<?php if ($is_required) {
1355
+	echo 'required_field';
1356
+}
1357
+?> geodir_form_row clearfix gd-fieldset-details">
1254 1358
             <label>
1255 1359
                 <?php $site_title = __($site_title, 'geodirectory');
1256 1360
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1257
-                <?php if ($is_required) echo '<span>*</span>';?>
1361
+                <?php if ($is_required) {
1362
+	echo '<span>*</span>';
1363
+}
1364
+?>
1258 1365
             </label>
1259 1366
 
1260 1367
             <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
@@ -1288,8 +1395,9 @@  discard block
 block discarded – undo
1288 1395
                     $post_cat = implode(",", $post_cat[$name]);
1289 1396
 
1290 1397
                 } else {
1291
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
1292
-                        $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1398
+                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
1399
+                                            $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1400
+                    }
1293 1401
                 }
1294 1402
 
1295 1403
 
@@ -1327,21 +1435,24 @@  discard block
 block discarded – undo
1327 1435
 
1328 1436
                         $cat_display == '';
1329 1437
                         $multiple = '';
1330
-                        if ($cat_display == 'multiselect')
1331
-                            $multiple = 'multiple="multiple"';
1438
+                        if ($cat_display == 'multiselect') {
1439
+                                                    $multiple = 'multiple="multiple"';
1440
+                        }
1332 1441
 
1333 1442
                         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') . '">';
1334 1443
 
1335 1444
 
1336
-                        if ($cat_display == 'select')
1337
-                            echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1445
+                        if ($cat_display == 'select') {
1446
+                                                    echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1447
+                        }
1338 1448
 
1339 1449
                     }
1340 1450
 
1341 1451
                     echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0);
1342 1452
 
1343
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
1344
-                        echo '</select>';
1453
+                    if ($cat_display == 'select' || $cat_display == 'multiselect') {
1454
+                                            echo '</select>';
1455
+                    }
1345 1456
 
1346 1457
                 } else {
1347 1458
 
@@ -1413,18 +1524,23 @@  discard block
 block discarded – undo
1413 1524
 
1414 1525
             $file_value = trim($value, ","); // this will be initial value of the above form field. Image urls.
1415 1526
 
1416
-        } else
1417
-            $file_value = '';
1527
+        } else {
1528
+                    $file_value = '';
1529
+        }
1418 1530
 
1419
-        if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple'])
1420
-            $file_multiple = true; // allow multiple files upload
1421
-        else
1422
-            $file_multiple = false;
1531
+        if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple']) {
1532
+                    $file_multiple = true;
1533
+        }
1534
+        // allow multiple files upload
1535
+        else {
1536
+                    $file_multiple = false;
1537
+        }
1423 1538
 
1424
-        if (isset($extra_fields['image_limit']) && $extra_fields['image_limit'])
1425
-            $file_image_limit = $extra_fields['image_limit'];
1426
-        else
1427
-            $file_image_limit = 1;
1539
+        if (isset($extra_fields['image_limit']) && $extra_fields['image_limit']) {
1540
+                    $file_image_limit = $extra_fields['image_limit'];
1541
+        } else {
1542
+                    $file_image_limit = 1;
1543
+        }
1428 1544
 
1429 1545
         $file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1430 1546
 
@@ -1432,8 +1548,9 @@  discard block
 block discarded – undo
1432 1548
 
1433 1549
         if (!empty($file_value)) {
1434 1550
             $curImages = explode(',', $file_value);
1435
-            if (!empty($curImages))
1436
-                $file_totImg = count($curImages);
1551
+            if (!empty($curImages)) {
1552
+                            $file_totImg = count($curImages);
1553
+            }
1437 1554
         }
1438 1555
 
1439 1556
         $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']) : '';
@@ -1448,12 +1565,18 @@  discard block
 block discarded – undo
1448 1565
         ?>
1449 1566
 
1450 1567
         <div id="<?php echo $name;?>_row"
1451
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1568
+             class="<?php if ($is_required) {
1569
+	echo 'required_field';
1570
+}
1571
+?> geodir_form_row clearfix gd-fieldset-details">
1452 1572
 
1453 1573
             <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;">
1454 1574
                 <label
1455 1575
                     style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory');
1456
-                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1576
+                    echo $site_title; ?><?php if ($is_required) {
1577
+                    	echo '<span>*</span>';
1578
+                    }
1579
+                    ?></label>
1457 1580
                 <input class="geodir-custom-file-upload" field_type="file" type="hidden"
1458 1581
                        name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>"
1459 1582
                        value="<?php echo esc_attr($file_value); ?>"/>
Please login to merge, or discard this patch.
Indentation   +709 added lines, -709 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'], 'geodirectory' ); ?>
43 43
             <?php if ( $cf['desc'] != '' ) {
44
-                echo '<small>( ' . __( $cf['desc'], 'geodirectory' ) . ' )</small>';
45
-            } ?></h5>
44
+				echo '<small>( ' . __( $cf['desc'], 'geodirectory' ) . ' )</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(stripslashes($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 == stripslashes($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 == stripslashes($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,63 +643,63 @@  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
-                                if (!is_array($value) && $value != '') {
664
-                                    $value = trim($value);
665
-                                }
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
+								if (!is_array($value) && $value != '') {
664
+									$value = trim($value);
665
+								}
666 666
                                 
667
-                                $option_label = isset($option_row['label']) ? $option_row['label'] : '';
668
-                                $option_value = isset($option_row['value']) ? $option_row['value'] : '';
669
-                                $selected = $option_value == $value ? 'selected="selected"' : '';
670
-                                $selected = '';
671
-                                $checked = '';
672
-
673
-                                if ((!is_array($value) && trim($value) != '') || (is_array($value) && !empty($value))) {
674
-                                    if (!is_array($value)) {
675
-                                        $value_array = explode(',', $value);
676
-                                    } else {
677
-                                        $value_array = $value;
678
-                                    }
667
+								$option_label = isset($option_row['label']) ? $option_row['label'] : '';
668
+								$option_value = isset($option_row['value']) ? $option_row['value'] : '';
669
+								$selected = $option_value == $value ? 'selected="selected"' : '';
670
+								$selected = '';
671
+								$checked = '';
672
+
673
+								if ((!is_array($value) && trim($value) != '') || (is_array($value) && !empty($value))) {
674
+									if (!is_array($value)) {
675
+										$value_array = explode(',', $value);
676
+									} else {
677
+										$value_array = $value;
678
+									}
679 679
                                     
680
-                                    $value_array = stripslashes_deep($value_array);
680
+									$value_array = stripslashes_deep($value_array);
681 681
 
682
-                                    if (is_array($value_array)) {
683
-                                        $value_array = array_map('trim', $value_array);
682
+									if (is_array($value_array)) {
683
+										$value_array = array_map('trim', $value_array);
684 684
                                         
685
-                                        if (in_array($option_value, $value_array)) {
686
-                                            $selected = 'selected="selected"';
687
-                                            $checked = 'checked="checked"';
688
-                                        }
689
-                                    }
690
-                                }
691
-
692
-                                if ($multi_display == 'select') {
693
-                                    $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
694
-                                } else {
695
-                                    $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>';
696
-                                }
697
-                            }
698
-                        }
699
-                    }
700
-                    echo $select_options;
701
-
702
-                    if ($multi_display == 'select') { ?></select></div>
685
+										if (in_array($option_value, $value_array)) {
686
+											$selected = 'selected="selected"';
687
+											$checked = 'checked="checked"';
688
+										}
689
+									}
690
+								}
691
+
692
+								if ($multi_display == 'select') {
693
+									$select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
694
+								} else {
695
+									$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>';
696
+								}
697
+							}
698
+						}
699
+					}
700
+					echo $select_options;
701
+
702
+					if ($multi_display == 'select') { ?></select></div>
703 703
         <?php } else { ?></ul><?php } ?>
704 704
             <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
705 705
             <?php if ($cf['is_required']) { ?>
@@ -707,10 +707,10 @@  discard block
 block discarded – undo
707 707
             <?php } ?>
708 708
         </div>
709 709
         <?php
710
-        $html = ob_get_clean();
711
-    }
710
+		$html = ob_get_clean();
711
+	}
712 712
 
713
-    return $html;
713
+	return $html;
714 714
 }
715 715
 add_filter('geodir_custom_field_input_multiselect','geodir_cfi_multiselect',10,2);
716 716
 
@@ -726,32 +726,32 @@  discard block
 block discarded – undo
726 726
  */
727 727
 function geodir_cfi_html($html,$cf){
728 728
 
729
-    $html_var = $cf['htmlvar_name'];
729
+	$html_var = $cf['htmlvar_name'];
730 730
 
731
-    // Check if there is a custom field specific filter.
732
-    if(has_filter("geodir_custom_field_input_html_{$html_var}")){
733
-        /**
734
-         * Filter the html html by individual custom field.
735
-         *
736
-         * @param string $html The html to filter.
737
-         * @param array $cf The custom field array.
738
-         * @since 1.6.6
739
-         */
740
-        $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf);
741
-    }
731
+	// Check if there is a custom field specific filter.
732
+	if(has_filter("geodir_custom_field_input_html_{$html_var}")){
733
+		/**
734
+		 * Filter the html html by individual custom field.
735
+		 *
736
+		 * @param string $html The html to filter.
737
+		 * @param array $cf The custom field array.
738
+		 * @since 1.6.6
739
+		 */
740
+		$html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf);
741
+	}
742 742
 
743
-    // If no html then we run the standard output.
744
-    if(empty($html)) {
743
+	// If no html then we run the standard output.
744
+	if(empty($html)) {
745 745
 
746
-        ob_start(); // Start  buffering;
747
-        $value = geodir_get_cf_value($cf);
748
-        ?>
746
+		ob_start(); // Start  buffering;
747
+		$value = geodir_get_cf_value($cf);
748
+		?>
749 749
 
750 750
         <div id="<?php echo $cf['name']; ?>_row"
751 751
              class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
752 752
             <label>
753 753
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
754
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
754
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
755 755
                 <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
756 756
             </label>
757 757
 
@@ -769,10 +769,10 @@  discard block
 block discarded – undo
769 769
         </div>
770 770
 
771 771
         <?php
772
-        $html = ob_get_clean();
773
-    }
772
+		$html = ob_get_clean();
773
+	}
774 774
 
775
-    return $html;
775
+	return $html;
776 776
 }
777 777
 add_filter('geodir_custom_field_input_html','geodir_cfi_html',10,2);
778 778
 
@@ -789,68 +789,68 @@  discard block
 block discarded – undo
789 789
  */
790 790
 function geodir_cfi_datepicker($html,$cf){
791 791
 
792
-    $html_var = $cf['htmlvar_name'];
792
+	$html_var = $cf['htmlvar_name'];
793 793
 
794
-    // Check if there is a custom field specific filter.
795
-    if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){
796
-        /**
797
-         * Filter the datepicker html by individual custom field.
798
-         *
799
-         * @param string $html The html to filter.
800
-         * @param array $cf The custom field array.
801
-         * @since 1.6.6
802
-         */
803
-        $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf);
804
-    }
794
+	// Check if there is a custom field specific filter.
795
+	if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){
796
+		/**
797
+		 * Filter the datepicker html by individual custom field.
798
+		 *
799
+		 * @param string $html The html to filter.
800
+		 * @param array $cf The custom field array.
801
+		 * @since 1.6.6
802
+		 */
803
+		$html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf);
804
+	}
805 805
 
806
-    // If no html then we run the standard output.
807
-    if(empty($html)) {
806
+	// If no html then we run the standard output.
807
+	if(empty($html)) {
808 808
 
809
-        ob_start(); // Start  buffering;
810
-        $value = geodir_get_cf_value($cf);
809
+		ob_start(); // Start  buffering;
810
+		$value = geodir_get_cf_value($cf);
811 811
 
812
-        $extra_fields = unserialize($cf['extra_fields']);
813
-        $name = $cf['name'];
812
+		$extra_fields = unserialize($cf['extra_fields']);
813
+		$name = $cf['name'];
814 814
 
815
-        if ($extra_fields['date_format'] == '')
816
-            $extra_fields['date_format'] = 'yy-mm-dd';
815
+		if ($extra_fields['date_format'] == '')
816
+			$extra_fields['date_format'] = 'yy-mm-dd';
817 817
 
818
-        $date_format = $extra_fields['date_format'];
819
-        $jquery_date_format  = $date_format;
818
+		$date_format = $extra_fields['date_format'];
819
+		$jquery_date_format  = $date_format;
820 820
 
821 821
 
822
-        // check if we need to change the format or not
823
-        $date_format_len = strlen(str_replace(' ', '', $date_format));
824
-        if($date_format_len>5){// if greater then 5 then it's the old style format.
822
+		// check if we need to change the format or not
823
+		$date_format_len = strlen(str_replace(' ', '', $date_format));
824
+		if($date_format_len>5){// if greater then 5 then it's the old style format.
825 825
 
826
-            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
827
-            $replace = array('d','j','l','m','n','F','Y');//PHP date format
826
+			$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
827
+			$replace = array('d','j','l','m','n','F','Y');//PHP date format
828 828
 
829
-            $date_format = str_replace($search, $replace, $date_format);
830
-        }else{
831
-            $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
832
-        }
829
+			$date_format = str_replace($search, $replace, $date_format);
830
+		}else{
831
+			$jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
832
+		}
833 833
 
834
-        if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty
835
-        if($value && !isset($_REQUEST['backandedit'])) {
836
-            //$time = strtotime($value);
837
-            //$value = date_i18n($date_format, $time);
838
-        }
839
-        $value = geodir_date($value, 'Y-m-d', $date_format);
834
+		if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty
835
+		if($value && !isset($_REQUEST['backandedit'])) {
836
+			//$time = strtotime($value);
837
+			//$value = date_i18n($date_format, $time);
838
+		}
839
+		$value = geodir_date($value, 'Y-m-d', $date_format);
840 840
 
841
-        ?>
841
+		?>
842 842
         <script type="text/javascript">
843 843
 
844 844
             jQuery(function () {
845 845
 
846 846
                 jQuery("#<?php echo $cf['name'];?>").datepicker({changeMonth: true, changeYear: true <?php
847
-                    /**
848
-                     * Used to add extra option to datepicker per custom field.
849
-                     *
850
-                     * @since 1.5.7
851
-                     * @param string $name The custom field name.
852
-                     */
853
-                    echo apply_filters("gd_datepicker_extra_{$name}",'');?>});
847
+					/**
848
+					 * Used to add extra option to datepicker per custom field.
849
+					 *
850
+					 * @since 1.5.7
851
+					 * @param string $name The custom field name.
852
+					 */
853
+					echo apply_filters("gd_datepicker_extra_{$name}",'');?>});
854 854
 
855 855
                 jQuery("#<?php echo $name;?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format;?>');
856 856
 
@@ -866,7 +866,7 @@  discard block
 block discarded – undo
866 866
             <label>
867 867
 
868 868
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
869
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
869
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
870 870
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
871 871
             </label>
872 872
 
@@ -880,10 +880,10 @@  discard block
 block discarded – undo
880 880
         </div>
881 881
 
882 882
         <?php
883
-        $html = ob_get_clean();
884
-    }
883
+		$html = ob_get_clean();
884
+	}
885 885
 
886
-    return $html;
886
+	return $html;
887 887
 }
888 888
 add_filter('geodir_custom_field_input_datepicker','geodir_cfi_datepicker',10,2);
889 889
 
@@ -899,31 +899,31 @@  discard block
 block discarded – undo
899 899
  */
900 900
 function geodir_cfi_time($html,$cf){
901 901
 
902
-    $html_var = $cf['htmlvar_name'];
902
+	$html_var = $cf['htmlvar_name'];
903 903
 
904
-    // Check if there is a custom field specific filter.
905
-    if(has_filter("geodir_custom_field_input_time_{$html_var}")){
906
-        /**
907
-         * Filter the time html by individual custom field.
908
-         *
909
-         * @param string $html The html to filter.
910
-         * @param array $cf The custom field array.
911
-         * @since 1.6.6
912
-         */
913
-        $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf);
914
-    }
904
+	// Check if there is a custom field specific filter.
905
+	if(has_filter("geodir_custom_field_input_time_{$html_var}")){
906
+		/**
907
+		 * Filter the time html by individual custom field.
908
+		 *
909
+		 * @param string $html The html to filter.
910
+		 * @param array $cf The custom field array.
911
+		 * @since 1.6.6
912
+		 */
913
+		$html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf);
914
+	}
915 915
 
916
-    // If no html then we run the standard output.
917
-    if(empty($html)) {
916
+	// If no html then we run the standard output.
917
+	if(empty($html)) {
918 918
 
919
-        ob_start(); // Start  buffering;
920
-        $value = geodir_get_cf_value($cf);
919
+		ob_start(); // Start  buffering;
920
+		$value = geodir_get_cf_value($cf);
921 921
 
922
-        $name = $cf['name'];
922
+		$name = $cf['name'];
923 923
 
924
-        if ($value != '')
925
-            $value = date('H:i', strtotime($value));
926
-        ?>
924
+		if ($value != '')
925
+			$value = date('H:i', strtotime($value));
926
+		?>
927 927
         <script type="text/javascript">
928 928
             jQuery(document).ready(function () {
929 929
 
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
             <label>
940 940
 
941 941
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
942
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
942
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
943 943
                 <?php if ($cf['is_required']) echo '<span>*</span>';?>
944 944
             </label>
945 945
             <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>"
@@ -951,10 +951,10 @@  discard block
 block discarded – undo
951 951
             <?php } ?>
952 952
         </div>
953 953
         <?php
954
-        $html = ob_get_clean();
955
-    }
954
+		$html = ob_get_clean();
955
+	}
956 956
 
957
-    return $html;
957
+	return $html;
958 958
 }
959 959
 add_filter('geodir_custom_field_input_time','geodir_cfi_time',10,2);
960 960
 
@@ -970,100 +970,100 @@  discard block
 block discarded – undo
970 970
  */
971 971
 function geodir_cfi_address($html,$cf){
972 972
 
973
-    $html_var = $cf['htmlvar_name'];
974
-
975
-    // Check if there is a custom field specific filter.
976
-    if(has_filter("geodir_custom_field_input_address_{$html_var}")){
977
-        /**
978
-         * Filter the address html by individual custom field.
979
-         *
980
-         * @param string $html The html to filter.
981
-         * @param array $cf The custom field array.
982
-         * @since 1.6.6
983
-         */
984
-        $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf);
985
-    }
986
-
987
-    // If no html then we run the standard output.
988
-    if(empty($html)) {
989
-
990
-        global $gd_session;
991
-        ob_start(); // Start  buffering;
992
-        $value = geodir_get_cf_value($cf);
993
-        $name = $cf['name'];
994
-        $type = $cf['type'];
995
-        $admin_desc = $cf['desc'];
996
-        $is_required = $cf['is_required'];
997
-        $required_msg = $cf['required_msg'];
998
-        $site_title = $cf['site_title'];
999
-        $is_admin = $cf['is_admin'];
1000
-        $extra_fields = stripslashes_deep(unserialize($cf['extra_fields']));
1001
-        $prefix = $name . '_';
1002
-
1003
-        ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address');
1004
-        ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code ');
1005
-        ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map');
1006
-        ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview');
1007
-
1008
-        $address = '';
1009
-        $zip = '';
1010
-        $mapview = '';
1011
-        $mapzoom = '';
1012
-        $lat = '';
1013
-        $lng = '';
1014
-
1015
-        if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1016
-            $post = $gd_ses_listing;
1017
-            $address = $post[$prefix . 'address'];
1018
-            $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : '';
1019
-            $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : '';
1020
-            $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : '';
1021
-            $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : '';
1022
-            $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : '';
1023
-        } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) {
1024
-            $post_info = (array)$post_info;
1025
-
1026
-            $address = $post_info[$prefix . 'address'];
1027
-            $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : '';
1028
-            $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : '';
1029
-            $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : '';
1030
-            $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : '';
1031
-            $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : '';
1032
-        }
1033
-
1034
-        $location = geodir_get_default_location();
1035
-        if (empty($city)) $city = isset($location->city) ? $location->city : '';
1036
-        if (empty($region)) $region = isset($location->region) ? $location->region : '';
1037
-        if (empty($country)) $country = isset($location->country) ? $location->country : '';
1038
-
1039
-        $lat_lng_blank = false;
1040
-        if (empty($lat) && empty($lng)) {
1041
-            $lat_lng_blank = true;
1042
-        }
1043
-
1044
-        if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : '';
1045
-        if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : '';
1046
-
1047
-        /**
1048
-         * Filter the default latitude.
1049
-         *
1050
-         * @since 1.0.0
1051
-         *
1052
-         * @param float $lat Default latitude.
1053
-         * @param bool $is_admin For admin use only?.
1054
-         */
1055
-        $lat = apply_filters('geodir_default_latitude', $lat, $is_admin);
1056
-        /**
1057
-         * Filter the default longitude.
1058
-         *
1059
-         * @since 1.0.0
1060
-         *
1061
-         * @param float $lat Default longitude.
1062
-         * @param bool $is_admin For admin use only?.
1063
-         */
1064
-        $lng = apply_filters('geodir_default_longitude', $lng, $is_admin);
1065
-
1066
-        ?>
973
+	$html_var = $cf['htmlvar_name'];
974
+
975
+	// Check if there is a custom field specific filter.
976
+	if(has_filter("geodir_custom_field_input_address_{$html_var}")){
977
+		/**
978
+		 * Filter the address html by individual custom field.
979
+		 *
980
+		 * @param string $html The html to filter.
981
+		 * @param array $cf The custom field array.
982
+		 * @since 1.6.6
983
+		 */
984
+		$html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf);
985
+	}
986
+
987
+	// If no html then we run the standard output.
988
+	if(empty($html)) {
989
+
990
+		global $gd_session;
991
+		ob_start(); // Start  buffering;
992
+		$value = geodir_get_cf_value($cf);
993
+		$name = $cf['name'];
994
+		$type = $cf['type'];
995
+		$admin_desc = $cf['desc'];
996
+		$is_required = $cf['is_required'];
997
+		$required_msg = $cf['required_msg'];
998
+		$site_title = $cf['site_title'];
999
+		$is_admin = $cf['is_admin'];
1000
+		$extra_fields = stripslashes_deep(unserialize($cf['extra_fields']));
1001
+		$prefix = $name . '_';
1002
+
1003
+		($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address');
1004
+		($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code ');
1005
+		($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map');
1006
+		($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview');
1007
+
1008
+		$address = '';
1009
+		$zip = '';
1010
+		$mapview = '';
1011
+		$mapzoom = '';
1012
+		$lat = '';
1013
+		$lng = '';
1014
+
1015
+		if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1016
+			$post = $gd_ses_listing;
1017
+			$address = $post[$prefix . 'address'];
1018
+			$zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : '';
1019
+			$lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : '';
1020
+			$lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : '';
1021
+			$mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : '';
1022
+			$mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : '';
1023
+		} else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) {
1024
+			$post_info = (array)$post_info;
1025
+
1026
+			$address = $post_info[$prefix . 'address'];
1027
+			$zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : '';
1028
+			$lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : '';
1029
+			$lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : '';
1030
+			$mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : '';
1031
+			$mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : '';
1032
+		}
1033
+
1034
+		$location = geodir_get_default_location();
1035
+		if (empty($city)) $city = isset($location->city) ? $location->city : '';
1036
+		if (empty($region)) $region = isset($location->region) ? $location->region : '';
1037
+		if (empty($country)) $country = isset($location->country) ? $location->country : '';
1038
+
1039
+		$lat_lng_blank = false;
1040
+		if (empty($lat) && empty($lng)) {
1041
+			$lat_lng_blank = true;
1042
+		}
1043
+
1044
+		if (empty($lat)) $lat = isset($location->city_latitude) ? $location->city_latitude : '';
1045
+		if (empty($lng)) $lng = isset($location->city_longitude) ? $location->city_longitude : '';
1046
+
1047
+		/**
1048
+		 * Filter the default latitude.
1049
+		 *
1050
+		 * @since 1.0.0
1051
+		 *
1052
+		 * @param float $lat Default latitude.
1053
+		 * @param bool $is_admin For admin use only?.
1054
+		 */
1055
+		$lat = apply_filters('geodir_default_latitude', $lat, $is_admin);
1056
+		/**
1057
+		 * Filter the default longitude.
1058
+		 *
1059
+		 * @since 1.0.0
1060
+		 *
1061
+		 * @param float $lat Default longitude.
1062
+		 * @param bool $is_admin For admin use only?.
1063
+		 */
1064
+		$lng = apply_filters('geodir_default_longitude', $lng, $is_admin);
1065
+
1066
+		?>
1067 1067
 
1068 1068
         <div id="geodir_<?php echo $prefix . 'address';?>_row"
1069 1069
              class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
@@ -1082,17 +1082,17 @@  discard block
 block discarded – undo
1082 1082
 
1083 1083
 
1084 1084
         <?php
1085
-        /**
1086
-         * Called after the address input on the add listings.
1087
-         *
1088
-         * This is used by the location manage to add further locations info etc.
1089
-         *
1090
-         * @since 1.0.0
1091
-         * @param array $cf The array of setting for the custom field. {@see geodir_custom_field_save()}.
1092
-         */
1093
-        do_action('geodir_address_extra_listing_fields', $cf);
1094
-
1095
-        if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?>
1085
+		/**
1086
+		 * Called after the address input on the add listings.
1087
+		 *
1088
+		 * This is used by the location manage to add further locations info etc.
1089
+		 *
1090
+		 * @since 1.0.0
1091
+		 * @param array $cf The array of setting for the custom field. {@see geodir_custom_field_save()}.
1092
+		 */
1093
+		do_action('geodir_address_extra_listing_fields', $cf);
1094
+
1095
+		if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?>
1096 1096
 
1097 1097
             <div id="geodir_<?php echo $prefix . 'zip'; ?>_row"
1098 1098
                  class="<?php /*if($is_required) echo 'required_field';*/ ?> geodir_form_row clearfix gd-fieldset-details">
@@ -1113,22 +1113,22 @@  discard block
 block discarded – undo
1113 1113
 
1114 1114
             <div id="geodir_<?php echo $prefix . 'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1115 1115
                 <?php
1116
-                /**
1117
-                 * Contains add listing page map functions.
1118
-                 *
1119
-                 * @since 1.0.0
1120
-                 */
1121
-                include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1122
-                if ($lat_lng_blank) {
1123
-                    $lat = '';
1124
-                    $lng = '';
1125
-                }
1126
-                ?>
1116
+				/**
1117
+				 * Contains add listing page map functions.
1118
+				 *
1119
+				 * @since 1.0.0
1120
+				 */
1121
+				include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1122
+				if ($lat_lng_blank) {
1123
+					$lat = '';
1124
+					$lng = '';
1125
+				}
1126
+				?>
1127 1127
                 <span class="geodir_message_note"><?php echo stripslashes(GET_MAP_MSG); ?></span>
1128 1128
             </div>
1129 1129
             <?php
1130
-            /* show lat lng */
1131
-            $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1130
+			/* show lat lng */
1131
+			$style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1132 1132
             <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row"
1133 1133
                  class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1134 1134
                 <label>
@@ -1169,27 +1169,27 @@  discard block
 block discarded – undo
1169 1169
                                                             class="gd-checkbox"
1170 1170
                                                             name="<?php echo $prefix . 'mapview'; ?>"
1171 1171
                                                             id="<?php echo $prefix . 'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') {
1172
-                            echo 'checked="checked"';
1173
-                        } ?>  value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span>
1172
+							echo 'checked="checked"';
1173
+						} ?>  value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span>
1174 1174
                     <span class="geodir_user_define"> <input field_type="<?php echo $type; ?>" type="radio"
1175 1175
                                                              class="gd-checkbox"
1176 1176
                                                              name="<?php echo $prefix . 'mapview'; ?>"
1177 1177
                                                              id="map_view1" <?php if ($mapview == 'SATELLITE') {
1178
-                            echo 'checked="checked"';
1179
-                        } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span>
1178
+							echo 'checked="checked"';
1179
+						} ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span>
1180 1180
 
1181 1181
                     <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1182 1182
                                                             class="gd-checkbox"
1183 1183
                                                             name="<?php echo $prefix . 'mapview'; ?>"
1184 1184
                                                             id="map_view2" <?php if ($mapview == 'HYBRID') {
1185
-                            echo 'checked="checked"';
1186
-                        } ?>  value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span>
1185
+							echo 'checked="checked"';
1186
+						} ?>  value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span>
1187 1187
 					<span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1188 1188
                                                             class="gd-checkbox"
1189 1189
                                                             name="<?php echo $prefix . 'mapview'; ?>"
1190 1190
                                                             id="map_view3" <?php if ($mapview == 'TERRAIN') {
1191
-                            echo 'checked="checked"';
1192
-                        } ?>  value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span>
1191
+							echo 'checked="checked"';
1192
+						} ?>  value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span>
1193 1193
 
1194 1194
 
1195 1195
             </div>
@@ -1197,14 +1197,14 @@  discard block
 block discarded – undo
1197 1197
 
1198 1198
         <?php if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { ?>
1199 1199
             <input type="hidden" value="<?php if (isset($mapzoom)) {
1200
-                echo esc_attr($mapzoom);
1201
-            } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/>
1200
+				echo esc_attr($mapzoom);
1201
+			} ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/>
1202 1202
         <?php }
1203 1203
 
1204
-        $html = ob_get_clean();
1205
-    }
1204
+		$html = ob_get_clean();
1205
+	}
1206 1206
 
1207
-    return $html;
1207
+	return $html;
1208 1208
 }
1209 1209
 add_filter('geodir_custom_field_input_address','geodir_cfi_address',10,2);
1210 1210
 
@@ -1221,137 +1221,137 @@  discard block
 block discarded – undo
1221 1221
  */
1222 1222
 function geodir_cfi_taxonomy($html,$cf){
1223 1223
 
1224
-    $html_var = $cf['htmlvar_name'];
1225
-
1226
-    // Check if there is a custom field specific filter.
1227
-    if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){
1228
-        /**
1229
-         * Filter the taxonomy html by individual custom field.
1230
-         *
1231
-         * @param string $html The html to filter.
1232
-         * @param array $cf The custom field array.
1233
-         * @since 1.6.6
1234
-         */
1235
-        $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf);
1236
-    }
1237
-
1238
-    // If no html then we run the standard output.
1239
-    if(empty($html)) {
1240
-
1241
-        ob_start(); // Start  buffering;
1242
-        $value = geodir_get_cf_value($cf);
1243
-
1244
-        $name = $cf['name'];
1245
-        $site_title = $cf['site_title'];
1246
-        $admin_desc = $cf['desc'];
1247
-        $is_required = $cf['is_required'];
1248
-        $is_admin = $cf['is_admin'];
1249
-        $required_msg = $cf['required_msg'];
1250
-
1251
-        if ($value == $cf['default']) {
1252
-            $value = '';
1253
-        } ?>
1224
+	$html_var = $cf['htmlvar_name'];
1225
+
1226
+	// Check if there is a custom field specific filter.
1227
+	if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){
1228
+		/**
1229
+		 * Filter the taxonomy html by individual custom field.
1230
+		 *
1231
+		 * @param string $html The html to filter.
1232
+		 * @param array $cf The custom field array.
1233
+		 * @since 1.6.6
1234
+		 */
1235
+		$html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf);
1236
+	}
1237
+
1238
+	// If no html then we run the standard output.
1239
+	if(empty($html)) {
1240
+
1241
+		ob_start(); // Start  buffering;
1242
+		$value = geodir_get_cf_value($cf);
1243
+
1244
+		$name = $cf['name'];
1245
+		$site_title = $cf['site_title'];
1246
+		$admin_desc = $cf['desc'];
1247
+		$is_required = $cf['is_required'];
1248
+		$is_admin = $cf['is_admin'];
1249
+		$required_msg = $cf['required_msg'];
1250
+
1251
+		if ($value == $cf['default']) {
1252
+			$value = '';
1253
+		} ?>
1254 1254
         <div id="<?php echo $name;?>_row"
1255 1255
              class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1256 1256
             <label>
1257 1257
                 <?php $site_title = __($site_title, 'geodirectory');
1258
-                echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1258
+				echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1259 1259
                 <?php if ($is_required) echo '<span>*</span>';?>
1260 1260
             </label>
1261 1261
 
1262 1262
             <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
1263 1263
                 <?php
1264
-                global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats;
1264
+				global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats;
1265 1265
 
1266
-                $exclude_cats = array();
1266
+				$exclude_cats = array();
1267 1267
 
1268
-                if ($is_admin == '1') {
1268
+				if ($is_admin == '1') {
1269 1269
 
1270
-                    $post_type = get_post_type();
1270
+					$post_type = get_post_type();
1271 1271
 
1272
-                    $package_info = array();
1272
+					$package_info = array();
1273 1273
 
1274
-                    $package_info = (array)geodir_post_package_info($package_info, $post, $post_type);
1274
+					$package_info = (array)geodir_post_package_info($package_info, $post, $post_type);
1275 1275
 
1276
-                    if (!empty($package_info)) {
1276
+					if (!empty($package_info)) {
1277 1277
 
1278
-                        if (isset($package_info['cat']) && $package_info['cat'] != '') {
1278
+						if (isset($package_info['cat']) && $package_info['cat'] != '') {
1279 1279
 
1280
-                            $exclude_cats = explode(',', $package_info['cat']);
1280
+							$exclude_cats = explode(',', $package_info['cat']);
1281 1281
 
1282
-                        }
1283
-                    }
1284
-                }
1282
+						}
1283
+					}
1284
+				}
1285 1285
 
1286
-                $cat_display = unserialize($cf['extra_fields']);
1286
+				$cat_display = unserialize($cf['extra_fields']);
1287 1287
 
1288
-                if (isset($_REQUEST['backandedit']) && (is_array($post_cat[$name]) && !empty($post_cat[$name]))) {
1288
+				if (isset($_REQUEST['backandedit']) && (is_array($post_cat[$name]) && !empty($post_cat[$name]))) {
1289 1289
 
1290
-                    $post_cat = implode(",", $post_cat[$name]);
1290
+					$post_cat = implode(",", $post_cat[$name]);
1291 1291
 
1292
-                } else {
1293
-                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
1294
-                        $post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1295
-                }
1292
+				} else {
1293
+					if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
1294
+						$post_cat = geodir_get_post_meta($_REQUEST['pid'], $name, true);
1295
+				}
1296 1296
 
1297 1297
 
1298
-                global $geodir_addon_list;
1299
-                if (!empty($geodir_addon_list) && array_key_exists('geodir_payment_manager', $geodir_addon_list) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1298
+				global $geodir_addon_list;
1299
+				if (!empty($geodir_addon_list) && array_key_exists('geodir_payment_manager', $geodir_addon_list) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1300 1300
 
1301
-                    $catadd_limit = $wpdb->get_var(
1302
-                        $wpdb->prepare(
1303
-                            "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d",
1304
-                            array($package_id)
1305
-                        )
1306
-                    );
1301
+					$catadd_limit = $wpdb->get_var(
1302
+						$wpdb->prepare(
1303
+							"SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d",
1304
+							array($package_id)
1305
+						)
1306
+					);
1307 1307
 
1308 1308
 
1309
-                } else {
1310
-                    $catadd_limit = 0;
1311
-                }
1309
+				} else {
1310
+					$catadd_limit = 0;
1311
+				}
1312 1312
 
1313 1313
 
1314
-                if ($cat_display != '' && $cat_display != 'ajax_chained') {
1314
+				if ($cat_display != '' && $cat_display != 'ajax_chained') {
1315 1315
 
1316
-                    $required_limit_msg = '';
1317
-                    if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') {
1316
+					$required_limit_msg = '';
1317
+					if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') {
1318 1318
 
1319
-                        $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory');
1319
+						$required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory');
1320 1320
 
1321
-                    } else {
1322
-                        $required_limit_msg = $required_msg;
1323
-                    }
1321
+					} else {
1322
+						$required_limit_msg = $required_msg;
1323
+					}
1324 1324
 
1325
-                    echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']"  />';
1325
+					echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']"  />';
1326 1326
 
1327 1327
 
1328
-                    if ($cat_display == 'select' || $cat_display == 'multiselect') {
1328
+					if ($cat_display == 'select' || $cat_display == 'multiselect') {
1329 1329
 
1330
-                        $cat_display == '';
1331
-                        $multiple = '';
1332
-                        if ($cat_display == 'multiselect')
1333
-                            $multiple = 'multiple="multiple"';
1330
+						$cat_display == '';
1331
+						$multiple = '';
1332
+						if ($cat_display == 'multiselect')
1333
+							$multiple = 'multiple="multiple"';
1334 1334
 
1335
-                        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') . '">';
1335
+						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') . '">';
1336 1336
 
1337 1337
 
1338
-                        if ($cat_display == 'select')
1339
-                            echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1338
+						if ($cat_display == 'select')
1339
+							echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1340 1340
 
1341
-                    }
1341
+					}
1342 1342
 
1343
-                    echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0);
1343
+					echo geodir_custom_taxonomy_walker($name, $catadd_limit = 0);
1344 1344
 
1345
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
1346
-                        echo '</select>';
1345
+					if ($cat_display == 'select' || $cat_display == 'multiselect')
1346
+						echo '</select>';
1347 1347
 
1348
-                } else {
1348
+				} else {
1349 1349
 
1350
-                    echo geodir_custom_taxonomy_walker2($name, $catadd_limit);
1350
+					echo geodir_custom_taxonomy_walker2($name, $catadd_limit);
1351 1351
 
1352
-                }
1352
+				}
1353 1353
 
1354
-                ?>
1354
+				?>
1355 1355
             </div>
1356 1356
 
1357 1357
             <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span>
@@ -1361,10 +1361,10 @@  discard block
 block discarded – undo
1361 1361
         </div>
1362 1362
 
1363 1363
         <?php
1364
-        $html = ob_get_clean();
1365
-    }
1364
+		$html = ob_get_clean();
1365
+	}
1366 1366
 
1367
-    return $html;
1367
+	return $html;
1368 1368
 }
1369 1369
 add_filter('geodir_custom_field_input_taxonomy','geodir_cfi_taxonomy',10,2);
1370 1370
 
@@ -1380,74 +1380,74 @@  discard block
 block discarded – undo
1380 1380
  */
1381 1381
 function geodir_cfi_file($html,$cf){
1382 1382
 
1383
-    $html_var = $cf['htmlvar_name'];
1383
+	$html_var = $cf['htmlvar_name'];
1384 1384
 
1385
-    // Check if there is a custom field specific filter.
1386
-    if(has_filter("geodir_custom_field_input_file_{$html_var}")){
1387
-        /**
1388
-         * Filter the file html by individual custom field.
1389
-         *
1390
-         * @param string $html The html to filter.
1391
-         * @param array $cf The custom field array.
1392
-         * @since 1.6.6
1393
-         */
1394
-        $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf);
1395
-    }
1385
+	// Check if there is a custom field specific filter.
1386
+	if(has_filter("geodir_custom_field_input_file_{$html_var}")){
1387
+		/**
1388
+		 * Filter the file html by individual custom field.
1389
+		 *
1390
+		 * @param string $html The html to filter.
1391
+		 * @param array $cf The custom field array.
1392
+		 * @since 1.6.6
1393
+		 */
1394
+		$html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf);
1395
+	}
1396 1396
 
1397
-    // If no html then we run the standard output.
1398
-    if(empty($html)) {
1397
+	// If no html then we run the standard output.
1398
+	if(empty($html)) {
1399 1399
 
1400
-        ob_start(); // Start  buffering;
1401
-        $value = geodir_get_cf_value($cf);
1400
+		ob_start(); // Start  buffering;
1401
+		$value = geodir_get_cf_value($cf);
1402 1402
 
1403
-        $name = $cf['name'];
1404
-        $site_title = $cf['site_title'];
1405
-        $admin_desc = $cf['desc'];
1406
-        $is_required = $cf['is_required'];
1407
-        $required_msg = $cf['required_msg'];
1408
-        $extra_fields = unserialize($cf['extra_fields']);
1403
+		$name = $cf['name'];
1404
+		$site_title = $cf['site_title'];
1405
+		$admin_desc = $cf['desc'];
1406
+		$is_required = $cf['is_required'];
1407
+		$required_msg = $cf['required_msg'];
1408
+		$extra_fields = unserialize($cf['extra_fields']);
1409 1409
 
1410 1410
 
1411
-        // adjust values here
1412
-        $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
1411
+		// adjust values here
1412
+		$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
1413 1413
 
1414
-        if ($value != '') {
1414
+		if ($value != '') {
1415 1415
 
1416
-            $file_value = trim($value, ","); // this will be initial value of the above form field. Image urls.
1416
+			$file_value = trim($value, ","); // this will be initial value of the above form field. Image urls.
1417 1417
 
1418
-        } else
1419
-            $file_value = '';
1418
+		} else
1419
+			$file_value = '';
1420 1420
 
1421
-        if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple'])
1422
-            $file_multiple = true; // allow multiple files upload
1423
-        else
1424
-            $file_multiple = false;
1421
+		if (isset($extra_fields['file_multiple']) && $extra_fields['file_multiple'])
1422
+			$file_multiple = true; // allow multiple files upload
1423
+		else
1424
+			$file_multiple = false;
1425 1425
 
1426
-        if (isset($extra_fields['image_limit']) && $extra_fields['image_limit'])
1427
-            $file_image_limit = $extra_fields['image_limit'];
1428
-        else
1429
-            $file_image_limit = 1;
1426
+		if (isset($extra_fields['image_limit']) && $extra_fields['image_limit'])
1427
+			$file_image_limit = $extra_fields['image_limit'];
1428
+		else
1429
+			$file_image_limit = 1;
1430 1430
 
1431
-        $file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1431
+		$file_width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1432 1432
 
1433
-        $file_height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1433
+		$file_height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1434 1434
 
1435
-        if (!empty($file_value)) {
1436
-            $curImages = explode(',', $file_value);
1437
-            if (!empty($curImages))
1438
-                $file_totImg = count($curImages);
1439
-        }
1435
+		if (!empty($file_value)) {
1436
+			$curImages = explode(',', $file_value);
1437
+			if (!empty($curImages))
1438
+				$file_totImg = count($curImages);
1439
+		}
1440 1440
 
1441
-        $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']) : '';
1442
-        $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : '';
1441
+		$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']) : '';
1442
+		$display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : '';
1443 1443
 
1444
-        ?>
1444
+		?>
1445 1445
         <?php /*?> <h5 class="geodir-form_title"> <?php echo $site_title; ?>
1446 1446
 				 <?php if($file_image_limit!=0 && $file_image_limit==1 ){echo '<br /><small>('.__('You can upload').' '.$file_image_limit.' '.__('image with this package').')</small>';} ?>
1447 1447
 				 <?php if($file_image_limit!=0 && $file_image_limit>1 ){echo '<br /><small>('.__('You can upload').' '.$file_image_limit.' '.__('images with this package').')</small>';} ?>
1448 1448
 				 <?php if($file_image_limit==0){echo '<br /><small>('.__('You can upload unlimited images with this package').')</small>';} ?>
1449 1449
 			</h5>   <?php */
1450
-        ?>
1450
+		?>
1451 1451
 
1452 1452
         <div id="<?php echo $name;?>_row"
1453 1453
              class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
@@ -1455,7 +1455,7 @@  discard block
 block discarded – undo
1455 1455
             <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;">
1456 1456
                 <label
1457 1457
                     style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory');
1458
-                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1458
+					echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1459 1459
                 <input class="geodir-custom-file-upload" field_type="file" type="hidden"
1460 1460
                        name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>"
1461 1461
                        value="<?php echo esc_attr($file_value); ?>"/>
@@ -1467,17 +1467,17 @@  discard block
 block discarded – undo
1467 1467
                 <?php } ?>
1468 1468
                 <input type="hidden" name="<?php echo $file_id; ?>totImg" id="<?php echo $file_id; ?>totImg"
1469 1469
                        value="<?php if (isset($file_totImg)) {
1470
-                           echo esc_attr($file_totImg);
1471
-                       } else {
1472
-                           echo '0';
1473
-                       } ?>"/>
1470
+						   echo esc_attr($file_totImg);
1471
+					   } else {
1472
+						   echo '0';
1473
+					   } ?>"/>
1474 1474
 
1475 1475
                 <div style="float:left; width:55%;">
1476 1476
                     <div
1477 1477
                         class="plupload-upload-uic hide-if-no-js <?php if ($file_multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
1478 1478
                         id="<?php echo $file_id; ?>plupload-upload-ui" style="float:left; width:30%;">
1479 1479
                         <?php /*?><h4><?php _e('Drop files to upload');?></h4><br/><?php */
1480
-                        ?>
1480
+						?>
1481 1481
                         <input id="<?php echo $file_id; ?>plupload-browse-button" type="button"
1482 1482
                                value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory') ); ?>"
1483 1483
                                class="geodir_button" style="margin-top:10px;"/>
@@ -1496,7 +1496,7 @@  discard block
 block discarded – undo
1496 1496
                         style=" clear:inherit; margin-top:0; margin-left:15px; padding-top:10px; float:left; width:50%;">
1497 1497
                     </div>
1498 1498
                     <?php /*?><span id="upload-msg" ><?php _e('Please drag &amp; drop the images to rearrange the order');?></span><?php */
1499
-                    ?>
1499
+					?>
1500 1500
 
1501 1501
                     <span id="<?php echo $file_id; ?>upload-error" style="display:none"></span>
1502 1502
 
@@ -1510,9 +1510,9 @@  discard block
 block discarded – undo
1510 1510
 
1511 1511
 
1512 1512
         <?php
1513
-        $html = ob_get_clean();
1514
-    }
1513
+		$html = ob_get_clean();
1514
+	}
1515 1515
 
1516
-    return $html;
1516
+	return $html;
1517 1517
 }
1518 1518
 add_filter('geodir_custom_field_input_file','geodir_cfi_file',10,2);
1519 1519
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +234 added lines, -234 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
-            gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo __( $cf['site_title'], 'geodirectory' ); ?>
43
-            <?php if ( $cf['desc'] != '' ) {
44
-                echo '<small>( ' . __( $cf['desc'], 'geodirectory' ) . ' )</small>';
42
+            gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo __($cf['site_title'], 'geodirectory'); ?>
43
+            <?php if ($cf['desc'] != '') {
44
+                echo '<small>( '.__($cf['desc'], 'geodirectory').' )</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(stripslashes($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(stripslashes($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);
@@ -411,22 +411,22 @@  discard block
 block discarded – undo
411 411
         }
412 412
         ?>
413 413
 
414
-        <div id="<?php echo $cf['name'];?>_row"
415
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
414
+        <div id="<?php echo $cf['name']; ?>_row"
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 418
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
419
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
419
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
420 420
             </label>
421 421
             <?php if ($value != '1') {
422 422
                 $value = '0';
423 423
             }?>
424
-            <input type="hidden" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" value="<?php echo esc_attr($value);?>"/>
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 426
                 echo 'checked="checked"';
427
-            }?>  value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox"
428
-                 onchange="if(this.checked){jQuery('#<?php echo $cf['name'];?>').val('1');} else{ jQuery('#<?php echo $cf['name'];?>').val('0');}"/>
429
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
427
+            }?>  value="1" class="gd-checkbox" field_type="<?php echo $cf['type']; ?>" type="checkbox"
428
+                 onchange="if(this.checked){jQuery('#<?php echo $cf['name']; ?>').val('1');} else{ jQuery('#<?php echo $cf['name']; ?>').val('0');}"/>
429
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
430 430
             <?php if ($cf['is_required']) { ?>
431 431
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
432 432
             <?php } ?>
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
 
439 439
     return $html;
440 440
 }
441
-add_filter('geodir_custom_field_input_checkbox','geodir_cfi_checkbox',10,2);
441
+add_filter('geodir_custom_field_input_checkbox', 'geodir_cfi_checkbox', 10, 2);
442 442
 
443 443
 
444 444
 /**
@@ -450,12 +450,12 @@  discard block
 block discarded – undo
450 450
  *
451 451
  * @return string The html to output for the custom field.
452 452
  */
453
-function geodir_cfi_textarea($html,$cf){
453
+function geodir_cfi_textarea($html, $cf) {
454 454
 
455 455
     $html_var = $cf['htmlvar_name'];
456 456
 
457 457
     // Check if there is a custom field specific filter.
458
-    if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){
458
+    if (has_filter("geodir_custom_field_input_textarea_{$html_var}")) {
459 459
         /**
460 460
          * Filter the textarea html by individual custom field.
461 461
          *
@@ -463,11 +463,11 @@  discard block
 block discarded – undo
463 463
          * @param array $cf The custom field array.
464 464
          * @since 1.6.6
465 465
          */
466
-        $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf);
466
+        $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}", $html, $cf);
467 467
     }
468 468
 
469 469
     // If no html then we run the standard output.
470
-    if(empty($html)) {
470
+    if (empty($html)) {
471 471
 
472 472
         ob_start(); // Start  buffering;
473 473
         $value = geodir_get_cf_value($cf);
@@ -475,32 +475,32 @@  discard block
 block discarded – undo
475 475
         $extra_fields = unserialize($cf['extra_fields']);
476 476
         ?>
477 477
 
478
-        <div id="<?php echo $cf['name'];?>_row"
479
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
478
+        <div id="<?php echo $cf['name']; ?>_row"
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 482
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
483
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
483
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
484 484
             </label><?php
485 485
 
486 486
 
487 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
-            <div class="editor" field_id="<?php echo $cf['name'];?>" field_type="editor">
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 495
             } else {
496 496
 
497
-                ?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>"
498
-                            id="<?php echo $cf['name'];?>"><?php echo stripslashes($value);?></textarea><?php
497
+                ?><textarea field_type="<?php echo $cf['type']; ?>" class="geodir_textarea" name="<?php echo $cf['name']; ?>"
498
+                            id="<?php echo $cf['name']; ?>"><?php echo stripslashes($value); ?></textarea><?php
499 499
 
500 500
             }?>
501 501
 
502 502
 
503
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
503
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
504 504
             <?php if ($cf['is_required']) { ?>
505 505
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
506 506
             <?php } ?>
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
     return $html;
514 514
 }
515
-add_filter('geodir_custom_field_input_textarea','geodir_cfi_textarea',10,2);
515
+add_filter('geodir_custom_field_input_textarea', 'geodir_cfi_textarea', 10, 2);
516 516
 
517 517
 
518 518
 /**
@@ -524,12 +524,12 @@  discard block
 block discarded – undo
524 524
  *
525 525
  * @return string The html to output for the custom field.
526 526
  */
527
-function geodir_cfi_select($html,$cf){
527
+function geodir_cfi_select($html, $cf) {
528 528
 
529 529
     $html_var = $cf['htmlvar_name'];
530 530
 
531 531
     // Check if there is a custom field specific filter.
532
-    if(has_filter("geodir_custom_field_input_select_{$html_var}")){
532
+    if (has_filter("geodir_custom_field_input_select_{$html_var}")) {
533 533
         /**
534 534
          * Filter the select html by individual custom field.
535 535
          *
@@ -537,22 +537,22 @@  discard block
 block discarded – undo
537 537
          * @param array $cf The custom field array.
538 538
          * @since 1.6.6
539 539
          */
540
-        $html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf);
540
+        $html = apply_filters("geodir_custom_field_input_select_{$html_var}", $html, $cf);
541 541
     }
542 542
 
543 543
     // If no html then we run the standard output.
544
-    if(empty($html)) {
544
+    if (empty($html)) {
545 545
 
546 546
         ob_start(); // Start  buffering;
547 547
         $value = geodir_get_cf_value($cf);
548 548
 
549 549
         ?>
550
-        <div id="<?php echo $cf['name'];?>_row"
551
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details">
550
+        <div id="<?php echo $cf['name']; ?>_row"
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 554
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
555
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
555
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
556 556
             </label>
557 557
             <?php
558 558
             $option_values_arr = geodir_string_values_to_options($cf['option_values'], true);
@@ -562,22 +562,22 @@  discard block
 block discarded – undo
562 562
                     if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) {
563 563
                         $option_label = isset($option_row['label']) ? $option_row['label'] : '';
564 564
 
565
-                        $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
565
+                        $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="'.esc_attr($option_label).'">' : '</optgroup>';
566 566
                     } else {
567 567
                         $option_label = isset($option_row['label']) ? $option_row['label'] : '';
568 568
                         $option_value = isset($option_row['value']) ? $option_row['value'] : '';
569 569
                         $selected = $option_value == stripslashes($value) ? 'selected="selected"' : '';
570 570
 
571
-                        $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
571
+                        $select_options .= '<option value="'.esc_attr($option_value).'" '.$selected.'>'.$option_label.'</option>';
572 572
                     }
573 573
                 }
574 574
             }
575 575
             ?>
576
-            <select field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>"
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
-                    data-placeholder="<?php echo __('Choose', 'geodirectory') . ' ' . $site_title . '&hellip;';?>"
579
-                    option-ajaxchosen="false"><?php echo $select_options;?></select>
580
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
578
+                    data-placeholder="<?php echo __('Choose', 'geodirectory').' '.$site_title.'&hellip;'; ?>"
579
+                    option-ajaxchosen="false"><?php echo $select_options; ?></select>
580
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
581 581
             <?php if ($cf['is_required']) { ?>
582 582
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
583 583
             <?php } ?>
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
 
590 590
     return $html;
591 591
 }
592
-add_filter('geodir_custom_field_input_select','geodir_cfi_select',10,2);
592
+add_filter('geodir_custom_field_input_select', 'geodir_cfi_select', 10, 2);
593 593
 
594 594
 
595 595
 /**
@@ -601,12 +601,12 @@  discard block
 block discarded – undo
601 601
  *
602 602
  * @return string The html to output for the custom field.
603 603
  */
604
-function geodir_cfi_multiselect($html,$cf){
604
+function geodir_cfi_multiselect($html, $cf) {
605 605
 
606 606
     $html_var = $cf['htmlvar_name'];
607 607
 
608 608
     // Check if there is a custom field specific filter.
609
-    if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){
609
+    if (has_filter("geodir_custom_field_input_multiselect_{$html_var}")) {
610 610
         /**
611 611
          * Filter the multiselect html by individual custom field.
612 612
          *
@@ -614,11 +614,11 @@  discard block
 block discarded – undo
614 614
          * @param array $cf The custom field array.
615 615
          * @since 1.6.6
616 616
          */
617
-        $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf);
617
+        $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}", $html, $cf);
618 618
     }
619 619
 
620 620
     // If no html then we run the standard output.
621
-    if(empty($html)) {
621
+    if (empty($html)) {
622 622
 
623 623
         ob_start(); // Start  buffering;
624 624
         $value = geodir_get_cf_value($cf);
@@ -655,9 +655,9 @@  discard block
 block discarded – undo
655 655
                                 $option_label = isset($option_row['label']) ? $option_row['label'] : '';
656 656
 
657 657
                                 if ($multi_display == 'select') {
658
-                                    $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>';
658
+                                    $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="'.esc_attr($option_label).'">' : '</optgroup>';
659 659
                                 } else {
660
-                                    $select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : '';
660
+                                    $select_options .= $option_row['optgroup'] == 'start' ? '<li>'.$option_label.'</li>' : '';
661 661
                                 }
662 662
                             } else {
663 663
                                 if (!is_array($value) && $value != '') {
@@ -690,9 +690,9 @@  discard block
 block discarded – undo
690 690
                                 }
691 691
 
692 692
                                 if ($multi_display == 'select') {
693
-                                    $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
693
+                                    $select_options .= '<option value="'.esc_attr($option_value).'" '.$selected.'>'.$option_label.'</option>';
694 694
                                 } else {
695
-                                    $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>';
695
+                                    $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>';
696 696
                                 }
697 697
                             }
698 698
                         }
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
 
713 713
     return $html;
714 714
 }
715
-add_filter('geodir_custom_field_input_multiselect','geodir_cfi_multiselect',10,2);
715
+add_filter('geodir_custom_field_input_multiselect', 'geodir_cfi_multiselect', 10, 2);
716 716
 
717 717
 
718 718
 /**
@@ -724,12 +724,12 @@  discard block
 block discarded – undo
724 724
  *
725 725
  * @return string The html to output for the custom field.
726 726
  */
727
-function geodir_cfi_html($html,$cf){
727
+function geodir_cfi_html($html, $cf) {
728 728
 
729 729
     $html_var = $cf['htmlvar_name'];
730 730
 
731 731
     // Check if there is a custom field specific filter.
732
-    if(has_filter("geodir_custom_field_input_html_{$html_var}")){
732
+    if (has_filter("geodir_custom_field_input_html_{$html_var}")) {
733 733
         /**
734 734
          * Filter the html html by individual custom field.
735 735
          *
@@ -737,11 +737,11 @@  discard block
 block discarded – undo
737 737
          * @param array $cf The custom field array.
738 738
          * @since 1.6.6
739 739
          */
740
-        $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf);
740
+        $html = apply_filters("geodir_custom_field_input_html_{$html_var}", $html, $cf);
741 741
     }
742 742
 
743 743
     // If no html then we run the standard output.
744
-    if(empty($html)) {
744
+    if (empty($html)) {
745 745
 
746 746
         ob_start(); // Start  buffering;
747 747
         $value = geodir_get_cf_value($cf);
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
 
775 775
     return $html;
776 776
 }
777
-add_filter('geodir_custom_field_input_html','geodir_cfi_html',10,2);
777
+add_filter('geodir_custom_field_input_html', 'geodir_cfi_html', 10, 2);
778 778
 
779 779
 
780 780
 
@@ -787,12 +787,12 @@  discard block
 block discarded – undo
787 787
  *
788 788
  * @return string The html to output for the custom field.
789 789
  */
790
-function geodir_cfi_datepicker($html,$cf){
790
+function geodir_cfi_datepicker($html, $cf) {
791 791
 
792 792
     $html_var = $cf['htmlvar_name'];
793 793
 
794 794
     // Check if there is a custom field specific filter.
795
-    if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){
795
+    if (has_filter("geodir_custom_field_input_datepicker_{$html_var}")) {
796 796
         /**
797 797
          * Filter the datepicker html by individual custom field.
798 798
          *
@@ -800,11 +800,11 @@  discard block
 block discarded – undo
800 800
          * @param array $cf The custom field array.
801 801
          * @since 1.6.6
802 802
          */
803
-        $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf);
803
+        $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}", $html, $cf);
804 804
     }
805 805
 
806 806
     // If no html then we run the standard output.
807
-    if(empty($html)) {
807
+    if (empty($html)) {
808 808
 
809 809
         ob_start(); // Start  buffering;
810 810
         $value = geodir_get_cf_value($cf);
@@ -816,23 +816,23 @@  discard block
 block discarded – undo
816 816
             $extra_fields['date_format'] = 'yy-mm-dd';
817 817
 
818 818
         $date_format = $extra_fields['date_format'];
819
-        $jquery_date_format  = $date_format;
819
+        $jquery_date_format = $date_format;
820 820
 
821 821
 
822 822
         // check if we need to change the format or not
823 823
         $date_format_len = strlen(str_replace(' ', '', $date_format));
824
-        if($date_format_len>5){// if greater then 5 then it's the old style format.
824
+        if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
825 825
 
826
-            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
827
-            $replace = array('d','j','l','m','n','F','Y');//PHP date format
826
+            $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
827
+            $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
828 828
 
829 829
             $date_format = str_replace($search, $replace, $date_format);
830
-        }else{
831
-            $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format );
830
+        } else {
831
+            $jquery_date_format = geodir_date_format_php_to_jqueryui($jquery_date_format);
832 832
         }
833 833
 
834
-        if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty
835
-        if($value && !isset($_REQUEST['backandedit'])) {
834
+        if ($value == '0000-00-00') {$value = ''; }//if date not set, then mark it empty
835
+        if ($value && !isset($_REQUEST['backandedit'])) {
836 836
             //$time = strtotime($value);
837 837
             //$value = date_i18n($date_format, $time);
838 838
         }
@@ -843,37 +843,37 @@  discard block
 block discarded – undo
843 843
 
844 844
             jQuery(function () {
845 845
 
846
-                jQuery("#<?php echo $cf['name'];?>").datepicker({changeMonth: true, changeYear: true <?php
846
+                jQuery("#<?php echo $cf['name']; ?>").datepicker({changeMonth: true, changeYear: true <?php
847 847
                     /**
848 848
                      * Used to add extra option to datepicker per custom field.
849 849
                      *
850 850
                      * @since 1.5.7
851 851
                      * @param string $name The custom field name.
852 852
                      */
853
-                    echo apply_filters("gd_datepicker_extra_{$name}",'');?>});
853
+                    echo apply_filters("gd_datepicker_extra_{$name}", ''); ?>});
854 854
 
855
-                jQuery("#<?php echo $name;?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format;?>');
855
+                jQuery("#<?php echo $name; ?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format; ?>');
856 856
 
857
-                <?php if(!empty($value)){?>
858
-                jQuery("#<?php echo $name;?>").datepicker("setDate", '<?php echo $value;?>');
857
+                <?php if (!empty($value)) {?>
858
+                jQuery("#<?php echo $name; ?>").datepicker("setDate", '<?php echo $value; ?>');
859 859
                 <?php } ?>
860 860
 
861 861
             });
862 862
 
863 863
         </script>
864
-        <div id="<?php echo $name;?>_row"
865
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
864
+        <div id="<?php echo $name; ?>_row"
865
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
866 866
             <label>
867 867
 
868 868
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
869 869
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
870
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
870
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
871 871
             </label>
872 872
 
873
-            <input field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" id="<?php echo $name;?>"
874
-                   value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/>
873
+            <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $name; ?>" id="<?php echo $name; ?>"
874
+                   value="<?php echo esc_attr($value); ?>" type="text" class="geodir_textfield"/>
875 875
 
876
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
876
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
877 877
             <?php if ($cf['is_required']) { ?>
878 878
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
879 879
             <?php } ?>
@@ -885,7 +885,7 @@  discard block
 block discarded – undo
885 885
 
886 886
     return $html;
887 887
 }
888
-add_filter('geodir_custom_field_input_datepicker','geodir_cfi_datepicker',10,2);
888
+add_filter('geodir_custom_field_input_datepicker', 'geodir_cfi_datepicker', 10, 2);
889 889
 
890 890
 
891 891
 /**
@@ -897,12 +897,12 @@  discard block
 block discarded – undo
897 897
  *
898 898
  * @return string The html to output for the custom field.
899 899
  */
900
-function geodir_cfi_time($html,$cf){
900
+function geodir_cfi_time($html, $cf) {
901 901
 
902 902
     $html_var = $cf['htmlvar_name'];
903 903
 
904 904
     // Check if there is a custom field specific filter.
905
-    if(has_filter("geodir_custom_field_input_time_{$html_var}")){
905
+    if (has_filter("geodir_custom_field_input_time_{$html_var}")) {
906 906
         /**
907 907
          * Filter the time html by individual custom field.
908 908
          *
@@ -910,11 +910,11 @@  discard block
 block discarded – undo
910 910
          * @param array $cf The custom field array.
911 911
          * @since 1.6.6
912 912
          */
913
-        $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf);
913
+        $html = apply_filters("geodir_custom_field_input_time_{$html_var}", $html, $cf);
914 914
     }
915 915
 
916 916
     // If no html then we run the standard output.
917
-    if(empty($html)) {
917
+    if (empty($html)) {
918 918
 
919 919
         ob_start(); // Start  buffering;
920 920
         $value = geodir_get_cf_value($cf);
@@ -927,25 +927,25 @@  discard block
 block discarded – undo
927 927
         <script type="text/javascript">
928 928
             jQuery(document).ready(function () {
929 929
 
930
-                jQuery('#<?php echo $name;?>').timepicker({
930
+                jQuery('#<?php echo $name; ?>').timepicker({
931 931
                     showPeriod: true,
932 932
                     showLeadingZero: true,
933 933
                     showPeriod: true,
934 934
                 });
935 935
             });
936 936
         </script>
937
-        <div id="<?php echo $name;?>_row"
938
-             class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
937
+        <div id="<?php echo $name; ?>_row"
938
+             class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
939 939
             <label>
940 940
 
941 941
                 <?php $site_title = __($cf['site_title'], 'geodirectory');
942 942
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
943
-                <?php if ($cf['is_required']) echo '<span>*</span>';?>
943
+                <?php if ($cf['is_required']) echo '<span>*</span>'; ?>
944 944
             </label>
945
-            <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>"
946
-                   id="<?php echo $name;?>" value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/>
945
+            <input readonly="readonly" field_type="<?php echo $cf['type']; ?>" name="<?php echo $name; ?>"
946
+                   id="<?php echo $name; ?>" value="<?php echo esc_attr($value); ?>" type="text" class="geodir_textfield"/>
947 947
 
948
-            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span>
948
+            <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span>
949 949
             <?php if ($cf['is_required']) { ?>
950 950
                 <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span>
951 951
             <?php } ?>
@@ -956,7 +956,7 @@  discard block
 block discarded – undo
956 956
 
957 957
     return $html;
958 958
 }
959
-add_filter('geodir_custom_field_input_time','geodir_cfi_time',10,2);
959
+add_filter('geodir_custom_field_input_time', 'geodir_cfi_time', 10, 2);
960 960
 
961 961
 
962 962
 /**
@@ -968,12 +968,12 @@  discard block
 block discarded – undo
968 968
  *
969 969
  * @return string The html to output for the custom field.
970 970
  */
971
-function geodir_cfi_address($html,$cf){
971
+function geodir_cfi_address($html, $cf) {
972 972
 
973 973
     $html_var = $cf['htmlvar_name'];
974 974
 
975 975
     // Check if there is a custom field specific filter.
976
-    if(has_filter("geodir_custom_field_input_address_{$html_var}")){
976
+    if (has_filter("geodir_custom_field_input_address_{$html_var}")) {
977 977
         /**
978 978
          * Filter the address html by individual custom field.
979 979
          *
@@ -981,11 +981,11 @@  discard block
 block discarded – undo
981 981
          * @param array $cf The custom field array.
982 982
          * @since 1.6.6
983 983
          */
984
-        $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf);
984
+        $html = apply_filters("geodir_custom_field_input_address_{$html_var}", $html, $cf);
985 985
     }
986 986
 
987 987
     // If no html then we run the standard output.
988
-    if(empty($html)) {
988
+    if (empty($html)) {
989 989
 
990 990
         global $gd_session;
991 991
         ob_start(); // Start  buffering;
@@ -998,12 +998,12 @@  discard block
 block discarded – undo
998 998
         $site_title = $cf['site_title'];
999 999
         $is_admin = $cf['is_admin'];
1000 1000
         $extra_fields = stripslashes_deep(unserialize($cf['extra_fields']));
1001
-        $prefix = $name . '_';
1001
+        $prefix = $name.'_';
1002 1002
 
1003
-        ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address');
1004
-        ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code ');
1003
+        ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix.' address');
1004
+        ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix.' zip/post code ');
1005 1005
         ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map');
1006
-        ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview');
1006
+        ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix.' mapview');
1007 1007
 
1008 1008
         $address = '';
1009 1009
         $zip = '';
@@ -1014,21 +1014,21 @@  discard block
 block discarded – undo
1014 1014
 
1015 1015
         if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) {
1016 1016
             $post = $gd_ses_listing;
1017
-            $address = $post[$prefix . 'address'];
1018
-            $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : '';
1019
-            $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : '';
1020
-            $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : '';
1021
-            $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : '';
1022
-            $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : '';
1017
+            $address = $post[$prefix.'address'];
1018
+            $zip = isset($post[$prefix.'zip']) ? $post[$prefix.'zip'] : '';
1019
+            $lat = isset($post[$prefix.'latitude']) ? $post[$prefix.'latitude'] : '';
1020
+            $lng = isset($post[$prefix.'longitude']) ? $post[$prefix.'longitude'] : '';
1021
+            $mapview = isset($post[$prefix.'mapview']) ? $post[$prefix.'mapview'] : '';
1022
+            $mapzoom = isset($post[$prefix.'mapzoom']) ? $post[$prefix.'mapzoom'] : '';
1023 1023
         } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) {
1024
-            $post_info = (array)$post_info;
1025
-
1026
-            $address = $post_info[$prefix . 'address'];
1027
-            $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : '';
1028
-            $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : '';
1029
-            $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : '';
1030
-            $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : '';
1031
-            $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : '';
1024
+            $post_info = (array) $post_info;
1025
+
1026
+            $address = $post_info[$prefix.'address'];
1027
+            $zip = isset($post_info[$prefix.'zip']) ? $post_info[$prefix.'zip'] : '';
1028
+            $lat = isset($post_info[$prefix.'latitude']) ? $post_info[$prefix.'latitude'] : '';
1029
+            $lng = isset($post_info[$prefix.'longitude']) ? $post_info[$prefix.'longitude'] : '';
1030
+            $mapview = isset($post_info[$prefix.'mapview']) ? $post_info[$prefix.'mapview'] : '';
1031
+            $mapzoom = isset($post_info[$prefix.'mapzoom']) ? $post_info[$prefix.'mapzoom'] : '';
1032 1032
         }
1033 1033
 
1034 1034
         $location = geodir_get_default_location();
@@ -1065,16 +1065,16 @@  discard block
 block discarded – undo
1065 1065
 
1066 1066
         ?>
1067 1067
 
1068
-        <div id="geodir_<?php echo $prefix . 'address';?>_row"
1069
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1068
+        <div id="geodir_<?php echo $prefix.'address'; ?>_row"
1069
+             class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
1070 1070
             <label>
1071 1071
                 <?php _e($address_title, 'geodirectory'); ?>
1072
-                <?php if ($is_required) echo '<span>*</span>';?>
1072
+                <?php if ($is_required) echo '<span>*</span>'; ?>
1073 1073
             </label>
1074
-            <input type="text" field_type="<?php echo $type;?>" name="<?php echo $prefix . 'address';?>"
1075
-                   id="<?php echo $prefix . 'address';?>" class="geodir_textfield"
1074
+            <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'address'; ?>"
1075
+                   id="<?php echo $prefix.'address'; ?>" class="geodir_textfield"
1076 1076
                    value="<?php echo esc_attr(stripslashes($address)); ?>"/>
1077
-            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span>
1077
+            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?></span>
1078 1078
             <?php if ($is_required) { ?>
1079 1079
                 <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
1080 1080
             <?php } ?>
@@ -1094,14 +1094,14 @@  discard block
 block discarded – undo
1094 1094
 
1095 1095
         if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?>
1096 1096
 
1097
-            <div id="geodir_<?php echo $prefix . 'zip'; ?>_row"
1097
+            <div id="geodir_<?php echo $prefix.'zip'; ?>_row"
1098 1098
                  class="<?php /*if($is_required) echo 'required_field';*/ ?> geodir_form_row clearfix gd-fieldset-details">
1099 1099
                 <label>
1100 1100
                     <?php _e($zip_title, 'geodirectory'); ?>
1101 1101
                     <?php /*if($is_required) echo '<span>*</span>';*/ ?>
1102 1102
                 </label>
1103
-                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'zip'; ?>"
1104
-                       id="<?php echo $prefix . 'zip'; ?>" class="geodir_textfield autofill"
1103
+                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'zip'; ?>"
1104
+                       id="<?php echo $prefix.'zip'; ?>" class="geodir_textfield autofill"
1105 1105
                        value="<?php echo esc_attr(stripslashes($zip)); ?>"/>
1106 1106
                 <?php /*if($is_required) {?>
1107 1107
 					<span class="geodir_message_error"><?php echo _e($required_msg,'geodirectory');?></span>
@@ -1111,14 +1111,14 @@  discard block
 block discarded – undo
1111 1111
 
1112 1112
         <?php if (isset($extra_fields['show_map']) && $extra_fields['show_map']) { ?>
1113 1113
 
1114
-            <div id="geodir_<?php echo $prefix . 'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1114
+            <div id="geodir_<?php echo $prefix.'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1115 1115
                 <?php
1116 1116
                 /**
1117 1117
                  * Contains add listing page map functions.
1118 1118
                  *
1119 1119
                  * @since 1.0.0
1120 1120
                  */
1121
-                include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1121
+                include(geodir_plugin_path()."/geodirectory-functions/map-functions/map_on_add_listing_page.php");
1122 1122
                 if ($lat_lng_blank) {
1123 1123
                     $lat = '';
1124 1124
                     $lng = '';
@@ -1129,14 +1129,14 @@  discard block
 block discarded – undo
1129 1129
             <?php
1130 1130
             /* show lat lng */
1131 1131
             $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?>
1132
-            <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row"
1132
+            <div id="geodir_<?php echo $prefix.'latitude'; ?>_row"
1133 1133
                  class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1134 1134
                 <label>
1135 1135
                     <?php echo PLACE_ADDRESS_LAT; ?>
1136 1136
                     <?php if ($is_required) echo '<span>*</span>'; ?>
1137 1137
                 </label>
1138
-                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'latitude'; ?>"
1139
-                       id="<?php echo $prefix . 'latitude'; ?>" class="geodir_textfield"
1138
+                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'latitude'; ?>"
1139
+                       id="<?php echo $prefix.'latitude'; ?>" class="geodir_textfield"
1140 1140
                        value="<?php echo esc_attr(stripslashes($lat)); ?>" size="25"/>
1141 1141
                 <span class="geodir_message_note"><?php echo GET_LATITUDE_MSG; ?></span>
1142 1142
                 <?php if ($is_required) { ?>
@@ -1144,14 +1144,14 @@  discard block
 block discarded – undo
1144 1144
                 <?php } ?>
1145 1145
             </div>
1146 1146
 
1147
-            <div id="geodir_<?php echo $prefix . 'longitude'; ?>_row"
1147
+            <div id="geodir_<?php echo $prefix.'longitude'; ?>_row"
1148 1148
                  class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>>
1149 1149
                 <label>
1150 1150
                     <?php echo PLACE_ADDRESS_LNG; ?>
1151 1151
                     <?php if ($is_required) echo '<span>*</span>'; ?>
1152 1152
                 </label>
1153
-                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'longitude'; ?>"
1154
-                       id="<?php echo $prefix . 'longitude'; ?>" class="geodir_textfield"
1153
+                <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'longitude'; ?>"
1154
+                       id="<?php echo $prefix.'longitude'; ?>" class="geodir_textfield"
1155 1155
                        value="<?php echo esc_attr(stripslashes($lng)); ?>" size="25"/>
1156 1156
                 <span class="geodir_message_note"><?php echo GET_LOGNGITUDE_MSG; ?></span>
1157 1157
                 <?php if ($is_required) { ?>
@@ -1161,32 +1161,32 @@  discard block
 block discarded – undo
1161 1161
         <?php } ?>
1162 1162
 
1163 1163
         <?php if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) { ?>
1164
-            <div id="geodir_<?php echo $prefix . 'mapview'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1164
+            <div id="geodir_<?php echo $prefix.'mapview'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details">
1165 1165
                 <label><?php _e($mapview_title, 'geodirectory'); ?></label>
1166 1166
 
1167 1167
 
1168 1168
                     <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1169 1169
                                                             class="gd-checkbox"
1170
-                                                            name="<?php echo $prefix . 'mapview'; ?>"
1171
-                                                            id="<?php echo $prefix . 'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') {
1170
+                                                            name="<?php echo $prefix.'mapview'; ?>"
1171
+                                                            id="<?php echo $prefix.'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') {
1172 1172
                             echo 'checked="checked"';
1173 1173
                         } ?>  value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span>
1174 1174
                     <span class="geodir_user_define"> <input field_type="<?php echo $type; ?>" type="radio"
1175 1175
                                                              class="gd-checkbox"
1176
-                                                             name="<?php echo $prefix . 'mapview'; ?>"
1176
+                                                             name="<?php echo $prefix.'mapview'; ?>"
1177 1177
                                                              id="map_view1" <?php if ($mapview == 'SATELLITE') {
1178 1178
                             echo 'checked="checked"';
1179 1179
                         } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span>
1180 1180
 
1181 1181
                     <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1182 1182
                                                             class="gd-checkbox"
1183
-                                                            name="<?php echo $prefix . 'mapview'; ?>"
1183
+                                                            name="<?php echo $prefix.'mapview'; ?>"
1184 1184
                                                             id="map_view2" <?php if ($mapview == 'HYBRID') {
1185 1185
                             echo 'checked="checked"';
1186 1186
                         } ?>  value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span>
1187 1187
 					<span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio"
1188 1188
                                                             class="gd-checkbox"
1189
-                                                            name="<?php echo $prefix . 'mapview'; ?>"
1189
+                                                            name="<?php echo $prefix.'mapview'; ?>"
1190 1190
                                                             id="map_view3" <?php if ($mapview == 'TERRAIN') {
1191 1191
                             echo 'checked="checked"';
1192 1192
                         } ?>  value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span>
@@ -1198,7 +1198,7 @@  discard block
 block discarded – undo
1198 1198
         <?php if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { ?>
1199 1199
             <input type="hidden" value="<?php if (isset($mapzoom)) {
1200 1200
                 echo esc_attr($mapzoom);
1201
-            } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/>
1201
+            } ?>" name="<?php echo $prefix.'mapzoom'; ?>" id="<?php echo $prefix.'mapzoom'; ?>"/>
1202 1202
         <?php }
1203 1203
 
1204 1204
         $html = ob_get_clean();
@@ -1206,7 +1206,7 @@  discard block
 block discarded – undo
1206 1206
 
1207 1207
     return $html;
1208 1208
 }
1209
-add_filter('geodir_custom_field_input_address','geodir_cfi_address',10,2);
1209
+add_filter('geodir_custom_field_input_address', 'geodir_cfi_address', 10, 2);
1210 1210
 
1211 1211
 
1212 1212
 
@@ -1219,12 +1219,12 @@  discard block
 block discarded – undo
1219 1219
  *
1220 1220
  * @return string The html to output for the custom field.
1221 1221
  */
1222
-function geodir_cfi_taxonomy($html,$cf){
1222
+function geodir_cfi_taxonomy($html, $cf) {
1223 1223
 
1224 1224
     $html_var = $cf['htmlvar_name'];
1225 1225
 
1226 1226
     // Check if there is a custom field specific filter.
1227
-    if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){
1227
+    if (has_filter("geodir_custom_field_input_taxonomy_{$html_var}")) {
1228 1228
         /**
1229 1229
          * Filter the taxonomy html by individual custom field.
1230 1230
          *
@@ -1232,11 +1232,11 @@  discard block
 block discarded – undo
1232 1232
          * @param array $cf The custom field array.
1233 1233
          * @since 1.6.6
1234 1234
          */
1235
-        $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf);
1235
+        $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}", $html, $cf);
1236 1236
     }
1237 1237
 
1238 1238
     // If no html then we run the standard output.
1239
-    if(empty($html)) {
1239
+    if (empty($html)) {
1240 1240
 
1241 1241
         ob_start(); // Start  buffering;
1242 1242
         $value = geodir_get_cf_value($cf);
@@ -1251,15 +1251,15 @@  discard block
 block discarded – undo
1251 1251
         if ($value == $cf['default']) {
1252 1252
             $value = '';
1253 1253
         } ?>
1254
-        <div id="<?php echo $name;?>_row"
1255
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1254
+        <div id="<?php echo $name; ?>_row"
1255
+             class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
1256 1256
             <label>
1257 1257
                 <?php $site_title = __($site_title, 'geodirectory');
1258 1258
                 echo (trim($site_title)) ? $site_title : '&nbsp;'; ?>
1259
-                <?php if ($is_required) echo '<span>*</span>';?>
1259
+                <?php if ($is_required) echo '<span>*</span>'; ?>
1260 1260
             </label>
1261 1261
 
1262
-            <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
1262
+            <div id="<?php echo $name; ?>" class="geodir_taxonomy_field" style="float:left; width:70%;">
1263 1263
                 <?php
1264 1264
                 global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats;
1265 1265
 
@@ -1271,7 +1271,7 @@  discard block
 block discarded – undo
1271 1271
 
1272 1272
                     $package_info = array();
1273 1273
 
1274
-                    $package_info = (array)geodir_post_package_info($package_info, $post, $post_type);
1274
+                    $package_info = (array) geodir_post_package_info($package_info, $post, $post_type);
1275 1275
 
1276 1276
                     if (!empty($package_info)) {
1277 1277
 
@@ -1300,7 +1300,7 @@  discard block
 block discarded – undo
1300 1300
 
1301 1301
                     $catadd_limit = $wpdb->get_var(
1302 1302
                         $wpdb->prepare(
1303
-                            "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d",
1303
+                            "SELECT cat_limit FROM ".GEODIR_PRICE_TABLE." WHERE pid = %d",
1304 1304
                             array($package_id)
1305 1305
                         )
1306 1306
                     );
@@ -1316,13 +1316,13 @@  discard block
 block discarded – undo
1316 1316
                     $required_limit_msg = '';
1317 1317
                     if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') {
1318 1318
 
1319
-                        $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory');
1319
+                        $required_limit_msg = __('Only select', 'geodirectory').' '.$catadd_limit.__(' categories for this package.', 'geodirectory');
1320 1320
 
1321 1321
                     } else {
1322 1322
                         $required_limit_msg = $required_msg;
1323 1323
                     }
1324 1324
 
1325
-                    echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']"  />';
1325
+                    echo '<input type="hidden" cat_limit="'.$catadd_limit.'" id="cat_limit" value="'.esc_attr($required_limit_msg).'" name="cat_limit['.$name.']"  />';
1326 1326
 
1327 1327
 
1328 1328
                     if ($cat_display == 'select' || $cat_display == 'multiselect') {
@@ -1332,11 +1332,11 @@  discard block
 block discarded – undo
1332 1332
                         if ($cat_display == 'multiselect')
1333 1333
                             $multiple = 'multiple="multiple"';
1334 1334
 
1335
-                        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') . '">';
1335
+                        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').'">';
1336 1336
 
1337 1337
 
1338 1338
                         if ($cat_display == 'select')
1339
-                            echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>';
1339
+                            echo '<option value="">'.__('Select Category', 'geodirectory').'</option>';
1340 1340
 
1341 1341
                     }
1342 1342
 
@@ -1354,7 +1354,7 @@  discard block
 block discarded – undo
1354 1354
                 ?>
1355 1355
             </div>
1356 1356
 
1357
-            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span>
1357
+            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?></span>
1358 1358
             <?php if ($is_required) { ?>
1359 1359
                 <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
1360 1360
             <?php } ?>
@@ -1366,7 +1366,7 @@  discard block
 block discarded – undo
1366 1366
 
1367 1367
     return $html;
1368 1368
 }
1369
-add_filter('geodir_custom_field_input_taxonomy','geodir_cfi_taxonomy',10,2);
1369
+add_filter('geodir_custom_field_input_taxonomy', 'geodir_cfi_taxonomy', 10, 2);
1370 1370
 
1371 1371
 
1372 1372
 /**
@@ -1378,12 +1378,12 @@  discard block
 block discarded – undo
1378 1378
  *
1379 1379
  * @return string The html to output for the custom field.
1380 1380
  */
1381
-function geodir_cfi_file($html,$cf){
1381
+function geodir_cfi_file($html, $cf) {
1382 1382
 
1383 1383
     $html_var = $cf['htmlvar_name'];
1384 1384
 
1385 1385
     // Check if there is a custom field specific filter.
1386
-    if(has_filter("geodir_custom_field_input_file_{$html_var}")){
1386
+    if (has_filter("geodir_custom_field_input_file_{$html_var}")) {
1387 1387
         /**
1388 1388
          * Filter the file html by individual custom field.
1389 1389
          *
@@ -1391,11 +1391,11 @@  discard block
 block discarded – undo
1391 1391
          * @param array $cf The custom field array.
1392 1392
          * @since 1.6.6
1393 1393
          */
1394
-        $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf);
1394
+        $html = apply_filters("geodir_custom_field_input_file_{$html_var}", $html, $cf);
1395 1395
     }
1396 1396
 
1397 1397
     // If no html then we run the standard output.
1398
-    if(empty($html)) {
1398
+    if (empty($html)) {
1399 1399
 
1400 1400
         ob_start(); // Start  buffering;
1401 1401
         $value = geodir_get_cf_value($cf);
@@ -1438,8 +1438,8 @@  discard block
 block discarded – undo
1438 1438
                 $file_totImg = count($curImages);
1439 1439
         }
1440 1440
 
1441
-        $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']) : '';
1442
-        $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : '';
1441
+        $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']) : '';
1442
+        $display_file_types = $allowed_file_types != '' ? '.'.implode(", .", $extra_fields['gd_file_types']) : '';
1443 1443
 
1444 1444
         ?>
1445 1445
         <?php /*?> <h5 class="geodir-form_title"> <?php echo $site_title; ?>
@@ -1449,13 +1449,13 @@  discard block
 block discarded – undo
1449 1449
 			</h5>   <?php */
1450 1450
         ?>
1451 1451
 
1452
-        <div id="<?php echo $name;?>_row"
1453
-             class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details">
1452
+        <div id="<?php echo $name; ?>_row"
1453
+             class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details">
1454 1454
 
1455 1455
             <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;">
1456 1456
                 <label
1457 1457
                     style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory');
1458
-                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label>
1458
+                    echo $site_title; ?><?php if ($is_required) echo '<span>*</span>'; ?></label>
1459 1459
                 <input class="geodir-custom-file-upload" field_type="file" type="hidden"
1460 1460
                        name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>"
1461 1461
                        value="<?php echo esc_attr($file_value); ?>"/>
@@ -1463,7 +1463,7 @@  discard block
 block discarded – undo
1463 1463
                        id="<?php echo $file_id; ?>image_limit" value="<?php echo $file_image_limit; ?>"/>
1464 1464
                 <?php if ($allowed_file_types != '') { ?>
1465 1465
                     <input type="hidden" name="<?php echo $file_id; ?>_allowed_types"
1466
-                           id="<?php echo $file_id; ?>_allowed_types" value="<?php echo esc_attr($allowed_file_types); ?>" data-exts="<?php echo esc_attr($display_file_types);?>"/>
1466
+                           id="<?php echo $file_id; ?>_allowed_types" value="<?php echo esc_attr($allowed_file_types); ?>" data-exts="<?php echo esc_attr($display_file_types); ?>"/>
1467 1467
                 <?php } ?>
1468 1468
                 <input type="hidden" name="<?php echo $file_id; ?>totImg" id="<?php echo $file_id; ?>totImg"
1469 1469
                        value="<?php if (isset($file_totImg)) {
@@ -1479,10 +1479,10 @@  discard block
 block discarded – undo
1479 1479
                         <?php /*?><h4><?php _e('Drop files to upload');?></h4><br/><?php */
1480 1480
                         ?>
1481 1481
                         <input id="<?php echo $file_id; ?>plupload-browse-button" type="button"
1482
-                               value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory') ); ?>"
1482
+                               value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory')); ?>"
1483 1483
                                class="geodir_button" style="margin-top:10px;"/>
1484 1484
                             <span class="ajaxnonceplu"
1485
-                                  id="ajaxnonceplu<?php echo wp_create_nonce($file_id . 'pluploadan'); ?>"></span>
1485
+                                  id="ajaxnonceplu<?php echo wp_create_nonce($file_id.'pluploadan'); ?>"></span>
1486 1486
                         <?php if ($file_width && $file_height): ?>
1487 1487
                             <span class="plupload-resize"></span>
1488 1488
                             <span class="plupload-width" id="plupload-width<?php echo $file_width; ?>"></span>
@@ -1502,7 +1502,7 @@  discard block
 block discarded – undo
1502 1502
 
1503 1503
                 </div>
1504 1504
             </div>
1505
-            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?> <?php echo ( $display_file_types != '' ? __('Allowed file types:', 'geodirectory') . ' ' . $display_file_types : '' );?></span>
1505
+            <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?> <?php echo ($display_file_types != '' ? __('Allowed file types:', 'geodirectory').' '.$display_file_types : ''); ?></span>
1506 1506
             <?php if ($is_required) { ?>
1507 1507
                 <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
1508 1508
             <?php } ?>
@@ -1515,4 +1515,4 @@  discard block
 block discarded – undo
1515 1515
 
1516 1516
     return $html;
1517 1517
 }
1518
-add_filter('geodir_custom_field_input_file','geodir_cfi_file',10,2);
1519 1518
\ No newline at end of file
1519
+add_filter('geodir_custom_field_input_file', 'geodir_cfi_file', 10, 2);
1520 1520
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/Kleo.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 function geodir_kelo_title_translation( $args) {
13 13
     if(function_exists('geodir_is_geodir_page') && geodir_is_page('preview') ){
14 14
         $args['title'] = __(stripslashes_deep(esc_html($_POST['post_title'])),'geodirectory');
15
-    }elseif(function_exists('geodir_is_geodir_page')){
15
+    } elseif(function_exists('geodir_is_geodir_page')){
16 16
         $args['title'] = __($args['title'],'geodirectory');
17 17
     }
18 18
 
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 
11 11
 // Page titles translatable CPT names
12 12
 function geodir_kelo_title_translation( $args) {
13
-    if(function_exists('geodir_is_geodir_page') && geodir_is_page('preview') ){
14
-        $args['title'] = __(stripslashes_deep(esc_html($_POST['post_title'])),'geodirectory');
15
-    }elseif(function_exists('geodir_is_geodir_page')){
16
-        $args['title'] = __($args['title'],'geodirectory');
17
-    }
13
+	if(function_exists('geodir_is_geodir_page') && geodir_is_page('preview') ){
14
+		$args['title'] = __(stripslashes_deep(esc_html($_POST['post_title'])),'geodirectory');
15
+	}elseif(function_exists('geodir_is_geodir_page')){
16
+		$args['title'] = __($args['title'],'geodirectory');
17
+	}
18 18
 
19
-    return $args;
19
+	return $args;
20 20
 }
21 21
 add_filter( 'kleo_title_args', 'geodir_kelo_title_translation', 10, 1 );
22 22
 
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
  * @return object Modified query object.
32 32
  */
33 33
 function geodir_kleo_search_filter( $query ) {
34
-    if ( !empty( $query->is_search ) && geodir_is_page('search') && is_search() ) {
35
-        $query->set( 'post_type', 'any' );
36
-    }
37
-    return $query;
34
+	if ( !empty( $query->is_search ) && geodir_is_page('search') && is_search() ) {
35
+		$query->set( 'post_type', 'any' );
36
+	}
37
+	return $query;
38 38
 }
39 39
 if ( !is_admin() ) {
40
-    add_filter( 'pre_get_posts', 'geodir_kleo_search_filter', 11 );
40
+	add_filter( 'pre_get_posts', 'geodir_kleo_search_filter', 11 );
41 41
 }
42 42
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -9,16 +9,16 @@  discard block
 block discarded – undo
9 9
  */
10 10
 
11 11
 // Page titles translatable CPT names
12
-function geodir_kelo_title_translation( $args) {
13
-    if(function_exists('geodir_is_geodir_page') && geodir_is_page('preview') ){
14
-        $args['title'] = __(stripslashes_deep(esc_html($_POST['post_title'])),'geodirectory');
15
-    }elseif(function_exists('geodir_is_geodir_page')){
16
-        $args['title'] = __($args['title'],'geodirectory');
12
+function geodir_kelo_title_translation($args) {
13
+    if (function_exists('geodir_is_geodir_page') && geodir_is_page('preview')) {
14
+        $args['title'] = __(stripslashes_deep(esc_html($_POST['post_title'])), 'geodirectory');
15
+    }elseif (function_exists('geodir_is_geodir_page')) {
16
+        $args['title'] = __($args['title'], 'geodirectory');
17 17
     }
18 18
 
19 19
     return $args;
20 20
 }
21
-add_filter( 'kleo_title_args', 'geodir_kelo_title_translation', 10, 1 );
21
+add_filter('kleo_title_args', 'geodir_kelo_title_translation', 10, 1);
22 22
 
23 23
 /**
24 24
  * Fix search returns all the posts for Kleo theme.
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
  * @param object $query Current query object.
31 31
  * @return object Modified query object.
32 32
  */
33
-function geodir_kleo_search_filter( $query ) {
34
-    if ( !empty( $query->is_search ) && geodir_is_page('search') && is_search() ) {
35
-        $query->set( 'post_type', 'any' );
33
+function geodir_kleo_search_filter($query) {
34
+    if (!empty($query->is_search) && geodir_is_page('search') && is_search()) {
35
+        $query->set('post_type', 'any');
36 36
     }
37 37
     return $query;
38 38
 }
39
-if ( !is_admin() ) {
40
-    add_filter( 'pre_get_posts', 'geodir_kleo_search_filter', 11 );
39
+if (!is_admin()) {
40
+    add_filter('pre_get_posts', 'geodir_kleo_search_filter', 11);
41 41
 }
42 42
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory_shortcodes.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -427,7 +427,7 @@
 block discarded – undo
427 427
         }
428 428
 
429 429
         return $output;
430
-    }else{
430
+    } else{
431 431
         ob_start();
432 432
         add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
433 433
         add_action('the_post', 'create_list_jsondata'); // Add marker in json array
Please login to merge, or discard this patch.
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -197,14 +197,14 @@  discard block
 block discarded – undo
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199 199
         $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
200
+        if (get_option('geodir_marker_cluster_type')) {
201 201
             if ($map_args['autozoom']) {
202 202
                 $map_args['enable_marker_cluster_no_reposition'] = false;
203 203
             } else {
204 204
                 $map_args['enable_marker_cluster_no_reposition'] = true;
205 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 {
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 	}
213 213
 
214 214
     // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
215
+    if (!empty($params['latitude']) && !empty($params['longitude'])) {
216 216
         $map_args['enable_marker_cluster_no_reposition'] = true;
217 217
     }
218 218
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267 267
     // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
268
+    if (isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type'])) {
269 269
 
270 270
         global $add_post_in_marker_array, $gd_sc_map_params;
271 271
         $backup_globals                             = array();
@@ -288,34 +288,34 @@  discard block
 block discarded – undo
288 288
             'event_type'     => 'all'
289 289
         );
290 290
 
291
-        $params = shortcode_atts( $defaults, $atts );
291
+        $params = shortcode_atts($defaults, $atts);
292 292
 
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
293
+        if (!(gdsc_is_post_type_valid($params['post_type']))) {
294 294
             $params['post_type'] = 'gd_place';
295 295
         }
296 296
 
297 297
         // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
298
+        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
299
+        $categories        = get_terms($category_taxonomy, array(
300 300
             'orderby' => 'count',
301 301
             'order'   => 'DESC',
302 302
             'fields'  => 'ids'
303
-        ) );
303
+        ));
304 304
 
305 305
         // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
306
+        if (!(is_array($params['category']))) {
307
+            $params['category'] = explode(',', $params['category']);
308 308
         }
309 309
 
310 310
         // Array_intersect returns only the items in $params['category'] that are also in our category list
311 311
         // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
312
+        $params['category'] = array_intersect($params['category'], $categories);
313 313
 
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
314
+        if ($params['post_type'] == 'gd_event') {
315
+            $params['event_type'] = gdsc_validate_list_filter_choice($params['event_type']);
316 316
         }
317 317
 
318
-        $params = gdsc_validate_map_args( $params );
318
+        $params = gdsc_validate_map_args($params);
319 319
 
320 320
         $gd_sc_map_params = $params;
321 321
 
@@ -326,12 +326,12 @@  discard block
 block discarded – undo
326 326
             'post_type'      => $params['post_type'],
327 327
         );
328 328
 
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
329
+        if (!empty($params['category']) && isset($params['category'][0]) && (int) $params['category'][0] != 0) {
330
+            $category_taxonomy = geodir_get_taxonomies($params['post_type']);
331 331
 
332 332
             ######### WPML #########
333
-            if ( function_exists( 'icl_object_id' ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
333
+            if (function_exists('icl_object_id')) {
334
+                $category = gd_lang_object_ids($params['category'], $category_taxonomy[0]);
335 335
             }
336 336
             ######### WPML #########
337 337
 
@@ -341,36 +341,36 @@  discard block
 block discarded – undo
341 341
                 'terms'    => $params['category']
342 342
             );
343 343
 
344
-            $query_args['tax_query'] = array( $tax_query );
344
+            $query_args['tax_query'] = array($tax_query);
345 345
         }
346 346
 
347 347
         $add_post_in_marker_array = true;
348 348
 
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
349
+        if ($params['post_type'] == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
350 350
             global $geodir_event_widget_listview;
351 351
             $geodir_event_widget_listview = true;
352 352
 
353 353
             $query_args['geodir_event_type'] = $params['event_type'];
354 354
 
355
-            $listings = geodir_event_get_widget_events( $query_args );
355
+            $listings = geodir_event_get_widget_events($query_args);
356 356
 
357 357
             $geodir_event_widget_listview = false;
358 358
         } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
359
+            $listings = geodir_get_widget_listings($query_args);
360 360
         }
361 361
 
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
362
+        if (!empty($listings)) {
363
+            foreach ($listings as $listing) {
364
+                create_marker_jason_of_posts($listing);
365 365
             }
366 366
         }
367 367
 
368 368
         ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
369
+        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
370 370
 
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
371
+        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
372 372
 
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
373
+        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
374 374
 
375 375
         $default_location = geodir_get_default_location();
376 376
 
@@ -391,17 +391,17 @@  discard block
 block discarded – undo
391 391
             'enable_location_filters'  => false,
392 392
             'enable_jason_on_load'     => true,
393 393
             'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
394
+            'latitude'                 => isset($default_location->city_latitude) ? $default_location->city_latitude : '',
395
+            'longitude'                => isset($default_location->city_longitude) ? $default_location->city_longitude : '',
396 396
             'streetViewControl'        => true,
397 397
             'showPreview'              => '0',
398 398
             'maxZoom'                  => 21,
399 399
             'bubble_size'              => 'small',
400 400
         );
401 401
 
402
-        if ( is_single() ) {
402
+        if (is_single()) {
403 403
             global $post;
404
-            if ( isset( $post->post_latitude ) ) {
404
+            if (isset($post->post_latitude)) {
405 405
                 $map_args['latitude']  = $post->post_latitude;
406 406
                 $map_args['longitude'] = $post->post_longitude;
407 407
             }
@@ -412,24 +412,24 @@  discard block
 block discarded – undo
412 412
         }
413 413
 
414 414
         // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
415
+        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
416 416
             $map_args['enable_marker_cluster'] = true;
417 417
         } else {
418 418
             $map_args['enable_marker_cluster'] = false;
419 419
         }
420 420
 
421
-        geodir_draw_map( $map_args );
421
+        geodir_draw_map($map_args);
422 422
 
423 423
         $output = ob_get_contents();
424 424
 
425 425
         ob_end_clean();
426 426
 
427
-        foreach ( $backup_globals as $global => $value ) {
427
+        foreach ($backup_globals as $global => $value) {
428 428
             ${$global} = $value;
429 429
         }
430 430
 
431 431
         return $output;
432
-    }else{
432
+    } else {
433 433
         ob_start();
434 434
         add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435 435
         add_action('the_post', 'create_list_jsondata'); // Add marker in json array
@@ -1047,20 +1047,20 @@  discard block
 block discarded – undo
1047 1047
 	
1048 1048
 	$show_adv_search = isset($params['show_adv_search']) && in_array($params['show_adv_search'], array('default', 'always', 'searched')) ? $params['show_adv_search'] : '';
1049 1049
 	
1050
-	if ($show_adv_search != '' ) {
1051
-		$show_adv_class = 'geodir-advance-search-' . $show_adv_search . ' ';
1050
+	if ($show_adv_search != '') {
1051
+		$show_adv_class = 'geodir-advance-search-'.$show_adv_search.' ';
1052 1052
 		if ($show_adv_search == 'searched' && geodir_is_page('search')) {
1053 1053
 			$show_adv_search = 'search';
1054 1054
 		}
1055
-		$show_adv_attrs = 'data-show-adv="' . $show_adv_search . '"';
1055
+		$show_adv_attrs = 'data-show-adv="'.$show_adv_search.'"';
1056 1056
 		
1057
-		$params['before_widget'] = str_replace('class="', $show_adv_attrs . ' class="' . $show_adv_class, $params['before_widget']);
1057
+		$params['before_widget'] = str_replace('class="', $show_adv_attrs.' class="'.$show_adv_class, $params['before_widget']);
1058 1058
 	}
1059 1059
 	
1060 1060
 	ob_start();
1061 1061
 	
1062 1062
 	//geodir_get_template_part('listing', 'filter-form');
1063
-	the_widget('geodir_advance_search_widget', $params, $params );
1063
+	the_widget('geodir_advance_search_widget', $params, $params);
1064 1064
 	
1065 1065
 	$output = ob_get_contents();
1066 1066
     ob_end_clean();
@@ -1260,7 +1260,7 @@  discard block
 block discarded – undo
1260 1260
 
1261 1261
     // Validate character_count
1262 1262
     //todo: is this necessary?
1263
-    $params['character_count']  = $params['character_count'];
1263
+    $params['character_count'] = $params['character_count'];
1264 1264
 
1265 1265
     // Validate our layout choice
1266 1266
     // Outside of the norm, I added some more simple terms to match the existing
@@ -1272,7 +1272,7 @@  discard block
 block discarded – undo
1272 1272
 
1273 1273
     // Validate Listing width, used in the template widget-listing-listview.php
1274 1274
     // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1275
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1275
+    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1276 1276
 
1277 1277
     // Validate the checkboxes used on the widget
1278 1278
     $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
@@ -1288,7 +1288,7 @@  discard block
 block discarded – undo
1288 1288
     if (!empty($params['tags'])) {
1289 1289
         if (!is_array($params['tags'])) {
1290 1290
             $comma = _x(',', 'tag delimiter');
1291
-            if ( ',' !== $comma ) {
1291
+            if (',' !== $comma) {
1292 1292
                 $params['tags'] = str_replace($comma, ',', $params['tags']);
1293 1293
             }
1294 1294
             $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
@@ -1310,13 +1310,13 @@  discard block
 block discarded – undo
1310 1310
         unset($atts['pageno']);
1311 1311
     }
1312 1312
 
1313
-    if ( !empty($atts['shortcode_content']) ) {
1313
+    if (!empty($atts['shortcode_content'])) {
1314 1314
         $content = $atts['shortcode_content'];
1315 1315
     }
1316 1316
     $params['shortcode_content'] = trim($content);
1317 1317
     $atts['shortcode_content'] = trim($content);
1318 1318
     
1319
-    $params['shortcode_atts']       = $atts;
1319
+    $params['shortcode_atts'] = $atts;
1320 1320
 
1321 1321
     $output = geodir_sc_gd_listings_output($params);
1322 1322
 
@@ -1388,8 +1388,8 @@  discard block
 block discarded – undo
1388 1388
     // Validate the checkboxes used on the widget
1389 1389
     $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1390 1390
     $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1391
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1392
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1391
+    $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']);
1392
+    $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']);
1393 1393
 
1394 1394
     if ($params['max_count'] != 'all') {
1395 1395
         $params['max_count'] = absint($params['max_count']);
Please login to merge, or discard this patch.
Indentation   +888 added lines, -888 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
 
@@ -264,243 +264,243 @@  discard block
 block discarded – undo
264 264
  */
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267
-    // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
-
270
-        global $add_post_in_marker_array, $gd_sc_map_params;
271
-        $backup_globals                             = array();
272
-        $backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
-        $backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
-
275
-        $defaults = array(
276
-            'width'          => '294',
277
-            'height'         => '370',
278
-            'zoom'           => '13',
279
-            'autozoom'       => '',
280
-            'sticky'         => '',
281
-            'showall'        => '0',
282
-            'scrollwheel'    => '0',
283
-            'maptype'        => 'ROADMAP',
284
-            'child_collapse' => 0,
285
-            'marker_cluster' => false,
286
-            'post_type'      => 'gd_place',
287
-            'category'       => '0',
288
-            'event_type'     => 'all'
289
-        );
290
-
291
-        $params = shortcode_atts( $defaults, $atts );
292
-
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
-            $params['post_type'] = 'gd_place';
295
-        }
296
-
297
-        // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
300
-            'orderby' => 'count',
301
-            'order'   => 'DESC',
302
-            'fields'  => 'ids'
303
-        ) );
304
-
305
-        // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
308
-        }
309
-
310
-        // Array_intersect returns only the items in $params['category'] that are also in our category list
311
-        // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
313
-
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
-        }
317
-
318
-        $params = gdsc_validate_map_args( $params );
319
-
320
-        $gd_sc_map_params = $params;
321
-
322
-        $query_args = array(
323
-            'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
-            'is_geodir_loop' => true,
325
-            'gd_location'    => false,
326
-            'post_type'      => $params['post_type'],
327
-        );
328
-
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
-
332
-            ######### WPML #########
333
-            if ( function_exists( 'icl_object_id' ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
-            }
336
-            ######### WPML #########
337
-
338
-            $tax_query = array(
339
-                'taxonomy' => $category_taxonomy[0],
340
-                'field'    => 'id',
341
-                'terms'    => $params['category']
342
-            );
343
-
344
-            $query_args['tax_query'] = array( $tax_query );
345
-        }
346
-
347
-        $add_post_in_marker_array = true;
348
-
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
-            global $geodir_event_widget_listview;
351
-            $geodir_event_widget_listview = true;
352
-
353
-            $query_args['geodir_event_type'] = $params['event_type'];
354
-
355
-            $listings = geodir_event_get_widget_events( $query_args );
356
-
357
-            $geodir_event_widget_listview = false;
358
-        } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
360
-        }
361
-
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
365
-            }
366
-        }
367
-
368
-        ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
-
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
-
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
-
375
-        $default_location = geodir_get_default_location();
376
-
377
-        $map_args = array(
378
-            'map_canvas_name'          => 'gd_listing_map',
379
-            'width'                    => $params['width'],
380
-            'height'                   => $params['height'],
381
-            'zoom'                     => $params['zoom'],
382
-            'autozoom'                 => $params['autozoom'],
383
-            'sticky'                   => $params['sticky'],
384
-            'showall'                  => $params['showall'],
385
-            'scrollwheel'              => $params['scrollwheel'],
386
-            'maptype'                  => $params['maptype'],
387
-            'child_collapse'           => 0,
388
-            'enable_cat_filters'       => false,
389
-            'enable_text_search'       => false,
390
-            'enable_post_type_filters' => false,
391
-            'enable_location_filters'  => false,
392
-            'enable_jason_on_load'     => true,
393
-            'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
-            'streetViewControl'        => true,
397
-            'showPreview'              => '0',
398
-            'maxZoom'                  => 21,
399
-            'bubble_size'              => 'small',
400
-        );
401
-
402
-        if ( is_single() ) {
403
-            global $post;
404
-            if ( isset( $post->post_latitude ) ) {
405
-                $map_args['latitude']  = $post->post_latitude;
406
-                $map_args['longitude'] = $post->post_longitude;
407
-            }
408
-
409
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
-        } else {
411
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
412
-        }
413
-
414
-        // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
-            $map_args['enable_marker_cluster'] = true;
417
-        } else {
418
-            $map_args['enable_marker_cluster'] = false;
419
-        }
420
-
421
-        geodir_draw_map( $map_args );
422
-
423
-        $output = ob_get_contents();
424
-
425
-        ob_end_clean();
426
-
427
-        foreach ( $backup_globals as $global => $value ) {
428
-            ${$global} = $value;
429
-        }
430
-
431
-        return $output;
432
-    }else{
433
-        ob_start();
434
-        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
-        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
-        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
-        $defaults = array(
438
-            'width' => '294',
439
-            'height' => '370',
440
-            'zoom' => '13',
441
-            'autozoom' => '',
442
-            'sticky' => '',
443
-            'showall' => '0',
444
-            'scrollwheel' => '0',
445
-            'maptype' => 'ROADMAP',
446
-            'child_collapse' => 0,
447
-            'marker_cluster' => false
448
-        );
449
-        $params = shortcode_atts($defaults, $atts);
450
-        $params = gdsc_validate_map_args($params);
451
-        $map_args = array(
452
-            'map_canvas_name' => 'gd_listing_map',
453
-            'width' => $params['width'],
454
-            'height' => $params['height'],
455
-            'zoom' => $params['zoom'],
456
-            'autozoom' => $params['autozoom'],
457
-            'sticky' => $params['sticky'],
458
-            'showall' => $params['showall'],
459
-            'scrollwheel' => $params['scrollwheel'],
460
-            'child_collapse' => 0,
461
-            'enable_cat_filters' => false,
462
-            'enable_text_search' => false,
463
-            'enable_post_type_filters' => false,
464
-            'enable_location_filters' => false,
465
-            'enable_jason_on_load' => true,
466
-        );
467
-        if (is_single()) {
468
-            global $post;
469
-            $map_default_lat = $address_latitude = $post->post_latitude;
470
-            $map_default_lng = $address_longitude = $post->post_longitude;
471
-            $mapview = $post->post_mapview;
472
-            $map_args['zoom'] = $post->post_mapzoom;
473
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
-        } else {
475
-            $default_location = geodir_get_default_location();
476
-            $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
-            $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
479
-        }
480
-        if (empty($mapview)) {
481
-            $mapview = 'ROADMAP';
482
-        }
483
-        // Set default map options
484
-        $map_args['ajax_url'] = geodir_get_ajax_url();
485
-        $map_args['latitude'] = $map_default_lat;
486
-        $map_args['longitude'] = $map_default_lng;
487
-        $map_args['streetViewControl'] = true;
488
-        $map_args['maptype'] = $mapview;
489
-        $map_args['showPreview'] = '0';
490
-        $map_args['maxZoom'] = 21;
491
-        $map_args['bubble_size'] = 'small';
492
-
493
-        // Add marker cluster
494
-        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
-            $map_args['enable_marker_cluster'] = true;
496
-        } else {
497
-            $map_args['enable_marker_cluster'] = false;
498
-        }
499
-        geodir_draw_map($map_args);
500
-        $output = ob_get_contents();
501
-        ob_end_clean();
502
-        return $output;
503
-    }
267
+	// if some params are set then we need a new query, if not then we can use the main query
268
+	if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
+
270
+		global $add_post_in_marker_array, $gd_sc_map_params;
271
+		$backup_globals                             = array();
272
+		$backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
+		$backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
+
275
+		$defaults = array(
276
+			'width'          => '294',
277
+			'height'         => '370',
278
+			'zoom'           => '13',
279
+			'autozoom'       => '',
280
+			'sticky'         => '',
281
+			'showall'        => '0',
282
+			'scrollwheel'    => '0',
283
+			'maptype'        => 'ROADMAP',
284
+			'child_collapse' => 0,
285
+			'marker_cluster' => false,
286
+			'post_type'      => 'gd_place',
287
+			'category'       => '0',
288
+			'event_type'     => 'all'
289
+		);
290
+
291
+		$params = shortcode_atts( $defaults, $atts );
292
+
293
+		if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
+			$params['post_type'] = 'gd_place';
295
+		}
296
+
297
+		// Validate the selected category/ies - Grab the current list based on post_type
298
+		$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
+		$categories        = get_terms( $category_taxonomy, array(
300
+			'orderby' => 'count',
301
+			'order'   => 'DESC',
302
+			'fields'  => 'ids'
303
+		) );
304
+
305
+		// Make sure we have an array
306
+		if ( ! ( is_array( $params['category'] ) ) ) {
307
+			$params['category'] = explode( ',', $params['category'] );
308
+		}
309
+
310
+		// Array_intersect returns only the items in $params['category'] that are also in our category list
311
+		// Otherwise it becomes empty and later on that will mean "All"
312
+		$params['category'] = array_intersect( $params['category'], $categories );
313
+
314
+		if ( $params['post_type'] == 'gd_event' ) {
315
+			$params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
+		}
317
+
318
+		$params = gdsc_validate_map_args( $params );
319
+
320
+		$gd_sc_map_params = $params;
321
+
322
+		$query_args = array(
323
+			'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
+			'is_geodir_loop' => true,
325
+			'gd_location'    => false,
326
+			'post_type'      => $params['post_type'],
327
+		);
328
+
329
+		if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
+			$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
+
332
+			######### WPML #########
333
+			if ( function_exists( 'icl_object_id' ) ) {
334
+				$category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
+			}
336
+			######### WPML #########
337
+
338
+			$tax_query = array(
339
+				'taxonomy' => $category_taxonomy[0],
340
+				'field'    => 'id',
341
+				'terms'    => $params['category']
342
+			);
343
+
344
+			$query_args['tax_query'] = array( $tax_query );
345
+		}
346
+
347
+		$add_post_in_marker_array = true;
348
+
349
+		if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
+			global $geodir_event_widget_listview;
351
+			$geodir_event_widget_listview = true;
352
+
353
+			$query_args['geodir_event_type'] = $params['event_type'];
354
+
355
+			$listings = geodir_event_get_widget_events( $query_args );
356
+
357
+			$geodir_event_widget_listview = false;
358
+		} else {
359
+			$listings = geodir_get_widget_listings( $query_args );
360
+		}
361
+
362
+		if ( ! empty( $listings ) ) {
363
+			foreach ( $listings as $listing ) {
364
+				create_marker_jason_of_posts( $listing );
365
+			}
366
+		}
367
+
368
+		ob_start();
369
+		add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
+
371
+		add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
+
373
+		add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
+
375
+		$default_location = geodir_get_default_location();
376
+
377
+		$map_args = array(
378
+			'map_canvas_name'          => 'gd_listing_map',
379
+			'width'                    => $params['width'],
380
+			'height'                   => $params['height'],
381
+			'zoom'                     => $params['zoom'],
382
+			'autozoom'                 => $params['autozoom'],
383
+			'sticky'                   => $params['sticky'],
384
+			'showall'                  => $params['showall'],
385
+			'scrollwheel'              => $params['scrollwheel'],
386
+			'maptype'                  => $params['maptype'],
387
+			'child_collapse'           => 0,
388
+			'enable_cat_filters'       => false,
389
+			'enable_text_search'       => false,
390
+			'enable_post_type_filters' => false,
391
+			'enable_location_filters'  => false,
392
+			'enable_jason_on_load'     => true,
393
+			'ajax_url'                 => geodir_get_ajax_url(),
394
+			'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
+			'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
+			'streetViewControl'        => true,
397
+			'showPreview'              => '0',
398
+			'maxZoom'                  => 21,
399
+			'bubble_size'              => 'small',
400
+		);
401
+
402
+		if ( is_single() ) {
403
+			global $post;
404
+			if ( isset( $post->post_latitude ) ) {
405
+				$map_args['latitude']  = $post->post_latitude;
406
+				$map_args['longitude'] = $post->post_longitude;
407
+			}
408
+
409
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
+		} else {
411
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
412
+		}
413
+
414
+		// Add marker cluster
415
+		if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
+			$map_args['enable_marker_cluster'] = true;
417
+		} else {
418
+			$map_args['enable_marker_cluster'] = false;
419
+		}
420
+
421
+		geodir_draw_map( $map_args );
422
+
423
+		$output = ob_get_contents();
424
+
425
+		ob_end_clean();
426
+
427
+		foreach ( $backup_globals as $global => $value ) {
428
+			${$global} = $value;
429
+		}
430
+
431
+		return $output;
432
+	}else{
433
+		ob_start();
434
+		add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
+		add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
+		add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
+		$defaults = array(
438
+			'width' => '294',
439
+			'height' => '370',
440
+			'zoom' => '13',
441
+			'autozoom' => '',
442
+			'sticky' => '',
443
+			'showall' => '0',
444
+			'scrollwheel' => '0',
445
+			'maptype' => 'ROADMAP',
446
+			'child_collapse' => 0,
447
+			'marker_cluster' => false
448
+		);
449
+		$params = shortcode_atts($defaults, $atts);
450
+		$params = gdsc_validate_map_args($params);
451
+		$map_args = array(
452
+			'map_canvas_name' => 'gd_listing_map',
453
+			'width' => $params['width'],
454
+			'height' => $params['height'],
455
+			'zoom' => $params['zoom'],
456
+			'autozoom' => $params['autozoom'],
457
+			'sticky' => $params['sticky'],
458
+			'showall' => $params['showall'],
459
+			'scrollwheel' => $params['scrollwheel'],
460
+			'child_collapse' => 0,
461
+			'enable_cat_filters' => false,
462
+			'enable_text_search' => false,
463
+			'enable_post_type_filters' => false,
464
+			'enable_location_filters' => false,
465
+			'enable_jason_on_load' => true,
466
+		);
467
+		if (is_single()) {
468
+			global $post;
469
+			$map_default_lat = $address_latitude = $post->post_latitude;
470
+			$map_default_lng = $address_longitude = $post->post_longitude;
471
+			$mapview = $post->post_mapview;
472
+			$map_args['zoom'] = $post->post_mapzoom;
473
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
+		} else {
475
+			$default_location = geodir_get_default_location();
476
+			$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
+			$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
479
+		}
480
+		if (empty($mapview)) {
481
+			$mapview = 'ROADMAP';
482
+		}
483
+		// Set default map options
484
+		$map_args['ajax_url'] = geodir_get_ajax_url();
485
+		$map_args['latitude'] = $map_default_lat;
486
+		$map_args['longitude'] = $map_default_lng;
487
+		$map_args['streetViewControl'] = true;
488
+		$map_args['maptype'] = $mapview;
489
+		$map_args['showPreview'] = '0';
490
+		$map_args['maxZoom'] = 21;
491
+		$map_args['bubble_size'] = 'small';
492
+
493
+		// Add marker cluster
494
+		if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
+			$map_args['enable_marker_cluster'] = true;
496
+		} else {
497
+			$map_args['enable_marker_cluster'] = false;
498
+		}
499
+		geodir_draw_map($map_args);
500
+		$output = ob_get_contents();
501
+		ob_end_clean();
502
+		return $output;
503
+	}
504 504
 }
505 505
 
506 506
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -533,120 +533,120 @@  discard block
 block discarded – undo
533 533
  */
534 534
 function geodir_sc_listing_slider($atts)
535 535
 {
536
-    ob_start();
537
-    $defaults = array(
538
-        'post_type' => 'gd_place',
539
-        'category' => '0',
540
-        'post_number' => '5',
541
-        'slideshow' => '0',
542
-        'animation_loop' => 0,
543
-        'direction_nav' => 0,
544
-        'slideshow_speed' => 5000,
545
-        'animation_speed' => 600,
546
-        'animation' => 'slide',
547
-        'order_by' => 'latest',
548
-        'show_title' => '',
549
-        'show_featured_only' => '',
550
-        'title' => '',
551
-    );
552
-
553
-    $params = shortcode_atts($defaults, $atts);
554
-
555
-
556
-    /*
536
+	ob_start();
537
+	$defaults = array(
538
+		'post_type' => 'gd_place',
539
+		'category' => '0',
540
+		'post_number' => '5',
541
+		'slideshow' => '0',
542
+		'animation_loop' => 0,
543
+		'direction_nav' => 0,
544
+		'slideshow_speed' => 5000,
545
+		'animation_speed' => 600,
546
+		'animation' => 'slide',
547
+		'order_by' => 'latest',
548
+		'show_title' => '',
549
+		'show_featured_only' => '',
550
+		'title' => '',
551
+	);
552
+
553
+	$params = shortcode_atts($defaults, $atts);
554
+
555
+
556
+	/*
557 557
      *
558 558
      * Now we begin the validation of the attributes.
559 559
      */
560
-    // Check we have a valid post_type
561
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
-        $params['post_type'] = 'gd_place';
563
-    }
564
-
565
-    // Check we have a valid sort_order
566
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
-
568
-    // Match the chosen animation to our options
569
-    $animation_list = array('slide', 'fade');
570
-    if (!(in_array($params['animation'], $animation_list))) {
571
-        $params['animation'] = 'slide';
572
-    }
573
-
574
-    // Post_number needs to be a positive integer
575
-    $params['post_number'] = absint($params['post_number']);
576
-    if (0 == $params['post_number']) {
577
-        $params['post_number'] = 1;
578
-    }
579
-
580
-    // Manage the entered categories
581
-    if (0 != $params['category'] || '' != $params['category']) {
582
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
-    }
584
-    // Convert show_title to a bool
585
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
-
587
-    // Convert show_featured_only to a bool
588
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
-
590
-    /*
560
+	// Check we have a valid post_type
561
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
+		$params['post_type'] = 'gd_place';
563
+	}
564
+
565
+	// Check we have a valid sort_order
566
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
+
568
+	// Match the chosen animation to our options
569
+	$animation_list = array('slide', 'fade');
570
+	if (!(in_array($params['animation'], $animation_list))) {
571
+		$params['animation'] = 'slide';
572
+	}
573
+
574
+	// Post_number needs to be a positive integer
575
+	$params['post_number'] = absint($params['post_number']);
576
+	if (0 == $params['post_number']) {
577
+		$params['post_number'] = 1;
578
+	}
579
+
580
+	// Manage the entered categories
581
+	if (0 != $params['category'] || '' != $params['category']) {
582
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
+	}
584
+	// Convert show_title to a bool
585
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
+
587
+	// Convert show_featured_only to a bool
588
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
+
590
+	/*
591 591
      * Hopefully all attributes are now valid, and safe to pass forward
592 592
      */
593 593
 
594
-    // redeclare vars after validation
595
-
596
-    if (isset($params['direction_nav'])) {
597
-        $params['directionNav'] = $params['direction_nav'];
598
-    }
599
-    if (isset($params['animation_loop'])) {
600
-        $params['animationLoop'] = $params['animation_loop'];
601
-    }
602
-    if (isset($params['slideshow_speed'])) {
603
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
604
-    }
605
-    if (isset($params['animation_speed'])) {
606
-        $params['animationSpeed'] = $params['animation_speed'];
607
-    }
608
-    if (isset($params['order_by'])) {
609
-        $params['list_sort'] = $params['order_by'];
610
-    }
611
-
612
-    $query_args = array(
613
-        'post_number' => $params['post_number'],
614
-        'is_geodir_loop' => true,
615
-        'post_type' => $params['post_type'],
616
-        'order_by' => $params['order_by']
617
-    );
618
-
619
-    if (1 == $params['show_featured_only']) {
620
-        $query_args['show_featured_only'] = 1;
621
-    }
622
-
623
-    if (0 != $params['category'] && '' != $params['category']) {
624
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
-        $tax_query = array(
626
-            'taxonomy' => $category_taxonomy[0],
627
-            'field' => 'id',
628
-            'terms' => $params['category'],
629
-        );
630
-
631
-        $query_args['tax_query'] = array($tax_query);
632
-    }
633
-
634
-    $defaults = array(
635
-        'before_widget' => '',
636
-        'after_widget' => '',
637
-        'before_title' => '',
638
-        'after_title' => '',
639
-    );
640
-
641
-    $query_args = array_merge($query_args, $params);
642
-
643
-    geodir_listing_slider_widget_output($defaults, $query_args);
644
-
645
-    $output = ob_get_contents();
646
-
647
-    ob_end_clean();
648
-
649
-    return $output;
594
+	// redeclare vars after validation
595
+
596
+	if (isset($params['direction_nav'])) {
597
+		$params['directionNav'] = $params['direction_nav'];
598
+	}
599
+	if (isset($params['animation_loop'])) {
600
+		$params['animationLoop'] = $params['animation_loop'];
601
+	}
602
+	if (isset($params['slideshow_speed'])) {
603
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
604
+	}
605
+	if (isset($params['animation_speed'])) {
606
+		$params['animationSpeed'] = $params['animation_speed'];
607
+	}
608
+	if (isset($params['order_by'])) {
609
+		$params['list_sort'] = $params['order_by'];
610
+	}
611
+
612
+	$query_args = array(
613
+		'post_number' => $params['post_number'],
614
+		'is_geodir_loop' => true,
615
+		'post_type' => $params['post_type'],
616
+		'order_by' => $params['order_by']
617
+	);
618
+
619
+	if (1 == $params['show_featured_only']) {
620
+		$query_args['show_featured_only'] = 1;
621
+	}
622
+
623
+	if (0 != $params['category'] && '' != $params['category']) {
624
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
+		$tax_query = array(
626
+			'taxonomy' => $category_taxonomy[0],
627
+			'field' => 'id',
628
+			'terms' => $params['category'],
629
+		);
630
+
631
+		$query_args['tax_query'] = array($tax_query);
632
+	}
633
+
634
+	$defaults = array(
635
+		'before_widget' => '',
636
+		'after_widget' => '',
637
+		'before_title' => '',
638
+		'after_title' => '',
639
+	);
640
+
641
+	$query_args = array_merge($query_args, $params);
642
+
643
+	geodir_listing_slider_widget_output($defaults, $query_args);
644
+
645
+	$output = ob_get_contents();
646
+
647
+	ob_end_clean();
648
+
649
+	return $output;
650 650
 }
651 651
 
652 652
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -670,22 +670,22 @@  discard block
 block discarded – undo
670 670
  */
671 671
 function geodir_sc_login_box($atts)
672 672
 {
673
-    ob_start();
673
+	ob_start();
674 674
 
675
-    $defaults = array(
676
-        'before_widget' => '',
677
-        'after_widget' => '',
678
-        'before_title' => '',
679
-        'after_title' => '',
680
-    );
675
+	$defaults = array(
676
+		'before_widget' => '',
677
+		'after_widget' => '',
678
+		'before_title' => '',
679
+		'after_title' => '',
680
+	);
681 681
 
682
-    geodir_loginwidget_output($defaults, $defaults);
682
+	geodir_loginwidget_output($defaults, $defaults);
683 683
 
684
-    $output = ob_get_contents();
684
+	$output = ob_get_contents();
685 685
 
686
-    ob_end_clean();
686
+	ob_end_clean();
687 687
 
688
-    return $output;
688
+	return $output;
689 689
 }
690 690
 
691 691
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -716,31 +716,31 @@  discard block
 block discarded – undo
716 716
  */
717 717
 function geodir_sc_popular_post_category($atts)
718 718
 {
719
-    ob_start();
720
-    global $geodir_post_category_str;
721
-    $defaults = array(
722
-        'category_limit' => 15,
723
-        'category_restrict' => false,
724
-        'before_widget' => '',
725
-        'after_widget' => '',
726
-        'before_title' => '',
727
-        'after_title' => '',
728
-        'title' => '',
729
-        'default_post_type' => '',
730
-        'parent_only' => false,
731
-    );
732
-
733
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
-    $params['category_limit'] = absint($params['category_limit']);
735
-    $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
-    $params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
-    geodir_popular_post_category_output($params, $params);
738
-
739
-    $output = ob_get_contents();
740
-
741
-    ob_end_clean();
742
-
743
-    return $output;
719
+	ob_start();
720
+	global $geodir_post_category_str;
721
+	$defaults = array(
722
+		'category_limit' => 15,
723
+		'category_restrict' => false,
724
+		'before_widget' => '',
725
+		'after_widget' => '',
726
+		'before_title' => '',
727
+		'after_title' => '',
728
+		'title' => '',
729
+		'default_post_type' => '',
730
+		'parent_only' => false,
731
+	);
732
+
733
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
+	$params['category_limit'] = absint($params['category_limit']);
735
+	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
+	$params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
+	geodir_popular_post_category_output($params, $params);
738
+
739
+	$output = ob_get_contents();
740
+
741
+	ob_end_clean();
742
+
743
+	return $output;
744 744
 }
745 745
 
746 746
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -781,96 +781,96 @@  discard block
 block discarded – undo
781 781
  */
782 782
 function geodir_sc_popular_post_view($atts)
783 783
 {
784
-    ob_start();
785
-    $defaults = array(
786
-        'post_type' => 'gd_place',
787
-        'category' => '0',
788
-        'post_number' => '5',
789
-        'layout' => 'gridview_onehalf',
790
-        'add_location_filter' => '0',
791
-        'list_sort' => 'latest',
792
-        'use_viewing_post_type' => '1',
793
-        'character_count' => '20',
794
-        'listing_width' => '',
795
-        'show_featured_only' => '0',
796
-        'show_special_only' => '0',
797
-        'with_pics_only' => '0',
798
-        'with_videos_only' => '0',
799
-        'before_widget' => '',
800
-        'after_widget' => '',
801
-        'before_title' => '<h3 class="widget-title">',
802
-        'after_title' => '</h3>',
803
-        'title' => '',
804
-        'category_title' => '',
805
-    );
806
-
807
-    $params = shortcode_atts($defaults, $atts);
808
-
809
-    /**
810
-     * Validate our incoming params
811
-     */
784
+	ob_start();
785
+	$defaults = array(
786
+		'post_type' => 'gd_place',
787
+		'category' => '0',
788
+		'post_number' => '5',
789
+		'layout' => 'gridview_onehalf',
790
+		'add_location_filter' => '0',
791
+		'list_sort' => 'latest',
792
+		'use_viewing_post_type' => '1',
793
+		'character_count' => '20',
794
+		'listing_width' => '',
795
+		'show_featured_only' => '0',
796
+		'show_special_only' => '0',
797
+		'with_pics_only' => '0',
798
+		'with_videos_only' => '0',
799
+		'before_widget' => '',
800
+		'after_widget' => '',
801
+		'before_title' => '<h3 class="widget-title">',
802
+		'after_title' => '</h3>',
803
+		'title' => '',
804
+		'category_title' => '',
805
+	);
812 806
 
813
-    // Validate the selected post type, default to gd_place on fail
814
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
815
-        $params['post_type'] = 'gd_place';
816
-    }
817
-
818
-    // Validate the selected category/ies - Grab the current list based on post_type
819
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
820
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
821
-
822
-    // Make sure we have an array
823
-    if (!(is_array($params['category']))) {
824
-        $params['category'] = explode(',', $params['category']);
825
-    }
826
-
827
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
828
-    // Otherwise it becomes empty and later on that will mean "All"
829
-    $params['category'] = array_intersect($params['category'], $categories);
830
-
831
-    // Post_number needs to be a positive integer
832
-    $params['post_number'] = absint($params['post_number']);
833
-    if (0 == $params['post_number']) {
834
-        $params['post_number'] = 1;
835
-    }
836
-
837
-    // Validate our layout choice
838
-    // Outside of the norm, I added some more simple terms to match the existing
839
-    // So now I just run the switch to set it properly.
840
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
841
-
842
-    // Validate our sorting choice
843
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
844
-
845
-    // Validate character_count
846
-    if ($params['character_count'] !== '') {
847
-        $params['character_count'] = absint($params['character_count']);
848
-    }
849
-
850
-    // Validate Listing width, used in the template widget-listing-listview.php
851
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
852
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
853
-
854
-    // Validate the checkboxes used on the widget
855
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
856
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
857
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
858
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
859
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
860
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
861
-
862
-    /**
863
-     * End of validation
864
-     */
807
+	$params = shortcode_atts($defaults, $atts);
808
+
809
+	/**
810
+	 * Validate our incoming params
811
+	 */
812
+
813
+	// Validate the selected post type, default to gd_place on fail
814
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
815
+		$params['post_type'] = 'gd_place';
816
+	}
817
+
818
+	// Validate the selected category/ies - Grab the current list based on post_type
819
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
820
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
821
+
822
+	// Make sure we have an array
823
+	if (!(is_array($params['category']))) {
824
+		$params['category'] = explode(',', $params['category']);
825
+	}
865 826
 
866
-    geodir_popular_postview_output($params, $params);
827
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
828
+	// Otherwise it becomes empty and later on that will mean "All"
829
+	$params['category'] = array_intersect($params['category'], $categories);
867 830
 
831
+	// Post_number needs to be a positive integer
832
+	$params['post_number'] = absint($params['post_number']);
833
+	if (0 == $params['post_number']) {
834
+		$params['post_number'] = 1;
835
+	}
836
+
837
+	// Validate our layout choice
838
+	// Outside of the norm, I added some more simple terms to match the existing
839
+	// So now I just run the switch to set it properly.
840
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
841
+
842
+	// Validate our sorting choice
843
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
844
+
845
+	// Validate character_count
846
+	if ($params['character_count'] !== '') {
847
+		$params['character_count'] = absint($params['character_count']);
848
+	}
849
+
850
+	// Validate Listing width, used in the template widget-listing-listview.php
851
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
852
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
868 853
 
869
-    $output = ob_get_contents();
854
+	// Validate the checkboxes used on the widget
855
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
856
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
857
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
858
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
859
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
860
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
870 861
 
871
-    ob_end_clean();
862
+	/**
863
+	 * End of validation
864
+	 */
872 865
 
873
-    return $output;
866
+	geodir_popular_postview_output($params, $params);
867
+
868
+
869
+	$output = ob_get_contents();
870
+
871
+	ob_end_clean();
872
+
873
+	return $output;
874 874
 }
875 875
 
876 876
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -892,37 +892,37 @@  discard block
 block discarded – undo
892 892
  * @return string Recent reviews HTML.
893 893
  */
894 894
 function geodir_sc_recent_reviews($atts) {
895
-    ob_start();
896
-    $defaults = array(
895
+	ob_start();
896
+	$defaults = array(
897 897
 		'title' => '',
898 898
 		'count' => 5,
899
-    );
899
+	);
900 900
 
901
-    $params = shortcode_atts($defaults, $atts);
901
+	$params = shortcode_atts($defaults, $atts);
902 902
 
903
-    $count = absint($params['count']);
904
-    if (0 == $count) {
905
-        $count = 1;
906
-    }
903
+	$count = absint($params['count']);
904
+	if (0 == $count) {
905
+		$count = 1;
906
+	}
907 907
 	
908 908
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
909 909
 
910
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
910
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
911 911
 
912
-    if ($comments_li) {
913
-        if ($title != '') { ?>
912
+	if ($comments_li) {
913
+		if ($title != '') { ?>
914 914
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
915 915
 		<?php } ?>
916 916
         <div class="geodir_sc_recent_reviews_section">
917 917
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
918 918
         </div>
919 919
     <?php
920
-    }
921
-    $output = ob_get_contents();
920
+	}
921
+	$output = ob_get_contents();
922 922
 
923
-    ob_end_clean();
923
+	ob_end_clean();
924 924
 
925
-    return $output;
925
+	return $output;
926 926
 }
927 927
 
928 928
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -952,63 +952,63 @@  discard block
 block discarded – undo
952 952
  */
953 953
 function geodir_sc_related_listings($atts)
954 954
 {
955
-    ob_start();
956
-    $defaults = array(
957
-        'post_number' => 5,
958
-        'relate_to' => 'category',
959
-        'layout' => 'gridview_onehalf',
960
-        'add_location_filter' => 0,
961
-        'listing_width' => '',
962
-        'list_sort' => 'latest',
963
-        'character_count' => 20,
964
-        'is_widget' => 1,
965
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
966
-    );
967
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
968
-
969
-    $params = shortcode_atts($defaults, $atts);
970
-
971
-    /**
972
-     * Begin validating parameters
973
-     */
955
+	ob_start();
956
+	$defaults = array(
957
+		'post_number' => 5,
958
+		'relate_to' => 'category',
959
+		'layout' => 'gridview_onehalf',
960
+		'add_location_filter' => 0,
961
+		'listing_width' => '',
962
+		'list_sort' => 'latest',
963
+		'character_count' => 20,
964
+		'is_widget' => 1,
965
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
966
+	);
967
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
974 968
 
975
-    // Validate that post_number is a number and is 1 or higher
976
-    $params['post_number'] = absint($params['post_number']);
977
-    if (0 === $params['post_number']) {
978
-        $params['post_number'] = 1;
979
-    }
969
+	$params = shortcode_atts($defaults, $atts);
980 970
 
981
-    // Validate relate_to - only category or tags
982
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
983
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
984
-        $params['relate_to'] = 'category';
985
-    }
971
+	/**
972
+	 * Begin validating parameters
973
+	 */
986 974
 
987
-    // Validate layout selection
988
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
975
+	// Validate that post_number is a number and is 1 or higher
976
+	$params['post_number'] = absint($params['post_number']);
977
+	if (0 === $params['post_number']) {
978
+		$params['post_number'] = 1;
979
+	}
989 980
 
990
-    // Validate sorting option
991
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
981
+	// Validate relate_to - only category or tags
982
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
983
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
984
+		$params['relate_to'] = 'category';
985
+	}
986
+
987
+	// Validate layout selection
988
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
992 989
 
993
-    // Validate add_location_filter
994
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
990
+	// Validate sorting option
991
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
995 992
 
996
-    // Validate listing_width
997
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
993
+	// Validate add_location_filter
994
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
998 995
 
999
-    // Validate character_count
1000
-    if ($params['character_count'] !== '') {
1001
-        $params['character_count'] = absint($params['character_count']);
1002
-    }
996
+	// Validate listing_width
997
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1003 998
 
1004
-    if ($related_display = geodir_related_posts_display($params)) {
1005
-        echo $related_display;
1006
-    }
1007
-    $output = ob_get_contents();
999
+	// Validate character_count
1000
+	if ($params['character_count'] !== '') {
1001
+		$params['character_count'] = absint($params['character_count']);
1002
+	}
1003
+
1004
+	if ($related_display = geodir_related_posts_display($params)) {
1005
+		echo $related_display;
1006
+	}
1007
+	$output = ob_get_contents();
1008 1008
 
1009
-    ob_end_clean();
1009
+	ob_end_clean();
1010 1010
 
1011
-    return $output;
1011
+	return $output;
1012 1012
 }
1013 1013
 
1014 1014
 /**
@@ -1032,13 +1032,13 @@  discard block
 block discarded – undo
1032 1032
  * @return string Advanced search widget HTML.
1033 1033
  */
1034 1034
 function geodir_sc_advanced_search($atts) {
1035
-    $defaults = array(
1035
+	$defaults = array(
1036 1036
 		'title' => '',
1037 1037
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
1038
-        'after_widget' => '</section>',
1039
-        'before_title' => '<h3 class="widget-title">',
1040
-        'after_title' => '</h3>',
1041
-        'show_adv_search' => 'default',
1038
+		'after_widget' => '</section>',
1039
+		'before_title' => '<h3 class="widget-title">',
1040
+		'after_title' => '</h3>',
1041
+		'show_adv_search' => 'default',
1042 1042
 		'post_type' => ''
1043 1043
 	);
1044 1044
 	
@@ -1062,9 +1062,9 @@  discard block
 block discarded – undo
1062 1062
 	the_widget('geodir_advance_search_widget', $params, $params );
1063 1063
 	
1064 1064
 	$output = ob_get_contents();
1065
-    ob_end_clean();
1065
+	ob_end_clean();
1066 1066
 
1067
-    return $output;
1067
+	return $output;
1068 1068
 }
1069 1069
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
1070 1070
 
@@ -1110,48 +1110,48 @@  discard block
 block discarded – undo
1110 1110
 		'add_location_filter' => '1',
1111 1111
 		'tab_layout' => 'bestof-tabs-on-top',
1112 1112
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
1113
-        'after_widget' => '</section>',
1114
-        'before_title' => '<h3 class="widget-title">',
1115
-        'after_title' => '</h3>',
1113
+		'after_widget' => '</section>',
1114
+		'before_title' => '<h3 class="widget-title">',
1115
+		'after_title' => '</h3>',
1116 1116
 	);
1117 1117
 	$params = shortcode_atts($defaults, $atts);
1118 1118
 
1119
-    /**
1120
-     * Validate our incoming params
1121
-     */
1119
+	/**
1120
+	 * Validate our incoming params
1121
+	 */
1122 1122
 
1123
-    // Validate the selected post type, default to gd_place on fail
1124
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
1125
-        $params['post_type'] = 'gd_place';
1126
-    }
1123
+	// Validate the selected post type, default to gd_place on fail
1124
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
1125
+		$params['post_type'] = 'gd_place';
1126
+	}
1127 1127
 	
1128 1128
 	// Post limit needs to be a positive integer
1129
-    $params['post_limit'] = absint($params['post_limit']);
1130
-    if (0 == $params['post_limit']) {
1131
-        $params['post_limit'] = 5;
1132
-    }
1129
+	$params['post_limit'] = absint($params['post_limit']);
1130
+	if (0 == $params['post_limit']) {
1131
+		$params['post_limit'] = 5;
1132
+	}
1133 1133
 	
1134 1134
 	// Category limit needs to be a positive integer
1135
-    $params['categ_limit'] = absint($params['categ_limit']);
1136
-    if (0 == $params['categ_limit']) {
1137
-        $params['categ_limit'] = 3;
1138
-    }
1135
+	$params['categ_limit'] = absint($params['categ_limit']);
1136
+	if (0 == $params['categ_limit']) {
1137
+		$params['categ_limit'] = 3;
1138
+	}
1139 1139
 	
1140 1140
 	// Tab layout validation
1141
-    $params['tab_layout'] = $params['tab_layout'];
1142
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1143
-        $params['tab_layout'] = 'bestof-tabs-on-top';
1144
-    }
1141
+	$params['tab_layout'] = $params['tab_layout'];
1142
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1143
+		$params['tab_layout'] = 'bestof-tabs-on-top';
1144
+	}
1145 1145
 	
1146 1146
 	// Validate character_count
1147
-    $params['character_count'] = $params['character_count'];
1147
+	$params['character_count'] = $params['character_count'];
1148 1148
 
1149 1149
 	ob_start();
1150 1150
 	the_widget('geodir_bestof_widget', $params, $params);
1151
-    $output = ob_get_contents();
1152
-    ob_end_clean();
1151
+	$output = ob_get_contents();
1152
+	ob_end_clean();
1153 1153
 
1154
-    return $output;
1154
+	return $output;
1155 1155
 }
1156 1156
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1157 1157
 
@@ -1204,143 +1204,143 @@  discard block
 block discarded – undo
1204 1204
  * @return string HTML content to display geodirectory listings.
1205 1205
  */
1206 1206
 function geodir_sc_gd_listings($atts, $content = '') {
1207
-    global $post;
1208
-    $defaults = array(
1209
-        'title'                 => '',
1210
-        'post_type'             => 'gd_place',
1211
-        'category'              => 0,
1212
-        'list_sort'             => 'latest',
1213
-        'event_type'            => '',
1214
-        'post_number'           => 10,
1215
-        'post_author'           => '',
1216
-        'layout'                => 'gridview_onehalf',
1217
-        'listing_width'         => '',
1218
-        'character_count'       => 20,
1219
-        'add_location_filter'   => 1,
1220
-        'show_featured_only'    => '',
1221
-        'show_special_only'     => '',
1222
-        'with_pics_only'        => '',
1223
-        'with_videos_only'      => '',
1224
-        'with_pagination'       => '1',
1225
-        'top_pagination'        => '0',
1226
-        'bottom_pagination'     => '1',
1227
-        'without_no_results'    => 0,
1228
-        'tags'                  => '',
1229
-        'show_favorites_only'   => '',
1230
-        'favorites_by_user'     => '',
1231
-    );
1232
-    $params = shortcode_atts($defaults, $atts);
1233
-
1234
-    $params['title']        = wp_strip_all_tags($params['title']);
1235
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1236
-
1237
-    // Validate the selected category/ies - Grab the current list based on post_type
1238
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1239
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids', 'hide_empty' => 0));
1240
-
1241
-    // Make sure we have an array
1242
-    if (!(is_array($params['category']))) {
1243
-        $params['category'] = explode(',', $params['category']);
1244
-    }
1245
-
1246
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1247
-    // Otherwise it becomes empty and later on that will mean "All"
1248
-    $params['category']     = array_intersect($params['category'], $categories);
1249
-
1250
-    // Post_number needs to be a positive integer
1251
-    $params['post_number']  = absint($params['post_number']);
1252
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1207
+	global $post;
1208
+	$defaults = array(
1209
+		'title'                 => '',
1210
+		'post_type'             => 'gd_place',
1211
+		'category'              => 0,
1212
+		'list_sort'             => 'latest',
1213
+		'event_type'            => '',
1214
+		'post_number'           => 10,
1215
+		'post_author'           => '',
1216
+		'layout'                => 'gridview_onehalf',
1217
+		'listing_width'         => '',
1218
+		'character_count'       => 20,
1219
+		'add_location_filter'   => 1,
1220
+		'show_featured_only'    => '',
1221
+		'show_special_only'     => '',
1222
+		'with_pics_only'        => '',
1223
+		'with_videos_only'      => '',
1224
+		'with_pagination'       => '1',
1225
+		'top_pagination'        => '0',
1226
+		'bottom_pagination'     => '1',
1227
+		'without_no_results'    => 0,
1228
+		'tags'                  => '',
1229
+		'show_favorites_only'   => '',
1230
+		'favorites_by_user'     => '',
1231
+	);
1232
+	$params = shortcode_atts($defaults, $atts);
1233
+
1234
+	$params['title']        = wp_strip_all_tags($params['title']);
1235
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1236
+
1237
+	// Validate the selected category/ies - Grab the current list based on post_type
1238
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1239
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids', 'hide_empty' => 0));
1240
+
1241
+	// Make sure we have an array
1242
+	if (!(is_array($params['category']))) {
1243
+		$params['category'] = explode(',', $params['category']);
1244
+	}
1245
+
1246
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1247
+	// Otherwise it becomes empty and later on that will mean "All"
1248
+	$params['category']     = array_intersect($params['category'], $categories);
1249
+
1250
+	// Post_number needs to be a positive integer
1251
+	$params['post_number']  = absint($params['post_number']);
1252
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1253 1253
     
1254
-    // Post_number needs to be a positive integer
1255
-    if (!empty($atts['post_author'])) {
1256
-        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1257
-            $params['post_author'] = $post->post_author;
1258
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1259
-            $params['post_author'] = absint($atts['post_author']);
1260
-        } else {
1261
-            unset($params['post_author']);
1262
-        }
1263
-    } else {
1264
-        unset($params['post_author']);
1265
-    }
1266
-
1267
-    // Validate character_count
1268
-    //todo: is this necessary?
1269
-    $params['character_count']  = $params['character_count'];
1270
-
1271
-    // Validate our layout choice
1272
-    // Outside of the norm, I added some more simple terms to match the existing
1273
-    // So now I just run the switch to set it properly.
1274
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1275
-
1276
-    // Validate our sorting choice
1277
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1278
-
1279
-    // Validate Listing width, used in the template widget-listing-listview.php
1280
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1281
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1282
-
1283
-    // Validate the checkboxes used on the widget
1284
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1285
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1286
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1287
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1288
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1289
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1290
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1291
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1254
+	// Post_number needs to be a positive integer
1255
+	if (!empty($atts['post_author'])) {
1256
+		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1257
+			$params['post_author'] = $post->post_author;
1258
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1259
+			$params['post_author'] = absint($atts['post_author']);
1260
+		} else {
1261
+			unset($params['post_author']);
1262
+		}
1263
+	} else {
1264
+		unset($params['post_author']);
1265
+	}
1266
+
1267
+	// Validate character_count
1268
+	//todo: is this necessary?
1269
+	$params['character_count']  = $params['character_count'];
1270
+
1271
+	// Validate our layout choice
1272
+	// Outside of the norm, I added some more simple terms to match the existing
1273
+	// So now I just run the switch to set it properly.
1274
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1275
+
1276
+	// Validate our sorting choice
1277
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1278
+
1279
+	// Validate Listing width, used in the template widget-listing-listview.php
1280
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1281
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1282
+
1283
+	// Validate the checkboxes used on the widget
1284
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1285
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1286
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1287
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1288
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1289
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1290
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1291
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1292 1292
     
1293
-    // User favorites
1294
-    $params['show_favorites_only']  = gdsc_to_bool_val($params['show_favorites_only']);
1295
-    if (!empty($params['show_favorites_only'])) {
1296
-        if ($params['favorites_by_user'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1297
-            $params['favorites_by_user'] = $post->post_author;
1298
-        } else if ($params['favorites_by_user'] != 'current' && absint($params['favorites_by_user']) > 0) {
1299
-            $params['favorites_by_user'] = absint($atts['favorites_by_user']);
1300
-        } else if ($params['favorites_by_user'] != 'current' && $current_user_id = get_current_user_id()) {
1301
-            $params['favorites_by_user'] = $current_user_id;
1302
-        } else {
1303
-            $params['favorites_by_user'] = 0;
1304
-        }
1305
-    }
1306
-
1307
-    // Clean tags
1308
-    if (!empty($params['tags'])) {
1309
-        if (!is_array($params['tags'])) {
1310
-            $comma = _x(',', 'tag delimiter');
1311
-            if ( ',' !== $comma ) {
1312
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1313
-            }
1314
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1315
-            $params['tags'] = array_map('trim', $params['tags']);
1316
-        }
1317
-    } else {
1318
-        $params['tags'] = array();
1319
-    }
1320
-
1321
-    /**
1322
-     * End of validation
1323
-     */
1324
-    if (isset($atts['geodir_ajax'])) {
1325
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1326
-        unset($atts['geodir_ajax']);
1327
-    }
1328
-    if (isset($atts['pageno'])) {
1329
-        $params['pageno'] = $atts['pageno'];
1330
-        unset($atts['pageno']);
1331
-    }
1332
-
1333
-    if ( !empty($atts['shortcode_content']) ) {
1334
-        $content = $atts['shortcode_content'];
1335
-    }
1336
-    $params['shortcode_content'] = trim($content);
1337
-    $atts['shortcode_content'] = trim($content);
1293
+	// User favorites
1294
+	$params['show_favorites_only']  = gdsc_to_bool_val($params['show_favorites_only']);
1295
+	if (!empty($params['show_favorites_only'])) {
1296
+		if ($params['favorites_by_user'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1297
+			$params['favorites_by_user'] = $post->post_author;
1298
+		} else if ($params['favorites_by_user'] != 'current' && absint($params['favorites_by_user']) > 0) {
1299
+			$params['favorites_by_user'] = absint($atts['favorites_by_user']);
1300
+		} else if ($params['favorites_by_user'] != 'current' && $current_user_id = get_current_user_id()) {
1301
+			$params['favorites_by_user'] = $current_user_id;
1302
+		} else {
1303
+			$params['favorites_by_user'] = 0;
1304
+		}
1305
+	}
1306
+
1307
+	// Clean tags
1308
+	if (!empty($params['tags'])) {
1309
+		if (!is_array($params['tags'])) {
1310
+			$comma = _x(',', 'tag delimiter');
1311
+			if ( ',' !== $comma ) {
1312
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1313
+			}
1314
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1315
+			$params['tags'] = array_map('trim', $params['tags']);
1316
+		}
1317
+	} else {
1318
+		$params['tags'] = array();
1319
+	}
1320
+
1321
+	/**
1322
+	 * End of validation
1323
+	 */
1324
+	if (isset($atts['geodir_ajax'])) {
1325
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1326
+		unset($atts['geodir_ajax']);
1327
+	}
1328
+	if (isset($atts['pageno'])) {
1329
+		$params['pageno'] = $atts['pageno'];
1330
+		unset($atts['pageno']);
1331
+	}
1332
+
1333
+	if ( !empty($atts['shortcode_content']) ) {
1334
+		$content = $atts['shortcode_content'];
1335
+	}
1336
+	$params['shortcode_content'] = trim($content);
1337
+	$atts['shortcode_content'] = trim($content);
1338 1338
     
1339
-    $params['shortcode_atts']       = $atts;
1339
+	$params['shortcode_atts']       = $atts;
1340 1340
 
1341
-    $output = geodir_sc_gd_listings_output($params);
1341
+	$output = geodir_sc_gd_listings_output($params);
1342 1342
 
1343
-    return $output;
1343
+	return $output;
1344 1344
 }
1345 1345
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1346 1346
 
@@ -1380,56 +1380,56 @@  discard block
 block discarded – undo
1380 1380
  * @return string HTML content to display CPT categories.
1381 1381
  */
1382 1382
 function geodir_sc_cpt_categories_widget($atts, $content = '') {
1383
-    $defaults = array(
1384
-        'title' => '',
1385
-        'post_type' => '', // NULL for all
1386
-        'hide_empty' => '',
1387
-        'show_count' => '',
1388
-        'hide_icon' => '',
1389
-        'cpt_left' => '',
1390
-        'sort_by' => 'count',
1391
-        'max_count' => 'all',
1392
-        'max_level' => '1',
1393
-        'no_cpt_filter' => '',
1394
-        'no_cat_filter' => '',
1395
-        'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1396
-        'after_widget' => '</section>',
1397
-        'before_title' => '<h3 class="widget-title">',
1398
-        'after_title' => '</h3>',
1399
-    );
1400
-    $params = shortcode_atts($defaults, $atts);
1401
-
1402
-    /**
1403
-     * Validate our incoming params
1404
-     */
1405
-    // Make sure we have an array
1406
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1407
-     
1408
-    // Validate the checkboxes used on the widget
1409
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1410
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1411
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1412
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1383
+	$defaults = array(
1384
+		'title' => '',
1385
+		'post_type' => '', // NULL for all
1386
+		'hide_empty' => '',
1387
+		'show_count' => '',
1388
+		'hide_icon' => '',
1389
+		'cpt_left' => '',
1390
+		'sort_by' => 'count',
1391
+		'max_count' => 'all',
1392
+		'max_level' => '1',
1393
+		'no_cpt_filter' => '',
1394
+		'no_cat_filter' => '',
1395
+		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1396
+		'after_widget' => '</section>',
1397
+		'before_title' => '<h3 class="widget-title">',
1398
+		'after_title' => '</h3>',
1399
+	);
1400
+	$params = shortcode_atts($defaults, $atts);
1413 1401
 
1414
-    if ($params['max_count'] != 'all') {
1415
-        $params['max_count'] = absint($params['max_count']);
1416
-    }
1402
+	/**
1403
+	 * Validate our incoming params
1404
+	 */
1405
+	// Make sure we have an array
1406
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1407
+     
1408
+	// Validate the checkboxes used on the widget
1409
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1410
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1411
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1412
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1413
+
1414
+	if ($params['max_count'] != 'all') {
1415
+		$params['max_count'] = absint($params['max_count']);
1416
+	}
1417 1417
 
1418
-    if ($params['max_level'] != 'all') {
1419
-        $params['max_level'] = absint($params['max_level']);
1420
-    }
1418
+	if ($params['max_level'] != 'all') {
1419
+		$params['max_level'] = absint($params['max_level']);
1420
+	}
1421 1421
 
1422
-    $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1423
-    $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1422
+	$params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1423
+	$params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1424 1424
 
1425
-    $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1425
+	$params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1426 1426
 
1427
-    ob_start();
1428
-    the_widget('geodir_cpt_categories_widget', $params, $params);
1429
-    $output = ob_get_contents();
1430
-    ob_end_clean();
1427
+	ob_start();
1428
+	the_widget('geodir_cpt_categories_widget', $params, $params);
1429
+	$output = ob_get_contents();
1430
+	ob_end_clean();
1431 1431
 
1432
-    return $output;
1432
+	return $output;
1433 1433
 }
1434 1434
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1435 1435
 
@@ -1444,6 +1444,6 @@  discard block
 block discarded – undo
1444 1444
  * @return string HTML code.
1445 1445
  */
1446 1446
 function geodir_sc_responsive_videos($atts, $content) {
1447
-    return '<div class="geodir-video-wrapper">'.$content.'</div>';
1447
+	return '<div class="geodir-video-wrapper">'.$content.'</div>';
1448 1448
 }
1449 1449
 add_shortcode('gd_video', 'geodir_sc_responsive_videos');
1450 1450
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-admin/option-pages/general_settings_array.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     ),
99 99
     array('type' => 'sectionend', 'id' => 'general_options'),
100 100
 
101
-));/* General Options End*/
101
+)); /* General Options End*/
102 102
 
103 103
 /**
104 104
  * Filter GD Google Analytic Settings array.
Please login to merge, or discard this patch.
Indentation   +273 added lines, -273 removed lines patch added patch discarded remove patch
@@ -16,92 +16,92 @@  discard block
 block discarded – undo
16 16
  */
17 17
 $general_options = apply_filters('geodir_general_options', array(
18 18
 
19
-    array('name' => __('General', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'general_options'),
20
-
21
-    array('name' => __('General Options', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'general_options'),
22
-
23
-    array(
24
-        'name' => __('Sender name', 'geodirectory'),
25
-        'desc' => __('(Name that will be shown as email sender when users receive emails from this site)', 'geodirectory'),
26
-        'id' => 'site_email_name',
27
-        'type' => 'text',
28
-        'css' => 'min-width:300px;',
29
-        'std' => get_bloginfo('name') // Default value for the page title - changed in settings
30
-    ),
31
-
32
-    array(
33
-        'name' => __('Email address', 'geodirectory'),
34
-        'desc' => __('(Emails to users will be sent via this mail ID)', 'geodirectory'),
35
-        'id' => 'site_email',
36
-        'type' => 'text',
37
-        'css' => 'min-width:300px;',
38
-        'std' => get_bloginfo('admin_email') // Default value for the page title - changed in settings
39
-    ),
40
-    array(
41
-        'name' => __('Allow user to see wp-admin area', 'geodirectory'),
42
-        'desc' => __('Yes', 'geodirectory'),
43
-        'id' => 'geodir_allow_wpadmin',
44
-        'std' => '1',
45
-        'type' => 'radio',
46
-        'value' => '1',
47
-        'radiogroup' => 'start'
48
-    ),
49
-    array(
50
-        'name' => __('Allow user to see wp-admin area', 'geodirectory'),
51
-        'desc' => __('No', 'geodirectory'),
52
-        'id' => 'geodir_allow_wpadmin',
53
-        'std' => '0',
54
-        'type' => 'radio',
55
-        'value' => '0',
56
-        'radiogroup' => 'end'
57
-    ),
58
-
59
-    array(
60
-        'name' => __('Allow user to choose own password', 'geodirectory'),
61
-        'desc' => __('Yes', 'geodirectory'),
62
-        'id' => 'geodir_allow_cpass',
63
-        'std' => '1',
64
-        'type' => 'radio',
65
-        'value' => '1',
66
-        'radiogroup' => 'start'
67
-    ),
68
-    array(
69
-        'name' => __('Allow user to choose own password', 'geodirectory'),
70
-        'desc' => __('No', 'geodirectory'),
71
-        'id' => 'geodir_allow_cpass',
72
-        'std' => '0',
73
-        'type' => 'radio',
74
-        'value' => '0',
75
-        'radiogroup' => 'end'
76
-    ),
77
-    array(
78
-        'name' => __('Disable review stars for CPT', 'geodirectory'),
79
-        'desc' => __('Disable review stars for certain CPT without disabling comments on listings.', 'geodirectory'),
80
-        'tip' => '',
81
-        'id' => 'geodir_disable_rating_cpt',
82
-        'css' => 'min-width:300px;',
83
-        'std' => '',
84
-        'type' => 'multiselect',
85
-        'placeholder_text' => __('Select post types', 'geodirectory'),
86
-        'class' => 'chosen_select',
87
-        'options' => array_unique(geodir_post_type_setting_fun())
88
-    ),
89
-    array(
90
-        'name' => __('User deleted posts go to trash', 'geodirectory'),
91
-        'desc' => __('If checked a user deleted post will go to trash, otherwise it will be permanently deleted', 'geodirectory'),
92
-        'id' => 'geodir_disable_perm_delete',
93
-        'type' => 'checkbox',
94
-        'std' => '1'
95
-    ),
96
-    array(
97
-        'name' => __('Max upload file size(in mb)', 'geodirectory'),
98
-        'desc' => __('(Maximum upload file size in MB, 1 MB = 1024 KB. Must be greater then 0(ZERO), for ex: 2. This setting will overwrite the max upload file size limit in image/file upload & import listings for entire GeoDirectory core + GeoDirectory plugins.)', 'geodirectory'),
99
-        'id' => 'geodir_upload_max_filesize',
100
-        'type' => 'text',
101
-        'css' => 'min-width:300px;',
102
-        'std' => '2'
103
-    ),
104
-    array('type' => 'sectionend', 'id' => 'general_options'),
19
+	array('name' => __('General', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'general_options'),
20
+
21
+	array('name' => __('General Options', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'general_options'),
22
+
23
+	array(
24
+		'name' => __('Sender name', 'geodirectory'),
25
+		'desc' => __('(Name that will be shown as email sender when users receive emails from this site)', 'geodirectory'),
26
+		'id' => 'site_email_name',
27
+		'type' => 'text',
28
+		'css' => 'min-width:300px;',
29
+		'std' => get_bloginfo('name') // Default value for the page title - changed in settings
30
+	),
31
+
32
+	array(
33
+		'name' => __('Email address', 'geodirectory'),
34
+		'desc' => __('(Emails to users will be sent via this mail ID)', 'geodirectory'),
35
+		'id' => 'site_email',
36
+		'type' => 'text',
37
+		'css' => 'min-width:300px;',
38
+		'std' => get_bloginfo('admin_email') // Default value for the page title - changed in settings
39
+	),
40
+	array(
41
+		'name' => __('Allow user to see wp-admin area', 'geodirectory'),
42
+		'desc' => __('Yes', 'geodirectory'),
43
+		'id' => 'geodir_allow_wpadmin',
44
+		'std' => '1',
45
+		'type' => 'radio',
46
+		'value' => '1',
47
+		'radiogroup' => 'start'
48
+	),
49
+	array(
50
+		'name' => __('Allow user to see wp-admin area', 'geodirectory'),
51
+		'desc' => __('No', 'geodirectory'),
52
+		'id' => 'geodir_allow_wpadmin',
53
+		'std' => '0',
54
+		'type' => 'radio',
55
+		'value' => '0',
56
+		'radiogroup' => 'end'
57
+	),
58
+
59
+	array(
60
+		'name' => __('Allow user to choose own password', 'geodirectory'),
61
+		'desc' => __('Yes', 'geodirectory'),
62
+		'id' => 'geodir_allow_cpass',
63
+		'std' => '1',
64
+		'type' => 'radio',
65
+		'value' => '1',
66
+		'radiogroup' => 'start'
67
+	),
68
+	array(
69
+		'name' => __('Allow user to choose own password', 'geodirectory'),
70
+		'desc' => __('No', 'geodirectory'),
71
+		'id' => 'geodir_allow_cpass',
72
+		'std' => '0',
73
+		'type' => 'radio',
74
+		'value' => '0',
75
+		'radiogroup' => 'end'
76
+	),
77
+	array(
78
+		'name' => __('Disable review stars for CPT', 'geodirectory'),
79
+		'desc' => __('Disable review stars for certain CPT without disabling comments on listings.', 'geodirectory'),
80
+		'tip' => '',
81
+		'id' => 'geodir_disable_rating_cpt',
82
+		'css' => 'min-width:300px;',
83
+		'std' => '',
84
+		'type' => 'multiselect',
85
+		'placeholder_text' => __('Select post types', 'geodirectory'),
86
+		'class' => 'chosen_select',
87
+		'options' => array_unique(geodir_post_type_setting_fun())
88
+	),
89
+	array(
90
+		'name' => __('User deleted posts go to trash', 'geodirectory'),
91
+		'desc' => __('If checked a user deleted post will go to trash, otherwise it will be permanently deleted', 'geodirectory'),
92
+		'id' => 'geodir_disable_perm_delete',
93
+		'type' => 'checkbox',
94
+		'std' => '1'
95
+	),
96
+	array(
97
+		'name' => __('Max upload file size(in mb)', 'geodirectory'),
98
+		'desc' => __('(Maximum upload file size in MB, 1 MB = 1024 KB. Must be greater then 0(ZERO), for ex: 2. This setting will overwrite the max upload file size limit in image/file upload & import listings for entire GeoDirectory core + GeoDirectory plugins.)', 'geodirectory'),
99
+		'id' => 'geodir_upload_max_filesize',
100
+		'type' => 'text',
101
+		'css' => 'min-width:300px;',
102
+		'std' => '2'
103
+	),
104
+	array('type' => 'sectionend', 'id' => 'general_options'),
105 105
 
106 106
 ));/* General Options End*/
107 107
 
@@ -113,104 +113,104 @@  discard block
 block discarded – undo
113 113
  */
114 114
 $google_analytic_settings = apply_filters('geodir_google_analytic_settings', array(
115 115
 
116
-    array('name' => __('Google Analytics', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'google_analytic_settings'),
117
-
118
-    array('name' => __('Google Analytic Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'google_analytic_settings'),
119
-
120
-
121
-
122
-    array(
123
-        'name' => __('Show business owner google analytics stats?', 'geodirectory'),
124
-        'desc' => __('Yes', 'geodirectory'),
125
-        'id' => 'geodir_ga_stats',
126
-        'std' => '0',
127
-        'type' => 'radio',
128
-        'value' => '1',
129
-        'radiogroup' => 'start'
130
-    ),
131
-    array(
132
-        'name' => __('Show business owner Google Analytics stats?', 'geodirectory'),
133
-        'desc' => __('No', 'geodirectory'),
134
-        'id' => 'geodir_ga_stats',
135
-        'std' => '1',
136
-        'type' => 'radio',
137
-        'value' => '0',
138
-        'radiogroup' => 'end'
139
-    ),
140
-
141
-    array(
142
-        'name' => __('Google analytics access', 'geodirectory'),
143
-        'desc' => '',
144
-        'id' => 'geodir_ga_token',
145
-        'type' => 'google_analytics',
146
-        'css' => 'min-width:300px;',
147
-        'std' => '' // Default value for the page title - changed in settings
148
-    ),
149
-
150
-    array(
151
-        'name' => __('Google analytics Auth Code', 'geodirectory'),
152
-        'desc' => __('You must save this setting before accounts will show.', 'geodirectory'),
153
-        'id' => 'geodir_ga_auth_code',
154
-        'type' => 'text',
155
-        'css' => 'min-width:300px;',
156
-        'std' => '' // Default value for the page title - changed in settings
157
-    ),
158
-
159
-    array(
160
-        'name' => __('Analytics Account', 'geodirectory'),
161
-        'desc' => __('Select the account that you setup for this site.', 'geodirectory'),
162
-        'id' => 'geodir_ga_account_id',
163
-        'css' => 'min-width:300px;',
164
-        'std' => 'gridview_onehalf',
165
-        'type' => 'select',
166
-        'class' => 'chosen_select',
167
-        'options' => geodir_gd_accounts()
168
-    ),
169
-
170
-
171
-    array(
172
-        'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
173
-        'desc' => __('Yes <small>(this will automatically add the correct tracking code to your site)</small>', 'geodirectory'),
174
-        'id' => 'geodir_ga_add_tracking_code',
175
-        'std' => '0',
176
-        'type' => 'radio',
177
-        'value' => '1',
178
-        'radiogroup' => 'start'
179
-    ),
180
-    array(
181
-        'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
182
-        'desc' => __('No <small>(if you already have tracking code added you should not add it again)</small>', 'geodirectory'),
183
-        'id' => 'geodir_ga_add_tracking_code',
184
-        'std' => '1',
185
-        'type' => 'radio',
186
-        'value' => '0',
187
-        'radiogroup' => 'end'
188
-    ),
189
-
190
-    array(
191
-        'name' => __('Anonymize user IP?', 'geodirectory'),
192
-        'desc' => __('In most cases this is not required, this is to comply with certain country laws such as Germany.', 'geodirectory'),
193
-        'id' => 'geodir_ga_anonymize_ip',
194
-        'type' => 'checkbox',
195
-        'std' => '0'
196
-    ),
197
-
198
-    array(
199
-        'name' => __('Auto refresh active users?', 'geodirectory'),
200
-        'desc' => __('If ticked it uses the auto refresh time below, if not it never refreshes unless the refresh button is clicked.', 'geodirectory'),
201
-        'id' => 'geodir_ga_auto_refresh',
202
-        'type' => 'checkbox',
203
-        'std' => '0'
204
-    ),
205
-    array(
206
-        'name' => __('Time interval for auto refresh active users', 'geodirectory'),
207
-        'desc' => __('Time interval in seconds to auto refresh active users. The active users will be auto refreshed after this time interval. Leave blank or use 0(zero) to disable auto refresh. Default: 5', 'geodirectory'),
208
-        'id' => 'geodir_ga_refresh_time',
209
-        'type' => 'text',
210
-        'std' => '5'
211
-    ),
212
-
213
-    array('type' => 'sectionend', 'id' => 'google_analytic_settings'),
116
+	array('name' => __('Google Analytics', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'google_analytic_settings'),
117
+
118
+	array('name' => __('Google Analytic Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'google_analytic_settings'),
119
+
120
+
121
+
122
+	array(
123
+		'name' => __('Show business owner google analytics stats?', 'geodirectory'),
124
+		'desc' => __('Yes', 'geodirectory'),
125
+		'id' => 'geodir_ga_stats',
126
+		'std' => '0',
127
+		'type' => 'radio',
128
+		'value' => '1',
129
+		'radiogroup' => 'start'
130
+	),
131
+	array(
132
+		'name' => __('Show business owner Google Analytics stats?', 'geodirectory'),
133
+		'desc' => __('No', 'geodirectory'),
134
+		'id' => 'geodir_ga_stats',
135
+		'std' => '1',
136
+		'type' => 'radio',
137
+		'value' => '0',
138
+		'radiogroup' => 'end'
139
+	),
140
+
141
+	array(
142
+		'name' => __('Google analytics access', 'geodirectory'),
143
+		'desc' => '',
144
+		'id' => 'geodir_ga_token',
145
+		'type' => 'google_analytics',
146
+		'css' => 'min-width:300px;',
147
+		'std' => '' // Default value for the page title - changed in settings
148
+	),
149
+
150
+	array(
151
+		'name' => __('Google analytics Auth Code', 'geodirectory'),
152
+		'desc' => __('You must save this setting before accounts will show.', 'geodirectory'),
153
+		'id' => 'geodir_ga_auth_code',
154
+		'type' => 'text',
155
+		'css' => 'min-width:300px;',
156
+		'std' => '' // Default value for the page title - changed in settings
157
+	),
158
+
159
+	array(
160
+		'name' => __('Analytics Account', 'geodirectory'),
161
+		'desc' => __('Select the account that you setup for this site.', 'geodirectory'),
162
+		'id' => 'geodir_ga_account_id',
163
+		'css' => 'min-width:300px;',
164
+		'std' => 'gridview_onehalf',
165
+		'type' => 'select',
166
+		'class' => 'chosen_select',
167
+		'options' => geodir_gd_accounts()
168
+	),
169
+
170
+
171
+	array(
172
+		'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
173
+		'desc' => __('Yes <small>(this will automatically add the correct tracking code to your site)</small>', 'geodirectory'),
174
+		'id' => 'geodir_ga_add_tracking_code',
175
+		'std' => '0',
176
+		'type' => 'radio',
177
+		'value' => '1',
178
+		'radiogroup' => 'start'
179
+	),
180
+	array(
181
+		'name' => __('Add Google analytics tracking code to site?', 'geodirectory'),
182
+		'desc' => __('No <small>(if you already have tracking code added you should not add it again)</small>', 'geodirectory'),
183
+		'id' => 'geodir_ga_add_tracking_code',
184
+		'std' => '1',
185
+		'type' => 'radio',
186
+		'value' => '0',
187
+		'radiogroup' => 'end'
188
+	),
189
+
190
+	array(
191
+		'name' => __('Anonymize user IP?', 'geodirectory'),
192
+		'desc' => __('In most cases this is not required, this is to comply with certain country laws such as Germany.', 'geodirectory'),
193
+		'id' => 'geodir_ga_anonymize_ip',
194
+		'type' => 'checkbox',
195
+		'std' => '0'
196
+	),
197
+
198
+	array(
199
+		'name' => __('Auto refresh active users?', 'geodirectory'),
200
+		'desc' => __('If ticked it uses the auto refresh time below, if not it never refreshes unless the refresh button is clicked.', 'geodirectory'),
201
+		'id' => 'geodir_ga_auto_refresh',
202
+		'type' => 'checkbox',
203
+		'std' => '0'
204
+	),
205
+	array(
206
+		'name' => __('Time interval for auto refresh active users', 'geodirectory'),
207
+		'desc' => __('Time interval in seconds to auto refresh active users. The active users will be auto refreshed after this time interval. Leave blank or use 0(zero) to disable auto refresh. Default: 5', 'geodirectory'),
208
+		'id' => 'geodir_ga_refresh_time',
209
+		'type' => 'text',
210
+		'std' => '5'
211
+	),
212
+
213
+	array('type' => 'sectionend', 'id' => 'google_analytic_settings'),
214 214
 
215 215
 )); // google_analytic_settings End
216 216
 
@@ -222,84 +222,84 @@  discard block
 block discarded – undo
222 222
  */
223 223
 $search_settings = apply_filters('geodir_search_settings', array(
224 224
 
225
-    array('name' => __('Search', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'search_settings'),
226
-
227
-    array('name' => __('Search Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'search_settings'),
228
-
229
-    array(
230
-        'name' => __('Limit squared distance area to X miles (helps improve search speed)', 'geodirectory'),
231
-        'desc' => __('Enter whole number only ex. 40 (Tokyo is largest city in the world @40 sq miles) LEAVE BLANK FOR NO DISTANCE LIMIT', 'geodirectory'),
232
-        'id' => 'geodir_search_dist',
233
-        'type' => 'text',
234
-        'css' => 'min-width:300px;',
235
-        'std' => '40' // Default value for the page title - changed in settings
236
-    ),
237
-
238
-    array(
239
-        'name' => __('Show search distances in miles or km', 'geodirectory'),
240
-        'desc' => __('Miles', 'geodirectory'),
241
-        'id' => 'geodir_search_dist_1',
242
-        'std' => 'miles',
243
-        'type' => 'radio',
244
-        'value' => 'miles',
245
-        'radiogroup' => 'start'
246
-    ),
247
-    array(
248
-        'name' => __('Show search distances in miles or km', 'geodirectory'),
249
-        'desc' => __('Kilometers', 'geodirectory'),
250
-        'id' => 'geodir_search_dist_1',
251
-        'std' => 'miles',
252
-        'type' => 'radio',
253
-        'value' => 'km',
254
-        'radiogroup' => 'end'
255
-    ),
256
-
257
-    array(
258
-        'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
259
-        'desc' => __('Meters', 'geodirectory'),
260
-        'id' => 'geodir_search_dist_2',
261
-        'std' => 'meters',
262
-        'type' => 'radio',
263
-        'value' => 'meters',
264
-        'radiogroup' => 'start'
265
-    ),
266
-
267
-    array(
268
-        'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
269
-        'desc' => __('Feet', 'geodirectory'),
270
-        'id' => 'geodir_search_dist_2',
271
-        'std' => 'meters',
272
-        'type' => 'radio',
273
-        'value' => 'feet',
274
-        'radiogroup' => 'end'
275
-    ),
276
-
277
-    array(
278
-        'name' => __('Add location specific text to (Near) search for Google', 'geodirectory'),
279
-        'desc' => __('This is usefull if your directory is limted to one location such as: New York or Australia (this setting should be blank if using default country, regions etc with multilocation addon as it will automatically add them)', 'geodirectory'),
280
-        'id' => 'geodir_search_near_addition',
281
-        'type' => 'text',
282
-        'css' => 'min-width:300px;',
283
-        'std' => ''
284
-    ),
285
-    array(
286
-        'name' => __('Individual word search limit', 'geodirectory'),
287
-        'desc' => __('With this option you can limit individual words being searched for, for example searching for `Jo Brown` would return results with words like `Jones`, you can exclude these types of small character words if you wish.', 'geodirectory'),
288
-        'id' => 'geodir_search_word_limit',
289
-        'css' => 'min-width:300px;',
290
-        'std' => 'gridview_onehalf',
291
-        'type' => 'select',
292
-        'class' => 'chosen_select',
293
-        'options' => array_unique(array(
294
-            '0' => __('Disabled', 'geodirectory'),
295
-            '1' => __('1 Character words excluded', 'geodirectory'),
296
-            '2' => __('2 Character words and less excluded', 'geodirectory'),
297
-            '3' => __('3 Character words and less excluded', 'geodirectory'),
298
-        ))
299
-    ),
300
-
301
-
302
-    array('type' => 'sectionend', 'id' => 'search_settings'),
225
+	array('name' => __('Search', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'search_settings'),
226
+
227
+	array('name' => __('Search Settings', 'geodirectory'), 'type' => 'sectionstart', 'id' => 'search_settings'),
228
+
229
+	array(
230
+		'name' => __('Limit squared distance area to X miles (helps improve search speed)', 'geodirectory'),
231
+		'desc' => __('Enter whole number only ex. 40 (Tokyo is largest city in the world @40 sq miles) LEAVE BLANK FOR NO DISTANCE LIMIT', 'geodirectory'),
232
+		'id' => 'geodir_search_dist',
233
+		'type' => 'text',
234
+		'css' => 'min-width:300px;',
235
+		'std' => '40' // Default value for the page title - changed in settings
236
+	),
237
+
238
+	array(
239
+		'name' => __('Show search distances in miles or km', 'geodirectory'),
240
+		'desc' => __('Miles', 'geodirectory'),
241
+		'id' => 'geodir_search_dist_1',
242
+		'std' => 'miles',
243
+		'type' => 'radio',
244
+		'value' => 'miles',
245
+		'radiogroup' => 'start'
246
+	),
247
+	array(
248
+		'name' => __('Show search distances in miles or km', 'geodirectory'),
249
+		'desc' => __('Kilometers', 'geodirectory'),
250
+		'id' => 'geodir_search_dist_1',
251
+		'std' => 'miles',
252
+		'type' => 'radio',
253
+		'value' => 'km',
254
+		'radiogroup' => 'end'
255
+	),
256
+
257
+	array(
258
+		'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
259
+		'desc' => __('Meters', 'geodirectory'),
260
+		'id' => 'geodir_search_dist_2',
261
+		'std' => 'meters',
262
+		'type' => 'radio',
263
+		'value' => 'meters',
264
+		'radiogroup' => 'start'
265
+	),
266
+
267
+	array(
268
+		'name' => __('If distance is less than 0.01 show distance in meters or feet', 'geodirectory'),
269
+		'desc' => __('Feet', 'geodirectory'),
270
+		'id' => 'geodir_search_dist_2',
271
+		'std' => 'meters',
272
+		'type' => 'radio',
273
+		'value' => 'feet',
274
+		'radiogroup' => 'end'
275
+	),
276
+
277
+	array(
278
+		'name' => __('Add location specific text to (Near) search for Google', 'geodirectory'),
279
+		'desc' => __('This is usefull if your directory is limted to one location such as: New York or Australia (this setting should be blank if using default country, regions etc with multilocation addon as it will automatically add them)', 'geodirectory'),
280
+		'id' => 'geodir_search_near_addition',
281
+		'type' => 'text',
282
+		'css' => 'min-width:300px;',
283
+		'std' => ''
284
+	),
285
+	array(
286
+		'name' => __('Individual word search limit', 'geodirectory'),
287
+		'desc' => __('With this option you can limit individual words being searched for, for example searching for `Jo Brown` would return results with words like `Jones`, you can exclude these types of small character words if you wish.', 'geodirectory'),
288
+		'id' => 'geodir_search_word_limit',
289
+		'css' => 'min-width:300px;',
290
+		'std' => 'gridview_onehalf',
291
+		'type' => 'select',
292
+		'class' => 'chosen_select',
293
+		'options' => array_unique(array(
294
+			'0' => __('Disabled', 'geodirectory'),
295
+			'1' => __('1 Character words excluded', 'geodirectory'),
296
+			'2' => __('2 Character words and less excluded', 'geodirectory'),
297
+			'3' => __('3 Character words and less excluded', 'geodirectory'),
298
+		))
299
+	),
300
+
301
+
302
+	array('type' => 'sectionend', 'id' => 'search_settings'),
303 303
 
304 304
 )); //search_settings End
305 305
 
@@ -311,17 +311,17 @@  discard block
 block discarded – undo
311 311
  */
312 312
 $dummy_data_settings = apply_filters('geodir_dummy_data_settings', array(
313 313
 
314
-    array('name' => __('Dummy Data', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'dummy_data_settings'),
315
-
316
-    array(
317
-        'name' => '',
318
-        'desc' => '',
319
-        'id' => 'geodir_dummy_data_installer',
320
-        'type' => 'dummy_installer',
321
-        'css' => 'min-width:300px;',
322
-        'std' => '40' // Default value for the page title - changed in settings
323
-    ),
324
-    array('type' => 'sectionend', 'id' => 'geodir_dummy_data_settings'),
314
+	array('name' => __('Dummy Data', 'geodirectory'), 'type' => 'title', 'desc' => '', 'id' => 'dummy_data_settings'),
315
+
316
+	array(
317
+		'name' => '',
318
+		'desc' => '',
319
+		'id' => 'geodir_dummy_data_installer',
320
+		'type' => 'dummy_installer',
321
+		'css' => 'min-width:300px;',
322
+		'std' => '40' // Default value for the page title - changed in settings
323
+	),
324
+	array('type' => 'sectionend', 'id' => 'geodir_dummy_data_settings'),
325 325
 
326 326
 )); //dummy_data_settings End
327 327
 
Please login to merge, or discard this patch.
geodirectory-admin/admin_functions.php 3 patches
Braces   +230 added lines, -127 removed lines patch added patch discarded remove patch
@@ -184,8 +184,9 @@  discard block
 block discarded – undo
184 184
 
185 185
         $thumb_img_arr = array();
186 186
 
187
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
188
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
187
+        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
188
+                    $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
189
+        }
189 190
 
190 191
         $totImg = '';
191 192
         $image_limit = '';
@@ -236,7 +237,9 @@  discard block
 block discarded – undo
236 237
     {
237 238
         global $menu, $geodirectory;
238 239
 
239
-        if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
240
+        if (current_user_can('manage_options')) {
241
+        	$menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
242
+        }
240 243
 
241 244
         add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
242 245
 
@@ -300,7 +303,9 @@  discard block
 block discarded – undo
300 303
      */
301 304
     function geodir_admin_custom_menu_order()
302 305
     {
303
-        if (!current_user_can('manage_options')) return false;
306
+        if (!current_user_can('manage_options')) {
307
+        	return false;
308
+        }
304 309
         return true;
305 310
     }
306 311
 }
@@ -331,10 +336,11 @@  discard block
 block discarded – undo
331 336
 			case 'fail':
332 337
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
333 338
 				
334
-				if ($gderr == 21)
335
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
336
-				else
337
-					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
339
+				if ($gderr == 21) {
340
+							    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
341
+				} else {
342
+									echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
343
+				}
338 344
                 break;
339 345
         }
340 346
     }
@@ -385,8 +391,12 @@  discard block
 block discarded – undo
385 391
         include_once('option-pages/' . $current_tab . '_array.php');
386 392
     }
387 393
     if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
388
-        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
394
+        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) {
395
+        	die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
396
+        }
397
+        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) {
398
+        	die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
399
+        }
390 400
 		
391 401
 		/**
392 402
 		 * Fires before updating geodirectory admin settings.
@@ -398,8 +408,9 @@  discard block
 block discarded – undo
398 408
 		 */
399 409
 		do_action('geodir_before_update_options', $current_tab, $geodir_settings);		
400 410
 		
401
-        if (!empty($geodir_settings[$current_tab]))
402
-            geodir_update_options($geodir_settings[$current_tab]);
411
+        if (!empty($geodir_settings[$current_tab])) {
412
+                    geodir_update_options($geodir_settings[$current_tab]);
413
+        }
403 414
 
404 415
         /**
405 416
          * Called after GeoDirectory options settings are updated.
@@ -447,11 +458,14 @@  discard block
 block discarded – undo
447 458
  * @return bool Returns true if saved.
448 459
  */
449 460
 function geodir_update_options($options, $dummy = false) {
450
-    if ((!isset($_POST) || !$_POST) && !$dummy) return false;
461
+    if ((!isset($_POST) || !$_POST) && !$dummy) {
462
+    	return false;
463
+    }
451 464
 
452 465
     foreach ($options as $value) {
453
-        if ($dummy && isset($value['std']))
454
-            $_POST[$value['id']] = $value['std'];
466
+        if ($dummy && isset($value['std'])) {
467
+                    $_POST[$value['id']] = $value['std'];
468
+        }
455 469
 
456 470
 
457 471
         if (isset($value['type']) && $value['type'] == 'checkbox') :
@@ -460,25 +474,23 @@  discard block
 block discarded – undo
460 474
                 update_option($value['id'], $_POST[$value['id']]);
461 475
             } else {
462 476
                 update_option($value['id'], 0);
463
-            }
464
-
465
-        elseif (isset($value['type']) && $value['type'] == 'image_width') :
477
+            } elseif (isset($value['type']) && $value['type'] == 'image_width') :
466 478
 
467 479
             if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
468 480
                 update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
469 481
                 update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
470 482
                 if (isset($_POST[$value['id'] . '_crop'])) :
471 483
                     update_option($value['id'] . '_crop', 1);
472
-                else :
473
-                    update_option($value['id'] . '_crop', 0);
484
+                else {
485
+                	:
486
+                    update_option($value['id'] . '_crop', 0);
487
+                }
474 488
                 endif;
475 489
             } else {
476 490
                 update_option($value['id'] . '_width', $value['std']);
477 491
                 update_option($value['id'] . '_height', $value['std']);
478 492
                 update_option($value['id'] . '_crop', 1);
479
-            }
480
-
481
-        elseif (isset($value['type']) && $value['type'] == 'map') :
493
+            } elseif (isset($value['type']) && $value['type'] == 'map') :
482 494
             $post_types = array();
483 495
             $categories = array();
484 496
 
@@ -523,8 +535,9 @@  discard block
 block discarded – undo
523 535
                     $image_name_arr = explode('/', get_option($value['id']));
524 536
                     $noimg_name = end($image_name_arr);
525 537
                     $img_path = $uploads['path'] . '/' . $noimg_name;
526
-                    if (file_exists($img_path))
527
-                        unlink($img_path);
538
+                    if (file_exists($img_path)) {
539
+                                            unlink($img_path);
540
+                    }
528 541
                 }
529 542
 
530 543
                 update_option($value['id'], '');
@@ -540,8 +553,10 @@  discard block
 block discarded – undo
540 553
                 foreach ($uploadedfile as $key => $uplaod):
541 554
                     if ($key == 'name'):
542 555
                         $uplaods[$key] = $filename;
543
-                    else :
544
-                        $uplaods[$key] = $uplaod;
556
+                    else {
557
+                    	:
558
+                        $uplaods[$key] = $uplaod;
559
+                    }
545 560
                     endif;
546 561
                 endforeach;
547 562
 
@@ -551,8 +566,9 @@  discard block
 block discarded – undo
551 566
                     $image_name_arr = explode('/', get_option($value['id']));
552 567
                     $noimg_name = end($image_name_arr);
553 568
                     $img_path = $uploads['path'] . '/' . $noimg_name;
554
-                    if (file_exists($img_path))
555
-                        unlink($img_path);
569
+                    if (file_exists($img_path)) {
570
+                                            unlink($img_path);
571
+                    }
556 572
                 }
557 573
 
558 574
                 $upload_overrides = array('test_form' => false);
@@ -567,10 +583,12 @@  discard block
 block discarded – undo
567 583
             endif;
568 584
 
569 585
 
570
-        else :
586
+        else {
587
+        	:
571 588
             // same menu setting per theme.
572 589
             if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
573
-                $theme = wp_get_theme();
590
+                $theme = wp_get_theme();
591
+        }
574 592
                 update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
575 593
             }
576 594
 
@@ -582,8 +600,9 @@  discard block
 block discarded – undo
582 600
 
583 601
         endif;
584 602
     }
585
-    if ($dummy)
586
-        $_POST = array();
603
+    if ($dummy) {
604
+            $_POST = array();
605
+    }
587 606
     return true;
588 607
 
589 608
 }
@@ -729,9 +748,12 @@  discard block
 block discarded – undo
729 748
         $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
730 749
             'categorys' => __('Categories', 'geodirectory'));
731 750
 
732
-        if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
751
+        if (($offset = array_search('author', array_keys($columns))) === false) {
752
+        	// if the key doesn't exist
733 753
         {
734
-            $offset = 0; // should we prepend $array with $data?
754
+            $offset = 0;
755
+        }
756
+        // should we prepend $array with $data?
735 757
             $offset = count($columns); // or should we append $array with $data? lets pick this one...
736 758
         }
737 759
 
@@ -791,11 +813,13 @@  discard block
 block discarded – undo
791 813
                     $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
792 814
                 }
793 815
                 /* If no expire_date is found, output a default message. */
794
-                if (empty($expire_date))
795
-                    echo __('Unknown', 'geodirectory');
816
+                if (empty($expire_date)) {
817
+                                    echo __('Unknown', 'geodirectory');
818
+                }
796 819
                 /* If there is a expire_date, append 'days left' to the text string. */
797
-                else
798
-                    echo $expire_date . $date_diff_text;
820
+                else {
821
+                                    echo $expire_date . $date_diff_text;
822
+                }
799 823
                 break;
800 824
 
801 825
             /* If displaying the 'categorys' column. */
@@ -868,21 +892,26 @@  discard block
 block discarded – undo
868 892
 
869 893
     $geodir_posttypes = geodir_get_posttypes();
870 894
 
871
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
872
-        return;
895
+    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
896
+            return;
897
+    }
873 898
 
874 899
     if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
875
-        if (isset($_REQUEST['_status']))
876
-            geodir_change_post_status($post_id, $_REQUEST['_status']);
900
+        if (isset($_REQUEST['_status'])) {
901
+                    geodir_change_post_status($post_id, $_REQUEST['_status']);
902
+        }
877 903
 
878
-        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
879
-            return;
904
+        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) {
905
+                    return;
906
+        }
880 907
 
881
-        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
882
-            return;
908
+        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) {
909
+                    return;
910
+        }
883 911
 
884
-        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
885
-            return;
912
+        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) {
913
+                    return;
914
+        }
886 915
 
887 916
         geodir_save_listing($_REQUEST);
888 917
     }
@@ -907,10 +936,18 @@  discard block
 block discarded – undo
907 936
     $tab_id = '';
908 937
     $i = 0;
909 938
     foreach ($options as $value) :
910
-        if (!isset($value['name'])) $value['name'] = '';
911
-        if (!isset($value['class'])) $value['class'] = '';
912
-        if (!isset($value['css'])) $value['css'] = '';
913
-        if (!isset($value['std'])) $value['std'] = '';
939
+        if (!isset($value['name'])) {
940
+        	$value['name'] = '';
941
+        }
942
+        if (!isset($value['class'])) {
943
+        	$value['class'] = '';
944
+        }
945
+        if (!isset($value['css'])) {
946
+        	$value['css'] = '';
947
+        }
948
+        if (!isset($value['std'])) {
949
+        	$value['std'] = '';
950
+        }
914 951
         $desc = '';
915 952
         switch ($value['type']) :
916 953
             case 'dummy_installer':
@@ -926,11 +963,13 @@  discard block
 block discarded – undo
926 963
 
927 964
                 $i++;
928 965
 
929
-                if (isset($value['id']) && $value['id'])
930
-                    $tab_id = $value['id'];
966
+                if (isset($value['id']) && $value['id']) {
967
+                                    $tab_id = $value['id'];
968
+                }
931 969
 
932
-                if (isset($value['desc']) && $value['desc'])
933
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
970
+                if (isset($value['desc']) && $value['desc']) {
971
+                                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
972
+                }
934 973
 
935 974
                 if (isset($value['name']) && $value['name']) {
936 975
                     if ($first_title === true) {
@@ -961,10 +1000,12 @@  discard block
 block discarded – undo
961 1000
                 break;
962 1001
 
963 1002
             case 'sectionstart':
964
-                if (isset($value['desc']) && $value['desc'])
965
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
966
-                if (isset($value['name']) && $value['name'])
967
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
1003
+                if (isset($value['desc']) && $value['desc']) {
1004
+                                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
1005
+                }
1006
+                if (isset($value['name']) && $value['name']) {
1007
+                                    echo '<h3>' . $value['name'] . $desc . '</h3>';
1008
+                }
968 1009
                 /**
969 1010
                  * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
970 1011
                  *
@@ -972,7 +1013,9 @@  discard block
 block discarded – undo
972 1013
                  *
973 1014
                  * @since 1.0.0
974 1015
                  */
975
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
1016
+                if (isset($value['id']) && $value['id']) {
1017
+                	do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
1018
+                }
976 1019
                 echo '<table class="form-table">' . "\n\n";
977 1020
 
978 1021
                 break;
@@ -984,7 +1027,9 @@  discard block
 block discarded – undo
984 1027
                  *
985 1028
                  * @since 1.0.0
986 1029
                  */
987
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
1030
+                if (isset($value['id']) && $value['id']) {
1031
+                	do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
1032
+                }
988 1033
                 echo '</table>';
989 1034
                 /**
990 1035
                  * Called after a GeoDirectory settings sectionend is output in the GD settings page.
@@ -993,7 +1038,9 @@  discard block
 block discarded – undo
993 1038
                  *
994 1039
                  * @since 1.0.0
995 1040
                  */
996
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1041
+                if (isset($value['id']) && $value['id']) {
1042
+                	do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1043
+                }
997 1044
                 break;
998 1045
             case 'text':
999 1046
                 ?>
@@ -1084,17 +1131,32 @@  discard block
 block discarded – undo
1084 1131
                     <?php _e('Width', 'geodirectory'); ?> <input
1085 1132
                         name="<?php echo esc_attr($value['id']); ?>_width"
1086 1133
                         id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3"
1087
-                        value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1134
+                        value="<?php if ($size = get_option($value['id'] . '_width')) {
1135
+	echo stripslashes($size);
1136
+} else {
1137
+	echo $value['std'];
1138
+}
1139
+?>"/>
1088 1140
 
1089 1141
                     <?php _e('Height', 'geodirectory'); ?> <input
1090 1142
                         name="<?php echo esc_attr($value['id']); ?>_height"
1091 1143
                         id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3"
1092
-                        value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1144
+                        value="<?php if ($size = get_option($value['id'] . '_height')) {
1145
+	echo stripslashes($size);
1146
+} else {
1147
+	echo $value['std'];
1148
+}
1149
+?>"/>
1093 1150
 
1094 1151
                     <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
1095 1152
                             name="<?php echo esc_attr($value['id']); ?>_crop"
1096 1153
                             id="<?php echo esc_attr($value['id']); ?>_crop"
1097
-                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label>
1154
+                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') {
1155
+	checked(get_option($value['id'] . '_crop'), 1);
1156
+} else {
1157
+	checked(1);
1158
+}
1159
+?> /></label>
1098 1160
 
1099 1161
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1100 1162
                 </tr><?php
@@ -1108,17 +1170,22 @@  discard block
 block discarded – undo
1108 1170
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
1109 1171
                                             id="<?php echo esc_attr($value['id']); ?>"
1110 1172
                                             style="<?php echo esc_attr($value['css']); ?>"
1111
-                                            class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1173
+                                            class="<?php if (isset($value['class'])) {
1174
+	echo $value['class'];
1175
+}
1176
+?>"
1112 1177
                                             option-ajaxchosen="false">
1113 1178
                         <?php
1114 1179
                         foreach ($value['options'] as $key => $val) {
1115 1180
                             $geodir_select_value = '';
1116 1181
                             if ($option_value != '') {
1117
-                                if ($option_value != '' && $option_value == $key)
1118
-                                    $geodir_select_value = ' selected="selected" ';
1182
+                                if ($option_value != '' && $option_value == $key) {
1183
+                                                                    $geodir_select_value = ' selected="selected" ';
1184
+                                }
1119 1185
                             } else {
1120
-                                if ($value['std'] == $key)
1121
-                                    $geodir_select_value = ' selected="selected" ';
1186
+                                if ($value['std'] == $key) {
1187
+                                                                    $geodir_select_value = ' selected="selected" ';
1188
+                                }
1122 1189
                             }
1123 1190
                             ?>
1124 1191
                             <option
@@ -1143,8 +1210,14 @@  discard block
 block discarded – undo
1143 1210
                 <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]"
1144 1211
                                             id="<?php echo esc_attr($value['id']); ?>"
1145 1212
                                             style="<?php echo esc_attr($value['css']); ?>"
1146
-                                            class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1147
-                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1213
+                                            class="<?php if (isset($value['class'])) {
1214
+	echo $value['class'];
1215
+}
1216
+?>"
1217
+                                            data-placeholder="<?php if (isset($value['placeholder_text'])) {
1218
+	echo $value['placeholder_text'];
1219
+}
1220
+?>"
1148 1221
                                             option-ajaxchosen="false">
1149 1222
                         <?php
1150 1223
                         foreach ($value['options'] as $key => $val) {
@@ -1171,7 +1244,10 @@  discard block
 block discarded – undo
1171 1244
                 <td class="forminp">
1172 1245
                     <input type="file" name="<?php echo esc_attr($value['id']); ?>"
1173 1246
                            id="<?php echo esc_attr($value['id']); ?>" style="<?php echo esc_attr($value['css']); ?>"
1174
-                           class="<?php if (isset($value['class'])) echo $value['class']; ?>"/>
1247
+                           class="<?php if (isset($value['class'])) {
1248
+	echo $value['class'];
1249
+}
1250
+?>"/>
1175 1251
                     <?php if (get_option($value['id'])) { ?>
1176 1252
                         <input type="hidden" name="<?php echo esc_attr($value['id']); ?>_remove"
1177 1253
                                id="<?php echo esc_attr($value['id']); ?>_remove" value="0">
@@ -1252,13 +1328,15 @@  discard block
 block discarded – undo
1252 1328
                                 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1253 1329
                             );
1254 1330
                             $geodir_default_map_language = get_option('geodir_default_map_language');
1255
-                            if (empty($geodir_default_map_language))
1256
-                                $geodir_default_map_language = 'en';
1331
+                            if (empty($geodir_default_map_language)) {
1332
+                                                            $geodir_default_map_language = 'en';
1333
+                            }
1257 1334
                             foreach ($arr_map_langages as $language_key => $language_txt) {
1258
-                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1259
-                                    $geodir_default_language_selected = "selected='selected'";
1260
-                                else
1261
-                                    $geodir_default_language_selected = '';
1335
+                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) {
1336
+                                                                    $geodir_default_language_selected = "selected='selected'";
1337
+                                } else {
1338
+                                                                    $geodir_default_language_selected = '';
1339
+                                }
1262 1340
 
1263 1341
                                 ?>
1264 1342
                                 <option
@@ -1278,14 +1356,16 @@  discard block
 block discarded – undo
1278 1356
                             <?php
1279 1357
                             $post_types = geodir_get_posttypes('array');
1280 1358
                             $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1281
-                            if (empty($geodir_default_map_search_pt))
1282
-                                $geodir_default_map_search_pt = 'gd_place';
1359
+                            if (empty($geodir_default_map_search_pt)) {
1360
+                                                            $geodir_default_map_search_pt = 'gd_place';
1361
+                            }
1283 1362
                             if (is_array($post_types)) {
1284 1363
                                 foreach ($post_types as $key => $post_types_obj) {
1285
-                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1286
-                                        $geodir_search_pt_selected = "selected='selected'";
1287
-                                    else
1288
-                                        $geodir_search_pt_selected = '';
1364
+                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) {
1365
+                                                                            $geodir_search_pt_selected = "selected='selected'";
1366
+                                    } else {
1367
+                                                                            $geodir_search_pt_selected = '';
1368
+                                    }
1289 1369
 
1290 1370
                                     ?>
1291 1371
                                     <option
@@ -1405,7 +1485,7 @@  discard block
 block discarded – undo
1405 1485
                                id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1406 1486
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1407 1487
                             echo 'checked="checked"';
1408
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1488
+                        } elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1409 1489
                         <?php echo $value['desc']; ?></label><br>
1410 1490
                 </fieldset>
1411 1491
                 <?php
@@ -1425,10 +1505,18 @@  discard block
 block discarded – undo
1425 1505
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1426 1506
                 <td class="forminp">
1427 1507
                     <textarea
1428
-                        <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1508
+                        <?php if (isset($value['args'])) {
1509
+	echo $value['args'] . ' ';
1510
+}
1511
+?>name="<?php echo esc_attr($value['id']); ?>"
1429 1512
                         id="<?php echo esc_attr($value['id']); ?>"
1430 1513
                         <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1431
-                        style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span
1514
+                        style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) {
1515
+	echo esc_textarea(stripslashes(get_option($value['id'])));
1516
+} else {
1517
+	echo esc_textarea($value['std']);
1518
+}
1519
+?></textarea><span
1432 1520
                         class="description"><?php echo $value['desc'] ?></span>
1433 1521
 
1434 1522
                 </td>
@@ -1440,10 +1528,11 @@  discard block
 block discarded – undo
1440 1528
                 <tr valign="top">
1441 1529
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1442 1530
                 <td class="forminp"><?php
1443
-                    if (get_option($value['id']))
1444
-                        $content = stripslashes(get_option($value['id']));
1445
-                    else
1446
-                        $content = $value['std'];
1531
+                    if (get_option($value['id'])) {
1532
+                                            $content = stripslashes(get_option($value['id']));
1533
+                    } else {
1534
+                                            $content = $value['std'];
1535
+                    }
1447 1536
 
1448 1537
                     $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1449 1538
 
@@ -1483,7 +1572,9 @@  discard block
 block discarded – undo
1483 1572
                     'echo' => false,
1484 1573
                     'selected' => $page_setting);
1485 1574
 
1486
-                if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1575
+                if (isset($value['args'])) {
1576
+                	$args = wp_parse_args($value['args'], $args);
1577
+                }
1487 1578
 
1488 1579
                 ?>
1489 1580
                 <tr valign="top" class="single_select_page">
@@ -1502,8 +1593,10 @@  discard block
 block discarded – undo
1502 1593
                 if (strstr($country_setting, ':')) :
1503 1594
                     $country = current(explode(':', $country_setting));
1504 1595
                     $state = end(explode(':', $country_setting));
1505
-                else :
1506
-                    $country = $country_setting;
1596
+                else {
1597
+                	:
1598
+                    $country = $country_setting;
1599
+                }
1507 1600
                     $state = '*';
1508 1601
                 endif;
1509 1602
                 ?>
@@ -1530,8 +1623,10 @@  discard block
 block discarded – undo
1530 1623
                             data-placeholder="<?php _e('Choose countries&hellip;', 'geodirectory'); ?>"
1531 1624
                             title="Country" class="chosen_select">
1532 1625
                         <?php
1533
-                        if ($countries) foreach ($countries as $key => $val) :
1534
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1626
+                        if ($countries) {
1627
+                        	foreach ($countries as $key => $val) :
1628
+                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1629
+                        }
1535 1630
                         endforeach;
1536 1631
                         ?>
1537 1632
                     </select>
@@ -1769,8 +1864,9 @@  discard block
 block discarded – undo
1769 1864
         endforeach;
1770 1865
     endif;
1771 1866
 
1772
-    if (!empty($place_img_array))
1773
-        $curImages = implode(',', $place_img_array);
1867
+    if (!empty($place_img_array)) {
1868
+            $curImages = implode(',', $place_img_array);
1869
+    }
1774 1870
 
1775 1871
 
1776 1872
     // adjust values here
@@ -2116,16 +2212,17 @@  discard block
 block discarded – undo
2116 2212
 	global $post, $typenow, $current_screen;
2117 2213
 	
2118 2214
 	$post_type = NULL;
2119
-    if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2120
-		$post_type = get_post_type($_REQUEST['post']);
2121
-    elseif ($post && isset($post->post_type))
2122
-		$post_type = $post->post_type;
2123
-	elseif ($typenow)
2124
-		$post_type = $typenow;
2125
-	elseif ($current_screen && isset($current_screen->post_type))
2126
-		$post_type = $current_screen->post_type;
2127
-	elseif (isset($_REQUEST['post_type']))
2128
-		$post_type = sanitize_key($_REQUEST['post_type']);
2215
+    if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) {
2216
+    		$post_type = get_post_type($_REQUEST['post']);
2217
+    } elseif ($post && isset($post->post_type)) {
2218
+    		$post_type = $post->post_type;
2219
+    } elseif ($typenow) {
2220
+			$post_type = $typenow;
2221
+	} elseif ($current_screen && isset($current_screen->post_type)) {
2222
+			$post_type = $current_screen->post_type;
2223
+	} elseif (isset($_REQUEST['post_type'])) {
2224
+			$post_type = sanitize_key($_REQUEST['post_type']);
2225
+	}
2129 2226
 
2130 2227
 
2131 2228
 	return $post_type;
@@ -2185,9 +2282,10 @@  discard block
 block discarded – undo
2185 2282
 function geodir_hide_admin_preview_button() {
2186 2283
     global $post_type;
2187 2284
     $post_types = geodir_get_posttypes();
2188
-    if(in_array($post_type, $post_types))
2189
-        echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2190
-}
2285
+    if(in_array($post_type, $post_types)) {
2286
+            echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2287
+    }
2288
+    }
2191 2289
 add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2192 2290
 add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
2193 2291
 
@@ -5410,8 +5508,9 @@  discard block
 block discarded – undo
5410 5508
 function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5411 5509
     global $wpdb, $plugin_prefix;
5412 5510
 
5413
-    if ( ! post_type_exists( $post_type ) )
5414
-        return new stdClass;
5511
+    if ( ! post_type_exists( $post_type ) ) {
5512
+            return new stdClass;
5513
+    }
5415 5514
         
5416 5515
     $table = $plugin_prefix . $post_type . '_detail';
5417 5516
 
@@ -6068,7 +6167,9 @@  discard block
 block discarded – undo
6068 6167
 
6069 6168
     if ($page_found) :
6070 6169
         // Page exists
6071
-        if (!$option_value) update_option($option, $page_found);
6170
+        if (!$option_value) {
6171
+        	update_option($option, $page_found);
6172
+        }
6072 6173
         return;
6073 6174
     endif;
6074 6175
 
@@ -6474,7 +6575,7 @@  discard block
 block discarded – undo
6474 6575
         
6475 6576
         if(is_array($accounts)){
6476 6577
             $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6477
-        }elseif(get_option('geodir_ga_account_id')){
6578
+        } elseif(get_option('geodir_ga_account_id')){
6478 6579
             $accounts = array();
6479 6580
             $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6480 6581
         }
@@ -6495,14 +6596,16 @@  discard block
 block discarded – undo
6495 6596
     }
6496 6597
 
6497 6598
     # Create a new Gdata call
6498
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6499
-        $stats = new GDGoogleAnalyticsStats();
6500
-    else
6501
-        return false;
6599
+    if ( trim(get_option('geodir_ga_auth_code')) != '' ) {
6600
+            $stats = new GDGoogleAnalyticsStats();
6601
+    } else {
6602
+            return false;
6603
+    }
6502 6604
 
6503 6605
     # Check if Google sucessfully logged in
6504
-    if ( ! $stats->checkLogin() )
6505
-        return false;
6606
+    if ( ! $stats->checkLogin() ) {
6607
+            return false;
6608
+    }
6506 6609
 
6507 6610
     # Get a list of accounts
6508 6611
     try {
@@ -6519,10 +6622,10 @@  discard block
 block discarded – undo
6519 6622
     if ( count($accounts) > 0 ){
6520 6623
         update_option('geodir_gd_uids',$accounts);
6521 6624
         return $accounts;
6625
+    } else {
6626
+            return false;
6627
+    }
6522 6628
     }
6523
-    else
6524
-        return false;
6525
-}
6526 6629
 
6527 6630
 add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6528 6631
 function geodir_ga_deauthorize(){
Please login to merge, or discard this patch.
Indentation   +2904 added lines, -2904 removed lines patch added patch discarded remove patch
@@ -13,125 +13,125 @@  discard block
 block discarded – undo
13 13
  * @package GeoDirectory
14 14
  */
15 15
 function geodir_deactivation() {
16
-    // Update installed variable
17
-    update_option("geodir_installed", 0);
16
+	// Update installed variable
17
+	update_option("geodir_installed", 0);
18 18
 
19
-    // Remove rewrite rules and then recreate rewrite rules.
20
-    flush_rewrite_rules();
19
+	// Remove rewrite rules and then recreate rewrite rules.
20
+	flush_rewrite_rules();
21 21
 }
22 22
 
23 23
 if (!function_exists('geodir_admin_styles')) {
24
-    /**
25
-     * Enqueue Admin Styles.
26
-     *
27
-     * @since 1.0.0
28
-     * @package GeoDirectory
29
-     */
30
-    function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32
-        wp_enqueue_style('geodirectory-admin-css');
24
+	/**
25
+	 * Enqueue Admin Styles.
26
+	 *
27
+	 * @since 1.0.0
28
+	 * @package GeoDirectory
29
+	 */
30
+	function geodir_admin_styles() {
31
+		wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32
+		wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35
-        wp_enqueue_style('geodirectory-frontend-style');
34
+		wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35
+		wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38
-        wp_enqueue_style('geodir-chosen-style');
37
+		wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38
+		wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41
-        wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
40
+		wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41
+		wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44
-        wp_enqueue_style('geodirectory-jquery-ui-css');
43
+		wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44
+		wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47
-        wp_enqueue_style('geodirectory-custom-fields-css');
46
+		wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47
+		wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50
-        wp_enqueue_style('geodirectory-pluplodar-css');
49
+		wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50
+		wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53
-        wp_enqueue_style('geodir-rating-style');
52
+		wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53
+		wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56
-        wp_enqueue_style('geodir-rtl-style');
57
-    }
55
+		wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56
+		wp_enqueue_style('geodir-rtl-style');
57
+	}
58 58
 }
59 59
 
60 60
 if (!function_exists('geodir_admin_styles_req')) {
61
-    /**
62
-     * Loads stylesheets from CDN.
63
-     *
64
-     * @since 1.0.0
65
-     * @package GeoDirectory
66
-     */
67
-    function geodir_admin_styles_req()
68
-    {
61
+	/**
62
+	 * Loads stylesheets from CDN.
63
+	 *
64
+	 * @since 1.0.0
65
+	 * @package GeoDirectory
66
+	 */
67
+	function geodir_admin_styles_req()
68
+	{
69 69
 
70
-        wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71
-        wp_enqueue_style('font-awesome');
70
+		wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71
+		wp_enqueue_style('font-awesome');
72 72
 
73
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74
-        wp_enqueue_script('geodirectory-admin');
73
+		wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74
+		wp_enqueue_script('geodirectory-admin');
75 75
 
76
-    }
76
+	}
77 77
 }
78 78
 
79 79
 if (!function_exists('geodir_admin_scripts')) {
80
-    /**
81
-     * Enqueue Admin Scripts.
82
-     *
83
-     * @since 1.0.0
84
-     * @package GeoDirectory
85
-     */
86
-    function geodir_admin_scripts()
87
-    {
88
-        $geodir_map_name = geodir_map_name();
80
+	/**
81
+	 * Enqueue Admin Scripts.
82
+	 *
83
+	 * @since 1.0.0
84
+	 * @package GeoDirectory
85
+	 */
86
+	function geodir_admin_scripts()
87
+	{
88
+		$geodir_map_name = geodir_map_name();
89 89
         
90
-        wp_enqueue_script('jquery');
90
+		wp_enqueue_script('jquery');
91 91
 
92
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
92
+		wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93 93
 
94
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95
-        wp_enqueue_script('chosen');
94
+		wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95
+		wp_enqueue_script('chosen');
96 96
 
97
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98
-        wp_enqueue_script('geodirectory-choose-ajax');
97
+		wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98
+		wp_enqueue_script('geodirectory-choose-ajax');
99 99
 
100
-        if (isset($_REQUEST['listing_type'])) {
101
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102
-        }
100
+		if (isset($_REQUEST['listing_type'])) {
101
+			wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102
+		}
103 103
 
104
-        wp_enqueue_script('geodirectory-custom-fields-script');
105
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
104
+		wp_enqueue_script('geodirectory-custom-fields-script');
105
+		$plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
106 106
 
107
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
107
+		wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
108 108
 
109
-        if (in_array($geodir_map_name, array('auto', 'google'))) {
110
-            $map_lang = "&language=" . geodir_get_map_default_language();
111
-            $map_key = "&key=" . geodir_get_map_api_key();
112
-            /** This filter is documented in geodirectory_template_tags.php */
113
-            $map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
-            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
115
-        }
109
+		if (in_array($geodir_map_name, array('auto', 'google'))) {
110
+			$map_lang = "&language=" . geodir_get_map_default_language();
111
+			$map_key = "&key=" . geodir_get_map_api_key();
112
+			/** This filter is documented in geodirectory_template_tags.php */
113
+			$map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
+			wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
115
+		}
116 116
         
117
-        if ($geodir_map_name == 'osm') {
118
-            // Leaflet OpenStreetMap
119
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
120
-            wp_enqueue_style('geodirectory-leaflet-style');
117
+		if ($geodir_map_name == 'osm') {
118
+			// Leaflet OpenStreetMap
119
+			wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
120
+			wp_enqueue_style('geodirectory-leaflet-style');
121 121
                 
122
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
123
-            wp_enqueue_script('geodirectory-leaflet-script');
122
+			wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
123
+			wp_enqueue_script('geodirectory-leaflet-script');
124 124
             
125
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
126
-            wp_enqueue_script('geodirectory-leaflet-geo-script');
127
-        }
128
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
125
+			wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
126
+			wp_enqueue_script('geodirectory-leaflet-geo-script');
127
+		}
128
+		wp_enqueue_script( 'jquery-ui-autocomplete' );
129 129
         
130
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
131
-        wp_enqueue_script('geodirectory-goMap-script');
130
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
131
+		wp_enqueue_script('geodirectory-goMap-script');
132 132
 
133
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
134
-        wp_enqueue_script('geodirectory-goMap-script');
133
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
134
+		wp_enqueue_script('geodirectory-goMap-script');
135 135
 
136 136
 		// font awesome rating script
137 137
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
@@ -142,167 +142,167 @@  discard block
 block discarded – undo
142 142
 			wp_enqueue_script('geodir-jRating-js');
143 143
 		}
144 144
 
145
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
146
-        wp_enqueue_script('geodir-on-document-load');
147
-
148
-
149
-        // SCRIPT FOR UPLOAD
150
-        wp_enqueue_script('plupload-all');
151
-        wp_enqueue_script('jquery-ui-sortable');
152
-
153
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
154
-        wp_enqueue_script('geodirectory-plupload-script');
155
-
156
-        // SCRIPT FOR UPLOAD END
157
-
158
-
159
-        // place js config array for plupload
160
-        $plupload_init = array(
161
-            'runtimes' => 'html5,silverlight,flash,html4',
162
-            'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
163
-            'container' => 'plupload-upload-ui', // will be adjusted per uploader
164
-            'drop_element' => 'dropbox', // will be adjusted per uploader
165
-            'file_data_name' => 'async-upload', // will be adjusted per uploader
166
-            'multiple_queues' => true,
167
-            'max_file_size' => geodir_max_upload_size(),
168
-            'url' => admin_url('admin-ajax.php'),
169
-            'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
170
-            'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
171
-            'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
172
-            'multipart' => true,
173
-            'urlstream_upload' => true,
174
-            'multi_selection' => false, // will be added per uploader
175
-            // additional post data to send to our ajax hook
176
-            'multipart_params' => array(
177
-                '_ajax_nonce' => "", // will be added per uploader
178
-                'action' => 'plupload_action', // the ajax action name
179
-                'imgid' => 0 // will be added per uploader
180
-            )
181
-        );
182
-        $base_plupload_config = json_encode($plupload_init);
183
-
184
-
185
-        $thumb_img_arr = array();
186
-
187
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
188
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
189
-
190
-        $totImg = '';
191
-        $image_limit = '';
192
-        if (!empty($thumb_img_arr)) {
193
-            $totImg = count($thumb_img_arr);
194
-        }
145
+		wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
146
+		wp_enqueue_script('geodir-on-document-load');
147
+
148
+
149
+		// SCRIPT FOR UPLOAD
150
+		wp_enqueue_script('plupload-all');
151
+		wp_enqueue_script('jquery-ui-sortable');
152
+
153
+		wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
154
+		wp_enqueue_script('geodirectory-plupload-script');
155
+
156
+		// SCRIPT FOR UPLOAD END
157
+
158
+
159
+		// place js config array for plupload
160
+		$plupload_init = array(
161
+			'runtimes' => 'html5,silverlight,flash,html4',
162
+			'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
163
+			'container' => 'plupload-upload-ui', // will be adjusted per uploader
164
+			'drop_element' => 'dropbox', // will be adjusted per uploader
165
+			'file_data_name' => 'async-upload', // will be adjusted per uploader
166
+			'multiple_queues' => true,
167
+			'max_file_size' => geodir_max_upload_size(),
168
+			'url' => admin_url('admin-ajax.php'),
169
+			'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
170
+			'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
171
+			'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
172
+			'multipart' => true,
173
+			'urlstream_upload' => true,
174
+			'multi_selection' => false, // will be added per uploader
175
+			// additional post data to send to our ajax hook
176
+			'multipart_params' => array(
177
+				'_ajax_nonce' => "", // will be added per uploader
178
+				'action' => 'plupload_action', // the ajax action name
179
+				'imgid' => 0 // will be added per uploader
180
+			)
181
+		);
182
+		$base_plupload_config = json_encode($plupload_init);
183
+
184
+
185
+		$thumb_img_arr = array();
186
+
187
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
188
+			$thumb_img_arr = geodir_get_images($_REQUEST['pid']);
189
+
190
+		$totImg = '';
191
+		$image_limit = '';
192
+		if (!empty($thumb_img_arr)) {
193
+			$totImg = count($thumb_img_arr);
194
+		}
195 195
 
196
-        $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
197
-            'totalImg' => $totImg,
198
-            'image_limit' => $image_limit,
199
-            'upload_img_size' => geodir_max_upload_size());
196
+		$gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
197
+			'totalImg' => $totImg,
198
+			'image_limit' => $image_limit,
199
+			'upload_img_size' => geodir_max_upload_size());
200 200
 
201
-        wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
201
+		wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
202 202
 
203
-        $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
204
-        wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
203
+		$ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
204
+		wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
205 205
 
206 206
 
207
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
208
-        wp_enqueue_script('geodirectory-admin-script');
207
+		wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
208
+		wp_enqueue_script('geodirectory-admin-script');
209 209
 
210
-        wp_enqueue_style('farbtastic');
211
-        wp_enqueue_script('farbtastic');
210
+		wp_enqueue_style('farbtastic');
211
+		wp_enqueue_script('farbtastic');
212 212
 
213
-        $screen = get_current_screen();
214
-        if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
215
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
216
-        }
213
+		$screen = get_current_screen();
214
+		if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
215
+			wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
216
+		}
217 217
 
218
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
219
-        wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
218
+		$ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
219
+		wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
220 220
 
221
-    }
221
+	}
222 222
 }
223 223
 
224 224
 if (!function_exists('geodir_admin_menu')) {
225
-    /**
226
-     * Admin Menus
227
-     *
228
-     * Sets up the admin menus in wordpress.
229
-     *
230
-     * @since 1.0.0
231
-     * @package GeoDirectory
232
-     * @global array $menu Menu array.
233
-     * @global object $geodirectory GeoDirectory plugin object.
234
-     */
235
-    function geodir_admin_menu()
236
-    {
237
-        global $menu, $geodirectory;
225
+	/**
226
+	 * Admin Menus
227
+	 *
228
+	 * Sets up the admin menus in wordpress.
229
+	 *
230
+	 * @since 1.0.0
231
+	 * @package GeoDirectory
232
+	 * @global array $menu Menu array.
233
+	 * @global object $geodirectory GeoDirectory plugin object.
234
+	 */
235
+	function geodir_admin_menu()
236
+	{
237
+		global $menu, $geodirectory;
238 238
 
239
-        if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
239
+		if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
240 240
 
241
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
241
+		add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
242 242
 
243 243
 
244
-    }
244
+	}
245 245
 }
246 246
 
247 247
 if (!function_exists('geodir_admin_menu_order')) {
248
-    /**
249
-     * Order admin menus.
250
-     *
251
-     * @since 1.0.0
252
-     * @package GeoDirectory
253
-     * @param array $menu_order Menu order array.
254
-     * @return array Modified menu order array.
255
-     */
256
-    function geodir_admin_menu_order($menu_order)
257
-    {
258
-
259
-        // Initialize our custom order array
260
-        $geodir_menu_order = array();
261
-
262
-        // Get the index of our custom separator
263
-        $geodir_separator = array_search('separator-geodirectory', $menu_order);
264
-
265
-        // Get index of posttype menu
266
-        $post_types = geodir_get_posttypes();
267
-
268
-        // Loop through menu order and do some rearranging
269
-        foreach ($menu_order as $index => $item) :
270
-
271
-            if ((('geodirectory') == $item)) :
272
-                $geodir_menu_order[] = 'separator-geodirectory';
273
-                if (!empty($post_types)) {
274
-                    foreach ($post_types as $post_type) {
275
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
276
-                    }
277
-                }
278
-                $geodir_menu_order[] = $item;
248
+	/**
249
+	 * Order admin menus.
250
+	 *
251
+	 * @since 1.0.0
252
+	 * @package GeoDirectory
253
+	 * @param array $menu_order Menu order array.
254
+	 * @return array Modified menu order array.
255
+	 */
256
+	function geodir_admin_menu_order($menu_order)
257
+	{
279 258
 
280
-                unset($menu_order[$geodir_separator]);
281
-            //unset( $menu_order[$geodir_places] );
282
-            elseif (!in_array($item, array('separator-geodirectory'))) :
283
-                $geodir_menu_order[] = $item;
284
-            endif;
259
+		// Initialize our custom order array
260
+		$geodir_menu_order = array();
285 261
 
286
-        endforeach;
262
+		// Get the index of our custom separator
263
+		$geodir_separator = array_search('separator-geodirectory', $menu_order);
287 264
 
288
-        // Return order
289
-        return $geodir_menu_order;
290
-    }
265
+		// Get index of posttype menu
266
+		$post_types = geodir_get_posttypes();
267
+
268
+		// Loop through menu order and do some rearranging
269
+		foreach ($menu_order as $index => $item) :
270
+
271
+			if ((('geodirectory') == $item)) :
272
+				$geodir_menu_order[] = 'separator-geodirectory';
273
+				if (!empty($post_types)) {
274
+					foreach ($post_types as $post_type) {
275
+						$geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
276
+					}
277
+				}
278
+				$geodir_menu_order[] = $item;
279
+
280
+				unset($menu_order[$geodir_separator]);
281
+			//unset( $menu_order[$geodir_places] );
282
+			elseif (!in_array($item, array('separator-geodirectory'))) :
283
+				$geodir_menu_order[] = $item;
284
+			endif;
285
+
286
+		endforeach;
287
+
288
+		// Return order
289
+		return $geodir_menu_order;
290
+	}
291 291
 }
292 292
 
293 293
 if (!function_exists('geodir_admin_custom_menu_order')) {
294
-    /**
295
-     * Enables custom menu order.
296
-     *
297
-     * @since 1.0.0
298
-     * @package GeoDirectory
299
-     * @return bool
300
-     */
301
-    function geodir_admin_custom_menu_order()
302
-    {
303
-        if (!current_user_can('manage_options')) return false;
304
-        return true;
305
-    }
294
+	/**
295
+	 * Enables custom menu order.
296
+	 *
297
+	 * @since 1.0.0
298
+	 * @package GeoDirectory
299
+	 * @return bool
300
+	 */
301
+	function geodir_admin_custom_menu_order()
302
+	{
303
+		if (!current_user_can('manage_options')) return false;
304
+		return true;
305
+	}
306 306
 }
307 307
 
308 308
 /**
@@ -313,51 +313,51 @@  discard block
 block discarded – undo
313 313
  */
314 314
 function geodir_before_admin_panel()
315 315
 {
316
-    if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
317
-        echo '<div id="message" class="updated fade">
316
+	if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
317
+		echo '<div id="message" class="updated fade">
318 318
                         <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
319 319
                         <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
320 320
                 </div>';
321 321
 
322
-    }
322
+	}
323 323
 
324
-    if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
325
-        switch ($_REQUEST['msg']) {
326
-            case 'success':
327
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
328
-                flush_rewrite_rules(false);
324
+	if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
325
+		switch ($_REQUEST['msg']) {
326
+			case 'success':
327
+				echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
328
+				flush_rewrite_rules(false);
329 329
 
330
-                break;
330
+				break;
331 331
 			case 'fail':
332 332
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
333 333
 				
334 334
 				if ($gderr == 21)
335
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
335
+					echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
336 336
 				else
337 337
 					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
338
-                break;
339
-        }
340
-    }
338
+				break;
339
+		}
340
+	}
341 341
 
342
-    $geodir_load_map = get_option('geodir_load_map');
343
-    $need_map_key = false;
344
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
345
-        $need_map_key = true;
346
-    }
342
+	$geodir_load_map = get_option('geodir_load_map');
343
+	$need_map_key = false;
344
+	if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
345
+		$need_map_key = true;
346
+	}
347 347
 
348
-    if (!geodir_get_map_api_key() && $need_map_key) {
349
-        echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
350
-    }
348
+	if (!geodir_get_map_api_key() && $need_map_key) {
349
+		echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
350
+	}
351 351
 
352
-    if (!geodir_is_default_location_set()) {
353
-        echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
352
+	if (!geodir_is_default_location_set()) {
353
+		echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
354 354
 
355
-    }
355
+	}
356 356
 
357
-    if (!function_exists('curl_init')) {
358
-        echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
357
+	if (!function_exists('curl_init')) {
358
+		echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
359 359
 
360
-    }
360
+	}
361 361
 
362 362
 
363 363
 
@@ -374,19 +374,19 @@  discard block
 block discarded – undo
374 374
  */
375 375
 function geodir_handle_option_form_submit($current_tab)
376 376
 {
377
-    global $geodir_settings;
378
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
379
-        /**
380
-         * Contains settings array for current tab.
381
-         *
382
-         * @since 1.0.0
383
-         * @package GeoDirectory
384
-         */
385
-        include_once('option-pages/' . $current_tab . '_array.php');
386
-    }
387
-    if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
388
-        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
377
+	global $geodir_settings;
378
+	if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
379
+		/**
380
+		 * Contains settings array for current tab.
381
+		 *
382
+		 * @since 1.0.0
383
+		 * @package GeoDirectory
384
+		 */
385
+		include_once('option-pages/' . $current_tab . '_array.php');
386
+	}
387
+	if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
388
+		if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
+		if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
390 390
 		
391 391
 		/**
392 392
 		 * Fires before updating geodirectory admin settings.
@@ -398,38 +398,38 @@  discard block
 block discarded – undo
398 398
 		 */
399 399
 		do_action('geodir_before_update_options', $current_tab, $geodir_settings);		
400 400
 		
401
-        if (!empty($geodir_settings[$current_tab]))
402
-            geodir_update_options($geodir_settings[$current_tab]);
401
+		if (!empty($geodir_settings[$current_tab]))
402
+			geodir_update_options($geodir_settings[$current_tab]);
403 403
 
404
-        /**
405
-         * Called after GeoDirectory options settings are updated.
406
-         *
407
-         * @since 1.0.0
408
-         * @param array $geodir_settings The array of GeoDirectory settings.
409
-         * @see 'geodir_before_update_options'
410
-         */
411
-        do_action('geodir_update_options', $geodir_settings);
404
+		/**
405
+		 * Called after GeoDirectory options settings are updated.
406
+		 *
407
+		 * @since 1.0.0
408
+		 * @param array $geodir_settings The array of GeoDirectory settings.
409
+		 * @see 'geodir_before_update_options'
410
+		 */
411
+		do_action('geodir_update_options', $geodir_settings);
412 412
 
413
-        /**
414
-         * Called after GeoDirectory options settings are updated.
415
-         *
416
-         * Provides tab specific settings.
417
-         *
418
-         * @since 1.0.0
419
-         * @param string $current_tab The current settings tab name.
420
-         * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
421
-         */
422
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
413
+		/**
414
+		 * Called after GeoDirectory options settings are updated.
415
+		 *
416
+		 * Provides tab specific settings.
417
+		 *
418
+		 * @since 1.0.0
419
+		 * @param string $current_tab The current settings tab name.
420
+		 * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
421
+		 */
422
+		do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
423 423
 
424
-        flush_rewrite_rules(false);
424
+		flush_rewrite_rules(false);
425 425
 
426
-        $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
426
+		$current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
427 427
 
428
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
428
+		$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
429 429
 
430
-        wp_redirect($redirect_url);
431
-        exit();
432
-    endif;
430
+		wp_redirect($redirect_url);
431
+		exit();
432
+	endif;
433 433
 
434 434
 
435 435
 }
@@ -447,144 +447,144 @@  discard block
 block discarded – undo
447 447
  * @return bool Returns true if saved.
448 448
  */
449 449
 function geodir_update_options($options, $dummy = false) {
450
-    if ((!isset($_POST) || !$_POST) && !$dummy) return false;
450
+	if ((!isset($_POST) || !$_POST) && !$dummy) return false;
451 451
 
452
-    foreach ($options as $value) {
453
-        if ($dummy && isset($value['std']))
454
-            $_POST[$value['id']] = $value['std'];
452
+	foreach ($options as $value) {
453
+		if ($dummy && isset($value['std']))
454
+			$_POST[$value['id']] = $value['std'];
455 455
 
456 456
 
457
-        if (isset($value['type']) && $value['type'] == 'checkbox') :
457
+		if (isset($value['type']) && $value['type'] == 'checkbox') :
458 458
 
459
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
460
-                update_option($value['id'], $_POST[$value['id']]);
461
-            } else {
462
-                update_option($value['id'], 0);
463
-            }
459
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
460
+				update_option($value['id'], $_POST[$value['id']]);
461
+			} else {
462
+				update_option($value['id'], 0);
463
+			}
464 464
 
465
-        elseif (isset($value['type']) && $value['type'] == 'image_width') :
465
+		elseif (isset($value['type']) && $value['type'] == 'image_width') :
466 466
 
467
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
468
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
469
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
470
-                if (isset($_POST[$value['id'] . '_crop'])) :
471
-                    update_option($value['id'] . '_crop', 1);
472
-                else :
473
-                    update_option($value['id'] . '_crop', 0);
474
-                endif;
475
-            } else {
476
-                update_option($value['id'] . '_width', $value['std']);
477
-                update_option($value['id'] . '_height', $value['std']);
478
-                update_option($value['id'] . '_crop', 1);
479
-            }
467
+			if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
468
+				update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
469
+				update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
470
+				if (isset($_POST[$value['id'] . '_crop'])) :
471
+					update_option($value['id'] . '_crop', 1);
472
+				else :
473
+					update_option($value['id'] . '_crop', 0);
474
+				endif;
475
+			} else {
476
+				update_option($value['id'] . '_width', $value['std']);
477
+				update_option($value['id'] . '_height', $value['std']);
478
+				update_option($value['id'] . '_crop', 1);
479
+			}
480 480
 
481
-        elseif (isset($value['type']) && $value['type'] == 'map') :
482
-            $post_types = array();
483
-            $categories = array();
481
+		elseif (isset($value['type']) && $value['type'] == 'map') :
482
+			$post_types = array();
483
+			$categories = array();
484 484
 
485
-            if (!empty($_POST['home_map_post_types'])) :
486
-                foreach ($_POST['home_map_post_types'] as $post_type) :
487
-                    $post_types[] = $post_type;
488
-                endforeach;
489
-            endif;
485
+			if (!empty($_POST['home_map_post_types'])) :
486
+				foreach ($_POST['home_map_post_types'] as $post_type) :
487
+					$post_types[] = $post_type;
488
+				endforeach;
489
+			endif;
490 490
 
491
-            update_option('geodir_exclude_post_type_on_map', $post_types);
491
+			update_option('geodir_exclude_post_type_on_map', $post_types);
492 492
 
493
-            if (!empty($_POST['post_category'])) :
494
-                foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
495
-                    $categories[$texonomy] = array();
496
-                    foreach ($cat_arr as $category) :
497
-                        $categories[$texonomy][] = $category;
498
-                    endforeach;
499
-                    $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
500
-                endforeach;
501
-            endif;
502
-            update_option('geodir_exclude_cat_on_map', $categories);
503
-            update_option('geodir_exclude_cat_on_map_upgrade', 1);
504
-        elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
493
+			if (!empty($_POST['post_category'])) :
494
+				foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
495
+					$categories[$texonomy] = array();
496
+					foreach ($cat_arr as $category) :
497
+						$categories[$texonomy][] = $category;
498
+					endforeach;
499
+					$categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
500
+				endforeach;
501
+			endif;
502
+			update_option('geodir_exclude_cat_on_map', $categories);
503
+			update_option('geodir_exclude_cat_on_map_upgrade', 1);
504
+		elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
505 505
 
506 506
 
507
-            if (!empty($_POST['geodir_default_map_language'])):
508
-                update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
509
-            endif;
507
+			if (!empty($_POST['geodir_default_map_language'])):
508
+				update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
509
+			endif;
510 510
 
511 511
 
512
-            if (!empty($_POST['geodir_default_map_search_pt'])):
513
-                update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
514
-            endif;
512
+			if (!empty($_POST['geodir_default_map_search_pt'])):
513
+				update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
514
+			endif;
515 515
 
516 516
 
517
-        elseif (isset($value['type']) && $value['type'] == 'file') :
517
+		elseif (isset($value['type']) && $value['type'] == 'file') :
518 518
 
519 519
 
520
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
520
+			if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
521 521
 
522
-                if (get_option($value['id'])) {
523
-                    $image_name_arr = explode('/', get_option($value['id']));
524
-                    $noimg_name = end($image_name_arr);
525
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
526
-                    if (file_exists($img_path))
527
-                        unlink($img_path);
528
-                }
522
+				if (get_option($value['id'])) {
523
+					$image_name_arr = explode('/', get_option($value['id']));
524
+					$noimg_name = end($image_name_arr);
525
+					$img_path = $uploads['path'] . '/' . $noimg_name;
526
+					if (file_exists($img_path))
527
+						unlink($img_path);
528
+				}
529 529
 
530
-                update_option($value['id'], '');
531
-            }
530
+				update_option($value['id'], '');
531
+			}
532 532
 
533
-            $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
534
-            $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
535
-
536
-            if (!empty($filename)):
537
-                $ext = pathinfo($filename, PATHINFO_EXTENSION);
538
-                $uplaods = array();
539
-
540
-                foreach ($uploadedfile as $key => $uplaod):
541
-                    if ($key == 'name'):
542
-                        $uplaods[$key] = $filename;
543
-                    else :
544
-                        $uplaods[$key] = $uplaod;
545
-                    endif;
546
-                endforeach;
547
-
548
-                $uploads = wp_upload_dir();
549
-
550
-                if (get_option($value['id'])) {
551
-                    $image_name_arr = explode('/', get_option($value['id']));
552
-                    $noimg_name = end($image_name_arr);
553
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
554
-                    if (file_exists($img_path))
555
-                        unlink($img_path);
556
-                }
533
+			$uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
534
+			$filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
535
+
536
+			if (!empty($filename)):
537
+				$ext = pathinfo($filename, PATHINFO_EXTENSION);
538
+				$uplaods = array();
539
+
540
+				foreach ($uploadedfile as $key => $uplaod):
541
+					if ($key == 'name'):
542
+						$uplaods[$key] = $filename;
543
+					else :
544
+						$uplaods[$key] = $uplaod;
545
+					endif;
546
+				endforeach;
547
+
548
+				$uploads = wp_upload_dir();
549
+
550
+				if (get_option($value['id'])) {
551
+					$image_name_arr = explode('/', get_option($value['id']));
552
+					$noimg_name = end($image_name_arr);
553
+					$img_path = $uploads['path'] . '/' . $noimg_name;
554
+					if (file_exists($img_path))
555
+						unlink($img_path);
556
+				}
557 557
 
558
-                $upload_overrides = array('test_form' => false);
559
-                $movefile = wp_handle_upload($uplaods, $upload_overrides);
558
+				$upload_overrides = array('test_form' => false);
559
+				$movefile = wp_handle_upload($uplaods, $upload_overrides);
560 560
 
561
-                update_option($value['id'], $movefile['url']);
561
+				update_option($value['id'], $movefile['url']);
562 562
 
563
-            endif;
563
+			endif;
564 564
 
565
-            if (!get_option($value['id']) && isset($value['value'])):
566
-                update_option($value['id'], $value['value']);
567
-            endif;
565
+			if (!get_option($value['id']) && isset($value['value'])):
566
+				update_option($value['id'], $value['value']);
567
+			endif;
568 568
 
569 569
 
570
-        else :
571
-            // same menu setting per theme.
572
-            if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
573
-                $theme = wp_get_theme();
574
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
575
-            }
570
+		else :
571
+			// same menu setting per theme.
572
+			if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
573
+				$theme = wp_get_theme();
574
+				update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
575
+			}
576 576
 
577
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
578
-                update_option($value['id'], $_POST[$value['id']]);
579
-            } else {
580
-                delete_option($value['id']);
581
-            }
577
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
578
+				update_option($value['id'], $_POST[$value['id']]);
579
+			} else {
580
+				delete_option($value['id']);
581
+			}
582 582
 
583
-        endif;
584
-    }
585
-    if ($dummy)
586
-        $_POST = array();
587
-    return true;
583
+		endif;
584
+	}
585
+	if ($dummy)
586
+		$_POST = array();
587
+	return true;
588 588
 
589 589
 }
590 590
 
@@ -633,33 +633,33 @@  discard block
 block discarded – undo
633 633
 function places_custom_fields_tab($tabs)
634 634
 {
635 635
 
636
-    $geodir_post_types = get_option('geodir_post_types');
636
+	$geodir_post_types = get_option('geodir_post_types');
637 637
 
638
-    if (!empty($geodir_post_types)) {
638
+	if (!empty($geodir_post_types)) {
639 639
 
640
-        foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
640
+		foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
641 641
 
642
-            $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
642
+			$listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
643 643
 
644
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
645
-                'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
646
-                'subtabs' => array(
647
-                    array('subtab' => 'custom_fields',
648
-                        'label' => __('Custom Fields', 'geodirectory'),
649
-                        'request' => array('listing_type' => $geodir_post_type)),
650
-                    array('subtab' => 'sorting_options',
651
-                        'label' => __('Sorting Options', 'geodirectory'),
652
-                        'request' => array('listing_type' => $geodir_post_type)),
653
-                ),
654
-                'tab_index' => 9,
655
-                'request' => array('listing_type' => $geodir_post_type)
656
-            );
644
+			$tabs[$geodir_post_type . '_fields_settings'] = array(
645
+				'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
646
+				'subtabs' => array(
647
+					array('subtab' => 'custom_fields',
648
+						'label' => __('Custom Fields', 'geodirectory'),
649
+						'request' => array('listing_type' => $geodir_post_type)),
650
+					array('subtab' => 'sorting_options',
651
+						'label' => __('Sorting Options', 'geodirectory'),
652
+						'request' => array('listing_type' => $geodir_post_type)),
653
+				),
654
+				'tab_index' => 9,
655
+				'request' => array('listing_type' => $geodir_post_type)
656
+			);
657 657
 
658
-        endforeach;
658
+		endforeach;
659 659
 
660
-    }
660
+	}
661 661
 
662
-    return $tabs;
662
+	return $tabs;
663 663
 }
664 664
 
665 665
 
@@ -675,9 +675,9 @@  discard block
 block discarded – undo
675 675
  */
676 676
 function geodir_tools_setting_tab($tabs)
677 677
 {
678
-    wp_enqueue_script( 'jquery-ui-progressbar' );
679
-    $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
680
-    return $tabs;
678
+	wp_enqueue_script( 'jquery-ui-progressbar' );
679
+	$tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
680
+	return $tabs;
681 681
 }
682 682
 
683 683
 /**
@@ -692,8 +692,8 @@  discard block
 block discarded – undo
692 692
  */
693 693
 function geodir_compatibility_setting_tab($tabs)
694 694
 {
695
-    $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
696
-    return $tabs;
695
+	$tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
696
+	return $tabs;
697 697
 }
698 698
 
699 699
 
@@ -709,144 +709,144 @@  discard block
 block discarded – undo
709 709
  */
710 710
 function geodir_extend_geodirectory_setting_tab($tabs)
711 711
 {
712
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
713
-    return $tabs;
712
+	$tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
713
+	return $tabs;
714 714
 }
715 715
 
716 716
 
717 717
 if (!function_exists('geodir_edit_post_columns')) {
718
-    /**
719
-     * Modify admin post listing page columns.
720
-     *
721
-     * @since 1.0.0
722
-     * @package GeoDirectory
723
-     * @param array $columns The column array.
724
-     * @return array Altered column array.
725
-     */
726
-    function geodir_edit_post_columns($columns)
727
-    {
728
-
729
-        $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
730
-            'categorys' => __('Categories', 'geodirectory'));
731
-
732
-        if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
733
-        {
734
-            $offset = 0; // should we prepend $array with $data?
735
-            $offset = count($columns); // or should we append $array with $data? lets pick this one...
736
-        }
718
+	/**
719
+	 * Modify admin post listing page columns.
720
+	 *
721
+	 * @since 1.0.0
722
+	 * @package GeoDirectory
723
+	 * @param array $columns The column array.
724
+	 * @return array Altered column array.
725
+	 */
726
+	function geodir_edit_post_columns($columns)
727
+	{
737 728
 
738
-        $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
729
+		$new_columns = array('location' => __('Location (ID)', 'geodirectory'),
730
+			'categorys' => __('Categories', 'geodirectory'));
739 731
 
740
-        $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
732
+		if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
733
+		{
734
+			$offset = 0; // should we prepend $array with $data?
735
+			$offset = count($columns); // or should we append $array with $data? lets pick this one...
736
+		}
741 737
 
742
-        return $columns;
743
-    }
738
+		$columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
739
+
740
+		$columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
741
+
742
+		return $columns;
743
+	}
744 744
 }
745 745
 
746 746
 
747 747
 if (!function_exists('geodir_manage_post_columns')) {
748
-    /**
749
-     * Adds content to our custom post listing page columns.
750
-     *
751
-     * @since 1.0.0
752
-     * @package GeoDirectory
753
-     * @global object $wpdb WordPress Database object.
754
-     * @global object $post WordPress Post object.
755
-     * @param string $column The column name.
756
-     * @param int $post_id The post ID.
757
-     */
758
-    function geodir_manage_post_columns($column, $post_id)
759
-    {
760
-        global $post, $wpdb;
761
-
762
-        switch ($column):
763
-            /* If displaying the 'city' column. */
764
-            case 'location' :
765
-                $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
766
-                $location = geodir_get_location($location_id);
767
-                /* If no city is found, output a default message. */
768
-                if (empty($location)) {
769
-                    _e('Unknown', 'geodirectory');
770
-                } else {
771
-                    /* If there is a city id, append 'city name' to the text string. */
772
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
773
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
774
-                }
775
-                break;
776
-
777
-            /* If displaying the 'expire' column. */
778
-            case 'expire' :
779
-                $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
780
-                $d1 = $expire_date; // get expire_date
781
-                $d2 = date('Y-m-d'); // get current date
782
-                $state = __('days left', 'geodirectory');
783
-                $date_diff_text = '';
784
-                $expire_class = 'expire_left';
785
-                if ($expire_date != 'Never') {
786
-                    if (strtotime($d1) < strtotime($d2)) {
787
-                        $state = __('days overdue', 'geodirectory');
788
-                        $expire_class = 'expire_over';
789
-                    }
790
-                    $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
791
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
792
-                }
793
-                /* If no expire_date is found, output a default message. */
794
-                if (empty($expire_date))
795
-                    echo __('Unknown', 'geodirectory');
796
-                /* If there is a expire_date, append 'days left' to the text string. */
797
-                else
798
-                    echo $expire_date . $date_diff_text;
799
-                break;
800
-
801
-            /* If displaying the 'categorys' column. */
802
-            case 'categorys' :
803
-
804
-                /* Get the categorys for the post. */
805
-
806
-
807
-                $terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
808
-
809
-                /* If terms were found. */
810
-                if (!empty($terms)) {
811
-                    $out = array();
812
-                    /* Loop through each term, linking to the 'edit posts' page for the specific term. */
813
-                    foreach ($terms as $term) {
814
-                        if (!strstr($term->taxonomy, 'tag')) {
815
-                            $out[] = sprintf('<a href="%s">%s</a>',
816
-                                esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
817
-                                esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
818
-                            );
819
-                        }
820
-                    }
821
-                    /* Join the terms, separating them with a comma. */
822
-                    echo(join(', ', $out));
823
-                } /* If no terms were found, output a default message. */
824
-                else {
825
-                    _e('No Categories', 'geodirectory');
826
-                }
827
-                break;
748
+	/**
749
+	 * Adds content to our custom post listing page columns.
750
+	 *
751
+	 * @since 1.0.0
752
+	 * @package GeoDirectory
753
+	 * @global object $wpdb WordPress Database object.
754
+	 * @global object $post WordPress Post object.
755
+	 * @param string $column The column name.
756
+	 * @param int $post_id The post ID.
757
+	 */
758
+	function geodir_manage_post_columns($column, $post_id)
759
+	{
760
+		global $post, $wpdb;
761
+
762
+		switch ($column):
763
+			/* If displaying the 'city' column. */
764
+			case 'location' :
765
+				$location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
766
+				$location = geodir_get_location($location_id);
767
+				/* If no city is found, output a default message. */
768
+				if (empty($location)) {
769
+					_e('Unknown', 'geodirectory');
770
+				} else {
771
+					/* If there is a city id, append 'city name' to the text string. */
772
+					$add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
773
+					echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
774
+				}
775
+				break;
776
+
777
+			/* If displaying the 'expire' column. */
778
+			case 'expire' :
779
+				$expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
780
+				$d1 = $expire_date; // get expire_date
781
+				$d2 = date('Y-m-d'); // get current date
782
+				$state = __('days left', 'geodirectory');
783
+				$date_diff_text = '';
784
+				$expire_class = 'expire_left';
785
+				if ($expire_date != 'Never') {
786
+					if (strtotime($d1) < strtotime($d2)) {
787
+						$state = __('days overdue', 'geodirectory');
788
+						$expire_class = 'expire_over';
789
+					}
790
+					$date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
791
+					$date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
792
+				}
793
+				/* If no expire_date is found, output a default message. */
794
+				if (empty($expire_date))
795
+					echo __('Unknown', 'geodirectory');
796
+				/* If there is a expire_date, append 'days left' to the text string. */
797
+				else
798
+					echo $expire_date . $date_diff_text;
799
+				break;
828 800
 
829
-        endswitch;
830
-    }
801
+			/* If displaying the 'categorys' column. */
802
+			case 'categorys' :
803
+
804
+				/* Get the categorys for the post. */
805
+
806
+
807
+				$terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
808
+
809
+				/* If terms were found. */
810
+				if (!empty($terms)) {
811
+					$out = array();
812
+					/* Loop through each term, linking to the 'edit posts' page for the specific term. */
813
+					foreach ($terms as $term) {
814
+						if (!strstr($term->taxonomy, 'tag')) {
815
+							$out[] = sprintf('<a href="%s">%s</a>',
816
+								esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
817
+								esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
818
+							);
819
+						}
820
+					}
821
+					/* Join the terms, separating them with a comma. */
822
+					echo(join(', ', $out));
823
+				} /* If no terms were found, output a default message. */
824
+				else {
825
+					_e('No Categories', 'geodirectory');
826
+				}
827
+				break;
828
+
829
+		endswitch;
830
+	}
831 831
 }
832 832
 
833 833
 
834 834
 if (!function_exists('geodir_post_sortable_columns')) {
835
-    /**
836
-     * Makes admin post listing page columns sortable.
837
-     *
838
-     * @since 1.0.0
839
-     * @package GeoDirectory
840
-     * @param array $columns The column array.
841
-     * @return array Altered column array.
842
-     */
843
-    function geodir_post_sortable_columns($columns)
844
-    {
845
-
846
-        $columns['expire'] = 'expire';
847
-
848
-        return $columns;
849
-    }
835
+	/**
836
+	 * Makes admin post listing page columns sortable.
837
+	 *
838
+	 * @since 1.0.0
839
+	 * @package GeoDirectory
840
+	 * @param array $columns The column array.
841
+	 * @return array Altered column array.
842
+	 */
843
+	function geodir_post_sortable_columns($columns)
844
+	{
845
+
846
+		$columns['expire'] = 'expire';
847
+
848
+		return $columns;
849
+	}
850 850
 }
851 851
 
852 852
 /**
@@ -860,32 +860,32 @@  discard block
 block discarded – undo
860 860
  * @param int $post_id The post ID.
861 861
  */
862 862
 function geodir_post_information_save($post_id, $post) {
863
-    global $wpdb, $current_user;
863
+	global $wpdb, $current_user;
864 864
 
865
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
866
-        return;
867
-    }
865
+	if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
866
+		return;
867
+	}
868 868
 
869
-    $geodir_posttypes = geodir_get_posttypes();
869
+	$geodir_posttypes = geodir_get_posttypes();
870 870
 
871
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
872
-        return;
871
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
872
+		return;
873 873
 
874
-    if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
875
-        if (isset($_REQUEST['_status']))
876
-            geodir_change_post_status($post_id, $_REQUEST['_status']);
874
+	if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
875
+		if (isset($_REQUEST['_status']))
876
+			geodir_change_post_status($post_id, $_REQUEST['_status']);
877 877
 
878
-        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
879
-            return;
878
+		if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
879
+			return;
880 880
 
881
-        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
882
-            return;
881
+		if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
882
+			return;
883 883
 
884
-        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
885
-            return;
884
+		if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
885
+			return;
886 886
 
887
-        geodir_save_listing($_REQUEST);
888
-    }
887
+		geodir_save_listing($_REQUEST);
888
+	}
889 889
 }
890 890
 
891 891
 /**
@@ -901,102 +901,102 @@  discard block
 block discarded – undo
901 901
  */
902 902
 function geodir_admin_fields($options)
903 903
 {
904
-    global $geodirectory;
905
-
906
-    $first_title = true;
907
-    $tab_id = '';
908
-    $i = 0;
909
-    foreach ($options as $value) :
910
-        if (!isset($value['name'])) $value['name'] = '';
911
-        if (!isset($value['class'])) $value['class'] = '';
912
-        if (!isset($value['css'])) $value['css'] = '';
913
-        if (!isset($value['std'])) $value['std'] = '';
914
-        $desc = '';
915
-        switch ($value['type']) :
916
-            case 'dummy_installer':
917
-                $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
918
-                geodir_autoinstall_admin_header($post_type);
919
-                break;
920
-            case 'title':
921
-
922
-                if ($i == 0) {
923
-                    echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
924
-                    echo '<div class="inner_content_tab_main">';
925
-                }
904
+	global $geodirectory;
905
+
906
+	$first_title = true;
907
+	$tab_id = '';
908
+	$i = 0;
909
+	foreach ($options as $value) :
910
+		if (!isset($value['name'])) $value['name'] = '';
911
+		if (!isset($value['class'])) $value['class'] = '';
912
+		if (!isset($value['css'])) $value['css'] = '';
913
+		if (!isset($value['std'])) $value['std'] = '';
914
+		$desc = '';
915
+		switch ($value['type']) :
916
+			case 'dummy_installer':
917
+				$post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
918
+				geodir_autoinstall_admin_header($post_type);
919
+				break;
920
+			case 'title':
921
+
922
+				if ($i == 0) {
923
+					echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
924
+					echo '<div class="inner_content_tab_main">';
925
+				}
926 926
 
927
-                $i++;
927
+				$i++;
928 928
 
929
-                if (isset($value['id']) && $value['id'])
930
-                    $tab_id = $value['id'];
929
+				if (isset($value['id']) && $value['id'])
930
+					$tab_id = $value['id'];
931 931
 
932
-                if (isset($value['desc']) && $value['desc'])
933
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
932
+				if (isset($value['desc']) && $value['desc'])
933
+					$desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
934 934
 
935
-                if (isset($value['name']) && $value['name']) {
936
-                    if ($first_title === true) {
937
-                        $first_title = false;
938
-                    } else {
939
-                        echo '</div>';
940
-                    }
941
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
935
+				if (isset($value['name']) && $value['name']) {
936
+					if ($first_title === true) {
937
+						$first_title = false;
938
+					} else {
939
+						echo '</div>';
940
+					}
941
+					echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
942 942
 
943
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
944
-                }
943
+					echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
944
+				}
945 945
 
946
-                /**
947
-                 * Called after a GeoDirectory settings title is output in the GD settings page.
948
-                 *
949
-                 * The action is called dynamically geodir_settings_$value['id'].
950
-                 *
951
-                 * @since 1.0.0
952
-                 */
953
-                do_action('geodir_settings_' . sanitize_title($value['id']));
954
-                break;
955
-
956
-            case 'no_tabs':
957
-
958
-                echo '<div class="inner_content_tab_main">';
959
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
960
-
961
-                break;
962
-
963
-            case 'sectionstart':
964
-                if (isset($value['desc']) && $value['desc'])
965
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
966
-                if (isset($value['name']) && $value['name'])
967
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
968
-                /**
969
-                 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
970
-                 *
971
-                 * The action is called dynamically geodir_settings_$value['id']_start.
972
-                 *
973
-                 * @since 1.0.0
974
-                 */
975
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
976
-                echo '<table class="form-table">' . "\n\n";
977
-
978
-                break;
979
-            case 'sectionend':
980
-                /**
981
-                 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
982
-                 *
983
-                 * The action is called dynamically geodir_settings_$value['id']_end.
984
-                 *
985
-                 * @since 1.0.0
986
-                 */
987
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
988
-                echo '</table>';
989
-                /**
990
-                 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
991
-                 *
992
-                 * The action is called dynamically geodir_settings_$value['id']_end.
993
-                 *
994
-                 * @since 1.0.0
995
-                 */
996
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
997
-                break;
998
-            case 'text':
999
-                ?>
946
+				/**
947
+				 * Called after a GeoDirectory settings title is output in the GD settings page.
948
+				 *
949
+				 * The action is called dynamically geodir_settings_$value['id'].
950
+				 *
951
+				 * @since 1.0.0
952
+				 */
953
+				do_action('geodir_settings_' . sanitize_title($value['id']));
954
+				break;
955
+
956
+			case 'no_tabs':
957
+
958
+				echo '<div class="inner_content_tab_main">';
959
+				echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
960
+
961
+				break;
962
+
963
+			case 'sectionstart':
964
+				if (isset($value['desc']) && $value['desc'])
965
+					$desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
966
+				if (isset($value['name']) && $value['name'])
967
+					echo '<h3>' . $value['name'] . $desc . '</h3>';
968
+				/**
969
+				 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
970
+				 *
971
+				 * The action is called dynamically geodir_settings_$value['id']_start.
972
+				 *
973
+				 * @since 1.0.0
974
+				 */
975
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
976
+				echo '<table class="form-table">' . "\n\n";
977
+
978
+				break;
979
+			case 'sectionend':
980
+				/**
981
+				 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
982
+				 *
983
+				 * The action is called dynamically geodir_settings_$value['id']_end.
984
+				 *
985
+				 * @since 1.0.0
986
+				 */
987
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
988
+				echo '</table>';
989
+				/**
990
+				 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
991
+				 *
992
+				 * The action is called dynamically geodir_settings_$value['id']_end.
993
+				 *
994
+				 * @since 1.0.0
995
+				 */
996
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
997
+				break;
998
+			case 'text':
999
+				?>
1000 1000
                 <tr valign="top">
1001 1001
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1002 1002
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1005,15 +1005,15 @@  discard block
 block discarded – undo
1005 1005
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1006 1006
                                            style=" <?php echo esc_attr($value['css']); ?>"
1007 1007
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1008
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1009
-                                           } else {
1010
-                                               echo esc_attr($value['std']);
1011
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1008
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1009
+										   } else {
1010
+											   echo esc_attr($value['std']);
1011
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1012 1012
                 </tr><?php
1013
-                break;
1013
+				break;
1014 1014
 
1015
-            case 'map-key':
1016
-                ?>
1015
+			case 'map-key':
1016
+				?>
1017 1017
                 <tr valign="top">
1018 1018
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1019 1019
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1022,17 +1022,17 @@  discard block
 block discarded – undo
1022 1022
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1023 1023
                                            style=" <?php echo esc_attr($value['css']); ?>"
1024 1024
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1025
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1026
-                                           } else {
1027
-                                               echo esc_attr($value['std']);
1028
-                                           } ?>"/>
1025
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1026
+										   } else {
1027
+											   echo esc_attr($value['std']);
1028
+										   } ?>"/>
1029 1029
                     <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
1030 1030
                     <span class="description"><?php echo $value['desc']; ?></span></td>
1031 1031
                 </tr><?php
1032
-                break;
1032
+				break;
1033 1033
 
1034
-            case 'password':
1035
-                ?>
1034
+			case 'password':
1035
+				?>
1036 1036
                 <tr valign="top">
1037 1037
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1038 1038
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1041,42 +1041,42 @@  discard block
 block discarded – undo
1041 1041
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1042 1042
                                            style="<?php echo esc_attr($value['css']); ?>"
1043 1043
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1044
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1045
-                                           } else {
1046
-                                               echo esc_attr($value['std']);
1047
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1044
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1045
+										   } else {
1046
+											   echo esc_attr($value['std']);
1047
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1048 1048
                 </tr><?php
1049
-                break;
1049
+				break;
1050 1050
 
1051
-            case 'html_content':
1052
-                ?>
1051
+			case 'html_content':
1052
+				?>
1053 1053
                 <tr valign="top">
1054 1054
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1055 1055
                 <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td>
1056 1056
                 </tr><?php
1057
-                break;
1057
+				break;
1058 1058
 
1059
-            case 'color' :
1060
-                ?>
1059
+			case 'color' :
1060
+				?>
1061 1061
                 <tr valign="top">
1062 1062
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1063 1063
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1064 1064
                                            id="<?php echo esc_attr($value['id']); ?>" type="text"
1065 1065
                                            style="<?php echo esc_attr($value['css']); ?>"
1066 1066
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1067
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1068
-                                           } else {
1069
-                                               echo esc_attr($value['std']);
1070
-                                           } ?>" class="colorpick"/> <span
1067
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1068
+										   } else {
1069
+											   echo esc_attr($value['std']);
1070
+										   } ?>" class="colorpick"/> <span
1071 1071
                         class="description"><?php echo $value['desc']; ?></span>
1072 1072
 
1073 1073
                     <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv"
1074 1074
                          style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div>
1075 1075
                 </td>
1076 1076
                 </tr><?php
1077
-                break;
1078
-            case 'image_width' :
1079
-                ?>
1077
+				break;
1078
+			case 'image_width' :
1079
+				?>
1080 1080
                 <tr valign="top">
1081 1081
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1082 1082
                 <td class="forminp">
@@ -1098,11 +1098,11 @@  discard block
 block discarded – undo
1098 1098
 
1099 1099
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1100 1100
                 </tr><?php
1101
-                break;
1102
-            case 'select':
1103
-                $option_value = get_option($value['id']);
1104
-                $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1105
-                ?>
1101
+				break;
1102
+			case 'select':
1103
+				$option_value = get_option($value['id']);
1104
+				$option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1105
+				?>
1106 1106
                 <tr valign="top">
1107 1107
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1108 1108
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1111,33 +1111,33 @@  discard block
 block discarded – undo
1111 1111
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1112 1112
                                             option-ajaxchosen="false">
1113 1113
                         <?php
1114
-                        foreach ($value['options'] as $key => $val) {
1115
-                            $geodir_select_value = '';
1116
-                            if ($option_value != '') {
1117
-                                if ($option_value != '' && $option_value == $key)
1118
-                                    $geodir_select_value = ' selected="selected" ';
1119
-                            } else {
1120
-                                if ($value['std'] == $key)
1121
-                                    $geodir_select_value = ' selected="selected" ';
1122
-                            }
1123
-                            ?>
1114
+						foreach ($value['options'] as $key => $val) {
1115
+							$geodir_select_value = '';
1116
+							if ($option_value != '') {
1117
+								if ($option_value != '' && $option_value == $key)
1118
+									$geodir_select_value = ' selected="selected" ';
1119
+							} else {
1120
+								if ($value['std'] == $key)
1121
+									$geodir_select_value = ' selected="selected" ';
1122
+							}
1123
+							?>
1124 1124
                             <option
1125 1125
                                 value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo geodir_utf8_ucfirst($val) ?></option>
1126 1126
                         <?php
1127
-                        }
1128
-                        ?>
1127
+						}
1128
+						?>
1129 1129
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1130 1130
                 </td>
1131 1131
                 </tr><?php
1132
-                break;
1132
+				break;
1133 1133
 
1134
-            case 'multiselect':
1135
-                $option_values = get_option($value['id']);
1136
-                if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1137
-                   $option_values = $value['std'];
1138
-                }
1139
-                $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1140
-                ?>
1134
+			case 'multiselect':
1135
+				$option_values = get_option($value['id']);
1136
+				if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1137
+				   $option_values = $value['std'];
1138
+				}
1139
+				$option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1140
+				?>
1141 1141
                 <tr valign="top">
1142 1142
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1143 1143
                 <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]"
@@ -1147,25 +1147,25 @@  discard block
 block discarded – undo
1147 1147
                                             data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1148 1148
                                             option-ajaxchosen="false">
1149 1149
                         <?php
1150
-                        foreach ($value['options'] as $key => $val) {
1151
-                            if (strpos($key, 'optgroup_start-') === 0) {
1152
-                                ?><optgroup label="<?php echo geodir_utf8_ucfirst($val); ?>"><?php
1153
-                            } else if (strpos($key, 'optgroup_end-') === 0) {
1154
-                                ?></optgroup><?php
1155
-                            } else {
1156
-                                ?>
1150
+						foreach ($value['options'] as $key => $val) {
1151
+							if (strpos($key, 'optgroup_start-') === 0) {
1152
+								?><optgroup label="<?php echo geodir_utf8_ucfirst($val); ?>"><?php
1153
+							} else if (strpos($key, 'optgroup_end-') === 0) {
1154
+								?></optgroup><?php
1155
+							} else {
1156
+								?>
1157 1157
                                 <option
1158 1158
                                     value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo geodir_utf8_ucfirst($val) ?></option>
1159 1159
                             <?php
1160
-                            }
1161
-                        }
1162
-                        ?>
1160
+							}
1161
+						}
1162
+						?>
1163 1163
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1164 1164
                 </td>
1165 1165
                 </tr><?php
1166
-                break;
1167
-            case 'file':
1168
-                ?>
1166
+				break;
1167
+			case 'file':
1168
+				?>
1169 1169
                 <tr valign="top">
1170 1170
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1171 1171
                 <td class="forminp">
@@ -1185,87 +1185,87 @@  discard block
 block discarded – undo
1185 1185
                     <?php } ?>
1186 1186
                 </td>
1187 1187
                 </tr><?php
1188
-                break;
1189
-            case 'map_default_settings' :
1190
-                ?>
1188
+				break;
1189
+			case 'map_default_settings' :
1190
+				?>
1191 1191
 
1192 1192
                 <tr valign="top">
1193 1193
                     <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1194 1194
                     <td width="60%">
1195 1195
                         <select name="geodir_default_map_language" style="width:60%">
1196 1196
                             <?php
1197
-                            $arr_map_langages = array(
1198
-                                'ar' => __('ARABIC', 'geodirectory'),
1199
-                                'eu' => __('BASQUE', 'geodirectory'),
1200
-                                'bg' => __('BULGARIAN', 'geodirectory'),
1201
-                                'bn' => __('BENGALI', 'geodirectory'),
1202
-                                'ca' => __('CATALAN', 'geodirectory'),
1203
-                                'cs' => __('CZECH', 'geodirectory'),
1204
-                                'da' => __('DANISH', 'geodirectory'),
1205
-                                'de' => __('GERMAN', 'geodirectory'),
1206
-                                'el' => __('GREEK', 'geodirectory'),
1207
-                                'en' => __('ENGLISH', 'geodirectory'),
1208
-                                'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1209
-                                'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1210
-                                'es' => __('SPANISH', 'geodirectory'),
1211
-                                'eu' => __('BASQUE', 'geodirectory'),
1212
-                                'fa' => __('FARSI', 'geodirectory'),
1213
-                                'fi' => __('FINNISH', 'geodirectory'),
1214
-                                'fil' => __('FILIPINO', 'geodirectory'),
1215
-                                'fr' => __('FRENCH', 'geodirectory'),
1216
-                                'gl' => __('GALICIAN', 'geodirectory'),
1217
-                                'gu' => __('GUJARATI', 'geodirectory'),
1218
-                                'hi' => __('HINDI', 'geodirectory'),
1219
-                                'hr' => __('CROATIAN', 'geodirectory'),
1220
-                                'hu' => __('HUNGARIAN', 'geodirectory'),
1221
-                                'id' => __('INDONESIAN', 'geodirectory'),
1222
-                                'it' => __('ITALIAN', 'geodirectory'),
1223
-                                'iw' => __('HEBREW', 'geodirectory'),
1224
-                                'ja' => __('JAPANESE', 'geodirectory'),
1225
-                                'kn' => __('KANNADA', 'geodirectory'),
1226
-                                'ko' => __('KOREAN', 'geodirectory'),
1227
-                                'lt' => __('LITHUANIAN', 'geodirectory'),
1228
-                                'lv' => __('LATVIAN', 'geodirectory'),
1229
-                                'ml' => __('MALAYALAM', 'geodirectory'),
1230
-                                'mr' => __('MARATHI', 'geodirectory'),
1231
-                                'nl' => __('DUTCH', 'geodirectory'),
1232
-                                'no' => __('NORWEGIAN', 'geodirectory'),
1233
-                                'pl' => __('POLISH', 'geodirectory'),
1234
-                                'pt' => __('PORTUGUESE', 'geodirectory'),
1235
-                                'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1236
-                                'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1237
-                                'ro' => __('ROMANIAN', 'geodirectory'),
1238
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1239
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1240
-                                'sk' => __('SLOVAK', 'geodirectory'),
1241
-                                'sl' => __('SLOVENIAN', 'geodirectory'),
1242
-                                'sr' => __('SERBIAN', 'geodirectory'),
1243
-                                'sv' => __('	SWEDISH', 'geodirectory'),
1244
-                                'tl' => __('TAGALOG', 'geodirectory'),
1245
-                                'ta' => __('TAMIL', 'geodirectory'),
1246
-                                'te' => __('TELUGU', 'geodirectory'),
1247
-                                'th' => __('THAI', 'geodirectory'),
1248
-                                'tr' => __('TURKISH', 'geodirectory'),
1249
-                                'uk' => __('UKRAINIAN', 'geodirectory'),
1250
-                                'vi' => __('VIETNAMESE', 'geodirectory'),
1251
-                                'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1252
-                                'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1253
-                            );
1254
-                            $geodir_default_map_language = get_option('geodir_default_map_language');
1255
-                            if (empty($geodir_default_map_language))
1256
-                                $geodir_default_map_language = 'en';
1257
-                            foreach ($arr_map_langages as $language_key => $language_txt) {
1258
-                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1259
-                                    $geodir_default_language_selected = "selected='selected'";
1260
-                                else
1261
-                                    $geodir_default_language_selected = '';
1262
-
1263
-                                ?>
1197
+							$arr_map_langages = array(
1198
+								'ar' => __('ARABIC', 'geodirectory'),
1199
+								'eu' => __('BASQUE', 'geodirectory'),
1200
+								'bg' => __('BULGARIAN', 'geodirectory'),
1201
+								'bn' => __('BENGALI', 'geodirectory'),
1202
+								'ca' => __('CATALAN', 'geodirectory'),
1203
+								'cs' => __('CZECH', 'geodirectory'),
1204
+								'da' => __('DANISH', 'geodirectory'),
1205
+								'de' => __('GERMAN', 'geodirectory'),
1206
+								'el' => __('GREEK', 'geodirectory'),
1207
+								'en' => __('ENGLISH', 'geodirectory'),
1208
+								'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1209
+								'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1210
+								'es' => __('SPANISH', 'geodirectory'),
1211
+								'eu' => __('BASQUE', 'geodirectory'),
1212
+								'fa' => __('FARSI', 'geodirectory'),
1213
+								'fi' => __('FINNISH', 'geodirectory'),
1214
+								'fil' => __('FILIPINO', 'geodirectory'),
1215
+								'fr' => __('FRENCH', 'geodirectory'),
1216
+								'gl' => __('GALICIAN', 'geodirectory'),
1217
+								'gu' => __('GUJARATI', 'geodirectory'),
1218
+								'hi' => __('HINDI', 'geodirectory'),
1219
+								'hr' => __('CROATIAN', 'geodirectory'),
1220
+								'hu' => __('HUNGARIAN', 'geodirectory'),
1221
+								'id' => __('INDONESIAN', 'geodirectory'),
1222
+								'it' => __('ITALIAN', 'geodirectory'),
1223
+								'iw' => __('HEBREW', 'geodirectory'),
1224
+								'ja' => __('JAPANESE', 'geodirectory'),
1225
+								'kn' => __('KANNADA', 'geodirectory'),
1226
+								'ko' => __('KOREAN', 'geodirectory'),
1227
+								'lt' => __('LITHUANIAN', 'geodirectory'),
1228
+								'lv' => __('LATVIAN', 'geodirectory'),
1229
+								'ml' => __('MALAYALAM', 'geodirectory'),
1230
+								'mr' => __('MARATHI', 'geodirectory'),
1231
+								'nl' => __('DUTCH', 'geodirectory'),
1232
+								'no' => __('NORWEGIAN', 'geodirectory'),
1233
+								'pl' => __('POLISH', 'geodirectory'),
1234
+								'pt' => __('PORTUGUESE', 'geodirectory'),
1235
+								'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1236
+								'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1237
+								'ro' => __('ROMANIAN', 'geodirectory'),
1238
+								'ru' => __('RUSSIAN', 'geodirectory'),
1239
+								'ru' => __('RUSSIAN', 'geodirectory'),
1240
+								'sk' => __('SLOVAK', 'geodirectory'),
1241
+								'sl' => __('SLOVENIAN', 'geodirectory'),
1242
+								'sr' => __('SERBIAN', 'geodirectory'),
1243
+								'sv' => __('	SWEDISH', 'geodirectory'),
1244
+								'tl' => __('TAGALOG', 'geodirectory'),
1245
+								'ta' => __('TAMIL', 'geodirectory'),
1246
+								'te' => __('TELUGU', 'geodirectory'),
1247
+								'th' => __('THAI', 'geodirectory'),
1248
+								'tr' => __('TURKISH', 'geodirectory'),
1249
+								'uk' => __('UKRAINIAN', 'geodirectory'),
1250
+								'vi' => __('VIETNAMESE', 'geodirectory'),
1251
+								'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1252
+								'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1253
+							);
1254
+							$geodir_default_map_language = get_option('geodir_default_map_language');
1255
+							if (empty($geodir_default_map_language))
1256
+								$geodir_default_map_language = 'en';
1257
+							foreach ($arr_map_langages as $language_key => $language_txt) {
1258
+								if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1259
+									$geodir_default_language_selected = "selected='selected'";
1260
+								else
1261
+									$geodir_default_language_selected = '';
1262
+
1263
+								?>
1264 1264
                                 <option
1265 1265
                                     value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option>
1266 1266
 
1267 1267
                             <?php }
1268
-                            ?>
1268
+							?>
1269 1269
                         </select>
1270 1270
                     </td>
1271 1271
                 </tr>
@@ -1276,46 +1276,46 @@  discard block
 block discarded – undo
1276 1276
                     <td width="60%">
1277 1277
                         <select name="geodir_default_map_search_pt" style="width:60%">
1278 1278
                             <?php
1279
-                            $post_types = geodir_get_posttypes('array');
1280
-                            $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1281
-                            if (empty($geodir_default_map_search_pt))
1282
-                                $geodir_default_map_search_pt = 'gd_place';
1283
-                            if (is_array($post_types)) {
1284
-                                foreach ($post_types as $key => $post_types_obj) {
1285
-                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1286
-                                        $geodir_search_pt_selected = "selected='selected'";
1287
-                                    else
1288
-                                        $geodir_search_pt_selected = '';
1289
-
1290
-                                    ?>
1279
+							$post_types = geodir_get_posttypes('array');
1280
+							$geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1281
+							if (empty($geodir_default_map_search_pt))
1282
+								$geodir_default_map_search_pt = 'gd_place';
1283
+							if (is_array($post_types)) {
1284
+								foreach ($post_types as $key => $post_types_obj) {
1285
+									if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1286
+										$geodir_search_pt_selected = "selected='selected'";
1287
+									else
1288
+										$geodir_search_pt_selected = '';
1289
+
1290
+									?>
1291 1291
                                     <option
1292 1292
                                         value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo __($post_types_obj['labels']['singular_name'], 'geodirectory'); ?></option>
1293 1293
 
1294 1294
                                 <?php }
1295 1295
 
1296
-                            }
1296
+							}
1297 1297
 
1298
-                            ?>
1298
+							?>
1299 1299
                         </select>
1300 1300
                     </td>
1301 1301
                 </tr>
1302 1302
 
1303 1303
                 <?php
1304
-                break;
1304
+				break;
1305 1305
 
1306
-            case 'map':
1307
-                ?>
1306
+			case 'map':
1307
+				?>
1308 1308
                 <tr valign="top">
1309 1309
                     <td class="forminp">
1310 1310
                         <?php
1311
-                        global $post_cat, $cat_display;
1312
-                        $post_types = geodir_get_posttypes('object');
1313
-                        $cat_display = 'checkbox';
1314
-                        $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1315
-                        $gd_cats = get_option('geodir_exclude_cat_on_map');
1316
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1317
-                        $count = 1;
1318
-                        ?>
1311
+						global $post_cat, $cat_display;
1312
+						$post_types = geodir_get_posttypes('object');
1313
+						$cat_display = 'checkbox';
1314
+						$gd_post_types = get_option('geodir_exclude_post_type_on_map');
1315
+						$gd_cats = get_option('geodir_exclude_cat_on_map');
1316
+						$gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1317
+						$count = 1;
1318
+						?>
1319 1319
                         <table width="70%" class="widefat">
1320 1320
                             <thead>
1321 1321
                             <tr>
@@ -1324,18 +1324,18 @@  discard block
 block discarded – undo
1324 1324
                                 <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th>
1325 1325
                             </tr>
1326 1326
                             <?php
1327
-                            $gd_categs = $gd_cats;
1328
-                            foreach ($post_types as $key => $post_types_obj) :
1329
-                                $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1330
-                                $gd_taxonomy = geodir_get_taxonomies($key);
1331
-                                if ($gd_cats_upgrade) {
1332
-                                    $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1333
-                                    $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1334
-                                    $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1335
-                                }
1336
-                                $post_cat = implode(',', $gd_cats);
1337
-                                $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1338
-                                ?>
1327
+							$gd_categs = $gd_cats;
1328
+							foreach ($post_types as $key => $post_types_obj) :
1329
+								$checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1330
+								$gd_taxonomy = geodir_get_taxonomies($key);
1331
+								if ($gd_cats_upgrade) {
1332
+									$gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1333
+									$gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1334
+									$gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1335
+								}
1336
+								$post_cat = implode(',', $gd_cats);
1337
+								$gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1338
+								?>
1339 1339
                                 <tr>
1340 1340
                                     <td valign="top" width="5%"><?php echo $count; ?></td>
1341 1341
                                     <td valign="top" width="25%" id="td_post_types"><input type="checkbox"
@@ -1356,19 +1356,19 @@  discard block
 block discarded – undo
1356 1356
                     </td>
1357 1357
                 </tr>
1358 1358
                 <?php
1359
-                break;
1359
+				break;
1360 1360
 
1361
-            case 'checkbox' :
1361
+			case 'checkbox' :
1362 1362
 
1363
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1364
-                    ?>
1363
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1364
+					?>
1365 1365
                     <tr valign="top">
1366 1366
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1367 1367
                     <td class="forminp">
1368 1368
                 <?php
1369
-                endif;
1369
+				endif;
1370 1370
 
1371
-                ?>
1371
+				?>
1372 1372
                 <fieldset>
1373 1373
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1374 1374
                     <label for="<?php echo $value['id'] ?>">
@@ -1378,49 +1378,49 @@  discard block
 block discarded – undo
1378 1378
                 </fieldset>
1379 1379
                 <?php
1380 1380
 
1381
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1382
-                    ?>
1381
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1382
+					?>
1383 1383
                     </td>
1384 1384
                     </tr>
1385 1385
                 <?php
1386
-                endif;
1386
+				endif;
1387 1387
 
1388
-                break;
1388
+				break;
1389 1389
 
1390
-            case 'radio' :
1390
+			case 'radio' :
1391 1391
 
1392
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1393
-                    ?>
1392
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1393
+					?>
1394 1394
                     <tr valign="top">
1395 1395
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1396 1396
                     <td class="forminp">
1397 1397
                 <?php
1398
-                endif;
1398
+				endif;
1399 1399
 
1400
-                ?>
1400
+				?>
1401 1401
                 <fieldset>
1402 1402
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1403 1403
                     <label for="<?php echo $value['id'];?>">
1404 1404
                         <input name="<?php echo esc_attr($value['id']); ?>"
1405 1405
                                id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1406 1406
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1407
-                            echo 'checked="checked"';
1408
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1407
+							echo 'checked="checked"';
1408
+						}elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1409 1409
                         <?php echo $value['desc']; ?></label><br>
1410 1410
                 </fieldset>
1411 1411
                 <?php
1412 1412
 
1413
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1414
-                    ?>
1413
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1414
+					?>
1415 1415
                     </td>
1416 1416
                     </tr>
1417 1417
                 <?php
1418
-                endif;
1418
+				endif;
1419 1419
 
1420
-                break;
1420
+				break;
1421 1421
 
1422
-            case 'textarea':
1423
-                ?>
1422
+			case 'textarea':
1423
+				?>
1424 1424
                 <tr valign="top">
1425 1425
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1426 1426
                 <td class="forminp">
@@ -1433,30 +1433,30 @@  discard block
 block discarded – undo
1433 1433
 
1434 1434
                 </td>
1435 1435
                 </tr><?php
1436
-                break;
1436
+				break;
1437 1437
 
1438
-            case 'editor':
1439
-                ?>
1438
+			case 'editor':
1439
+				?>
1440 1440
                 <tr valign="top">
1441 1441
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1442 1442
                 <td class="forminp"><?php
1443
-                    if (get_option($value['id']))
1444
-                        $content = stripslashes(get_option($value['id']));
1445
-                    else
1446
-                        $content = $value['std'];
1443
+					if (get_option($value['id']))
1444
+						$content = stripslashes(get_option($value['id']));
1445
+					else
1446
+						$content = $value['std'];
1447 1447
 
1448
-                    $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1448
+					$editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1449 1449
 
1450
-                    wp_editor($content, esc_attr($value['id']), $editor_settings);
1450
+					wp_editor($content, esc_attr($value['id']), $editor_settings);
1451 1451
 
1452
-                    ?> <span class="description"><?php echo $value['desc'] ?></span>
1452
+					?> <span class="description"><?php echo $value['desc'] ?></span>
1453 1453
 
1454 1454
                 </td>
1455 1455
                 </tr><?php
1456
-                break;
1456
+				break;
1457 1457
 
1458
-            case 'single_select_page' :
1459
-                // WPML
1458
+			case 'single_select_page' :
1459
+				// WPML
1460 1460
 				$switch_lang = false;
1461 1461
 				$disabled = '';
1462 1462
 				if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
@@ -1474,18 +1474,18 @@  discard block
 block discarded – undo
1474 1474
 				//
1475 1475
 				$page_setting = (int)get_option($value['id']);
1476 1476
 
1477
-                $args = array('name' => $value['id'],
1478
-                    'id' => $value['id'],
1479
-                    'sort_column' => 'menu_order',
1480
-                    'sort_order' => 'ASC',
1481
-                    'show_option_none' => ' ',
1482
-                    'class' => $value['class'],
1483
-                    'echo' => false,
1484
-                    'selected' => $page_setting);
1477
+				$args = array('name' => $value['id'],
1478
+					'id' => $value['id'],
1479
+					'sort_column' => 'menu_order',
1480
+					'sort_order' => 'ASC',
1481
+					'show_option_none' => ' ',
1482
+					'class' => $value['class'],
1483
+					'echo' => false,
1484
+					'selected' => $page_setting);
1485 1485
 
1486
-                if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1486
+				if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1487 1487
 
1488
-                ?>
1488
+				?>
1489 1489
                 <tr valign="top" class="single_select_page">
1490 1490
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1491 1491
                 <td class="forminp">
@@ -1496,17 +1496,17 @@  discard block
 block discarded – undo
1496 1496
 				if ($switch_lang) {
1497 1497
 					$sitepress->switch_lang($switch_lang, true);
1498 1498
 				}
1499
-                break;
1500
-            case 'single_select_country' :
1501
-                $country_setting = (string)get_option($value['id']);
1502
-                if (strstr($country_setting, ':')) :
1503
-                    $country = current(explode(':', $country_setting));
1504
-                    $state = end(explode(':', $country_setting));
1505
-                else :
1506
-                    $country = $country_setting;
1507
-                    $state = '*';
1508
-                endif;
1509
-                ?>
1499
+				break;
1500
+			case 'single_select_country' :
1501
+				$country_setting = (string)get_option($value['id']);
1502
+				if (strstr($country_setting, ':')) :
1503
+					$country = current(explode(':', $country_setting));
1504
+					$state = end(explode(':', $country_setting));
1505
+				else :
1506
+					$country = $country_setting;
1507
+					$state = '*';
1508
+				endif;
1509
+				?>
1510 1510
                 <tr valign="top">
1511 1511
                 <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th>
1512 1512
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1517,12 +1517,12 @@  discard block
 block discarded – undo
1517 1517
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1518 1518
                 </td>
1519 1519
                 </tr><?php
1520
-                break;
1521
-            case 'multi_select_countries' :
1522
-                $countries = $geodirectory->countries->countries;
1523
-                asort($countries);
1524
-                $selections = (array)get_option($value['id']);
1525
-                ?>
1520
+				break;
1521
+			case 'multi_select_countries' :
1522
+				$countries = $geodirectory->countries->countries;
1523
+				asort($countries);
1524
+				$selections = (array)get_option($value['id']);
1525
+				?>
1526 1526
                 <tr valign="top">
1527 1527
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1528 1528
                 <td class="forminp">
@@ -1530,21 +1530,21 @@  discard block
 block discarded – undo
1530 1530
                             data-placeholder="<?php _e('Choose countries&hellip;', 'geodirectory'); ?>"
1531 1531
                             title="Country" class="chosen_select">
1532 1532
                         <?php
1533
-                        if ($countries) foreach ($countries as $key => $val) :
1534
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1535
-                        endforeach;
1536
-                        ?>
1533
+						if ($countries) foreach ($countries as $key => $val) :
1534
+							echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1535
+						endforeach;
1536
+						?>
1537 1537
                     </select>
1538 1538
                 </td>
1539 1539
                 </tr>
1540 1540
 
1541 1541
                 <?php
1542 1542
 
1543
-                break;
1543
+				break;
1544 1544
 
1545
-            case 'google_analytics' :
1546
-                $selections = (array)get_option($value['id']);
1547
-                    ?>
1545
+			case 'google_analytics' :
1546
+				$selections = (array)get_option($value['id']);
1547
+					?>
1548 1548
                     <tr valign="top">
1549 1549
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1550 1550
                         <td class="forminp">
@@ -1552,62 +1552,62 @@  discard block
 block discarded – undo
1552 1552
 
1553 1553
                             <?php
1554 1554
 
1555
-                            $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1556
-                            $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1557
-                            $state = "&state=123";//any string
1558
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1559
-                            $response_type = "&response_type=code";
1560
-                            $client_id = "&client_id=".get_option('geodir_ga_client_id');
1561
-                            $access_type = "&access_type=offline";
1562
-                            $approval_prompt = "&approval_prompt=force";
1555
+							$oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1556
+							$scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1557
+							$state = "&state=123";//any string
1558
+							$redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1559
+							$response_type = "&response_type=code";
1560
+							$client_id = "&client_id=".get_option('geodir_ga_client_id');
1561
+							$access_type = "&access_type=offline";
1562
+							$approval_prompt = "&approval_prompt=force";
1563 1563
 
1564
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1564
+							$auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1565 1565
 
1566 1566
 
1567
-                            if (get_option('geodir_ga_auth_token')) {
1568
-                                ?>
1567
+							if (get_option('geodir_ga_auth_token')) {
1568
+								?>
1569 1569
                                 <span class="button-primary"
1570 1570
                                       onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1571 1571
                                 <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1572 1572
                             <?php
1573
-                                global $gd_ga_errors;
1574
-                                if(!empty($gd_ga_errors)){
1575
-                                    print_r($gd_ga_errors);
1576
-                                }
1577
-                            } else {
1578
-                                ?>
1573
+								global $gd_ga_errors;
1574
+								if(!empty($gd_ga_errors)){
1575
+									print_r($gd_ga_errors);
1576
+								}
1577
+							} else {
1578
+								?>
1579 1579
                                 <span class="button-primary"
1580 1580
                                       onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1581 1581
                             <?php
1582
-                            }
1583
-                            ?>
1582
+							}
1583
+							?>
1584 1584
                         </td>
1585 1585
                     </tr>
1586 1586
 
1587 1587
                 <?php
1588 1588
 
1589 1589
 
1590
-                break;
1590
+				break;
1591 1591
 
1592
-            case 'field_seperator' :
1592
+			case 'field_seperator' :
1593 1593
 
1594
-                ?>
1594
+				?>
1595 1595
                 <tr valign="top">
1596 1596
                     <td colspan="2" class="forminp geodir_line_seperator"></td>
1597 1597
                 </tr>
1598 1598
                 <?php
1599 1599
 
1600
-                break;
1600
+				break;
1601 1601
 
1602
-        endswitch;
1602
+		endswitch;
1603 1603
 
1604
-    endforeach;
1604
+	endforeach;
1605 1605
 
1606
-    if ($first_title === false) {
1607
-        echo "</div>";
1608
-    }
1606
+	if ($first_title === false) {
1607
+		echo "</div>";
1608
+	}
1609 1609
 
1610
-    ?>
1610
+	?>
1611 1611
 
1612 1612
     <script type="text/javascript">
1613 1613
 
@@ -1667,33 +1667,33 @@  discard block
 block discarded – undo
1667 1667
  */
1668 1668
 function geodir_post_info_setting()
1669 1669
 {
1670
-    global $post, $post_id;
1671
-
1672
-    $post_type = get_post_type();
1673
-
1674
-    $package_info = array();
1675
-
1676
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
1677
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
1678
-    echo '<div id="geodir_wrapper">';
1679
-    /**
1680
-     * Called before the GD custom fields are output in the wp-admin area.
1681
-     *
1682
-     * @since 1.0.0
1683
-     * @see 'geodir_after_default_field_in_meta_box'
1684
-     */
1685
-    do_action('geodir_before_default_field_in_meta_box');
1686
-    //geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
1687
-    // to display all fields in one information box
1688
-    geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
1689
-    /**
1690
-     * Called after the GD custom fields are output in the wp-admin area.
1691
-     *
1692
-     * @since 1.0.0
1693
-     * @see 'geodir_before_default_field_in_meta_box'
1694
-     */
1695
-    do_action('geodir_after_default_field_in_meta_box');
1696
-    echo '</div>';
1670
+	global $post, $post_id;
1671
+
1672
+	$post_type = get_post_type();
1673
+
1674
+	$package_info = array();
1675
+
1676
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
1677
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
1678
+	echo '<div id="geodir_wrapper">';
1679
+	/**
1680
+	 * Called before the GD custom fields are output in the wp-admin area.
1681
+	 *
1682
+	 * @since 1.0.0
1683
+	 * @see 'geodir_after_default_field_in_meta_box'
1684
+	 */
1685
+	do_action('geodir_before_default_field_in_meta_box');
1686
+	//geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
1687
+	// to display all fields in one information box
1688
+	geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
1689
+	/**
1690
+	 * Called after the GD custom fields are output in the wp-admin area.
1691
+	 *
1692
+	 * @since 1.0.0
1693
+	 * @see 'geodir_before_default_field_in_meta_box'
1694
+	 */
1695
+	do_action('geodir_after_default_field_in_meta_box');
1696
+	echo '</div>';
1697 1697
 }
1698 1698
 
1699 1699
 /**
@@ -1706,18 +1706,18 @@  discard block
 block discarded – undo
1706 1706
  */
1707 1707
 function geodir_post_addinfo_setting()
1708 1708
 {
1709
-    global $post, $post_id;
1709
+	global $post, $post_id;
1710 1710
 
1711
-    $post_type = get_post_type();
1711
+	$post_type = get_post_type();
1712 1712
 
1713
-    $package_info = array();
1713
+	$package_info = array();
1714 1714
 
1715
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
1715
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
1716 1716
 
1717
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
1718
-    echo '<div id="geodir_wrapper">';
1719
-    geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
1720
-    echo '</div>';
1717
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
1718
+	echo '<div id="geodir_wrapper">';
1719
+	geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
1720
+	echo '</div>';
1721 1721
 
1722 1722
 }
1723 1723
 
@@ -1731,60 +1731,60 @@  discard block
 block discarded – undo
1731 1731
  */
1732 1732
 function geodir_post_attachments()
1733 1733
 {
1734
-    global $post, $post_id;
1734
+	global $post, $post_id;
1735 1735
 
1736
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1736
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1737 1737
 
1738
-    if (geodir_get_featured_image($post_id, 'thumbnail')) {
1739
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1740
-        geodir_show_featured_image($post_id, 'thumbnail');
1741
-    }
1738
+	if (geodir_get_featured_image($post_id, 'thumbnail')) {
1739
+		echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1740
+		geodir_show_featured_image($post_id, 'thumbnail');
1741
+	}
1742 1742
 
1743
-    $image_limit = 0;
1743
+	$image_limit = 0;
1744 1744
 
1745
-    ?>
1745
+	?>
1746 1746
 
1747 1747
 
1748 1748
     <h5 class="form_title">
1749 1749
         <?php if ($image_limit != 0 && $image_limit == 1) {
1750
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1751
-        } ?>
1750
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1751
+		} ?>
1752 1752
         <?php if ($image_limit != 0 && $image_limit > 1) {
1753
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1754
-        } ?>
1753
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1754
+		} ?>
1755 1755
         <?php if ($image_limit == 0) {
1756
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1757
-        } ?>
1756
+			echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1757
+		} ?>
1758 1758
     </h5>
1759 1759
 
1760 1760
 
1761 1761
     <?php
1762 1762
 
1763
-    $curImages = geodir_get_images($post_id);
1764
-    $place_img_array = array();
1763
+	$curImages = geodir_get_images($post_id);
1764
+	$place_img_array = array();
1765 1765
 
1766
-    if (!empty($curImages)):
1767
-        foreach ($curImages as $p_img):
1768
-            $place_img_array[] = $p_img->src;
1769
-        endforeach;
1770
-    endif;
1766
+	if (!empty($curImages)):
1767
+		foreach ($curImages as $p_img):
1768
+			$place_img_array[] = $p_img->src;
1769
+		endforeach;
1770
+	endif;
1771 1771
 
1772
-    if (!empty($place_img_array))
1773
-        $curImages = implode(',', $place_img_array);
1772
+	if (!empty($place_img_array))
1773
+		$curImages = implode(',', $place_img_array);
1774 1774
 
1775 1775
 
1776
-    // adjust values here
1777
-    $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
1776
+	// adjust values here
1777
+	$id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
1778 1778
 
1779
-    $svalue = $curImages; // this will be initial value of the above form field. Image urls.
1779
+	$svalue = $curImages; // this will be initial value of the above form field. Image urls.
1780 1780
 
1781
-    $multiple = true; // allow multiple files upload
1781
+	$multiple = true; // allow multiple files upload
1782 1782
 
1783
-    $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1783
+	$width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1784 1784
 
1785
-    $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1785
+	$height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1786 1786
 
1787
-    ?>
1787
+	?>
1788 1788
 
1789 1789
     <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;">
1790 1790
         <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/>
@@ -1826,13 +1826,13 @@  discard block
 block discarded – undo
1826 1826
  */
1827 1827
 function geodir_action_post_updated($post_ID, $post_after, $post_before)
1828 1828
 {
1829
-    $post_type = get_post_type($post_ID);
1829
+	$post_type = get_post_type($post_ID);
1830 1830
 
1831
-    if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1832
-        if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
1833
-            geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
1834
-        }
1835
-    }
1831
+	if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1832
+		if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
1833
+			geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
1834
+		}
1835
+	}
1836 1836
 }
1837 1837
 
1838 1838
 /**
@@ -1847,39 +1847,39 @@  discard block
 block discarded – undo
1847 1847
  */
1848 1848
 function geodir_notification_add_bcc_option($settings)
1849 1849
 {
1850
-    if (!empty($settings)) {
1851
-        $new_settings = array();
1852
-        foreach ($settings as $setting) {
1853
-            if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
1854
-                $geodir_bcc_listing_published_yes = array(
1855
-                    'name' => __('Listing published', 'geodirectory'),
1856
-                    'desc' => __('Yes', 'geodirectory'),
1857
-                    'id' => 'geodir_bcc_listing_published',
1858
-                    'std' => 'yes',
1859
-                    'type' => 'radio',
1860
-                    'value' => '1',
1861
-                    'radiogroup' => 'start'
1862
-                );
1863
-
1864
-                $geodir_bcc_listing_published_no = array(
1865
-                    'name' => __('Listing published', 'geodirectory'),
1866
-                    'desc' => __('No', 'geodirectory'),
1867
-                    'id' => 'geodir_bcc_listing_published',
1868
-                    'std' => 'yes',
1869
-                    'type' => 'radio',
1870
-                    'value' => '0',
1871
-                    'radiogroup' => 'end'
1872
-                );
1873
-
1874
-                $new_settings[] = $geodir_bcc_listing_published_yes;
1875
-                $new_settings[] = $geodir_bcc_listing_published_no;
1876
-            }
1877
-            $new_settings[] = $setting;
1878
-        }
1879
-        $settings = $new_settings;
1880
-    }
1850
+	if (!empty($settings)) {
1851
+		$new_settings = array();
1852
+		foreach ($settings as $setting) {
1853
+			if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
1854
+				$geodir_bcc_listing_published_yes = array(
1855
+					'name' => __('Listing published', 'geodirectory'),
1856
+					'desc' => __('Yes', 'geodirectory'),
1857
+					'id' => 'geodir_bcc_listing_published',
1858
+					'std' => 'yes',
1859
+					'type' => 'radio',
1860
+					'value' => '1',
1861
+					'radiogroup' => 'start'
1862
+				);
1863
+
1864
+				$geodir_bcc_listing_published_no = array(
1865
+					'name' => __('Listing published', 'geodirectory'),
1866
+					'desc' => __('No', 'geodirectory'),
1867
+					'id' => 'geodir_bcc_listing_published',
1868
+					'std' => 'yes',
1869
+					'type' => 'radio',
1870
+					'value' => '0',
1871
+					'radiogroup' => 'end'
1872
+				);
1873
+
1874
+				$new_settings[] = $geodir_bcc_listing_published_yes;
1875
+				$new_settings[] = $geodir_bcc_listing_published_no;
1876
+			}
1877
+			$new_settings[] = $setting;
1878
+		}
1879
+		$settings = $new_settings;
1880
+	}
1881 1881
 
1882
-    return $settings;
1882
+	return $settings;
1883 1883
 }
1884 1884
 
1885 1885
 
@@ -1894,19 +1894,19 @@  discard block
 block discarded – undo
1894 1894
  */
1895 1895
 function get_gd_theme_compat_callback()
1896 1896
 {
1897
-    global $wpdb;
1898
-    $themes = get_option('gd_theme_compats');
1899
-
1900
-    if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
1901
-        if (isset($_POST['export'])) {
1902
-            echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
1903
-        } else {
1904
-            echo json_encode($themes[$_POST['theme']]);
1905
-        }
1897
+	global $wpdb;
1898
+	$themes = get_option('gd_theme_compats');
1906 1899
 
1907
-    }
1900
+	if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
1901
+		if (isset($_POST['export'])) {
1902
+			echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
1903
+		} else {
1904
+			echo json_encode($themes[$_POST['theme']]);
1905
+		}
1906
+
1907
+	}
1908 1908
 
1909
-    die();
1909
+	die();
1910 1910
 }
1911 1911
 
1912 1912
 add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
@@ -1920,20 +1920,20 @@  discard block
 block discarded – undo
1920 1920
  */
1921 1921
 function get_gd_theme_compat_import_callback()
1922 1922
 {
1923
-    global $wpdb;
1924
-    $themes = get_option('gd_theme_compats');
1925
-    if (isset($_POST['theme']) && !empty($_POST['theme'])) {
1926
-        $json = json_decode(stripslashes($_POST['theme']), true);
1927
-        if (!empty($json) && is_array($json)) {
1928
-            $key = sanitize_text_field(key($json));
1929
-            $themes[$key] = $json[$key];
1930
-            update_option('gd_theme_compats', $themes);
1931
-            echo $key;
1932
-            die();
1933
-        }
1934
-    }
1935
-    echo '0';
1936
-    die();
1923
+	global $wpdb;
1924
+	$themes = get_option('gd_theme_compats');
1925
+	if (isset($_POST['theme']) && !empty($_POST['theme'])) {
1926
+		$json = json_decode(stripslashes($_POST['theme']), true);
1927
+		if (!empty($json) && is_array($json)) {
1928
+			$key = sanitize_text_field(key($json));
1929
+			$themes[$key] = $json[$key];
1930
+			update_option('gd_theme_compats', $themes);
1931
+			echo $key;
1932
+			die();
1933
+		}
1934
+	}
1935
+	echo '0';
1936
+	die();
1937 1937
 }
1938 1938
 
1939 1939
 
@@ -1946,39 +1946,39 @@  discard block
 block discarded – undo
1946 1946
  */
1947 1947
 function gd_set_theme_compat()
1948 1948
 {
1949
-    global $wpdb;
1950
-    $theme = wp_get_theme();
1949
+	global $wpdb;
1950
+	$theme = wp_get_theme();
1951 1951
 
1952
-    if ($theme->parent()) {
1953
-        $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
1954
-    } else {
1955
-        $theme_name = str_replace(" ", "_", $theme->get('Name'));
1956
-    }
1952
+	if ($theme->parent()) {
1953
+		$theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
1954
+	} else {
1955
+		$theme_name = str_replace(" ", "_", $theme->get('Name'));
1956
+	}
1957 1957
 
1958
-    $theme_compats = get_option('gd_theme_compats');
1959
-    $current_compat = get_option('gd_theme_compat');
1960
-    $current_compat = str_replace("_custom", "", $current_compat);
1958
+	$theme_compats = get_option('gd_theme_compats');
1959
+	$current_compat = get_option('gd_theme_compat');
1960
+	$current_compat = str_replace("_custom", "", $current_compat);
1961 1961
  
1962
-    if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
1963
-        return;
1964
-    }// if already running correct compat then bail
1962
+	if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
1963
+		return;
1964
+	}// if already running correct compat then bail
1965 1965
 
1966
-    if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
1967
-        update_option('gd_theme_compat', $theme_name);
1968
-        update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
1966
+	if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
1967
+		update_option('gd_theme_compat', $theme_name);
1968
+		update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
1969 1969
 
1970
-        // if there are default options to set then set them
1971
-        if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
1970
+		// if there are default options to set then set them
1971
+		if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
1972 1972
 
1973
-            foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
1974
-                update_option($key, $val);
1975
-            }
1976
-        }
1973
+			foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
1974
+				update_option($key, $val);
1975
+			}
1976
+		}
1977 1977
 
1978
-    } else {
1979
-        update_option('gd_theme_compat', '');
1980
-        update_option('theme_compatibility_setting', '');
1981
-    }
1978
+	} else {
1979
+		update_option('gd_theme_compat', '');
1980
+		update_option('theme_compatibility_setting', '');
1981
+	}
1982 1982
 
1983 1983
 
1984 1984
 }
@@ -1993,9 +1993,9 @@  discard block
 block discarded – undo
1993 1993
  */
1994 1994
 function gd_check_avada_compat()
1995 1995
 {
1996
-    if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
1997
-        add_action('admin_notices', 'gd_avada_compat_warning');
1998
-    }
1996
+	if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
1997
+		add_action('admin_notices', 'gd_avada_compat_warning');
1998
+	}
1999 1999
 }
2000 2000
 
2001 2001
 
@@ -2008,22 +2008,22 @@  discard block
 block discarded – undo
2008 2008
 function gd_avada_compat_warning()
2009 2009
 {
2010 2010
 
2011
-    /*
2011
+	/*
2012 2012
     $msg_type = error
2013 2013
     $msg_type = updated fade
2014 2014
     $msg_type = update-nag
2015 2015
     */
2016 2016
 
2017
-    $plugin = 'avada-nag';
2018
-    $timestamp = 'avada-nag1234';
2019
-    $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
2020
-    echo '<div id="' . $timestamp . '"  class="error">';
2021
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2022
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2023
-    echo "<p>$message</p>";
2024
-    echo "</div>";
2017
+	$plugin = 'avada-nag';
2018
+	$timestamp = 'avada-nag1234';
2019
+	$message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
2020
+	echo '<div id="' . $timestamp . '"  class="error">';
2021
+	echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2022
+	echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2023
+	echo "<p>$message</p>";
2024
+	echo "</div>";
2025 2025
 
2026
-    ?>
2026
+	?>
2027 2027
     <script>
2028 2028
         function gdRemoveANotification($plugin, $timestamp) {
2029 2029
 
@@ -2091,10 +2091,10 @@  discard block
 block discarded – undo
2091 2091
  */
2092 2092
 function geodir_avada_remove_notification()
2093 2093
 {
2094
-    update_option('avada_nag', TRUE);
2094
+	update_option('avada_nag', TRUE);
2095 2095
 
2096
-    // Always die in functions echoing ajax content
2097
-    die();
2096
+	// Always die in functions echoing ajax content
2097
+	die();
2098 2098
 }
2099 2099
 
2100 2100
 
@@ -2116,9 +2116,9 @@  discard block
 block discarded – undo
2116 2116
 	global $post, $typenow, $current_screen;
2117 2117
 	
2118 2118
 	$post_type = NULL;
2119
-    if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2119
+	if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2120 2120
 		$post_type = get_post_type($_REQUEST['post']);
2121
-    elseif ($post && isset($post->post_type))
2121
+	elseif ($post && isset($post->post_type))
2122 2122
 		$post_type = $post->post_type;
2123 2123
 	elseif ($typenow)
2124 2124
 		$post_type = $typenow;
@@ -2153,7 +2153,7 @@  discard block
 block discarded – undo
2153 2153
 		// Don't allow same slug url for listing and location
2154 2154
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2155 2155
 			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2156
-        	wp_redirect($redirect_url);
2156
+			wp_redirect($redirect_url);
2157 2157
 			exit;
2158 2158
 		}
2159 2159
 		
@@ -2183,10 +2183,10 @@  discard block
 block discarded – undo
2183 2183
  * @package GeoDirectory
2184 2184
  */
2185 2185
 function geodir_hide_admin_preview_button() {
2186
-    global $post_type;
2187
-    $post_types = geodir_get_posttypes();
2188
-    if(in_array($post_type, $post_types))
2189
-        echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2186
+	global $post_type;
2187
+	$post_types = geodir_get_posttypes();
2188
+	if(in_array($post_type, $post_types))
2189
+		echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2190 2190
 }
2191 2191
 add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2192 2192
 add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
@@ -2201,7 +2201,7 @@  discard block
 block discarded – undo
2201 2201
  */
2202 2202
 function geodir_import_export_tab( $tabs ) {
2203 2203
 	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2204
-    return $tabs;
2204
+	return $tabs;
2205 2205
 }
2206 2206
 
2207 2207
 /**
@@ -2216,26 +2216,26 @@  discard block
 block discarded – undo
2216 2216
 function geodir_import_export_page() {
2217 2217
 	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2218 2218
 	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2219
-    /**
2220
-     * Filter sample category data csv file url.
2221
-     *
2222
-     * @since 1.0.0
2223
-     * @package GeoDirectory
2224
-     *
2225
-     * @param string $gd_cats_sample_csv Sample category data csv file url.
2226
-     */
2219
+	/**
2220
+	 * Filter sample category data csv file url.
2221
+	 *
2222
+	 * @since 1.0.0
2223
+	 * @package GeoDirectory
2224
+	 *
2225
+	 * @param string $gd_cats_sample_csv Sample category data csv file url.
2226
+	 */
2227 2227
 	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2228 2228
 	
2229 2229
 	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2230
-    /**
2231
-     * Filter sample post data csv file url.
2232
-     *
2233
-     * @since 1.0.0
2234
-     * @package GeoDirectory
2235
-     *
2236
-     * @param string $gd_posts_sample_csv Sample post data csv file url.
2237
-     */
2238
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2230
+	/**
2231
+	 * Filter sample post data csv file url.
2232
+	 *
2233
+	 * @since 1.0.0
2234
+	 * @package GeoDirectory
2235
+	 *
2236
+	 * @param string $gd_posts_sample_csv Sample post data csv file url.
2237
+	 */
2238
+	$gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2239 2239
 	
2240 2240
 	$gd_posttypes = geodir_get_posttypes( 'array' );
2241 2241
 	
@@ -2258,14 +2258,14 @@  discard block
 block discarded – undo
2258 2258
 	$gd_chunksize_options[100000] = 100000;
2259 2259
 	 
2260 2260
 	 /**
2261
-     * Filter max entries per export csv file.
2262
-     *
2263
-     * @since 1.5.6
2264
-     * @package GeoDirectory
2265
-     *
2266
-     * @param string $gd_chunksize_options Entries options.
2267
-     */
2268
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2261
+	  * Filter max entries per export csv file.
2262
+	  *
2263
+	  * @since 1.5.6
2264
+	  * @package GeoDirectory
2265
+	  *
2266
+	  * @param string $gd_chunksize_options Entries options.
2267
+	  */
2268
+	$gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2269 2269
 	
2270 2270
 	$gd_chunksize_option = '';
2271 2271
 	foreach ($gd_chunksize_options as $value => $title) {
@@ -2282,12 +2282,12 @@  discard block
 block discarded – undo
2282 2282
   <div class="gd-content-heading">
2283 2283
 
2284 2284
   <?php
2285
-    ini_set('max_execution_time', 999999);
2286
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2287
-    ini_restore('max_execution_time');
2285
+	ini_set('max_execution_time', 999999);
2286
+	$ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2287
+	ini_restore('max_execution_time');
2288 2288
 
2289
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2290
-        ?>
2289
+	if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2290
+		?>
2291 2291
 	<div id="gd_ie_reqs" class="metabox-holder">
2292 2292
       <div class="meta-box-sortables ui-sortable">
2293 2293
         <div class="postbox">
@@ -2462,7 +2462,7 @@  discard block
 block discarded – undo
2462 2462
 						 * Called just after the sample CSV download link.
2463 2463
 						 *
2464 2464
 						 * @since 1.0.0
2465
-                         * @package GeoDirectory
2465
+						 * @package GeoDirectory
2466 2466
 						 */
2467 2467
 						do_action('geodir_sample_cats_csv_download_link');
2468 2468
 						?>
@@ -2547,11 +2547,11 @@  discard block
 block discarded – undo
2547 2547
 	 *
2548 2548
 	 * Called after the last setting on the GD > Import & Export page.
2549 2549
 	 * @since 1.4.6
2550
-     * @package GeoDirectory
2550
+	 * @package GeoDirectory
2551 2551
 	 *
2552 2552
 	 * @param array $gd_posttypes GD post types.
2553
-     * @param array $gd_chunksize_options File chunk size options.
2554
-     * @param string $nonce Wordpress security token for GD import & export.
2553
+	 * @param array $gd_chunksize_options File chunk size options.
2554
+	 * @param string $nonce Wordpress security token for GD import & export.
2555 2555
 	 */
2556 2556
 	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2557 2557
 	?>
@@ -3238,44 +3238,44 @@  discard block
 block discarded – undo
3238 3238
 function geodir_init_filesystem()
3239 3239
 {
3240 3240
 
3241
-    if(!function_exists('get_filesystem_method')){
3242
-        require_once(ABSPATH."/wp-admin/includes/file.php");
3243
-    }
3244
-    $access_type = get_filesystem_method();
3245
-    if ($access_type === 'direct') {
3246
-        /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3247
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3248
-
3249
-        /* initialize the API */
3250
-        if (!WP_Filesystem($creds)) {
3251
-            /* any problems and we exit */
3252
-            //return '@@@3';
3253
-            return false;
3254
-        }
3241
+	if(!function_exists('get_filesystem_method')){
3242
+		require_once(ABSPATH."/wp-admin/includes/file.php");
3243
+	}
3244
+	$access_type = get_filesystem_method();
3245
+	if ($access_type === 'direct') {
3246
+		/* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3247
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3248
+
3249
+		/* initialize the API */
3250
+		if (!WP_Filesystem($creds)) {
3251
+			/* any problems and we exit */
3252
+			//return '@@@3';
3253
+			return false;
3254
+		}
3255 3255
 
3256
-        global $wp_filesystem;
3257
-        return $wp_filesystem;
3258
-        /* do our file manipulations below */
3259
-    } elseif (defined('FTP_USER')) {
3260
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3256
+		global $wp_filesystem;
3257
+		return $wp_filesystem;
3258
+		/* do our file manipulations below */
3259
+	} elseif (defined('FTP_USER')) {
3260
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3261
+
3262
+		/* initialize the API */
3263
+		if (!WP_Filesystem($creds)) {
3264
+			/* any problems and we exit */
3265
+			//return '@@@33';
3266
+			return false;
3267
+		}
3261 3268
 
3262
-        /* initialize the API */
3263
-        if (!WP_Filesystem($creds)) {
3264
-            /* any problems and we exit */
3265
-            //return '@@@33';
3266
-            return false;
3267
-        }
3269
+		global $wp_filesystem;
3270
+		//return '@@@1';
3271
+		return $wp_filesystem;
3268 3272
 
3269
-        global $wp_filesystem;
3270
-        //return '@@@1';
3271
-        return $wp_filesystem;
3272
-
3273
-    } else {
3274
-        //return '@@@2';
3275
-        /* don't have direct write access. Prompt user with our notice */
3276
-        add_action('admin_notice', 'geodir_filesystem_notice');
3277
-        return false;
3278
-    }
3273
+	} else {
3274
+		//return '@@@2';
3275
+		/* don't have direct write access. Prompt user with our notice */
3276
+		add_action('admin_notice', 'geodir_filesystem_notice');
3277
+		return false;
3278
+	}
3279 3279
 
3280 3280
 }
3281 3281
 
@@ -3293,10 +3293,10 @@  discard block
 block discarded – undo
3293 3293
  */
3294 3294
 function geodir_filesystem_notice()
3295 3295
 {   if ( defined( 'DOING_AJAX' ) ){return;}
3296
-    $access_type = get_filesystem_method();
3297
-    if ($access_type === 'direct') {
3298
-    } elseif (!defined('FTP_USER')) {
3299
-        ?>
3296
+	$access_type = get_filesystem_method();
3297
+	if ($access_type === 'direct') {
3298
+	} elseif (!defined('FTP_USER')) {
3299
+		?>
3300 3300
         <div class="error">
3301 3301
             <p><?php _e('GeoDirectory does not have access to your filesystem, thing like import/export will not work. Please define your details in wp-config.php as explained here', 'geodirectory'); ?>
3302 3302
                 <a target="_blank" href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants</a>
@@ -3323,1265 +3323,1265 @@  discard block
 block discarded – undo
3323 3323
  * @return string Json data.
3324 3324
  */
3325 3325
 function geodir_ajax_import_export() {
3326
-    global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3326
+	global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3327 3327
     
3328
-    error_reporting(0);
3328
+	error_reporting(0);
3329 3329
 
3330
-    $xstart = microtime(true);
3330
+	$xstart = microtime(true);
3331 3331
 
3332
-    // try to set higher limits for import
3333
-    $max_input_time = ini_get('max_input_time');
3334
-    $max_execution_time = ini_get('max_execution_time');
3335
-    $memory_limit= ini_get('memory_limit');
3332
+	// try to set higher limits for import
3333
+	$max_input_time = ini_get('max_input_time');
3334
+	$max_execution_time = ini_get('max_execution_time');
3335
+	$memory_limit= ini_get('memory_limit');
3336 3336
 
3337
-    if(!$max_input_time || $max_input_time<3000){
3338
-        ini_set('max_input_time', 3000);
3339
-    }
3337
+	if(!$max_input_time || $max_input_time<3000){
3338
+		ini_set('max_input_time', 3000);
3339
+	}
3340 3340
 
3341
-    if(!$max_execution_time || $max_execution_time<3000){
3342
-        ini_set('max_execution_time', 3000);
3343
-    }
3341
+	if(!$max_execution_time || $max_execution_time<3000){
3342
+		ini_set('max_execution_time', 3000);
3343
+	}
3344 3344
 
3345
-    if($memory_limit && str_replace('M','',$memory_limit)){
3346
-        if(str_replace('M','',$memory_limit)<256){
3347
-            ini_set('memory_limit', '256M');
3348
-        }
3349
-    }
3345
+	if($memory_limit && str_replace('M','',$memory_limit)){
3346
+		if(str_replace('M','',$memory_limit)<256){
3347
+			ini_set('memory_limit', '256M');
3348
+		}
3349
+	}
3350 3350
 
3351
-    $json = array();
3351
+	$json = array();
3352 3352
 
3353
-    if ( !current_user_can( 'manage_options' ) ) {
3354
-        wp_send_json( $json );
3355
-    }
3353
+	if ( !current_user_can( 'manage_options' ) ) {
3354
+		wp_send_json( $json );
3355
+	}
3356 3356
 
3357
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3358
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3359
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3357
+	$task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3358
+	$nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3359
+	$stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3360 3360
 
3361
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3362
-        wp_send_json( $json );
3363
-    }
3361
+	if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3362
+		wp_send_json( $json );
3363
+	}
3364 3364
 
3365
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3366
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3367
-    $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3368
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3365
+	$post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3366
+	$chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3367
+	$chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3368
+	$chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3369 3369
 
3370
-    $wp_filesystem = geodir_init_filesystem();
3371
-    if (!$wp_filesystem) {
3372
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3373
-        wp_send_json( $json );
3374
-    }
3370
+	$wp_filesystem = geodir_init_filesystem();
3371
+	if (!$wp_filesystem) {
3372
+		$json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3373
+		wp_send_json( $json );
3374
+	}
3375 3375
 
3376
-    if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3377
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3378
-        wp_send_json( $json );
3379
-    }
3376
+	if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3377
+		$json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3378
+		wp_send_json( $json );
3379
+	}
3380 3380
 
3381
-    $csv_file_dir = geodir_path_import_export( false );
3382
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3383
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3384
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3385
-            wp_send_json( $json );
3386
-        }
3387
-    }
3381
+	$csv_file_dir = geodir_path_import_export( false );
3382
+	if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3383
+		if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3384
+			$json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3385
+			wp_send_json( $json );
3386
+		}
3387
+	}
3388 3388
     
3389
-    $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3390
-    $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3391
-
3392
-    switch ( $task ) {
3393
-        case 'export_posts': {
3394
-            // WPML
3395
-            $is_wpml = geodir_is_wpml();
3396
-            if ($is_wpml) {
3397
-                global $sitepress;
3398
-                $active_lang = ICL_LANGUAGE_CODE;
3389
+	$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3390
+	$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3391
+
3392
+	switch ( $task ) {
3393
+		case 'export_posts': {
3394
+			// WPML
3395
+			$is_wpml = geodir_is_wpml();
3396
+			if ($is_wpml) {
3397
+				global $sitepress;
3398
+				$active_lang = ICL_LANGUAGE_CODE;
3399 3399
                 
3400
-                $sitepress->switch_lang('all', true);
3401
-            }
3402
-            // WPML
3403
-            if ( $post_type == 'gd_event' ) {
3404
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3405
-            }
3406
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3400
+				$sitepress->switch_lang('all', true);
3401
+			}
3402
+			// WPML
3403
+			if ( $post_type == 'gd_event' ) {
3404
+				add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3405
+			}
3406
+			$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3407 3407
             
3408
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3409
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3410
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3411
-            }
3412
-            $posts_count = geodir_get_posts_count( $post_type );
3413
-            $file_url_base = geodir_path_import_export() . '/';
3414
-            $file_url = $file_url_base . $file_name . '.csv';
3415
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3416
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3408
+			$file_name = $post_type . '_' . date( 'dmyHi' );
3409
+			if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3410
+				$file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3411
+			}
3412
+			$posts_count = geodir_get_posts_count( $post_type );
3413
+			$file_url_base = geodir_path_import_export() . '/';
3414
+			$file_url = $file_url_base . $file_name . '.csv';
3415
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3416
+			$file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3417 3417
             
3418
-            $chunk_file_paths = array();
3418
+			$chunk_file_paths = array();
3419 3419
 
3420
-            if ( isset( $_REQUEST['_c'] ) ) {
3421
-                $json['total'] = $posts_count;
3422
-                // WPML
3423
-                if ($is_wpml) {
3424
-                    $sitepress->switch_lang($active_lang, true);
3425
-                }
3426
-                // WPML
3427
-                wp_send_json( $json );
3428
-                gd_die();
3429
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3430
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3431
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3432
-                $percentage = min( $percentage, 100 );
3420
+			if ( isset( $_REQUEST['_c'] ) ) {
3421
+				$json['total'] = $posts_count;
3422
+				// WPML
3423
+				if ($is_wpml) {
3424
+					$sitepress->switch_lang($active_lang, true);
3425
+				}
3426
+				// WPML
3427
+				wp_send_json( $json );
3428
+				gd_die();
3429
+			} else if ( isset( $_REQUEST['_st'] ) ) {
3430
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3431
+				$percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3432
+				$percentage = min( $percentage, 100 );
3433 3433
                 
3434
-                $json['percentage'] = $percentage;
3435
-                // WPML
3436
-                if ($is_wpml) {
3437
-                    $sitepress->switch_lang($active_lang, true);
3438
-                }
3439
-                // WPML
3440
-                wp_send_json( $json );
3441
-                gd_die();
3442
-            } else {
3443
-                if ( !$posts_count > 0 ) {
3444
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3445
-                } else {
3446
-                    $total_posts = $posts_count;
3447
-                    if ($chunk_per_page > $total_posts) {
3448
-                        $chunk_per_page = $total_posts;
3449
-                    }
3450
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3434
+				$json['percentage'] = $percentage;
3435
+				// WPML
3436
+				if ($is_wpml) {
3437
+					$sitepress->switch_lang($active_lang, true);
3438
+				}
3439
+				// WPML
3440
+				wp_send_json( $json );
3441
+				gd_die();
3442
+			} else {
3443
+				if ( !$posts_count > 0 ) {
3444
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3445
+				} else {
3446
+					$total_posts = $posts_count;
3447
+					if ($chunk_per_page > $total_posts) {
3448
+						$chunk_per_page = $total_posts;
3449
+					}
3450
+					$chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3451 3451
                     
3452
-                    $j = $chunk_page_no;
3453
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3452
+					$j = $chunk_page_no;
3453
+					$chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3454 3454
                     
3455
-                    $per_page = 500;
3456
-                    if ($per_page > $chunk_per_page) {
3457
-                        $per_page = $chunk_per_page;
3458
-                    }
3459
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3455
+					$per_page = 500;
3456
+					if ($per_page > $chunk_per_page) {
3457
+						$per_page = $chunk_per_page;
3458
+					}
3459
+					$total_pages = ceil( $chunk_per_page / $per_page );
3460 3460
                     
3461
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3462
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3461
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3462
+						$save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3463 3463
                         
3464
-                        $clear = $i == 0 ? true : false;
3465
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3466
-                    }
3464
+						$clear = $i == 0 ? true : false;
3465
+						geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3466
+					}
3467 3467
                         
3468
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3469
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3470
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3471
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3472
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3468
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3469
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3470
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3471
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3472
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3473 3473
                         
3474
-                        $file_url = $file_url_base . $chunk_file_name;
3475
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3476
-                    }
3474
+						$file_url = $file_url_base . $chunk_file_name;
3475
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3476
+					}
3477 3477
                     
3478
-                    if ( !empty($chunk_file_paths) ) {
3479
-                        $json['total'] = $posts_count;
3480
-                        $json['files'] = $chunk_file_paths;
3481
-                    } else {
3482
-                        if ($j > 1) {
3483
-                            $json['total'] = $posts_count;
3484
-                            $json['files'] = array();
3485
-                        } else {
3486
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3487
-                        }
3488
-                    }
3489
-                }
3490
-                // WPML
3491
-                if ($is_wpml) {
3492
-                    $sitepress->switch_lang($active_lang, true);
3493
-                }
3494
-                // WPML
3495
-                wp_send_json( $json );
3496
-            }
3497
-        }
3498
-        break;
3499
-        case 'export_cats': {
3500
-            // WPML
3501
-            $is_wpml = geodir_is_wpml();
3502
-            if ($is_wpml) {
3503
-                global $sitepress;
3504
-                $active_lang = ICL_LANGUAGE_CODE;
3478
+					if ( !empty($chunk_file_paths) ) {
3479
+						$json['total'] = $posts_count;
3480
+						$json['files'] = $chunk_file_paths;
3481
+					} else {
3482
+						if ($j > 1) {
3483
+							$json['total'] = $posts_count;
3484
+							$json['files'] = array();
3485
+						} else {
3486
+							$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3487
+						}
3488
+					}
3489
+				}
3490
+				// WPML
3491
+				if ($is_wpml) {
3492
+					$sitepress->switch_lang($active_lang, true);
3493
+				}
3494
+				// WPML
3495
+				wp_send_json( $json );
3496
+			}
3497
+		}
3498
+		break;
3499
+		case 'export_cats': {
3500
+			// WPML
3501
+			$is_wpml = geodir_is_wpml();
3502
+			if ($is_wpml) {
3503
+				global $sitepress;
3504
+				$active_lang = ICL_LANGUAGE_CODE;
3505 3505
                 
3506
-                $sitepress->switch_lang('all', true);
3507
-            }
3508
-            // WPML
3509
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3506
+				$sitepress->switch_lang('all', true);
3507
+			}
3508
+			// WPML
3509
+			$file_name = $post_type . 'category_' . date( 'dmyHi' );
3510 3510
             
3511
-            $terms_count = geodir_get_terms_count( $post_type );
3512
-            $file_url_base = geodir_path_import_export() . '/';
3513
-            $file_url = $file_url_base . $file_name . '.csv';
3514
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3515
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3511
+			$terms_count = geodir_get_terms_count( $post_type );
3512
+			$file_url_base = geodir_path_import_export() . '/';
3513
+			$file_url = $file_url_base . $file_name . '.csv';
3514
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3515
+			$file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3516 3516
             
3517
-            $chunk_file_paths = array();
3517
+			$chunk_file_paths = array();
3518 3518
             
3519
-            if ( isset( $_REQUEST['_st'] ) ) {
3520
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3521
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3522
-                $percentage = min( $percentage, 100 );
3519
+			if ( isset( $_REQUEST['_st'] ) ) {
3520
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3521
+				$percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3522
+				$percentage = min( $percentage, 100 );
3523 3523
                 
3524
-                $json['percentage'] = $percentage;
3525
-                // WPML
3526
-                if ($is_wpml) {
3527
-                    $sitepress->switch_lang($active_lang, true);
3528
-                }
3529
-                // WPML
3530
-                wp_send_json( $json );
3531
-            } else {
3532
-                if ( !$terms_count > 0 ) {
3533
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3534
-                } else {
3535
-                    $total_terms = $terms_count;
3536
-                    if ($chunk_per_page > $terms_count) {
3537
-                        $chunk_per_page = $terms_count;
3538
-                    }
3539
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3524
+				$json['percentage'] = $percentage;
3525
+				// WPML
3526
+				if ($is_wpml) {
3527
+					$sitepress->switch_lang($active_lang, true);
3528
+				}
3529
+				// WPML
3530
+				wp_send_json( $json );
3531
+			} else {
3532
+				if ( !$terms_count > 0 ) {
3533
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3534
+				} else {
3535
+					$total_terms = $terms_count;
3536
+					if ($chunk_per_page > $terms_count) {
3537
+						$chunk_per_page = $terms_count;
3538
+					}
3539
+					$chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3540 3540
                     
3541
-                    $j = $chunk_page_no;
3542
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3541
+					$j = $chunk_page_no;
3542
+					$chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3543 3543
                     
3544
-                    $per_page = 500;
3545
-                    if ($per_page > $chunk_per_page) {
3546
-                        $per_page = $chunk_per_page;
3547
-                    }
3548
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3544
+					$per_page = 500;
3545
+					if ($per_page > $chunk_per_page) {
3546
+						$per_page = $chunk_per_page;
3547
+					}
3548
+					$total_pages = ceil( $chunk_per_page / $per_page );
3549 3549
                     
3550
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3551
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3550
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3551
+						$save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3552 3552
                         
3553
-                        $clear = $i == 0 ? true : false;
3554
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3555
-                    }
3553
+						$clear = $i == 0 ? true : false;
3554
+						geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3555
+					}
3556 3556
                     
3557
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3558
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3559
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3560
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3561
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3557
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3558
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3559
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3560
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3561
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3562 3562
                         
3563
-                        $file_url = $file_url_base . $chunk_file_name;
3564
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3565
-                    }
3563
+						$file_url = $file_url_base . $chunk_file_name;
3564
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3565
+					}
3566 3566
                     
3567
-                    if ( !empty($chunk_file_paths) ) {
3568
-                        $json['total'] = $terms_count;
3569
-                        $json['files'] = $chunk_file_paths;
3570
-                    } else {
3571
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3572
-                    }
3573
-                }
3574
-                // WPML
3575
-                if ($is_wpml) {
3576
-                    $sitepress->switch_lang($active_lang, true);
3577
-                }
3578
-                // WPML
3579
-                wp_send_json( $json );
3580
-            }
3581
-        }
3582
-        break;
3583
-        case 'export_locations': {
3584
-            $file_url_base = geodir_path_import_export() . '/';
3585
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3586
-            $file_url = $file_url_base . $file_name . '.csv';
3587
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3588
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3567
+					if ( !empty($chunk_file_paths) ) {
3568
+						$json['total'] = $terms_count;
3569
+						$json['files'] = $chunk_file_paths;
3570
+					} else {
3571
+						$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3572
+					}
3573
+				}
3574
+				// WPML
3575
+				if ($is_wpml) {
3576
+					$sitepress->switch_lang($active_lang, true);
3577
+				}
3578
+				// WPML
3579
+				wp_send_json( $json );
3580
+			}
3581
+		}
3582
+		break;
3583
+		case 'export_locations': {
3584
+			$file_url_base = geodir_path_import_export() . '/';
3585
+			$file_name = 'gd_locations_' . date( 'dmyHi' );
3586
+			$file_url = $file_url_base . $file_name . '.csv';
3587
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3588
+			$file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3589 3589
             
3590
-            $items_count = (int)geodir_location_imex_count_locations();
3590
+			$items_count = (int)geodir_location_imex_count_locations();
3591 3591
             
3592
-            if ( isset( $_REQUEST['_st'] ) ) {
3593
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3594
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3595
-                $percentage = min( $percentage, 100 );
3592
+			if ( isset( $_REQUEST['_st'] ) ) {
3593
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3594
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3595
+				$percentage = min( $percentage, 100 );
3596 3596
                 
3597
-                $json['percentage'] = $percentage;
3598
-                wp_send_json( $json );
3599
-            } else {
3600
-                $chunk_file_paths = array();
3597
+				$json['percentage'] = $percentage;
3598
+				wp_send_json( $json );
3599
+			} else {
3600
+				$chunk_file_paths = array();
3601 3601
                 
3602
-                if ( !$items_count > 0 ) {
3603
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3604
-                } else {
3605
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3606
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3602
+				if ( !$items_count > 0 ) {
3603
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3604
+				} else {
3605
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3606
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3607 3607
                     
3608
-                    $j = $chunk_page_no;
3609
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3608
+					$j = $chunk_page_no;
3609
+					$chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3610 3610
                     
3611
-                    $per_page = 500;
3612
-                    $per_page = min( $per_page, $chunk_per_page );
3613
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3611
+					$per_page = 500;
3612
+					$per_page = min( $per_page, $chunk_per_page );
3613
+					$total_pages = ceil( $chunk_per_page / $per_page );
3614 3614
                     
3615
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3616
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3615
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3616
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3617 3617
                         
3618
-                        $clear = $i == 0 ? true : false;
3619
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3620
-                    }
3618
+						$clear = $i == 0 ? true : false;
3619
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3620
+					}
3621 3621
                     
3622
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3623
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3624
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3625
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3626
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3622
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3623
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3624
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3625
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3626
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3627 3627
                         
3628
-                        $file_url = $file_url_base . $chunk_file_name;
3629
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3630
-                    }
3628
+						$file_url = $file_url_base . $chunk_file_name;
3629
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3630
+					}
3631 3631
                     
3632
-                    if ( !empty($chunk_file_paths) ) {
3633
-                        $json['total'] = $items_count;
3634
-                        $json['files'] = $chunk_file_paths;
3635
-                    } else {
3636
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3637
-                    }
3638
-                }
3639
-                wp_send_json( $json );
3640
-            }
3641
-        }
3642
-        break;
3643
-        case 'export_hoods': {
3644
-            $file_url_base = geodir_path_import_export() . '/';
3645
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3646
-            $file_url = $file_url_base . $file_name . '.csv';
3647
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3648
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3632
+					if ( !empty($chunk_file_paths) ) {
3633
+						$json['total'] = $items_count;
3634
+						$json['files'] = $chunk_file_paths;
3635
+					} else {
3636
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3637
+					}
3638
+				}
3639
+				wp_send_json( $json );
3640
+			}
3641
+		}
3642
+		break;
3643
+		case 'export_hoods': {
3644
+			$file_url_base = geodir_path_import_export() . '/';
3645
+			$file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3646
+			$file_url = $file_url_base . $file_name . '.csv';
3647
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3648
+			$file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3649 3649
             
3650
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3650
+			$items_count = (int)geodir_location_imex_count_neighbourhoods();
3651 3651
             
3652
-            if ( isset( $_REQUEST['_st'] ) ) {
3653
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3654
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3655
-                $percentage = min( $percentage, 100 );
3652
+			if ( isset( $_REQUEST['_st'] ) ) {
3653
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3654
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3655
+				$percentage = min( $percentage, 100 );
3656 3656
                 
3657
-                $json['percentage'] = $percentage;
3658
-                wp_send_json( $json );
3659
-            } else {
3660
-                $chunk_file_paths = array();
3657
+				$json['percentage'] = $percentage;
3658
+				wp_send_json( $json );
3659
+			} else {
3660
+				$chunk_file_paths = array();
3661 3661
                 
3662
-                if ( !$items_count > 0 ) {
3663
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3664
-                } else {
3665
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3666
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3662
+				if ( !$items_count > 0 ) {
3663
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3664
+				} else {
3665
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3666
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3667 3667
                     
3668
-                    $j = $chunk_page_no;
3669
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3668
+					$j = $chunk_page_no;
3669
+					$chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3670 3670
                     
3671
-                    $per_page = 500;
3672
-                    $per_page = min( $per_page, $chunk_per_page );
3673
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3671
+					$per_page = 500;
3672
+					$per_page = min( $per_page, $chunk_per_page );
3673
+					$total_pages = ceil( $chunk_per_page / $per_page );
3674 3674
                     
3675
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3676
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3675
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3676
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3677 3677
                         
3678
-                        $clear = $i == 0 ? true : false;
3679
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3680
-                    }
3678
+						$clear = $i == 0 ? true : false;
3679
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3680
+					}
3681 3681
                     
3682
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3683
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3684
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3685
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3686
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3682
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3683
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3684
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3685
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3686
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3687 3687
                         
3688
-                        $file_url = $file_url_base . $chunk_file_name;
3689
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3690
-                    }
3688
+						$file_url = $file_url_base . $chunk_file_name;
3689
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3690
+					}
3691 3691
                     
3692
-                    if ( !empty($chunk_file_paths) ) {
3693
-                        $json['total'] = $items_count;
3694
-                        $json['files'] = $chunk_file_paths;
3695
-                    } else {
3696
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3697
-                    }
3698
-                }
3699
-                wp_send_json( $json );
3700
-            }
3701
-        }
3702
-        break;
3703
-        case 'prepare_import':
3704
-        case 'import_cat':
3705
-        case 'import_post':
3706
-        case 'import_loc':
3707
-        case 'import_hood': {
3708
-            // WPML
3709
-            $is_wpml = geodir_is_wpml();
3710
-            if ($is_wpml) {
3711
-                global $sitepress;
3712
-                $active_lang = ICL_LANGUAGE_CODE;
3713
-            }
3714
-            // WPML
3692
+					if ( !empty($chunk_file_paths) ) {
3693
+						$json['total'] = $items_count;
3694
+						$json['files'] = $chunk_file_paths;
3695
+					} else {
3696
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3697
+					}
3698
+				}
3699
+				wp_send_json( $json );
3700
+			}
3701
+		}
3702
+		break;
3703
+		case 'prepare_import':
3704
+		case 'import_cat':
3705
+		case 'import_post':
3706
+		case 'import_loc':
3707
+		case 'import_hood': {
3708
+			// WPML
3709
+			$is_wpml = geodir_is_wpml();
3710
+			if ($is_wpml) {
3711
+				global $sitepress;
3712
+				$active_lang = ICL_LANGUAGE_CODE;
3713
+			}
3714
+			// WPML
3715 3715
             
3716
-            ini_set( 'auto_detect_line_endings', true );
3716
+			ini_set( 'auto_detect_line_endings', true );
3717 3717
             
3718
-            $uploads = wp_upload_dir();
3719
-            $uploads_dir = $uploads['path'];
3720
-            $uploads_subdir = $uploads['subdir'];
3718
+			$uploads = wp_upload_dir();
3719
+			$uploads_dir = $uploads['path'];
3720
+			$uploads_subdir = $uploads['subdir'];
3721 3721
             
3722
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3723
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3722
+			$csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3723
+			$import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3724 3724
             
3725
-            $csv_file_arr = explode( '/', $csv_file );
3726
-            $csv_filename = end( $csv_file_arr );
3727
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3725
+			$csv_file_arr = explode( '/', $csv_file );
3726
+			$csv_filename = end( $csv_file_arr );
3727
+			$target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3728 3728
             
3729
-            $json['file'] = $csv_file;
3730
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3731
-            $file = array();
3729
+			$json['file'] = $csv_file;
3730
+			$json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3731
+			$file = array();
3732 3732
 
3733
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3734
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3733
+			if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3734
+				$wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3735 3735
                 
3736
-                if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3737
-                    $json['error'] = NULL;
3738
-                    $json['rows'] = 0;
3736
+				if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3737
+					$json['error'] = NULL;
3738
+					$json['rows'] = 0;
3739 3739
                     
3740
-                    $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3741
-                    setlocale(LC_ALL, 'en_US.UTF-8');
3742
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3743
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3744
-                            if ( !empty( $data ) ) {
3745
-                                $file[] = $data;
3746
-                            }
3747
-                        }
3748
-                        fclose($handle);
3749
-                    }
3750
-                    setlocale(LC_ALL, $lc_all);
3740
+					$lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3741
+					setlocale(LC_ALL, 'en_US.UTF-8');
3742
+					if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3743
+						while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3744
+							if ( !empty( $data ) ) {
3745
+								$file[] = $data;
3746
+							}
3747
+						}
3748
+						fclose($handle);
3749
+					}
3750
+					setlocale(LC_ALL, $lc_all);
3751 3751
 
3752
-                    $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
3752
+					$json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
3753 3753
                     
3754
-                    if (!$json['rows'] > 0) {
3755
-                        $json['error'] = __('No data found in csv file.', 'geodirectory');
3756
-                    }
3757
-                } else {
3758
-                    wp_send_json( $json );
3759
-                }
3760
-            } else {
3761
-                wp_send_json( $json );
3762
-            }
3754
+					if (!$json['rows'] > 0) {
3755
+						$json['error'] = __('No data found in csv file.', 'geodirectory');
3756
+					}
3757
+				} else {
3758
+					wp_send_json( $json );
3759
+				}
3760
+			} else {
3761
+				wp_send_json( $json );
3762
+			}
3763 3763
             
3764
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3765
-                wp_send_json( $json );
3766
-            }
3764
+			if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3765
+				wp_send_json( $json );
3766
+			}
3767 3767
             
3768
-            $total = $json['rows'];
3769
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3770
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3768
+			$total = $json['rows'];
3769
+			$limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3770
+			$processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3771 3771
             
3772
-            $count = $limit;
3772
+			$count = $limit;
3773 3773
             
3774
-            if ($count < $total) {
3775
-                $count = $processed + $count;
3776
-                if ($count > $total) {
3777
-                    $count = $total;
3778
-                }
3779
-            } else {
3780
-                $count = $total;
3781
-            }
3774
+			if ($count < $total) {
3775
+				$count = $processed + $count;
3776
+				if ($count > $total) {
3777
+					$count = $total;
3778
+				}
3779
+			} else {
3780
+				$count = $total;
3781
+			}
3782 3782
             
3783
-            $created = 0;
3784
-            $updated = 0;
3785
-            $skipped = 0;
3786
-            $invalid = 0;
3787
-            $invalid_addr = 0;
3788
-            $images = 0;
3783
+			$created = 0;
3784
+			$updated = 0;
3785
+			$skipped = 0;
3786
+			$invalid = 0;
3787
+			$invalid_addr = 0;
3788
+			$images = 0;
3789 3789
             
3790
-            $gd_post_info = array();
3791
-            $countpost = 0;
3790
+			$gd_post_info = array();
3791
+			$countpost = 0;
3792 3792
             
3793
-            $post_types = geodir_get_posttypes();
3793
+			$post_types = geodir_get_posttypes();
3794 3794
 
3795
-            if ( $task == 'import_cat' ) {
3796
-                if (!empty($file)) {
3797
-                    $columns = isset($file[0]) ? $file[0] : NULL;
3795
+			if ( $task == 'import_cat' ) {
3796
+				if (!empty($file)) {
3797
+					$columns = isset($file[0]) ? $file[0] : NULL;
3798 3798
                     
3799
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3800
-                        $json['error'] = CSV_INVAILD_FILE;
3801
-                        wp_send_json( $json );
3802
-                        exit;
3803
-                    }
3799
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3800
+						$json['error'] = CSV_INVAILD_FILE;
3801
+						wp_send_json( $json );
3802
+						exit;
3803
+					}
3804 3804
                     
3805
-                    $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
3805
+					$gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
3806 3806
                     
3807
-                    for ($i = 1; $i <= $limit; $i++) {
3808
-                        $index = $processed + $i;
3807
+					for ($i = 1; $i <= $limit; $i++) {
3808
+						$index = $processed + $i;
3809 3809
                         
3810
-                        if (isset($file[$index])) {
3811
-                            $row = $file[$index];
3812
-                            $row = array_map( 'trim', $row );
3813
-                            //$row = array_map( 'utf8_encode', $row );
3810
+						if (isset($file[$index])) {
3811
+							$row = $file[$index];
3812
+							$row = array_map( 'trim', $row );
3813
+							//$row = array_map( 'utf8_encode', $row );
3814 3814
                             
3815
-                            $cat_id = '';
3816
-                            $cat_name = '';
3817
-                            $cat_slug = '';
3818
-                            $cat_posttype = '';
3819
-                            $cat_parent = '';
3820
-                            $cat_description = '';
3821
-                            $cat_schema = '';
3822
-                            $cat_top_description = '';
3823
-                            $cat_image = '';
3824
-                            $cat_icon = '';
3825
-                            $cat_language = '';
3826
-                            $cat_id_original = '';
3815
+							$cat_id = '';
3816
+							$cat_name = '';
3817
+							$cat_slug = '';
3818
+							$cat_posttype = '';
3819
+							$cat_parent = '';
3820
+							$cat_description = '';
3821
+							$cat_schema = '';
3822
+							$cat_top_description = '';
3823
+							$cat_image = '';
3824
+							$cat_icon = '';
3825
+							$cat_language = '';
3826
+							$cat_id_original = '';
3827 3827
                             
3828
-                            $c = 0;
3829
-                            foreach ($columns as $column ) {
3830
-                                if ( $column == 'cat_id' ) {
3831
-                                    $cat_id = (int)$row[$c];
3832
-                                } else if ( $column == 'cat_name' ) {
3833
-                                    $cat_name = $row[$c];
3834
-                                } else if ( $column == 'cat_slug' ) {
3835
-                                    $cat_slug = $row[$c];
3836
-                                } else if ( $column == 'cat_posttype' ) {
3837
-                                    $cat_posttype = $row[$c];
3838
-                                } else if ( $column == 'cat_parent' ) {
3839
-                                    $cat_parent = trim($row[$c]);
3840
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3841
-                                    $cat_schema = $row[$c];
3842
-                                } else if ( $column == 'cat_description' ) {
3843
-                                    $cat_description = $row[$c];
3844
-                                } else if ( $column == 'cat_top_description' ) {
3845
-                                    $cat_top_description = $row[$c];
3846
-                                } else if ( $column == 'cat_image' ) {
3847
-                                    $cat_image = $row[$c];
3848
-                                } else if ( $column == 'cat_icon' ) {
3849
-                                    $cat_icon = $row[$c];
3850
-                                }
3851
-                                // WPML
3852
-                                if ( $is_wpml ) {
3853
-                                    if ( $column == 'cat_language' ) {
3854
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3855
-                                    } else if ( $column == 'cat_id_original' ) {
3856
-                                        $cat_id_original = (int)$row[$c];
3857
-                                    }
3858
-                                }
3859
-                                // WPML
3860
-                                $c++;
3861
-                            }
3828
+							$c = 0;
3829
+							foreach ($columns as $column ) {
3830
+								if ( $column == 'cat_id' ) {
3831
+									$cat_id = (int)$row[$c];
3832
+								} else if ( $column == 'cat_name' ) {
3833
+									$cat_name = $row[$c];
3834
+								} else if ( $column == 'cat_slug' ) {
3835
+									$cat_slug = $row[$c];
3836
+								} else if ( $column == 'cat_posttype' ) {
3837
+									$cat_posttype = $row[$c];
3838
+								} else if ( $column == 'cat_parent' ) {
3839
+									$cat_parent = trim($row[$c]);
3840
+								} else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3841
+									$cat_schema = $row[$c];
3842
+								} else if ( $column == 'cat_description' ) {
3843
+									$cat_description = $row[$c];
3844
+								} else if ( $column == 'cat_top_description' ) {
3845
+									$cat_top_description = $row[$c];
3846
+								} else if ( $column == 'cat_image' ) {
3847
+									$cat_image = $row[$c];
3848
+								} else if ( $column == 'cat_icon' ) {
3849
+									$cat_icon = $row[$c];
3850
+								}
3851
+								// WPML
3852
+								if ( $is_wpml ) {
3853
+									if ( $column == 'cat_language' ) {
3854
+										$cat_language = geodir_strtolower( trim( $row[$c] ) );
3855
+									} else if ( $column == 'cat_id_original' ) {
3856
+										$cat_id_original = (int)$row[$c];
3857
+									}
3858
+								}
3859
+								// WPML
3860
+								$c++;
3861
+							}
3862 3862
                             
3863
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3864
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3863
+							if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3864
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3865 3865
                                 
3866
-                                $invalid++;
3867
-                                continue;
3868
-                            }
3866
+								$invalid++;
3867
+								continue;
3868
+							}
3869 3869
                             
3870
-                            // WPML
3871
-                            if ($is_wpml && $cat_language != '') {
3872
-                                $sitepress->switch_lang($cat_language, true);
3873
-                            }
3874
-                            // WPML
3870
+							// WPML
3871
+							if ($is_wpml && $cat_language != '') {
3872
+								$sitepress->switch_lang($cat_language, true);
3873
+							}
3874
+							// WPML
3875 3875
                                                         
3876
-                            $term_data = array();
3877
-                            $term_data['name'] = $cat_name;
3878
-                            $term_data['slug'] = $cat_slug;
3879
-                            $term_data['description'] = $cat_description;
3880
-                            $term_data['cat_schema'] = $cat_schema;
3881
-                            $term_data['top_description'] = $cat_top_description;
3882
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3883
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3876
+							$term_data = array();
3877
+							$term_data['name'] = $cat_name;
3878
+							$term_data['slug'] = $cat_slug;
3879
+							$term_data['description'] = $cat_description;
3880
+							$term_data['cat_schema'] = $cat_schema;
3881
+							$term_data['top_description'] = $cat_top_description;
3882
+							$term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3883
+							$term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3884 3884
                             
3885
-                            //$term_data = array_map( 'utf8_encode', $term_data );
3885
+							//$term_data = array_map( 'utf8_encode', $term_data );
3886 3886
                             
3887
-                            $taxonomy = $cat_posttype . 'category';
3887
+							$taxonomy = $cat_posttype . 'category';
3888 3888
                             
3889
-                            $term_data['taxonomy'] = $taxonomy;
3889
+							$term_data['taxonomy'] = $taxonomy;
3890 3890
 
3891
-                            $term_parent_id = 0;
3892
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3893
-                                $term_parent = '';
3891
+							$term_parent_id = 0;
3892
+							if ($cat_parent != "" || (int)$cat_parent > 0) {
3893
+								$term_parent = '';
3894 3894
                                 
3895
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3896
-                                    //
3897
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3898
-                                    //
3899
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3900
-                                    //
3901
-                                } else {
3902
-                                    $term_parent_data = array();
3903
-                                    $term_parent_data['name'] = $cat_parent;
3904
-                                    //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3905
-                                    $term_parent_data['taxonomy'] = $taxonomy;
3895
+								if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3896
+									//
3897
+								} else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3898
+									//
3899
+								} else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3900
+									//
3901
+								} else {
3902
+									$term_parent_data = array();
3903
+									$term_parent_data['name'] = $cat_parent;
3904
+									//$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3905
+									$term_parent_data['taxonomy'] = $taxonomy;
3906 3906
                                     
3907
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3908
-                                }
3907
+									$term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3908
+								}
3909 3909
                                 
3910
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3911
-                                    $term_parent_id = (int)$term_parent->term_id;
3912
-                                }
3913
-                            }
3914
-                            $term_data['parent'] = (int)$term_parent_id;
3910
+								if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3911
+									$term_parent_id = (int)$term_parent->term_id;
3912
+								}
3913
+							}
3914
+							$term_data['parent'] = (int)$term_parent_id;
3915 3915
 
3916
-                            $term_id = NULL;
3917
-                            if ( $import_choice == 'update' ) {
3918
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3919
-                                    $term_data['term_id'] = $term['term_id'];
3916
+							$term_id = NULL;
3917
+							if ( $import_choice == 'update' ) {
3918
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3919
+									$term_data['term_id'] = $term['term_id'];
3920 3920
                                     
3921
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3922
-                                        $updated++;
3923
-                                    } else {
3924
-                                        $invalid++;
3925
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3926
-                                    }
3927
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3928
-                                    $term_data['term_id'] = $term['term_id'];
3921
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3922
+										$updated++;
3923
+									} else {
3924
+										$invalid++;
3925
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3926
+									}
3927
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3928
+									$term_data['term_id'] = $term['term_id'];
3929 3929
                                     
3930
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3931
-                                        $updated++;
3932
-                                    } else {
3933
-                                        $invalid++;
3934
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3935
-                                    }
3936
-                                } else {
3937
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3938
-                                        $created++;
3939
-                                    } else {
3940
-                                        $invalid++;
3941
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3942
-                                    }
3943
-                                }
3944
-                            } else if ( $import_choice == 'skip' ) {
3945
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3946
-                                    $skipped++;
3947
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3948
-                                    $skipped++;
3949
-                                } else {
3950
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3951
-                                        $created++;
3952
-                                    } else {
3953
-                                        $invalid++;
3954
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3955
-                                    }
3956
-                                }
3957
-                            } else {
3958
-                                $invalid++;
3959
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3960
-                            }
3930
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3931
+										$updated++;
3932
+									} else {
3933
+										$invalid++;
3934
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3935
+									}
3936
+								} else {
3937
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3938
+										$created++;
3939
+									} else {
3940
+										$invalid++;
3941
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3942
+									}
3943
+								}
3944
+							} else if ( $import_choice == 'skip' ) {
3945
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3946
+									$skipped++;
3947
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3948
+									$skipped++;
3949
+								} else {
3950
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3951
+										$created++;
3952
+									} else {
3953
+										$invalid++;
3954
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3955
+									}
3956
+								}
3957
+							} else {
3958
+								$invalid++;
3959
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3960
+							}
3961 3961
                             
3962
-                            if ( $term_id ) {
3963
-                                // WPML
3964
-                                if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
3965
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3966
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3967
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3968
-
3969
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3962
+							if ( $term_id ) {
3963
+								// WPML
3964
+								if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
3965
+									$wpml_element_type = 'tax_' . $taxonomy;
3966
+									$source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3967
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3968
+
3969
+									$trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3970 3970
                                     
3971
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3972
-                                }
3973
-                                // WPML
3971
+									$sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3972
+								}
3973
+								// WPML
3974 3974
                                 
3975
-                                if ( isset( $term_data['top_description'] ) ) {
3976
-                                    update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3977
-                                }
3975
+								if ( isset( $term_data['top_description'] ) ) {
3976
+									update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3977
+								}
3978 3978
                                 
3979
-                                if ( isset( $term_data['cat_schema'] ) ) {
3980
-                                    update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3981
-                                }
3979
+								if ( isset( $term_data['cat_schema'] ) ) {
3980
+									update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3981
+								}
3982 3982
             
3983
-                                $attachment = false;
3984
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3985
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3986
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3983
+								$attachment = false;
3984
+								if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3985
+									$cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3986
+									$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3987 3987
                                     
3988
-                                    if ( basename($cat_image) != $term_data['image'] ) {
3989
-                                        $attachment = true;
3990
-                                        update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
3991
-                                    }
3992
-                                }
3988
+									if ( basename($cat_image) != $term_data['image'] ) {
3989
+										$attachment = true;
3990
+										update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
3991
+									}
3992
+								}
3993 3993
                                 
3994
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
3995
-                                    $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
3996
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
3997
-
3998
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
3999
-                                        $attachment = true;
4000
-                                        update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4001
-                                    }
4002
-                                }
3994
+								if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
3995
+									$cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
3996
+									$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
3997
+
3998
+									if ( basename($cat_icon) != $term_data['icon'] ) {
3999
+										$attachment = true;
4000
+										update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4001
+									}
4002
+								}
4003 4003
                                 
4004
-                                if ( $attachment ) {
4005
-                                    $images++;
4006
-                                }
4007
-                            }
4004
+								if ( $attachment ) {
4005
+									$images++;
4006
+								}
4007
+							}
4008 4008
                             
4009
-                            // WPML
4010
-                            if ($is_wpml && $cat_language != '') {
4011
-                                $sitepress->switch_lang($active_lang, true);
4012
-                            }
4013
-                            // WPML
4014
-                        }
4015
-                    }
4016
-                }
4009
+							// WPML
4010
+							if ($is_wpml && $cat_language != '') {
4011
+								$sitepress->switch_lang($active_lang, true);
4012
+							}
4013
+							// WPML
4014
+						}
4015
+					}
4016
+				}
4017 4017
                 
4018
-                $json = array();
4019
-                $json['processed'] = $limit;
4020
-                $json['created'] = $created;
4021
-                $json['updated'] = $updated;
4022
-                $json['skipped'] = $skipped;
4023
-                $json['invalid'] = $invalid;
4024
-                $json['images'] = $images;
4018
+				$json = array();
4019
+				$json['processed'] = $limit;
4020
+				$json['created'] = $created;
4021
+				$json['updated'] = $updated;
4022
+				$json['skipped'] = $skipped;
4023
+				$json['invalid'] = $invalid;
4024
+				$json['images'] = $images;
4025 4025
                 
4026
-                wp_send_json( $json );
4027
-                exit;
4028
-            } else if ( $task == 'import_post' ) {
4029
-                $xtimings['###1'] = microtime(true)-$xstart;
4030
-                //run some stuff to make the import quicker
4031
-                wp_defer_term_counting( true );
4032
-                wp_defer_comment_counting( true );
4033
-                $wpdb->query( 'SET autocommit = 0;' );
4026
+				wp_send_json( $json );
4027
+				exit;
4028
+			} else if ( $task == 'import_post' ) {
4029
+				$xtimings['###1'] = microtime(true)-$xstart;
4030
+				//run some stuff to make the import quicker
4031
+				wp_defer_term_counting( true );
4032
+				wp_defer_comment_counting( true );
4033
+				$wpdb->query( 'SET autocommit = 0;' );
4034 4034
 //
4035 4035
 //                remove_all_actions('publish_post');
4036 4036
 //                remove_all_actions('transition_post_status');
4037 4037
 //                remove_all_actions('publish_future_post');
4038 4038
 
4039
-                if (!empty($file)) {
4040
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4041
-                    $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4042
-                    $default_status = 'publish';
4043
-                    $current_date = date_i18n( 'Y-m-d', time() );
4039
+				if (!empty($file)) {
4040
+					$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4041
+					$wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4042
+					$default_status = 'publish';
4043
+					$current_date = date_i18n( 'Y-m-d', time() );
4044 4044
                     
4045
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4045
+					$columns = isset($file[0]) ? $file[0] : NULL;
4046 4046
                     
4047
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4048
-                        $json['error'] = CSV_INVAILD_FILE;
4049
-                        wp_send_json( $json );
4050
-                        exit;
4051
-                    }
4052
-                    $xtimings['###2'] = microtime(true)-$xstart;
4053
-                    $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4054
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4055
-                    $processed_actual = 0;
4056
-                    for ($i = 1; $i <= $limit; $i++) {
4057
-                        $index = $processed + $i;
4058
-                        $gd_post = array();
4047
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4048
+						$json['error'] = CSV_INVAILD_FILE;
4049
+						wp_send_json( $json );
4050
+						exit;
4051
+					}
4052
+					$xtimings['###2'] = microtime(true)-$xstart;
4053
+					$gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4054
+					$wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4055
+					$processed_actual = 0;
4056
+					for ($i = 1; $i <= $limit; $i++) {
4057
+						$index = $processed + $i;
4058
+						$gd_post = array();
4059 4059
                         
4060
-                        if (isset($file[$index])) {
4061
-                            $processed_actual++;
4062
-                            $row = $file[$index];
4063
-                            $row = array_map( 'trim', $row );
4064
-                            //$row = array_map( 'utf8_encode', $row );
4065
-                            $row = array_map( 'addslashes_gpc', $row );
4060
+						if (isset($file[$index])) {
4061
+							$processed_actual++;
4062
+							$row = $file[$index];
4063
+							$row = array_map( 'trim', $row );
4064
+							//$row = array_map( 'utf8_encode', $row );
4065
+							$row = array_map( 'addslashes_gpc', $row );
4066 4066
                             
4067
-                            $post_id = '';
4068
-                            $post_title = '';
4069
-                            $post_date = '';
4070
-                            $post_author = '';
4071
-                            $post_content = '';
4072
-                            $post_category_arr = array();
4073
-                            $default_category = '';
4074
-                            $post_tags = array();
4075
-                            $post_type = '';
4076
-                            $post_status = '';
4077
-                            $geodir_video = '';
4078
-                            $post_address = '';
4079
-                            $post_city = '';
4080
-                            $post_region = '';
4081
-                            $post_country = '';
4082
-                            $post_zip = '';
4083
-                            $post_latitude = '';
4084
-                            $post_longitude = '';
4085
-                            $post_neighbourhood = '';
4086
-                            $neighbourhood_latitude = '';
4087
-                            $neighbourhood_longitude = '';
4088
-                            $geodir_timing = '';
4089
-                            $geodir_contact = '';
4090
-                            $geodir_email = '';
4091
-                            $geodir_website = '';
4092
-                            $geodir_twitter = '';
4093
-                            $geodir_facebook = '';
4094
-                            $geodir_twitter = '';
4095
-                            $post_images = array();
4067
+							$post_id = '';
4068
+							$post_title = '';
4069
+							$post_date = '';
4070
+							$post_author = '';
4071
+							$post_content = '';
4072
+							$post_category_arr = array();
4073
+							$default_category = '';
4074
+							$post_tags = array();
4075
+							$post_type = '';
4076
+							$post_status = '';
4077
+							$geodir_video = '';
4078
+							$post_address = '';
4079
+							$post_city = '';
4080
+							$post_region = '';
4081
+							$post_country = '';
4082
+							$post_zip = '';
4083
+							$post_latitude = '';
4084
+							$post_longitude = '';
4085
+							$post_neighbourhood = '';
4086
+							$neighbourhood_latitude = '';
4087
+							$neighbourhood_longitude = '';
4088
+							$geodir_timing = '';
4089
+							$geodir_contact = '';
4090
+							$geodir_email = '';
4091
+							$geodir_website = '';
4092
+							$geodir_twitter = '';
4093
+							$geodir_facebook = '';
4094
+							$geodir_twitter = '';
4095
+							$post_images = array();
4096 4096
                             
4097
-                            $expire_date = 'Never';
4097
+							$expire_date = 'Never';
4098 4098
                             
4099
-                            $language = '';
4100
-                            $original_post_id = '';
4099
+							$language = '';
4100
+							$original_post_id = '';
4101 4101
                             
4102
-                            $c = 0;
4103
-                            foreach ($columns as $column ) {
4104
-                                $gd_post[$column] = $row[$c];
4102
+							$c = 0;
4103
+							foreach ($columns as $column ) {
4104
+								$gd_post[$column] = $row[$c];
4105 4105
                                 
4106
-                                if ( $column == 'post_id' ) {
4107
-                                    $post_id = $row[$c];
4108
-                                } else if ( $column == 'post_title' ) {
4109
-                                    $post_title = sanitize_text_field($row[$c]);
4110
-                                } else if ( $column == 'post_author' ) {
4111
-                                    $post_author = $row[$c];
4112
-                                } else if ( $column == 'post_date' ) {
4113
-                                    $post_date = $row[$c];
4114
-                                } else if ( $column == 'post_content' ) {
4115
-                                    $post_content = $row[$c];
4116
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4117
-                                    $post_category_arr = explode( ',', $row[$c] );
4118
-                                } else if ( $column == 'default_category' ) {
4119
-                                    $default_category = wp_kses_normalize_entities($row[$c]);
4120
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4121
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4122
-                                } else if ( $column == 'post_type' ) {
4123
-                                    $post_type = $row[$c];
4124
-                                } else if ( $column == 'post_status' ) {
4125
-                                    $post_status = sanitize_key( $row[$c] );
4126
-                                } else if ( $column == 'is_featured' ) {
4127
-                                    $is_featured = (int)$row[$c];
4128
-                                } else if ( $column == 'geodir_video' ) {
4129
-                                    $geodir_video = $row[$c];
4130
-                                } else if ( $column == 'post_address' ) {
4131
-                                    $post_address = sanitize_text_field($row[$c]);
4132
-                                } else if ( $column == 'post_city' ) {
4133
-                                    $post_city = sanitize_text_field($row[$c]);
4134
-                                } else if ( $column == 'post_region' ) {
4135
-                                    $post_region = sanitize_text_field($row[$c]);
4136
-                                } else if ( $column == 'post_country' ) {
4137
-                                    $post_country = sanitize_text_field($row[$c]);
4138
-                                } else if ( $column == 'post_zip' ) {
4139
-                                    $post_zip = sanitize_text_field($row[$c]);
4140
-                                } else if ( $column == 'post_latitude' ) {
4141
-                                    $post_latitude = sanitize_text_field($row[$c]);
4142
-                                } else if ( $column == 'post_longitude' ) {
4143
-                                    $post_longitude = sanitize_text_field($row[$c]);
4144
-                                } else if ( $column == 'post_neighbourhood' ) {
4145
-                                    $post_neighbourhood = sanitize_text_field($row[$c]);
4146
-                                    unset($gd_post[$column]);
4147
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4148
-                                    $neighbourhood_latitude = sanitize_text_field($row[$c]);
4149
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4150
-                                    $neighbourhood_longitude = sanitize_text_field($row[$c]);
4151
-                                } else if ( $column == 'geodir_timing' ) {
4152
-                                    $geodir_timing = sanitize_text_field($row[$c]);
4153
-                                } else if ( $column == 'geodir_contact' ) {
4154
-                                    $geodir_contact = sanitize_text_field($row[$c]);
4155
-                                } else if ( $column == 'geodir_email' ) {
4156
-                                    $geodir_email = sanitize_email($row[$c]);
4157
-                                } else if ( $column == 'geodir_website' ) {
4158
-                                    $geodir_website = sanitize_text_field($row[$c]);
4159
-                                } else if ( $column == 'geodir_twitter' ) {
4160
-                                    $geodir_twitter = sanitize_text_field($row[$c]);
4161
-                                } else if ( $column == 'geodir_facebook' ) {
4162
-                                    $geodir_facebook = sanitize_text_field($row[$c]);
4163
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4164
-                                    $post_images[] = $row[$c];
4165
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4166
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4167
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4168
-                                    $row[$c] = str_replace('/', '-', $row[$c]);
4169
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4170
-                                }
4171
-                                // WPML
4172
-                                if ($is_wpml) {
4173
-                                    if ($column == 'language') {
4174
-                                        $language = geodir_strtolower(trim($row[$c]));
4175
-                                    } else if ($column == 'original_post_id') {
4176
-                                        $original_post_id = (int)$row[$c];
4177
-                                    }
4178
-                                }
4179
-                                // WPML
4180
-                                $c++;
4181
-                            }
4182
-                            // listing claimed or not
4183
-                            if ($is_claim_active && isset($gd_post['claimed'])) {
4184
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4185
-                            }
4106
+								if ( $column == 'post_id' ) {
4107
+									$post_id = $row[$c];
4108
+								} else if ( $column == 'post_title' ) {
4109
+									$post_title = sanitize_text_field($row[$c]);
4110
+								} else if ( $column == 'post_author' ) {
4111
+									$post_author = $row[$c];
4112
+								} else if ( $column == 'post_date' ) {
4113
+									$post_date = $row[$c];
4114
+								} else if ( $column == 'post_content' ) {
4115
+									$post_content = $row[$c];
4116
+								} else if ( $column == 'post_category' && $row[$c] != '' ) {
4117
+									$post_category_arr = explode( ',', $row[$c] );
4118
+								} else if ( $column == 'default_category' ) {
4119
+									$default_category = wp_kses_normalize_entities($row[$c]);
4120
+								} else if ( $column == 'post_tags' && $row[$c] != '' ) {
4121
+									$post_tags = explode( ',', sanitize_text_field($row[$c]) );
4122
+								} else if ( $column == 'post_type' ) {
4123
+									$post_type = $row[$c];
4124
+								} else if ( $column == 'post_status' ) {
4125
+									$post_status = sanitize_key( $row[$c] );
4126
+								} else if ( $column == 'is_featured' ) {
4127
+									$is_featured = (int)$row[$c];
4128
+								} else if ( $column == 'geodir_video' ) {
4129
+									$geodir_video = $row[$c];
4130
+								} else if ( $column == 'post_address' ) {
4131
+									$post_address = sanitize_text_field($row[$c]);
4132
+								} else if ( $column == 'post_city' ) {
4133
+									$post_city = sanitize_text_field($row[$c]);
4134
+								} else if ( $column == 'post_region' ) {
4135
+									$post_region = sanitize_text_field($row[$c]);
4136
+								} else if ( $column == 'post_country' ) {
4137
+									$post_country = sanitize_text_field($row[$c]);
4138
+								} else if ( $column == 'post_zip' ) {
4139
+									$post_zip = sanitize_text_field($row[$c]);
4140
+								} else if ( $column == 'post_latitude' ) {
4141
+									$post_latitude = sanitize_text_field($row[$c]);
4142
+								} else if ( $column == 'post_longitude' ) {
4143
+									$post_longitude = sanitize_text_field($row[$c]);
4144
+								} else if ( $column == 'post_neighbourhood' ) {
4145
+									$post_neighbourhood = sanitize_text_field($row[$c]);
4146
+									unset($gd_post[$column]);
4147
+								} else if ( $column == 'neighbourhood_latitude' ) {
4148
+									$neighbourhood_latitude = sanitize_text_field($row[$c]);
4149
+								} else if ( $column == 'neighbourhood_longitude' ) {
4150
+									$neighbourhood_longitude = sanitize_text_field($row[$c]);
4151
+								} else if ( $column == 'geodir_timing' ) {
4152
+									$geodir_timing = sanitize_text_field($row[$c]);
4153
+								} else if ( $column == 'geodir_contact' ) {
4154
+									$geodir_contact = sanitize_text_field($row[$c]);
4155
+								} else if ( $column == 'geodir_email' ) {
4156
+									$geodir_email = sanitize_email($row[$c]);
4157
+								} else if ( $column == 'geodir_website' ) {
4158
+									$geodir_website = sanitize_text_field($row[$c]);
4159
+								} else if ( $column == 'geodir_twitter' ) {
4160
+									$geodir_twitter = sanitize_text_field($row[$c]);
4161
+								} else if ( $column == 'geodir_facebook' ) {
4162
+									$geodir_facebook = sanitize_text_field($row[$c]);
4163
+								} else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4164
+									$post_images[] = $row[$c];
4165
+								} else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4166
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4167
+								} else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4168
+									$row[$c] = str_replace('/', '-', $row[$c]);
4169
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4170
+								}
4171
+								// WPML
4172
+								if ($is_wpml) {
4173
+									if ($column == 'language') {
4174
+										$language = geodir_strtolower(trim($row[$c]));
4175
+									} else if ($column == 'original_post_id') {
4176
+										$original_post_id = (int)$row[$c];
4177
+									}
4178
+								}
4179
+								// WPML
4180
+								$c++;
4181
+							}
4182
+							// listing claimed or not
4183
+							if ($is_claim_active && isset($gd_post['claimed'])) {
4184
+								$gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4185
+							}
4186 4186
                             
4187
-                            // WPML
4188
-                            if ($is_wpml && $language != '') {
4189
-                                $sitepress->switch_lang($language, true);
4190
-                            }
4191
-                            // WPML
4187
+							// WPML
4188
+							if ($is_wpml && $language != '') {
4189
+								$sitepress->switch_lang($language, true);
4190
+							}
4191
+							// WPML
4192 4192
 
4193
-                            $gd_post['IMAGE'] = $post_images;
4193
+							$gd_post['IMAGE'] = $post_images;
4194 4194
                             
4195
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4196
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4195
+							$post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4196
+							$post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4197 4197
                                                                                                                 
4198
-                            $valid = true;
4198
+							$valid = true;
4199 4199
                             
4200
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4201
-                                $invalid++;
4202
-                                $valid = false;
4203
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4204
-                            }
4205
-                            $xtimings['###3'] = microtime(true)-$xstart;
4206
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4207
-                            if ( $location_allowed ) {
4208
-                                $location_result = geodir_get_default_location();
4209
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4210
-                                    $invalid_addr++;
4211
-                                    $valid = false;
4212
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4213
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4214
-                                    if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4215
-                                        $invalid_addr++;
4216
-                                        $valid = false;
4217
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4218
-                                    } else {
4219
-                                        if (!$location_manager) {
4220
-                                            $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4221
-                                        }
4222
-                                    }
4223
-                                }
4224
-                            }
4225
-                            $xtimings['###4']   = microtime(true)-$xstart;
4226
-                            if ( !$valid ) {
4227
-                                continue;
4228
-                            }
4200
+							if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4201
+								$invalid++;
4202
+								$valid = false;
4203
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4204
+							}
4205
+							$xtimings['###3'] = microtime(true)-$xstart;
4206
+							$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4207
+							if ( $location_allowed ) {
4208
+								$location_result = geodir_get_default_location();
4209
+								if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4210
+									$invalid_addr++;
4211
+									$valid = false;
4212
+									geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4213
+								} else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4214
+									if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4215
+										$invalid_addr++;
4216
+										$valid = false;
4217
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4218
+									} else {
4219
+										if (!$location_manager) {
4220
+											$gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4221
+										}
4222
+									}
4223
+								}
4224
+							}
4225
+							$xtimings['###4']   = microtime(true)-$xstart;
4226
+							if ( !$valid ) {
4227
+								continue;
4228
+							}
4229 4229
 
4230
-                            $cat_taxonomy = $post_type . 'category';
4231
-                            $tags_taxonomy = $post_type . '_tags';
4230
+							$cat_taxonomy = $post_type . 'category';
4231
+							$tags_taxonomy = $post_type . '_tags';
4232 4232
                             
4233
-                            if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4234
-                                $post_category_arr = array_merge(array($default_category), $post_category_arr);
4235
-                            }
4233
+							if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4234
+								$post_category_arr = array_merge(array($default_category), $post_category_arr);
4235
+							}
4236 4236
 
4237
-                            $post_category = array();
4238
-                            $default_category_id = NULL;
4239
-                            if ( !empty( $post_category_arr ) ) {
4240
-                                foreach ( $post_category_arr as $value ) {
4241
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4237
+							$post_category = array();
4238
+							$default_category_id = NULL;
4239
+							if ( !empty( $post_category_arr ) ) {
4240
+								foreach ( $post_category_arr as $value ) {
4241
+									$category_name = wp_kses_normalize_entities( trim( $value ) );
4242 4242
                                     
4243
-                                    if ( $category_name != '' ) {
4244
-                                        $term_category = array();
4243
+									if ( $category_name != '' ) {
4244
+										$term_category = array();
4245 4245
                                         
4246
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4247
-                                            $term_category = $term;
4248
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4249
-                                            $term_category = $term;
4250
-                                        } else {
4251
-                                            $term_data = array();
4252
-                                            $term_data['name'] = $category_name;
4253
-                                            $term_data['taxonomy'] = $cat_taxonomy;
4246
+										if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4247
+											$term_category = $term;
4248
+										} else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4249
+											$term_category = $term;
4250
+										} else {
4251
+											$term_data = array();
4252
+											$term_data['name'] = $category_name;
4253
+											$term_data['taxonomy'] = $cat_taxonomy;
4254 4254
                                             
4255
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4256
-                                            if ( $term_id ) {
4257
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4258
-                                            }
4259
-                                        }
4255
+											$term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4256
+											if ( $term_id ) {
4257
+												$term_category = get_term( $term_id, $cat_taxonomy );
4258
+											}
4259
+										}
4260 4260
                                         
4261
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4262
-                                            $post_category[] = intval($term_category->term_id);
4261
+										if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4262
+											$post_category[] = intval($term_category->term_id);
4263 4263
                                             
4264
-                                            if ($category_name == $default_category) {
4265
-                                                $default_category_id = intval($term_category->term_id);
4266
-                                            }
4267
-                                        }
4268
-                                    }
4269
-                                }
4270
-                            }
4271
-                            $xtimings['###5'] = microtime(true)-$xstart;
4272
-                            $save_post = array();
4273
-                            $save_post['post_title'] = $post_title;
4274
-                            if (!empty($post_date)) {
4275
-                                $save_post['post_date'] = $post_date;
4276
-                                $save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4277
-                            }
4278
-                            $save_post['post_content'] = $post_content;
4279
-                            $save_post['post_type'] = $post_type;
4280
-                            $save_post['post_author'] = $post_author;
4281
-                            $save_post['post_status'] = $post_status;
4282
-                            $save_post['post_category'] = $post_category;
4283
-                            $save_post['post_tags'] = $post_tags;
4284
-
4285
-                            $saved_post_id = NULL;
4286
-                            if ( $import_choice == 'update' ) {
4287
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4264
+											if ($category_name == $default_category) {
4265
+												$default_category_id = intval($term_category->term_id);
4266
+											}
4267
+										}
4268
+									}
4269
+								}
4270
+							}
4271
+							$xtimings['###5'] = microtime(true)-$xstart;
4272
+							$save_post = array();
4273
+							$save_post['post_title'] = $post_title;
4274
+							if (!empty($post_date)) {
4275
+								$save_post['post_date'] = $post_date;
4276
+								$save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4277
+							}
4278
+							$save_post['post_content'] = $post_content;
4279
+							$save_post['post_type'] = $post_type;
4280
+							$save_post['post_author'] = $post_author;
4281
+							$save_post['post_status'] = $post_status;
4282
+							$save_post['post_category'] = $post_category;
4283
+							$save_post['post_tags'] = $post_tags;
4284
+
4285
+							$saved_post_id = NULL;
4286
+							if ( $import_choice == 'update' ) {
4287
+								$gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4288 4288
                                 
4289
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4290
-                                    $save_post['ID'] = $post_id;
4289
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4290
+									$save_post['ID'] = $post_id;
4291 4291
                                     
4292
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4293
-                                        if ( is_wp_error( $saved_post_id ) ) {
4294
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4295
-                                            $saved_post_id = 0;
4296
-                                        } else {
4297
-                                            $saved_post_id = $post_id;
4298
-                                            $updated++;
4299
-                                        }
4300
-                                    }
4301
-                                } else {
4302
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4303
-                                        if ( is_wp_error( $saved_post_id ) ) {
4304
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4305
-                                            $saved_post_id = 0;
4306
-                                        } else {
4307
-                                            $created++;
4308
-                                        }
4309
-                                    }
4310
-                                }
4292
+									if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4293
+										if ( is_wp_error( $saved_post_id ) ) {
4294
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4295
+											$saved_post_id = 0;
4296
+										} else {
4297
+											$saved_post_id = $post_id;
4298
+											$updated++;
4299
+										}
4300
+									}
4301
+								} else {
4302
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4303
+										if ( is_wp_error( $saved_post_id ) ) {
4304
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4305
+											$saved_post_id = 0;
4306
+										} else {
4307
+											$created++;
4308
+										}
4309
+									}
4310
+								}
4311 4311
                                 
4312
-                                if ( !$saved_post_id > 0 ) {
4313
-                                    $invalid++;
4314
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4315
-                                }
4316
-                            } else if ( $import_choice == 'skip' ) {
4317
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4318
-                                    $skipped++;	
4319
-                                } else {
4320
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4321
-                                        if ( is_wp_error( $saved_post_id ) ) {
4322
-                                            $invalid++;
4312
+								if ( !$saved_post_id > 0 ) {
4313
+									$invalid++;
4314
+									geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4315
+								}
4316
+							} else if ( $import_choice == 'skip' ) {
4317
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4318
+									$skipped++;	
4319
+								} else {
4320
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4321
+										if ( is_wp_error( $saved_post_id ) ) {
4322
+											$invalid++;
4323 4323
                                             
4324
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4325
-                                            $saved_post_id = 0;
4326
-                                        } else {
4327
-                                            $created++;
4328
-                                        }
4329
-                                    } else {
4330
-                                        $invalid++;
4324
+											geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4325
+											$saved_post_id = 0;
4326
+										} else {
4327
+											$created++;
4328
+										}
4329
+									} else {
4330
+										$invalid++;
4331 4331
                                         
4332
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4333
-                                    }
4334
-                                }
4335
-                            } else {
4336
-                                $invalid++;
4332
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4333
+									}
4334
+								}
4335
+							} else {
4336
+								$invalid++;
4337 4337
                                 
4338
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4339
-                            }
4340
-                            $xtimings['###6'] = microtime(true)-$xstart;
4341
-                            if ( (int)$saved_post_id > 0 ) {
4342
-                                // WPML
4343
-                                if ($is_wpml && $original_post_id > 0 && $language != '') {
4344
-                                    $wpml_post_type = 'post_' . $post_type;
4345
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4346
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4347
-
4348
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4338
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4339
+							}
4340
+							$xtimings['###6'] = microtime(true)-$xstart;
4341
+							if ( (int)$saved_post_id > 0 ) {
4342
+								// WPML
4343
+								if ($is_wpml && $original_post_id > 0 && $language != '') {
4344
+									$wpml_post_type = 'post_' . $post_type;
4345
+									$source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4346
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4347
+
4348
+									$trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4349 4349
                                     
4350
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4351
-                                }
4352
-                                // WPML
4353
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4350
+									$sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4351
+								}
4352
+								// WPML
4353
+								$gd_post_info = geodir_get_post_info( $saved_post_id );
4354 4354
                                 
4355
-                                $gd_post['post_id'] = $saved_post_id;
4356
-                                $gd_post['ID'] = $saved_post_id;
4357
-                                $gd_post['post_tags'] = $post_tags;
4358
-                                $gd_post['post_title'] = $post_title;
4359
-                                $gd_post['post_status'] = $post_status;
4360
-                                $gd_post['submit_time'] = time();
4361
-                                $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4355
+								$gd_post['post_id'] = $saved_post_id;
4356
+								$gd_post['ID'] = $saved_post_id;
4357
+								$gd_post['post_tags'] = $post_tags;
4358
+								$gd_post['post_title'] = $post_title;
4359
+								$gd_post['post_status'] = $post_status;
4360
+								$gd_post['submit_time'] = time();
4361
+								$gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4362 4362
                                                     
4363
-                                // post location
4364
-                                $post_location_id = 0;
4365
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4366
-                                    $gd_post['post_neighbourhood'] = '';
4363
+								// post location
4364
+								$post_location_id = 0;
4365
+								if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4366
+									$gd_post['post_neighbourhood'] = '';
4367 4367
                                     
4368
-                                    $post_location_info = array(
4369
-                                                                'city' => $post_city,
4370
-                                                                'region' => $post_region,
4371
-                                                                'country' => $post_country,
4372
-                                                                'geo_lat' => $post_latitude,
4373
-                                                                'geo_lng' => $post_longitude
4374
-                                                            );
4375
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4376
-                                        $post_location_id = $location_id;
4377
-                                    }
4368
+									$post_location_info = array(
4369
+																'city' => $post_city,
4370
+																'region' => $post_region,
4371
+																'country' => $post_country,
4372
+																'geo_lat' => $post_latitude,
4373
+																'geo_lng' => $post_longitude
4374
+															);
4375
+									if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4376
+										$post_location_id = $location_id;
4377
+									}
4378 4378
                                     
4379
-                                    if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4380
-                                        $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4379
+									if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4380
+										$neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4381 4381
 
4382
-                                        $hood_data = array();
4383
-                                        $hood_data['hood_location_id'] = $post_location_id;
4384
-                                        $hood_data['hood_name'] = $post_neighbourhood;
4382
+										$hood_data = array();
4383
+										$hood_data['hood_location_id'] = $post_location_id;
4384
+										$hood_data['hood_name'] = $post_neighbourhood;
4385 4385
                                         
4386
-                                        if (!empty($neighbourhood_info)) {
4387
-                                            $hood_data['hood_id'] = $neighbourhood_info->hood_id;
4388
-                                            $hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4386
+										if (!empty($neighbourhood_info)) {
4387
+											$hood_data['hood_id'] = $neighbourhood_info->hood_id;
4388
+											$hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4389 4389
                                             
4390
-                                            if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4391
-                                                $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4392
-                                                $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4393
-                                            }
4394
-                                        }
4390
+											if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4391
+												$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4392
+												$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4393
+											}
4394
+										}
4395 4395
                                         
4396
-                                        if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4397
-                                            $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4398
-                                            $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4399
-                                        }
4396
+										if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4397
+											$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4398
+											$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4399
+										}
4400 4400
                                         
4401
-                                        $hood_data['hood_latitude'] = $post_latitude;
4402
-                                        $hood_data['hood_longitude'] = $post_longitude;
4403
-
4404
-                                        $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4405
-                                        if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4406
-                                            $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4407
-                                        }
4408
-                                    }
4409
-                                }
4410
-                                $gd_post['post_location_id'] = $post_location_id;
4401
+										$hood_data['hood_latitude'] = $post_latitude;
4402
+										$hood_data['hood_longitude'] = $post_longitude;
4403
+
4404
+										$neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4405
+										if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4406
+											$gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4407
+										}
4408
+									}
4409
+								}
4410
+								$gd_post['post_location_id'] = $post_location_id;
4411 4411
                                 
4412
-                                // post package info
4413
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4414
-                                if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4415
-                                    $package_id = $gd_post_info->package_id;
4416
-                                }
4412
+								// post package info
4413
+								$package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4414
+								if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4415
+									$package_id = $gd_post_info->package_id;
4416
+								}
4417 4417
                                 
4418
-                                $package_info = array();
4419
-                                if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4420
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4418
+								$package_info = array();
4419
+								if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4420
+									$package_info = (array)geodir_get_package_info_by_id($package_id);
4421 4421
                                     
4422
-                                    if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4423
-                                        $package_info = array();
4424
-                                    }
4425
-                                }
4422
+									if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4423
+										$package_info = array();
4424
+									}
4425
+								}
4426 4426
                                 
4427
-                                if (empty($package_info)) {
4428
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4429
-                                }
4427
+								if (empty($package_info)) {
4428
+									$package_info = (array)geodir_post_package_info( array(), '', $post_type );
4429
+								}
4430 4430
                                  
4431
-                                if (!empty($package_info))	 {
4432
-                                    $package_id = $package_info['pid'];
4431
+								if (!empty($package_info))	 {
4432
+									$package_id = $package_info['pid'];
4433 4433
                                     
4434
-                                    if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4435
-                                        $gd_post['expire_date'] = $expire_date;
4436
-                                    } else {
4437
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4438
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4439
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4440
-                                        } else {
4441
-                                            $gd_post['expire_date'] = 'Never';
4442
-                                        }
4443
-                                    }
4434
+									if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4435
+										$gd_post['expire_date'] = $expire_date;
4436
+									} else {
4437
+										if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4438
+											$gd_post['alive_days'] = (int)$package_info['days'];
4439
+											$gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4440
+										} else {
4441
+											$gd_post['expire_date'] = 'Never';
4442
+										}
4443
+									}
4444 4444
                                     
4445
-                                    $gd_post['package_id'] = $package_id;
4446
-                                }
4445
+									$gd_post['package_id'] = $package_id;
4446
+								}
4447 4447
 
4448
-                                $table = $plugin_prefix . $post_type . '_detail';
4448
+								$table = $plugin_prefix . $post_type . '_detail';
4449 4449
                                 
4450
-                                if ($post_type == 'gd_event') {
4451
-                                    $gd_post = geodir_imex_process_event_data($gd_post);
4452
-                                }
4450
+								if ($post_type == 'gd_event') {
4451
+									$gd_post = geodir_imex_process_event_data($gd_post);
4452
+								}
4453 4453
                                 
4454
-                                if (isset($gd_post['post_id'])) {
4455
-                                    unset($gd_post['post_id']);
4456
-                                }
4454
+								if (isset($gd_post['post_id'])) {
4455
+									unset($gd_post['post_id']);
4456
+								}
4457 4457
 
4458
-                                // Export franchise fields
4459
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4460
-                                if ($is_franchise_active) {
4461
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
4462
-                                        $gd_franchise_lock = array();
4458
+								// Export franchise fields
4459
+								$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4460
+								if ($is_franchise_active) {
4461
+									if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
4462
+										$gd_franchise_lock = array();
4463 4463
                                         
4464
-                                        if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4465
-                                            $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4466
-                                            $gd_franchise_lock = trim( $gd_franchise_lock );
4467
-                                            $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4468
-                                        }
4464
+										if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4465
+											$gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4466
+											$gd_franchise_lock = trim( $gd_franchise_lock );
4467
+											$gd_franchise_lock = explode( ",", $gd_franchise_lock );
4468
+										}
4469 4469
                                         
4470
-                                        update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4471
-                                        update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4472
-                                    } else {
4473
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4474
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4475
-                                        }
4476
-                                    }
4477
-                                }
4470
+										update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4471
+										update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4472
+									} else {
4473
+										if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4474
+											geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4475
+										}
4476
+									}
4477
+								}
4478 4478
                                 
4479
-                                if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4480
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4481
-                                    if ($default_category_id) {
4482
-                                        $save_post['post_default_category'] = $default_category_id;
4483
-                                        $gd_post['default_category'] = $default_category_id;
4484
-                                    }
4485
-                                    $gd_post[$cat_taxonomy] = $save_post['post_category'];
4486
-                                }
4487
-                                $xtimings['###7'] = microtime(true)-$xstart;
4488
-                                // Save post info
4489
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4490
-                                $xtimings['###8'] = microtime(true)-$xstart;
4491
-                                // post taxonomies
4492
-                                if ( !empty( $save_post['post_category'] ) ) {
4493
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4479
+								if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4480
+									$save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4481
+									if ($default_category_id) {
4482
+										$save_post['post_default_category'] = $default_category_id;
4483
+										$gd_post['default_category'] = $default_category_id;
4484
+									}
4485
+									$gd_post[$cat_taxonomy] = $save_post['post_category'];
4486
+								}
4487
+								$xtimings['###7'] = microtime(true)-$xstart;
4488
+								// Save post info
4489
+								geodir_save_post_info( $saved_post_id, $gd_post );
4490
+								$xtimings['###8'] = microtime(true)-$xstart;
4491
+								// post taxonomies
4492
+								if ( !empty( $save_post['post_category'] ) ) {
4493
+									wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4494 4494
                                     
4495
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4496
-                                    if ($default_category_id) {
4497
-                                        $post_default_category = $default_category_id;
4498
-                                    }
4499
-                                    $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4500
-                                    $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4501
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4495
+									$post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4496
+									if ($default_category_id) {
4497
+										$post_default_category = $default_category_id;
4498
+									}
4499
+									$post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4500
+									$save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4501
+									$post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4502 4502
                                     
4503
-                                    if ($post_category_str != '' && $post_default_category) {
4504
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4505
-                                    }
4503
+									if ($post_category_str != '' && $post_default_category) {
4504
+										$post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4505
+									}
4506 4506
                                     
4507
-                                    $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4507
+									$post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4508 4508
                                     
4509
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4510
-                                }
4511
-                                $xtimings['###8.1'] = microtime(true)-$xstart;
4512
-                                if ( !empty( $save_post['post_tags'] ) ) {
4513
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4514
-                                }
4515
-                                $xtimings['###9'] = microtime(true)-$xstart;
4516
-                                // Post images
4517
-                                if ( !empty( $post_images ) ) {
4518
-                                    $post_images = array_unique($post_images);
4509
+									geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4510
+								}
4511
+								$xtimings['###8.1'] = microtime(true)-$xstart;
4512
+								if ( !empty( $save_post['post_tags'] ) ) {
4513
+									wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4514
+								}
4515
+								$xtimings['###9'] = microtime(true)-$xstart;
4516
+								// Post images
4517
+								if ( !empty( $post_images ) ) {
4518
+									$post_images = array_unique($post_images);
4519 4519
                                     
4520
-                                    $old_post_images_arr = array();
4521
-                                    $saved_post_images_arr = array();
4520
+									$old_post_images_arr = array();
4521
+									$saved_post_images_arr = array();
4522 4522
                                     
4523
-                                    $order = 1;
4523
+									$order = 1;
4524 4524
                                     
4525
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4526
-                                    $xtimings['###9.1'] = microtime(true)-$xstart;
4527
-                                    if (!empty($old_post_images)) {
4528
-                                        foreach( $old_post_images as $old_post_image ) {
4529
-                                            if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4530
-                                                $old_post_images_arr[] = $old_post_image->file;
4531
-                                            }
4532
-                                        }
4533
-                                    }
4525
+									$old_post_images = geodir_get_images( $saved_post_id );
4526
+									$xtimings['###9.1'] = microtime(true)-$xstart;
4527
+									if (!empty($old_post_images)) {
4528
+										foreach( $old_post_images as $old_post_image ) {
4529
+											if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4530
+												$old_post_images_arr[] = $old_post_image->file;
4531
+											}
4532
+										}
4533
+									}
4534 4534
 
4535
-                                    foreach ( $post_images as $post_image ) {
4536
-                                        $image_name = basename( $post_image );
4537
-                                        $saved_post_images_arr[] = $image_name;
4535
+									foreach ( $post_images as $post_image ) {
4536
+										$image_name = basename( $post_image );
4537
+										$saved_post_images_arr[] = $image_name;
4538 4538
                                         
4539
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4540
-                                            continue; // Skip if image already exists.
4541
-                                        }
4539
+										if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4540
+											continue; // Skip if image already exists.
4541
+										}
4542 4542
                                         
4543
-                                        $image_name_parts = explode( '.', $image_name );
4544
-                                        array_pop( $image_name_parts );
4545
-                                        $proper_image_name = implode( '.', $image_name_parts );
4546
-                                        $xtimings['###9.2'] = microtime(true)-$xstart;
4547
-                                        $arr_file_type = wp_check_filetype( $image_name );
4548
-                                        $xtimings['###9.3'] = microtime(true)-$xstart;
4549
-                                        if ( !empty( $arr_file_type ) ) {
4550
-                                            $uploaded_file_type = $arr_file_type['type'];
4543
+										$image_name_parts = explode( '.', $image_name );
4544
+										array_pop( $image_name_parts );
4545
+										$proper_image_name = implode( '.', $image_name_parts );
4546
+										$xtimings['###9.2'] = microtime(true)-$xstart;
4547
+										$arr_file_type = wp_check_filetype( $image_name );
4548
+										$xtimings['###9.3'] = microtime(true)-$xstart;
4549
+										if ( !empty( $arr_file_type ) ) {
4550
+											$uploaded_file_type = $arr_file_type['type'];
4551 4551
                                             
4552
-                                            $attachment = array();
4553
-                                            $attachment['post_id'] = $saved_post_id;
4554
-                                            $attachment['title'] = $proper_image_name;
4555
-                                            $attachment['content'] = '';
4556
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4557
-                                            $attachment['mime_type'] = $uploaded_file_type;
4558
-                                            $attachment['menu_order'] = $order;
4559
-                                            $attachment['is_featured'] = 0;
4560
-
4561
-                                            $attachment_set = '';
4562
-                                            foreach ( $attachment as $key => $val ) {
4563
-                                                if ( $val != '' ) {
4564
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4565
-                                                }
4566
-                                            }
4567
-                                            $attachment_set = trim( $attachment_set, ", " );
4552
+											$attachment = array();
4553
+											$attachment['post_id'] = $saved_post_id;
4554
+											$attachment['title'] = $proper_image_name;
4555
+											$attachment['content'] = '';
4556
+											$attachment['file'] = $uploads_subdir . '/' . $image_name;
4557
+											$attachment['mime_type'] = $uploaded_file_type;
4558
+											$attachment['menu_order'] = $order;
4559
+											$attachment['is_featured'] = 0;
4560
+
4561
+											$attachment_set = '';
4562
+											foreach ( $attachment as $key => $val ) {
4563
+												if ( $val != '' ) {
4564
+													$attachment_set .= $key . " = '" . $val . "', ";
4565
+												}
4566
+											}
4567
+											$attachment_set = trim( $attachment_set, ", " );
4568 4568
                                                                                         
4569
-                                            // Add new attachment
4570
-                                            $xtimings['###9.4'] = microtime(true)-$xstart;
4571
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4572
-                                            $xtimings['###9.5'] = microtime(true)-$xstart;
4573
-                                            $order++;
4574
-                                        }
4575
-                                    }
4576
-
4577
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4578
-                                    // Remove previous attachment
4579
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4580
-                                    $xtimings['###9.6'] = microtime(true)-$xstart;
4581
-                                    if ( !empty( $saved_post_images_arr ) ) {
4582
-                                        geodir_set_wp_featured_image($saved_post_id);
4583
-                                        $xtimings['###9.7'] = microtime(true)-$xstart;
4584
-                                        /*
4569
+											// Add new attachment
4570
+											$xtimings['###9.4'] = microtime(true)-$xstart;
4571
+											$wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4572
+											$xtimings['###9.5'] = microtime(true)-$xstart;
4573
+											$order++;
4574
+										}
4575
+									}
4576
+
4577
+									$saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4578
+									// Remove previous attachment
4579
+									$wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4580
+									$xtimings['###9.6'] = microtime(true)-$xstart;
4581
+									if ( !empty( $saved_post_images_arr ) ) {
4582
+										geodir_set_wp_featured_image($saved_post_id);
4583
+										$xtimings['###9.7'] = microtime(true)-$xstart;
4584
+										/*
4585 4585
                                         $menu_order = 1;
4586 4586
                                         
4587 4587
                                         foreach ( $saved_post_images_arr as $img_name ) {
@@ -4594,288 +4594,288 @@  discard block
 block discarded – undo
4594 4594
                                             }
4595 4595
                                             $menu_order++;
4596 4596
                                         }*/
4597
-                                    }
4597
+									}
4598 4598
                                     
4599
-                                    if ( $order > 1 ) {
4600
-                                        $images++;
4601
-                                    }
4602
-                                }
4603
-                                $xtimings['###10'] = microtime(true)-$xstart;
4604
-                                /** This action is documented in geodirectory-functions/post-functions.php */
4605
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4606
-                                $xtimings['###11'] = microtime(true)-$xstart;
4607
-                                if (isset($is_featured)) {
4608
-                                    geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4609
-                                }
4610
-                                if (isset($gd_post['alive_days'])) {
4611
-                                    geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']);
4612
-                                }
4613
-                                if (isset($gd_post['expire_date'])) {
4614
-                                    geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4615
-                                }
4616
-                                $xtimings['###12'] = microtime(true)-$xstart;
4617
-                            }
4599
+									if ( $order > 1 ) {
4600
+										$images++;
4601
+									}
4602
+								}
4603
+								$xtimings['###10'] = microtime(true)-$xstart;
4604
+								/** This action is documented in geodirectory-functions/post-functions.php */
4605
+								do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4606
+								$xtimings['###11'] = microtime(true)-$xstart;
4607
+								if (isset($is_featured)) {
4608
+									geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4609
+								}
4610
+								if (isset($gd_post['alive_days'])) {
4611
+									geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']);
4612
+								}
4613
+								if (isset($gd_post['expire_date'])) {
4614
+									geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4615
+								}
4616
+								$xtimings['###12'] = microtime(true)-$xstart;
4617
+							}
4618 4618
                             
4619
-                            // WPML
4620
-                            if ($is_wpml && $language != '') {
4621
-                                $sitepress->switch_lang($active_lang, true);
4622
-                            }
4623
-                            // WPML
4624
-                        }
4625
-                    }
4626
-                }
4619
+							// WPML
4620
+							if ($is_wpml && $language != '') {
4621
+								$sitepress->switch_lang($active_lang, true);
4622
+							}
4623
+							// WPML
4624
+						}
4625
+					}
4626
+				}
4627 4627
 
4628
-                //undo some stuff to make the import quicker
4629
-                wp_defer_term_counting( false );
4630
-                wp_defer_comment_counting( false );
4631
-                $wpdb->query( 'COMMIT;' );
4632
-                $wpdb->query( 'SET autocommit = 1;' );
4633
-                $xtimings['###13'] = microtime(true)-$xstart;
4634
-                $json = array();
4635
-                $json['processed'] = $processed_actual;
4636
-                $json['created'] = $created;
4637
-                $json['updated'] = $updated;
4638
-                $json['skipped'] = $skipped;
4639
-                $json['invalid'] = $invalid;
4640
-                $json['invalid_addr'] = $invalid_addr;
4641
-                $json['images'] = $images;
4642
-                $json['timing'] = microtime(true)-$xstart;
4643
-                $json['timings'] = $xtimings;
4628
+				//undo some stuff to make the import quicker
4629
+				wp_defer_term_counting( false );
4630
+				wp_defer_comment_counting( false );
4631
+				$wpdb->query( 'COMMIT;' );
4632
+				$wpdb->query( 'SET autocommit = 1;' );
4633
+				$xtimings['###13'] = microtime(true)-$xstart;
4634
+				$json = array();
4635
+				$json['processed'] = $processed_actual;
4636
+				$json['created'] = $created;
4637
+				$json['updated'] = $updated;
4638
+				$json['skipped'] = $skipped;
4639
+				$json['invalid'] = $invalid;
4640
+				$json['invalid_addr'] = $invalid_addr;
4641
+				$json['images'] = $images;
4642
+				$json['timing'] = microtime(true)-$xstart;
4643
+				$json['timings'] = $xtimings;
4644 4644
                 
4645 4645
 
4646
-                wp_send_json( $json );
4647
-                exit;
4648
-            } else if ( $task == 'import_loc' ) {
4649
-                global $gd_post_types;
4650
-                $gd_post_types = $post_types;
4646
+				wp_send_json( $json );
4647
+				exit;
4648
+			} else if ( $task == 'import_loc' ) {
4649
+				global $gd_post_types;
4650
+				$gd_post_types = $post_types;
4651 4651
                 
4652
-                if (!empty($file)) {
4653
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4652
+				if (!empty($file)) {
4653
+					$columns = isset($file[0]) ? $file[0] : NULL;
4654 4654
                     
4655
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4656
-                        $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4657
-                        wp_send_json( $json );
4658
-                    }
4655
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4656
+						$json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4657
+						wp_send_json( $json );
4658
+					}
4659 4659
                     
4660
-                    $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4661
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4662
-                    for ($i = 1; $i <= $limit; $i++) {
4663
-                        $index = $processed + $i;
4660
+					$gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4661
+					$gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4662
+					for ($i = 1; $i <= $limit; $i++) {
4663
+						$index = $processed + $i;
4664 4664
                         
4665
-                        if (isset($file[$index])) {
4666
-                            $row = $file[$index];
4667
-                            $row = array_map( 'trim', $row );
4668
-                            $data = array();
4665
+						if (isset($file[$index])) {
4666
+							$row = $file[$index];
4667
+							$row = array_map( 'trim', $row );
4668
+							$data = array();
4669 4669
                             
4670
-                            foreach ($columns as $c => $column ) {
4671
-                                if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4672
-                                    $data[$column] = $row[$c];
4673
-                                }
4674
-                            }
4670
+							foreach ($columns as $c => $column ) {
4671
+								if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4672
+									$data[$column] = $row[$c];
4673
+								}
4674
+							}
4675 4675
 
4676
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4677
-                                $invalid++;
4678
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4679
-                                continue;
4680
-                            }
4676
+							if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4677
+								$invalid++;
4678
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4679
+								continue;
4680
+							}
4681 4681
                             
4682
-                            $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4682
+							$data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4683 4683
                             
4684
-                            if ( $import_choice == 'update' ) {
4685
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4686
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4687
-                                        $updated++;
4688
-                                    } else {
4689
-                                        $invalid++;
4690
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4691
-                                    }
4692
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4693
-                                    $data['location_id'] = (int)$location->location_id;
4684
+							if ( $import_choice == 'update' ) {
4685
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4686
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4687
+										$updated++;
4688
+									} else {
4689
+										$invalid++;
4690
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4691
+									}
4692
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4693
+									$data['location_id'] = (int)$location->location_id;
4694 4694
                                     
4695
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4696
-                                        $data['location_id'] = (int)$location->location_id;
4697
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4698
-                                        $data['location_id'] = (int)$location->location_id;
4699
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4700
-                                        $data['location_id'] = (int)$location->location_id;
4701
-                                    }
4695
+									if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4696
+										$data['location_id'] = (int)$location->location_id;
4697
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4698
+										$data['location_id'] = (int)$location->location_id;
4699
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4700
+										$data['location_id'] = (int)$location->location_id;
4701
+									}
4702 4702
                                     
4703
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4704
-                                        $updated++;
4705
-                                    } else {
4706
-                                        $invalid++;
4707
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4708
-                                    }
4709
-                                } else {
4710
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4711
-                                        $created++;
4712
-                                    } else {
4713
-                                        $invalid++;
4714
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4715
-                                    }
4716
-                                }
4717
-                            } elseif ( $import_choice == 'skip' ) {
4718
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4719
-                                    $skipped++;
4720
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4721
-                                    $skipped++;
4722
-                                } else {
4723
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4724
-                                        $created++;
4725
-                                    } else {
4726
-                                        $invalid++;
4727
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4728
-                                    }
4729
-                                }
4730
-                            } else {
4731
-                                $invalid++;
4732
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4733
-                            }
4734
-                        }
4735
-                    }
4736
-                }
4703
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4704
+										$updated++;
4705
+									} else {
4706
+										$invalid++;
4707
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4708
+									}
4709
+								} else {
4710
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4711
+										$created++;
4712
+									} else {
4713
+										$invalid++;
4714
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4715
+									}
4716
+								}
4717
+							} elseif ( $import_choice == 'skip' ) {
4718
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4719
+									$skipped++;
4720
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4721
+									$skipped++;
4722
+								} else {
4723
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4724
+										$created++;
4725
+									} else {
4726
+										$invalid++;
4727
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4728
+									}
4729
+								}
4730
+							} else {
4731
+								$invalid++;
4732
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4733
+							}
4734
+						}
4735
+					}
4736
+				}
4737 4737
                 
4738
-                $json = array();
4739
-                $json['processed'] = $limit;
4740
-                $json['created'] = $created;
4741
-                $json['updated'] = $updated;
4742
-                $json['skipped'] = $skipped;
4743
-                $json['invalid'] = $invalid;
4744
-                $json['images'] = $images;
4738
+				$json = array();
4739
+				$json['processed'] = $limit;
4740
+				$json['created'] = $created;
4741
+				$json['updated'] = $updated;
4742
+				$json['skipped'] = $skipped;
4743
+				$json['invalid'] = $invalid;
4744
+				$json['images'] = $images;
4745 4745
                 
4746
-                wp_send_json( $json );
4747
-            } else if ( $task == 'import_hood' ) {               
4748
-                if (!empty($file)) {
4749
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4746
+				wp_send_json( $json );
4747
+			} else if ( $task == 'import_hood' ) {               
4748
+				if (!empty($file)) {
4749
+					$columns = isset($file[0]) ? $file[0] : NULL;
4750 4750
                     
4751
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4752
-                        $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4753
-                        wp_send_json( $json );
4754
-                    }
4751
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4752
+						$json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4753
+						wp_send_json( $json );
4754
+					}
4755 4755
                     
4756
-                    $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4757
-                    $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4758
-                    for ($i = 1; $i <= $limit; $i++) {
4759
-                        $index = $processed + $i;
4756
+					$gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4757
+					$gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4758
+					for ($i = 1; $i <= $limit; $i++) {
4759
+						$index = $processed + $i;
4760 4760
                         
4761
-                        if (isset($file[$index])) {
4762
-                            $row = $file[$index];
4763
-                            $row = array_map( 'trim', $row );
4764
-                            $data = array();
4761
+						if (isset($file[$index])) {
4762
+							$row = $file[$index];
4763
+							$row = array_map( 'trim', $row );
4764
+							$data = array();
4765 4765
                             
4766
-                            foreach ($columns as $c => $column) {
4767
-                                if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
4768
-                                    $data[$column] = sanitize_text_field($row[$c]);
4769
-                                }
4770
-                            }
4766
+							foreach ($columns as $c => $column) {
4767
+								if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
4768
+									$data[$column] = sanitize_text_field($row[$c]);
4769
+								}
4770
+							}
4771 4771
 
4772
-                            if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4773
-                                $invalid++;
4774
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4775
-                                continue;
4776
-                            }
4772
+							if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4773
+								$invalid++;
4774
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4775
+								continue;
4776
+							}
4777 4777
                             
4778
-                            $location_info = array();
4779
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4780
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4781
-                            } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4782
-                                $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4783
-                            }
4778
+							$location_info = array();
4779
+							if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4780
+								$location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4781
+							} else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4782
+								$location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4783
+							}
4784 4784
 
4785
-                            if (empty($location_info)) {
4786
-                                $invalid++;
4787
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4788
-                                continue;
4789
-                            }
4785
+							if (empty($location_info)) {
4786
+								$invalid++;
4787
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4788
+								continue;
4789
+							}
4790 4790
                             
4791
-                            $location_id = $location_info->location_id;
4791
+							$location_id = $location_info->location_id;
4792 4792
 
4793
-                            $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
4793
+							$data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
4794 4794
                             
4795
-                            $hood_data = array();
4796
-                            $hood_data['hood_name'] = $data['neighbourhood_name'];
4797
-                            $hood_data['hood_slug'] = $data['neighbourhood_slug'];
4798
-                            $hood_data['hood_latitude'] = $data['latitude'];
4799
-                            $hood_data['hood_longitude'] = $data['longitude'];
4800
-                            $hood_data['hood_location_id'] = $location_id;
4795
+							$hood_data = array();
4796
+							$hood_data['hood_name'] = $data['neighbourhood_name'];
4797
+							$hood_data['hood_slug'] = $data['neighbourhood_slug'];
4798
+							$hood_data['hood_latitude'] = $data['latitude'];
4799
+							$hood_data['hood_longitude'] = $data['longitude'];
4800
+							$hood_data['hood_location_id'] = $location_id;
4801 4801
                                     
4802
-                            if ( $import_choice == 'update' ) {
4803
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4804
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4802
+							if ( $import_choice == 'update' ) {
4803
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4804
+									$hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4805 4805
                                     
4806
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4807
-                                        $updated++;
4808
-                                    } else {
4809
-                                        $invalid++;
4810
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4811
-                                    }
4812
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4813
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4806
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4807
+										$updated++;
4808
+									} else {
4809
+										$invalid++;
4810
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4811
+									}
4812
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4813
+									$hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4814 4814
                                     
4815
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4816
-                                        $updated++;
4817
-                                    } else {
4818
-                                        $invalid++;
4819
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4820
-                                    }
4821
-                                } else {
4822
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4823
-                                        $created++;
4824
-                                    } else {
4825
-                                        $invalid++;
4826
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4827
-                                    }
4828
-                                }
4829
-                            } elseif ( $import_choice == 'skip' ) {
4830
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4831
-                                    $skipped++;
4832
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4833
-                                    $skipped++;
4834
-                                } else {
4815
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4816
+										$updated++;
4817
+									} else {
4818
+										$invalid++;
4819
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4820
+									}
4821
+								} else {
4822
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4823
+										$created++;
4824
+									} else {
4825
+										$invalid++;
4826
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4827
+									}
4828
+								}
4829
+							} elseif ( $import_choice == 'skip' ) {
4830
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4831
+									$skipped++;
4832
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4833
+									$skipped++;
4834
+								} else {
4835 4835
                                     
4836
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4837
-                                        $created++;
4838
-                                    } else {
4839
-                                        $invalid++;
4840
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4841
-                                    }
4842
-                                }
4843
-                            } else {
4844
-                                $invalid++;
4845
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4846
-                            }
4847
-                        }
4848
-                    }
4849
-                }
4836
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4837
+										$created++;
4838
+									} else {
4839
+										$invalid++;
4840
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4841
+									}
4842
+								}
4843
+							} else {
4844
+								$invalid++;
4845
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4846
+							}
4847
+						}
4848
+					}
4849
+				}
4850 4850
                 
4851
-                $json = array();
4852
-                $json['processed'] = $limit;
4853
-                $json['created'] = $created;
4854
-                $json['updated'] = $updated;
4855
-                $json['skipped'] = $skipped;
4856
-                $json['invalid'] = $invalid;
4857
-                $json['images'] = $images;
4851
+				$json = array();
4852
+				$json['processed'] = $limit;
4853
+				$json['created'] = $created;
4854
+				$json['updated'] = $updated;
4855
+				$json['skipped'] = $skipped;
4856
+				$json['invalid'] = $invalid;
4857
+				$json['images'] = $images;
4858 4858
                 
4859
-                wp_send_json( $json );
4860
-            }
4861
-        }
4862
-        break;
4863
-        case 'import_finish':{
4864
-            /**
4865
-             * Run an action when an import finishes.
4866
-             *
4867
-             * This action can be used to fire functions after an import ends.
4868
-             *
4869
-             * @since 1.5.3
4870
-             * @package GeoDirectory
4871
-             */
4872
-            do_action('geodir_import_finished');
4873
-        }
4874
-        break;
4859
+				wp_send_json( $json );
4860
+			}
4861
+		}
4862
+		break;
4863
+		case 'import_finish':{
4864
+			/**
4865
+			 * Run an action when an import finishes.
4866
+			 *
4867
+			 * This action can be used to fire functions after an import ends.
4868
+			 *
4869
+			 * @since 1.5.3
4870
+			 * @package GeoDirectory
4871
+			 */
4872
+			do_action('geodir_import_finished');
4873
+		}
4874
+		break;
4875 4875
 
4876
-    }
4877
-    echo '0';
4878
-    gd_die();
4876
+	}
4877
+	echo '0';
4878
+	gd_die();
4879 4879
 }
4880 4880
 
4881 4881
 /**
@@ -4919,12 +4919,12 @@  discard block
 block discarded – undo
4919 4919
 		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4920 4920
 	}
4921 4921
 	
4922
-    if( !empty( $term ) ) {
4922
+	if( !empty( $term ) ) {
4923 4923
 		$result = wp_insert_term( $term, $taxonomy, $args );
4924
-        if( !is_wp_error( $result ) ) {
4925
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4926
-        }
4927
-    }
4924
+		if( !is_wp_error( $result ) ) {
4925
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4926
+		}
4927
+	}
4928 4928
 	
4929 4929
 	return false;
4930 4930
 }
@@ -4970,16 +4970,16 @@  discard block
 block discarded – undo
4970 4970
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4971 4971
 		
4972 4972
 		if( !is_wp_error( $result ) ) {
4973
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4974
-        }
4973
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4974
+		}
4975 4975
 	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4976 4976
 		$term_data['term_id'] = $term_info['term_id'];
4977 4977
 		
4978 4978
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4979 4979
 		
4980 4980
 		if( !is_wp_error( $result ) ) {
4981
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4982
-        }
4981
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4982
+		}
4983 4983
 	} else {
4984 4984
 		return geodir_imex_insert_term( $taxonomy, $term_data );
4985 4985
 	}
@@ -5001,47 +5001,47 @@  discard block
 block discarded – undo
5001 5001
  * @return int Posts count.
5002 5002
  */
5003 5003
 function geodir_get_posts_count( $post_type ) {
5004
-    global $wpdb, $plugin_prefix;
5004
+	global $wpdb, $plugin_prefix;
5005 5005
 
5006
-    if ( !post_type_exists( $post_type ) ) {
5007
-        return 0;
5008
-    }
5006
+	if ( !post_type_exists( $post_type ) ) {
5007
+		return 0;
5008
+	}
5009 5009
         
5010
-    $table = $plugin_prefix . $post_type . '_detail';
5010
+	$table = $plugin_prefix . $post_type . '_detail';
5011 5011
 
5012
-    // Skip listing with statuses trash, auto-draft etc...
5013
-    $skip_statuses = geodir_imex_export_skip_statuses();
5014
-    $where_statuses = '';
5015
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5016
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5017
-    }
5012
+	// Skip listing with statuses trash, auto-draft etc...
5013
+	$skip_statuses = geodir_imex_export_skip_statuses();
5014
+	$where_statuses = '';
5015
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5016
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5017
+	}
5018 5018
     
5019
-    /**
5020
-     * Filter the SQL where clause part to filter posts count in import/export.
5021
-     *
5022
-     * @since 1.6.4
5023
-     * @package GeoDirectory
5024
-     *
5025
-     * @param string $where SQL where clause part.
5026
-     */
5027
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5028
-
5029
-    $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
5030
-
5031
-    $posts_count = (int)$wpdb->get_var( $query );
5019
+	/**
5020
+	 * Filter the SQL where clause part to filter posts count in import/export.
5021
+	 *
5022
+	 * @since 1.6.4
5023
+	 * @package GeoDirectory
5024
+	 *
5025
+	 * @param string $where SQL where clause part.
5026
+	 */
5027
+	$where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5028
+
5029
+	$query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
5030
+
5031
+	$posts_count = (int)$wpdb->get_var( $query );
5032 5032
     
5033
-    /**
5034
-     * Modify returned post counts for the current post type.
5035
-     *
5036
-     * @since 1.4.6
5037
-     * @package GeoDirectory
5038
-     *
5039
-     * @param int $posts_count Post counts.
5040
-     * @param string $post_type Post type.
5041
-     */
5042
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5043
-
5044
-    return $posts_count;
5033
+	/**
5034
+	 * Modify returned post counts for the current post type.
5035
+	 *
5036
+	 * @since 1.4.6
5037
+	 * @package GeoDirectory
5038
+	 *
5039
+	 * @param int $posts_count Post counts.
5040
+	 * @param string $post_type Post type.
5041
+	 */
5042
+	$posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5043
+
5044
+	return $posts_count;
5045 5045
 }
5046 5046
 
5047 5047
 /**
@@ -5070,10 +5070,10 @@  discard block
 block discarded – undo
5070 5070
 	
5071 5071
 	if ( !empty( $posts ) ) {
5072 5072
 		$is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' );
5073
-        $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5074
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5075
-        $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5076
-        $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5073
+		$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5074
+		$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5075
+		$neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5076
+		$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5077 5077
 		
5078 5078
 		$csv_row = array();
5079 5079
 		$csv_row[] = 'post_id';
@@ -5105,7 +5105,7 @@  discard block
 block discarded – undo
5105 5105
 		}
5106 5106
 		$csv_row[] = 'post_status';
5107 5107
 		$csv_row[] = 'is_featured';
5108
-        // Export claim listing field
5108
+		// Export claim listing field
5109 5109
 		if ($is_claim_active) {
5110 5110
 			$csv_row[] = 'claimed';
5111 5111
 		}
@@ -5114,7 +5114,7 @@  discard block
 block discarded – undo
5114 5114
 			$csv_row[] = 'alive_days';
5115 5115
 			$csv_row[] = 'expire_date';
5116 5116
 		}
5117
-        $csv_row[] = 'post_date';
5117
+		$csv_row[] = 'post_date';
5118 5118
 		$csv_row[] = 'post_address';
5119 5119
 		$csv_row[] = 'post_city';
5120 5120
 		$csv_row[] = 'post_region';
@@ -5122,11 +5122,11 @@  discard block
 block discarded – undo
5122 5122
 		$csv_row[] = 'post_zip';
5123 5123
 		$csv_row[] = 'post_latitude';
5124 5124
 		$csv_row[] = 'post_longitude';
5125
-        if ($neighbourhood_active) {
5126
-            $csv_row[] = 'post_neighbourhood';
5127
-            $csv_row[] = 'neighbourhood_latitude';
5128
-            $csv_row[] = 'neighbourhood_longitude';
5129
-        }
5125
+		if ($neighbourhood_active) {
5126
+			$csv_row[] = 'post_neighbourhood';
5127
+			$csv_row[] = 'neighbourhood_latitude';
5128
+			$csv_row[] = 'neighbourhood_longitude';
5129
+		}
5130 5130
 		$csv_row[] = 'geodir_timing';
5131 5131
 		$csv_row[] = 'geodir_contact';
5132 5132
 		$csv_row[] = 'geodir_email';
@@ -5158,21 +5158,21 @@  discard block
 block discarded – undo
5158 5158
 			$csv_row[] = 'franchise';
5159 5159
 		}
5160 5160
         
5161
-        /**
5162
-         * Filter columns field names of gd export listings csv.
5163
-         *
5164
-         * @since 1.6.5
5165
-         * @package GeoDirectory
5166
-         *
5167
-         * @param array $csv_row Column names being exported in csv.
5168
-         * @param string $post_type The post type.
5169
-         */
5170
-        $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5161
+		/**
5162
+		 * Filter columns field names of gd export listings csv.
5163
+		 *
5164
+		 * @since 1.6.5
5165
+		 * @package GeoDirectory
5166
+		 *
5167
+		 * @param array $csv_row Column names being exported in csv.
5168
+		 * @param string $post_type The post type.
5169
+		 */
5170
+		$csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5171 5171
 		
5172 5172
 		$csv_rows[] = $csv_row;
5173 5173
 
5174 5174
 		$images_count = 5;
5175
-        $xx=0;
5175
+		$xx=0;
5176 5176
 		foreach ( $posts as $post ) {$xx++;
5177 5177
 			$post_id = $post['ID'];
5178 5178
 			
@@ -5303,15 +5303,15 @@  discard block
 block discarded – undo
5303 5303
 			}
5304 5304
 			$csv_row[] = $post_info['post_status']; // post_status
5305 5305
 			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5306
-            if ($is_claim_active) {
5307
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5308
-            }
5306
+			if ($is_claim_active) {
5307
+				$csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5308
+			}
5309 5309
 			if ($is_payment_plugin) {
5310 5310
 				$csv_row[] = (int)$post_info['package_id']; // package_id
5311 5311
 				$csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days
5312 5312
 				$csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
5313 5313
 			}
5314
-            $csv_row[] = $post_info['post_date']; // post_date
5314
+			$csv_row[] = $post_info['post_date']; // post_date
5315 5315
 			$csv_row[] = stripslashes($post_info['post_address']); // post_address
5316 5316
 			$csv_row[] = stripslashes($post_info['post_city']); // post_city
5317 5317
 			$csv_row[] = stripslashes($post_info['post_region']); // post_region
@@ -5319,21 +5319,21 @@  discard block
 block discarded – undo
5319 5319
 			$csv_row[] = stripslashes($post_info['post_zip']); // post_zip
5320 5320
 			$csv_row[] = $post_info['post_latitude']; // post_latitude
5321 5321
 			$csv_row[] = $post_info['post_longitude']; // post_longitude
5322
-            if ($neighbourhood_active) {
5323
-                $post_neighbourhood = '';
5324
-                $neighbourhood_latitude = '';
5325
-                $neighbourhood_longitude = '';
5326
-                if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5327
-                    if (!empty($hood_info)) {
5328
-                        $post_neighbourhood = $hood_info->hood_name;
5329
-                        $neighbourhood_latitude = $hood_info->hood_latitude;
5330
-                        $neighbourhood_longitude = $hood_info->hood_longitude;
5331
-                    }
5332
-                }
5333
-                $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood
5334
-                $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5335
-                $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5336
-            }
5322
+			if ($neighbourhood_active) {
5323
+				$post_neighbourhood = '';
5324
+				$neighbourhood_latitude = '';
5325
+				$neighbourhood_longitude = '';
5326
+				if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5327
+					if (!empty($hood_info)) {
5328
+						$post_neighbourhood = $hood_info->hood_name;
5329
+						$neighbourhood_latitude = $hood_info->hood_latitude;
5330
+						$neighbourhood_longitude = $hood_info->hood_longitude;
5331
+					}
5332
+				}
5333
+				$csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood
5334
+				$csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5335
+				$csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5336
+			}
5337 5337
 			$csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing
5338 5338
 			$csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact
5339 5339
 			$csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email
@@ -5373,16 +5373,16 @@  discard block
 block discarded – undo
5373 5373
 				$csv_row[] = (int)$franchise; // franchise id
5374 5374
 			}
5375 5375
             
5376
-            /**
5377
-             * Filter columns values of gd export listings csv file
5378
-             *
5379
-             * @since 1.6.5
5380
-             * @package GeoDirectory
5381
-             *
5382
-             * @param array $csv_row Field values being exported in csv.
5383
-             * @param array $post_info The post info.
5384
-             */
5385
-            $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5376
+			/**
5377
+			 * Filter columns values of gd export listings csv file
5378
+			 *
5379
+			 * @since 1.6.5
5380
+			 * @package GeoDirectory
5381
+			 *
5382
+			 * @param array $csv_row Field values being exported in csv.
5383
+			 * @param array $post_info The post info.
5384
+			 */
5385
+			$csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5386 5386
 			
5387 5387
 			for ( $c = 0; $c < $images_count; $c++ ) {
5388 5388
 				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
@@ -5415,64 +5415,64 @@  discard block
 block discarded – undo
5415 5415
  * @return array Array of posts data.
5416 5416
  */
5417 5417
 function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5418
-    global $wpdb, $plugin_prefix;
5418
+	global $wpdb, $plugin_prefix;
5419 5419
 
5420
-    if ( ! post_type_exists( $post_type ) )
5421
-        return new stdClass;
5420
+	if ( ! post_type_exists( $post_type ) )
5421
+		return new stdClass;
5422 5422
         
5423
-    $table = $plugin_prefix . $post_type . '_detail';
5423
+	$table = $plugin_prefix . $post_type . '_detail';
5424 5424
 
5425
-    $limit = '';
5426
-    if ( $per_page > 0 && $page_no > 0 ) {
5427
-        $offset = ( $page_no - 1 ) * $per_page;
5425
+	$limit = '';
5426
+	if ( $per_page > 0 && $page_no > 0 ) {
5427
+		$offset = ( $page_no - 1 ) * $per_page;
5428 5428
         
5429
-        if ( $offset > 0 ) {
5430
-            $limit = " LIMIT " . $offset . "," . $per_page;
5431
-        } else {
5432
-            $limit = " LIMIT " . $per_page;
5433
-        }
5434
-    }
5429
+		if ( $offset > 0 ) {
5430
+			$limit = " LIMIT " . $offset . "," . $per_page;
5431
+		} else {
5432
+			$limit = " LIMIT " . $per_page;
5433
+		}
5434
+	}
5435 5435
 
5436
-    // Skip listing with statuses trash, auto-draft etc...
5437
-    $skip_statuses = geodir_imex_export_skip_statuses();
5438
-    $where_statuses = '';
5439
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5440
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5441
-    }
5436
+	// Skip listing with statuses trash, auto-draft etc...
5437
+	$skip_statuses = geodir_imex_export_skip_statuses();
5438
+	$where_statuses = '';
5439
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5440
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5441
+	}
5442 5442
     
5443
-    /**
5444
-     * Filter the SQL where clause part to filter posts in import/export.
5445
-     *
5446
-     * @since 1.6.4
5447
-     * @package GeoDirectory
5448
-     *
5449
-     * @param string $where SQL where clause part.
5450
-     */
5451
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5452
-
5453
-    $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5454
-    /**
5455
-     * Modify returned posts SQL query for the current post type.
5456
-     *
5457
-     * @since 1.4.6
5458
-     * @package GeoDirectory
5459
-     *
5460
-     * @param int $query The SQL query.
5461
-     * @param string $post_type Post type.
5462
-     */
5463
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5464
-    $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A );
5465
-
5466
-    /**
5467
-     * Modify returned post results for the current post type.
5468
-     *
5469
-     * @since 1.4.6
5470
-     * @package GeoDirectory
5471
-     *
5472
-     * @param object $results An object containing all post ids.
5473
-     * @param string $post_type Post type.
5474
-     */
5475
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5443
+	/**
5444
+	 * Filter the SQL where clause part to filter posts in import/export.
5445
+	 *
5446
+	 * @since 1.6.4
5447
+	 * @package GeoDirectory
5448
+	 *
5449
+	 * @param string $where SQL where clause part.
5450
+	 */
5451
+	$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5452
+
5453
+	$query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5454
+	/**
5455
+	 * Modify returned posts SQL query for the current post type.
5456
+	 *
5457
+	 * @since 1.4.6
5458
+	 * @package GeoDirectory
5459
+	 *
5460
+	 * @param int $query The SQL query.
5461
+	 * @param string $post_type Post type.
5462
+	 */
5463
+	$query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5464
+	$results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A );
5465
+
5466
+	/**
5467
+	 * Modify returned post results for the current post type.
5468
+	 *
5469
+	 * @since 1.4.6
5470
+	 * @package GeoDirectory
5471
+	 *
5472
+	 * @param object $results An object containing all post ids.
5473
+	 * @param string $post_type Post type.
5474
+	 */
5475
+	return apply_filters( 'geodir_export_posts', $results, $post_type );
5476 5476
 }
5477 5477
 
5478 5478
 /**
@@ -5491,26 +5491,26 @@  discard block
 block discarded – undo
5491 5491
  * @return string The SQL query.
5492 5492
  */
5493 5493
 function geodir_imex_get_events_query( $query, $post_type ) {
5494
-    if ( $post_type == 'gd_event' ) {
5495
-        global $wpdb, $plugin_prefix;
5494
+	if ( $post_type == 'gd_event' ) {
5495
+		global $wpdb, $plugin_prefix;
5496 5496
         
5497
-        $table = $plugin_prefix . $post_type . '_detail';
5498
-        $schedule_table = EVENT_SCHEDULE;
5497
+		$table = $plugin_prefix . $post_type . '_detail';
5498
+		$schedule_table = EVENT_SCHEDULE;
5499 5499
         
5500
-        // Skip listing with statuses trash, auto-draft etc...
5501
-        $skip_statuses = geodir_imex_export_skip_statuses();
5502
-        $where_statuses = '';
5503
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5504
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5505
-        }
5500
+		// Skip listing with statuses trash, auto-draft etc...
5501
+		$skip_statuses = geodir_imex_export_skip_statuses();
5502
+		$where_statuses = '';
5503
+		if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5504
+			$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5505
+		}
5506 5506
         
5507
-        /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5508
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5507
+		/** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5508
+		$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5509 5509
 
5510
-        $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5511
-    }
5510
+		$query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5511
+	}
5512 5512
 
5513
-    return $query;
5513
+	return $query;
5514 5514
 }
5515 5515
 
5516 5516
 /**
@@ -5532,36 +5532,36 @@  discard block
 block discarded – undo
5532 5532
  * @return int Total terms count.
5533 5533
  */
5534 5534
 function geodir_get_terms_count( $post_type ) {
5535
-    $args = array( 'hide_empty' => 0 );
5535
+	$args = array( 'hide_empty' => 0 );
5536 5536
 
5537
-    remove_all_filters( 'get_terms' );
5537
+	remove_all_filters( 'get_terms' );
5538 5538
 
5539
-    $taxonomy = $post_type . 'category';
5539
+	$taxonomy = $post_type . 'category';
5540 5540
 
5541
-    // WPML
5542
-    $is_wpml = geodir_is_wpml();
5543
-    $active_lang = 'all';
5544
-    if ( $is_wpml ) {
5545
-        global $sitepress;
5546
-        $active_lang = $sitepress->get_current_language();
5541
+	// WPML
5542
+	$is_wpml = geodir_is_wpml();
5543
+	$active_lang = 'all';
5544
+	if ( $is_wpml ) {
5545
+		global $sitepress;
5546
+		$active_lang = $sitepress->get_current_language();
5547 5547
         
5548
-        if ( $active_lang != 'all' ) {
5549
-            $sitepress->switch_lang( 'all', true );
5550
-        }
5551
-    }
5552
-    // WPML
5548
+		if ( $active_lang != 'all' ) {
5549
+			$sitepress->switch_lang( 'all', true );
5550
+		}
5551
+	}
5552
+	// WPML
5553 5553
             
5554
-    $count_terms = wp_count_terms( $taxonomy, $args );
5554
+	$count_terms = wp_count_terms( $taxonomy, $args );
5555 5555
 
5556
-    // WPML
5557
-    if ( $is_wpml && $active_lang !== 'all' ) {
5558
-        global $sitepress;
5559
-        $sitepress->switch_lang( $active_lang, true );
5560
-    }
5561
-    // WPML
5562
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5556
+	// WPML
5557
+	if ( $is_wpml && $active_lang !== 'all' ) {
5558
+		global $sitepress;
5559
+		$sitepress->switch_lang( $active_lang, true );
5560
+	}
5561
+	// WPML
5562
+	$count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5563 5563
      
5564
-    return $count_terms;
5564
+	return $count_terms;
5565 5565
 }
5566 5566
 
5567 5567
 /**
@@ -5600,11 +5600,11 @@  discard block
 block discarded – undo
5600 5600
 		$csv_row[] = 'cat_posttype';
5601 5601
 		$csv_row[] = 'cat_parent';
5602 5602
 		$csv_row[] = 'cat_schema';
5603
-        // WPML
5603
+		// WPML
5604 5604
 		$is_wpml = geodir_is_wpml();
5605 5605
 		if ($is_wpml) {
5606 5606
 			$csv_row[] = 'cat_language';
5607
-            $csv_row[] = 'cat_id_original';
5607
+			$csv_row[] = 'cat_id_original';
5608 5608
 		}
5609 5609
 		// WPML
5610 5610
 		$csv_row[] = 'cat_description';
@@ -5634,10 +5634,10 @@  discard block
 block discarded – undo
5634 5634
 			$csv_row[] = $post_type;
5635 5635
 			$csv_row[] = $cat_parent;
5636 5636
 			$csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5637
-            // WPML
5637
+			// WPML
5638 5638
 			if ($is_wpml) {
5639 5639
 				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5640
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5640
+				$csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5641 5641
 			}
5642 5642
 			// WPML
5643 5643
 			$csv_row[] = $term->description;
@@ -6055,43 +6055,43 @@  discard block
 block discarded – undo
6055 6055
  * @param string $status Post status.
6056 6056
  */
6057 6057
 function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
6058
-    global $wpdb, $current_user;
6059
-
6060
-    $option_value = get_option($option);
6061
-
6062
-    if ($option_value > 0) :
6063
-        if (get_post($option_value)) :
6064
-            // Page exists
6065
-            return;
6066
-        endif;
6067
-    endif;
6068
-
6069
-    $page_found = $wpdb->get_var(
6070
-        $wpdb->prepare(
6071
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6072
-            array($slug)
6073
-        )
6074
-    );
6075
-
6076
-    if ($page_found) :
6077
-        // Page exists
6078
-        if (!$option_value) update_option($option, $page_found);
6079
-        return;
6080
-    endif;
6081
-
6082
-    $page_data = array(
6083
-        'post_status' => $status,
6084
-        'post_type' => 'page',
6085
-        'post_author' => $current_user->ID,
6086
-        'post_name' => $slug,
6087
-        'post_title' => $page_title,
6088
-        'post_content' => $page_content,
6089
-        'post_parent' => $post_parent,
6090
-        'comment_status' => 'closed'
6091
-    );
6092
-    $page_id = wp_insert_post($page_data);
6093
-
6094
-    add_option($option, $page_id);
6058
+	global $wpdb, $current_user;
6059
+
6060
+	$option_value = get_option($option);
6061
+
6062
+	if ($option_value > 0) :
6063
+		if (get_post($option_value)) :
6064
+			// Page exists
6065
+			return;
6066
+		endif;
6067
+	endif;
6068
+
6069
+	$page_found = $wpdb->get_var(
6070
+		$wpdb->prepare(
6071
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6072
+			array($slug)
6073
+		)
6074
+	);
6075
+
6076
+	if ($page_found) :
6077
+		// Page exists
6078
+		if (!$option_value) update_option($option, $page_found);
6079
+		return;
6080
+	endif;
6081
+
6082
+	$page_data = array(
6083
+		'post_status' => $status,
6084
+		'post_type' => 'page',
6085
+		'post_author' => $current_user->ID,
6086
+		'post_name' => $slug,
6087
+		'post_title' => $page_title,
6088
+		'post_content' => $page_content,
6089
+		'post_parent' => $post_parent,
6090
+		'comment_status' => 'closed'
6091
+	);
6092
+	$page_id = wp_insert_post($page_data);
6093
+
6094
+	add_option($option, $page_id);
6095 6095
 
6096 6096
 }
6097 6097
 
@@ -6122,9 +6122,9 @@  discard block
 block discarded – undo
6122 6122
  * @package GeoDirectory
6123 6123
  */
6124 6124
 function geodir_admin_upgrade_notice() {
6125
-    $class = "error";
6126
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6127
-    echo"<div class=\"$class\"> <p>$message</p></div>";
6125
+	$class = "error";
6126
+	$message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6127
+	echo"<div class=\"$class\"> <p>$message</p></div>";
6128 6128
 }
6129 6129
 
6130 6130
 /**
@@ -6137,18 +6137,18 @@  discard block
 block discarded – undo
6137 6137
  */
6138 6138
 function geodire_admin_upgrade_notice( $plugin_data, $r )
6139 6139
 {
6140
-    // readme contents
6141
-    $args = array(
6142
-        'timeout'     => 15,
6143
-        'redirection' => 5
6144
-    );
6145
-    $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6146
-    $data       = wp_remote_get( $url, $args );
6140
+	// readme contents
6141
+	$args = array(
6142
+		'timeout'     => 15,
6143
+		'redirection' => 5
6144
+	);
6145
+	$url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6146
+	$data       = wp_remote_get( $url, $args );
6147 6147
 
6148
-    if (!is_wp_error($data) && $data['response']['code'] == 200) {
6148
+	if (!is_wp_error($data) && $data['response']['code'] == 200) {
6149 6149
 
6150
-        geodir_in_plugin_update_message($data['body']);
6151
-    }
6150
+		geodir_in_plugin_update_message($data['body']);
6151
+	}
6152 6152
 }
6153 6153
 
6154 6154
 
@@ -6156,28 +6156,28 @@  discard block
 block discarded – undo
6156 6156
 * @param string $content http response body
6157 6157
 */
6158 6158
 function geodir_in_plugin_update_message($content) {
6159
-    // Output Upgrade Notice
6160
-    $matches        = null;
6161
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6162
-    $upgrade_notice = '';
6163
-    if ( preg_match( $regexp, $content, $matches ) ) {
6164
-        if(empty($matches)){return;}
6165
-
6166
-        $version = trim( $matches[1] );
6167
-        if($version && $version>GEODIRECTORY_VERSION){
6168
-
6169
-
6170
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6171
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6172
-            $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6173
-            foreach ( $notices as $index => $line ) {
6174
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6175
-            }
6176
-            $upgrade_notice .= '</div> ';
6177
-        }
6178
-        }
6179
-    }
6180
-    echo $upgrade_notice;
6159
+	// Output Upgrade Notice
6160
+	$matches        = null;
6161
+	$regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6162
+	$upgrade_notice = '';
6163
+	if ( preg_match( $regexp, $content, $matches ) ) {
6164
+		if(empty($matches)){return;}
6165
+
6166
+		$version = trim( $matches[1] );
6167
+		if($version && $version>GEODIRECTORY_VERSION){
6168
+
6169
+
6170
+		$notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6171
+		if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6172
+			$upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6173
+			foreach ( $notices as $index => $line ) {
6174
+				$upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6175
+			}
6176
+			$upgrade_notice .= '</div> ';
6177
+		}
6178
+		}
6179
+	}
6180
+	echo $upgrade_notice;
6181 6181
 }
6182 6182
 
6183 6183
 /**
@@ -6210,19 +6210,19 @@  discard block
 block discarded – undo
6210 6210
  * @param array Listing statuses to be skipped.
6211 6211
  */
6212 6212
 function geodir_imex_export_skip_statuses() {
6213
-    $statuses = array( 'trash', 'auto-draft' );
6213
+	$statuses = array( 'trash', 'auto-draft' );
6214 6214
     
6215
-    /**
6216
-     * Filter the statuses to skip during GD export listings.
6217
-     *
6218
-     * @since 1.6.0
6219
-     * @package GeoDirectory
6220
-     *
6221
-     * @param array $statuses Listing statuses to be skipped.
6222
-     */
6223
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6215
+	/**
6216
+	 * Filter the statuses to skip during GD export listings.
6217
+	 *
6218
+	 * @since 1.6.0
6219
+	 * @package GeoDirectory
6220
+	 *
6221
+	 * @param array $statuses Listing statuses to be skipped.
6222
+	 */
6223
+	$statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6224 6224
      
6225
-    return $statuses;
6225
+	return $statuses;
6226 6226
 }
6227 6227
 
6228 6228
 /**
@@ -6238,42 +6238,42 @@  discard block
 block discarded – undo
6238 6238
  * @global string $typenow Current post type.
6239 6239
  */
6240 6240
 function geodir_admin_dequeue_scripts() {
6241
-    global $typenow;
6241
+	global $typenow;
6242 6242
     
6243
-    // EDD
6244
-    if (wp_script_is('jquery-chosen', 'enqueued')) {
6245
-        wp_dequeue_script('jquery-chosen');
6246
-    }
6243
+	// EDD
6244
+	if (wp_script_is('jquery-chosen', 'enqueued')) {
6245
+		wp_dequeue_script('jquery-chosen');
6246
+	}
6247 6247
     
6248
-    // Ultimate Addons for Visual Composer
6249
-    if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6250
-        wp_dequeue_script('ultimate-vc-backend-script');
6251
-    }
6248
+	// Ultimate Addons for Visual Composer
6249
+	if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6250
+		wp_dequeue_script('ultimate-vc-backend-script');
6251
+	}
6252 6252
     
6253
-    // VC editor conflicts
6254
-    if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
6255
-        wp_dequeue_script('dfd_vc_damin_scripts');
6256
-    }
6253
+	// VC editor conflicts
6254
+	if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
6255
+		wp_dequeue_script('dfd_vc_damin_scripts');
6256
+	}
6257 6257
     
6258
-    // Ultimate chosen
6259
-    if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
6260
-        wp_dequeue_script('ultimate-chosen-script');
6261
-    }
6258
+	// Ultimate chosen
6259
+	if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
6260
+		wp_dequeue_script('ultimate-chosen-script');
6261
+	}
6262 6262
     
6263
-    // Crum composer choosen
6264
-    if (wp_script_is('crum-composer-choosen', 'enqueued')) {
6265
-        wp_dequeue_script('crum-composer-choosen');
6266
-    }
6263
+	// Crum composer choosen
6264
+	if (wp_script_is('crum-composer-choosen', 'enqueued')) {
6265
+		wp_dequeue_script('crum-composer-choosen');
6266
+	}
6267 6267
     
6268
-    // Fix conflict Fusion Builder jquery chosen with GD jquery chosen.
6269
-    if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
6270
-        wp_dequeue_script('fusion_builder_chosen_js');
6271
-    }
6268
+	// Fix conflict Fusion Builder jquery chosen with GD jquery chosen.
6269
+	if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
6270
+		wp_dequeue_script('fusion_builder_chosen_js');
6271
+	}
6272 6272
     
6273
-    // Fix conflicts timepicker & setting date value.
6274
-    if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) {
6275
-        wp_dequeue_script('acf-timepicker');
6276
-    }
6273
+	// Fix conflicts timepicker & setting date value.
6274
+	if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) {
6275
+		wp_dequeue_script('acf-timepicker');
6276
+	}
6277 6277
 }
6278 6278
 
6279 6279
 /**
@@ -6289,48 +6289,48 @@  discard block
 block discarded – undo
6289 6289
  * @return string SQL where clause part.
6290 6290
  */
6291 6291
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6292
-    global $wpdb;
6292
+	global $wpdb;
6293 6293
     
6294
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6294
+	$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6295 6295
     
6296
-    if ( !empty( $filters ) ) {
6297
-        foreach ( $filters as $field => $value ) {
6298
-            switch ($field) {
6299
-                case 'start_date':
6300
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6301
-                break;
6302
-                case 'end_date':
6303
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6304
-                break;
6305
-            }
6306
-        }
6307
-    }
6296
+	if ( !empty( $filters ) ) {
6297
+		foreach ( $filters as $field => $value ) {
6298
+			switch ($field) {
6299
+				case 'start_date':
6300
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6301
+				break;
6302
+				case 'end_date':
6303
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6304
+				break;
6305
+			}
6306
+		}
6307
+	}
6308 6308
     
6309
-    return $where;
6309
+	return $where;
6310 6310
 }
6311 6311
 add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
6312 6312
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6313 6313
 
6314 6314
 
6315 6315
 function geodir_fix_for_primer_theme(){
6316
-    if(!defined( 'PRIMER_VERSION' )){return;}
6317
-    global $pagenow;
6316
+	if(!defined( 'PRIMER_VERSION' )){return;}
6317
+	global $pagenow;
6318 6318
 
6319
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6319
+	if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6320 6320
 
6321
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6321
+		$post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6322 6322
 
6323
-        $post_types = geodir_get_posttypes();
6324
-        if ($post_type && in_array($post_type, $post_types) ) {
6325
-            global $primer_customizer_layouts;
6326
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6327
-        }
6328
-    }
6323
+		$post_types = geodir_get_posttypes();
6324
+		if ($post_type && in_array($post_type, $post_types) ) {
6325
+			global $primer_customizer_layouts;
6326
+			remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6327
+		}
6328
+	}
6329 6329
 
6330 6330
 }
6331 6331
 
6332 6332
 if(is_admin()){
6333
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6333
+	add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6334 6334
 }
6335 6335
 
6336 6336
 
@@ -6463,96 +6463,96 @@  discard block
 block discarded – undo
6463 6463
 
6464 6464
 function geodir_ga_activation_url() {
6465 6465
 
6466
-    return add_query_arg( array(
6467
-        'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6468
-        'scope'         => GEODIR_GA_SCOPE,
6469
-        'response_type' => 'code',
6470
-        'redirect_uri'  => GEODIR_GA_REDIRECT,
6471
-        'client_id'     => GEODIR_GA_CLIENTID,
6472
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6466
+	return add_query_arg( array(
6467
+		'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6468
+		'scope'         => GEODIR_GA_SCOPE,
6469
+		'response_type' => 'code',
6470
+		'redirect_uri'  => GEODIR_GA_REDIRECT,
6471
+		'client_id'     => GEODIR_GA_CLIENTID,
6472
+	), 'https://accounts.google.com/o/oauth2/auth' );
6473 6473
 
6474
-    return $url;
6474
+	return $url;
6475 6475
 }
6476 6476
 
6477 6477
 function geodir_gd_accounts(){
6478
-    $accounts = array();
6479
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6480
-    if($useAuth){
6481
-        try {
6482
-            $accounts = geodir_ga_get_analytics_accounts();
6483
-        } catch (Exception $e) {
6484
-            geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6485
-        }
6478
+	$accounts = array();
6479
+	$useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6480
+	if($useAuth){
6481
+		try {
6482
+			$accounts = geodir_ga_get_analytics_accounts();
6483
+		} catch (Exception $e) {
6484
+			geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6485
+		}
6486 6486
         
6487
-        if(is_array($accounts)){
6488
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6489
-        }elseif(get_option('geodir_ga_account_id')){
6490
-            $accounts = array();
6491
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6492
-        }
6493
-    }
6494
-    return $accounts;
6487
+		if(is_array($accounts)){
6488
+			$accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6489
+		}elseif(get_option('geodir_ga_account_id')){
6490
+			$accounts = array();
6491
+			$accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6492
+		}
6493
+	}
6494
+	return $accounts;
6495 6495
 }
6496 6496
 
6497 6497
 function geodir_ga_get_analytics_accounts()
6498 6498
 {
6499
-    global $gd_ga_errors;
6500
-    $accounts = array();
6499
+	global $gd_ga_errors;
6500
+	$accounts = array();
6501 6501
 
6502
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6502
+	if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6503 6503
 
6504 6504
 
6505
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6506
-      return get_option('geodir_gd_uids');
6507
-    }
6505
+	if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6506
+	  return get_option('geodir_gd_uids');
6507
+	}
6508 6508
 
6509
-    # Create a new Gdata call
6510
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6511
-        $stats = new GDGoogleAnalyticsStats();
6512
-    else
6513
-        return false;
6509
+	# Create a new Gdata call
6510
+	if ( trim(get_option('geodir_ga_auth_code')) != '' )
6511
+		$stats = new GDGoogleAnalyticsStats();
6512
+	else
6513
+		return false;
6514 6514
 
6515
-    # Check if Google sucessfully logged in
6516
-    if ( ! $stats->checkLogin() )
6517
-        return false;
6515
+	# Check if Google sucessfully logged in
6516
+	if ( ! $stats->checkLogin() )
6517
+		return false;
6518 6518
 
6519
-    # Get a list of accounts
6520
-    try {
6521
-        $accounts = $stats->getAllProfiles();
6522
-    } catch (Exception $e) {
6523
-        $gd_ga_errors[] = $e->getMessage();
6524
-        return false;
6525
-    }
6519
+	# Get a list of accounts
6520
+	try {
6521
+		$accounts = $stats->getAllProfiles();
6522
+	} catch (Exception $e) {
6523
+		$gd_ga_errors[] = $e->getMessage();
6524
+		return false;
6525
+	}
6526 6526
 
6527 6527
 
6528
-    natcasesort ($accounts);
6528
+	natcasesort ($accounts);
6529 6529
 
6530
-    # Return the account array if there are accounts
6531
-    if ( count($accounts) > 0 ){
6532
-        update_option('geodir_gd_uids',$accounts);
6533
-        return $accounts;
6534
-    }
6535
-    else
6536
-        return false;
6530
+	# Return the account array if there are accounts
6531
+	if ( count($accounts) > 0 ){
6532
+		update_option('geodir_gd_uids',$accounts);
6533
+		return $accounts;
6534
+	}
6535
+	else
6536
+		return false;
6537 6537
 }
6538 6538
 
6539 6539
 add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6540 6540
 function geodir_ga_deauthorize(){
6541 6541
 
6542
-    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6542
+	if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6543 6543
 
6544
-        die( 'Security check' );
6544
+		die( 'Security check' );
6545 6545
 
6546
-    } else {
6547
-        update_option('geodir_ga_auth_token','');
6548
-        update_option('geodir_ga_auth_code','');
6549
-        update_option('geodir_gd_uids','');
6546
+	} else {
6547
+		update_option('geodir_ga_auth_token','');
6548
+		update_option('geodir_ga_auth_code','');
6549
+		update_option('geodir_gd_uids','');
6550 6550
 
6551 6551
 
6552
-        echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
6553
-    }
6552
+		echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
6553
+	}
6554 6554
 
6555
-    die();
6555
+	die();
6556 6556
 }
6557 6557
 
6558 6558
 
@@ -6563,12 +6563,12 @@  discard block
 block discarded – undo
6563 6563
  * @package GeoDirectory
6564 6564
  */
6565 6565
 function geodir_post_type_setting_fun() {
6566
-    $post_type_arr = array();
6566
+	$post_type_arr = array();
6567 6567
 
6568
-    $post_types = geodir_get_posttypes('object');
6568
+	$post_types = geodir_get_posttypes('object');
6569 6569
 
6570
-    foreach ($post_types as $key => $post_types_obj) {
6571
-        $post_type_arr[$key] = $post_types_obj->labels->singular_name;
6572
-    }
6573
-    return $post_type_arr;
6570
+	foreach ($post_types as $key => $post_types_obj) {
6571
+		$post_type_arr[$key] = $post_types_obj->labels->singular_name;
6572
+	}
6573
+	return $post_type_arr;
6574 6574
 }
6575 6575
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +934 added lines, -934 removed lines patch added patch discarded remove patch
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
      * @package GeoDirectory
29 29
      */
30 30
     function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
31
+        wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32 32
         wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
34
+        wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35 35
         wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
37
+        wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38 38
         wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
40
+        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41 41
         wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
43
+        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44 44
         wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
46
+        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47 47
         wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
49
+        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50 50
         wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
52
+        wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53 53
         wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
55
+        wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56 56
         wp_enqueue_style('geodir-rtl-style');
57 57
     }
58 58
 }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71 71
         wp_enqueue_style('font-awesome');
72 72
 
73
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
73
+        wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74 74
         wp_enqueue_script('geodirectory-admin');
75 75
 
76 76
     }
@@ -89,60 +89,60 @@  discard block
 block discarded – undo
89 89
         
90 90
         wp_enqueue_script('jquery');
91 91
 
92
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
92
+        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93 93
 
94
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
94
+        wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95 95
         wp_enqueue_script('chosen');
96 96
 
97
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
97
+        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98 98
         wp_enqueue_script('geodirectory-choose-ajax');
99 99
 
100 100
         if (isset($_REQUEST['listing_type'])) {
101
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
101
+            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102 102
         }
103 103
 
104 104
         wp_enqueue_script('geodirectory-custom-fields-script');
105
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
105
+        $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions';
106 106
 
107
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
107
+        wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
108 108
 
109 109
         if (in_array($geodir_map_name, array('auto', 'google'))) {
110
-            $map_lang = "&language=" . geodir_get_map_default_language();
111
-            $map_key = "&key=" . geodir_get_map_api_key();
110
+            $map_lang = "&language=".geodir_get_map_default_language();
111
+            $map_key = "&key=".geodir_get_map_api_key();
112 112
             /** This filter is documented in geodirectory_template_tags.php */
113 113
             $map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
-            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
114
+            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
115 115
         }
116 116
         
117 117
         if ($geodir_map_name == 'osm') {
118 118
             // Leaflet OpenStreetMap
119
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
119
+            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
120 120
             wp_enqueue_style('geodirectory-leaflet-style');
121 121
                 
122
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
122
+            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
123 123
             wp_enqueue_script('geodirectory-leaflet-script');
124 124
             
125
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
125
+            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
126 126
             wp_enqueue_script('geodirectory-leaflet-geo-script');
127 127
         }
128
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
128
+        wp_enqueue_script('jquery-ui-autocomplete');
129 129
         
130
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
130
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
131 131
         wp_enqueue_script('geodirectory-goMap-script');
132 132
 
133
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
133
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
134 134
         wp_enqueue_script('geodirectory-goMap-script');
135 135
 
136 136
 		// font awesome rating script
137 137
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
138
-			wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
138
+			wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
139 139
 			wp_enqueue_script('geodir-barrating-js');
140 140
 		} else { // default rating script
141
-			wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
141
+			wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
142 142
 			wp_enqueue_script('geodir-jRating-js');
143 143
 		}
144 144
 
145
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
145
+        wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
146 146
         wp_enqueue_script('geodir-on-document-load');
147 147
 
148 148
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         wp_enqueue_script('plupload-all');
151 151
         wp_enqueue_script('jquery-ui-sortable');
152 152
 
153
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
153
+        wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
154 154
         wp_enqueue_script('geodirectory-plupload-script');
155 155
 
156 156
         // SCRIPT FOR UPLOAD END
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
205 205
 
206 206
 
207
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
207
+        wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
208 208
         wp_enqueue_script('geodirectory-admin-script');
209 209
 
210 210
         wp_enqueue_style('farbtastic');
@@ -212,10 +212,10 @@  discard block
 block discarded – undo
212 212
 
213 213
         $screen = get_current_screen();
214 214
         if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
215
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
215
+            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
216 216
         }
217 217
 
218
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
218
+        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl').'?geodir_ajax=true')));
219 219
         wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
220 220
 
221 221
     }
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
         if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
240 240
 
241
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
241
+        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
242 242
 
243 243
 
244 244
     }
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
                 $geodir_menu_order[] = 'separator-geodirectory';
273 273
                 if (!empty($post_types)) {
274 274
                     foreach ($post_types as $post_type) {
275
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
275
+                        $geodir_menu_order[] = 'edit.php?post_type='.$post_type;
276 276
                     }
277 277
                 }
278 278
                 $geodir_menu_order[] = $item;
@@ -315,8 +315,8 @@  discard block
 block discarded – undo
315 315
 {
316 316
     if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
317 317
         echo '<div id="message" class="updated fade">
318
-                        <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
319
-                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
318
+                        <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory').' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">'.__('Support us by leaving a rating!', 'geodirectory').'</a></p>
319
+                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
320 320
                 </div>';
321 321
 
322 322
     }
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
     if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
325 325
         switch ($_REQUEST['msg']) {
326 326
             case 'success':
327
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
327
+                echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
328 328
                 flush_rewrite_rules(false);
329 329
 
330 330
                 break;
@@ -332,30 +332,30 @@  discard block
 block discarded – undo
332 332
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
333 333
 				
334 334
 				if ($gderr == 21)
335
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
335
+			    	echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
336 336
 				else
337
-					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
337
+					echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
338 338
                 break;
339 339
         }
340 340
     }
341 341
 
342 342
     $geodir_load_map = get_option('geodir_load_map');
343 343
     $need_map_key = false;
344
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
344
+    if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
345 345
         $need_map_key = true;
346 346
     }
347 347
 
348 348
     if (!geodir_get_map_api_key() && $need_map_key) {
349
-        echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
349
+        echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
350 350
     }
351 351
 
352 352
     if (!geodir_is_default_location_set()) {
353
-        echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
353
+        echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
354 354
 
355 355
     }
356 356
 
357 357
     if (!function_exists('curl_init')) {
358
-        echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
358
+        echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
359 359
 
360 360
     }
361 361
 
@@ -375,18 +375,18 @@  discard block
 block discarded – undo
375 375
 function geodir_handle_option_form_submit($current_tab)
376 376
 {
377 377
     global $geodir_settings;
378
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
378
+    if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
379 379
         /**
380 380
          * Contains settings array for current tab.
381 381
          *
382 382
          * @since 1.0.0
383 383
          * @package GeoDirectory
384 384
          */
385
-        include_once('option-pages/' . $current_tab . '_array.php');
385
+        include_once('option-pages/'.$current_tab.'_array.php');
386 386
     }
387 387
     if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
388 388
         if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
+        if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
390 390
 		
391 391
 		/**
392 392
 		 * Fires before updating geodirectory admin settings.
@@ -419,13 +419,13 @@  discard block
 block discarded – undo
419 419
          * @param string $current_tab The current settings tab name.
420 420
          * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
421 421
          */
422
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
422
+        do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
423 423
 
424 424
         flush_rewrite_rules(false);
425 425
 
426 426
         $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
427 427
 
428
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
428
+        $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
429 429
 
430 430
         wp_redirect($redirect_url);
431 431
         exit();
@@ -464,18 +464,18 @@  discard block
 block discarded – undo
464 464
 
465 465
         elseif (isset($value['type']) && $value['type'] == 'image_width') :
466 466
 
467
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
468
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
469
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
470
-                if (isset($_POST[$value['id'] . '_crop'])) :
471
-                    update_option($value['id'] . '_crop', 1);
467
+            if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
468
+                update_option($value['id'].'_width', $_POST[$value['id'].'_width']);
469
+                update_option($value['id'].'_height', $_POST[$value['id'].'_height']);
470
+                if (isset($_POST[$value['id'].'_crop'])) :
471
+                    update_option($value['id'].'_crop', 1);
472 472
                 else :
473
-                    update_option($value['id'] . '_crop', 0);
473
+                    update_option($value['id'].'_crop', 0);
474 474
                 endif;
475 475
             } else {
476
-                update_option($value['id'] . '_width', $value['std']);
477
-                update_option($value['id'] . '_height', $value['std']);
478
-                update_option($value['id'] . '_crop', 1);
476
+                update_option($value['id'].'_width', $value['std']);
477
+                update_option($value['id'].'_height', $value['std']);
478
+                update_option($value['id'].'_crop', 1);
479 479
             }
480 480
 
481 481
         elseif (isset($value['type']) && $value['type'] == 'map') :
@@ -517,12 +517,12 @@  discard block
 block discarded – undo
517 517
         elseif (isset($value['type']) && $value['type'] == 'file') :
518 518
 
519 519
 
520
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
520
+            if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
521 521
 
522 522
                 if (get_option($value['id'])) {
523 523
                     $image_name_arr = explode('/', get_option($value['id']));
524 524
                     $noimg_name = end($image_name_arr);
525
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
525
+                    $img_path = $uploads['path'].'/'.$noimg_name;
526 526
                     if (file_exists($img_path))
527 527
                         unlink($img_path);
528 528
                 }
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
                 if (get_option($value['id'])) {
551 551
                     $image_name_arr = explode('/', get_option($value['id']));
552 552
                     $noimg_name = end($image_name_arr);
553
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
553
+                    $img_path = $uploads['path'].'/'.$noimg_name;
554 554
                     if (file_exists($img_path))
555 555
                         unlink($img_path);
556 556
                 }
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
             // same menu setting per theme.
572 572
             if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
573 573
                 $theme = wp_get_theme();
574
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
574
+                update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
575 575
             }
576 576
 
577 577
             if (isset($value['id']) && isset($_POST[$value['id']])) {
@@ -641,7 +641,7 @@  discard block
 block discarded – undo
641 641
 
642 642
             $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
643 643
 
644
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
644
+            $tabs[$geodir_post_type.'_fields_settings'] = array(
645 645
                 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
646 646
                 'subtabs' => array(
647 647
                     array('subtab' => 'custom_fields',
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
  */
676 676
 function geodir_tools_setting_tab($tabs)
677 677
 {
678
-    wp_enqueue_script( 'jquery-ui-progressbar' );
678
+    wp_enqueue_script('jquery-ui-progressbar');
679 679
     $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
680 680
     return $tabs;
681 681
 }
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
  */
710 710
 function geodir_extend_geodirectory_setting_tab($tabs)
711 711
 {
712
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
712
+    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
713 713
     return $tabs;
714 714
 }
715 715
 
@@ -769,8 +769,8 @@  discard block
 block discarded – undo
769 769
                     _e('Unknown', 'geodirectory');
770 770
                 } else {
771 771
                     /* If there is a city id, append 'city name' to the text string. */
772
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
773
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
772
+                    $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
773
+                    echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id);
774 774
                 }
775 775
                 break;
776 776
 
@@ -788,14 +788,14 @@  discard block
 block discarded – undo
788 788
                         $expire_class = 'expire_over';
789 789
                     }
790 790
                     $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
791
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
791
+                    $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
792 792
                 }
793 793
                 /* If no expire_date is found, output a default message. */
794 794
                 if (empty($expire_date))
795 795
                     echo __('Unknown', 'geodirectory');
796 796
                 /* If there is a expire_date, append 'days left' to the text string. */
797 797
                 else
798
-                    echo $expire_date . $date_diff_text;
798
+                    echo $expire_date.$date_diff_text;
799 799
                 break;
800 800
 
801 801
             /* If displaying the 'categorys' column. */
@@ -862,7 +862,7 @@  discard block
 block discarded – undo
862 862
 function geodir_post_information_save($post_id, $post) {
863 863
     global $wpdb, $current_user;
864 864
 
865
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
865
+    if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
866 866
         return;
867 867
     }
868 868
 
@@ -930,7 +930,7 @@  discard block
 block discarded – undo
930 930
                     $tab_id = $value['id'];
931 931
 
932 932
                 if (isset($value['desc']) && $value['desc'])
933
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
933
+                    $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>';
934 934
 
935 935
                 if (isset($value['name']) && $value['name']) {
936 936
                     if ($first_title === true) {
@@ -938,9 +938,9 @@  discard block
 block discarded – undo
938 938
                     } else {
939 939
                         echo '</div>';
940 940
                     }
941
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
941
+                    echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>';
942 942
 
943
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
943
+                    echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
944 944
                 }
945 945
 
946 946
                 /**
@@ -950,21 +950,21 @@  discard block
 block discarded – undo
950 950
                  *
951 951
                  * @since 1.0.0
952 952
                  */
953
-                do_action('geodir_settings_' . sanitize_title($value['id']));
953
+                do_action('geodir_settings_'.sanitize_title($value['id']));
954 954
                 break;
955 955
 
956 956
             case 'no_tabs':
957 957
 
958 958
                 echo '<div class="inner_content_tab_main">';
959
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
959
+                echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
960 960
 
961 961
                 break;
962 962
 
963 963
             case 'sectionstart':
964 964
                 if (isset($value['desc']) && $value['desc'])
965
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
965
+                    $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>';
966 966
                 if (isset($value['name']) && $value['name'])
967
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
967
+                    echo '<h3>'.$value['name'].$desc.'</h3>';
968 968
                 /**
969 969
                  * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
970 970
                  *
@@ -972,8 +972,8 @@  discard block
 block discarded – undo
972 972
                  *
973 973
                  * @since 1.0.0
974 974
                  */
975
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
976
-                echo '<table class="form-table">' . "\n\n";
975
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
976
+                echo '<table class="form-table">'."\n\n";
977 977
 
978 978
                 break;
979 979
             case 'sectionend':
@@ -984,7 +984,7 @@  discard block
 block discarded – undo
984 984
                  *
985 985
                  * @since 1.0.0
986 986
                  */
987
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
987
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
988 988
                 echo '</table>';
989 989
                 /**
990 990
                  * Called after a GeoDirectory settings sectionend is output in the GD settings page.
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
                  *
994 994
                  * @since 1.0.0
995 995
                  */
996
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
996
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
997 997
                 break;
998 998
             case 'text':
999 999
                 ?>
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1003 1003
                                            id="<?php echo esc_attr($value['id']); ?>"
1004 1004
                                            type="<?php echo esc_attr($value['type']); ?>"
1005
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1005
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1006 1006
                                            style=" <?php echo esc_attr($value['css']); ?>"
1007 1007
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1008 1008
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1019,14 +1019,14 @@  discard block
 block discarded – undo
1019 1019
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1020 1020
                                            id="<?php echo esc_attr($value['id']); ?>"
1021 1021
                                            type="<?php echo esc_attr($value['type']); ?>"
1022
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1022
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1023 1023
                                            style=" <?php echo esc_attr($value['css']); ?>"
1024 1024
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1025 1025
                                                echo esc_attr(stripslashes(get_option($value['id'])));
1026 1026
                                            } else {
1027 1027
                                                echo esc_attr($value['std']);
1028 1028
                                            } ?>"/>
1029
-                    <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
1029
+                    <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )', 'geodirectory'); ?>" ><?php _e('Generate API Key', 'geodirectory'); ?></a>
1030 1030
                     <span class="description"><?php echo $value['desc']; ?></span></td>
1031 1031
                 </tr><?php
1032 1032
                 break;
@@ -1038,7 +1038,7 @@  discard block
 block discarded – undo
1038 1038
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1039 1039
                                            id="<?php echo esc_attr($value['id']); ?>"
1040 1040
                                            type="<?php echo esc_attr($value['type']); ?>"
1041
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1041
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1042 1042
                                            style="<?php echo esc_attr($value['css']); ?>"
1043 1043
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1044 1044
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1084,17 +1084,17 @@  discard block
 block discarded – undo
1084 1084
                     <?php _e('Width', 'geodirectory'); ?> <input
1085 1085
                         name="<?php echo esc_attr($value['id']); ?>_width"
1086 1086
                         id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3"
1087
-                        value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1087
+                        value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1088 1088
 
1089 1089
                     <?php _e('Height', 'geodirectory'); ?> <input
1090 1090
                         name="<?php echo esc_attr($value['id']); ?>_height"
1091 1091
                         id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3"
1092
-                        value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1092
+                        value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1093 1093
 
1094 1094
                     <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
1095 1095
                             name="<?php echo esc_attr($value['id']); ?>_crop"
1096 1096
                             id="<?php echo esc_attr($value['id']); ?>_crop"
1097
-                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label>
1097
+                            type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label>
1098 1098
 
1099 1099
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1100 1100
                 </tr><?php
@@ -1144,7 +1144,7 @@  discard block
 block discarded – undo
1144 1144
                                             id="<?php echo esc_attr($value['id']); ?>"
1145 1145
                                             style="<?php echo esc_attr($value['css']); ?>"
1146 1146
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1147
-                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1147
+                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>"
1148 1148
                                             option-ajaxchosen="false">
1149 1149
                         <?php
1150 1150
                         foreach ($value['options'] as $key => $val) {
@@ -1155,7 +1155,7 @@  discard block
 block discarded – undo
1155 1155
                             } else {
1156 1156
                                 ?>
1157 1157
                                 <option
1158
-                                    value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo geodir_utf8_ucfirst($val) ?></option>
1158
+                                    value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>><?php echo geodir_utf8_ucfirst($val) ?></option>
1159 1159
                             <?php
1160 1160
                             }
1161 1161
                         }
@@ -1190,7 +1190,7 @@  discard block
 block discarded – undo
1190 1190
                 ?>
1191 1191
 
1192 1192
                 <tr valign="top">
1193
-                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1193
+                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
1194 1194
                     <td width="60%">
1195 1195
                         <select name="geodir_default_map_language" style="width:60%">
1196 1196
                             <?php
@@ -1272,7 +1272,7 @@  discard block
 block discarded – undo
1272 1272
 
1273 1273
                 <tr valign="top">
1274 1274
                     <th class="titledesc"
1275
-                        width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
1275
+                        width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
1276 1276
                     <td width="60%">
1277 1277
                         <select name="geodir_default_map_search_pt" style="width:60%">
1278 1278
                             <?php
@@ -1313,7 +1313,7 @@  discard block
 block discarded – undo
1313 1313
                         $cat_display = 'checkbox';
1314 1314
                         $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1315 1315
                         $gd_cats = get_option('geodir_exclude_cat_on_map');
1316
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1316
+                        $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
1317 1317
                         $count = 1;
1318 1318
                         ?>
1319 1319
                         <table width="70%" class="widefat">
@@ -1342,7 +1342,7 @@  discard block
 block discarded – undo
1342 1342
                                                                                            name="home_map_post_types[]"
1343 1343
                                                                                            id="<?php echo esc_attr($value['id']); ?>"
1344 1344
                                                                                            value="<?php echo $key; ?>"
1345
-                                                                                           class="map_post_type" <?php echo $checked;?> />
1345
+                                                                                           class="map_post_type" <?php echo $checked; ?> />
1346 1346
                                         <?php echo __($post_types_obj->labels->singular_name, 'geodirectory'); ?></td>
1347 1347
                                     <td width="40%">
1348 1348
                                         <div class="home_map_category" style="overflow:auto;width:200px;height:100px;"
@@ -1400,12 +1400,12 @@  discard block
 block discarded – undo
1400 1400
                 ?>
1401 1401
                 <fieldset>
1402 1402
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1403
-                    <label for="<?php echo $value['id'];?>">
1403
+                    <label for="<?php echo $value['id']; ?>">
1404 1404
                         <input name="<?php echo esc_attr($value['id']); ?>"
1405
-                               id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1405
+                               id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio"
1406 1406
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1407 1407
                             echo 'checked="checked"';
1408
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1408
+                        }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
1409 1409
                         <?php echo $value['desc']; ?></label><br>
1410 1410
                 </fieldset>
1411 1411
                 <?php
@@ -1425,9 +1425,9 @@  discard block
 block discarded – undo
1425 1425
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1426 1426
                 <td class="forminp">
1427 1427
                     <textarea
1428
-                        <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1428
+                        <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1429 1429
                         id="<?php echo esc_attr($value['id']); ?>"
1430
-                        <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1430
+                        <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1431 1431
                         style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span
1432 1432
                         class="description"><?php echo $value['desc'] ?></span>
1433 1433
 
@@ -1472,7 +1472,7 @@  discard block
 block discarded – undo
1472 1472
 					}
1473 1473
 				}
1474 1474
 				//
1475
-				$page_setting = (int)get_option($value['id']);
1475
+				$page_setting = (int) get_option($value['id']);
1476 1476
 
1477 1477
                 $args = array('name' => $value['id'],
1478 1478
                     'id' => $value['id'],
@@ -1489,7 +1489,7 @@  discard block
 block discarded – undo
1489 1489
                 <tr valign="top" class="single_select_page">
1490 1490
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1491 1491
                 <td class="forminp">
1492
-                    <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
1492
+                    <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
1493 1493
                     <span class="description"><?php echo $value['desc'] ?></span>
1494 1494
                 </td>
1495 1495
                 </tr><?php
@@ -1498,7 +1498,7 @@  discard block
 block discarded – undo
1498 1498
 				}
1499 1499
                 break;
1500 1500
             case 'single_select_country' :
1501
-                $country_setting = (string)get_option($value['id']);
1501
+                $country_setting = (string) get_option($value['id']);
1502 1502
                 if (strstr($country_setting, ':')) :
1503 1503
                     $country = current(explode(':', $country_setting));
1504 1504
                     $state = end(explode(':', $country_setting));
@@ -1521,7 +1521,7 @@  discard block
 block discarded – undo
1521 1521
             case 'multi_select_countries' :
1522 1522
                 $countries = $geodirectory->countries->countries;
1523 1523
                 asort($countries);
1524
-                $selections = (array)get_option($value['id']);
1524
+                $selections = (array) get_option($value['id']);
1525 1525
                 ?>
1526 1526
                 <tr valign="top">
1527 1527
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1531,7 +1531,7 @@  discard block
 block discarded – undo
1531 1531
                             title="Country" class="chosen_select">
1532 1532
                         <?php
1533 1533
                         if ($countries) foreach ($countries as $key => $val) :
1534
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1534
+                            echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>';
1535 1535
                         endforeach;
1536 1536
                         ?>
1537 1537
                     </select>
@@ -1543,7 +1543,7 @@  discard block
 block discarded – undo
1543 1543
                 break;
1544 1544
 
1545 1545
             case 'google_analytics' :
1546
-                $selections = (array)get_option($value['id']);
1546
+                $selections = (array) get_option($value['id']);
1547 1547
                     ?>
1548 1548
                     <tr valign="top">
1549 1549
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1554,30 +1554,30 @@  discard block
 block discarded – undo
1554 1554
 
1555 1555
                             $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1556 1556
                             $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1557
-                            $state = "&state=123";//any string
1558
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1557
+                            $state = "&state=123"; //any string
1558
+                            $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
1559 1559
                             $response_type = "&response_type=code";
1560 1560
                             $client_id = "&client_id=".get_option('geodir_ga_client_id');
1561 1561
                             $access_type = "&access_type=offline";
1562 1562
                             $approval_prompt = "&approval_prompt=force";
1563 1563
 
1564
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1564
+                            $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt;
1565 1565
 
1566 1566
 
1567 1567
                             if (get_option('geodir_ga_auth_token')) {
1568 1568
                                 ?>
1569 1569
                                 <span class="button-primary"
1570
-                                      onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1570
+                                      onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize'); ?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1571 1571
                                 <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1572 1572
                             <?php
1573 1573
                                 global $gd_ga_errors;
1574
-                                if(!empty($gd_ga_errors)){
1574
+                                if (!empty($gd_ga_errors)) {
1575 1575
                                     print_r($gd_ga_errors);
1576 1576
                                 }
1577 1577
                             } else {
1578 1578
                                 ?>
1579 1579
                                 <span class="button-primary"
1580
-                                      onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1580
+                                      onclick="window.open('<?php echo  geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory'); ?></span>
1581 1581
                             <?php
1582 1582
                             }
1583 1583
                             ?>
@@ -1648,9 +1648,9 @@  discard block
 block discarded – undo
1648 1648
 
1649 1649
             <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
1650 1650
             jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
1651
-            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
1651
+            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
1652 1652
             jQuery('.gd-content-heading').hide();
1653
-            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
1653
+            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
1654 1654
             <?php } ?>
1655 1655
         });
1656 1656
     </script>
@@ -1736,7 +1736,7 @@  discard block
 block discarded – undo
1736 1736
     wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1737 1737
 
1738 1738
     if (geodir_get_featured_image($post_id, 'thumbnail')) {
1739
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1739
+        echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
1740 1740
         geodir_show_featured_image($post_id, 'thumbnail');
1741 1741
     }
1742 1742
 
@@ -1747,13 +1747,13 @@  discard block
 block discarded – undo
1747 1747
 
1748 1748
     <h5 class="form_title">
1749 1749
         <?php if ($image_limit != 0 && $image_limit == 1) {
1750
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1750
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
1751 1751
         } ?>
1752 1752
         <?php if ($image_limit != 0 && $image_limit > 1) {
1753
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1753
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
1754 1754
         } ?>
1755 1755
         <?php if ($image_limit == 0) {
1756
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1756
+            echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
1757 1757
         } ?>
1758 1758
     </h5>
1759 1759
 
@@ -1792,10 +1792,10 @@  discard block
 block discarded – undo
1792 1792
         <div
1793 1793
             class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
1794 1794
             id="<?php echo $id; ?>plupload-upload-ui">
1795
-            <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
1795
+            <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
1796 1796
             <input id="<?php echo $id; ?>plupload-browse-button" type="button"
1797 1797
                    value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
1798
-            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span>
1798
+            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span>
1799 1799
             <?php if ($width && $height): ?>
1800 1800
                 <span class="plupload-resize"></span>
1801 1801
                 <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span>
@@ -1807,7 +1807,7 @@  discard block
 block discarded – undo
1807 1807
              id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;">
1808 1808
         </div>
1809 1809
         <span
1810
-            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory');?></span>
1810
+            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory'); ?></span>
1811 1811
         <span id="<?php echo $id; ?>upload-error" style="display:none"></span>
1812 1812
     </div>
1813 1813
 
@@ -2017,9 +2017,9 @@  discard block
 block discarded – undo
2017 2017
     $plugin = 'avada-nag';
2018 2018
     $timestamp = 'avada-nag1234';
2019 2019
     $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
2020
-    echo '<div id="' . $timestamp . '"  class="error">';
2021
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2022
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2020
+    echo '<div id="'.$timestamp.'"  class="error">';
2021
+    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fa fa-times"></i></span>';
2022
+    echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
2023 2023
     echo "<p>$message</p>";
2024 2024
     echo "</div>";
2025 2025
 
@@ -2152,7 +2152,7 @@  discard block
 block discarded – undo
2152 2152
 		
2153 2153
 		// Don't allow same slug url for listing and location
2154 2154
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2155
-			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2155
+			$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
2156 2156
         	wp_redirect($redirect_url);
2157 2157
 			exit;
2158 2158
 		}
@@ -2164,7 +2164,7 @@  discard block
 block discarded – undo
2164 2164
 			$default_language = $sitepress->get_default_language();
2165 2165
 			
2166 2166
 			if ($current_language != 'all' && $current_language != $default_language) {
2167
-				$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
2167
+				$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
2168 2168
 				wp_redirect($redirect_url);
2169 2169
 				exit;
2170 2170
 			}
@@ -2185,11 +2185,11 @@  discard block
 block discarded – undo
2185 2185
 function geodir_hide_admin_preview_button() {
2186 2186
     global $post_type;
2187 2187
     $post_types = geodir_get_posttypes();
2188
-    if(in_array($post_type, $post_types))
2188
+    if (in_array($post_type, $post_types))
2189 2189
         echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2190 2190
 }
2191
-add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2192
-add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
2191
+add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
2192
+add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
2193 2193
 
2194 2194
 /**
2195 2195
  * Add the tab in left sidebar menu fro import & export page.
@@ -2199,8 +2199,8 @@  discard block
 block discarded – undo
2199 2199
  *
2200 2200
  * @return array Array of tab data.
2201 2201
  */
2202
-function geodir_import_export_tab( $tabs ) {
2203
-	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2202
+function geodir_import_export_tab($tabs) {
2203
+	$tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
2204 2204
     return $tabs;
2205 2205
 }
2206 2206
 
@@ -2214,8 +2214,8 @@  discard block
 block discarded – undo
2214 2214
  * @return string Html content.
2215 2215
  */
2216 2216
 function geodir_import_export_page() {
2217
-	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2218
-	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2217
+	$nonce = wp_create_nonce('geodir_import_export_nonce');
2218
+	$gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv';
2219 2219
     /**
2220 2220
      * Filter sample category data csv file url.
2221 2221
      *
@@ -2224,9 +2224,9 @@  discard block
 block discarded – undo
2224 2224
      *
2225 2225
      * @param string $gd_cats_sample_csv Sample category data csv file url.
2226 2226
      */
2227
-	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2227
+	$gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
2228 2228
 	
2229
-	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2229
+	$gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv';
2230 2230
     /**
2231 2231
      * Filter sample post data csv file url.
2232 2232
      *
@@ -2235,15 +2235,15 @@  discard block
 block discarded – undo
2235 2235
      *
2236 2236
      * @param string $gd_posts_sample_csv Sample post data csv file url.
2237 2237
      */
2238
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2238
+    $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
2239 2239
 	
2240
-	$gd_posttypes = geodir_get_posttypes( 'array' );
2240
+	$gd_posttypes = geodir_get_posttypes('array');
2241 2241
 	
2242 2242
 	$gd_posttypes_option = '';
2243
-	foreach ( $gd_posttypes as $gd_posttype => $row ) {
2244
-		$gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>';
2243
+	foreach ($gd_posttypes as $gd_posttype => $row) {
2244
+		$gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>';
2245 2245
 	}
2246
-	wp_enqueue_script( 'jquery-ui-progressbar' );
2246
+	wp_enqueue_script('jquery-ui-progressbar');
2247 2247
 	
2248 2248
 	$gd_chunksize_options = array();
2249 2249
 	$gd_chunksize_options[100] = 100;
@@ -2265,50 +2265,50 @@  discard block
 block discarded – undo
2265 2265
      *
2266 2266
      * @param string $gd_chunksize_options Entries options.
2267 2267
      */
2268
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2268
+    $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
2269 2269
 	
2270 2270
 	$gd_chunksize_option = '';
2271 2271
 	foreach ($gd_chunksize_options as $value => $title) {
2272
-		$gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>';
2272
+		$gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>';
2273 2273
 	}
2274 2274
 	
2275 2275
 	$uploads = wp_upload_dir();
2276
-	$upload_dir = wp_sprintf( CSV_TRANSFER_IMG_FOLDER, str_replace( ABSPATH, '', $uploads['path'] ) );
2276
+	$upload_dir = wp_sprintf(CSV_TRANSFER_IMG_FOLDER, str_replace(ABSPATH, '', $uploads['path']));
2277 2277
 ?>
2278 2278
 </form>
2279 2279
 <div class="inner_content_tab_main gd-import-export">
2280
-  <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3>
2281
-  <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span>
2280
+  <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
2281
+  <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
2282 2282
   <div class="gd-content-heading">
2283 2283
 
2284 2284
   <?php
2285 2285
     ini_set('max_execution_time', 999999);
2286
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2286
+    $ini_max_execution_time_check = @ini_get('max_execution_time');
2287 2287
     ini_restore('max_execution_time');
2288 2288
 
2289
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2289
+    if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
2290 2290
         ?>
2291 2291
 	<div id="gd_ie_reqs" class="metabox-holder">
2292 2292
       <div class="meta-box-sortables ui-sortable">
2293 2293
         <div class="postbox">
2294
-          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3>
2294
+          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
2295 2295
           <div class="inside">
2296
-            <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span>
2296
+            <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
2297 2297
 			<table class="form-table">
2298 2298
 				<thead>
2299 2299
 				  <tr>
2300
-				  	<th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th>
2300
+				  	<th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
2301 2301
 				  </tr>
2302 2302
 				</thead>
2303 2303
 				<tbody>
2304 2304
 				  <tr>
2305
-				  	<td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td>
2305
+				  	<td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
2306 2306
 				  </tr>
2307 2307
 				  <tr>
2308
-				  	<td>max_execution_time</td><td><?php  echo @ini_get( 'max_execution_time' );?></td><td>3000</td>
2308
+				  	<td>max_execution_time</td><td><?php  echo @ini_get('max_execution_time'); ?></td><td>3000</td>
2309 2309
 				  </tr>
2310 2310
 				  <tr>
2311
-				  	<td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td>
2311
+				  	<td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
2312 2312
 				  </tr>
2313 2313
 				</tbody>
2314 2314
 		    </table>
@@ -2320,21 +2320,21 @@  discard block
 block discarded – undo
2320 2320
 	<div id="gd_ie_imposts" class="metabox-holder">
2321 2321
       <div class="meta-box-sortables ui-sortable">
2322 2322
         <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox">
2323
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2324
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3>
2323
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2324
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
2325 2325
           <div class="inside">
2326 2326
             <table class="form-table">
2327 2327
 				<tbody>
2328 2328
 				  <tr>
2329 2329
 					<td class="gd-imex-box">
2330 2330
 						<div class="gd-im-choices">
2331
-						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2332
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2331
+						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2332
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2333 2333
 						</div>
2334 2334
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui">
2335 2335
 							<input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
2336
-							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2337
-						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" />
2336
+							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2337
+						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" />
2338 2338
 						<input type="hidden" id="gd_im_post_allowed_types" data-exts=".csv" value="csv" />
2339 2339
 							<?php
2340 2340
 							/**
@@ -2344,7 +2344,7 @@  discard block
 block discarded – undo
2344 2344
 							 */
2345 2345
 							do_action('geodir_sample_csv_download_link');
2346 2346
 							?>
2347
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span>
2347
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
2348 2348
 							<div class="filelist"></div>
2349 2349
 						</div>
2350 2350
 						<span id="gd_im_postupload-error" style="display:none"></span>
@@ -2362,7 +2362,7 @@  discard block
 block discarded – undo
2362 2362
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2363 2363
 						</div>
2364 2364
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2365
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2365
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2366 2366
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2367 2367
 									id="gd-import-perc">0%</font> )
2368 2368
 								<div class="gd-fileprogress"></div>
@@ -2374,10 +2374,10 @@  discard block
 block discarded – undo
2374 2374
                     	<div class="gd-imex-btns" style="display:none;">
2375 2375
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2376 2376
                         	<input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2377
-                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2378
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2377
+                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2378
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2379 2379
 							<div id="gd_process_data" style="display:none">
2380
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2380
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2381 2381
 							</div>
2382 2382
 						</div>
2383 2383
 					</td>
@@ -2391,30 +2391,30 @@  discard block
 block discarded – undo
2391 2391
 	<div id="gd_ie_excategs" class="metabox-holder">
2392 2392
 	  <div class="meta-box-sortables ui-sortable">
2393 2393
 		<div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox">
2394
-		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2395
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3>
2394
+		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2395
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
2396 2396
 		  <div class="inside">
2397 2397
 			<table class="form-table">
2398 2398
 			  <tbody>
2399 2399
 				<tr>
2400 2400
 				  <td class="fld"><label for="gd_post_type">
2401
-					<?php _e( 'Post Type:', 'geodirectory' );?>
2401
+					<?php _e('Post Type:', 'geodirectory'); ?>
2402 2402
 					</label></td>
2403 2403
 				  <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px">
2404
-					  <?php echo $gd_posttypes_option;?>
2404
+					  <?php echo $gd_posttypes_option; ?>
2405 2405
 					</select></td>
2406 2406
 				</tr>
2407 2407
 				<tr>
2408
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2409
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2408
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2409
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2410 2410
 				</tr>
2411 2411
                 <tr class="gd-imex-dates">
2412
-					<td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td>
2413
-					<td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2412
+					<td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
2413
+					<td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2414 2414
 				</tr>
2415 2415
 				<tr>
2416 2416
 				  <td class="fld" style="vertical-align:top"><label>
2417
-					<?php _e( 'Progress:', 'geodirectory' );?>
2417
+					<?php _e('Progress:', 'geodirectory'); ?>
2418 2418
 					</label></td>
2419 2419
 				  <td><div id='gd_progressbar_box'>
2420 2420
 					  <div id="gd_progressbar" class="gd_progressbar">
@@ -2422,13 +2422,13 @@  discard block
 block discarded – undo
2422 2422
 					  </div>
2423 2423
 					</div>
2424 2424
 					<p style="display:inline-block">
2425
-					  <?php _e( 'Elapsed Time:', 'geodirectory' );?>
2425
+					  <?php _e('Elapsed Time:', 'geodirectory'); ?>
2426 2426
 					</p>
2427 2427
 					  
2428 2428
 					<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2429 2429
 				</tr>
2430 2430
 				<tr class="gd-ie-actions">
2431
-				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2431
+				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2432 2432
 				  </td>
2433 2433
 				  <td id="gd_ie_ex_files" class="gd-ie-files"></td>
2434 2434
 				</tr>
@@ -2441,21 +2441,21 @@  discard block
 block discarded – undo
2441 2441
 	<div id="gd_ie_imcategs" class="metabox-holder">
2442 2442
       <div class="meta-box-sortables ui-sortable">
2443 2443
         <div id="gd_ie_imcats" class="postbox gd-hndle-pbox">
2444
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2445
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3>
2444
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2445
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
2446 2446
           <div class="inside">
2447 2447
             <table class="form-table">
2448 2448
 				<tbody>
2449 2449
 				  <tr>
2450 2450
 					<td class="gd-imex-box">
2451 2451
 						<div class="gd-im-choices">
2452
-						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2453
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2452
+						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2453
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2454 2454
 						</div>
2455 2455
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui">
2456 2456
 							<input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
2457
-							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2458
-						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" />
2457
+							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2458
+						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" />
2459 2459
 						<input type="hidden" id="gd_im_cat_allowed_types" data-exts=".csv" value="csv" />
2460 2460
 						<?php
2461 2461
 						/**
@@ -2466,7 +2466,7 @@  discard block
 block discarded – undo
2466 2466
 						 */
2467 2467
 						do_action('geodir_sample_cats_csv_download_link');
2468 2468
 						?>
2469
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span>
2469
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
2470 2470
 							<div class="filelist"></div>
2471 2471
 						</div>
2472 2472
 						<span id="gd_im_catupload-error" style="display:none"></span>
@@ -2483,7 +2483,7 @@  discard block
 block discarded – undo
2483 2483
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2484 2484
 						</div>
2485 2485
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2486
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2486
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2487 2487
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2488 2488
 									id="gd-import-perc">0%</font> )
2489 2489
 								<div class="gd-fileprogress"></div>
@@ -2495,10 +2495,10 @@  discard block
 block discarded – undo
2495 2495
                     	<div class="gd-imex-btns" style="display:none;">
2496 2496
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2497 2497
                         	<input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2498
-                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2499
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2498
+                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2499
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2500 2500
 							<div id="gd_process_data" style="display:none">
2501
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2501
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2502 2502
 							</div>
2503 2503
 						</div>
2504 2504
 					</td>
@@ -2512,26 +2512,26 @@  discard block
 block discarded – undo
2512 2512
 	<div id="gd_ie_excategs" class="metabox-holder">
2513 2513
       <div class="meta-box-sortables ui-sortable">
2514 2514
         <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox">
2515
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2516
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3>
2515
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2516
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
2517 2517
           <div class="inside">
2518 2518
             <table class="form-table">
2519 2519
 				<tbody>
2520 2520
 				  <tr>
2521
-					<td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td>
2522
-					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td>
2521
+					<td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
2522
+					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td>
2523 2523
 				  </tr>
2524 2524
 				   <tr>
2525
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2526
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2525
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2526
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2527 2527
 				  </tr>
2528 2528
 				  <tr>
2529
-					<td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td>
2530
-					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2529
+					<td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
2530
+					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2531 2531
 				  </tr>
2532 2532
 				  <tr class="gd-ie-actions">
2533 2533
 					<td style="vertical-align:top">
2534
-						<input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2534
+						<input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2535 2535
 					</td>
2536 2536
 					<td id="gd_ie_ex_files" class="gd-ie-files"></td>
2537 2537
 				  </tr>
@@ -2553,7 +2553,7 @@  discard block
 block discarded – undo
2553 2553
      * @param array $gd_chunksize_options File chunk size options.
2554 2554
      * @param string $nonce Wordpress security token for GD import & export.
2555 2555
 	 */
2556
-	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2556
+	do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
2557 2557
 	?>
2558 2558
   </div>
2559 2559
 </div>
@@ -2572,7 +2572,7 @@  discard block
 block discarded – undo
2572 2572
         jQuery.ajax({
2573 2573
             url: ajaxurl,
2574 2574
             type: "POST",
2575
-            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>',
2575
+            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>',
2576 2576
             dataType: 'json',
2577 2577
             cache: false,
2578 2578
             success: function(data) {
@@ -2624,7 +2624,7 @@  discard block
 block discarded – undo
2624 2624
 
2625 2625
         jQuery(cont).find('.filelist .file').remove();
2626 2626
         
2627
-        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
2627
+        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
2628 2628
         jQuery('#gd-import-msg', cont).show();
2629 2629
         
2630 2630
         return false;
@@ -2683,7 +2683,7 @@  discard block
 block discarded – undo
2683 2683
     jQuery.ajax({
2684 2684
         url: ajaxurl,
2685 2685
         type: "POST",
2686
-        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>',
2686
+        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>',
2687 2687
         dataType : 'json',
2688 2688
         cache: false,
2689 2689
         success: function (data) {
@@ -2872,27 +2872,27 @@  discard block
 block discarded – undo
2872 2872
 
2873 2873
     var gdMsg = '<p></p>';
2874 2874
     if ( processed > 0 ) {
2875
-        var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>';
2875
+        var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
2876 2876
         msgParse = msgParse.replace("%s", processed);
2877 2877
         gdMsg += msgParse;
2878 2878
     }
2879 2879
 
2880 2880
     if ( updated > 0 ) {
2881
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2881
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
2882 2882
         msgParse = msgParse.replace("%s", updated);
2883 2883
         msgParse = msgParse.replace("%d", processed);
2884 2884
         gdMsg += msgParse;
2885 2885
     }
2886 2886
 
2887 2887
     if ( created > 0 ) {
2888
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2888
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
2889 2889
         msgParse = msgParse.replace("%s", created);
2890 2890
         msgParse = msgParse.replace("%d", processed);
2891 2891
         gdMsg += msgParse;
2892 2892
     }
2893 2893
 
2894 2894
     if ( skipped > 0 ) {
2895
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2895
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
2896 2896
         msgParse = msgParse.replace("%s", skipped);
2897 2897
         msgParse = msgParse.replace("%d", processed);
2898 2898
         gdMsg += msgParse;
@@ -2902,17 +2902,17 @@  discard block
 block discarded – undo
2902 2902
         if (type=='loc') {
2903 2903
             invalid_addr = invalid;
2904 2904
         }
2905
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>';
2905
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
2906 2906
         msgParse = msgParse.replace("%s", invalid_addr);
2907 2907
         msgParse = msgParse.replace("%d", total);
2908 2908
         gdMsg += msgParse;
2909 2909
     }
2910 2910
 
2911 2911
     if (invalid > 0 && type!='loc') {
2912
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2912
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
2913 2913
         
2914 2914
         if (type=='hood') {
2915
-            msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>';
2915
+            msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
2916 2916
         }
2917 2917
         msgParse = msgParse.replace("%s", invalid);
2918 2918
         msgParse = msgParse.replace("%d", total);
@@ -2920,7 +2920,7 @@  discard block
 block discarded – undo
2920 2920
     }
2921 2921
 
2922 2922
     if (images > 0) {
2923
-        gdMsg += '<p><?php echo addslashes( $upload_dir );?></p>';
2923
+        gdMsg += '<p><?php echo addslashes($upload_dir); ?></p>';
2924 2924
     }
2925 2925
     gdMsg += '<p></p>';
2926 2926
     jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
@@ -3084,9 +3084,9 @@  discard block
 block discarded – undo
3084 3084
             if (typeof filters !== 'undefined' && filters && doFilter) {
3085 3085
                 getTotal = true;
3086 3086
                 attach += '&_c=1';
3087
-                gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>');
3087
+                gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
3088 3088
             } else {
3089
-                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3089
+                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3090 3090
             }
3091 3091
             jQuery(el).find('#gd_timer').text('00:00:01');
3092 3092
             jQuery('#gd_ie_ex_files', el).html('');
@@ -3095,7 +3095,7 @@  discard block
 block discarded – undo
3095 3095
         jQuery.ajax({
3096 3096
             url: ajaxurl,
3097 3097
             type: "POST",
3098
-            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach,
3098
+            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach,
3099 3099
             dataType : 'json',
3100 3100
             cache: false,
3101 3101
             beforeSend: function (jqXHR, settings) {},
@@ -3120,11 +3120,11 @@  discard block
 block discarded – undo
3120 3120
                         } else {
3121 3121
                             if (pages < page || pages == page) {
3122 3122
                                 window.clearInterval(timer_posts);
3123
-                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3123
+                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3124 3124
                             } else {
3125 3125
                                 var percentage = Math.round(((page * chunk_size) / total_posts) * 100);
3126 3126
                                 percentage = percentage > 100 ? 100 : percentage;
3127
-                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3127
+                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3128 3128
                             }
3129 3129
                             if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3130 3130
                                 var obj_files = data.files;
@@ -3155,7 +3155,7 @@  discard block
 block discarded – undo
3155 3155
 
3156 3156
     function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
3157 3157
         if (page < 2) {
3158
-            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3158
+            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3159 3159
             jQuery(el).find('#gd_timer').text('00:00:01');
3160 3160
             jQuery('#gd_ie_ex_files', el).html('');
3161 3161
         }
@@ -3163,7 +3163,7 @@  discard block
 block discarded – undo
3163 3163
         jQuery.ajax({
3164 3164
             url: ajaxurl,
3165 3165
             type: "POST",
3166
-            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page,
3166
+            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page,
3167 3167
             dataType : 'json',
3168 3168
             cache: false,
3169 3169
             beforeSend: function (jqXHR, settings) {},
@@ -3177,11 +3177,11 @@  discard block
 block discarded – undo
3177 3177
                     } else {
3178 3178
                         if (pages < page || pages == page) {
3179 3179
                             window.clearInterval(timer_cats);
3180
-                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3180
+                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3181 3181
                         } else {
3182 3182
                             var percentage = Math.round(((page * chunk_size) / total_cats) * 100);
3183 3183
                             percentage = percentage > 100 ? 100 : percentage;
3184
-                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
3184
+                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
3185 3185
                         }
3186 3186
                         if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3187 3187
                             var obj_files = data.files;
@@ -3238,13 +3238,13 @@  discard block
 block discarded – undo
3238 3238
 function geodir_init_filesystem()
3239 3239
 {
3240 3240
 
3241
-    if(!function_exists('get_filesystem_method')){
3241
+    if (!function_exists('get_filesystem_method')) {
3242 3242
         require_once(ABSPATH."/wp-admin/includes/file.php");
3243 3243
     }
3244 3244
     $access_type = get_filesystem_method();
3245 3245
     if ($access_type === 'direct') {
3246 3246
         /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3247
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3247
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3248 3248
 
3249 3249
         /* initialize the API */
3250 3250
         if (!WP_Filesystem($creds)) {
@@ -3257,7 +3257,7 @@  discard block
 block discarded – undo
3257 3257
         return $wp_filesystem;
3258 3258
         /* do our file manipulations below */
3259 3259
     } elseif (defined('FTP_USER')) {
3260
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3260
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3261 3261
 
3262 3262
         /* initialize the API */
3263 3263
         if (!WP_Filesystem($creds)) {
@@ -3292,7 +3292,7 @@  discard block
 block discarded – undo
3292 3292
  * @package GeoDirectory
3293 3293
  */
3294 3294
 function geodir_filesystem_notice()
3295
-{   if ( defined( 'DOING_AJAX' ) ){return;}
3295
+{   if (defined('DOING_AJAX')) {return; }
3296 3296
     $access_type = get_filesystem_method();
3297 3297
     if ($access_type === 'direct') {
3298 3298
     } elseif (!defined('FTP_USER')) {
@@ -3332,64 +3332,64 @@  discard block
 block discarded – undo
3332 3332
     // try to set higher limits for import
3333 3333
     $max_input_time = ini_get('max_input_time');
3334 3334
     $max_execution_time = ini_get('max_execution_time');
3335
-    $memory_limit= ini_get('memory_limit');
3335
+    $memory_limit = ini_get('memory_limit');
3336 3336
 
3337
-    if(!$max_input_time || $max_input_time<3000){
3337
+    if (!$max_input_time || $max_input_time < 3000) {
3338 3338
         ini_set('max_input_time', 3000);
3339 3339
     }
3340 3340
 
3341
-    if(!$max_execution_time || $max_execution_time<3000){
3341
+    if (!$max_execution_time || $max_execution_time < 3000) {
3342 3342
         ini_set('max_execution_time', 3000);
3343 3343
     }
3344 3344
 
3345
-    if($memory_limit && str_replace('M','',$memory_limit)){
3346
-        if(str_replace('M','',$memory_limit)<256){
3345
+    if ($memory_limit && str_replace('M', '', $memory_limit)) {
3346
+        if (str_replace('M', '', $memory_limit) < 256) {
3347 3347
             ini_set('memory_limit', '256M');
3348 3348
         }
3349 3349
     }
3350 3350
 
3351 3351
     $json = array();
3352 3352
 
3353
-    if ( !current_user_can( 'manage_options' ) ) {
3354
-        wp_send_json( $json );
3353
+    if (!current_user_can('manage_options')) {
3354
+        wp_send_json($json);
3355 3355
     }
3356 3356
 
3357
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3358
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3359
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3357
+    $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL;
3358
+    $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL;
3359
+    $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false;
3360 3360
 
3361
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3362
-        wp_send_json( $json );
3361
+    if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
3362
+        wp_send_json($json);
3363 3363
     }
3364 3364
 
3365
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3366
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3365
+    $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL;
3366
+    $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL;
3367 3367
     $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3368
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3368
+    $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1;
3369 3369
 
3370 3370
     $wp_filesystem = geodir_init_filesystem();
3371 3371
     if (!$wp_filesystem) {
3372
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3373
-        wp_send_json( $json );
3372
+        $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
3373
+        wp_send_json($json);
3374 3374
     }
3375 3375
 
3376 3376
     if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3377
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3378
-        wp_send_json( $json );
3377
+        $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
3378
+        wp_send_json($json);
3379 3379
     }
3380 3380
 
3381
-    $csv_file_dir = geodir_path_import_export( false );
3382
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3383
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3384
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3385
-            wp_send_json( $json );
3381
+    $csv_file_dir = geodir_path_import_export(false);
3382
+    if (!$wp_filesystem->is_dir($csv_file_dir)) {
3383
+        if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
3384
+            $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
3385
+            wp_send_json($json);
3386 3386
         }
3387 3387
     }
3388 3388
     
3389 3389
     $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3390 3390
     $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3391 3391
 
3392
-    switch ( $task ) {
3392
+    switch ($task) {
3393 3393
         case 'export_posts': {
3394 3394
             // WPML
3395 3395
             $is_wpml = geodir_is_wpml();
@@ -3400,36 +3400,36 @@  discard block
 block discarded – undo
3400 3400
                 $sitepress->switch_lang('all', true);
3401 3401
             }
3402 3402
             // WPML
3403
-            if ( $post_type == 'gd_event' ) {
3404
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3403
+            if ($post_type == 'gd_event') {
3404
+                add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
3405 3405
             }
3406
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3406
+            $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
3407 3407
             
3408
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3409
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3410
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3408
+            $file_name = $post_type.'_'.date('dmyHi');
3409
+            if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
3410
+                $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
3411 3411
             }
3412
-            $posts_count = geodir_get_posts_count( $post_type );
3413
-            $file_url_base = geodir_path_import_export() . '/';
3414
-            $file_url = $file_url_base . $file_name . '.csv';
3415
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3416
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3412
+            $posts_count = geodir_get_posts_count($post_type);
3413
+            $file_url_base = geodir_path_import_export().'/';
3414
+            $file_url = $file_url_base.$file_name.'.csv';
3415
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3416
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv';
3417 3417
             
3418 3418
             $chunk_file_paths = array();
3419 3419
 
3420
-            if ( isset( $_REQUEST['_c'] ) ) {
3420
+            if (isset($_REQUEST['_c'])) {
3421 3421
                 $json['total'] = $posts_count;
3422 3422
                 // WPML
3423 3423
                 if ($is_wpml) {
3424 3424
                     $sitepress->switch_lang($active_lang, true);
3425 3425
                 }
3426 3426
                 // WPML
3427
-                wp_send_json( $json );
3427
+                wp_send_json($json);
3428 3428
                 gd_die();
3429
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3430
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3431
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3432
-                $percentage = min( $percentage, 100 );
3429
+            } else if (isset($_REQUEST['_st'])) {
3430
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3431
+                $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0;
3432
+                $percentage = min($percentage, 100);
3433 3433
                 
3434 3434
                 $json['percentage'] = $percentage;
3435 3435
                 // WPML
@@ -3437,45 +3437,45 @@  discard block
 block discarded – undo
3437 3437
                     $sitepress->switch_lang($active_lang, true);
3438 3438
                 }
3439 3439
                 // WPML
3440
-                wp_send_json( $json );
3440
+                wp_send_json($json);
3441 3441
                 gd_die();
3442 3442
             } else {
3443
-                if ( !$posts_count > 0 ) {
3444
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3443
+                if (!$posts_count > 0) {
3444
+                    $json['error'] = __('No records to export.', 'geodirectory');
3445 3445
                 } else {
3446 3446
                     $total_posts = $posts_count;
3447 3447
                     if ($chunk_per_page > $total_posts) {
3448 3448
                         $chunk_per_page = $total_posts;
3449 3449
                     }
3450
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3450
+                    $chunk_total_pages = ceil($total_posts / $chunk_per_page);
3451 3451
                     
3452 3452
                     $j = $chunk_page_no;
3453
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3453
+                    $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j);
3454 3454
                     
3455 3455
                     $per_page = 500;
3456 3456
                     if ($per_page > $chunk_per_page) {
3457 3457
                         $per_page = $chunk_per_page;
3458 3458
                     }
3459
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3459
+                    $total_pages = ceil($chunk_per_page / $per_page);
3460 3460
                     
3461
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3462
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3461
+                    for ($i = 0; $i <= $total_pages; $i++) {
3462
+                        $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page);
3463 3463
                         
3464 3464
                         $clear = $i == 0 ? true : false;
3465
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3465
+                        geodir_save_csv_data($file_path_temp, $save_posts, $clear);
3466 3466
                     }
3467 3467
                         
3468
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3469
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3470
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3471
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3472
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3468
+                    if ($wp_filesystem->exists($file_path_temp)) {
3469
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3470
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3471
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3472
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3473 3473
                         
3474
-                        $file_url = $file_url_base . $chunk_file_name;
3475
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3474
+                        $file_url = $file_url_base.$chunk_file_name;
3475
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3476 3476
                     }
3477 3477
                     
3478
-                    if ( !empty($chunk_file_paths) ) {
3478
+                    if (!empty($chunk_file_paths)) {
3479 3479
                         $json['total'] = $posts_count;
3480 3480
                         $json['files'] = $chunk_file_paths;
3481 3481
                     } else {
@@ -3483,7 +3483,7 @@  discard block
 block discarded – undo
3483 3483
                             $json['total'] = $posts_count;
3484 3484
                             $json['files'] = array();
3485 3485
                         } else {
3486
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3486
+                            $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3487 3487
                         }
3488 3488
                     }
3489 3489
                 }
@@ -3492,7 +3492,7 @@  discard block
 block discarded – undo
3492 3492
                     $sitepress->switch_lang($active_lang, true);
3493 3493
                 }
3494 3494
                 // WPML
3495
-                wp_send_json( $json );
3495
+                wp_send_json($json);
3496 3496
             }
3497 3497
         }
3498 3498
         break;
@@ -3506,20 +3506,20 @@  discard block
 block discarded – undo
3506 3506
                 $sitepress->switch_lang('all', true);
3507 3507
             }
3508 3508
             // WPML
3509
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3509
+            $file_name = $post_type.'category_'.date('dmyHi');
3510 3510
             
3511
-            $terms_count = geodir_get_terms_count( $post_type );
3512
-            $file_url_base = geodir_path_import_export() . '/';
3513
-            $file_url = $file_url_base . $file_name . '.csv';
3514
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3515
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3511
+            $terms_count = geodir_get_terms_count($post_type);
3512
+            $file_url_base = geodir_path_import_export().'/';
3513
+            $file_url = $file_url_base.$file_name.'.csv';
3514
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3515
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv';
3516 3516
             
3517 3517
             $chunk_file_paths = array();
3518 3518
             
3519
-            if ( isset( $_REQUEST['_st'] ) ) {
3520
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3521
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3522
-                $percentage = min( $percentage, 100 );
3519
+            if (isset($_REQUEST['_st'])) {
3520
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3521
+                $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0;
3522
+                $percentage = min($percentage, 100);
3523 3523
                 
3524 3524
                 $json['percentage'] = $percentage;
3525 3525
                 // WPML
@@ -3527,48 +3527,48 @@  discard block
 block discarded – undo
3527 3527
                     $sitepress->switch_lang($active_lang, true);
3528 3528
                 }
3529 3529
                 // WPML
3530
-                wp_send_json( $json );
3530
+                wp_send_json($json);
3531 3531
             } else {
3532
-                if ( !$terms_count > 0 ) {
3533
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3532
+                if (!$terms_count > 0) {
3533
+                    $json['error'] = __('No records to export.', 'geodirectory');
3534 3534
                 } else {
3535 3535
                     $total_terms = $terms_count;
3536 3536
                     if ($chunk_per_page > $terms_count) {
3537 3537
                         $chunk_per_page = $terms_count;
3538 3538
                     }
3539
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3539
+                    $chunk_total_pages = ceil($total_terms / $chunk_per_page);
3540 3540
                     
3541 3541
                     $j = $chunk_page_no;
3542
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3542
+                    $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j);
3543 3543
                     
3544 3544
                     $per_page = 500;
3545 3545
                     if ($per_page > $chunk_per_page) {
3546 3546
                         $per_page = $chunk_per_page;
3547 3547
                     }
3548
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3548
+                    $total_pages = ceil($chunk_per_page / $per_page);
3549 3549
                     
3550
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3551
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3550
+                    for ($i = 0; $i <= $total_pages; $i++) {
3551
+                        $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page);
3552 3552
                         
3553 3553
                         $clear = $i == 0 ? true : false;
3554
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3554
+                        geodir_save_csv_data($file_path_temp, $save_terms, $clear);
3555 3555
                     }
3556 3556
                     
3557
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3558
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3559
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3560
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3561
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3557
+                    if ($wp_filesystem->exists($file_path_temp)) {
3558
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3559
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3560
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3561
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3562 3562
                         
3563
-                        $file_url = $file_url_base . $chunk_file_name;
3564
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3563
+                        $file_url = $file_url_base.$chunk_file_name;
3564
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3565 3565
                     }
3566 3566
                     
3567
-                    if ( !empty($chunk_file_paths) ) {
3567
+                    if (!empty($chunk_file_paths)) {
3568 3568
                         $json['total'] = $terms_count;
3569 3569
                         $json['files'] = $chunk_file_paths;
3570 3570
                     } else {
3571
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3571
+                        $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3572 3572
                     }
3573 3573
                 }
3574 3574
                 // WPML
@@ -3576,127 +3576,127 @@  discard block
 block discarded – undo
3576 3576
                     $sitepress->switch_lang($active_lang, true);
3577 3577
                 }
3578 3578
                 // WPML
3579
-                wp_send_json( $json );
3579
+                wp_send_json($json);
3580 3580
             }
3581 3581
         }
3582 3582
         break;
3583 3583
         case 'export_locations': {
3584
-            $file_url_base = geodir_path_import_export() . '/';
3585
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3586
-            $file_url = $file_url_base . $file_name . '.csv';
3587
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3588
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3584
+            $file_url_base = geodir_path_import_export().'/';
3585
+            $file_name = 'gd_locations_'.date('dmyHi');
3586
+            $file_url = $file_url_base.$file_name.'.csv';
3587
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3588
+            $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv';
3589 3589
             
3590
-            $items_count = (int)geodir_location_imex_count_locations();
3590
+            $items_count = (int) geodir_location_imex_count_locations();
3591 3591
             
3592
-            if ( isset( $_REQUEST['_st'] ) ) {
3593
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3594
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3595
-                $percentage = min( $percentage, 100 );
3592
+            if (isset($_REQUEST['_st'])) {
3593
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3594
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3595
+                $percentage = min($percentage, 100);
3596 3596
                 
3597 3597
                 $json['percentage'] = $percentage;
3598
-                wp_send_json( $json );
3598
+                wp_send_json($json);
3599 3599
             } else {
3600 3600
                 $chunk_file_paths = array();
3601 3601
                 
3602
-                if ( !$items_count > 0 ) {
3603
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3602
+                if (!$items_count > 0) {
3603
+                    $json['error'] = __('No records to export.', 'geodirectory');
3604 3604
                 } else {
3605
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3606
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3605
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3606
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3607 3607
                     
3608 3608
                     $j = $chunk_page_no;
3609
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3609
+                    $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j);
3610 3610
                     
3611 3611
                     $per_page = 500;
3612
-                    $per_page = min( $per_page, $chunk_per_page );
3613
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3612
+                    $per_page = min($per_page, $chunk_per_page);
3613
+                    $total_pages = ceil($chunk_per_page / $per_page);
3614 3614
                     
3615
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3616
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3615
+                    for ($i = 0; $i <= $total_pages; $i++) {
3616
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3617 3617
                         
3618 3618
                         $clear = $i == 0 ? true : false;
3619
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3619
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3620 3620
                     }
3621 3621
                     
3622
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3623
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3624
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3625
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3626
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3622
+                    if ($wp_filesystem->exists($file_path_temp)) {
3623
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3624
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3625
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3626
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3627 3627
                         
3628
-                        $file_url = $file_url_base . $chunk_file_name;
3629
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3628
+                        $file_url = $file_url_base.$chunk_file_name;
3629
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3630 3630
                     }
3631 3631
                     
3632
-                    if ( !empty($chunk_file_paths) ) {
3632
+                    if (!empty($chunk_file_paths)) {
3633 3633
                         $json['total'] = $items_count;
3634 3634
                         $json['files'] = $chunk_file_paths;
3635 3635
                     } else {
3636
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3636
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3637 3637
                     }
3638 3638
                 }
3639
-                wp_send_json( $json );
3639
+                wp_send_json($json);
3640 3640
             }
3641 3641
         }
3642 3642
         break;
3643 3643
         case 'export_hoods': {
3644
-            $file_url_base = geodir_path_import_export() . '/';
3645
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3646
-            $file_url = $file_url_base . $file_name . '.csv';
3647
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3648
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3644
+            $file_url_base = geodir_path_import_export().'/';
3645
+            $file_name = 'gd_neighbourhoods_'.date('dmyHi');
3646
+            $file_url = $file_url_base.$file_name.'.csv';
3647
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3648
+            $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv';
3649 3649
             
3650
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3650
+            $items_count = (int) geodir_location_imex_count_neighbourhoods();
3651 3651
             
3652
-            if ( isset( $_REQUEST['_st'] ) ) {
3653
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3654
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3655
-                $percentage = min( $percentage, 100 );
3652
+            if (isset($_REQUEST['_st'])) {
3653
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3654
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3655
+                $percentage = min($percentage, 100);
3656 3656
                 
3657 3657
                 $json['percentage'] = $percentage;
3658
-                wp_send_json( $json );
3658
+                wp_send_json($json);
3659 3659
             } else {
3660 3660
                 $chunk_file_paths = array();
3661 3661
                 
3662
-                if ( !$items_count > 0 ) {
3663
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3662
+                if (!$items_count > 0) {
3663
+                    $json['error'] = __('No records to export.', 'geodirectory');
3664 3664
                 } else {
3665
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3666
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3665
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3666
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3667 3667
                     
3668 3668
                     $j = $chunk_page_no;
3669
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3669
+                    $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j);
3670 3670
                     
3671 3671
                     $per_page = 500;
3672
-                    $per_page = min( $per_page, $chunk_per_page );
3673
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3672
+                    $per_page = min($per_page, $chunk_per_page);
3673
+                    $total_pages = ceil($chunk_per_page / $per_page);
3674 3674
                     
3675
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3676
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3675
+                    for ($i = 0; $i <= $total_pages; $i++) {
3676
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3677 3677
                         
3678 3678
                         $clear = $i == 0 ? true : false;
3679
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3679
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3680 3680
                     }
3681 3681
                     
3682
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3683
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3684
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3685
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3686
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3682
+                    if ($wp_filesystem->exists($file_path_temp)) {
3683
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3684
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3685
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3686
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3687 3687
                         
3688
-                        $file_url = $file_url_base . $chunk_file_name;
3689
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3688
+                        $file_url = $file_url_base.$chunk_file_name;
3689
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3690 3690
                     }
3691 3691
                     
3692
-                    if ( !empty($chunk_file_paths) ) {
3692
+                    if (!empty($chunk_file_paths)) {
3693 3693
                         $json['total'] = $items_count;
3694 3694
                         $json['files'] = $chunk_file_paths;
3695 3695
                     } else {
3696
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3696
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3697 3697
                     }
3698 3698
                 }
3699
-                wp_send_json( $json );
3699
+                wp_send_json($json);
3700 3700
             }
3701 3701
         }
3702 3702
         break;
@@ -3713,25 +3713,25 @@  discard block
 block discarded – undo
3713 3713
             }
3714 3714
             // WPML
3715 3715
             
3716
-            ini_set( 'auto_detect_line_endings', true );
3716
+            ini_set('auto_detect_line_endings', true);
3717 3717
             
3718 3718
             $uploads = wp_upload_dir();
3719 3719
             $uploads_dir = $uploads['path'];
3720 3720
             $uploads_subdir = $uploads['subdir'];
3721 3721
             
3722
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3723
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3722
+            $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL;
3723
+            $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip';
3724 3724
             
3725
-            $csv_file_arr = explode( '/', $csv_file );
3726
-            $csv_filename = end( $csv_file_arr );
3727
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3725
+            $csv_file_arr = explode('/', $csv_file);
3726
+            $csv_filename = end($csv_file_arr);
3727
+            $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename;
3728 3728
             
3729 3729
             $json['file'] = $csv_file;
3730
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3730
+            $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
3731 3731
             $file = array();
3732 3732
 
3733
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3734
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3733
+            if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
3734
+                $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename);
3735 3735
                 
3736 3736
                 if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3737 3737
                     $json['error'] = NULL;
@@ -3739,9 +3739,9 @@  discard block
 block discarded – undo
3739 3739
                     
3740 3740
                     $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3741 3741
                     setlocale(LC_ALL, 'en_US.UTF-8');
3742
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3743
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3744
-                            if ( !empty( $data ) ) {
3742
+                    if (($handle = fopen($target_path, "r")) !== FALSE) {
3743
+                        while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
3744
+                            if (!empty($data)) {
3745 3745
                                 $file[] = $data;
3746 3746
                             }
3747 3747
                         }
@@ -3755,19 +3755,19 @@  discard block
 block discarded – undo
3755 3755
                         $json['error'] = __('No data found in csv file.', 'geodirectory');
3756 3756
                     }
3757 3757
                 } else {
3758
-                    wp_send_json( $json );
3758
+                    wp_send_json($json);
3759 3759
                 }
3760 3760
             } else {
3761
-                wp_send_json( $json );
3761
+                wp_send_json($json);
3762 3762
             }
3763 3763
             
3764
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3765
-                wp_send_json( $json );
3764
+            if ($task == 'prepare_import' || !empty($json['error'])) {
3765
+                wp_send_json($json);
3766 3766
             }
3767 3767
             
3768 3768
             $total = $json['rows'];
3769
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3770
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3769
+            $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1;
3770
+            $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0;
3771 3771
             
3772 3772
             $count = $limit;
3773 3773
             
@@ -3792,13 +3792,13 @@  discard block
 block discarded – undo
3792 3792
             
3793 3793
             $post_types = geodir_get_posttypes();
3794 3794
 
3795
-            if ( $task == 'import_cat' ) {
3795
+            if ($task == 'import_cat') {
3796 3796
                 if (!empty($file)) {
3797 3797
                     $columns = isset($file[0]) ? $file[0] : NULL;
3798 3798
                     
3799 3799
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3800 3800
                         $json['error'] = CSV_INVAILD_FILE;
3801
-                        wp_send_json( $json );
3801
+                        wp_send_json($json);
3802 3802
                         exit;
3803 3803
                     }
3804 3804
                     
@@ -3809,7 +3809,7 @@  discard block
 block discarded – undo
3809 3809
                         
3810 3810
                         if (isset($file[$index])) {
3811 3811
                             $row = $file[$index];
3812
-                            $row = array_map( 'trim', $row );
3812
+                            $row = array_map('trim', $row);
3813 3813
                             //$row = array_map( 'utf8_encode', $row );
3814 3814
                             
3815 3815
                             $cat_id = '';
@@ -3826,42 +3826,42 @@  discard block
 block discarded – undo
3826 3826
                             $cat_id_original = '';
3827 3827
                             
3828 3828
                             $c = 0;
3829
-                            foreach ($columns as $column ) {
3830
-                                if ( $column == 'cat_id' ) {
3831
-                                    $cat_id = (int)$row[$c];
3832
-                                } else if ( $column == 'cat_name' ) {
3829
+                            foreach ($columns as $column) {
3830
+                                if ($column == 'cat_id') {
3831
+                                    $cat_id = (int) $row[$c];
3832
+                                } else if ($column == 'cat_name') {
3833 3833
                                     $cat_name = $row[$c];
3834
-                                } else if ( $column == 'cat_slug' ) {
3834
+                                } else if ($column == 'cat_slug') {
3835 3835
                                     $cat_slug = $row[$c];
3836
-                                } else if ( $column == 'cat_posttype' ) {
3836
+                                } else if ($column == 'cat_posttype') {
3837 3837
                                     $cat_posttype = $row[$c];
3838
-                                } else if ( $column == 'cat_parent' ) {
3838
+                                } else if ($column == 'cat_parent') {
3839 3839
                                     $cat_parent = trim($row[$c]);
3840
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3840
+                                } else if ($column == 'cat_schema' && $row[$c] != '') {
3841 3841
                                     $cat_schema = $row[$c];
3842
-                                } else if ( $column == 'cat_description' ) {
3842
+                                } else if ($column == 'cat_description') {
3843 3843
                                     $cat_description = $row[$c];
3844
-                                } else if ( $column == 'cat_top_description' ) {
3844
+                                } else if ($column == 'cat_top_description') {
3845 3845
                                     $cat_top_description = $row[$c];
3846
-                                } else if ( $column == 'cat_image' ) {
3846
+                                } else if ($column == 'cat_image') {
3847 3847
                                     $cat_image = $row[$c];
3848
-                                } else if ( $column == 'cat_icon' ) {
3848
+                                } else if ($column == 'cat_icon') {
3849 3849
                                     $cat_icon = $row[$c];
3850 3850
                                 }
3851 3851
                                 // WPML
3852
-                                if ( $is_wpml ) {
3853
-                                    if ( $column == 'cat_language' ) {
3854
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3855
-                                    } else if ( $column == 'cat_id_original' ) {
3856
-                                        $cat_id_original = (int)$row[$c];
3852
+                                if ($is_wpml) {
3853
+                                    if ($column == 'cat_language') {
3854
+                                        $cat_language = geodir_strtolower(trim($row[$c]));
3855
+                                    } else if ($column == 'cat_id_original') {
3856
+                                        $cat_id_original = (int) $row[$c];
3857 3857
                                     }
3858 3858
                                 }
3859 3859
                                 // WPML
3860 3860
                                 $c++;
3861 3861
                             }
3862 3862
                             
3863
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3864
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3863
+                            if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
3864
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
3865 3865
                                 
3866 3866
                                 $invalid++;
3867 3867
                                 continue;
@@ -3879,24 +3879,24 @@  discard block
 block discarded – undo
3879 3879
                             $term_data['description'] = $cat_description;
3880 3880
                             $term_data['cat_schema'] = $cat_schema;
3881 3881
                             $term_data['top_description'] = $cat_top_description;
3882
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3883
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3882
+                            $term_data['image'] = $cat_image != '' ? basename($cat_image) : '';
3883
+                            $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : '';
3884 3884
                             
3885 3885
                             //$term_data = array_map( 'utf8_encode', $term_data );
3886 3886
                             
3887
-                            $taxonomy = $cat_posttype . 'category';
3887
+                            $taxonomy = $cat_posttype.'category';
3888 3888
                             
3889 3889
                             $term_data['taxonomy'] = $taxonomy;
3890 3890
 
3891 3891
                             $term_parent_id = 0;
3892
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3892
+                            if ($cat_parent != "" || (int) $cat_parent > 0) {
3893 3893
                                 $term_parent = '';
3894 3894
                                 
3895
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3895
+                                if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
3896 3896
                                     //
3897
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3897
+                                } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
3898 3898
                                     //
3899
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3899
+                                } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
3900 3900
                                     //
3901 3901
                                 } else {
3902 3902
                                     $term_parent_data = array();
@@ -3904,104 +3904,104 @@  discard block
 block discarded – undo
3904 3904
                                     //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3905 3905
                                     $term_parent_data['taxonomy'] = $taxonomy;
3906 3906
                                     
3907
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3907
+                                    $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data);
3908 3908
                                 }
3909 3909
                                 
3910
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3911
-                                    $term_parent_id = (int)$term_parent->term_id;
3910
+                                if (!empty($term_parent) && !is_wp_error($term_parent)) {
3911
+                                    $term_parent_id = (int) $term_parent->term_id;
3912 3912
                                 }
3913 3913
                             }
3914
-                            $term_data['parent'] = (int)$term_parent_id;
3914
+                            $term_data['parent'] = (int) $term_parent_id;
3915 3915
 
3916 3916
                             $term_id = NULL;
3917
-                            if ( $import_choice == 'update' ) {
3918
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3917
+                            if ($import_choice == 'update') {
3918
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3919 3919
                                     $term_data['term_id'] = $term['term_id'];
3920 3920
                                     
3921
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3921
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3922 3922
                                         $updated++;
3923 3923
                                     } else {
3924 3924
                                         $invalid++;
3925
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3925
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3926 3926
                                     }
3927
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3927
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3928 3928
                                     $term_data['term_id'] = $term['term_id'];
3929 3929
                                     
3930
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3930
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3931 3931
                                         $updated++;
3932 3932
                                     } else {
3933 3933
                                         $invalid++;
3934
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3934
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3935 3935
                                     }
3936 3936
                                 } else {
3937
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3937
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3938 3938
                                         $created++;
3939 3939
                                     } else {
3940 3940
                                         $invalid++;
3941
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3941
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3942 3942
                                     }
3943 3943
                                 }
3944
-                            } else if ( $import_choice == 'skip' ) {
3945
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3944
+                            } else if ($import_choice == 'skip') {
3945
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3946 3946
                                     $skipped++;
3947
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3947
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3948 3948
                                     $skipped++;
3949 3949
                                 } else {
3950
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3950
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3951 3951
                                         $created++;
3952 3952
                                     } else {
3953 3953
                                         $invalid++;
3954
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3954
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3955 3955
                                     }
3956 3956
                                 }
3957 3957
                             } else {
3958 3958
                                 $invalid++;
3959
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3959
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3960 3960
                             }
3961 3961
                             
3962
-                            if ( $term_id ) {
3962
+                            if ($term_id) {
3963 3963
                                 // WPML
3964 3964
                                 if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
3965
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3966
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3965
+                                    $wpml_element_type = 'tax_'.$taxonomy;
3966
+                                    $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type);
3967 3967
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3968 3968
 
3969
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3969
+                                    $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type);
3970 3970
                                     
3971
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3971
+                                    $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language);
3972 3972
                                 }
3973 3973
                                 // WPML
3974 3974
                                 
3975
-                                if ( isset( $term_data['top_description'] ) ) {
3976
-                                    update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3975
+                                if (isset($term_data['top_description'])) {
3976
+                                    update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype);
3977 3977
                                 }
3978 3978
                                 
3979
-                                if ( isset( $term_data['cat_schema'] ) ) {
3980
-                                    update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3979
+                                if (isset($term_data['cat_schema'])) {
3980
+                                    update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype);
3981 3981
                                 }
3982 3982
             
3983 3983
                                 $attachment = false;
3984
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3985
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3986
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3984
+                                if (isset($term_data['image']) && $term_data['image'] != '') {
3985
+                                    $cat_image = geodir_get_default_catimage($term_id, $cat_posttype);
3986
+                                    $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : '';
3987 3987
                                     
3988
-                                    if ( basename($cat_image) != $term_data['image'] ) {
3988
+                                    if (basename($cat_image) != $term_data['image']) {
3989 3989
                                         $attachment = true;
3990
-                                        update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
3990
+                                        update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
3991 3991
                                     }
3992 3992
                                 }
3993 3993
                                 
3994
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
3995
-                                    $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
3996
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
3994
+                                if (isset($term_data['icon']) && $term_data['icon'] != '') {
3995
+                                    $cat_icon = get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype);
3996
+                                    $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
3997 3997
 
3998
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
3998
+                                    if (basename($cat_icon) != $term_data['icon']) {
3999 3999
                                         $attachment = true;
4000
-                                        update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4000
+                                        update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
4001 4001
                                     }
4002 4002
                                 }
4003 4003
                                 
4004
-                                if ( $attachment ) {
4004
+                                if ($attachment) {
4005 4005
                                     $images++;
4006 4006
                                 }
4007 4007
                             }
@@ -4023,35 +4023,35 @@  discard block
 block discarded – undo
4023 4023
                 $json['invalid'] = $invalid;
4024 4024
                 $json['images'] = $images;
4025 4025
                 
4026
-                wp_send_json( $json );
4026
+                wp_send_json($json);
4027 4027
                 exit;
4028
-            } else if ( $task == 'import_post' ) {
4029
-                $xtimings['###1'] = microtime(true)-$xstart;
4028
+            } else if ($task == 'import_post') {
4029
+                $xtimings['###1'] = microtime(true) - $xstart;
4030 4030
                 //run some stuff to make the import quicker
4031
-                wp_defer_term_counting( true );
4032
-                wp_defer_comment_counting( true );
4033
-                $wpdb->query( 'SET autocommit = 0;' );
4031
+                wp_defer_term_counting(true);
4032
+                wp_defer_comment_counting(true);
4033
+                $wpdb->query('SET autocommit = 0;');
4034 4034
 //
4035 4035
 //                remove_all_actions('publish_post');
4036 4036
 //                remove_all_actions('transition_post_status');
4037 4037
 //                remove_all_actions('publish_future_post');
4038 4038
 
4039 4039
                 if (!empty($file)) {
4040
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4040
+                    $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
4041 4041
                     $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4042 4042
                     $default_status = 'publish';
4043
-                    $current_date = date_i18n( 'Y-m-d', time() );
4043
+                    $current_date = date_i18n('Y-m-d', time());
4044 4044
                     
4045 4045
                     $columns = isset($file[0]) ? $file[0] : NULL;
4046 4046
                     
4047 4047
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4048 4048
                         $json['error'] = CSV_INVAILD_FILE;
4049
-                        wp_send_json( $json );
4049
+                        wp_send_json($json);
4050 4050
                         exit;
4051 4051
                     }
4052
-                    $xtimings['###2'] = microtime(true)-$xstart;
4052
+                    $xtimings['###2'] = microtime(true) - $xstart;
4053 4053
                     $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4054
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4054
+                    $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
4055 4055
                     $processed_actual = 0;
4056 4056
                     for ($i = 1; $i <= $limit; $i++) {
4057 4057
                         $index = $processed + $i;
@@ -4060,9 +4060,9 @@  discard block
 block discarded – undo
4060 4060
                         if (isset($file[$index])) {
4061 4061
                             $processed_actual++;
4062 4062
                             $row = $file[$index];
4063
-                            $row = array_map( 'trim', $row );
4063
+                            $row = array_map('trim', $row);
4064 4064
                             //$row = array_map( 'utf8_encode', $row );
4065
-                            $row = array_map( 'addslashes_gpc', $row );
4065
+                            $row = array_map('addslashes_gpc', $row);
4066 4066
                             
4067 4067
                             $post_id = '';
4068 4068
                             $post_title = '';
@@ -4100,80 +4100,80 @@  discard block
 block discarded – undo
4100 4100
                             $original_post_id = '';
4101 4101
                             
4102 4102
                             $c = 0;
4103
-                            foreach ($columns as $column ) {
4103
+                            foreach ($columns as $column) {
4104 4104
                                 $gd_post[$column] = $row[$c];
4105 4105
                                 
4106
-                                if ( $column == 'post_id' ) {
4106
+                                if ($column == 'post_id') {
4107 4107
                                     $post_id = $row[$c];
4108
-                                } else if ( $column == 'post_title' ) {
4108
+                                } else if ($column == 'post_title') {
4109 4109
                                     $post_title = sanitize_text_field($row[$c]);
4110
-                                } else if ( $column == 'post_author' ) {
4110
+                                } else if ($column == 'post_author') {
4111 4111
                                     $post_author = $row[$c];
4112
-                                } else if ( $column == 'post_date' ) {
4112
+                                } else if ($column == 'post_date') {
4113 4113
                                     $post_date = $row[$c];
4114
-                                } else if ( $column == 'post_content' ) {
4114
+                                } else if ($column == 'post_content') {
4115 4115
                                     $post_content = $row[$c];
4116
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4117
-                                    $post_category_arr = explode( ',', $row[$c] );
4118
-                                } else if ( $column == 'default_category' ) {
4116
+                                } else if ($column == 'post_category' && $row[$c] != '') {
4117
+                                    $post_category_arr = explode(',', $row[$c]);
4118
+                                } else if ($column == 'default_category') {
4119 4119
                                     $default_category = wp_kses_normalize_entities($row[$c]);
4120
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4121
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4122
-                                } else if ( $column == 'post_type' ) {
4120
+                                } else if ($column == 'post_tags' && $row[$c] != '') {
4121
+                                    $post_tags = explode(',', sanitize_text_field($row[$c]));
4122
+                                } else if ($column == 'post_type') {
4123 4123
                                     $post_type = $row[$c];
4124
-                                } else if ( $column == 'post_status' ) {
4125
-                                    $post_status = sanitize_key( $row[$c] );
4126
-                                } else if ( $column == 'is_featured' ) {
4127
-                                    $is_featured = (int)$row[$c];
4128
-                                } else if ( $column == 'geodir_video' ) {
4124
+                                } else if ($column == 'post_status') {
4125
+                                    $post_status = sanitize_key($row[$c]);
4126
+                                } else if ($column == 'is_featured') {
4127
+                                    $is_featured = (int) $row[$c];
4128
+                                } else if ($column == 'geodir_video') {
4129 4129
                                     $geodir_video = $row[$c];
4130
-                                } else if ( $column == 'post_address' ) {
4130
+                                } else if ($column == 'post_address') {
4131 4131
                                     $post_address = sanitize_text_field($row[$c]);
4132
-                                } else if ( $column == 'post_city' ) {
4132
+                                } else if ($column == 'post_city') {
4133 4133
                                     $post_city = sanitize_text_field($row[$c]);
4134
-                                } else if ( $column == 'post_region' ) {
4134
+                                } else if ($column == 'post_region') {
4135 4135
                                     $post_region = sanitize_text_field($row[$c]);
4136
-                                } else if ( $column == 'post_country' ) {
4136
+                                } else if ($column == 'post_country') {
4137 4137
                                     $post_country = sanitize_text_field($row[$c]);
4138
-                                } else if ( $column == 'post_zip' ) {
4138
+                                } else if ($column == 'post_zip') {
4139 4139
                                     $post_zip = sanitize_text_field($row[$c]);
4140
-                                } else if ( $column == 'post_latitude' ) {
4140
+                                } else if ($column == 'post_latitude') {
4141 4141
                                     $post_latitude = sanitize_text_field($row[$c]);
4142
-                                } else if ( $column == 'post_longitude' ) {
4142
+                                } else if ($column == 'post_longitude') {
4143 4143
                                     $post_longitude = sanitize_text_field($row[$c]);
4144
-                                } else if ( $column == 'post_neighbourhood' ) {
4144
+                                } else if ($column == 'post_neighbourhood') {
4145 4145
                                     $post_neighbourhood = sanitize_text_field($row[$c]);
4146 4146
                                     unset($gd_post[$column]);
4147
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4147
+                                } else if ($column == 'neighbourhood_latitude') {
4148 4148
                                     $neighbourhood_latitude = sanitize_text_field($row[$c]);
4149
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4149
+                                } else if ($column == 'neighbourhood_longitude') {
4150 4150
                                     $neighbourhood_longitude = sanitize_text_field($row[$c]);
4151
-                                } else if ( $column == 'geodir_timing' ) {
4151
+                                } else if ($column == 'geodir_timing') {
4152 4152
                                     $geodir_timing = sanitize_text_field($row[$c]);
4153
-                                } else if ( $column == 'geodir_contact' ) {
4153
+                                } else if ($column == 'geodir_contact') {
4154 4154
                                     $geodir_contact = sanitize_text_field($row[$c]);
4155
-                                } else if ( $column == 'geodir_email' ) {
4155
+                                } else if ($column == 'geodir_email') {
4156 4156
                                     $geodir_email = sanitize_email($row[$c]);
4157
-                                } else if ( $column == 'geodir_website' ) {
4157
+                                } else if ($column == 'geodir_website') {
4158 4158
                                     $geodir_website = sanitize_text_field($row[$c]);
4159
-                                } else if ( $column == 'geodir_twitter' ) {
4159
+                                } else if ($column == 'geodir_twitter') {
4160 4160
                                     $geodir_twitter = sanitize_text_field($row[$c]);
4161
-                                } else if ( $column == 'geodir_facebook' ) {
4161
+                                } else if ($column == 'geodir_facebook') {
4162 4162
                                     $geodir_facebook = sanitize_text_field($row[$c]);
4163
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4163
+                                } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
4164 4164
                                     $post_images[] = $row[$c];
4165
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4166
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4167
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4165
+                                } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
4166
+                                    $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
4167
+                                } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
4168 4168
                                     $row[$c] = str_replace('/', '-', $row[$c]);
4169
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4169
+                                    $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
4170 4170
                                 }
4171 4171
                                 // WPML
4172 4172
                                 if ($is_wpml) {
4173 4173
                                     if ($column == 'language') {
4174 4174
                                         $language = geodir_strtolower(trim($row[$c]));
4175 4175
                                     } else if ($column == 'original_post_id') {
4176
-                                        $original_post_id = (int)$row[$c];
4176
+                                        $original_post_id = (int) $row[$c];
4177 4177
                                     }
4178 4178
                                 }
4179 4179
                                 // WPML
@@ -4181,7 +4181,7 @@  discard block
 block discarded – undo
4181 4181
                             }
4182 4182
                             // listing claimed or not
4183 4183
                             if ($is_claim_active && isset($gd_post['claimed'])) {
4184
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4184
+                                $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0;
4185 4185
                             }
4186 4186
                             
4187 4187
                             // WPML
@@ -4192,43 +4192,43 @@  discard block
 block discarded – undo
4192 4192
 
4193 4193
                             $gd_post['IMAGE'] = $post_images;
4194 4194
                             
4195
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4196
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4195
+                            $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status;
4196
+                            $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status;
4197 4197
                                                                                                                 
4198 4198
                             $valid = true;
4199 4199
                             
4200
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4200
+                            if ($post_title == '' || !in_array($post_type, $post_types)) {
4201 4201
                                 $invalid++;
4202 4202
                                 $valid = false;
4203
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4203
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
4204 4204
                             }
4205
-                            $xtimings['###3'] = microtime(true)-$xstart;
4206
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4207
-                            if ( $location_allowed ) {
4205
+                            $xtimings['###3'] = microtime(true) - $xstart;
4206
+                            $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
4207
+                            if ($location_allowed) {
4208 4208
                                 $location_result = geodir_get_default_location();
4209
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4209
+                                if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
4210 4210
                                     $invalid_addr++;
4211 4211
                                     $valid = false;
4212
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4213
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4214
-                                    if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4212
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
4213
+                                } else if (!empty($location_result) && $location_result->location_id == 0) {
4214
+                                    if ((geodir_strtolower($post_city) != geodir_strtolower($location_result->city)) || (geodir_strtolower($post_region) != geodir_strtolower($location_result->region)) || (geodir_strtolower($post_country) != geodir_strtolower($location_result->country))) {
4215 4215
                                         $invalid_addr++;
4216 4216
                                         $valid = false;
4217
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4217
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
4218 4218
                                     } else {
4219 4219
                                         if (!$location_manager) {
4220
-                                            $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4220
+                                            $gd_post['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // Set the default location when location manager not activated.
4221 4221
                                         }
4222 4222
                                     }
4223 4223
                                 }
4224 4224
                             }
4225
-                            $xtimings['###4']   = microtime(true)-$xstart;
4226
-                            if ( !$valid ) {
4225
+                            $xtimings['###4'] = microtime(true) - $xstart;
4226
+                            if (!$valid) {
4227 4227
                                 continue;
4228 4228
                             }
4229 4229
 
4230
-                            $cat_taxonomy = $post_type . 'category';
4231
-                            $tags_taxonomy = $post_type . '_tags';
4230
+                            $cat_taxonomy = $post_type.'category';
4231
+                            $tags_taxonomy = $post_type.'_tags';
4232 4232
                             
4233 4233
                             if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4234 4234
                                 $post_category_arr = array_merge(array($default_category), $post_category_arr);
@@ -4236,29 +4236,29 @@  discard block
 block discarded – undo
4236 4236
 
4237 4237
                             $post_category = array();
4238 4238
                             $default_category_id = NULL;
4239
-                            if ( !empty( $post_category_arr ) ) {
4240
-                                foreach ( $post_category_arr as $value ) {
4241
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4239
+                            if (!empty($post_category_arr)) {
4240
+                                foreach ($post_category_arr as $value) {
4241
+                                    $category_name = wp_kses_normalize_entities(trim($value));
4242 4242
                                     
4243
-                                    if ( $category_name != '' ) {
4243
+                                    if ($category_name != '') {
4244 4244
                                         $term_category = array();
4245 4245
                                         
4246
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4246
+                                        if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
4247 4247
                                             $term_category = $term;
4248
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4248
+                                        } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
4249 4249
                                             $term_category = $term;
4250 4250
                                         } else {
4251 4251
                                             $term_data = array();
4252 4252
                                             $term_data['name'] = $category_name;
4253 4253
                                             $term_data['taxonomy'] = $cat_taxonomy;
4254 4254
                                             
4255
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4256
-                                            if ( $term_id ) {
4257
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4255
+                                            $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data);
4256
+                                            if ($term_id) {
4257
+                                                $term_category = get_term($term_id, $cat_taxonomy);
4258 4258
                                             }
4259 4259
                                         }
4260 4260
                                         
4261
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4261
+                                        if (!empty($term_category) && !is_wp_error($term_category)) {
4262 4262
                                             $post_category[] = intval($term_category->term_id);
4263 4263
                                             
4264 4264
                                             if ($category_name == $default_category) {
@@ -4268,12 +4268,12 @@  discard block
 block discarded – undo
4268 4268
                                     }
4269 4269
                                 }
4270 4270
                             }
4271
-                            $xtimings['###5'] = microtime(true)-$xstart;
4271
+                            $xtimings['###5'] = microtime(true) - $xstart;
4272 4272
                             $save_post = array();
4273 4273
                             $save_post['post_title'] = $post_title;
4274 4274
                             if (!empty($post_date)) {
4275 4275
                                 $save_post['post_date'] = $post_date;
4276
-                                $save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4276
+                                $save_post['post_date_gmt'] = get_gmt_from_date($post_date);
4277 4277
                             }
4278 4278
                             $save_post['post_content'] = $post_content;
4279 4279
                             $save_post['post_type'] = $post_type;
@@ -4283,15 +4283,15 @@  discard block
 block discarded – undo
4283 4283
                             $save_post['post_tags'] = $post_tags;
4284 4284
 
4285 4285
                             $saved_post_id = NULL;
4286
-                            if ( $import_choice == 'update' ) {
4287
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4286
+                            if ($import_choice == 'update') {
4287
+                                $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
4288 4288
                                 
4289
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4289
+                                if ($post_id > 0 && get_post($post_id)) {
4290 4290
                                     $save_post['ID'] = $post_id;
4291 4291
                                     
4292
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4293
-                                        if ( is_wp_error( $saved_post_id ) ) {
4294
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4292
+                                    if ($saved_post_id = wp_update_post($save_post, true)) {
4293
+                                        if (is_wp_error($saved_post_id)) {
4294
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4295 4295
                                             $saved_post_id = 0;
4296 4296
                                         } else {
4297 4297
                                             $saved_post_id = $post_id;
@@ -4299,9 +4299,9 @@  discard block
 block discarded – undo
4299 4299
                                         }
4300 4300
                                     }
4301 4301
                                 } else {
4302
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4303
-                                        if ( is_wp_error( $saved_post_id ) ) {
4304
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4302
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4303
+                                        if (is_wp_error($saved_post_id)) {
4304
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4305 4305
                                             $saved_post_id = 0;
4306 4306
                                         } else {
4307 4307
                                             $created++;
@@ -4309,19 +4309,19 @@  discard block
 block discarded – undo
4309 4309
                                     }
4310 4310
                                 }
4311 4311
                                 
4312
-                                if ( !$saved_post_id > 0 ) {
4312
+                                if (!$saved_post_id > 0) {
4313 4313
                                     $invalid++;
4314
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4314
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error);
4315 4315
                                 }
4316
-                            } else if ( $import_choice == 'skip' ) {
4317
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4316
+                            } else if ($import_choice == 'skip') {
4317
+                                if ($post_id > 0 && get_post($post_id)) {
4318 4318
                                     $skipped++;	
4319 4319
                                 } else {
4320
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4321
-                                        if ( is_wp_error( $saved_post_id ) ) {
4320
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4321
+                                        if (is_wp_error($saved_post_id)) {
4322 4322
                                             $invalid++;
4323 4323
                                             
4324
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4324
+                                            geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error);
4325 4325
                                             $saved_post_id = 0;
4326 4326
                                         } else {
4327 4327
                                             $created++;
@@ -4329,28 +4329,28 @@  discard block
 block discarded – undo
4329 4329
                                     } else {
4330 4330
                                         $invalid++;
4331 4331
                                         
4332
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4332
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4333 4333
                                     }
4334 4334
                                 }
4335 4335
                             } else {
4336 4336
                                 $invalid++;
4337 4337
                                 
4338
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4338
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4339 4339
                             }
4340
-                            $xtimings['###6'] = microtime(true)-$xstart;
4341
-                            if ( (int)$saved_post_id > 0 ) {
4340
+                            $xtimings['###6'] = microtime(true) - $xstart;
4341
+                            if ((int) $saved_post_id > 0) {
4342 4342
                                 // WPML
4343 4343
                                 if ($is_wpml && $original_post_id > 0 && $language != '') {
4344
-                                    $wpml_post_type = 'post_' . $post_type;
4345
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4344
+                                    $wpml_post_type = 'post_'.$post_type;
4345
+                                    $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type);
4346 4346
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4347 4347
 
4348
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4348
+                                    $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type);
4349 4349
                                     
4350
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4350
+                                    $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language);
4351 4351
                                 }
4352 4352
                                 // WPML
4353
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4353
+                                $gd_post_info = geodir_get_post_info($saved_post_id);
4354 4354
                                 
4355 4355
                                 $gd_post['post_id'] = $saved_post_id;
4356 4356
                                 $gd_post['ID'] = $saved_post_id;
@@ -4362,7 +4362,7 @@  discard block
 block discarded – undo
4362 4362
                                                     
4363 4363
                                 // post location
4364 4364
                                 $post_location_id = 0;
4365
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4365
+                                if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
4366 4366
                                     $gd_post['post_neighbourhood'] = '';
4367 4367
                                     
4368 4368
                                     $post_location_info = array(
@@ -4372,7 +4372,7 @@  discard block
 block discarded – undo
4372 4372
                                                                 'geo_lat' => $post_latitude,
4373 4373
                                                                 'geo_lng' => $post_longitude
4374 4374
                                                             );
4375
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4375
+                                    if ($location_id = (int) geodir_add_new_location($post_location_info)) {
4376 4376
                                         $post_location_id = $location_id;
4377 4377
                                     }
4378 4378
                                     
@@ -4410,14 +4410,14 @@  discard block
 block discarded – undo
4410 4410
                                 $gd_post['post_location_id'] = $post_location_id;
4411 4411
                                 
4412 4412
                                 // post package info
4413
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4413
+                                $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0;
4414 4414
                                 if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4415 4415
                                     $package_id = $gd_post_info->package_id;
4416 4416
                                 }
4417 4417
                                 
4418 4418
                                 $package_info = array();
4419 4419
                                 if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4420
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4420
+                                    $package_info = (array) geodir_get_package_info_by_id($package_id);
4421 4421
                                     
4422 4422
                                     if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4423 4423
                                         $package_info = array();
@@ -4425,18 +4425,18 @@  discard block
 block discarded – undo
4425 4425
                                 }
4426 4426
                                 
4427 4427
                                 if (empty($package_info)) {
4428
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4428
+                                    $package_info = (array) geodir_post_package_info(array(), '', $post_type);
4429 4429
                                 }
4430 4430
                                  
4431
-                                if (!empty($package_info))	 {
4431
+                                if (!empty($package_info)) {
4432 4432
                                     $package_id = $package_info['pid'];
4433 4433
                                     
4434 4434
                                     if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4435 4435
                                         $gd_post['expire_date'] = $expire_date;
4436 4436
                                     } else {
4437
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4438
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4439
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4437
+                                        if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
4438
+                                            $gd_post['alive_days'] = (int) $package_info['days'];
4439
+                                            $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
4440 4440
                                         } else {
4441 4441
                                             $gd_post['expire_date'] = 'Never';
4442 4442
                                         }
@@ -4445,7 +4445,7 @@  discard block
 block discarded – undo
4445 4445
                                     $gd_post['package_id'] = $package_id;
4446 4446
                                 }
4447 4447
 
4448
-                                $table = $plugin_prefix . $post_type . '_detail';
4448
+                                $table = $plugin_prefix.$post_type.'_detail';
4449 4449
                                 
4450 4450
                                 if ($post_type == 'gd_event') {
4451 4451
                                     $gd_post = geodir_imex_process_event_data($gd_post);
@@ -4456,65 +4456,65 @@  discard block
 block discarded – undo
4456 4456
                                 }
4457 4457
 
4458 4458
                                 // Export franchise fields
4459
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4459
+                                $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
4460 4460
                                 if ($is_franchise_active) {
4461
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
4461
+                                    if (isset($gd_post['gd_is_franchise']) && (int) $gd_post['gd_is_franchise'] == 1) {
4462 4462
                                         $gd_franchise_lock = array();
4463 4463
                                         
4464
-                                        if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4465
-                                            $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4466
-                                            $gd_franchise_lock = trim( $gd_franchise_lock );
4467
-                                            $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4464
+                                        if (isset($gd_post['gd_franchise_lock'])) {
4465
+                                            $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
4466
+                                            $gd_franchise_lock = trim($gd_franchise_lock);
4467
+                                            $gd_franchise_lock = explode(",", $gd_franchise_lock);
4468 4468
                                         }
4469 4469
                                         
4470
-                                        update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4471
-                                        update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4470
+                                        update_post_meta($saved_post_id, 'gd_is_franchise', 1);
4471
+                                        update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock);
4472 4472
                                     } else {
4473
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4474
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4473
+                                        if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
4474
+                                            geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']);
4475 4475
                                         }
4476 4476
                                     }
4477 4477
                                 }
4478 4478
                                 
4479 4479
                                 if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4480
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4480
+                                    $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
4481 4481
                                     if ($default_category_id) {
4482 4482
                                         $save_post['post_default_category'] = $default_category_id;
4483 4483
                                         $gd_post['default_category'] = $default_category_id;
4484 4484
                                     }
4485 4485
                                     $gd_post[$cat_taxonomy] = $save_post['post_category'];
4486 4486
                                 }
4487
-                                $xtimings['###7'] = microtime(true)-$xstart;
4487
+                                $xtimings['###7'] = microtime(true) - $xstart;
4488 4488
                                 // Save post info
4489
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4490
-                                $xtimings['###8'] = microtime(true)-$xstart;
4489
+                                geodir_save_post_info($saved_post_id, $gd_post);
4490
+                                $xtimings['###8'] = microtime(true) - $xstart;
4491 4491
                                 // post taxonomies
4492
-                                if ( !empty( $save_post['post_category'] ) ) {
4493
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4492
+                                if (!empty($save_post['post_category'])) {
4493
+                                    wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy);
4494 4494
                                     
4495
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4495
+                                    $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : '';
4496 4496
                                     if ($default_category_id) {
4497 4497
                                         $post_default_category = $default_category_id;
4498 4498
                                     }
4499 4499
                                     $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4500 4500
                                     $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4501
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4501
+                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
4502 4502
                                     
4503 4503
                                     if ($post_category_str != '' && $post_default_category) {
4504
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4504
+                                        $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str);
4505 4505
                                     }
4506 4506
                                     
4507 4507
                                     $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4508 4508
                                     
4509
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4509
+                                    geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str);
4510 4510
                                 }
4511
-                                $xtimings['###8.1'] = microtime(true)-$xstart;
4512
-                                if ( !empty( $save_post['post_tags'] ) ) {
4513
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4511
+                                $xtimings['###8.1'] = microtime(true) - $xstart;
4512
+                                if (!empty($save_post['post_tags'])) {
4513
+                                    wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy);
4514 4514
                                 }
4515
-                                $xtimings['###9'] = microtime(true)-$xstart;
4515
+                                $xtimings['###9'] = microtime(true) - $xstart;
4516 4516
                                 // Post images
4517
-                                if ( !empty( $post_images ) ) {
4517
+                                if (!empty($post_images)) {
4518 4518
                                     $post_images = array_unique($post_images);
4519 4519
                                     
4520 4520
                                     $old_post_images_arr = array();
@@ -4522,65 +4522,65 @@  discard block
 block discarded – undo
4522 4522
                                     
4523 4523
                                     $order = 1;
4524 4524
                                     
4525
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4526
-                                    $xtimings['###9.1'] = microtime(true)-$xstart;
4525
+                                    $old_post_images = geodir_get_images($saved_post_id);
4526
+                                    $xtimings['###9.1'] = microtime(true) - $xstart;
4527 4527
                                     if (!empty($old_post_images)) {
4528
-                                        foreach( $old_post_images as $old_post_image ) {
4528
+                                        foreach ($old_post_images as $old_post_image) {
4529 4529
                                             if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4530 4530
                                                 $old_post_images_arr[] = $old_post_image->file;
4531 4531
                                             }
4532 4532
                                         }
4533 4533
                                     }
4534 4534
 
4535
-                                    foreach ( $post_images as $post_image ) {
4536
-                                        $image_name = basename( $post_image );
4535
+                                    foreach ($post_images as $post_image) {
4536
+                                        $image_name = basename($post_image);
4537 4537
                                         $saved_post_images_arr[] = $image_name;
4538 4538
                                         
4539
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4539
+                                        if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
4540 4540
                                             continue; // Skip if image already exists.
4541 4541
                                         }
4542 4542
                                         
4543
-                                        $image_name_parts = explode( '.', $image_name );
4544
-                                        array_pop( $image_name_parts );
4545
-                                        $proper_image_name = implode( '.', $image_name_parts );
4546
-                                        $xtimings['###9.2'] = microtime(true)-$xstart;
4547
-                                        $arr_file_type = wp_check_filetype( $image_name );
4548
-                                        $xtimings['###9.3'] = microtime(true)-$xstart;
4549
-                                        if ( !empty( $arr_file_type ) ) {
4543
+                                        $image_name_parts = explode('.', $image_name);
4544
+                                        array_pop($image_name_parts);
4545
+                                        $proper_image_name = implode('.', $image_name_parts);
4546
+                                        $xtimings['###9.2'] = microtime(true) - $xstart;
4547
+                                        $arr_file_type = wp_check_filetype($image_name);
4548
+                                        $xtimings['###9.3'] = microtime(true) - $xstart;
4549
+                                        if (!empty($arr_file_type)) {
4550 4550
                                             $uploaded_file_type = $arr_file_type['type'];
4551 4551
                                             
4552 4552
                                             $attachment = array();
4553 4553
                                             $attachment['post_id'] = $saved_post_id;
4554 4554
                                             $attachment['title'] = $proper_image_name;
4555 4555
                                             $attachment['content'] = '';
4556
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4556
+                                            $attachment['file'] = $uploads_subdir.'/'.$image_name;
4557 4557
                                             $attachment['mime_type'] = $uploaded_file_type;
4558 4558
                                             $attachment['menu_order'] = $order;
4559 4559
                                             $attachment['is_featured'] = 0;
4560 4560
 
4561 4561
                                             $attachment_set = '';
4562
-                                            foreach ( $attachment as $key => $val ) {
4563
-                                                if ( $val != '' ) {
4564
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4562
+                                            foreach ($attachment as $key => $val) {
4563
+                                                if ($val != '') {
4564
+                                                    $attachment_set .= $key." = '".$val."', ";
4565 4565
                                                 }
4566 4566
                                             }
4567
-                                            $attachment_set = trim( $attachment_set, ", " );
4567
+                                            $attachment_set = trim($attachment_set, ", ");
4568 4568
                                                                                         
4569 4569
                                             // Add new attachment
4570
-                                            $xtimings['###9.4'] = microtime(true)-$xstart;
4571
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4572
-                                            $xtimings['###9.5'] = microtime(true)-$xstart;
4570
+                                            $xtimings['###9.4'] = microtime(true) - $xstart;
4571
+                                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
4572
+                                            $xtimings['###9.5'] = microtime(true) - $xstart;
4573 4573
                                             $order++;
4574 4574
                                         }
4575 4575
                                     }
4576 4576
 
4577
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4577
+                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
4578 4578
                                     // Remove previous attachment
4579
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4580
-                                    $xtimings['###9.6'] = microtime(true)-$xstart;
4581
-                                    if ( !empty( $saved_post_images_arr ) ) {
4579
+                                    $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
4580
+                                    $xtimings['###9.6'] = microtime(true) - $xstart;
4581
+                                    if (!empty($saved_post_images_arr)) {
4582 4582
                                         geodir_set_wp_featured_image($saved_post_id);
4583
-                                        $xtimings['###9.7'] = microtime(true)-$xstart;
4583
+                                        $xtimings['###9.7'] = microtime(true) - $xstart;
4584 4584
                                         /*
4585 4585
                                         $menu_order = 1;
4586 4586
                                         
@@ -4596,14 +4596,14 @@  discard block
 block discarded – undo
4596 4596
                                         }*/
4597 4597
                                     }
4598 4598
                                     
4599
-                                    if ( $order > 1 ) {
4599
+                                    if ($order > 1) {
4600 4600
                                         $images++;
4601 4601
                                     }
4602 4602
                                 }
4603
-                                $xtimings['###10'] = microtime(true)-$xstart;
4603
+                                $xtimings['###10'] = microtime(true) - $xstart;
4604 4604
                                 /** This action is documented in geodirectory-functions/post-functions.php */
4605
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4606
-                                $xtimings['###11'] = microtime(true)-$xstart;
4605
+                                do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
4606
+                                $xtimings['###11'] = microtime(true) - $xstart;
4607 4607
                                 if (isset($is_featured)) {
4608 4608
                                     geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4609 4609
                                 }
@@ -4613,7 +4613,7 @@  discard block
 block discarded – undo
4613 4613
                                 if (isset($gd_post['expire_date'])) {
4614 4614
                                     geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4615 4615
                                 }
4616
-                                $xtimings['###12'] = microtime(true)-$xstart;
4616
+                                $xtimings['###12'] = microtime(true) - $xstart;
4617 4617
                             }
4618 4618
                             
4619 4619
                             // WPML
@@ -4626,11 +4626,11 @@  discard block
 block discarded – undo
4626 4626
                 }
4627 4627
 
4628 4628
                 //undo some stuff to make the import quicker
4629
-                wp_defer_term_counting( false );
4630
-                wp_defer_comment_counting( false );
4631
-                $wpdb->query( 'COMMIT;' );
4632
-                $wpdb->query( 'SET autocommit = 1;' );
4633
-                $xtimings['###13'] = microtime(true)-$xstart;
4629
+                wp_defer_term_counting(false);
4630
+                wp_defer_comment_counting(false);
4631
+                $wpdb->query('COMMIT;');
4632
+                $wpdb->query('SET autocommit = 1;');
4633
+                $xtimings['###13'] = microtime(true) - $xstart;
4634 4634
                 $json = array();
4635 4635
                 $json['processed'] = $processed_actual;
4636 4636
                 $json['created'] = $created;
@@ -4639,13 +4639,13 @@  discard block
 block discarded – undo
4639 4639
                 $json['invalid'] = $invalid;
4640 4640
                 $json['invalid_addr'] = $invalid_addr;
4641 4641
                 $json['images'] = $images;
4642
-                $json['timing'] = microtime(true)-$xstart;
4642
+                $json['timing'] = microtime(true) - $xstart;
4643 4643
                 $json['timings'] = $xtimings;
4644 4644
                 
4645 4645
 
4646
-                wp_send_json( $json );
4646
+                wp_send_json($json);
4647 4647
                 exit;
4648
-            } else if ( $task == 'import_loc' ) {
4648
+            } else if ($task == 'import_loc') {
4649 4649
                 global $gd_post_types;
4650 4650
                 $gd_post_types = $post_types;
4651 4651
                 
@@ -4654,82 +4654,82 @@  discard block
 block discarded – undo
4654 4654
                     
4655 4655
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4656 4656
                         $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4657
-                        wp_send_json( $json );
4657
+                        wp_send_json($json);
4658 4658
                     }
4659 4659
                     
4660 4660
                     $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4661
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4661
+                    $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
4662 4662
                     for ($i = 1; $i <= $limit; $i++) {
4663 4663
                         $index = $processed + $i;
4664 4664
                         
4665 4665
                         if (isset($file[$index])) {
4666 4666
                             $row = $file[$index];
4667
-                            $row = array_map( 'trim', $row );
4667
+                            $row = array_map('trim', $row);
4668 4668
                             $data = array();
4669 4669
                             
4670
-                            foreach ($columns as $c => $column ) {
4670
+                            foreach ($columns as $c => $column) {
4671 4671
                                 if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4672 4672
                                     $data[$column] = $row[$c];
4673 4673
                                 }
4674 4674
                             }
4675 4675
 
4676
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4676
+                            if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
4677 4677
                                 $invalid++;
4678
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4678
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4679 4679
                                 continue;
4680 4680
                             }
4681 4681
                             
4682 4682
                             $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4683 4683
                             
4684
-                            if ( $import_choice == 'update' ) {
4685
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4686
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4684
+                            if ($import_choice == 'update') {
4685
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4686
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4687 4687
                                         $updated++;
4688 4688
                                     } else {
4689 4689
                                         $invalid++;
4690
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4690
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4691 4691
                                     }
4692
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4693
-                                    $data['location_id'] = (int)$location->location_id;
4692
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4693
+                                    $data['location_id'] = (int) $location->location_id;
4694 4694
                                     
4695
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4696
-                                        $data['location_id'] = (int)$location->location_id;
4697
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4698
-                                        $data['location_id'] = (int)$location->location_id;
4699
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4700
-                                        $data['location_id'] = (int)$location->location_id;
4695
+                                    if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
4696
+                                        $data['location_id'] = (int) $location->location_id;
4697
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
4698
+                                        $data['location_id'] = (int) $location->location_id;
4699
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
4700
+                                        $data['location_id'] = (int) $location->location_id;
4701 4701
                                     }
4702 4702
                                     
4703
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4703
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4704 4704
                                         $updated++;
4705 4705
                                     } else {
4706 4706
                                         $invalid++;
4707
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4707
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4708 4708
                                     }
4709 4709
                                 } else {
4710
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4710
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4711 4711
                                         $created++;
4712 4712
                                     } else {
4713 4713
                                         $invalid++;
4714
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4714
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4715 4715
                                     }
4716 4716
                                 }
4717
-                            } elseif ( $import_choice == 'skip' ) {
4718
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4717
+                            } elseif ($import_choice == 'skip') {
4718
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4719 4719
                                     $skipped++;
4720
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4720
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4721 4721
                                     $skipped++;
4722 4722
                                 } else {
4723
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4723
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4724 4724
                                         $created++;
4725 4725
                                     } else {
4726 4726
                                         $invalid++;
4727
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4727
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4728 4728
                                     }
4729 4729
                                 }
4730 4730
                             } else {
4731 4731
                                 $invalid++;
4732
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4732
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4733 4733
                             }
4734 4734
                         }
4735 4735
                     }
@@ -4743,24 +4743,24 @@  discard block
 block discarded – undo
4743 4743
                 $json['invalid'] = $invalid;
4744 4744
                 $json['images'] = $images;
4745 4745
                 
4746
-                wp_send_json( $json );
4747
-            } else if ( $task == 'import_hood' ) {               
4746
+                wp_send_json($json);
4747
+            } else if ($task == 'import_hood') {               
4748 4748
                 if (!empty($file)) {
4749 4749
                     $columns = isset($file[0]) ? $file[0] : NULL;
4750 4750
                     
4751 4751
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4752 4752
                         $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4753
-                        wp_send_json( $json );
4753
+                        wp_send_json($json);
4754 4754
                     }
4755 4755
                     
4756 4756
                     $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4757
-                    $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4757
+                    $gd_error_hood = __('Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory');
4758 4758
                     for ($i = 1; $i <= $limit; $i++) {
4759 4759
                         $index = $processed + $i;
4760 4760
                         
4761 4761
                         if (isset($file[$index])) {
4762 4762
                             $row = $file[$index];
4763
-                            $row = array_map( 'trim', $row );
4763
+                            $row = array_map('trim', $row);
4764 4764
                             $data = array();
4765 4765
                             
4766 4766
                             foreach ($columns as $c => $column) {
@@ -4771,20 +4771,20 @@  discard block
 block discarded – undo
4771 4771
 
4772 4772
                             if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4773 4773
                                 $invalid++;
4774
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4774
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4775 4775
                                 continue;
4776 4776
                             }
4777 4777
                             
4778 4778
                             $location_info = array();
4779
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4780
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4779
+                            if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
4780
+                                $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
4781 4781
                             } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4782 4782
                                 $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4783 4783
                             }
4784 4784
 
4785 4785
                             if (empty($location_info)) {
4786 4786
                                 $invalid++;
4787
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4787
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4788 4788
                                 continue;
4789 4789
                             }
4790 4790
                             
@@ -4799,35 +4799,35 @@  discard block
 block discarded – undo
4799 4799
                             $hood_data['hood_longitude'] = $data['longitude'];
4800 4800
                             $hood_data['hood_location_id'] = $location_id;
4801 4801
                                     
4802
-                            if ( $import_choice == 'update' ) {
4803
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4804
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4802
+                            if ($import_choice == 'update') {
4803
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4804
+                                    $hood_data['hood_id'] = (int) $data['neighbourhood_id'];
4805 4805
                                     
4806 4806
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4807 4807
                                         $updated++;
4808 4808
                                     } else {
4809 4809
                                         $invalid++;
4810
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4810
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4811 4811
                                     }
4812 4812
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4813
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4813
+                                    $hood_data['hood_id'] = (int) $neighbourhood->hood_id;
4814 4814
                                     
4815 4815
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4816 4816
                                         $updated++;
4817 4817
                                     } else {
4818 4818
                                         $invalid++;
4819
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4819
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4820 4820
                                     }
4821 4821
                                 } else {
4822 4822
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4823 4823
                                         $created++;
4824 4824
                                     } else {
4825 4825
                                         $invalid++;
4826
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4826
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4827 4827
                                     }
4828 4828
                                 }
4829
-                            } elseif ( $import_choice == 'skip' ) {
4830
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4829
+                            } elseif ($import_choice == 'skip') {
4830
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4831 4831
                                     $skipped++;
4832 4832
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4833 4833
                                     $skipped++;
@@ -4837,12 +4837,12 @@  discard block
 block discarded – undo
4837 4837
                                         $created++;
4838 4838
                                     } else {
4839 4839
                                         $invalid++;
4840
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4840
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4841 4841
                                     }
4842 4842
                                 }
4843 4843
                             } else {
4844 4844
                                 $invalid++;
4845
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4845
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4846 4846
                             }
4847 4847
                         }
4848 4848
                     }
@@ -4856,7 +4856,7 @@  discard block
 block discarded – undo
4856 4856
                 $json['invalid'] = $invalid;
4857 4857
                 $json['images'] = $images;
4858 4858
                 
4859
-                wp_send_json( $json );
4859
+                wp_send_json($json);
4860 4860
             }
4861 4861
         }
4862 4862
         break;
@@ -4900,29 +4900,29 @@  discard block
 block discarded – undo
4900 4900
  * }
4901 4901
  * @return int|bool Term id when success, false when fail.
4902 4902
  */
4903
-function geodir_imex_insert_term( $taxonomy, $term_data ) {
4904
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4903
+function geodir_imex_insert_term($taxonomy, $term_data) {
4904
+	if (empty($taxonomy) || empty($term_data)) {
4905 4905
 		return false;
4906 4906
 	}
4907 4907
 	
4908
-	$term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : '';
4908
+	$term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : '';
4909 4909
 	$args = array();
4910
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4911
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4912
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4910
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4911
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4912
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4913 4913
 	
4914
-	if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
4915
-		$term_args = array_merge( $term_data, $args );
4916
-		$defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4917
-		$term_args = wp_parse_args( $term_args, $defaults );
4918
-		$term_args = sanitize_term( $term_args, $taxonomy, 'db' );
4919
-		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4914
+	if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
4915
+		$term_args = array_merge($term_data, $args);
4916
+		$defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4917
+		$term_args = wp_parse_args($term_args, $defaults);
4918
+		$term_args = sanitize_term($term_args, $taxonomy, 'db');
4919
+		$args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args);
4920 4920
 	}
4921 4921
 	
4922
-    if( !empty( $term ) ) {
4923
-		$result = wp_insert_term( $term, $taxonomy, $args );
4924
-        if( !is_wp_error( $result ) ) {
4925
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4922
+    if (!empty($term)) {
4923
+		$result = wp_insert_term($term, $taxonomy, $args);
4924
+        if (!is_wp_error($result)) {
4925
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4926 4926
         }
4927 4927
     }
4928 4928
 	
@@ -4952,36 +4952,36 @@  discard block
 block discarded – undo
4952 4952
  * }
4953 4953
  * @return int|bool Term id when success, false when fail.
4954 4954
  */
4955
-function geodir_imex_update_term( $taxonomy, $term_data ) {
4956
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4955
+function geodir_imex_update_term($taxonomy, $term_data) {
4956
+	if (empty($taxonomy) || empty($term_data)) {
4957 4957
 		return false;
4958 4958
 	}
4959 4959
 	
4960
-	$term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0;
4960
+	$term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0;
4961 4961
 	
4962 4962
 	$args = array();
4963
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4964
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4965
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4963
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4964
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4965
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4966 4966
 	
4967
-	if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
4967
+	if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
4968 4968
 		$term_data['term_id'] = $term_info['term_id'];
4969 4969
 		
4970
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4970
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
4971 4971
 		
4972
-		if( !is_wp_error( $result ) ) {
4973
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4972
+		if (!is_wp_error($result)) {
4973
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4974 4974
         }
4975
-	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4975
+	} else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
4976 4976
 		$term_data['term_id'] = $term_info['term_id'];
4977 4977
 		
4978
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4978
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
4979 4979
 		
4980
-		if( !is_wp_error( $result ) ) {
4981
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4980
+		if (!is_wp_error($result)) {
4981
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4982 4982
         }
4983 4983
 	} else {
4984
-		return geodir_imex_insert_term( $taxonomy, $term_data );
4984
+		return geodir_imex_insert_term($taxonomy, $term_data);
4985 4985
 	}
4986 4986
 	
4987 4987
 	return false;
@@ -5000,20 +5000,20 @@  discard block
 block discarded – undo
5000 5000
  * @param string $post_type Post type.
5001 5001
  * @return int Posts count.
5002 5002
  */
5003
-function geodir_get_posts_count( $post_type ) {
5003
+function geodir_get_posts_count($post_type) {
5004 5004
     global $wpdb, $plugin_prefix;
5005 5005
 
5006
-    if ( !post_type_exists( $post_type ) ) {
5006
+    if (!post_type_exists($post_type)) {
5007 5007
         return 0;
5008 5008
     }
5009 5009
         
5010
-    $table = $plugin_prefix . $post_type . '_detail';
5010
+    $table = $plugin_prefix.$post_type.'_detail';
5011 5011
 
5012 5012
     // Skip listing with statuses trash, auto-draft etc...
5013 5013
     $skip_statuses = geodir_imex_export_skip_statuses();
5014 5014
     $where_statuses = '';
5015
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5016
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5015
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5016
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5017 5017
     }
5018 5018
     
5019 5019
     /**
@@ -5024,11 +5024,11 @@  discard block
 block discarded – undo
5024 5024
      *
5025 5025
      * @param string $where SQL where clause part.
5026 5026
      */
5027
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5027
+    $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
5028 5028
 
5029
-    $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
5029
+    $query = $wpdb->prepare("SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses, $post_type);
5030 5030
 
5031
-    $posts_count = (int)$wpdb->get_var( $query );
5031
+    $posts_count = (int) $wpdb->get_var($query);
5032 5032
     
5033 5033
     /**
5034 5034
      * Modify returned post counts for the current post type.
@@ -5039,7 +5039,7 @@  discard block
 block discarded – undo
5039 5039
      * @param int $posts_count Post counts.
5040 5040
      * @param string $post_type Post type.
5041 5041
      */
5042
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5042
+    $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
5043 5043
 
5044 5044
     return $posts_count;
5045 5045
 }
@@ -5061,19 +5061,19 @@  discard block
 block discarded – undo
5061 5061
  * @param int $page_no Page number. Default 0.
5062 5062
  * @return array Array of posts data.
5063 5063
  */
5064
-function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {	
5064
+function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {	
5065 5065
 	global $wp_filesystem;
5066 5066
 
5067
-	$posts = geodir_get_export_posts( $post_type, $per_page, $page_no );
5067
+	$posts = geodir_get_export_posts($post_type, $per_page, $page_no);
5068 5068
 
5069 5069
 	$csv_rows = array();
5070 5070
 	
5071
-	if ( !empty( $posts ) ) {
5072
-		$is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' );
5071
+	if (!empty($posts)) {
5072
+		$is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
5073 5073
         $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5074
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5074
+        $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
5075 5075
         $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5076
-        $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5076
+        $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
5077 5077
 		
5078 5078
 		$csv_row = array();
5079 5079
 		$csv_row[] = 'post_id';
@@ -5084,7 +5084,7 @@  discard block
 block discarded – undo
5084 5084
 		$csv_row[] = 'default_category';
5085 5085
 		$csv_row[] = 'post_tags';
5086 5086
 		$csv_row[] = 'post_type';
5087
-		if ( $post_type == 'gd_event' ) {
5087
+		if ($post_type == 'gd_event') {
5088 5088
 			$csv_row[] = 'event_date';
5089 5089
 			$csv_row[] = 'event_enddate';
5090 5090
 			$csv_row[] = 'starttime';
@@ -5143,15 +5143,15 @@  discard block
 block discarded – undo
5143 5143
 		}
5144 5144
 		// WPML
5145 5145
 
5146
-		$custom_fields = geodir_imex_get_custom_fields( $post_type );
5147
-		if ( !empty( $custom_fields ) ) {
5148
-			foreach ( $custom_fields as $custom_field ) {
5146
+		$custom_fields = geodir_imex_get_custom_fields($post_type);
5147
+		if (!empty($custom_fields)) {
5148
+			foreach ($custom_fields as $custom_field) {
5149 5149
 				$csv_row[] = $custom_field->htmlvar_name;
5150 5150
 			}
5151 5151
 		}
5152 5152
 
5153 5153
 		// Export franchise fields
5154
-		$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
5154
+		$is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
5155 5155
 		if ($is_franchise_active) {
5156 5156
 			$csv_row[] = 'gd_is_franchise';
5157 5157
 			$csv_row[] = 'gd_franchise_lock';
@@ -5172,28 +5172,28 @@  discard block
 block discarded – undo
5172 5172
 		$csv_rows[] = $csv_row;
5173 5173
 
5174 5174
 		$images_count = 5;
5175
-        $xx=0;
5176
-		foreach ( $posts as $post ) {$xx++;
5175
+        $xx = 0;
5176
+		foreach ($posts as $post) {$xx++;
5177 5177
 			$post_id = $post['ID'];
5178 5178
 			
5179
-			$gd_post_info = geodir_get_post_info( $post_id );
5180
-			$post_info = (array)$gd_post_info;
5179
+			$gd_post_info = geodir_get_post_info($post_id);
5180
+			$post_info = (array) $gd_post_info;
5181 5181
 			
5182
-			$taxonomy_category = $post_type . 'category';
5183
-			$taxonomy_tags = $post_type . '_tags';
5182
+			$taxonomy_category = $post_type.'category';
5183
+			$taxonomy_tags = $post_type.'_tags';
5184 5184
 			
5185 5185
 			$post_category = '';
5186 5186
 			$default_category_id = $gd_post_info->default_category;
5187 5187
 			$default_category = '';
5188 5188
 			$post_tags = '';
5189
-			$terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) );
5189
+			$terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags));
5190 5190
 			
5191
-			if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
5191
+			if (!empty($terms) && !is_wp_error($terms)) {
5192 5192
 				$post_category = array();
5193 5193
 				$post_tags = array();
5194 5194
 			
5195
-				foreach ( $terms as $term ) {
5196
-					if ( $term->taxonomy == $taxonomy_category ) {
5195
+				foreach ($terms as $term) {
5196
+					if ($term->taxonomy == $taxonomy_category) {
5197 5197
 						$post_category[] = $term->name;
5198 5198
 						
5199 5199
 						if ($default_category_id == $term->term_id) {
@@ -5201,7 +5201,7 @@  discard block
 block discarded – undo
5201 5201
 						}
5202 5202
 					}
5203 5203
 					
5204
-					if ( $term->taxonomy == $taxonomy_tags ) {
5204
+					if ($term->taxonomy == $taxonomy_tags) {
5205 5205
 						$post_tags[] = $term->name;
5206 5206
 					}
5207 5207
 				}
@@ -5209,47 +5209,47 @@  discard block
 block discarded – undo
5209 5209
 				if (empty($default_category) && !empty($post_category)) {
5210 5210
 					$default_category = $post_category[0]; // Set first one as default category.
5211 5211
 				}
5212
-				$post_category = !empty( $post_category ) ? implode( ',', $post_category ) : '';
5213
-				$post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : '';
5212
+				$post_category = !empty($post_category) ? implode(',', $post_category) : '';
5213
+				$post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
5214 5214
 			}
5215 5215
 
5216 5216
 			// Franchise data
5217
-			if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
5217
+			if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
5218 5218
 				$franchise_id = $post_info['franchise'];
5219 5219
 				$gd_franchise_info = geodir_get_post_info($franchise_id);
5220 5220
 
5221 5221
 				if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
5222
-					$franchise_info = (array)$gd_franchise_info;
5222
+					$franchise_info = (array) $gd_franchise_info;
5223 5223
 					$locked_fields = geodir_franchise_get_locked_fields($franchise_id, true);
5224 5224
 					
5225 5225
 					if (!empty($locked_fields)) {
5226
-						foreach( $locked_fields as $locked_field) {
5226
+						foreach ($locked_fields as $locked_field) {
5227 5227
 							if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
5228 5228
 								$post_info[$locked_field] = $franchise_info[$locked_field];
5229 5229
 							}
5230 5230
 							
5231 5231
 							if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
5232
-								$franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) );
5232
+								$franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags));
5233 5233
 			
5234
-								if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
5234
+								if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
5235 5235
 									$franchise_post_category = array();
5236 5236
 									$franchise_post_tags = array();
5237 5237
 								
5238
-									foreach ( $franchise_terms as $franchise_term ) {
5239
-										if ( $franchise_term->taxonomy == $taxonomy_category ) {
5238
+									foreach ($franchise_terms as $franchise_term) {
5239
+										if ($franchise_term->taxonomy == $taxonomy_category) {
5240 5240
 											$franchise_post_category[] = $franchise_term->name;
5241 5241
 										}
5242 5242
 										
5243
-										if ( $franchise_term->taxonomy == $taxonomy_tags ) {
5243
+										if ($franchise_term->taxonomy == $taxonomy_tags) {
5244 5244
 											$franchise_post_tags[] = $franchise_term->name;
5245 5245
 										}
5246 5246
 									}
5247 5247
 									
5248 5248
 									if (in_array($taxonomy_category, $locked_fields)) {
5249
-										$post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : '';
5249
+										$post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
5250 5250
 									}
5251 5251
 									if (in_array('post_tags', $locked_fields)) {
5252
-										$post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : '';
5252
+										$post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
5253 5253
 									}
5254 5254
 								}
5255 5255
 							}
@@ -5258,18 +5258,18 @@  discard block
 block discarded – undo
5258 5258
 				}
5259 5259
 			}
5260 5260
 						
5261
-			$post_images = geodir_get_images( $post_id );
5261
+			$post_images = geodir_get_images($post_id);
5262 5262
 			$current_images = array();
5263
-			if ( !empty( $post_images ) ) {
5264
-				foreach ( $post_images as $post_image ) {
5265
-					$post_image = (array)$post_image;
5266
-					$image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : '';
5267
-					if ( $image ) {
5263
+			if (!empty($post_images)) {
5264
+				foreach ($post_images as $post_image) {
5265
+					$post_image = (array) $post_image;
5266
+					$image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : '';
5267
+					if ($image) {
5268 5268
 						$current_images[] = $image;
5269 5269
 					}
5270 5270
 				}
5271 5271
 				
5272
-				$images_count = max( $images_count, count( $current_images ) );
5272
+				$images_count = max($images_count, count($current_images));
5273 5273
 			}
5274 5274
 
5275 5275
 			$csv_row = array();
@@ -5281,7 +5281,7 @@  discard block
 block discarded – undo
5281 5281
 			$csv_row[] = $default_category; // default_category
5282 5282
 			$csv_row[] = $post_tags; // post_tags
5283 5283
 			$csv_row[] = $post_type; // post_type
5284
-			if ( $post_type == 'gd_event' ) {
5284
+			if ($post_type == 'gd_event') {
5285 5285
 				$event_data = geodir_imex_get_event_data($post, $gd_post_info);
5286 5286
 				$csv_row[] = $event_data['event_date']; // event_date
5287 5287
 				$csv_row[] = $event_data['event_enddate']; // enddate
@@ -5302,12 +5302,12 @@  discard block
 block discarded – undo
5302 5302
 				$csv_row[] = $event_data['recurring_end_date']; // repeat_end
5303 5303
 			}
5304 5304
 			$csv_row[] = $post_info['post_status']; // post_status
5305
-			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5305
+			$csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5306 5306
             if ($is_claim_active) {
5307
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5307
+                $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed
5308 5308
             }
5309 5309
 			if ($is_payment_plugin) {
5310
-				$csv_row[] = (int)$post_info['package_id']; // package_id
5310
+				$csv_row[] = (int) $post_info['package_id']; // package_id
5311 5311
 				$csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days
5312 5312
 				$csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
5313 5313
 			}
@@ -5344,14 +5344,14 @@  discard block
 block discarded – undo
5344 5344
 			$csv_row[] = stripslashes($post_info['geodir_special_offers']); // geodir_special_offers
5345 5345
 			// WPML
5346 5346
 			if ($is_wpml) {
5347
-				$csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type );
5348
-				$csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type );
5347
+				$csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type);
5348
+				$csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type);
5349 5349
 			}
5350 5350
 			// WPML
5351 5351
 			
5352
-			if ( !empty( $custom_fields ) ) {
5353
-				foreach ( $custom_fields as $custom_field ) {
5354
-					$csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : '';
5352
+			if (!empty($custom_fields)) {
5353
+				foreach ($custom_fields as $custom_field) {
5354
+					$csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : '';
5355 5355
 				}
5356 5356
 			}
5357 5357
 			
@@ -5362,15 +5362,15 @@  discard block
 block discarded – undo
5362 5362
 				$franchise = '';
5363 5363
 					
5364 5364
 				if (geodir_franchise_pkg_is_active($gd_post_info)) {
5365
-					$gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true );
5366
-					$locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : '';
5365
+					$gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true);
5366
+					$locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : '';
5367 5367
 					$locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
5368
-					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id
5368
+					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id
5369 5369
 				}
5370 5370
 				
5371
-				$csv_row[] = (int)$gd_is_franchise; // gd_is_franchise
5371
+				$csv_row[] = (int) $gd_is_franchise; // gd_is_franchise
5372 5372
 				$csv_row[] = $locaked_fields; // gd_franchise_lock fields
5373
-				$csv_row[] = (int)$franchise; // franchise id
5373
+				$csv_row[] = (int) $franchise; // franchise id
5374 5374
 			}
5375 5375
             
5376 5376
             /**
@@ -5384,15 +5384,15 @@  discard block
 block discarded – undo
5384 5384
              */
5385 5385
             $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5386 5386
 			
5387
-			for ( $c = 0; $c < $images_count; $c++ ) {
5388
-				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
5387
+			for ($c = 0; $c < $images_count; $c++) {
5388
+				$csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE
5389 5389
 			}
5390 5390
 			
5391 5391
 			$csv_rows[] = $csv_row;
5392 5392
 
5393 5393
 		}
5394 5394
 
5395
-		for ( $c = 0; $c < $images_count; $c++ ) {
5395
+		for ($c = 0; $c < $images_count; $c++) {
5396 5396
 			$csv_rows[0][] = 'IMAGE';
5397 5397
 		}
5398 5398
 	}
@@ -5414,30 +5414,30 @@  discard block
 block discarded – undo
5414 5414
  * @param int $page_no Page number. Default 0.
5415 5415
  * @return array Array of posts data.
5416 5416
  */
5417
-function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5417
+function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
5418 5418
     global $wpdb, $plugin_prefix;
5419 5419
 
5420
-    if ( ! post_type_exists( $post_type ) )
5420
+    if (!post_type_exists($post_type))
5421 5421
         return new stdClass;
5422 5422
         
5423
-    $table = $plugin_prefix . $post_type . '_detail';
5423
+    $table = $plugin_prefix.$post_type.'_detail';
5424 5424
 
5425 5425
     $limit = '';
5426
-    if ( $per_page > 0 && $page_no > 0 ) {
5427
-        $offset = ( $page_no - 1 ) * $per_page;
5426
+    if ($per_page > 0 && $page_no > 0) {
5427
+        $offset = ($page_no - 1) * $per_page;
5428 5428
         
5429
-        if ( $offset > 0 ) {
5430
-            $limit = " LIMIT " . $offset . "," . $per_page;
5429
+        if ($offset > 0) {
5430
+            $limit = " LIMIT ".$offset.",".$per_page;
5431 5431
         } else {
5432
-            $limit = " LIMIT " . $per_page;
5432
+            $limit = " LIMIT ".$per_page;
5433 5433
         }
5434 5434
     }
5435 5435
 
5436 5436
     // Skip listing with statuses trash, auto-draft etc...
5437 5437
     $skip_statuses = geodir_imex_export_skip_statuses();
5438 5438
     $where_statuses = '';
5439
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5440
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5439
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5440
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5441 5441
     }
5442 5442
     
5443 5443
     /**
@@ -5448,9 +5448,9 @@  discard block
 block discarded – undo
5448 5448
      *
5449 5449
      * @param string $where SQL where clause part.
5450 5450
      */
5451
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5451
+    $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5452 5452
 
5453
-    $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5453
+    $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." ORDER BY {$wpdb->posts}.ID ASC".$limit, $post_type);
5454 5454
     /**
5455 5455
      * Modify returned posts SQL query for the current post type.
5456 5456
      *
@@ -5460,8 +5460,8 @@  discard block
 block discarded – undo
5460 5460
      * @param int $query The SQL query.
5461 5461
      * @param string $post_type Post type.
5462 5462
      */
5463
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5464
-    $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A );
5463
+    $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
5464
+    $results = (array) $wpdb->get_results($wpdb->prepare($query, $post_type), ARRAY_A);
5465 5465
 
5466 5466
     /**
5467 5467
      * Modify returned post results for the current post type.
@@ -5472,7 +5472,7 @@  discard block
 block discarded – undo
5472 5472
      * @param object $results An object containing all post ids.
5473 5473
      * @param string $post_type Post type.
5474 5474
      */
5475
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5475
+    return apply_filters('geodir_export_posts', $results, $post_type);
5476 5476
 }
5477 5477
 
5478 5478
 /**
@@ -5490,24 +5490,24 @@  discard block
 block discarded – undo
5490 5490
  * @param string $post_type Post type.
5491 5491
  * @return string The SQL query.
5492 5492
  */
5493
-function geodir_imex_get_events_query( $query, $post_type ) {
5494
-    if ( $post_type == 'gd_event' ) {
5493
+function geodir_imex_get_events_query($query, $post_type) {
5494
+    if ($post_type == 'gd_event') {
5495 5495
         global $wpdb, $plugin_prefix;
5496 5496
         
5497
-        $table = $plugin_prefix . $post_type . '_detail';
5497
+        $table = $plugin_prefix.$post_type.'_detail';
5498 5498
         $schedule_table = EVENT_SCHEDULE;
5499 5499
         
5500 5500
         // Skip listing with statuses trash, auto-draft etc...
5501 5501
         $skip_statuses = geodir_imex_export_skip_statuses();
5502 5502
         $where_statuses = '';
5503
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5504
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5503
+        if (!empty($skip_statuses) && is_array($skip_statuses)) {
5504
+            $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5505 5505
         }
5506 5506
         
5507 5507
         /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5508
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5508
+        $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5509 5509
 
5510
-        $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5510
+        $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type);
5511 5511
     }
5512 5512
 
5513 5513
     return $query;
@@ -5531,35 +5531,35 @@  discard block
 block discarded – undo
5531 5531
  * @param  string $post_type Post type.
5532 5532
  * @return int Total terms count.
5533 5533
  */
5534
-function geodir_get_terms_count( $post_type ) {
5535
-    $args = array( 'hide_empty' => 0 );
5534
+function geodir_get_terms_count($post_type) {
5535
+    $args = array('hide_empty' => 0);
5536 5536
 
5537
-    remove_all_filters( 'get_terms' );
5537
+    remove_all_filters('get_terms');
5538 5538
 
5539
-    $taxonomy = $post_type . 'category';
5539
+    $taxonomy = $post_type.'category';
5540 5540
 
5541 5541
     // WPML
5542 5542
     $is_wpml = geodir_is_wpml();
5543 5543
     $active_lang = 'all';
5544
-    if ( $is_wpml ) {
5544
+    if ($is_wpml) {
5545 5545
         global $sitepress;
5546 5546
         $active_lang = $sitepress->get_current_language();
5547 5547
         
5548
-        if ( $active_lang != 'all' ) {
5549
-            $sitepress->switch_lang( 'all', true );
5548
+        if ($active_lang != 'all') {
5549
+            $sitepress->switch_lang('all', true);
5550 5550
         }
5551 5551
     }
5552 5552
     // WPML
5553 5553
             
5554
-    $count_terms = wp_count_terms( $taxonomy, $args );
5554
+    $count_terms = wp_count_terms($taxonomy, $args);
5555 5555
 
5556 5556
     // WPML
5557
-    if ( $is_wpml && $active_lang !== 'all' ) {
5557
+    if ($is_wpml && $active_lang !== 'all') {
5558 5558
         global $sitepress;
5559
-        $sitepress->switch_lang( $active_lang, true );
5559
+        $sitepress->switch_lang($active_lang, true);
5560 5560
     }
5561 5561
     // WPML
5562
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5562
+    $count_terms = !is_wp_error($count_terms) ? $count_terms : 0;
5563 5563
      
5564 5564
     return $count_terms;
5565 5565
 }
@@ -5576,23 +5576,23 @@  discard block
 block discarded – undo
5576 5576
  * @param int $page_no Page number. Default 0.
5577 5577
  * @return array Array of terms data.
5578 5578
  */
5579
-function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
5580
-	$args = array( 'hide_empty' => 0, 'orderby' => 'id' );
5579
+function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
5580
+	$args = array('hide_empty' => 0, 'orderby' => 'id');
5581 5581
 	
5582
-	remove_all_filters( 'get_terms' );
5582
+	remove_all_filters('get_terms');
5583 5583
 	
5584
-	$taxonomy = $post_type . 'category';
5584
+	$taxonomy = $post_type.'category';
5585 5585
 	
5586
-	if ( $per_page > 0 && $page_no > 0 ) {
5587
-		$args['offset'] = ( $page_no - 1 ) * $per_page;
5586
+	if ($per_page > 0 && $page_no > 0) {
5587
+		$args['offset'] = ($page_no - 1) * $per_page;
5588 5588
 		$args['number'] = $per_page;
5589 5589
 	}
5590 5590
 	
5591
-	$terms = get_terms( $taxonomy, $args );
5591
+	$terms = get_terms($taxonomy, $args);
5592 5592
 
5593 5593
 	$csv_rows = array();
5594 5594
 	
5595
-	if ( !empty( $terms ) ) {
5595
+	if (!empty($terms)) {
5596 5596
 		$csv_row = array();
5597 5597
 		$csv_row[] = 'cat_id';
5598 5598
 		$csv_row[] = 'cat_name';
@@ -5614,16 +5614,16 @@  discard block
 block discarded – undo
5614 5614
 		
5615 5615
 		$csv_rows[] = $csv_row;
5616 5616
 		
5617
-		foreach ( $terms as $term ) {
5618
-			$cat_icon = get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type );
5619
-			$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
5617
+		foreach ($terms as $term) {
5618
+			$cat_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type);
5619
+			$cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
5620 5620
 			
5621
-			$cat_image = geodir_get_default_catimage( $term->term_id, $post_type );
5622
-			$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; 
5621
+			$cat_image = geodir_get_default_catimage($term->term_id, $post_type);
5622
+			$cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; 
5623 5623
 			
5624 5624
 			$cat_parent = '';
5625
-			if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
5626
-				$parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy );
5625
+			if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
5626
+				$parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
5627 5627
 				$cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : '';
5628 5628
 			}
5629 5629
 			
@@ -5633,15 +5633,15 @@  discard block
 block discarded – undo
5633 5633
 			$csv_row[] = $term->slug;
5634 5634
 			$csv_row[] = $post_type;
5635 5635
 			$csv_row[] = $cat_parent;
5636
-			$csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5636
+			$csv_row[] = get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type);
5637 5637
             // WPML
5638 5638
 			if ($is_wpml) {
5639
-				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5640
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5639
+				$csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy);
5640
+                $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy);
5641 5641
 			}
5642 5642
 			// WPML
5643 5643
 			$csv_row[] = $term->description;
5644
-			$csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type );
5644
+			$csv_row[] = get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type);
5645 5645
 			$csv_row[] = $cat_image;
5646 5646
 			$csv_row[] = $cat_icon;
5647 5647
 			
@@ -5660,10 +5660,10 @@  discard block
 block discarded – undo
5660 5660
  * @param  bool $relative True for relative path & False for absolute path.
5661 5661
  * @return string Path to the cache directory.
5662 5662
  */
5663
-function geodir_path_import_export( $relative = true ) {
5663
+function geodir_path_import_export($relative = true) {
5664 5664
 	$upload_dir = wp_upload_dir();
5665 5665
 	
5666
-	return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache';
5666
+	return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache';
5667 5667
 }
5668 5668
 
5669 5669
 /**
@@ -5679,8 +5679,8 @@  discard block
 block discarded – undo
5679 5679
  * @param  bool $clear If true then it overwrite data otherwise add rows at the end of file.
5680 5680
  * @return bool true if success otherwise false.
5681 5681
  */
5682
-function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
5683
-	if ( empty( $csv_data ) ) {
5682
+function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
5683
+	if (empty($csv_data)) {
5684 5684
 		return false;
5685 5685
 	}
5686 5686
 	
@@ -5688,17 +5688,17 @@  discard block
 block discarded – undo
5688 5688
 	
5689 5689
 	$mode = $clear ? 'w+' : 'a+';
5690 5690
 	
5691
-	if ( function_exists( 'fputcsv' ) ) {
5692
-		$file = fopen( $file_path, $mode );
5693
-		foreach( $csv_data as $csv_row ) {
5691
+	if (function_exists('fputcsv')) {
5692
+		$file = fopen($file_path, $mode);
5693
+		foreach ($csv_data as $csv_row) {
5694 5694
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5695
-			$write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' );
5695
+			$write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"');
5696 5696
 		}
5697
-		fclose( $file );
5697
+		fclose($file);
5698 5698
 	} else {
5699
-		foreach( $csv_data as $csv_row ) {
5699
+		foreach ($csv_data as $csv_row) {
5700 5700
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5701
-			$wp_filesystem->put_contents( $file_path, $csv_row );
5701
+			$wp_filesystem->put_contents($file_path, $csv_row);
5702 5702
 		}
5703 5703
 	}
5704 5704
 		
@@ -5716,14 +5716,14 @@  discard block
 block discarded – undo
5716 5716
  * @param  string $file Full path to file.
5717 5717
  * @return int No of file rows.
5718 5718
  */
5719
-function geodir_import_export_line_count( $file ) {
5719
+function geodir_import_export_line_count($file) {
5720 5720
 	global $wp_filesystem;
5721 5721
 	
5722
-	if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
5723
-		$contents = $wp_filesystem->get_contents_array( $file );
5722
+	if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
5723
+		$contents = $wp_filesystem->get_contents_array($file);
5724 5724
 		
5725
-		if ( !empty( $contents ) && is_array( $contents ) ) {
5726
-			return count( $contents ) - 1;
5725
+		if (!empty($contents) && is_array($contents)) {
5726
+			return count($contents) - 1;
5727 5727
 		}
5728 5728
 	}
5729 5729
 	
@@ -5740,11 +5740,11 @@  discard block
 block discarded – undo
5740 5740
  * @param string $post_type The post type.
5741 5741
  * @return object Queried object.
5742 5742
  */
5743
-function geodir_imex_get_custom_fields( $post_type ) {
5743
+function geodir_imex_get_custom_fields($post_type) {
5744 5744
 	global $wpdb;
5745 5745
 	 
5746
-	$sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
5747
-	$rows = $wpdb->get_results( $sql );
5746
+	$sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
5747
+	$rows = $wpdb->get_results($sql);
5748 5748
 	 
5749 5749
 	return $rows;
5750 5750
 }
@@ -5760,10 +5760,10 @@  discard block
 block discarded – undo
5760 5760
  * @return array Event data array.
5761 5761
  */
5762 5762
 function geodir_imex_get_event_data($post, $gd_post_info) {
5763
-	$event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : '';
5763
+	$event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
5764 5764
 	$event_enddate = $event_date;
5765
-	$starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : '';
5766
-	$endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : '';
5765
+	$starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
5766
+	$endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
5767 5767
 	
5768 5768
 	$is_recurring_event = '';
5769 5769
 	$event_duration_days = '';
@@ -5780,15 +5780,15 @@  discard block
 block discarded – undo
5780 5780
 		
5781 5781
 	$recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array();
5782 5782
 	if (!empty($recurring_data)) {
5783
-		$event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date;
5784
-		$event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date;
5785
-		$starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime;
5786
-		$endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime;
5783
+		$event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
5784
+		$event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
5785
+		$starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
5786
+		$endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
5787 5787
 		$is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : '';
5788 5788
 		$different_times = !empty($recurring_data['different_times']) ? true : false;
5789 5789
 	
5790
-		$recurring_pkg = geodir_event_recurring_pkg( $gd_post_info );
5791
-		$is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true;
5790
+		$recurring_pkg = geodir_event_recurring_pkg($gd_post_info);
5791
+		$is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true;
5792 5792
 			
5793 5793
 		if ($recurring_pkg && $is_recurring) {
5794 5794
 			$recurring_dates = $event_date;
@@ -5798,13 +5798,13 @@  discard block
 block discarded – undo
5798 5798
 			$recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
5799 5799
 			
5800 5800
 			if (!empty($recurring_data['event_recurring_dates'])) {
5801
-				$event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
5801
+				$event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
5802 5802
 				
5803 5803
 				if (!empty($event_recurring_dates)) {
5804 5804
 					$recurring_dates = array();
5805 5805
 					
5806 5806
 					foreach ($event_recurring_dates as $date) {
5807
-						$recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) );
5807
+						$recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
5808 5808
 					}
5809 5809
 					
5810 5810
 					$recurring_dates = implode(",", $recurring_dates);
@@ -5820,7 +5820,7 @@  discard block
 block discarded – undo
5820 5820
 						$times = array();
5821 5821
 						
5822 5822
 						foreach ($recurring_data['starttimes'] as $time) {
5823
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5823
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5824 5824
 						}
5825 5825
 						
5826 5826
 						$event_starttimes = implode(",", $times);
@@ -5830,7 +5830,7 @@  discard block
 block discarded – undo
5830 5830
 						$times = array();
5831 5831
 						
5832 5832
 						foreach ($recurring_data['endtimes'] as $time) {
5833
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5833
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5834 5834
 						}
5835 5835
 						
5836 5836
 						$event_endtimes = implode(",", $times);
@@ -5842,8 +5842,8 @@  discard block
 block discarded – undo
5842 5842
 					}
5843 5843
 				}
5844 5844
 			} else {
5845
-				$event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1;
5846
-				$recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5845
+				$event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1;
5846
+				$recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5847 5847
 				
5848 5848
 				if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
5849 5849
 					$week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
@@ -5859,11 +5859,11 @@  discard block
 block discarded – undo
5859 5859
 				}
5860 5860
 				
5861 5861
 				$recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
5862
-				if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
5863
-					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : '';
5862
+				if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
5863
+					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
5864 5864
 					$max_recurring_count = empty($recurring_end_date) ? 1 : '';
5865 5865
 				} else {
5866
-					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1);
5866
+					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1);
5867 5867
 				}
5868 5868
 			}
5869 5869
 		}
@@ -5927,9 +5927,9 @@  discard block
 block discarded – undo
5927 5927
  * @return array Event data array.
5928 5928
  */
5929 5929
 function geodir_imex_process_event_data($gd_post) {
5930
-	$recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post );
5930
+	$recurring_pkg = geodir_event_recurring_pkg((object) $gd_post);
5931 5931
 
5932
-	$is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true;
5932
+	$is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true;
5933 5933
 	$event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_imex_get_date_ymd($gd_post['event_date']) : '';
5934 5934
 	$event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_imex_get_date_ymd($gd_post['event_enddate']) : $event_date;
5935 5935
 	$all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false;
@@ -5976,17 +5976,17 @@  discard block
 block discarded – undo
5976 5976
 				$event_recurring_dates = implode(",", $event_recurring_dates);
5977 5977
 			}
5978 5978
 		} else {
5979
-			$duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1;
5980
-			$repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1;
5981
-			$max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1;
5982
-			$repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : '';
5979
+			$duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1;
5980
+			$repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1;
5981
+			$max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1;
5982
+			$repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : '';
5983 5983
 			
5984 5984
 			$repeat_end_type = $repeat_end != '' ? 1 : 0;
5985 5985
 			$max_repeat = $repeat_end != '' ? '' : $max_repeat;
5986 5986
 			
5987 5987
 			$week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
5988 5988
 			
5989
-			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
5989
+			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
5990 5990
 			$repeat_days = array();
5991 5991
 			if (!empty($a_repeat_days)) {
5992 5992
 				foreach ($a_repeat_days as $repeat_day) {
@@ -6004,7 +6004,7 @@  discard block
 block discarded – undo
6004 6004
 			$repeat_weeks = array();
6005 6005
 			if (!empty($a_repeat_weeks)) {
6006 6006
 				foreach ($a_repeat_weeks as $repeat_week) {
6007
-					$repeat_weeks[] = (int)$repeat_week;
6007
+					$repeat_weeks[] = (int) $repeat_week;
6008 6008
 				}
6009 6009
 				
6010 6010
 				$repeat_weeks = array_unique($repeat_weeks);
@@ -6068,7 +6068,7 @@  discard block
 block discarded – undo
6068 6068
 
6069 6069
     $page_found = $wpdb->get_var(
6070 6070
         $wpdb->prepare(
6071
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6071
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;",
6072 6072
             array($slug)
6073 6073
         )
6074 6074
     );
@@ -6123,7 +6123,7 @@  discard block
 block discarded – undo
6123 6123
  */
6124 6124
 function geodir_admin_upgrade_notice() {
6125 6125
     $class = "error";
6126
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6126
+    $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
6127 6127
     echo"<div class=\"$class\"> <p>$message</p></div>";
6128 6128
 }
6129 6129
 
@@ -6135,7 +6135,7 @@  discard block
 block discarded – undo
6135 6135
  * @param (object) $r
6136 6136
  * @return (string) $output
6137 6137
  */
6138
-function geodire_admin_upgrade_notice( $plugin_data, $r )
6138
+function geodire_admin_upgrade_notice($plugin_data, $r)
6139 6139
 {
6140 6140
     // readme contents
6141 6141
     $args = array(
@@ -6143,7 +6143,7 @@  discard block
 block discarded – undo
6143 6143
         'redirection' => 5
6144 6144
     );
6145 6145
     $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6146
-    $data       = wp_remote_get( $url, $args );
6146
+    $data = wp_remote_get($url, $args);
6147 6147
 
6148 6148
     if (!is_wp_error($data) && $data['response']['code'] == 200) {
6149 6149
 
@@ -6158,20 +6158,20 @@  discard block
 block discarded – undo
6158 6158
 function geodir_in_plugin_update_message($content) {
6159 6159
     // Output Upgrade Notice
6160 6160
     $matches        = null;
6161
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6161
+    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis';
6162 6162
     $upgrade_notice = '';
6163
-    if ( preg_match( $regexp, $content, $matches ) ) {
6164
-        if(empty($matches)){return;}
6163
+    if (preg_match($regexp, $content, $matches)) {
6164
+        if (empty($matches)) {return; }
6165 6165
 
6166
-        $version = trim( $matches[1] );
6167
-        if($version && $version>GEODIRECTORY_VERSION){
6166
+        $version = trim($matches[1]);
6167
+        if ($version && $version > GEODIRECTORY_VERSION) {
6168 6168
 
6169 6169
 
6170
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6171
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6170
+        $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
6171
+        if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
6172 6172
             $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6173
-            foreach ( $notices as $index => $line ) {
6174
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6173
+            foreach ($notices as $index => $line) {
6174
+                $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
6175 6175
             }
6176 6176
             $upgrade_notice .= '</div> ';
6177 6177
         }
@@ -6195,7 +6195,7 @@  discard block
 block discarded – undo
6195 6195
 		$default_language = $sitepress->get_default_language();
6196 6196
 		if ($current_language != 'all' && $current_language != $default_language) {
6197 6197
 	?>
6198
-	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
6198
+	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
6199 6199
 	<?php
6200 6200
 		}
6201 6201
 	}
@@ -6210,7 +6210,7 @@  discard block
 block discarded – undo
6210 6210
  * @param array Listing statuses to be skipped.
6211 6211
  */
6212 6212
 function geodir_imex_export_skip_statuses() {
6213
-    $statuses = array( 'trash', 'auto-draft' );
6213
+    $statuses = array('trash', 'auto-draft');
6214 6214
     
6215 6215
     /**
6216 6216
      * Filter the statuses to skip during GD export listings.
@@ -6220,7 +6220,7 @@  discard block
 block discarded – undo
6220 6220
      *
6221 6221
      * @param array $statuses Listing statuses to be skipped.
6222 6222
      */
6223
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6223
+    $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
6224 6224
      
6225 6225
     return $statuses;
6226 6226
 }
@@ -6291,16 +6291,16 @@  discard block
 block discarded – undo
6291 6291
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6292 6292
     global $wpdb;
6293 6293
     
6294
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6294
+    $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
6295 6295
     
6296
-    if ( !empty( $filters ) ) {
6297
-        foreach ( $filters as $field => $value ) {
6296
+    if (!empty($filters)) {
6297
+        foreach ($filters as $field => $value) {
6298 6298
             switch ($field) {
6299 6299
                 case 'start_date':
6300
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6300
+                    $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'";
6301 6301
                 break;
6302 6302
                 case 'end_date':
6303
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6303
+                    $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'";
6304 6304
                 break;
6305 6305
             }
6306 6306
         }
@@ -6312,25 +6312,25 @@  discard block
 block discarded – undo
6312 6312
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6313 6313
 
6314 6314
 
6315
-function geodir_fix_for_primer_theme(){
6316
-    if(!defined( 'PRIMER_VERSION' )){return;}
6315
+function geodir_fix_for_primer_theme() {
6316
+    if (!defined('PRIMER_VERSION')) {return; }
6317 6317
     global $pagenow;
6318 6318
 
6319
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6319
+    if (('post.php' === $pagenow || 'post-new.php' === $pagenow) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']))) {
6320 6320
 
6321
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6321
+        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type($_GET['post']);
6322 6322
 
6323 6323
         $post_types = geodir_get_posttypes();
6324
-        if ($post_type && in_array($post_type, $post_types) ) {
6324
+        if ($post_type && in_array($post_type, $post_types)) {
6325 6325
             global $primer_customizer_layouts;
6326
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6326
+            remove_action('add_meta_boxes', array($primer_customizer_layouts, 'add_meta_box'), 10);
6327 6327
         }
6328 6328
     }
6329 6329
 
6330 6330
 }
6331 6331
 
6332
-if(is_admin()){
6333
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6332
+if (is_admin()) {
6333
+    add_action('add_meta_boxes', 'geodir_fix_for_primer_theme', 0);  
6334 6334
 }
6335 6335
 
6336 6336
 
@@ -6463,32 +6463,32 @@  discard block
 block discarded – undo
6463 6463
 
6464 6464
 function geodir_ga_activation_url() {
6465 6465
 
6466
-    return add_query_arg( array(
6466
+    return add_query_arg(array(
6467 6467
         'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6468 6468
         'scope'         => GEODIR_GA_SCOPE,
6469 6469
         'response_type' => 'code',
6470 6470
         'redirect_uri'  => GEODIR_GA_REDIRECT,
6471 6471
         'client_id'     => GEODIR_GA_CLIENTID,
6472
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6472
+    ), 'https://accounts.google.com/o/oauth2/auth');
6473 6473
 
6474 6474
     return $url;
6475 6475
 }
6476 6476
 
6477
-function geodir_gd_accounts(){
6477
+function geodir_gd_accounts() {
6478 6478
     $accounts = array();
6479
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6480
-    if($useAuth){
6479
+    $useAuth = (get_option('geodir_ga_auth_code') == '' ? false : true);
6480
+    if ($useAuth) {
6481 6481
         try {
6482 6482
             $accounts = geodir_ga_get_analytics_accounts();
6483 6483
         } catch (Exception $e) {
6484
-            geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6484
+            geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
6485 6485
         }
6486 6486
         
6487
-        if(is_array($accounts)){
6488
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6489
-        }elseif(get_option('geodir_ga_account_id')){
6487
+        if (is_array($accounts)) {
6488
+            $accounts = array_merge(array(__('Select Account', 'geodirectory')), $accounts);
6489
+        }elseif (get_option('geodir_ga_account_id')) {
6490 6490
             $accounts = array();
6491
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6491
+            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required', 'geodirectory').' ('.get_option('geodir_ga_account_id').')';
6492 6492
         }
6493 6493
     }
6494 6494
     return $accounts;
@@ -6499,21 +6499,21 @@  discard block
 block discarded – undo
6499 6499
     global $gd_ga_errors;
6500 6500
     $accounts = array();
6501 6501
 
6502
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6502
+    if (get_option('geodir_ga_auth_token') === false) {update_option('geodir_ga_auth_token', ''); }
6503 6503
 
6504 6504
 
6505
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6505
+    if (get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])) {
6506 6506
       return get_option('geodir_gd_uids');
6507 6507
     }
6508 6508
 
6509 6509
     # Create a new Gdata call
6510
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6510
+    if (trim(get_option('geodir_ga_auth_code')) != '')
6511 6511
         $stats = new GDGoogleAnalyticsStats();
6512 6512
     else
6513 6513
         return false;
6514 6514
 
6515 6515
     # Check if Google sucessfully logged in
6516
-    if ( ! $stats->checkLogin() )
6516
+    if (!$stats->checkLogin())
6517 6517
         return false;
6518 6518
 
6519 6519
     # Get a list of accounts
@@ -6525,28 +6525,28 @@  discard block
 block discarded – undo
6525 6525
     }
6526 6526
 
6527 6527
 
6528
-    natcasesort ($accounts);
6528
+    natcasesort($accounts);
6529 6529
 
6530 6530
     # Return the account array if there are accounts
6531
-    if ( count($accounts) > 0 ){
6532
-        update_option('geodir_gd_uids',$accounts);
6531
+    if (count($accounts) > 0) {
6532
+        update_option('geodir_gd_uids', $accounts);
6533 6533
         return $accounts;
6534 6534
     }
6535 6535
     else
6536 6536
         return false;
6537 6537
 }
6538 6538
 
6539
-add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6540
-function geodir_ga_deauthorize(){
6539
+add_action('wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize');
6540
+function geodir_ga_deauthorize() {
6541 6541
 
6542
-    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6542
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'gd_ga_deauthorize')) {
6543 6543
 
6544
-        die( 'Security check' );
6544
+        die('Security check');
6545 6545
 
6546 6546
     } else {
6547
-        update_option('geodir_ga_auth_token','');
6548
-        update_option('geodir_ga_auth_code','');
6549
-        update_option('geodir_gd_uids','');
6547
+        update_option('geodir_ga_auth_token', '');
6548
+        update_option('geodir_ga_auth_code', '');
6549
+        update_option('geodir_gd_uids', '');
6550 6550
 
6551 6551
 
6552 6552
         echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Task/Retryable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  */
17 17
 
18 18
 if (!class_exists('Google_Client')) {
19
-  require_once dirname(__FILE__) . '/../autoload.php';
19
+  require_once dirname(__FILE__).'/../autoload.php';
20 20
 }
21 21
 
22 22
 /**
Please login to merge, or discard this patch.