Passed
Push — master ( 43d9f6...7bccd9 )
by Stiofan
03:27
created
geodirectory_shortcodes.php 1 patch
Indentation   +676 added lines, -676 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,48 +32,48 @@  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
-        ###### MAIN CONTENT ######
66
-
67
-        /** This action is documented in geodirectory-templates/add-listing.php */
68
-        do_action('geodir_add_listing_page_mandatory');
69
-        /** This action is documented in geodirectory-templates/add-listing.php */
70
-        do_action('geodir_add_listing_form');
71
-    }
72
-    $output = ob_get_contents();
73
-
74
-    ob_end_clean();
75
-
76
-    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
+		###### MAIN CONTENT ######
66
+
67
+		/** This action is documented in geodirectory-templates/add-listing.php */
68
+		do_action('geodir_add_listing_page_mandatory');
69
+		/** This action is documented in geodirectory-templates/add-listing.php */
70
+		do_action('geodir_add_listing_form');
71
+	}
72
+	$output = ob_get_contents();
73
+
74
+	ob_end_clean();
75
+
76
+	return $output;
77 77
 }
78 78
 
79 79
 /**
@@ -101,136 +101,136 @@  discard block
 block discarded – undo
101 101
  */
102 102
 function geodir_sc_home_map($atts)
103 103
 {
104
-    ob_start();
105
-    $defaults = array(
106
-        'width' => '960',
107
-        'height' => '425',
108
-        'maptype' => 'ROADMAP',
109
-        'zoom' => '13',
110
-        'autozoom' => '',
111
-        'child_collapse' => '0',
112
-        'scrollwheel' => '0',
104
+	ob_start();
105
+	$defaults = array(
106
+		'width' => '960',
107
+		'height' => '425',
108
+		'maptype' => 'ROADMAP',
109
+		'zoom' => '13',
110
+		'autozoom' => '',
111
+		'child_collapse' => '0',
112
+		'scrollwheel' => '0',
113 113
 		'marker_cluster' => false,
114
-        'latitude' => '',
115
-        'longitude' => ''
116
-    );
117
-
118
-    $params = shortcode_atts($defaults, $atts);
119
-
120
-    $params = gdsc_validate_map_args($params);
121
-
122
-    $map_args = array(
123
-        'map_canvas_name' => 'gd_home_map',
124
-        'latitude' => $params['latitude'],
125
-        'longitude' => $params['longitude'],
126
-
127
-        /**
128
-         * Filter the widget width of the map on home/listings page.
129
-         *
130
-         * @since 1.0.0
131
-         * @param mixed(string|int|float) $params['width'] The map width.
132
-         */
133
-        'width' => apply_filters('widget_width', $params['width']),
134
-        /**
135
-         * Filter the widget height of the map on home/listings page.
136
-         *
137
-         * @since 1.0.0
138
-         * @param mixed(string|int|float) $params['height'] The map height.
139
-         */
140
-        'height' => apply_filters('widget_heigh', $params['height']),
141
-        /**
142
-         * Filter the widget maptype of the map on home/listings page.
143
-         *
144
-         * @since 1.0.0
114
+		'latitude' => '',
115
+		'longitude' => ''
116
+	);
117
+
118
+	$params = shortcode_atts($defaults, $atts);
119
+
120
+	$params = gdsc_validate_map_args($params);
121
+
122
+	$map_args = array(
123
+		'map_canvas_name' => 'gd_home_map',
124
+		'latitude' => $params['latitude'],
125
+		'longitude' => $params['longitude'],
126
+
127
+		/**
128
+		 * Filter the widget width of the map on home/listings page.
129
+		 *
130
+		 * @since 1.0.0
131
+		 * @param mixed(string|int|float) $params['width'] The map width.
132
+		 */
133
+		'width' => apply_filters('widget_width', $params['width']),
134
+		/**
135
+		 * Filter the widget height of the map on home/listings page.
136
+		 *
137
+		 * @since 1.0.0
138
+		 * @param mixed(string|int|float) $params['height'] The map height.
139
+		 */
140
+		'height' => apply_filters('widget_heigh', $params['height']),
141
+		/**
142
+		 * Filter the widget maptype of the map on home/listings page.
143
+		 *
144
+		 * @since 1.0.0
145 145
 		 * @since 1.5.2 Added TERRAIN map type.
146
-         * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
147
-         */
148
-        'maptype' => apply_filters('widget_maptype', $params['maptype']),
149
-        /**
150
-         * Filter the widget scrollwheel value of the map on home/listings page.
151
-         *
152
-         * Should the scrollwheel zoom the map or not.
153
-         *
154
-         * @since 1.0.0
155
-         * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
156
-         */
157
-        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
158
-        /**
159
-         * Filter the widget zoom level of the map on home/listings page.
160
-         *
161
-         * @since 1.0.0
162
-         * @param int $params['zoom'] The zoom level of the map. Between 1-19.
163
-         */
164
-        'zoom' => apply_filters('widget_zoom', $params['zoom']),
165
-        /**
166
-         * Filter the widget auto zoom value of the map on home/listings page.
167
-         *
168
-         * If the map should autozoom to fit the markers shown.
169
-         *
170
-         * @since 1.0.0
171
-         * @param bool $params['autozoom'] True if the map should autozoom, false if not.
172
-         */
173
-        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
174
-        /**
175
-         * Filter the widget child_collapse value of the map on home/listings page.
176
-         *
177
-         * If the map should auto collapse the child categories if the category bar is present.
178
-         *
179
-         * @since 1.0.0
180
-         * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
181
-         */
182
-        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
183
-        'enable_cat_filters' => true,
184
-        'enable_text_search' => true,
185
-        'enable_post_type_filters' => true,
186
-        /**
187
-         * Filter the widget enable_location_filters value of the map on home/listings page.
188
-         *
189
-         * This is used when the location addon is used.
190
-         *
191
-         * @since 1.0.0
192
-         * @param bool $val True if location filters should be used, false if not.
193
-         */
194
-        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
195
-        'enable_jason_on_load' => false,
196
-        'enable_marker_cluster' => false,
197
-        'enable_map_resize_button' => true,
198
-        'map_class_name' => 'geodir-map-home-page',
199
-        'is_geodir_home_map_widget' => true,
200
-    );
146
+		 * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
147
+		 */
148
+		'maptype' => apply_filters('widget_maptype', $params['maptype']),
149
+		/**
150
+		 * Filter the widget scrollwheel value of the map on home/listings page.
151
+		 *
152
+		 * Should the scrollwheel zoom the map or not.
153
+		 *
154
+		 * @since 1.0.0
155
+		 * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
156
+		 */
157
+		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
158
+		/**
159
+		 * Filter the widget zoom level of the map on home/listings page.
160
+		 *
161
+		 * @since 1.0.0
162
+		 * @param int $params['zoom'] The zoom level of the map. Between 1-19.
163
+		 */
164
+		'zoom' => apply_filters('widget_zoom', $params['zoom']),
165
+		/**
166
+		 * Filter the widget auto zoom value of the map on home/listings page.
167
+		 *
168
+		 * If the map should autozoom to fit the markers shown.
169
+		 *
170
+		 * @since 1.0.0
171
+		 * @param bool $params['autozoom'] True if the map should autozoom, false if not.
172
+		 */
173
+		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
174
+		/**
175
+		 * Filter the widget child_collapse value of the map on home/listings page.
176
+		 *
177
+		 * If the map should auto collapse the child categories if the category bar is present.
178
+		 *
179
+		 * @since 1.0.0
180
+		 * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
181
+		 */
182
+		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
183
+		'enable_cat_filters' => true,
184
+		'enable_text_search' => true,
185
+		'enable_post_type_filters' => true,
186
+		/**
187
+		 * Filter the widget enable_location_filters value of the map on home/listings page.
188
+		 *
189
+		 * This is used when the location addon is used.
190
+		 *
191
+		 * @since 1.0.0
192
+		 * @param bool $val True if location filters should be used, false if not.
193
+		 */
194
+		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
195
+		'enable_jason_on_load' => false,
196
+		'enable_marker_cluster' => false,
197
+		'enable_map_resize_button' => true,
198
+		'map_class_name' => 'geodir-map-home-page',
199
+		'is_geodir_home_map_widget' => true,
200
+	);
201 201
 
202 202
 	// Add marker cluster
203 203
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
204
-        $map_args['enable_marker_cluster'] = true;
205
-        if(get_option('geodir_marker_cluster_type')) {
206
-            if ($map_args['autozoom']) {
207
-                $map_args['enable_marker_cluster_no_reposition'] = false;
208
-            } else {
209
-                $map_args['enable_marker_cluster_no_reposition'] = true;
210
-            }
204
+		$map_args['enable_marker_cluster'] = true;
205
+		if(get_option('geodir_marker_cluster_type')) {
206
+			if ($map_args['autozoom']) {
207
+				$map_args['enable_marker_cluster_no_reposition'] = false;
208
+			} else {
209
+				$map_args['enable_marker_cluster_no_reposition'] = true;
210
+			}
211 211
 
212
-            $map_args['enable_marker_cluster_server'] = true ;
212
+			$map_args['enable_marker_cluster_server'] = true ;
213 213
 
214
-        }
214
+		}
215 215
 	} else {
216 216
 		$map_args['enable_marker_cluster'] = false;
217 217
 	}
218 218
 
219
-    // if lat and long set in shortcode, hack it so the map is not repositioned
220
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
221
-        $map_args['enable_marker_cluster_no_reposition'] = true;
222
-    }
219
+	// if lat and long set in shortcode, hack it so the map is not repositioned
220
+	if(!empty($params['latitude']) && !empty($params['longitude']) ){
221
+		$map_args['enable_marker_cluster_no_reposition'] = true;
222
+	}
223 223
 
224 224
 
225
-    geodir_draw_map($map_args);
225
+	geodir_draw_map($map_args);
226 226
 
227
-    add_action('wp_footer', 'geodir_home_map_add_script', 100);
227
+	add_action('wp_footer', 'geodir_home_map_add_script', 100);
228 228
 
229
-    $output = ob_get_contents();
229
+	$output = ob_get_contents();
230 230
 
231
-    ob_end_clean();
231
+	ob_end_clean();
232 232
 
233
-    return $output;
233
+	return $output;
234 234
 }
235 235
 add_shortcode('gd_homepage_map', 'geodir_sc_home_map');
236 236
 
@@ -264,77 +264,77 @@  discard block
 block discarded – undo
264 264
  */
265 265
 function geodir_sc_listing_map($atts)
266 266
 {
267
-    ob_start();
268
-    add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
269
-
270
-    add_action('the_post', 'create_list_jsondata'); // Add marker in json array
271
-
272
-    add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
273
-
274
-    $defaults = array(
275
-        'width' => '294',
276
-        'height' => '370',
277
-        'zoom' => '13',
278
-        'autozoom' => '',
279
-        'sticky' => '',
280
-        'showall' => '0',
281
-        'scrollwheel' => '0',
282
-        'maptype' => 'ROADMAP',
283
-        'child_collapse' => 0,
267
+	ob_start();
268
+	add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
269
+
270
+	add_action('the_post', 'create_list_jsondata'); // Add marker in json array
271
+
272
+	add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
273
+
274
+	$defaults = array(
275
+		'width' => '294',
276
+		'height' => '370',
277
+		'zoom' => '13',
278
+		'autozoom' => '',
279
+		'sticky' => '',
280
+		'showall' => '0',
281
+		'scrollwheel' => '0',
282
+		'maptype' => 'ROADMAP',
283
+		'child_collapse' => 0,
284 284
 		'marker_cluster' => false
285
-    );
286
-
287
-    $params = shortcode_atts($defaults, $atts);
288
-
289
-    $params = gdsc_validate_map_args($params);
290
-
291
-    $map_args = array(
292
-        'map_canvas_name' => 'gd_listing_map',
293
-        'width' => $params['width'],
294
-        'height' => $params['height'],
295
-        'zoom' => $params['zoom'],
296
-        'autozoom' => $params['autozoom'],
297
-        'sticky' => $params['sticky'],
298
-        'showall' => $params['showall'],
299
-        'scrollwheel' => $params['scrollwheel'],
300
-        'child_collapse' => 0,
301
-        'enable_cat_filters' => false,
302
-        'enable_text_search' => false,
303
-        'enable_post_type_filters' => false,
304
-        'enable_location_filters' => false,
305
-        'enable_jason_on_load' => true,
306
-    );
307
-
308
-    if (is_single()) {
309
-
310
-        global $post;
311
-        $map_default_lat = $address_latitude = $post->post_latitude;
312
-        $map_default_lng = $address_longitude = $post->post_longitude;
313
-        $mapview = $post->post_mapview;
314
-        $map_args['zoom'] = $post->post_mapzoom;
315
-        $map_args['map_class_name'] = 'geodir-map-listing-page-single';
316
-
317
-    } else {
318
-        $default_location = geodir_get_default_location();
319
-
320
-        $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
321
-        $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
322
-        $map_args['map_class_name'] = 'geodir-map-listing-page';
323
-    }
324
-
325
-    if (empty($mapview)) {
326
-        $mapview = 'ROADMAP';
327
-    }
328
-
329
-    // Set default map options
330
-    $map_args['ajax_url'] = geodir_get_ajax_url();
331
-    $map_args['latitude'] = $map_default_lat;
332
-    $map_args['longitude'] = $map_default_lng;
333
-    $map_args['streetViewControl'] = true;
334
-    $map_args['maptype'] = $mapview;
335
-    $map_args['showPreview'] = '0';
336
-    $map_args['maxZoom'] = 21;
337
-    $map_args['bubble_size'] = 'small';
285
+	);
286
+
287
+	$params = shortcode_atts($defaults, $atts);
288
+
289
+	$params = gdsc_validate_map_args($params);
290
+
291
+	$map_args = array(
292
+		'map_canvas_name' => 'gd_listing_map',
293
+		'width' => $params['width'],
294
+		'height' => $params['height'],
295
+		'zoom' => $params['zoom'],
296
+		'autozoom' => $params['autozoom'],
297
+		'sticky' => $params['sticky'],
298
+		'showall' => $params['showall'],
299
+		'scrollwheel' => $params['scrollwheel'],
300
+		'child_collapse' => 0,
301
+		'enable_cat_filters' => false,
302
+		'enable_text_search' => false,
303
+		'enable_post_type_filters' => false,
304
+		'enable_location_filters' => false,
305
+		'enable_jason_on_load' => true,
306
+	);
307
+
308
+	if (is_single()) {
309
+
310
+		global $post;
311
+		$map_default_lat = $address_latitude = $post->post_latitude;
312
+		$map_default_lng = $address_longitude = $post->post_longitude;
313
+		$mapview = $post->post_mapview;
314
+		$map_args['zoom'] = $post->post_mapzoom;
315
+		$map_args['map_class_name'] = 'geodir-map-listing-page-single';
316
+
317
+	} else {
318
+		$default_location = geodir_get_default_location();
319
+
320
+		$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
321
+		$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
322
+		$map_args['map_class_name'] = 'geodir-map-listing-page';
323
+	}
324
+
325
+	if (empty($mapview)) {
326
+		$mapview = 'ROADMAP';
327
+	}
328
+
329
+	// Set default map options
330
+	$map_args['ajax_url'] = geodir_get_ajax_url();
331
+	$map_args['latitude'] = $map_default_lat;
332
+	$map_args['longitude'] = $map_default_lng;
333
+	$map_args['streetViewControl'] = true;
334
+	$map_args['maptype'] = $mapview;
335
+	$map_args['showPreview'] = '0';
336
+	$map_args['maxZoom'] = 21;
337
+	$map_args['bubble_size'] = 'small';
338 338
 	
339 339
 	// Add marker cluster
340 340
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
@@ -343,13 +343,13 @@  discard block
 block discarded – undo
343 343
 		$map_args['enable_marker_cluster'] = false;
344 344
 	}
345 345
 
346
-    geodir_draw_map($map_args);
346
+	geodir_draw_map($map_args);
347 347
 
348
-    $output = ob_get_contents();
348
+	$output = ob_get_contents();
349 349
 
350
-    ob_end_clean();
350
+	ob_end_clean();
351 351
 
352
-    return $output;
352
+	return $output;
353 353
 }
354 354
 
355 355
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -382,120 +382,120 @@  discard block
 block discarded – undo
382 382
  */
383 383
 function geodir_sc_listing_slider($atts)
384 384
 {
385
-    ob_start();
386
-    $defaults = array(
387
-        'post_type' => 'gd_place',
388
-        'category' => '0',
389
-        'post_number' => '5',
390
-        'slideshow' => '0',
391
-        'animation_loop' => 0,
392
-        'direction_nav' => 0,
393
-        'slideshow_speed' => 5000,
394
-        'animation_speed' => 600,
395
-        'animation' => 'slide',
396
-        'order_by' => 'latest',
397
-        'show_title' => '',
398
-        'show_featured_only' => '',
399
-        'title' => '',
400
-    );
401
-
402
-    $params = shortcode_atts($defaults, $atts);
403
-
404
-
405
-    /*
385
+	ob_start();
386
+	$defaults = array(
387
+		'post_type' => 'gd_place',
388
+		'category' => '0',
389
+		'post_number' => '5',
390
+		'slideshow' => '0',
391
+		'animation_loop' => 0,
392
+		'direction_nav' => 0,
393
+		'slideshow_speed' => 5000,
394
+		'animation_speed' => 600,
395
+		'animation' => 'slide',
396
+		'order_by' => 'latest',
397
+		'show_title' => '',
398
+		'show_featured_only' => '',
399
+		'title' => '',
400
+	);
401
+
402
+	$params = shortcode_atts($defaults, $atts);
403
+
404
+
405
+	/*
406 406
      *
407 407
      * Now we begin the validation of the attributes.
408 408
      */
409
-    // Check we have a valid post_type
410
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
411
-        $params['post_type'] = 'gd_place';
412
-    }
413
-
414
-    // Check we have a valid sort_order
415
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
416
-
417
-    // Match the chosen animation to our options
418
-    $animation_list = array('slide', 'fade');
419
-    if (!(in_array($params['animation'], $animation_list))) {
420
-        $params['animation'] = 'slide';
421
-    }
422
-
423
-    // Post_number needs to be a positive integer
424
-    $params['post_number'] = absint($params['post_number']);
425
-    if (0 == $params['post_number']) {
426
-        $params['post_number'] = 1;
427
-    }
428
-
429
-    // Manage the entered categories
430
-    if (0 != $params['category'] || '' != $params['category']) {
431
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
432
-    }
433
-    // Convert show_title to a bool
434
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
435
-
436
-    // Convert show_featured_only to a bool
437
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
438
-
439
-    /*
409
+	// Check we have a valid post_type
410
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
411
+		$params['post_type'] = 'gd_place';
412
+	}
413
+
414
+	// Check we have a valid sort_order
415
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
416
+
417
+	// Match the chosen animation to our options
418
+	$animation_list = array('slide', 'fade');
419
+	if (!(in_array($params['animation'], $animation_list))) {
420
+		$params['animation'] = 'slide';
421
+	}
422
+
423
+	// Post_number needs to be a positive integer
424
+	$params['post_number'] = absint($params['post_number']);
425
+	if (0 == $params['post_number']) {
426
+		$params['post_number'] = 1;
427
+	}
428
+
429
+	// Manage the entered categories
430
+	if (0 != $params['category'] || '' != $params['category']) {
431
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
432
+	}
433
+	// Convert show_title to a bool
434
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
435
+
436
+	// Convert show_featured_only to a bool
437
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
438
+
439
+	/*
440 440
      * Hopefully all attributes are now valid, and safe to pass forward
441 441
      */
442 442
 
443
-    // redeclare vars after validation
444
-
445
-    if (isset($params['direction_nav'])) {
446
-        $params['directionNav'] = $params['direction_nav'];
447
-    }
448
-    if (isset($params['animation_loop'])) {
449
-        $params['animationLoop'] = $params['animation_loop'];
450
-    }
451
-    if (isset($params['slideshow_speed'])) {
452
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
453
-    }
454
-    if (isset($params['animation_speed'])) {
455
-        $params['animationSpeed'] = $params['animation_speed'];
456
-    }
457
-    if (isset($params['order_by'])) {
458
-        $params['list_sort'] = $params['order_by'];
459
-    }
460
-
461
-    $query_args = array(
462
-        'post_number' => $params['post_number'],
463
-        'is_geodir_loop' => true,
464
-        'post_type' => $params['post_type'],
465
-        'order_by' => $params['order_by']
466
-    );
467
-
468
-    if (1 == $params['show_featured_only']) {
469
-        $query_args['show_featured_only'] = 1;
470
-    }
471
-
472
-    if (0 != $params['category'] && '' != $params['category']) {
473
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
474
-        $tax_query = array(
475
-            'taxonomy' => $category_taxonomy[0],
476
-            'field' => 'id',
477
-            'terms' => $params['category'],
478
-        );
479
-
480
-        $query_args['tax_query'] = array($tax_query);
481
-    }
482
-
483
-    $defaults = array(
484
-        'before_widget' => '',
485
-        'after_widget' => '',
486
-        'before_title' => '',
487
-        'after_title' => '',
488
-    );
489
-
490
-    $query_args = array_merge($query_args, $params);
491
-
492
-    geodir_listing_slider_widget_output($defaults, $query_args);
493
-
494
-    $output = ob_get_contents();
495
-
496
-    ob_end_clean();
497
-
498
-    return $output;
443
+	// redeclare vars after validation
444
+
445
+	if (isset($params['direction_nav'])) {
446
+		$params['directionNav'] = $params['direction_nav'];
447
+	}
448
+	if (isset($params['animation_loop'])) {
449
+		$params['animationLoop'] = $params['animation_loop'];
450
+	}
451
+	if (isset($params['slideshow_speed'])) {
452
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
453
+	}
454
+	if (isset($params['animation_speed'])) {
455
+		$params['animationSpeed'] = $params['animation_speed'];
456
+	}
457
+	if (isset($params['order_by'])) {
458
+		$params['list_sort'] = $params['order_by'];
459
+	}
460
+
461
+	$query_args = array(
462
+		'post_number' => $params['post_number'],
463
+		'is_geodir_loop' => true,
464
+		'post_type' => $params['post_type'],
465
+		'order_by' => $params['order_by']
466
+	);
467
+
468
+	if (1 == $params['show_featured_only']) {
469
+		$query_args['show_featured_only'] = 1;
470
+	}
471
+
472
+	if (0 != $params['category'] && '' != $params['category']) {
473
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
474
+		$tax_query = array(
475
+			'taxonomy' => $category_taxonomy[0],
476
+			'field' => 'id',
477
+			'terms' => $params['category'],
478
+		);
479
+
480
+		$query_args['tax_query'] = array($tax_query);
481
+	}
482
+
483
+	$defaults = array(
484
+		'before_widget' => '',
485
+		'after_widget' => '',
486
+		'before_title' => '',
487
+		'after_title' => '',
488
+	);
489
+
490
+	$query_args = array_merge($query_args, $params);
491
+
492
+	geodir_listing_slider_widget_output($defaults, $query_args);
493
+
494
+	$output = ob_get_contents();
495
+
496
+	ob_end_clean();
497
+
498
+	return $output;
499 499
 }
500 500
 
501 501
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -519,22 +519,22 @@  discard block
 block discarded – undo
519 519
  */
520 520
 function geodir_sc_login_box($atts)
521 521
 {
522
-    ob_start();
522
+	ob_start();
523 523
 
524
-    $defaults = array(
525
-        'before_widget' => '',
526
-        'after_widget' => '',
527
-        'before_title' => '',
528
-        'after_title' => '',
529
-    );
524
+	$defaults = array(
525
+		'before_widget' => '',
526
+		'after_widget' => '',
527
+		'before_title' => '',
528
+		'after_title' => '',
529
+	);
530 530
 
531
-    geodir_loginwidget_output($defaults, $defaults);
531
+	geodir_loginwidget_output($defaults, $defaults);
532 532
 
533
-    $output = ob_get_contents();
533
+	$output = ob_get_contents();
534 534
 
535
-    ob_end_clean();
535
+	ob_end_clean();
536 536
 
537
-    return $output;
537
+	return $output;
538 538
 }
539 539
 
540 540
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -563,28 +563,28 @@  discard block
 block discarded – undo
563 563
  */
564 564
 function geodir_sc_popular_post_category($atts)
565 565
 {
566
-    ob_start();
567
-    global $geodir_post_category_str;
568
-    $defaults = array(
569
-        'category_limit' => 15,
570
-        'before_widget' => '',
571
-        'after_widget' => '',
572
-        'before_title' => '',
573
-        'after_title' => '',
574
-        'title' => '',
566
+	ob_start();
567
+	global $geodir_post_category_str;
568
+	$defaults = array(
569
+		'category_limit' => 15,
570
+		'before_widget' => '',
571
+		'after_widget' => '',
572
+		'before_title' => '',
573
+		'after_title' => '',
574
+		'title' => '',
575 575
 		'default_post_type' => '',
576
-    );
576
+	);
577 577
 
578
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
579
-    $params['category_limit'] = absint($params['category_limit']);
578
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
579
+	$params['category_limit'] = absint($params['category_limit']);
580 580
 	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
581
-    geodir_popular_post_category_output($params, $params);
581
+	geodir_popular_post_category_output($params, $params);
582 582
 
583
-    $output = ob_get_contents();
583
+	$output = ob_get_contents();
584 584
 
585
-    ob_end_clean();
585
+	ob_end_clean();
586 586
 
587
-    return $output;
587
+	return $output;
588 588
 }
589 589
 
590 590
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -624,97 +624,97 @@  discard block
 block discarded – undo
624 624
  */
625 625
 function geodir_sc_popular_post_view($atts)
626 626
 {
627
-    ob_start();
628
-    $defaults = array(
629
-        'post_type' => 'gd_place',
630
-        'category' => '0',
631
-        'post_number' => '5',
632
-        'layout' => 'gridview_onehalf',
633
-        'add_location_filter' => '0',
634
-        'list_sort' => 'latest',
635
-        'use_viewing_post_type' => '1',
636
-        'character_count' => '20',
637
-        'listing_width' => '',
638
-        'show_featured_only' => '0',
639
-        'show_special_only' => '0',
640
-        'with_pics_only' => '0',
641
-        'with_videos_only' => '0',
642
-        'before_widget' => '',
643
-        'after_widget' => '',
644
-        'before_title' => '<h3 class="widget-title">',
645
-        'after_title' => '</h3>',
646
-        'title' => '',
647
-        'category_title' => '',
648
-    );
649
-
650
-    $params = shortcode_atts($defaults, $atts);
651
-
652
-    /**
653
-     * Validate our incoming params
654
-     */
627
+	ob_start();
628
+	$defaults = array(
629
+		'post_type' => 'gd_place',
630
+		'category' => '0',
631
+		'post_number' => '5',
632
+		'layout' => 'gridview_onehalf',
633
+		'add_location_filter' => '0',
634
+		'list_sort' => 'latest',
635
+		'use_viewing_post_type' => '1',
636
+		'character_count' => '20',
637
+		'listing_width' => '',
638
+		'show_featured_only' => '0',
639
+		'show_special_only' => '0',
640
+		'with_pics_only' => '0',
641
+		'with_videos_only' => '0',
642
+		'before_widget' => '',
643
+		'after_widget' => '',
644
+		'before_title' => '<h3 class="widget-title">',
645
+		'after_title' => '</h3>',
646
+		'title' => '',
647
+		'category_title' => '',
648
+	);
655 649
 
656
-    // Validate the selected post type, default to gd_place on fail
657
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
658
-        $params['post_type'] = 'gd_place';
659
-    }
660
-
661
-    // Validate the selected category/ies - Grab the current list based on post_type
662
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
663
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
664
-
665
-    // Make sure we have an array
666
-    if (!(is_array($params['category']))) {
667
-        $params['category'] = explode(',', $params['category']);
668
-    }
669
-
670
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
671
-    // Otherwise it becomes empty and later on that will mean "All"
672
-    $params['category'] = array_intersect($params['category'], $categories);
673
-
674
-    // Post_number needs to be a positive integer
675
-    $params['post_number'] = absint($params['post_number']);
676
-    if (0 == $params['post_number']) {
677
-        $params['post_number'] = 1;
678
-    }
679
-
680
-    // Validate our layout choice
681
-    // Outside of the norm, I added some more simple terms to match the existing
682
-    // So now I just run the switch to set it properly.
683
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
684
-
685
-    // Validate our sorting choice
686
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
687
-
688
-    // Validate character_count
689
-    $params['character_count'] = absint($params['character_count']);
690
-    if (20 > $params['character_count']) {
691
-        $params['character_count'] = 20;
692
-    }
693
-
694
-    // Validate Listing width, used in the template widget-listing-listview.php
695
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
696
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
697
-
698
-    // Validate the checkboxes used on the widget
699
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
700
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
701
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
702
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
703
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
704
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
705
-
706
-    /**
707
-     * End of validation
708
-     */
650
+	$params = shortcode_atts($defaults, $atts);
651
+
652
+	/**
653
+	 * Validate our incoming params
654
+	 */
655
+
656
+	// Validate the selected post type, default to gd_place on fail
657
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
658
+		$params['post_type'] = 'gd_place';
659
+	}
660
+
661
+	// Validate the selected category/ies - Grab the current list based on post_type
662
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
663
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
664
+
665
+	// Make sure we have an array
666
+	if (!(is_array($params['category']))) {
667
+		$params['category'] = explode(',', $params['category']);
668
+	}
669
+
670
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
671
+	// Otherwise it becomes empty and later on that will mean "All"
672
+	$params['category'] = array_intersect($params['category'], $categories);
673
+
674
+	// Post_number needs to be a positive integer
675
+	$params['post_number'] = absint($params['post_number']);
676
+	if (0 == $params['post_number']) {
677
+		$params['post_number'] = 1;
678
+	}
709 679
 
710
-    geodir_popular_postview_output($params, $params);
680
+	// Validate our layout choice
681
+	// Outside of the norm, I added some more simple terms to match the existing
682
+	// So now I just run the switch to set it properly.
683
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
711 684
 
685
+	// Validate our sorting choice
686
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
712 687
 
713
-    $output = ob_get_contents();
688
+	// Validate character_count
689
+	$params['character_count'] = absint($params['character_count']);
690
+	if (20 > $params['character_count']) {
691
+		$params['character_count'] = 20;
692
+	}
693
+
694
+	// Validate Listing width, used in the template widget-listing-listview.php
695
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
696
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
697
+
698
+	// Validate the checkboxes used on the widget
699
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
700
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
701
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
702
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
703
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
704
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
705
+
706
+	/**
707
+	 * End of validation
708
+	 */
714 709
 
715
-    ob_end_clean();
710
+	geodir_popular_postview_output($params, $params);
716 711
 
717
-    return $output;
712
+
713
+	$output = ob_get_contents();
714
+
715
+	ob_end_clean();
716
+
717
+	return $output;
718 718
 }
719 719
 
720 720
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -736,37 +736,37 @@  discard block
 block discarded – undo
736 736
  * @return string Recent reviews HTML.
737 737
  */
738 738
 function geodir_sc_recent_reviews($atts) {
739
-    ob_start();
740
-    $defaults = array(
739
+	ob_start();
740
+	$defaults = array(
741 741
 		'title' => '',
742 742
 		'count' => 5,
743
-    );
743
+	);
744 744
 
745
-    $params = shortcode_atts($defaults, $atts);
745
+	$params = shortcode_atts($defaults, $atts);
746 746
 
747
-    $count = absint($params['count']);
748
-    if (0 == $count) {
749
-        $count = 1;
750
-    }
747
+	$count = absint($params['count']);
748
+	if (0 == $count) {
749
+		$count = 1;
750
+	}
751 751
 	
752 752
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
753 753
 
754
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
754
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
755 755
 
756
-    if ($comments_li) {
757
-        if ($title != '') { ?>
756
+	if ($comments_li) {
757
+		if ($title != '') { ?>
758 758
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
759 759
 		<?php } ?>
760 760
         <div class="geodir_sc_recent_reviews_section">
761 761
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
762 762
         </div>
763 763
     <?php
764
-    }
765
-    $output = ob_get_contents();
764
+	}
765
+	$output = ob_get_contents();
766 766
 
767
-    ob_end_clean();
767
+	ob_end_clean();
768 768
 
769
-    return $output;
769
+	return $output;
770 770
 }
771 771
 
772 772
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -796,64 +796,64 @@  discard block
 block discarded – undo
796 796
  */
797 797
 function geodir_sc_related_listings($atts)
798 798
 {
799
-    ob_start();
800
-    $defaults = array(
801
-        'post_number' => 5,
802
-        'relate_to' => 'category',
803
-        'layout' => 'gridview_onehalf',
804
-        'add_location_filter' => 0,
805
-        'listing_width' => '',
806
-        'list_sort' => 'latest',
807
-        'character_count' => 20,
808
-        'is_widget' => 1,
809
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
810
-    );
811
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
812
-
813
-    $params = shortcode_atts($defaults, $atts);
814
-
815
-    /**
816
-     * Begin validating parameters
817
-     */
799
+	ob_start();
800
+	$defaults = array(
801
+		'post_number' => 5,
802
+		'relate_to' => 'category',
803
+		'layout' => 'gridview_onehalf',
804
+		'add_location_filter' => 0,
805
+		'listing_width' => '',
806
+		'list_sort' => 'latest',
807
+		'character_count' => 20,
808
+		'is_widget' => 1,
809
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
810
+	);
811
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
812
+
813
+	$params = shortcode_atts($defaults, $atts);
814
+
815
+	/**
816
+	 * Begin validating parameters
817
+	 */
818 818
 
819
-    // Validate that post_number is a number and is 1 or higher
820
-    $params['post_number'] = absint($params['post_number']);
821
-    if (0 === $params['post_number']) {
822
-        $params['post_number'] = 1;
823
-    }
819
+	// Validate that post_number is a number and is 1 or higher
820
+	$params['post_number'] = absint($params['post_number']);
821
+	if (0 === $params['post_number']) {
822
+		$params['post_number'] = 1;
823
+	}
824 824
 
825
-    // Validate relate_to - only category or tags
826
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
827
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
828
-        $params['relate_to'] = 'category';
829
-    }
825
+	// Validate relate_to - only category or tags
826
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
827
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
828
+		$params['relate_to'] = 'category';
829
+	}
830 830
 
831
-    // Validate layout selection
832
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
831
+	// Validate layout selection
832
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
833 833
 
834
-    // Validate sorting option
835
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
834
+	// Validate sorting option
835
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
836 836
 
837
-    // Validate add_location_filter
838
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
837
+	// Validate add_location_filter
838
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
839 839
 
840
-    // Validate listing_width
841
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
840
+	// Validate listing_width
841
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
842 842
 
843
-    // Validate character_count
844
-    $params['character_count'] = absint($params['character_count']);
845
-    if (20 > $params['character_count']) {
846
-        $params['character_count'] = 20;
847
-    }
843
+	// Validate character_count
844
+	$params['character_count'] = absint($params['character_count']);
845
+	if (20 > $params['character_count']) {
846
+		$params['character_count'] = 20;
847
+	}
848 848
 
849
-    if ($related_display = geodir_related_posts_display($params)) {
850
-        echo $related_display;
851
-    }
852
-    $output = ob_get_contents();
849
+	if ($related_display = geodir_related_posts_display($params)) {
850
+		echo $related_display;
851
+	}
852
+	$output = ob_get_contents();
853 853
 
854
-    ob_end_clean();
854
+	ob_end_clean();
855 855
 
856
-    return $output;
856
+	return $output;
857 857
 }
858 858
 
859 859
 /**
@@ -877,12 +877,12 @@  discard block
 block discarded – undo
877 877
  * @return string Advanced search widget HTML.
878 878
  */
879 879
 function geodir_sc_advanced_search($atts) {
880
-    $defaults = array(
880
+	$defaults = array(
881 881
 		'title' => '',
882 882
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
883
-        'after_widget' => '</section>',
884
-        'before_title' => '<h3 class="widget-title">',
885
-        'after_title' => '</h3>',
883
+		'after_widget' => '</section>',
884
+		'before_title' => '<h3 class="widget-title">',
885
+		'after_title' => '</h3>',
886 886
 		'show_adv_search' => 'default'
887 887
 	);
888 888
 	
@@ -906,9 +906,9 @@  discard block
 block discarded – undo
906 906
 	the_widget('geodir_advance_search_widget', $params, $params );
907 907
 	
908 908
 	$output = ob_get_contents();
909
-    ob_end_clean();
909
+	ob_end_clean();
910 910
 
911
-    return $output;
911
+	return $output;
912 912
 }
913 913
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
914 914
 
@@ -954,48 +954,48 @@  discard block
 block discarded – undo
954 954
 		'add_location_filter' => '1',
955 955
 		'tab_layout' => 'bestof-tabs-on-top',
956 956
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
957
-        'after_widget' => '</section>',
958
-        'before_title' => '<h3 class="widget-title">',
959
-        'after_title' => '</h3>',
957
+		'after_widget' => '</section>',
958
+		'before_title' => '<h3 class="widget-title">',
959
+		'after_title' => '</h3>',
960 960
 	);
961 961
 	$params = shortcode_atts($defaults, $atts);
962 962
 
963
-    /**
964
-     * Validate our incoming params
965
-     */
963
+	/**
964
+	 * Validate our incoming params
965
+	 */
966 966
 
967
-    // Validate the selected post type, default to gd_place on fail
968
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
969
-        $params['post_type'] = 'gd_place';
970
-    }
967
+	// Validate the selected post type, default to gd_place on fail
968
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
969
+		$params['post_type'] = 'gd_place';
970
+	}
971 971
 	
972 972
 	// Post limit needs to be a positive integer
973
-    $params['post_limit'] = absint($params['post_limit']);
974
-    if (0 == $params['post_limit']) {
975
-        $params['post_limit'] = 5;
976
-    }
973
+	$params['post_limit'] = absint($params['post_limit']);
974
+	if (0 == $params['post_limit']) {
975
+		$params['post_limit'] = 5;
976
+	}
977 977
 	
978 978
 	// Category limit needs to be a positive integer
979
-    $params['categ_limit'] = absint($params['categ_limit']);
980
-    if (0 == $params['categ_limit']) {
981
-        $params['categ_limit'] = 3;
982
-    }
979
+	$params['categ_limit'] = absint($params['categ_limit']);
980
+	if (0 == $params['categ_limit']) {
981
+		$params['categ_limit'] = 3;
982
+	}
983 983
 	
984 984
 	// Tab layout validation
985
-    $params['tab_layout'] = $params['tab_layout'];
986
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
987
-        $params['tab_layout'] = 'bestof-tabs-on-top';
988
-    }
985
+	$params['tab_layout'] = $params['tab_layout'];
986
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
987
+		$params['tab_layout'] = 'bestof-tabs-on-top';
988
+	}
989 989
 	
990 990
 	// Validate character_count
991
-    $params['character_count'] = $params['character_count'];
991
+	$params['character_count'] = $params['character_count'];
992 992
 
993 993
 	ob_start();
994 994
 	the_widget('geodir_bestof_widget', $params, $params);
995
-    $output = ob_get_contents();
996
-    ob_end_clean();
995
+	$output = ob_get_contents();
996
+	ob_end_clean();
997 997
 
998
-    return $output;
998
+	return $output;
999 999
 }
1000 1000
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1001 1001
 
@@ -1043,127 +1043,127 @@  discard block
 block discarded – undo
1043 1043
  * @return string HTML content to display geodirectory listings.
1044 1044
  */
1045 1045
 function geodir_sc_gd_listings($atts, $content = '') {
1046
-    global $post;
1047
-    $defaults = array(
1048
-        'title'                 => '',
1049
-        'post_type'             => 'gd_place',
1050
-        'category'              => 0,
1051
-        'list_sort'             => 'latest',
1052
-        'event_type'            => '',
1053
-        'post_number'           => 10,
1054
-        'post_author'           => '',
1055
-        'layout'                => 'gridview_onehalf',
1056
-        'listing_width'         => '',
1057
-        'character_count'       => 20,
1058
-        'add_location_filter'   => 1,
1059
-        'show_featured_only'    => '',
1060
-        'show_special_only'     => '',
1061
-        'with_pics_only'        => '',
1062
-        'with_videos_only'      => '',
1063
-        'with_pagination'       => '1',
1064
-        'top_pagination'        => '0',
1065
-        'bottom_pagination'     => '1',
1066
-        'without_no_results'    => 0,
1067
-        'tags'                  => ''
1068
-    );
1069
-    $params = shortcode_atts($defaults, $atts);
1070
-
1071
-    $params['title']        = wp_strip_all_tags($params['title']);
1072
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1073
-
1074
-    // Validate the selected category/ies - Grab the current list based on post_type
1075
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1076
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1077
-
1078
-    // Make sure we have an array
1079
-    if (!(is_array($params['category']))) {
1080
-        $params['category'] = explode(',', $params['category']);
1081
-    }
1082
-
1083
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1084
-    // Otherwise it becomes empty and later on that will mean "All"
1085
-    $params['category']     = array_intersect($params['category'], $categories);
1086
-
1087
-    // Post_number needs to be a positive integer
1088
-    $params['post_number']  = absint($params['post_number']);
1089
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1046
+	global $post;
1047
+	$defaults = array(
1048
+		'title'                 => '',
1049
+		'post_type'             => 'gd_place',
1050
+		'category'              => 0,
1051
+		'list_sort'             => 'latest',
1052
+		'event_type'            => '',
1053
+		'post_number'           => 10,
1054
+		'post_author'           => '',
1055
+		'layout'                => 'gridview_onehalf',
1056
+		'listing_width'         => '',
1057
+		'character_count'       => 20,
1058
+		'add_location_filter'   => 1,
1059
+		'show_featured_only'    => '',
1060
+		'show_special_only'     => '',
1061
+		'with_pics_only'        => '',
1062
+		'with_videos_only'      => '',
1063
+		'with_pagination'       => '1',
1064
+		'top_pagination'        => '0',
1065
+		'bottom_pagination'     => '1',
1066
+		'without_no_results'    => 0,
1067
+		'tags'                  => ''
1068
+	);
1069
+	$params = shortcode_atts($defaults, $atts);
1070
+
1071
+	$params['title']        = wp_strip_all_tags($params['title']);
1072
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1073
+
1074
+	// Validate the selected category/ies - Grab the current list based on post_type
1075
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1076
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1077
+
1078
+	// Make sure we have an array
1079
+	if (!(is_array($params['category']))) {
1080
+		$params['category'] = explode(',', $params['category']);
1081
+	}
1082
+
1083
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1084
+	// Otherwise it becomes empty and later on that will mean "All"
1085
+	$params['category']     = array_intersect($params['category'], $categories);
1086
+
1087
+	// Post_number needs to be a positive integer
1088
+	$params['post_number']  = absint($params['post_number']);
1089
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1090 1090
     
1091
-    // Post_number needs to be a positive integer
1092
-    if (!empty($atts['post_author'])) {
1093
-        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1094
-            $params['post_author'] = $post->post_author;
1095
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1096
-            $params['post_author'] = absint($atts['post_author']);
1097
-        } else {
1098
-            unset($params['post_author']);
1099
-        }
1100
-    } else {
1101
-        unset($params['post_author']);
1102
-    }
1103
-
1104
-    // Validate character_count
1105
-    //todo: is this necessary?
1106
-    $params['character_count']  = $params['character_count'];
1107
-
1108
-    // Validate our layout choice
1109
-    // Outside of the norm, I added some more simple terms to match the existing
1110
-    // So now I just run the switch to set it properly.
1111
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1112
-
1113
-    // Validate our sorting choice
1114
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1115
-
1116
-    // Validate Listing width, used in the template widget-listing-listview.php
1117
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1118
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1119
-
1120
-    // Validate the checkboxes used on the widget
1121
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1122
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1123
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1124
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1125
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1126
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1127
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1128
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1129
-
1130
-    // Clean tags
1131
-    if (!empty($params['tags'])) {
1132
-        if (!is_array($params['tags'])) {
1133
-            $comma = _x(',', 'tag delimiter');
1134
-            if ( ',' !== $comma ) {
1135
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1136
-            }
1137
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1138
-            $params['tags'] = array_map('trim', $params['tags']);
1139
-        }
1140
-    } else {
1141
-        $params['tags'] = array();
1142
-    }
1143
-
1144
-    /**
1145
-     * End of validation
1146
-     */
1147
-    if (isset($atts['geodir_ajax'])) {
1148
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1149
-        unset($atts['geodir_ajax']);
1150
-    }
1151
-    if (isset($atts['pageno'])) {
1152
-        $params['pageno'] = $atts['pageno'];
1153
-        unset($atts['pageno']);
1154
-    }
1155
-
1156
-    if ( !empty($atts['shortcode_content']) ) {
1157
-        $content = $atts['shortcode_content'];
1158
-    }
1159
-    $params['shortcode_content'] = trim($content);
1160
-    $atts['shortcode_content'] = trim($content);
1091
+	// Post_number needs to be a positive integer
1092
+	if (!empty($atts['post_author'])) {
1093
+		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1094
+			$params['post_author'] = $post->post_author;
1095
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1096
+			$params['post_author'] = absint($atts['post_author']);
1097
+		} else {
1098
+			unset($params['post_author']);
1099
+		}
1100
+	} else {
1101
+		unset($params['post_author']);
1102
+	}
1103
+
1104
+	// Validate character_count
1105
+	//todo: is this necessary?
1106
+	$params['character_count']  = $params['character_count'];
1107
+
1108
+	// Validate our layout choice
1109
+	// Outside of the norm, I added some more simple terms to match the existing
1110
+	// So now I just run the switch to set it properly.
1111
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1112
+
1113
+	// Validate our sorting choice
1114
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1115
+
1116
+	// Validate Listing width, used in the template widget-listing-listview.php
1117
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1118
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1119
+
1120
+	// Validate the checkboxes used on the widget
1121
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1122
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1123
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1124
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1125
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1126
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1127
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1128
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1129
+
1130
+	// Clean tags
1131
+	if (!empty($params['tags'])) {
1132
+		if (!is_array($params['tags'])) {
1133
+			$comma = _x(',', 'tag delimiter');
1134
+			if ( ',' !== $comma ) {
1135
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1136
+			}
1137
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1138
+			$params['tags'] = array_map('trim', $params['tags']);
1139
+		}
1140
+	} else {
1141
+		$params['tags'] = array();
1142
+	}
1143
+
1144
+	/**
1145
+	 * End of validation
1146
+	 */
1147
+	if (isset($atts['geodir_ajax'])) {
1148
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1149
+		unset($atts['geodir_ajax']);
1150
+	}
1151
+	if (isset($atts['pageno'])) {
1152
+		$params['pageno'] = $atts['pageno'];
1153
+		unset($atts['pageno']);
1154
+	}
1155
+
1156
+	if ( !empty($atts['shortcode_content']) ) {
1157
+		$content = $atts['shortcode_content'];
1158
+	}
1159
+	$params['shortcode_content'] = trim($content);
1160
+	$atts['shortcode_content'] = trim($content);
1161 1161
     
1162
-    $params['shortcode_atts']       = $atts;
1162
+	$params['shortcode_atts']       = $atts;
1163 1163
 
1164
-    $output = geodir_sc_gd_listings_output($params);
1164
+	$output = geodir_sc_gd_listings_output($params);
1165 1165
 
1166
-    return $output;
1166
+	return $output;
1167 1167
 }
1168 1168
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1169 1169
 
@@ -1211,23 +1211,23 @@  discard block
 block discarded – undo
1211 1211
 		'max_count' => 'all',
1212 1212
 		'max_level' => '1',
1213 1213
 		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1214
-        'after_widget' => '</section>',
1215
-        'before_title' => '<h3 class="widget-title">',
1216
-        'after_title' => '</h3>',
1214
+		'after_widget' => '</section>',
1215
+		'before_title' => '<h3 class="widget-title">',
1216
+		'after_title' => '</h3>',
1217 1217
 	);
1218 1218
 	$params = shortcode_atts($defaults, $atts);
1219 1219
 
1220
-    /**
1221
-     * Validate our incoming params
1222
-     */
1220
+	/**
1221
+	 * Validate our incoming params
1222
+	 */
1223 1223
 	// Make sure we have an array
1224
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1224
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1225 1225
 	 
1226 1226
 	// Validate the checkboxes used on the widget
1227
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1228
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1229
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1230
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1227
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1228
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1229
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1230
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1231 1231
 	
1232 1232
 	if ($params['max_count'] != 'all') {
1233 1233
 		$params['max_count'] = absint($params['max_count']);
@@ -1241,10 +1241,10 @@  discard block
 block discarded – undo
1241 1241
 
1242 1242
 	ob_start();
1243 1243
 	the_widget('geodir_cpt_categories_widget', $params, $params);
1244
-    $output = ob_get_contents();
1245
-    ob_end_clean();
1244
+	$output = ob_get_contents();
1245
+	ob_end_clean();
1246 1246
 
1247
-    return $output;
1247
+	return $output;
1248 1248
 }
1249 1249
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1250 1250
 ?>
1251 1251
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/shortcode_functions.php 1 patch
Indentation   +427 added lines, -427 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  
10 10
 // If this file is called directly, abort.
11 11
 if (!defined('WPINC')) {
12
-    die;
12
+	die;
13 13
 }
14 14
 
15 15
 /**
@@ -22,22 +22,22 @@  discard block
 block discarded – undo
22 22
  */
23 23
 function gdsc_validate_measurements($value)
24 24
 {
25
-    if ((strlen($value) - 1) == strpos(trim($value), '%')) {
26
-        // $value is entered as a percent, so it can't be less than 0 or more than 100
27
-        $value = preg_replace('/\D/', '', $value);
28
-        if (100 < $value) {
29
-            $value = 100;
30
-        }
31
-        // Re-add the percent symbol
32
-        $value = $value . '%';
33
-    } elseif ((strlen($value) - 2) == strpos(trim($value), 'px')) {
34
-        // Get the absint & re-add the 'px'
35
-        $value = preg_replace('/\D/', '', $value) . 'px';
36
-    } else {
37
-        $value = preg_replace('/\D/', '', $value);
38
-    }
39
-
40
-    return $value;
25
+	if ((strlen($value) - 1) == strpos(trim($value), '%')) {
26
+		// $value is entered as a percent, so it can't be less than 0 or more than 100
27
+		$value = preg_replace('/\D/', '', $value);
28
+		if (100 < $value) {
29
+			$value = 100;
30
+		}
31
+		// Re-add the percent symbol
32
+		$value = $value . '%';
33
+	} elseif ((strlen($value) - 2) == strpos(trim($value), 'px')) {
34
+		// Get the absint & re-add the 'px'
35
+		$value = preg_replace('/\D/', '', $value) . 'px';
36
+	} else {
37
+		$value = preg_replace('/\D/', '', $value);
38
+	}
39
+
40
+	return $value;
41 41
 }
42 42
 
43 43
 /**
@@ -52,35 +52,35 @@  discard block
 block discarded – undo
52 52
 function gdsc_validate_map_args($params)
53 53
 {
54 54
 
55
-    $params['width'] = gdsc_validate_measurements($params['width']);
56
-    $params['height'] = gdsc_validate_measurements($params['height']);
55
+	$params['width'] = gdsc_validate_measurements($params['width']);
56
+	$params['height'] = gdsc_validate_measurements($params['height']);
57 57
 
58
-    // Only accept our 4 maptypes. Otherwise, revert to the default.
59
-    if (!(in_array(geodir_strtoupper($params['maptype']), array('HYBRID', 'SATELLITE', 'ROADMAP', 'TERRAIN')))) {
60
-        $params['maptype'] = 'ROADMAP';
61
-    } else {
62
-        $params['maptype'] = geodir_strtoupper($params['maptype']);
63
-    }
58
+	// Only accept our 4 maptypes. Otherwise, revert to the default.
59
+	if (!(in_array(geodir_strtoupper($params['maptype']), array('HYBRID', 'SATELLITE', 'ROADMAP', 'TERRAIN')))) {
60
+		$params['maptype'] = 'ROADMAP';
61
+	} else {
62
+		$params['maptype'] = geodir_strtoupper($params['maptype']);
63
+	}
64 64
 
65
-    // Zoom accepts a value between 1 and 19
66
-    $params['zoom'] = absint($params['zoom']);
67
-    if (19 < $params['zoom']) {
68
-        $params['zoom'] = '19';
69
-    }
70
-    if (0 == $params['zoom']) {
71
-        $params['zoom'] = '1';
72
-    }
65
+	// Zoom accepts a value between 1 and 19
66
+	$params['zoom'] = absint($params['zoom']);
67
+	if (19 < $params['zoom']) {
68
+		$params['zoom'] = '19';
69
+	}
70
+	if (0 == $params['zoom']) {
71
+		$params['zoom'] = '1';
72
+	}
73 73
 
74
-    // Child_collapse must be boolean
75
-    $params['child_collapse'] = gdsc_to_bool_val($params['child_collapse']);
74
+	// Child_collapse must be boolean
75
+	$params['child_collapse'] = gdsc_to_bool_val($params['child_collapse']);
76 76
 
77
-    // Scrollwheel must be boolean
78
-    $params['scrollwheel'] = gdsc_to_bool_val($params['scrollwheel']);
77
+	// Scrollwheel must be boolean
78
+	$params['scrollwheel'] = gdsc_to_bool_val($params['scrollwheel']);
79 79
 
80
-    // Scrollwheel must be boolean
81
-    $params['autozoom'] = gdsc_to_bool_val($params['autozoom']);
80
+	// Scrollwheel must be boolean
81
+	$params['autozoom'] = gdsc_to_bool_val($params['autozoom']);
82 82
 
83
-    return $params;
83
+	return $params;
84 84
 }
85 85
 
86 86
 /**
@@ -99,52 +99,52 @@  discard block
 block discarded – undo
99 99
  */
100 100
 function gdsc_to_bool_val($in, $strict = false)
101 101
 {
102
-    $out = null;
103
-
104
-    // if not strict, we only have to check if something is false
105
-    if (in_array($in, array(
106
-        'false',
107
-        'False',
108
-        'FALSE',
109
-        'no',
110
-        'No',
111
-        'n',
112
-        'N',
113
-        '0',
114
-        'off',
115
-        'Off',
116
-        'OFF',
117
-        false,
118
-        0,
119
-        null
120
-    ), true)) {
121
-        $out = false;
122
-    } else if ($strict) {
123
-        // if strict, check the equivalent true values
124
-        if (in_array($in, array(
125
-            'true',
126
-            'True',
127
-            'TRUE',
128
-            'yes',
129
-            'Yes',
130
-            'y',
131
-            'Y',
132
-            '1',
133
-            'on',
134
-            'On',
135
-            'ON',
136
-            true,
137
-            1
138
-        ), true)) {
139
-            $out = true;
140
-        }
141
-    } else {
142
-        // not strict? let the regular php bool check figure it out (will
143
-        //     largely default to true)
144
-        $out = ($in ? true : false);
145
-    }
146
-
147
-    return $out;
102
+	$out = null;
103
+
104
+	// if not strict, we only have to check if something is false
105
+	if (in_array($in, array(
106
+		'false',
107
+		'False',
108
+		'FALSE',
109
+		'no',
110
+		'No',
111
+		'n',
112
+		'N',
113
+		'0',
114
+		'off',
115
+		'Off',
116
+		'OFF',
117
+		false,
118
+		0,
119
+		null
120
+	), true)) {
121
+		$out = false;
122
+	} else if ($strict) {
123
+		// if strict, check the equivalent true values
124
+		if (in_array($in, array(
125
+			'true',
126
+			'True',
127
+			'TRUE',
128
+			'yes',
129
+			'Yes',
130
+			'y',
131
+			'Y',
132
+			'1',
133
+			'on',
134
+			'On',
135
+			'ON',
136
+			true,
137
+			1
138
+		), true)) {
139
+			$out = true;
140
+		}
141
+	} else {
142
+		// not strict? let the regular php bool check figure it out (will
143
+		//     largely default to true)
144
+		$out = ($in ? true : false);
145
+	}
146
+
147
+	return $out;
148 148
 }
149 149
 
150 150
 /**
@@ -157,16 +157,16 @@  discard block
 block discarded – undo
157 157
  */
158 158
 function gdsc_is_post_type_valid($incoming_post_type)
159 159
 {
160
-    $post_types = geodir_get_posttypes();
161
-    $post_types = array_map('geodir_strtolower', $post_types);
162
-    $post_type_found = false;
163
-    foreach ($post_types as $type) {
164
-        if (geodir_strtolower($incoming_post_type) == geodir_strtolower($type)) {
165
-            $post_type_found = true;
166
-        }
167
-    }
168
-
169
-    return $post_type_found;
160
+	$post_types = geodir_get_posttypes();
161
+	$post_types = array_map('geodir_strtolower', $post_types);
162
+	$post_type_found = false;
163
+	foreach ($post_types as $type) {
164
+		if (geodir_strtolower($incoming_post_type) == geodir_strtolower($type)) {
165
+			$post_type_found = true;
166
+		}
167
+	}
168
+
169
+	return $post_type_found;
170 170
 }
171 171
 
172 172
 /**
@@ -186,52 +186,52 @@  discard block
 block discarded – undo
186 186
  */
187 187
 function gdsc_listing_loop_filter($query)
188 188
 {
189
-    global $wp_query, $geodir_post_type, $table, $plugin_prefix, $term;
190
-
191
-    $geodir_post_type = geodir_get_current_posttype();
192
-
193
-    if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
194
-        $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
195
-
196
-        if (isset($wp_query->query[$taxonomies[0]])) {
197
-            $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
198
-            $request_term = end($request_term);
199
-            if (!term_exists($request_term)) {
200
-                $args = array('number' => '1',);
201
-                $terms_arr = get_terms($taxonomies[0], $args);
202
-                foreach ($terms_arr as $location_term) {
203
-                    $term_arr = $location_term;
204
-                    $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
205
-                }
206
-                $wp_query->queried_object_id = 1;
207
-                $wp_query->queried_object = $term_arr;
208
-            }
209
-        }
189
+	global $wp_query, $geodir_post_type, $table, $plugin_prefix, $term;
190
+
191
+	$geodir_post_type = geodir_get_current_posttype();
192
+
193
+	if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
194
+		$taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
195
+
196
+		if (isset($wp_query->query[$taxonomies[0]])) {
197
+			$request_term = explode("/", $wp_query->query[$taxonomies[0]]);
198
+			$request_term = end($request_term);
199
+			if (!term_exists($request_term)) {
200
+				$args = array('number' => '1',);
201
+				$terms_arr = get_terms($taxonomies[0], $args);
202
+				foreach ($terms_arr as $location_term) {
203
+					$term_arr = $location_term;
204
+					$term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
205
+				}
206
+				$wp_query->queried_object_id = 1;
207
+				$wp_query->queried_object = $term_arr;
208
+			}
209
+		}
210 210
 
211
-    }
212
-    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
211
+	}
212
+	if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
213 213
 
214
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
214
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
215 215
 
216
-        add_filter('posts_fields', 'geodir_posts_fields', 1);
217
-        add_filter('posts_join', 'geodir_posts_join', 1);
218
-        geodir_post_where();
219
-        if (!is_admin()) {
220
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
221
-        }
216
+		add_filter('posts_fields', 'geodir_posts_fields', 1);
217
+		add_filter('posts_join', 'geodir_posts_join', 1);
218
+		geodir_post_where();
219
+		if (!is_admin()) {
220
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
221
+		}
222 222
 
223
-        // advanced filter for popular post view widget
224
-        global $wp_query;
225
-        if (!is_admin()) {
226
-            if (!empty($wp_query->query['with_pics_only'])) {
227
-                add_filter('posts_join', 'geodir_filter_widget_join', 1000);
228
-            }
229
-            add_filter('posts_where', 'geodir_filter_widget_where', 1000);
230
-        }
223
+		// advanced filter for popular post view widget
224
+		global $wp_query;
225
+		if (!is_admin()) {
226
+			if (!empty($wp_query->query['with_pics_only'])) {
227
+				add_filter('posts_join', 'geodir_filter_widget_join', 1000);
228
+			}
229
+			add_filter('posts_where', 'geodir_filter_widget_where', 1000);
230
+		}
231 231
 
232
-    }
232
+	}
233 233
 
234
-    return $query;
234
+	return $query;
235 235
 }
236 236
 
237 237
 /**
@@ -245,40 +245,40 @@  discard block
 block discarded – undo
245 245
  */
246 246
 function gdsc_manage_category_choice($post_type, $category)
247 247
 {
248
-    if (0 == $category || '' == $category) {
249
-        return '';
250
-    }
248
+	if (0 == $category || '' == $category) {
249
+		return '';
250
+	}
251 251
 
252
-    if (!(gdsc_is_post_type_valid($post_type))) {
253
-        return '';
254
-    }
252
+	if (!(gdsc_is_post_type_valid($post_type))) {
253
+		return '';
254
+	}
255 255
 
256
-    $taxonomies = geodir_get_taxonomies($post_type);
256
+	$taxonomies = geodir_get_taxonomies($post_type);
257 257
 
258
-    $categories = get_terms(array('taxonomy' => $taxonomies[0]));
258
+	$categories = get_terms(array('taxonomy' => $taxonomies[0]));
259 259
 
260
-    $cat_id = 0;
260
+	$cat_id = 0;
261 261
 
262
-    foreach ($categories as $cat) {
263
-        if (is_numeric($category)) {
264
-            if (absint($category) == $cat->term_id) {
265
-                $cat_id = $cat->term_id;
266
-                break;
267
-            }
268
-        } else {
269
-            if ($category == $cat->slug) {
270
-                $cat_id = $cat->term_id;
271
-                break;
272
-            }
262
+	foreach ($categories as $cat) {
263
+		if (is_numeric($category)) {
264
+			if (absint($category) == $cat->term_id) {
265
+				$cat_id = $cat->term_id;
266
+				break;
267
+			}
268
+		} else {
269
+			if ($category == $cat->slug) {
270
+				$cat_id = $cat->term_id;
271
+				break;
272
+			}
273 273
 
274
-            if ($category == $cat->name) {
275
-                $cat_id = $cat->term_id;
276
-                break;
277
-            }
278
-        }
279
-    }
274
+			if ($category == $cat->name) {
275
+				$cat_id = $cat->term_id;
276
+				break;
277
+			}
278
+		}
279
+	}
280 280
 
281
-    return $cat_id;
281
+	return $cat_id;
282 282
 }
283 283
 
284 284
 // @todo: Extract this
@@ -288,11 +288,11 @@  discard block
 block discarded – undo
288 288
 	 * Adds the script in the page footer for the home page google map.
289 289
 	 *
290 290
 	 * @since 1.0.0
291
-     * @return string Print the script in page footer.
291
+	 * @return string Print the script in page footer.
292 292
 	 */
293 293
 	function geodir_home_map_add_script()
294
-    {
295
-        ?>
294
+	{
295
+		?>
296 296
         <script type="text/javascript">
297 297
             jQuery(document).ready(function () {
298 298
                 geoDirMapSlide();
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
             }
366 366
         </script>
367 367
     <?php
368
-    }
368
+	}
369 369
 }
370 370
 
371 371
 /**
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
  */
377 377
 function geodir_popular_category_add_scripts()
378 378
 {
379
-    ?>
379
+	?>
380 380
     <script type="text/javascript">
381 381
         jQuery(function ($) {
382 382
             $('.geodir-showcat').click(function () {
@@ -406,56 +406,56 @@  discard block
 block discarded – undo
406 406
  */
407 407
 function gdsc_validate_layout_choice($layout_choice)
408 408
 {
409
-    switch (geodir_strtolower($layout_choice)) {
410
-        case 'list';
411
-        case 'one';
412
-        case 'one_column';
413
-        case 'onecolumn';
414
-        case '1';
415
-            $layout_choice = 'list';
416
-            break;
417
-        case 'gridview_onehalf';
418
-        case 'two';
419
-        case 'two_column';
420
-        case 'two_columns';
421
-        case 'twocolumn';
422
-        case 'twocolumns';
423
-        case '2';
424
-            $layout_choice = 'gridview_onehalf';
425
-            break;
426
-        case 'gridview_onethird';
427
-        case 'three';
428
-        case 'three_column';
429
-        case 'three_columns';
430
-        case 'threecolumn';
431
-        case 'threecolumns';
432
-        case '3';
433
-            $layout_choice = 'gridview_onethird';
434
-            break;
435
-        case 'gridview_onefourth';
436
-        case 'four';
437
-        case 'four_column';
438
-        case 'four_columns';
439
-        case 'fourcolumn';
440
-        case 'fourcolumns';
441
-        case '4';
442
-            $layout_choice = 'gridview_onefourth';
443
-            break;
444
-        case 'gridview_onefifth';
445
-        case 'five';
446
-        case 'five_column';
447
-        case 'five_columns';
448
-        case 'fivecolumn';
449
-        case 'fivecolumns';
450
-        case '5';
451
-            $layout_choice = 'gridview_onefifth';
452
-            break;
453
-        default:
454
-            $layout_choice = 'gridview_onehalf';
455
-            break;
456
-    }
457
-
458
-    return $layout_choice;
409
+	switch (geodir_strtolower($layout_choice)) {
410
+		case 'list';
411
+		case 'one';
412
+		case 'one_column';
413
+		case 'onecolumn';
414
+		case '1';
415
+			$layout_choice = 'list';
416
+			break;
417
+		case 'gridview_onehalf';
418
+		case 'two';
419
+		case 'two_column';
420
+		case 'two_columns';
421
+		case 'twocolumn';
422
+		case 'twocolumns';
423
+		case '2';
424
+			$layout_choice = 'gridview_onehalf';
425
+			break;
426
+		case 'gridview_onethird';
427
+		case 'three';
428
+		case 'three_column';
429
+		case 'three_columns';
430
+		case 'threecolumn';
431
+		case 'threecolumns';
432
+		case '3';
433
+			$layout_choice = 'gridview_onethird';
434
+			break;
435
+		case 'gridview_onefourth';
436
+		case 'four';
437
+		case 'four_column';
438
+		case 'four_columns';
439
+		case 'fourcolumn';
440
+		case 'fourcolumns';
441
+		case '4';
442
+			$layout_choice = 'gridview_onefourth';
443
+			break;
444
+		case 'gridview_onefifth';
445
+		case 'five';
446
+		case 'five_column';
447
+		case 'five_columns';
448
+		case 'fivecolumn';
449
+		case 'fivecolumns';
450
+		case '5';
451
+			$layout_choice = 'gridview_onefifth';
452
+			break;
453
+		default:
454
+			$layout_choice = 'gridview_onehalf';
455
+			break;
456
+	}
457
+
458
+	return $layout_choice;
459 459
 }
460 460
 
461 461
 /**
@@ -468,20 +468,20 @@  discard block
 block discarded – undo
468 468
  */
469 469
 function gdsc_validate_sort_choice($sort_choice)
470 470
 {
471
-    $sorts = array(
472
-        'az',
473
-        'latest',
474
-        'featured',
475
-        'high_review',
476
-        'high_rating',
477
-        'random',
478
-    );
479
-
480
-    if (!(in_array($sort_choice, $sorts))) {
481
-        $sort_choice = 'latest';
482
-    }
483
-
484
-    return $sort_choice;
471
+	$sorts = array(
472
+		'az',
473
+		'latest',
474
+		'featured',
475
+		'high_review',
476
+		'high_rating',
477
+		'random',
478
+	);
479
+
480
+	if (!(in_array($sort_choice, $sorts))) {
481
+		$sort_choice = 'latest';
482
+	}
483
+
484
+	return $sort_choice;
485 485
 }
486 486
 
487 487
 /**
@@ -494,22 +494,22 @@  discard block
 block discarded – undo
494 494
  */
495 495
 function gdsc_validate_listing_width($width_choice)
496 496
 {
497
-    if (!(empty($width_choice))) {
498
-        $width_choice = absint($width_choice);
499
-    } else {
500
-        return '';
501
-    }
502
-
503
-    if (100 < $width_choice) {
504
-        $width_choice = 100;
505
-    }
506
-
507
-    // If listing_width is too narrow, it won't work, arbitrarily set to 10% here
508
-    if (10 > $width_choice) {
509
-        $width_choice = 10;
510
-    }
511
-
512
-    return $width_choice;
497
+	if (!(empty($width_choice))) {
498
+		$width_choice = absint($width_choice);
499
+	} else {
500
+		return '';
501
+	}
502
+
503
+	if (100 < $width_choice) {
504
+		$width_choice = 100;
505
+	}
506
+
507
+	// If listing_width is too narrow, it won't work, arbitrarily set to 10% here
508
+	if (10 > $width_choice) {
509
+		$width_choice = 10;
510
+	}
511
+
512
+	return $width_choice;
513 513
 }
514 514
 
515 515
 /**
@@ -522,18 +522,18 @@  discard block
 block discarded – undo
522 522
  */
523 523
 function gdsc_validate_list_filter_choice($filter_choice)
524 524
 {
525
-    $filters = array(
526
-        'all',
527
-        'today',
528
-        'upcoming',
529
-        'past',
530
-    );
531
-
532
-    if (!(in_array($filter_choice, $filters))) {
533
-        $filter_choice = 'all';
534
-    }
535
-
536
-    return $filter_choice;
525
+	$filters = array(
526
+		'all',
527
+		'today',
528
+		'upcoming',
529
+		'past',
530
+	);
531
+
532
+	if (!(in_array($filter_choice, $filters))) {
533
+		$filter_choice = 'all';
534
+	}
535
+
536
+	return $filter_choice;
537 537
 }
538 538
 
539 539
 /**
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
  * @return string Listings HTML content.
555 555
  */
556 556
 function geodir_sc_gd_listings_output($args = array()) {
557
-    $title				 = !empty($args['title']) ? __($args['title'], 'geodirectory') : '';
557
+	$title				 = !empty($args['title']) ? __($args['title'], 'geodirectory') : '';
558 558
 	$post_type 			 = !empty($args['post_type']) ? $args['post_type'] : 'gd_place';
559 559
 	$category 			 = !empty($args['category']) ? $args['category'] : '0';
560 560
 	$post_number		 = !empty($args['post_number']) ? $args['post_number'] : 10;
@@ -564,17 +564,17 @@  discard block
 block discarded – undo
564 564
 	$layout 			 = !empty($args['layout']) ? $args['layout'] : 'gridview_onehalf';
565 565
 	$with_pagination 	 = !empty($args['with_pagination']) ? true : false;
566 566
 	$event_type 	 	 = !empty($args['event_type']) ? $args['event_type'] : '';
567
-    $shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
568
-    $tags                = !empty($args['tags']) ? $args['tags'] : array();
569
-    /**
570
-     * Filter the content text displayed when no listings found.
571
-     *
572
-     * @since 1.6.0
573
-     *
574
-     * @param string $shortcode_content The shortcode content text.
575
-     * @param array $args Array of arguements to filter listings.
576
-     */
577
-    $shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
567
+	$shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
568
+	$tags                = !empty($args['tags']) ? $args['tags'] : array();
569
+	/**
570
+	 * Filter the content text displayed when no listings found.
571
+	 *
572
+	 * @since 1.6.0
573
+	 *
574
+	 * @param string $shortcode_content The shortcode content text.
575
+	 * @param array $args Array of arguements to filter listings.
576
+	 */
577
+	$shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
578 578
 		
579 579
 	$top_pagination 	 = $with_pagination && !empty($args['top_pagination']) ? true : false;
580 580
 	$bottom_pagination 	 = $with_pagination && !empty($args['bottom_pagination']) ? true : false;
@@ -586,87 +586,87 @@  discard block
 block discarded – undo
586 586
 	$pageno 	 		 = $geodir_ajax && !empty($args['pageno']) ? $args['pageno'] : 1;
587 587
 	
588 588
 	$query_args = array(
589
-        'posts_per_page' => $post_number,
590
-        'is_geodir_loop' => true,
591
-        'gd_location' => $add_location_filter,
592
-        'post_type' => $post_type,
593
-        'order_by' => $list_sort,
589
+		'posts_per_page' => $post_number,
590
+		'is_geodir_loop' => true,
591
+		'gd_location' => $add_location_filter,
592
+		'post_type' => $post_type,
593
+		'order_by' => $list_sort,
594 594
 		'pageno' => $pageno
595
-    );
595
+	);
596 596
 
597
-    if ($character_count >= 0) {
598
-        $query_args['excerpt_length'] = $character_count;
599
-    }
597
+	if ($character_count >= 0) {
598
+		$query_args['excerpt_length'] = $character_count;
599
+	}
600 600
     
601
-    if (!empty($args['post_author'])) {
602
-        $query_args['post_author'] = $args['post_author'];
603
-    }
604
-
605
-    if (!empty($args['show_featured_only'])) {
606
-        $query_args['show_featured_only'] = 1;
607
-    }
608
-
609
-    if (!empty($args['show_special_only'])) {
610
-        $query_args['show_special_only'] = 1;
611
-    }
612
-
613
-    if (!empty($args['with_pics_only'])) {
614
-        $query_args['with_pics_only'] = 0;
615
-        $query_args['featured_image_only'] = 1;
616
-    }
617
-
618
-    if (!empty($args['with_videos_only'])) {
619
-        $query_args['with_videos_only'] = 1;
620
-    }
621
-    $with_no_results = !empty($args['without_no_results']) ? false : true;
622
-
623
-    if (!empty($category) && isset($category[0]) && $category[0] != '0') {
624
-        $category_taxonomy = geodir_get_taxonomies($post_type);
625
-
626
-        ######### WPML #########
627
-        if (function_exists('icl_object_id')) {
628
-            $category = gd_lang_object_ids($category, $category_taxonomy[0]);
629
-        }
630
-        ######### WPML #########
631
-
632
-        $tax_query = array(
633
-            'taxonomy' => $category_taxonomy[0],
634
-            'field' => 'id',
635
-            'terms' => $category
636
-        );
637
-
638
-        $query_args['tax_query'] = array($tax_query);
639
-    }
601
+	if (!empty($args['post_author'])) {
602
+		$query_args['post_author'] = $args['post_author'];
603
+	}
604
+
605
+	if (!empty($args['show_featured_only'])) {
606
+		$query_args['show_featured_only'] = 1;
607
+	}
608
+
609
+	if (!empty($args['show_special_only'])) {
610
+		$query_args['show_special_only'] = 1;
611
+	}
612
+
613
+	if (!empty($args['with_pics_only'])) {
614
+		$query_args['with_pics_only'] = 0;
615
+		$query_args['featured_image_only'] = 1;
616
+	}
617
+
618
+	if (!empty($args['with_videos_only'])) {
619
+		$query_args['with_videos_only'] = 1;
620
+	}
621
+	$with_no_results = !empty($args['without_no_results']) ? false : true;
622
+
623
+	if (!empty($category) && isset($category[0]) && $category[0] != '0') {
624
+		$category_taxonomy = geodir_get_taxonomies($post_type);
625
+
626
+		######### WPML #########
627
+		if (function_exists('icl_object_id')) {
628
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
629
+		}
630
+		######### WPML #########
631
+
632
+		$tax_query = array(
633
+			'taxonomy' => $category_taxonomy[0],
634
+			'field' => 'id',
635
+			'terms' => $category
636
+		);
637
+
638
+		$query_args['tax_query'] = array($tax_query);
639
+	}
640 640
     
641
-    if (!empty($tags)) {
642
-        // Clean tags
643
-        if (!is_array($tags)) {
644
-            $comma = _x(',', 'tag delimiter');
645
-            if ( ',' !== $comma ) {
646
-                $tags = str_replace($comma, ',', $tags);
647
-            }
648
-            $tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
649
-            $tags = array_map('trim', $tags);
650
-        }
641
+	if (!empty($tags)) {
642
+		// Clean tags
643
+		if (!is_array($tags)) {
644
+			$comma = _x(',', 'tag delimiter');
645
+			if ( ',' !== $comma ) {
646
+				$tags = str_replace($comma, ',', $tags);
647
+			}
648
+			$tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
649
+			$tags = array_map('trim', $tags);
650
+		}
651 651
         
652
-        if (!empty($tags)) {
653
-            $tag_query = array(
654
-                'taxonomy' => $post_type . '_tags',
655
-                'field' => 'name',
656
-                'terms' => $tags
657
-            );
658
-
659
-            if (!empty($query_args['tax_query'])) {
660
-                $query_args['tax_query'][] = $tag_query;
661
-            } else {
662
-                $query_args['tax_query'] = array($tag_query);
663
-            }
664
-        }
665
-    }
652
+		if (!empty($tags)) {
653
+			$tag_query = array(
654
+				'taxonomy' => $post_type . '_tags',
655
+				'field' => 'name',
656
+				'terms' => $tags
657
+			);
658
+
659
+			if (!empty($query_args['tax_query'])) {
660
+				$query_args['tax_query'][] = $tag_query;
661
+			} else {
662
+				$query_args['tax_query'] = array($tag_query);
663
+			}
664
+		}
665
+	}
666 666
 
667
-    global $gridview_columns_widget, $geodir_is_widget_listing;
667
+	global $gridview_columns_widget, $geodir_is_widget_listing;
668 668
 
669
-    if ($post_type == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
669
+	if ($post_type == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
670 670
 		global $geodir_event_widget_listview;
671 671
 		$geodir_event_widget_listview = true;
672 672
 		
@@ -683,15 +683,15 @@  discard block
 block discarded – undo
683 683
 	}
684 684
 	$current_gridview_columns_widget = $gridview_columns_widget;
685 685
 
686
-    ob_start();
686
+	ob_start();
687 687
 	if (!empty($widget_listings) || $with_no_results) {
688 688
 		if (!$geodir_ajax) {
689
-        /**
690
-         * Called before the shortcode [gd_listings] content is output.
691
-         *
692
-         * @since 1.0.0
693
-         */
694
-        do_action('geodir_before_sc_gd_listings');
689
+		/**
690
+		 * Called before the shortcode [gd_listings] content is output.
691
+		 *
692
+		 * @since 1.0.0
693
+		 */
694
+		do_action('geodir_before_sc_gd_listings');
695 695
 		?>
696 696
         <div class="geodir_locations geodir_location_listing geodir-sc-gd-listings">
697 697
 		<?php } ?>
@@ -701,64 +701,64 @@  discard block
 block discarded – undo
701 701
             </div>
702 702
 			<?php } ?>
703 703
             <?php
704
-            if (!(empty($widget_listings) && !empty($shortcode_content))) {
705
-                if (strstr($layout, 'gridview')) {
706
-                    $listing_view_exp = explode('_', $layout);
707
-                    $gridview_columns_widget = $layout;
708
-                    $layout = $listing_view_exp[0];
709
-                } else {
710
-                    $gridview_columns_widget = '';
711
-                }
712
-
713
-                /**
714
-                 * Filter the widget listing listview template.
715
-                 *
716
-                 * @since 1.0.0
717
-                 *
718
-                 * @param string The template file to display listing.
719
-                 */
720
-                $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
704
+			if (!(empty($widget_listings) && !empty($shortcode_content))) {
705
+				if (strstr($layout, 'gridview')) {
706
+					$listing_view_exp = explode('_', $layout);
707
+					$gridview_columns_widget = $layout;
708
+					$layout = $listing_view_exp[0];
709
+				} else {
710
+					$gridview_columns_widget = '';
711
+				}
712
+
713
+				/**
714
+				 * Filter the widget listing listview template.
715
+				 *
716
+				 * @since 1.0.0
717
+				 *
718
+				 * @param string The template file to display listing.
719
+				 */
720
+				$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
721 721
                             
722
-                global $post, $map_jason, $map_canvas_arr, $gd_session;
723
-
724
-                $current_post = $post;
725
-                $current_map_jason = $map_jason;
726
-                $current_map_canvas_arr = $map_canvas_arr;
727
-                $geodir_is_widget_listing = true;
728
-                $gd_session->un_set('gd_listing_view');
729
-
730
-                if ($with_pagination && $top_pagination) {				
731
-                    echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
732
-                }
733
-
734
-                /**
735
-                 * Includes listing listview template.
736
-                 *
737
-                 * @since 1.0.0
738
-                 */
739
-                include($template);
722
+				global $post, $map_jason, $map_canvas_arr, $gd_session;
723
+
724
+				$current_post = $post;
725
+				$current_map_jason = $map_jason;
726
+				$current_map_canvas_arr = $map_canvas_arr;
727
+				$geodir_is_widget_listing = true;
728
+				$gd_session->un_set('gd_listing_view');
729
+
730
+				if ($with_pagination && $top_pagination) {				
731
+					echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
732
+				}
733
+
734
+				/**
735
+				 * Includes listing listview template.
736
+				 *
737
+				 * @since 1.0.0
738
+				 */
739
+				include($template);
740 740
                 
741
-                if ($with_pagination && $bottom_pagination) {				
742
-                    echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
743
-                }
744
-
745
-                $geodir_is_widget_listing = false;
746
-
747
-                $GLOBALS['post'] = $current_post;
748
-                if (!empty($current_post)) {
749
-                    setup_postdata($current_post);
750
-                }
751
-                $map_jason = $current_map_jason;
752
-                $map_canvas_arr = $current_map_canvas_arr;
753
-                global $gridview_columns_widget;
754
-                $gridview_columns_widget = $current_gridview_columns_widget;
755
-            } else {
756
-                echo $shortcode_content;
757
-            }
741
+				if ($with_pagination && $bottom_pagination) {				
742
+					echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
743
+				}
744
+
745
+				$geodir_is_widget_listing = false;
746
+
747
+				$GLOBALS['post'] = $current_post;
748
+				if (!empty($current_post)) {
749
+					setup_postdata($current_post);
750
+				}
751
+				$map_jason = $current_map_jason;
752
+				$map_canvas_arr = $current_map_canvas_arr;
753
+				global $gridview_columns_widget;
754
+				$gridview_columns_widget = $current_gridview_columns_widget;
755
+			} else {
756
+				echo $shortcode_content;
757
+			}
758 758
 			?>
759 759
 			<p class="geodir-sclisting-loading" style="display:none;"><i class="fa fa-cog fa-spin"></i></p>
760 760
 			<?php
761
-            if (!$geodir_ajax) { 
761
+			if (!$geodir_ajax) { 
762 762
 			?>
763 763
         </div>
764 764
 		<script type="text/javascript">
@@ -790,10 +790,10 @@  discard block
 block discarded – undo
790 790
 			  if(response && response != '0') {
791 791
 				jQuery(container).html(response);
792 792
                   <?php
793
-                  /**
794
-                   * if lazyload images enabled then refresh them once ajax page changed.
795
-                   */
796
-                  if(get_option('geodir_lazy_load',1)){?>
793
+				  /**
794
+				   * if lazyload images enabled then refresh them once ajax page changed.
795
+				   */
796
+				  if(get_option('geodir_lazy_load',1)){?>
797 797
                   geodir_init_lazy_load();
798 798
                   <?php }?>
799 799
 
@@ -803,11 +803,11 @@  discard block
 block discarded – undo
803 803
 		</script>
804 804
 		<?php } ?>
805 805
     <?php
806
-    }
806
+	}
807 807
 	$output = ob_get_contents();
808
-    ob_end_clean();
808
+	ob_end_clean();
809 809
 
810
-    return trim($output);
810
+	return trim($output);
811 811
 }
812 812
 
813 813
 /**
@@ -834,15 +834,15 @@  discard block
 block discarded – undo
834 834
  * @return string Listings pagination HTML content.
835 835
  */
836 836
 function geodir_sc_listings_pagination($total_posts, $posts_per_page, $pageno, $before = '', $after = '', $prelabel = '', $nxtlabel = '', $pages_to_show = 5, $always_show = false) {
837
-    if (empty($prelabel)) {
838
-        $prelabel = '<strong>&laquo;</strong>';
839
-    }
837
+	if (empty($prelabel)) {
838
+		$prelabel = '<strong>&laquo;</strong>';
839
+	}
840 840
 
841
-    if (empty($nxtlabel)) {
842
-        $nxtlabel = '<strong>&raquo;</strong>';
843
-    }
841
+	if (empty($nxtlabel)) {
842
+		$nxtlabel = '<strong>&raquo;</strong>';
843
+	}
844 844
 
845
-    $half_pages_to_show = round($pages_to_show / 2);
845
+	$half_pages_to_show = round($pages_to_show / 2);
846 846
 
847 847
 	$numposts = $total_posts;
848 848
 
@@ -898,9 +898,9 @@  discard block
 block discarded – undo
898 898
 		echo "</div> $after";
899 899
 	}
900 900
 	$output = ob_get_contents();
901
-    ob_end_clean();
901
+	ob_end_clean();
902 902
 
903
-    return trim($output);
903
+	return trim($output);
904 904
 }
905 905
 
906 906
 /**
@@ -911,10 +911,10 @@  discard block
 block discarded – undo
911 911
  * @return string Listings HTML content.
912 912
  */
913 913
 function geodir_sclistings_callback() {
914
-    check_ajax_referer('geodir-sclistings-nonce', 'geodir_sclistings_nonce');
915
-    //set variables
916
-    $scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
917
-    $pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
914
+	check_ajax_referer('geodir-sclistings-nonce', 'geodir_sclistings_nonce');
915
+	//set variables
916
+	$scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
917
+	$pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
918 918
 	
919 919
 	$shortcode_atts = !empty($scatts) ? (array)json_decode(stripslashes_deep($scatts)) : NULL;
920 920
 	
@@ -926,7 +926,7 @@  discard block
 block discarded – undo
926 926
 	} else {
927 927
 		echo 0;
928 928
 	}
929
-    wp_die();
929
+	wp_die();
930 930
 }
931 931
 add_action('wp_ajax_geodir_sclistings', 'geodir_sclistings_callback');
932 932
 add_action('wp_ajax_nopriv_geodir_sclistings', 'geodir_sclistings_callback');
933 933
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-admin/admin_functions.php 1 patch
Indentation   +2911 added lines, -2911 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
 function geodir_deactivation()
16 16
 {
17 17
 
18
-    // Update installed variable
19
-    update_option("geodir_installed", 0);
18
+	// Update installed variable
19
+	update_option("geodir_installed", 0);
20 20
 
21
-    // Remove rewrite rules and then recreate rewrite rules.
22
-    flush_rewrite_rules();
21
+	// Remove rewrite rules and then recreate rewrite rules.
22
+	flush_rewrite_rules();
23 23
 }
24 24
 
25 25
 
@@ -32,125 +32,125 @@  discard block
 block discarded – undo
32 32
 function geodir_uninstall()
33 33
 {
34 34
 
35
-    delete_option('geodir_default_data_installed');
35
+	delete_option('geodir_default_data_installed');
36 36
 
37 37
 }
38 38
 
39 39
 if (!function_exists('geodir_admin_styles')) {
40
-    /**
41
-     * Enqueue Admin Styles.
42
-     *
43
-     * @since 1.0.0
44
-     * @package GeoDirectory
45
-     */
46
-    function geodir_admin_styles()
47
-    {
40
+	/**
41
+	 * Enqueue Admin Styles.
42
+	 *
43
+	 * @since 1.0.0
44
+	 * @package GeoDirectory
45
+	 */
46
+	function geodir_admin_styles()
47
+	{
48 48
 
49
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
50
-        wp_enqueue_style('geodirectory-admin-css');
49
+		wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
50
+		wp_enqueue_style('geodirectory-admin-css');
51 51
 
52
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
53
-        wp_enqueue_style('geodirectory-frontend-style');
52
+		wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
53
+		wp_enqueue_style('geodirectory-frontend-style');
54 54
 
55
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
56
-        wp_enqueue_style('geodir-chosen-style');
55
+		wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
56
+		wp_enqueue_style('geodir-chosen-style');
57 57
 
58
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
59
-        wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
58
+		wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
59
+		wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
60 60
 
61
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
62
-        wp_enqueue_style('geodirectory-jquery-ui-css');
61
+		wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
62
+		wp_enqueue_style('geodirectory-jquery-ui-css');
63 63
 
64
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
65
-        wp_enqueue_style('geodirectory-custom-fields-css');
64
+		wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
65
+		wp_enqueue_style('geodirectory-custom-fields-css');
66 66
 
67
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
68
-        wp_enqueue_style('geodirectory-pluplodar-css');
67
+		wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
68
+		wp_enqueue_style('geodirectory-pluplodar-css');
69 69
 
70
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
71
-        wp_enqueue_style('geodir-rating-style');
70
+		wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
71
+		wp_enqueue_style('geodir-rating-style');
72 72
 
73
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
74
-        wp_enqueue_style('geodir-rtl-style');
73
+		wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
74
+		wp_enqueue_style('geodir-rtl-style');
75 75
 
76
-    }
76
+	}
77 77
 }
78 78
 
79 79
 if (!function_exists('geodir_admin_styles_req')) {
80
-    /**
81
-     * Loads stylesheets from CDN.
82
-     *
83
-     * @since 1.0.0
84
-     * @package GeoDirectory
85
-     */
86
-    function geodir_admin_styles_req()
87
-    {
80
+	/**
81
+	 * Loads stylesheets from CDN.
82
+	 *
83
+	 * @since 1.0.0
84
+	 * @package GeoDirectory
85
+	 */
86
+	function geodir_admin_styles_req()
87
+	{
88 88
 
89
-        wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
90
-        wp_enqueue_style('font-awesome');
89
+		wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
90
+		wp_enqueue_style('font-awesome');
91 91
 
92
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
93
-        wp_enqueue_script('geodirectory-admin');
92
+		wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
93
+		wp_enqueue_script('geodirectory-admin');
94 94
 
95
-    }
95
+	}
96 96
 }
97 97
 
98 98
 if (!function_exists('geodir_admin_scripts')) {
99
-    /**
100
-     * Enqueue Admin Scripts.
101
-     *
102
-     * @since 1.0.0
103
-     * @package GeoDirectory
104
-     */
105
-    function geodir_admin_scripts()
106
-    {
107
-        $geodir_map_name = geodir_map_name();
99
+	/**
100
+	 * Enqueue Admin Scripts.
101
+	 *
102
+	 * @since 1.0.0
103
+	 * @package GeoDirectory
104
+	 */
105
+	function geodir_admin_scripts()
106
+	{
107
+		$geodir_map_name = geodir_map_name();
108 108
         
109
-        wp_enqueue_script('jquery');
109
+		wp_enqueue_script('jquery');
110 110
 
111
-        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);
111
+		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);
112 112
 
113
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
114
-        wp_enqueue_script('chosen');
113
+		wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
114
+		wp_enqueue_script('chosen');
115 115
 
116
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
117
-        wp_enqueue_script('geodirectory-choose-ajax');
116
+		wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
117
+		wp_enqueue_script('geodirectory-choose-ajax');
118 118
 
119
-        if (isset($_REQUEST['listing_type'])) {
120
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
121
-        }
119
+		if (isset($_REQUEST['listing_type'])) {
120
+			wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
121
+		}
122 122
 
123
-        wp_enqueue_script('geodirectory-custom-fields-script');
124
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
123
+		wp_enqueue_script('geodirectory-custom-fields-script');
124
+		$plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
125 125
 
126
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
126
+		wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
127 127
 
128
-        if (in_array($geodir_map_name, array('auto', 'google'))) {
129
-            $map_lang = "&language=" . geodir_get_map_default_language();
130
-            $map_key = "&key=" . geodir_get_map_api_key();
131
-            /** This filter is documented in geodirectory_template_tags.php */
132
-            $map_extra = apply_filters('geodir_googlemap_script_extra', '');
133
-            wp_enqueue_script('geodirectory-googlemap-script', '//maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
134
-        }
128
+		if (in_array($geodir_map_name, array('auto', 'google'))) {
129
+			$map_lang = "&language=" . geodir_get_map_default_language();
130
+			$map_key = "&key=" . geodir_get_map_api_key();
131
+			/** This filter is documented in geodirectory_template_tags.php */
132
+			$map_extra = apply_filters('geodir_googlemap_script_extra', '');
133
+			wp_enqueue_script('geodirectory-googlemap-script', '//maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
134
+		}
135 135
         
136
-        if ($geodir_map_name == 'osm') {
137
-            // Leaflet OpenStreetMap
138
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
139
-            wp_enqueue_style('geodirectory-leaflet-style');
136
+		if ($geodir_map_name == 'osm') {
137
+			// Leaflet OpenStreetMap
138
+			wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
139
+			wp_enqueue_style('geodirectory-leaflet-style');
140 140
                 
141
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
142
-            wp_enqueue_script('geodirectory-leaflet-script');
141
+			wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
142
+			wp_enqueue_script('geodirectory-leaflet-script');
143 143
             
144
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
145
-            wp_enqueue_script('geodirectory-leaflet-geo-script');
146
-        }
147
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
144
+			wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
145
+			wp_enqueue_script('geodirectory-leaflet-geo-script');
146
+		}
147
+		wp_enqueue_script( 'jquery-ui-autocomplete' );
148 148
         
149
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
150
-        wp_enqueue_script('geodirectory-goMap-script');
149
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
150
+		wp_enqueue_script('geodirectory-goMap-script');
151 151
 
152
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
153
-        wp_enqueue_script('geodirectory-goMap-script');
152
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
153
+		wp_enqueue_script('geodirectory-goMap-script');
154 154
 
155 155
 		// font awesome rating script
156 156
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
@@ -161,167 +161,167 @@  discard block
 block discarded – undo
161 161
 			wp_enqueue_script('geodir-jRating-js');
162 162
 		}
163 163
 
164
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js', array(), GEODIRECTORY_VERSION);
165
-        wp_enqueue_script('geodir-on-document-load');
166
-
167
-
168
-        // SCRIPT FOR UPLOAD
169
-        wp_enqueue_script('plupload-all');
170
-        wp_enqueue_script('jquery-ui-sortable');
171
-
172
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
173
-        wp_enqueue_script('geodirectory-plupload-script');
174
-
175
-        // SCRIPT FOR UPLOAD END
176
-
177
-
178
-        // place js config array for plupload
179
-        $plupload_init = array(
180
-            'runtimes' => 'html5,silverlight,flash,html4',
181
-            'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
182
-            'container' => 'plupload-upload-ui', // will be adjusted per uploader
183
-            'drop_element' => 'dropbox', // will be adjusted per uploader
184
-            'file_data_name' => 'async-upload', // will be adjusted per uploader
185
-            'multiple_queues' => true,
186
-            'max_file_size' => geodir_max_upload_size(),
187
-            'url' => admin_url('admin-ajax.php'),
188
-            'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
189
-            'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
190
-            'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
191
-            'multipart' => true,
192
-            'urlstream_upload' => true,
193
-            'multi_selection' => false, // will be added per uploader
194
-            // additional post data to send to our ajax hook
195
-            'multipart_params' => array(
196
-                '_ajax_nonce' => "", // will be added per uploader
197
-                'action' => 'plupload_action', // the ajax action name
198
-                'imgid' => 0 // will be added per uploader
199
-            )
200
-        );
201
-        $base_plupload_config = json_encode($plupload_init);
202
-
203
-
204
-        $thumb_img_arr = array();
205
-
206
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
207
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
208
-
209
-        $totImg = '';
210
-        $image_limit = '';
211
-        if (!empty($thumb_img_arr)) {
212
-            $totImg = count($thumb_img_arr);
213
-        }
164
+		wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.js', array(), GEODIRECTORY_VERSION);
165
+		wp_enqueue_script('geodir-on-document-load');
166
+
167
+
168
+		// SCRIPT FOR UPLOAD
169
+		wp_enqueue_script('plupload-all');
170
+		wp_enqueue_script('jquery-ui-sortable');
171
+
172
+		wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
173
+		wp_enqueue_script('geodirectory-plupload-script');
174
+
175
+		// SCRIPT FOR UPLOAD END
176
+
177
+
178
+		// place js config array for plupload
179
+		$plupload_init = array(
180
+			'runtimes' => 'html5,silverlight,flash,html4',
181
+			'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
182
+			'container' => 'plupload-upload-ui', // will be adjusted per uploader
183
+			'drop_element' => 'dropbox', // will be adjusted per uploader
184
+			'file_data_name' => 'async-upload', // will be adjusted per uploader
185
+			'multiple_queues' => true,
186
+			'max_file_size' => geodir_max_upload_size(),
187
+			'url' => admin_url('admin-ajax.php'),
188
+			'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
189
+			'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
190
+			'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
191
+			'multipart' => true,
192
+			'urlstream_upload' => true,
193
+			'multi_selection' => false, // will be added per uploader
194
+			// additional post data to send to our ajax hook
195
+			'multipart_params' => array(
196
+				'_ajax_nonce' => "", // will be added per uploader
197
+				'action' => 'plupload_action', // the ajax action name
198
+				'imgid' => 0 // will be added per uploader
199
+			)
200
+		);
201
+		$base_plupload_config = json_encode($plupload_init);
202
+
203
+
204
+		$thumb_img_arr = array();
205
+
206
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
207
+			$thumb_img_arr = geodir_get_images($_REQUEST['pid']);
208
+
209
+		$totImg = '';
210
+		$image_limit = '';
211
+		if (!empty($thumb_img_arr)) {
212
+			$totImg = count($thumb_img_arr);
213
+		}
214 214
 
215
-        $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
216
-            'totalImg' => $totImg,
217
-            'image_limit' => $image_limit,
218
-            'upload_img_size' => geodir_max_upload_size());
215
+		$gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
216
+			'totalImg' => $totImg,
217
+			'image_limit' => $image_limit,
218
+			'upload_img_size' => geodir_max_upload_size());
219 219
 
220
-        wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
220
+		wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
221 221
 
222
-        $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
223
-        wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
222
+		$ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
223
+		wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
224 224
 
225 225
 
226
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
227
-        wp_enqueue_script('geodirectory-admin-script');
226
+		wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
227
+		wp_enqueue_script('geodirectory-admin-script');
228 228
 
229
-        wp_enqueue_style('farbtastic');
230
-        wp_enqueue_script('farbtastic');
229
+		wp_enqueue_style('farbtastic');
230
+		wp_enqueue_script('farbtastic');
231 231
 
232
-        $screen = get_current_screen();
233
-        if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
234
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
235
-        }
232
+		$screen = get_current_screen();
233
+		if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
234
+			wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
235
+		}
236 236
 
237
-        $ajax_cons_data = array('url' => __(get_option('siteurl') . '?geodir_ajax=true'));
238
-        wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
237
+		$ajax_cons_data = array('url' => __(get_option('siteurl') . '?geodir_ajax=true'));
238
+		wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
239 239
 
240
-    }
240
+	}
241 241
 }
242 242
 
243 243
 if (!function_exists('geodir_admin_menu')) {
244
-    /**
245
-     * Admin Menus
246
-     *
247
-     * Sets up the admin menus in wordpress.
248
-     *
249
-     * @since 1.0.0
250
-     * @package GeoDirectory
251
-     * @global array $menu Menu array.
252
-     * @global object $geodirectory GeoDirectory plugin object.
253
-     */
254
-    function geodir_admin_menu()
255
-    {
256
-        global $menu, $geodirectory;
244
+	/**
245
+	 * Admin Menus
246
+	 *
247
+	 * Sets up the admin menus in wordpress.
248
+	 *
249
+	 * @since 1.0.0
250
+	 * @package GeoDirectory
251
+	 * @global array $menu Menu array.
252
+	 * @global object $geodirectory GeoDirectory plugin object.
253
+	 */
254
+	function geodir_admin_menu()
255
+	{
256
+		global $menu, $geodirectory;
257 257
 
258
-        if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
258
+		if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
259 259
 
260
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
260
+		add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
261 261
 
262 262
 
263
-    }
263
+	}
264 264
 }
265 265
 
266 266
 if (!function_exists('geodir_admin_menu_order')) {
267
-    /**
268
-     * Order admin menus.
269
-     *
270
-     * @since 1.0.0
271
-     * @package GeoDirectory
272
-     * @param array $menu_order Menu order array.
273
-     * @return array Modified menu order array.
274
-     */
275
-    function geodir_admin_menu_order($menu_order)
276
-    {
277
-
278
-        // Initialize our custom order array
279
-        $geodir_menu_order = array();
280
-
281
-        // Get the index of our custom separator
282
-        $geodir_separator = array_search('separator-geodirectory', $menu_order);
283
-
284
-        // Get index of posttype menu
285
-        $post_types = geodir_get_posttypes();
286
-
287
-        // Loop through menu order and do some rearranging
288
-        foreach ($menu_order as $index => $item) :
289
-
290
-            if ((('geodirectory') == $item)) :
291
-                $geodir_menu_order[] = 'separator-geodirectory';
292
-                if (!empty($post_types)) {
293
-                    foreach ($post_types as $post_type) {
294
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
295
-                    }
296
-                }
297
-                $geodir_menu_order[] = $item;
267
+	/**
268
+	 * Order admin menus.
269
+	 *
270
+	 * @since 1.0.0
271
+	 * @package GeoDirectory
272
+	 * @param array $menu_order Menu order array.
273
+	 * @return array Modified menu order array.
274
+	 */
275
+	function geodir_admin_menu_order($menu_order)
276
+	{
298 277
 
299
-                unset($menu_order[$geodir_separator]);
300
-            //unset( $menu_order[$geodir_places] );
301
-            elseif (!in_array($item, array('separator-geodirectory'))) :
302
-                $geodir_menu_order[] = $item;
303
-            endif;
278
+		// Initialize our custom order array
279
+		$geodir_menu_order = array();
304 280
 
305
-        endforeach;
281
+		// Get the index of our custom separator
282
+		$geodir_separator = array_search('separator-geodirectory', $menu_order);
306 283
 
307
-        // Return order
308
-        return $geodir_menu_order;
309
-    }
284
+		// Get index of posttype menu
285
+		$post_types = geodir_get_posttypes();
286
+
287
+		// Loop through menu order and do some rearranging
288
+		foreach ($menu_order as $index => $item) :
289
+
290
+			if ((('geodirectory') == $item)) :
291
+				$geodir_menu_order[] = 'separator-geodirectory';
292
+				if (!empty($post_types)) {
293
+					foreach ($post_types as $post_type) {
294
+						$geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
295
+					}
296
+				}
297
+				$geodir_menu_order[] = $item;
298
+
299
+				unset($menu_order[$geodir_separator]);
300
+			//unset( $menu_order[$geodir_places] );
301
+			elseif (!in_array($item, array('separator-geodirectory'))) :
302
+				$geodir_menu_order[] = $item;
303
+			endif;
304
+
305
+		endforeach;
306
+
307
+		// Return order
308
+		return $geodir_menu_order;
309
+	}
310 310
 }
311 311
 
312 312
 if (!function_exists('geodir_admin_custom_menu_order')) {
313
-    /**
314
-     * Enables custom menu order.
315
-     *
316
-     * @since 1.0.0
317
-     * @package GeoDirectory
318
-     * @return bool
319
-     */
320
-    function geodir_admin_custom_menu_order()
321
-    {
322
-        if (!current_user_can('manage_options')) return false;
323
-        return true;
324
-    }
313
+	/**
314
+	 * Enables custom menu order.
315
+	 *
316
+	 * @since 1.0.0
317
+	 * @package GeoDirectory
318
+	 * @return bool
319
+	 */
320
+	function geodir_admin_custom_menu_order()
321
+	{
322
+		if (!current_user_can('manage_options')) return false;
323
+		return true;
324
+	}
325 325
 }
326 326
 
327 327
 /**
@@ -332,51 +332,51 @@  discard block
 block discarded – undo
332 332
  */
333 333
 function geodir_before_admin_panel()
334 334
 {
335
-    if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
336
-        echo '<div id="message" class="updated fade">
335
+	if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
336
+		echo '<div id="message" class="updated fade">
337 337
                         <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>
338 338
                         <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
339 339
                 </div>';
340 340
 
341
-    }
341
+	}
342 342
 
343
-    if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
344
-        switch ($_REQUEST['msg']) {
345
-            case 'success':
346
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
347
-                flush_rewrite_rules(false);
343
+	if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
344
+		switch ($_REQUEST['msg']) {
345
+			case 'success':
346
+				echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
347
+				flush_rewrite_rules(false);
348 348
 
349
-                break;
349
+				break;
350 350
 			case 'fail':
351 351
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
352 352
 				
353 353
 				if ($gderr == 21)
354
-			    	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>';
354
+					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>';
355 355
 				else
356 356
 					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
357
-                break;
358
-        }
359
-    }
357
+				break;
358
+		}
359
+	}
360 360
 
361
-    $geodir_load_map = get_option('geodir_load_map');
362
-    $need_map_key = false;
363
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
364
-        $need_map_key = true;
365
-    }
361
+	$geodir_load_map = get_option('geodir_load_map');
362
+	$need_map_key = false;
363
+	if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
364
+		$need_map_key = true;
365
+	}
366 366
 
367
-    if (!geodir_get_map_api_key() && $need_map_key) {
368
-        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>';
369
-    }
367
+	if (!geodir_get_map_api_key() && $need_map_key) {
368
+		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>';
369
+	}
370 370
 
371
-    if (!geodir_is_default_location_set()) {
372
-        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>';
371
+	if (!geodir_is_default_location_set()) {
372
+		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>';
373 373
 
374
-    }
374
+	}
375 375
 
376
-    if (!function_exists('curl_init')) {
377
-        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>';
376
+	if (!function_exists('curl_init')) {
377
+		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>';
378 378
 
379
-    }
379
+	}
380 380
 
381 381
 
382 382
 
@@ -393,19 +393,19 @@  discard block
 block discarded – undo
393 393
  */
394 394
 function geodir_handle_option_form_submit($current_tab)
395 395
 {
396
-    global $geodir_settings;
397
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
398
-        /**
399
-         * Contains settings array for current tab.
400
-         *
401
-         * @since 1.0.0
402
-         * @package GeoDirectory
403
-         */
404
-        include_once('option-pages/' . $current_tab . '_array.php');
405
-    }
406
-    if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
407
-        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
408
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
396
+	global $geodir_settings;
397
+	if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
398
+		/**
399
+		 * Contains settings array for current tab.
400
+		 *
401
+		 * @since 1.0.0
402
+		 * @package GeoDirectory
403
+		 */
404
+		include_once('option-pages/' . $current_tab . '_array.php');
405
+	}
406
+	if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
407
+		if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
408
+		if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
409 409
 		
410 410
 		/**
411 411
 		 * Fires before updating geodirectory admin settings.
@@ -417,98 +417,98 @@  discard block
 block discarded – undo
417 417
 		 */
418 418
 		do_action('geodir_before_update_options', $current_tab, $geodir_settings);		
419 419
 		
420
-        if (!empty($geodir_settings[$current_tab]))
421
-            geodir_update_options($geodir_settings[$current_tab]);
420
+		if (!empty($geodir_settings[$current_tab]))
421
+			geodir_update_options($geodir_settings[$current_tab]);
422 422
 
423
-        /**
424
-         * Called after GeoDirectory options settings are updated.
425
-         *
426
-         * @since 1.0.0
427
-         * @param array $geodir_settings The array of GeoDirectory settings.
428
-         * @see 'geodir_before_update_options'
429
-         */
430
-        do_action('geodir_update_options', $geodir_settings);
423
+		/**
424
+		 * Called after GeoDirectory options settings are updated.
425
+		 *
426
+		 * @since 1.0.0
427
+		 * @param array $geodir_settings The array of GeoDirectory settings.
428
+		 * @see 'geodir_before_update_options'
429
+		 */
430
+		do_action('geodir_update_options', $geodir_settings);
431 431
 
432
-        /**
433
-         * Called after GeoDirectory options settings are updated.
434
-         *
435
-         * Provides tab specific settings.
436
-         *
437
-         * @since 1.0.0
438
-         * @param string $current_tab The current settings tab name.
439
-         * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
440
-         */
441
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
432
+		/**
433
+		 * Called after GeoDirectory options settings are updated.
434
+		 *
435
+		 * Provides tab specific settings.
436
+		 *
437
+		 * @since 1.0.0
438
+		 * @param string $current_tab The current settings tab name.
439
+		 * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
440
+		 */
441
+		do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
442 442
 
443
-        flush_rewrite_rules(false);
443
+		flush_rewrite_rules(false);
444 444
 
445
-        $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
445
+		$current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
446 446
 
447
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
447
+		$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
448 448
 
449
-        wp_redirect($redirect_url);
450
-        exit();
451
-    endif;
449
+		wp_redirect($redirect_url);
450
+		exit();
451
+	endif;
452 452
 
453 453
 
454 454
 }
455 455
 
456 456
 
457 457
 if (!function_exists('geodir_autoinstall_admin_header') && (get_option('geodir_installed') || defined( 'GD_TESTING_MODE' ))) {
458
-    /**
459
-     * GeoDirectory dummy data installation.
460
-     *
461
-     * @since 1.0.0
462
-     * @package GeoDirectory
463
-     * @global object $wpdb WordPress Database object.
464
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
465
-     * @param string $post_type The post type.
466
-     */
467
-    function geodir_autoinstall_admin_header($post_type = 'gd_place')
468
-    {
458
+	/**
459
+	 * GeoDirectory dummy data installation.
460
+	 *
461
+	 * @since 1.0.0
462
+	 * @package GeoDirectory
463
+	 * @global object $wpdb WordPress Database object.
464
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
465
+	 * @param string $post_type The post type.
466
+	 */
467
+	function geodir_autoinstall_admin_header($post_type = 'gd_place')
468
+	{
469 469
 
470
-        global $wpdb, $plugin_prefix;
470
+		global $wpdb, $plugin_prefix;
471 471
 
472
-        if (!geodir_is_default_location_set()) {
473
-            echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
474
-        } else {
472
+		if (!geodir_is_default_location_set()) {
473
+			echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
474
+		} else {
475 475
 
476
-            $geodir_url = admin_url() . 'admin.php?page=geodirectory&tab=general_settings&active_tab=';
476
+			$geodir_url = admin_url() . 'admin.php?page=geodirectory&tab=general_settings&active_tab=';
477 477
 
478
-            $post_counts = $wpdb->get_var("SELECT count(post_id) FROM " . $plugin_prefix . $post_type . "_detail WHERE post_dummy='1'");
478
+			$post_counts = $wpdb->get_var("SELECT count(post_id) FROM " . $plugin_prefix . $post_type . "_detail WHERE post_dummy='1'");
479 479
 
480
-            if ($post_counts > 0) {
481
-                $nonce = wp_create_nonce('geodir_dummy_posts_delete_noncename');
480
+			if ($post_counts > 0) {
481
+				$nonce = wp_create_nonce('geodir_dummy_posts_delete_noncename');
482 482
 
483
-                $dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>' . SAMPLE_DATA_SHOW_MSG . '</b><br /><a id="geodir_dummy_delete" class="button_delete" onclick="geodir_autoinstall(this,\'geodir_dummy_delete\',\'' . $nonce . '\',\'' . $post_type . '\')" href="javascript:void(0);" redirect_to="' . $geodir_url . '"  >' . DELETE_BTN_SAMPLE_MSG . '</a></p></div>';
484
-                $dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>' . GEODIR_SAMPLE_DATA_DELETE_MSG . '</b><br><img src="' . geodir_plugin_url() . '/geodirectory-assets/images/loadingAnimation.gif" /></p></div>';
485
-            } else {
486
-                $options_list = '';
487
-                for ($option = 1; $option <= 30; $option++) {
488
-                    $selected = '';
489
-                    if ($option == 10)
490
-                        $selected = 'selected="selected"';
483
+				$dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>' . SAMPLE_DATA_SHOW_MSG . '</b><br /><a id="geodir_dummy_delete" class="button_delete" onclick="geodir_autoinstall(this,\'geodir_dummy_delete\',\'' . $nonce . '\',\'' . $post_type . '\')" href="javascript:void(0);" redirect_to="' . $geodir_url . '"  >' . DELETE_BTN_SAMPLE_MSG . '</a></p></div>';
484
+				$dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>' . GEODIR_SAMPLE_DATA_DELETE_MSG . '</b><br><img src="' . geodir_plugin_url() . '/geodirectory-assets/images/loadingAnimation.gif" /></p></div>';
485
+			} else {
486
+				$options_list = '';
487
+				for ($option = 1; $option <= 30; $option++) {
488
+					$selected = '';
489
+					if ($option == 10)
490
+						$selected = 'selected="selected"';
491 491
 
492
-                    $options_list .= '<option ' . $selected . ' value="' . $option . '">' . $option . '</option>';
493
-                }
492
+					$options_list .= '<option ' . $selected . ' value="' . $option . '">' . $option . '</option>';
493
+				}
494 494
 
495
-                $nonce = wp_create_nonce('geodir_dummy_posts_insert_noncename');
495
+				$nonce = wp_create_nonce('geodir_dummy_posts_insert_noncename');
496 496
 
497
-                $dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>' . AUTO_INSATALL_MSG . '</b><br /><select class="selected_sample_data">' . $options_list . '</select><a id="geodir_dummy_insert" class="button_insert" href="javascript:void(0);" onclick="geodir_autoinstall(this,\'geodir_dummy_insert\',\'' . $nonce . '\',\'' . $post_type . '\')"   redirect_to="' . $geodir_url . '" >' . INSERT_BTN_SAMPLE_MSG . '</a></p></div>';
498
-                $dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>' . GEODIR_SAMPLE_DATA_IMPORT_MSG . '</b><br><img src="' . geodir_plugin_url() . '/geodirectory-assets/images/loadingAnimation.gif" /><br><span class="dummy_post_inserted"></span></div>';
497
+				$dummy_msg = '<div id="" class="geodir_auto_install updated highlight fade"><p><b>' . AUTO_INSATALL_MSG . '</b><br /><select class="selected_sample_data">' . $options_list . '</select><a id="geodir_dummy_insert" class="button_insert" href="javascript:void(0);" onclick="geodir_autoinstall(this,\'geodir_dummy_insert\',\'' . $nonce . '\',\'' . $post_type . '\')"   redirect_to="' . $geodir_url . '" >' . INSERT_BTN_SAMPLE_MSG . '</a></p></div>';
498
+				$dummy_msg .= '<div id="" style="display:none;" class="geodir_show_progress updated highlight fade"><p><b>' . GEODIR_SAMPLE_DATA_IMPORT_MSG . '</b><br><img src="' . geodir_plugin_url() . '/geodirectory-assets/images/loadingAnimation.gif" /><br><span class="dummy_post_inserted"></span></div>';
499 499
 
500
-            }
501
-            echo $dummy_msg;
502
-            ?>
500
+			}
501
+			echo $dummy_msg;
502
+			?>
503 503
             <script>
504 504
                 <?php
505
-                  $default_location = geodir_get_default_location();
506
-                  $city =  isset($default_location->city) ? $default_location->city : '';
507
-                  $region =isset($default_location->region) ? $default_location->region : '';
508
-                  $country =isset($default_location->country) ? $default_location->country : '';
509
-                  $city_latitude =isset($default_location->city_latitude) ? $default_location->city_latitude : '';
510
-                  $city_longitude =isset($default_location->city_longitude) ? $default_location->city_longitude : '';
511
-                ?>
505
+				  $default_location = geodir_get_default_location();
506
+				  $city =  isset($default_location->city) ? $default_location->city : '';
507
+				  $region =isset($default_location->region) ? $default_location->region : '';
508
+				  $country =isset($default_location->country) ? $default_location->country : '';
509
+				  $city_latitude =isset($default_location->city_latitude) ? $default_location->city_latitude : '';
510
+				  $city_longitude =isset($default_location->city_longitude) ? $default_location->city_longitude : '';
511
+				?>
512 512
                 var geocoder = window.gdMaps == 'google' ? new google.maps.Geocoder() : null;
513 513
                 var CITY_ADDRESS = '<?php echo $city.','.$region.','.$country;?>';
514 514
                 var bound_lat_lng;
@@ -599,8 +599,8 @@  discard block
 block discarded – undo
599 599
                 }
600 600
             </script>
601 601
         <?php
602
-        }
603
-    }
602
+		}
603
+	}
604 604
 }
605 605
 
606 606
 /**
@@ -613,20 +613,20 @@  discard block
 block discarded – undo
613 613
  */
614 614
 function geodir_insert_dummy_posts()
615 615
 {
616
-    geodir_default_taxonomies();
616
+	geodir_default_taxonomies();
617 617
 
618
-    ini_set('max_execution_time', 999999); //300 seconds = 5 minutes
618
+	ini_set('max_execution_time', 999999); //300 seconds = 5 minutes
619 619
 
620
-    global $wpdb, $current_user;
620
+	global $wpdb, $current_user;
621 621
 
622
-    /**
623
-     * Contains dummy post content.
624
-     *
625
-     * @since 1.0.0
626
-     * @package GeoDirectory
627
-     */
628
-    include_once('place_dummy_post.php');
629
-    delete_transient( 'cached_dummy_images' );
622
+	/**
623
+	 * Contains dummy post content.
624
+	 *
625
+	 * @since 1.0.0
626
+	 * @package GeoDirectory
627
+	 */
628
+	include_once('place_dummy_post.php');
629
+	delete_transient( 'cached_dummy_images' );
630 630
 
631 631
 }
632 632
 
@@ -640,18 +640,18 @@  discard block
 block discarded – undo
640 640
  */
641 641
 function geodir_delete_dummy_posts()
642 642
 {
643
-    global $wpdb, $plugin_prefix;
643
+	global $wpdb, $plugin_prefix;
644 644
 
645 645
 
646
-    $post_ids = $wpdb->get_results("SELECT post_id FROM " . $plugin_prefix . "gd_place_detail WHERE post_dummy='1'");
646
+	$post_ids = $wpdb->get_results("SELECT post_id FROM " . $plugin_prefix . "gd_place_detail WHERE post_dummy='1'");
647 647
 
648 648
 
649
-    foreach ($post_ids as $post_ids_obj) {
650
-        wp_delete_post($post_ids_obj->post_id);
651
-    }
649
+	foreach ($post_ids as $post_ids_obj) {
650
+		wp_delete_post($post_ids_obj->post_id);
651
+	}
652 652
 
653
-    //double check posts are deleted
654
-    $wpdb->get_results("DELETE FROM " . $plugin_prefix . "gd_place_detail WHERE post_dummy='1'");
653
+	//double check posts are deleted
654
+	$wpdb->get_results("DELETE FROM " . $plugin_prefix . "gd_place_detail WHERE post_dummy='1'");
655 655
 }
656 656
 
657 657
 /**
@@ -665,114 +665,114 @@  discard block
 block discarded – undo
665 665
  * @global string $dummy_image_path The dummy image path.
666 666
  */
667 667
 function geodir_default_taxonomies() {
668
-    global $wpdb, $dummy_image_path;
668
+	global $wpdb, $dummy_image_path;
669 669
 
670
-    $category_array = array('Attractions', 'Hotels', 'Restaurants', 'Food Nightlife', 'Festival', 'Videos', 'Feature');
670
+	$category_array = array('Attractions', 'Hotels', 'Restaurants', 'Food Nightlife', 'Festival', 'Videos', 'Feature');
671 671
 
672
-    $last_catid = '';
672
+	$last_catid = '';
673 673
 
674
-    $uploads = wp_upload_dir(); // Array of key => value pairs
674
+	$uploads = wp_upload_dir(); // Array of key => value pairs
675 675
 
676
-    for ($i = 0; $i < count($category_array); $i++) {
677
-        $parent_catid = 0;
678
-        if (is_array($category_array[$i])) {
679
-            $cat_name_arr = $category_array[$i];
680
-            for ($j = 0; $j < count($cat_name_arr); $j++) {
681
-                $catname = $cat_name_arr[$j];
676
+	for ($i = 0; $i < count($category_array); $i++) {
677
+		$parent_catid = 0;
678
+		if (is_array($category_array[$i])) {
679
+			$cat_name_arr = $category_array[$i];
680
+			for ($j = 0; $j < count($cat_name_arr); $j++) {
681
+				$catname = $cat_name_arr[$j];
682 682
 
683
-                if (!term_exists($catname, 'gd_placecategory')) {
684
-                    $last_catid = wp_insert_term($catname, 'gd_placecategory', $args = array('parent' => $parent_catid));
683
+				if (!term_exists($catname, 'gd_placecategory')) {
684
+					$last_catid = wp_insert_term($catname, 'gd_placecategory', $args = array('parent' => $parent_catid));
685 685
 
686
-                    if ($j == 0) {
687
-                        $parent_catid = $last_catid;
688
-                    }
686
+					if ($j == 0) {
687
+						$parent_catid = $last_catid;
688
+					}
689 689
 
690 690
 
691
-                    if (geodir_dummy_folder_exists())
692
-                        $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon";
693
-                    else
694
-                        $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon';
691
+					if (geodir_dummy_folder_exists())
692
+						$dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon";
693
+					else
694
+						$dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon';
695 695
 
696
-                    $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url);
696
+					$dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url);
697 697
 
698
-                    $catname = str_replace(' ', '_', $catname);
699
-                    $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png");
698
+					$catname = str_replace(' ', '_', $catname);
699
+					$uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png");
700 700
 
701
-                    if (empty($uploaded['error'])) {
702
-                        $new_path = $uploaded['file'];
703
-                        $new_url = $uploaded['url'];
704
-                    }
701
+					if (empty($uploaded['error'])) {
702
+						$new_path = $uploaded['file'];
703
+						$new_url = $uploaded['url'];
704
+					}
705 705
 
706
-                    $wp_filetype = wp_check_filetype(basename($new_path), null);
707
-
708
-                    $attachment = array(
709
-                        'guid' => $uploads['baseurl'] . '/' . basename($new_path),
710
-                        'post_mime_type' => $wp_filetype['type'],
711
-                        'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)),
712
-                        'post_content' => '',
713
-                        'post_status' => 'inherit'
714
-                    );
715
-                    $attach_id = wp_insert_attachment($attachment, $new_path);
716
-
717
-                    // you must first include the image.php file
718
-                    // for the function wp_generate_attachment_metadata() to work
719
-                    require_once(ABSPATH . 'wp-admin/includes/image.php');
720
-                    $attach_data = wp_generate_attachment_metadata($attach_id, $new_path);
721
-                    wp_update_attachment_metadata($attach_id, $attach_data);
722
-
723
-                    if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, 'gd_place')) {
724
-                        update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => 'icon', 'src' => $new_url), 'gd_place');
725
-                    }
726
-                }
727
-            }
706
+					$wp_filetype = wp_check_filetype(basename($new_path), null);
707
+
708
+					$attachment = array(
709
+						'guid' => $uploads['baseurl'] . '/' . basename($new_path),
710
+						'post_mime_type' => $wp_filetype['type'],
711
+						'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)),
712
+						'post_content' => '',
713
+						'post_status' => 'inherit'
714
+					);
715
+					$attach_id = wp_insert_attachment($attachment, $new_path);
716
+
717
+					// you must first include the image.php file
718
+					// for the function wp_generate_attachment_metadata() to work
719
+					require_once(ABSPATH . 'wp-admin/includes/image.php');
720
+					$attach_data = wp_generate_attachment_metadata($attach_id, $new_path);
721
+					wp_update_attachment_metadata($attach_id, $attach_data);
722
+
723
+					if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, 'gd_place')) {
724
+						update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => 'icon', 'src' => $new_url), 'gd_place');
725
+					}
726
+				}
727
+			}
728 728
 
729
-        } else {
730
-            $catname = $category_array[$i];
729
+		} else {
730
+			$catname = $category_array[$i];
731 731
 
732
-            if (!term_exists($catname, 'gd_placecategory')) {
733
-                $last_catid = wp_insert_term($catname, 'gd_placecategory');
732
+			if (!term_exists($catname, 'gd_placecategory')) {
733
+				$last_catid = wp_insert_term($catname, 'gd_placecategory');
734 734
 
735
-                if (geodir_dummy_folder_exists())
736
-                    $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon";
737
-                else
738
-                    $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon';
735
+				if (geodir_dummy_folder_exists())
736
+					$dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon";
737
+				else
738
+					$dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon';
739 739
 
740
-                $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url);
740
+				$dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url);
741 741
 
742
-                $catname = str_replace(' ', '_', $catname);
743
-                $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png");
742
+				$catname = str_replace(' ', '_', $catname);
743
+				$uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png");
744 744
 
745
-                if (empty($uploaded['error'])) {
746
-                    $new_path = $uploaded['file'];
747
-                    $new_url = $uploaded['url'];
748
-                }
745
+				if (empty($uploaded['error'])) {
746
+					$new_path = $uploaded['file'];
747
+					$new_url = $uploaded['url'];
748
+				}
749 749
 
750
-                $wp_filetype = wp_check_filetype(basename($new_path), null);
750
+				$wp_filetype = wp_check_filetype(basename($new_path), null);
751 751
 
752
-                $attachment = array(
753
-                    'guid' => $uploads['baseurl'] . '/' . basename($new_path),
754
-                    'post_mime_type' => $wp_filetype['type'],
755
-                    'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)),
756
-                    'post_content' => '',
757
-                    'post_status' => 'inherit'
758
-                );
752
+				$attachment = array(
753
+					'guid' => $uploads['baseurl'] . '/' . basename($new_path),
754
+					'post_mime_type' => $wp_filetype['type'],
755
+					'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)),
756
+					'post_content' => '',
757
+					'post_status' => 'inherit'
758
+				);
759 759
 
760
-                $attach_id = wp_insert_attachment($attachment, $new_path);
760
+				$attach_id = wp_insert_attachment($attachment, $new_path);
761 761
 
762 762
 
763
-                // you must first include the image.php file
764
-                // for the function wp_generate_attachment_metadata() to work
765
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
766
-                $attach_data = wp_generate_attachment_metadata($attach_id, $new_path);
767
-                wp_update_attachment_metadata($attach_id, $attach_data);
763
+				// you must first include the image.php file
764
+				// for the function wp_generate_attachment_metadata() to work
765
+				require_once(ABSPATH . 'wp-admin/includes/image.php');
766
+				$attach_data = wp_generate_attachment_metadata($attach_id, $new_path);
767
+				wp_update_attachment_metadata($attach_id, $attach_data);
768 768
 
769
-                if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, 'gd_place')) {
770
-                    update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => $attach_id, 'src' => $new_url), 'gd_place');
771
-                }
772
-            }
773
-        }
769
+				if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, 'gd_place')) {
770
+					update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => $attach_id, 'src' => $new_url), 'gd_place');
771
+				}
772
+			}
773
+		}
774 774
 
775
-    }
775
+	}
776 776
 }
777 777
 
778 778
 /**
@@ -787,144 +787,144 @@  discard block
 block discarded – undo
787 787
  * @return bool Returns true if saved.
788 788
  */
789 789
 function geodir_update_options($options, $dummy = false) {
790
-    if ((!isset($_POST) || !$_POST) && !$dummy) return false;
790
+	if ((!isset($_POST) || !$_POST) && !$dummy) return false;
791 791
 
792
-    foreach ($options as $value) {
793
-        if ($dummy && isset($value['std']))
794
-            $_POST[$value['id']] = $value['std'];
792
+	foreach ($options as $value) {
793
+		if ($dummy && isset($value['std']))
794
+			$_POST[$value['id']] = $value['std'];
795 795
 
796 796
 
797
-        if (isset($value['type']) && $value['type'] == 'checkbox') :
797
+		if (isset($value['type']) && $value['type'] == 'checkbox') :
798 798
 
799
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
800
-                update_option($value['id'], $_POST[$value['id']]);
801
-            } else {
802
-                update_option($value['id'], 0);
803
-            }
799
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
800
+				update_option($value['id'], $_POST[$value['id']]);
801
+			} else {
802
+				update_option($value['id'], 0);
803
+			}
804 804
 
805
-        elseif (isset($value['type']) && $value['type'] == 'image_width') :
805
+		elseif (isset($value['type']) && $value['type'] == 'image_width') :
806 806
 
807
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
808
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
809
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
810
-                if (isset($_POST[$value['id'] . '_crop'])) :
811
-                    update_option($value['id'] . '_crop', 1);
812
-                else :
813
-                    update_option($value['id'] . '_crop', 0);
814
-                endif;
815
-            } else {
816
-                update_option($value['id'] . '_width', $value['std']);
817
-                update_option($value['id'] . '_height', $value['std']);
818
-                update_option($value['id'] . '_crop', 1);
819
-            }
807
+			if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
808
+				update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
809
+				update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
810
+				if (isset($_POST[$value['id'] . '_crop'])) :
811
+					update_option($value['id'] . '_crop', 1);
812
+				else :
813
+					update_option($value['id'] . '_crop', 0);
814
+				endif;
815
+			} else {
816
+				update_option($value['id'] . '_width', $value['std']);
817
+				update_option($value['id'] . '_height', $value['std']);
818
+				update_option($value['id'] . '_crop', 1);
819
+			}
820 820
 
821
-        elseif (isset($value['type']) && $value['type'] == 'map') :
822
-            $post_types = array();
823
-            $categories = array();
821
+		elseif (isset($value['type']) && $value['type'] == 'map') :
822
+			$post_types = array();
823
+			$categories = array();
824 824
 
825
-            if (!empty($_POST['home_map_post_types'])) :
826
-                foreach ($_POST['home_map_post_types'] as $post_type) :
827
-                    $post_types[] = $post_type;
828
-                endforeach;
829
-            endif;
825
+			if (!empty($_POST['home_map_post_types'])) :
826
+				foreach ($_POST['home_map_post_types'] as $post_type) :
827
+					$post_types[] = $post_type;
828
+				endforeach;
829
+			endif;
830 830
 
831
-            update_option('geodir_exclude_post_type_on_map', $post_types);
831
+			update_option('geodir_exclude_post_type_on_map', $post_types);
832 832
 
833
-            if (!empty($_POST['post_category'])) :
834
-                foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
835
-                    $categories[$texonomy] = array();
836
-                    foreach ($cat_arr as $category) :
837
-                        $categories[$texonomy][] = $category;
838
-                    endforeach;
839
-                    $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
840
-                endforeach;
841
-            endif;
842
-            update_option('geodir_exclude_cat_on_map', $categories);
843
-            update_option('geodir_exclude_cat_on_map_upgrade', 1);
844
-        elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
833
+			if (!empty($_POST['post_category'])) :
834
+				foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
835
+					$categories[$texonomy] = array();
836
+					foreach ($cat_arr as $category) :
837
+						$categories[$texonomy][] = $category;
838
+					endforeach;
839
+					$categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
840
+				endforeach;
841
+			endif;
842
+			update_option('geodir_exclude_cat_on_map', $categories);
843
+			update_option('geodir_exclude_cat_on_map_upgrade', 1);
844
+		elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
845 845
 
846 846
 
847
-            if (!empty($_POST['geodir_default_map_language'])):
848
-                update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
849
-            endif;
847
+			if (!empty($_POST['geodir_default_map_language'])):
848
+				update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
849
+			endif;
850 850
 
851 851
 
852
-            if (!empty($_POST['geodir_default_map_search_pt'])):
853
-                update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
854
-            endif;
852
+			if (!empty($_POST['geodir_default_map_search_pt'])):
853
+				update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
854
+			endif;
855 855
 
856 856
 
857
-        elseif (isset($value['type']) && $value['type'] == 'file') :
857
+		elseif (isset($value['type']) && $value['type'] == 'file') :
858 858
 
859 859
 
860
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
860
+			if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
861 861
 
862
-                if (get_option($value['id'])) {
863
-                    $image_name_arr = explode('/', get_option($value['id']));
864
-                    $noimg_name = end($image_name_arr);
865
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
866
-                    if (file_exists($img_path))
867
-                        unlink($img_path);
868
-                }
862
+				if (get_option($value['id'])) {
863
+					$image_name_arr = explode('/', get_option($value['id']));
864
+					$noimg_name = end($image_name_arr);
865
+					$img_path = $uploads['path'] . '/' . $noimg_name;
866
+					if (file_exists($img_path))
867
+						unlink($img_path);
868
+				}
869 869
 
870
-                update_option($value['id'], '');
871
-            }
870
+				update_option($value['id'], '');
871
+			}
872 872
 
873
-            $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
874
-            $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
875
-
876
-            if (!empty($filename)):
877
-                $ext = pathinfo($filename, PATHINFO_EXTENSION);
878
-                $uplaods = array();
879
-
880
-                foreach ($uploadedfile as $key => $uplaod):
881
-                    if ($key == 'name'):
882
-                        $uplaods[$key] = $filename;
883
-                    else :
884
-                        $uplaods[$key] = $uplaod;
885
-                    endif;
886
-                endforeach;
887
-
888
-                $uploads = wp_upload_dir();
889
-
890
-                if (get_option($value['id'])) {
891
-                    $image_name_arr = explode('/', get_option($value['id']));
892
-                    $noimg_name = end($image_name_arr);
893
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
894
-                    if (file_exists($img_path))
895
-                        unlink($img_path);
896
-                }
873
+			$uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
874
+			$filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
875
+
876
+			if (!empty($filename)):
877
+				$ext = pathinfo($filename, PATHINFO_EXTENSION);
878
+				$uplaods = array();
879
+
880
+				foreach ($uploadedfile as $key => $uplaod):
881
+					if ($key == 'name'):
882
+						$uplaods[$key] = $filename;
883
+					else :
884
+						$uplaods[$key] = $uplaod;
885
+					endif;
886
+				endforeach;
887
+
888
+				$uploads = wp_upload_dir();
889
+
890
+				if (get_option($value['id'])) {
891
+					$image_name_arr = explode('/', get_option($value['id']));
892
+					$noimg_name = end($image_name_arr);
893
+					$img_path = $uploads['path'] . '/' . $noimg_name;
894
+					if (file_exists($img_path))
895
+						unlink($img_path);
896
+				}
897 897
 
898
-                $upload_overrides = array('test_form' => false);
899
-                $movefile = wp_handle_upload($uplaods, $upload_overrides);
898
+				$upload_overrides = array('test_form' => false);
899
+				$movefile = wp_handle_upload($uplaods, $upload_overrides);
900 900
 
901
-                update_option($value['id'], $movefile['url']);
901
+				update_option($value['id'], $movefile['url']);
902 902
 
903
-            endif;
903
+			endif;
904 904
 
905
-            if (!get_option($value['id']) && isset($value['value'])):
906
-                update_option($value['id'], $value['value']);
907
-            endif;
905
+			if (!get_option($value['id']) && isset($value['value'])):
906
+				update_option($value['id'], $value['value']);
907
+			endif;
908 908
 
909 909
 
910
-        else :
911
-            // same menu setting per theme.
912
-            if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
913
-                $theme = wp_get_theme();
914
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
915
-            }
910
+		else :
911
+			// same menu setting per theme.
912
+			if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
913
+				$theme = wp_get_theme();
914
+				update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
915
+			}
916 916
 
917
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
918
-                update_option($value['id'], $_POST[$value['id']]);
919
-            } else {
920
-                delete_option($value['id']);
921
-            }
917
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
918
+				update_option($value['id'], $_POST[$value['id']]);
919
+			} else {
920
+				delete_option($value['id']);
921
+			}
922 922
 
923
-        endif;
924
-    }
925
-    if ($dummy)
926
-        $_POST = array();
927
-    return true;
923
+		endif;
924
+	}
925
+	if ($dummy)
926
+		$_POST = array();
927
+	return true;
928 928
 
929 929
 }
930 930
 
@@ -973,33 +973,33 @@  discard block
 block discarded – undo
973 973
 function places_custom_fields_tab($tabs)
974 974
 {
975 975
 
976
-    $geodir_post_types = get_option('geodir_post_types');
976
+	$geodir_post_types = get_option('geodir_post_types');
977 977
 
978
-    if (!empty($geodir_post_types)) {
978
+	if (!empty($geodir_post_types)) {
979 979
 
980
-        foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
980
+		foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
981 981
 
982
-            $listing_slug = $geodir_posttype_info['labels']['singular_name'];
982
+			$listing_slug = $geodir_posttype_info['labels']['singular_name'];
983 983
 
984
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
985
-                'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'),
986
-                'subtabs' => array(
987
-                    array('subtab' => 'custom_fields',
988
-                        'label' => __('Custom Fields', 'geodirectory'),
989
-                        'request' => array('listing_type' => $geodir_post_type)),
990
-                    array('subtab' => 'sorting_options',
991
-                        'label' => __('Sorting Options', 'geodirectory'),
992
-                        'request' => array('listing_type' => $geodir_post_type)),
993
-                ),
994
-                'tab_index' => 9,
995
-                'request' => array('listing_type' => $geodir_post_type)
996
-            );
984
+			$tabs[$geodir_post_type . '_fields_settings'] = array(
985
+				'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'),
986
+				'subtabs' => array(
987
+					array('subtab' => 'custom_fields',
988
+						'label' => __('Custom Fields', 'geodirectory'),
989
+						'request' => array('listing_type' => $geodir_post_type)),
990
+					array('subtab' => 'sorting_options',
991
+						'label' => __('Sorting Options', 'geodirectory'),
992
+						'request' => array('listing_type' => $geodir_post_type)),
993
+				),
994
+				'tab_index' => 9,
995
+				'request' => array('listing_type' => $geodir_post_type)
996
+			);
997 997
 
998
-        endforeach;
998
+		endforeach;
999 999
 
1000
-    }
1000
+	}
1001 1001
 
1002
-    return $tabs;
1002
+	return $tabs;
1003 1003
 }
1004 1004
 
1005 1005
 
@@ -1015,9 +1015,9 @@  discard block
 block discarded – undo
1015 1015
  */
1016 1016
 function geodir_tools_setting_tab($tabs)
1017 1017
 {
1018
-    wp_enqueue_script( 'jquery-ui-progressbar' );
1019
-    $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
1020
-    return $tabs;
1018
+	wp_enqueue_script( 'jquery-ui-progressbar' );
1019
+	$tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
1020
+	return $tabs;
1021 1021
 }
1022 1022
 
1023 1023
 /**
@@ -1032,8 +1032,8 @@  discard block
 block discarded – undo
1032 1032
  */
1033 1033
 function geodir_compatibility_setting_tab($tabs)
1034 1034
 {
1035
-    $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
1036
-    return $tabs;
1035
+	$tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
1036
+	return $tabs;
1037 1037
 }
1038 1038
 
1039 1039
 
@@ -1049,144 +1049,144 @@  discard block
 block discarded – undo
1049 1049
  */
1050 1050
 function geodir_extend_geodirectory_setting_tab($tabs)
1051 1051
 {
1052
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'http://wpgeodirectory.com', 'target' => '_blank');
1053
-    return $tabs;
1052
+	$tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'http://wpgeodirectory.com', 'target' => '_blank');
1053
+	return $tabs;
1054 1054
 }
1055 1055
 
1056 1056
 
1057 1057
 if (!function_exists('geodir_edit_post_columns')) {
1058
-    /**
1059
-     * Modify admin post listing page columns.
1060
-     *
1061
-     * @since 1.0.0
1062
-     * @package GeoDirectory
1063
-     * @param array $columns The column array.
1064
-     * @return array Altered column array.
1065
-     */
1066
-    function geodir_edit_post_columns($columns)
1067
-    {
1068
-
1069
-        $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
1070
-            'categorys' => __('Categories', 'geodirectory'));
1071
-
1072
-        if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
1073
-        {
1074
-            $offset = 0; // should we prepend $array with $data?
1075
-            $offset = count($columns); // or should we append $array with $data? lets pick this one...
1076
-        }
1058
+	/**
1059
+	 * Modify admin post listing page columns.
1060
+	 *
1061
+	 * @since 1.0.0
1062
+	 * @package GeoDirectory
1063
+	 * @param array $columns The column array.
1064
+	 * @return array Altered column array.
1065
+	 */
1066
+	function geodir_edit_post_columns($columns)
1067
+	{
1068
+
1069
+		$new_columns = array('location' => __('Location (ID)', 'geodirectory'),
1070
+			'categorys' => __('Categories', 'geodirectory'));
1077 1071
 
1078
-        $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
1072
+		if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
1073
+		{
1074
+			$offset = 0; // should we prepend $array with $data?
1075
+			$offset = count($columns); // or should we append $array with $data? lets pick this one...
1076
+		}
1079 1077
 
1080
-        $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
1078
+		$columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
1081 1079
 
1082
-        return $columns;
1083
-    }
1080
+		$columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
1081
+
1082
+		return $columns;
1083
+	}
1084 1084
 }
1085 1085
 
1086 1086
 
1087 1087
 if (!function_exists('geodir_manage_post_columns')) {
1088
-    /**
1089
-     * Adds content to our custom post listing page columns.
1090
-     *
1091
-     * @since 1.0.0
1092
-     * @package GeoDirectory
1093
-     * @global object $wpdb WordPress Database object.
1094
-     * @global object $post WordPress Post object.
1095
-     * @param string $column The column name.
1096
-     * @param int $post_id The post ID.
1097
-     */
1098
-    function geodir_manage_post_columns($column, $post_id)
1099
-    {
1100
-        global $post, $wpdb;
1101
-
1102
-        switch ($column):
1103
-            /* If displaying the 'city' column. */
1104
-            case 'location' :
1105
-                $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
1106
-                $location = geodir_get_location($location_id);
1107
-                /* If no city is found, output a default message. */
1108
-                if (empty($location)) {
1109
-                    _e('Unknown', 'geodirectory');
1110
-                } else {
1111
-                    /* If there is a city id, append 'city name' to the text string. */
1112
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
1113
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
1114
-                }
1115
-                break;
1116
-
1117
-            /* If displaying the 'expire' column. */
1118
-            case 'expire' :
1119
-                $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
1120
-                $d1 = $expire_date; // get expire_date
1121
-                $d2 = date('Y-m-d'); // get current date
1122
-                $state = __('days left', 'geodirectory');
1123
-                $date_diff_text = '';
1124
-                $expire_class = 'expire_left';
1125
-                if ($expire_date != 'Never') {
1126
-                    if (strtotime($d1) < strtotime($d2)) {
1127
-                        $state = __('days overdue', 'geodirectory');
1128
-                        $expire_class = 'expire_over';
1129
-                    }
1130
-                    $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
1131
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
1132
-                }
1133
-                /* If no expire_date is found, output a default message. */
1134
-                if (empty($expire_date))
1135
-                    echo __('Unknown', 'geodirectory');
1136
-                /* If there is a expire_date, append 'days left' to the text string. */
1137
-                else
1138
-                    echo $expire_date . $date_diff_text;
1139
-                break;
1140
-
1141
-            /* If displaying the 'categorys' column. */
1142
-            case 'categorys' :
1143
-
1144
-                /* Get the categorys for the post. */
1145
-
1146
-
1147
-                $terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
1148
-
1149
-                /* If terms were found. */
1150
-                if (!empty($terms)) {
1151
-                    $out = array();
1152
-                    /* Loop through each term, linking to the 'edit posts' page for the specific term. */
1153
-                    foreach ($terms as $term) {
1154
-                        if (!strstr($term->taxonomy, 'tag')) {
1155
-                            $out[] = sprintf('<a href="%s">%s</a>',
1156
-                                esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
1157
-                                esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
1158
-                            );
1159
-                        }
1160
-                    }
1161
-                    /* Join the terms, separating them with a comma. */
1162
-                    echo(join(', ', $out));
1163
-                } /* If no terms were found, output a default message. */
1164
-                else {
1165
-                    _e('No Categories', 'geodirectory');
1166
-                }
1167
-                break;
1088
+	/**
1089
+	 * Adds content to our custom post listing page columns.
1090
+	 *
1091
+	 * @since 1.0.0
1092
+	 * @package GeoDirectory
1093
+	 * @global object $wpdb WordPress Database object.
1094
+	 * @global object $post WordPress Post object.
1095
+	 * @param string $column The column name.
1096
+	 * @param int $post_id The post ID.
1097
+	 */
1098
+	function geodir_manage_post_columns($column, $post_id)
1099
+	{
1100
+		global $post, $wpdb;
1101
+
1102
+		switch ($column):
1103
+			/* If displaying the 'city' column. */
1104
+			case 'location' :
1105
+				$location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
1106
+				$location = geodir_get_location($location_id);
1107
+				/* If no city is found, output a default message. */
1108
+				if (empty($location)) {
1109
+					_e('Unknown', 'geodirectory');
1110
+				} else {
1111
+					/* If there is a city id, append 'city name' to the text string. */
1112
+					$add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
1113
+					echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
1114
+				}
1115
+				break;
1116
+
1117
+			/* If displaying the 'expire' column. */
1118
+			case 'expire' :
1119
+				$expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
1120
+				$d1 = $expire_date; // get expire_date
1121
+				$d2 = date('Y-m-d'); // get current date
1122
+				$state = __('days left', 'geodirectory');
1123
+				$date_diff_text = '';
1124
+				$expire_class = 'expire_left';
1125
+				if ($expire_date != 'Never') {
1126
+					if (strtotime($d1) < strtotime($d2)) {
1127
+						$state = __('days overdue', 'geodirectory');
1128
+						$expire_class = 'expire_over';
1129
+					}
1130
+					$date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
1131
+					$date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
1132
+				}
1133
+				/* If no expire_date is found, output a default message. */
1134
+				if (empty($expire_date))
1135
+					echo __('Unknown', 'geodirectory');
1136
+				/* If there is a expire_date, append 'days left' to the text string. */
1137
+				else
1138
+					echo $expire_date . $date_diff_text;
1139
+				break;
1168 1140
 
1169
-        endswitch;
1170
-    }
1141
+			/* If displaying the 'categorys' column. */
1142
+			case 'categorys' :
1143
+
1144
+				/* Get the categorys for the post. */
1145
+
1146
+
1147
+				$terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
1148
+
1149
+				/* If terms were found. */
1150
+				if (!empty($terms)) {
1151
+					$out = array();
1152
+					/* Loop through each term, linking to the 'edit posts' page for the specific term. */
1153
+					foreach ($terms as $term) {
1154
+						if (!strstr($term->taxonomy, 'tag')) {
1155
+							$out[] = sprintf('<a href="%s">%s</a>',
1156
+								esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
1157
+								esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
1158
+							);
1159
+						}
1160
+					}
1161
+					/* Join the terms, separating them with a comma. */
1162
+					echo(join(', ', $out));
1163
+				} /* If no terms were found, output a default message. */
1164
+				else {
1165
+					_e('No Categories', 'geodirectory');
1166
+				}
1167
+				break;
1168
+
1169
+		endswitch;
1170
+	}
1171 1171
 }
1172 1172
 
1173 1173
 
1174 1174
 if (!function_exists('geodir_post_sortable_columns')) {
1175
-    /**
1176
-     * Makes admin post listing page columns sortable.
1177
-     *
1178
-     * @since 1.0.0
1179
-     * @package GeoDirectory
1180
-     * @param array $columns The column array.
1181
-     * @return array Altered column array.
1182
-     */
1183
-    function geodir_post_sortable_columns($columns)
1184
-    {
1185
-
1186
-        $columns['expire'] = 'expire';
1187
-
1188
-        return $columns;
1189
-    }
1175
+	/**
1176
+	 * Makes admin post listing page columns sortable.
1177
+	 *
1178
+	 * @since 1.0.0
1179
+	 * @package GeoDirectory
1180
+	 * @param array $columns The column array.
1181
+	 * @return array Altered column array.
1182
+	 */
1183
+	function geodir_post_sortable_columns($columns)
1184
+	{
1185
+
1186
+		$columns['expire'] = 'expire';
1187
+
1188
+		return $columns;
1189
+	}
1190 1190
 }
1191 1191
 
1192 1192
 /**
@@ -1200,32 +1200,32 @@  discard block
 block discarded – undo
1200 1200
  * @param int $post_id The post ID.
1201 1201
  */
1202 1202
 function geodir_post_information_save($post_id, $post) {
1203
-    global $wpdb, $current_user;
1203
+	global $wpdb, $current_user;
1204 1204
 
1205
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
1206
-        return;
1207
-    }
1205
+	if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
1206
+		return;
1207
+	}
1208 1208
 
1209
-    $geodir_posttypes = geodir_get_posttypes();
1209
+	$geodir_posttypes = geodir_get_posttypes();
1210 1210
 
1211
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
1212
-        return;
1211
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
1212
+		return;
1213 1213
 
1214
-    if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
1215
-        if (isset($_REQUEST['_status']))
1216
-            geodir_change_post_status($post_id, $_REQUEST['_status']);
1214
+	if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
1215
+		if (isset($_REQUEST['_status']))
1216
+			geodir_change_post_status($post_id, $_REQUEST['_status']);
1217 1217
 
1218
-        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
1219
-            return;
1218
+		if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
1219
+			return;
1220 1220
 
1221
-        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
1222
-            return;
1221
+		if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
1222
+			return;
1223 1223
 
1224
-        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
1225
-            return;
1224
+		if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
1225
+			return;
1226 1226
 
1227
-        geodir_save_listing($_REQUEST);
1228
-    }
1227
+		geodir_save_listing($_REQUEST);
1228
+	}
1229 1229
 }
1230 1230
 
1231 1231
 /**
@@ -1241,102 +1241,102 @@  discard block
 block discarded – undo
1241 1241
  */
1242 1242
 function geodir_admin_fields($options)
1243 1243
 {
1244
-    global $geodirectory;
1245
-
1246
-    $first_title = true;
1247
-    $tab_id = '';
1248
-    $i = 0;
1249
-    foreach ($options as $value) :
1250
-        if (!isset($value['name'])) $value['name'] = '';
1251
-        if (!isset($value['class'])) $value['class'] = '';
1252
-        if (!isset($value['css'])) $value['css'] = '';
1253
-        if (!isset($value['std'])) $value['std'] = '';
1254
-        $desc = '';
1255
-        switch ($value['type']) :
1256
-            case 'dummy_installer':
1257
-                $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
1258
-                geodir_autoinstall_admin_header($post_type);
1259
-                break;
1260
-            case 'title':
1261
-
1262
-                if ($i == 0) {
1263
-                    echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
1264
-                    echo '<div class="inner_content_tab_main">';
1265
-                }
1244
+	global $geodirectory;
1245
+
1246
+	$first_title = true;
1247
+	$tab_id = '';
1248
+	$i = 0;
1249
+	foreach ($options as $value) :
1250
+		if (!isset($value['name'])) $value['name'] = '';
1251
+		if (!isset($value['class'])) $value['class'] = '';
1252
+		if (!isset($value['css'])) $value['css'] = '';
1253
+		if (!isset($value['std'])) $value['std'] = '';
1254
+		$desc = '';
1255
+		switch ($value['type']) :
1256
+			case 'dummy_installer':
1257
+				$post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
1258
+				geodir_autoinstall_admin_header($post_type);
1259
+				break;
1260
+			case 'title':
1261
+
1262
+				if ($i == 0) {
1263
+					echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
1264
+					echo '<div class="inner_content_tab_main">';
1265
+				}
1266 1266
 
1267
-                $i++;
1267
+				$i++;
1268 1268
 
1269
-                if (isset($value['id']) && $value['id'])
1270
-                    $tab_id = $value['id'];
1269
+				if (isset($value['id']) && $value['id'])
1270
+					$tab_id = $value['id'];
1271 1271
 
1272
-                if (isset($value['desc']) && $value['desc'])
1273
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
1272
+				if (isset($value['desc']) && $value['desc'])
1273
+					$desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
1274 1274
 
1275
-                if (isset($value['name']) && $value['name']) {
1276
-                    if ($first_title === true) {
1277
-                        $first_title = false;
1278
-                    } else {
1279
-                        echo '</div>';
1280
-                    }
1281
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
1275
+				if (isset($value['name']) && $value['name']) {
1276
+					if ($first_title === true) {
1277
+						$first_title = false;
1278
+					} else {
1279
+						echo '</div>';
1280
+					}
1281
+					echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
1282 1282
 
1283
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
1284
-                }
1283
+					echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
1284
+				}
1285 1285
 
1286
-                /**
1287
-                 * Called after a GeoDirectory settings title is output in the GD settings page.
1288
-                 *
1289
-                 * The action is called dynamically geodir_settings_$value['id'].
1290
-                 *
1291
-                 * @since 1.0.0
1292
-                 */
1293
-                do_action('geodir_settings_' . sanitize_title($value['id']));
1294
-                break;
1295
-
1296
-            case 'no_tabs':
1297
-
1298
-                echo '<div class="inner_content_tab_main">';
1299
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
1300
-
1301
-                break;
1302
-
1303
-            case 'sectionstart':
1304
-                if (isset($value['desc']) && $value['desc'])
1305
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
1306
-                if (isset($value['name']) && $value['name'])
1307
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
1308
-                /**
1309
-                 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
1310
-                 *
1311
-                 * The action is called dynamically geodir_settings_$value['id']_start.
1312
-                 *
1313
-                 * @since 1.0.0
1314
-                 */
1315
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
1316
-                echo '<table class="form-table">' . "\n\n";
1317
-
1318
-                break;
1319
-            case 'sectionend':
1320
-                /**
1321
-                 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
1322
-                 *
1323
-                 * The action is called dynamically geodir_settings_$value['id']_end.
1324
-                 *
1325
-                 * @since 1.0.0
1326
-                 */
1327
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
1328
-                echo '</table>';
1329
-                /**
1330
-                 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
1331
-                 *
1332
-                 * The action is called dynamically geodir_settings_$value['id']_end.
1333
-                 *
1334
-                 * @since 1.0.0
1335
-                 */
1336
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1337
-                break;
1338
-            case 'text':
1339
-                ?>
1286
+				/**
1287
+				 * Called after a GeoDirectory settings title is output in the GD settings page.
1288
+				 *
1289
+				 * The action is called dynamically geodir_settings_$value['id'].
1290
+				 *
1291
+				 * @since 1.0.0
1292
+				 */
1293
+				do_action('geodir_settings_' . sanitize_title($value['id']));
1294
+				break;
1295
+
1296
+			case 'no_tabs':
1297
+
1298
+				echo '<div class="inner_content_tab_main">';
1299
+				echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
1300
+
1301
+				break;
1302
+
1303
+			case 'sectionstart':
1304
+				if (isset($value['desc']) && $value['desc'])
1305
+					$desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
1306
+				if (isset($value['name']) && $value['name'])
1307
+					echo '<h3>' . $value['name'] . $desc . '</h3>';
1308
+				/**
1309
+				 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
1310
+				 *
1311
+				 * The action is called dynamically geodir_settings_$value['id']_start.
1312
+				 *
1313
+				 * @since 1.0.0
1314
+				 */
1315
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
1316
+				echo '<table class="form-table">' . "\n\n";
1317
+
1318
+				break;
1319
+			case 'sectionend':
1320
+				/**
1321
+				 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
1322
+				 *
1323
+				 * The action is called dynamically geodir_settings_$value['id']_end.
1324
+				 *
1325
+				 * @since 1.0.0
1326
+				 */
1327
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
1328
+				echo '</table>';
1329
+				/**
1330
+				 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
1331
+				 *
1332
+				 * The action is called dynamically geodir_settings_$value['id']_end.
1333
+				 *
1334
+				 * @since 1.0.0
1335
+				 */
1336
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1337
+				break;
1338
+			case 'text':
1339
+				?>
1340 1340
                 <tr valign="top">
1341 1341
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1342 1342
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1345,15 +1345,15 @@  discard block
 block discarded – undo
1345 1345
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1346 1346
                                            style=" <?php echo esc_attr($value['css']); ?>"
1347 1347
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1348
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1349
-                                           } else {
1350
-                                               echo esc_attr($value['std']);
1351
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1348
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1349
+										   } else {
1350
+											   echo esc_attr($value['std']);
1351
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1352 1352
                 </tr><?php
1353
-                break;
1353
+				break;
1354 1354
 
1355
-            case 'password':
1356
-                ?>
1355
+			case 'password':
1356
+				?>
1357 1357
                 <tr valign="top">
1358 1358
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1359 1359
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1362,42 +1362,42 @@  discard block
 block discarded – undo
1362 1362
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1363 1363
                                            style="<?php echo esc_attr($value['css']); ?>"
1364 1364
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1365
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1366
-                                           } else {
1367
-                                               echo esc_attr($value['std']);
1368
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1365
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1366
+										   } else {
1367
+											   echo esc_attr($value['std']);
1368
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1369 1369
                 </tr><?php
1370
-                break;
1370
+				break;
1371 1371
 
1372
-            case 'html_content':
1373
-                ?>
1372
+			case 'html_content':
1373
+				?>
1374 1374
                 <tr valign="top">
1375 1375
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1376 1376
                 <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td>
1377 1377
                 </tr><?php
1378
-                break;
1378
+				break;
1379 1379
 
1380
-            case 'color' :
1381
-                ?>
1380
+			case 'color' :
1381
+				?>
1382 1382
                 <tr valign="top">
1383 1383
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1384 1384
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1385 1385
                                            id="<?php echo esc_attr($value['id']); ?>" type="text"
1386 1386
                                            style="<?php echo esc_attr($value['css']); ?>"
1387 1387
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1388
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1389
-                                           } else {
1390
-                                               echo esc_attr($value['std']);
1391
-                                           } ?>" class="colorpick"/> <span
1388
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1389
+										   } else {
1390
+											   echo esc_attr($value['std']);
1391
+										   } ?>" class="colorpick"/> <span
1392 1392
                         class="description"><?php echo $value['desc']; ?></span>
1393 1393
 
1394 1394
                     <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv"
1395 1395
                          style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div>
1396 1396
                 </td>
1397 1397
                 </tr><?php
1398
-                break;
1399
-            case 'image_width' :
1400
-                ?>
1398
+				break;
1399
+			case 'image_width' :
1400
+				?>
1401 1401
                 <tr valign="top">
1402 1402
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1403 1403
                 <td class="forminp">
@@ -1419,11 +1419,11 @@  discard block
 block discarded – undo
1419 1419
 
1420 1420
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1421 1421
                 </tr><?php
1422
-                break;
1423
-            case 'select':
1424
-                $option_value = get_option($value['id']);
1425
-                $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1426
-                ?>
1422
+				break;
1423
+			case 'select':
1424
+				$option_value = get_option($value['id']);
1425
+				$option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1426
+				?>
1427 1427
                 <tr valign="top">
1428 1428
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1429 1429
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1432,33 +1432,33 @@  discard block
 block discarded – undo
1432 1432
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1433 1433
                                             option-ajaxchosen="false">
1434 1434
                         <?php
1435
-                        foreach ($value['options'] as $key => $val) {
1436
-                            $geodir_select_value = '';
1437
-                            if ($option_value != '') {
1438
-                                if ($option_value != '' && $option_value == $key)
1439
-                                    $geodir_select_value = ' selected="selected" ';
1440
-                            } else {
1441
-                                if ($value['std'] == $key)
1442
-                                    $geodir_select_value = ' selected="selected" ';
1443
-                            }
1444
-                            ?>
1435
+						foreach ($value['options'] as $key => $val) {
1436
+							$geodir_select_value = '';
1437
+							if ($option_value != '') {
1438
+								if ($option_value != '' && $option_value == $key)
1439
+									$geodir_select_value = ' selected="selected" ';
1440
+							} else {
1441
+								if ($value['std'] == $key)
1442
+									$geodir_select_value = ' selected="selected" ';
1443
+							}
1444
+							?>
1445 1445
                             <option
1446 1446
                                 value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo ucfirst($val) ?></option>
1447 1447
                         <?php
1448
-                        }
1449
-                        ?>
1448
+						}
1449
+						?>
1450 1450
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1451 1451
                 </td>
1452 1452
                 </tr><?php
1453
-                break;
1453
+				break;
1454 1454
 
1455
-            case 'multiselect':
1456
-                $option_values = get_option($value['id']);
1457
-                if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1458
-                   $option_values = $value['std'];
1459
-                }
1460
-                $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1461
-                ?>
1455
+			case 'multiselect':
1456
+				$option_values = get_option($value['id']);
1457
+				if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1458
+				   $option_values = $value['std'];
1459
+				}
1460
+				$option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1461
+				?>
1462 1462
                 <tr valign="top">
1463 1463
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1464 1464
                 <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]"
@@ -1468,25 +1468,25 @@  discard block
 block discarded – undo
1468 1468
                                             data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1469 1469
                                             option-ajaxchosen="false">
1470 1470
                         <?php
1471
-                        foreach ($value['options'] as $key => $val) {
1472
-                            if (strpos($key, 'optgroup_start-') === 0) {
1473
-                                ?><optgroup label="<?php echo ucfirst($val); ?>"><?php
1474
-                            } else if (strpos($key, 'optgroup_end-') === 0) {
1475
-                                ?></optgroup><?php
1476
-                            } else {
1477
-                                ?>
1471
+						foreach ($value['options'] as $key => $val) {
1472
+							if (strpos($key, 'optgroup_start-') === 0) {
1473
+								?><optgroup label="<?php echo ucfirst($val); ?>"><?php
1474
+							} else if (strpos($key, 'optgroup_end-') === 0) {
1475
+								?></optgroup><?php
1476
+							} else {
1477
+								?>
1478 1478
                                 <option
1479 1479
                                     value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option>
1480 1480
                             <?php
1481
-                            }
1482
-                        }
1483
-                        ?>
1481
+							}
1482
+						}
1483
+						?>
1484 1484
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1485 1485
                 </td>
1486 1486
                 </tr><?php
1487
-                break;
1488
-            case 'file':
1489
-                ?>
1487
+				break;
1488
+			case 'file':
1489
+				?>
1490 1490
                 <tr valign="top">
1491 1491
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1492 1492
                 <td class="forminp">
@@ -1506,87 +1506,87 @@  discard block
 block discarded – undo
1506 1506
                     <?php } ?>
1507 1507
                 </td>
1508 1508
                 </tr><?php
1509
-                break;
1510
-            case 'map_default_settings' :
1511
-                ?>
1509
+				break;
1510
+			case 'map_default_settings' :
1511
+				?>
1512 1512
 
1513 1513
                 <tr valign="top">
1514 1514
                     <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1515 1515
                     <td width="60%">
1516 1516
                         <select name="geodir_default_map_language" style="width:60%">
1517 1517
                             <?php
1518
-                            $arr_map_langages = array(
1519
-                                'ar' => __('ARABIC', 'geodirectory'),
1520
-                                'eu' => __('BASQUE', 'geodirectory'),
1521
-                                'bg' => __('BULGARIAN', 'geodirectory'),
1522
-                                'bn' => __('BENGALI', 'geodirectory'),
1523
-                                'ca' => __('CATALAN', 'geodirectory'),
1524
-                                'cs' => __('CZECH', 'geodirectory'),
1525
-                                'da' => __('DANISH', 'geodirectory'),
1526
-                                'de' => __('GERMAN', 'geodirectory'),
1527
-                                'el' => __('GREEK', 'geodirectory'),
1528
-                                'en' => __('ENGLISH', 'geodirectory'),
1529
-                                'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1530
-                                'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1531
-                                'es' => __('SPANISH', 'geodirectory'),
1532
-                                'eu' => __('BASQUE', 'geodirectory'),
1533
-                                'fa' => __('FARSI', 'geodirectory'),
1534
-                                'fi' => __('FINNISH', 'geodirectory'),
1535
-                                'fil' => __('FILIPINO', 'geodirectory'),
1536
-                                'fr' => __('FRENCH', 'geodirectory'),
1537
-                                'gl' => __('GALICIAN', 'geodirectory'),
1538
-                                'gu' => __('GUJARATI', 'geodirectory'),
1539
-                                'hi' => __('HINDI', 'geodirectory'),
1540
-                                'hr' => __('CROATIAN', 'geodirectory'),
1541
-                                'hu' => __('HUNGARIAN', 'geodirectory'),
1542
-                                'id' => __('INDONESIAN', 'geodirectory'),
1543
-                                'it' => __('ITALIAN', 'geodirectory'),
1544
-                                'iw' => __('HEBREW', 'geodirectory'),
1545
-                                'ja' => __('JAPANESE', 'geodirectory'),
1546
-                                'kn' => __('KANNADA', 'geodirectory'),
1547
-                                'ko' => __('KOREAN', 'geodirectory'),
1548
-                                'lt' => __('LITHUANIAN', 'geodirectory'),
1549
-                                'lv' => __('LATVIAN', 'geodirectory'),
1550
-                                'ml' => __('MALAYALAM', 'geodirectory'),
1551
-                                'mr' => __('MARATHI', 'geodirectory'),
1552
-                                'nl' => __('DUTCH', 'geodirectory'),
1553
-                                'no' => __('NORWEGIAN', 'geodirectory'),
1554
-                                'pl' => __('POLISH', 'geodirectory'),
1555
-                                'pt' => __('PORTUGUESE', 'geodirectory'),
1556
-                                'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1557
-                                'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1558
-                                'ro' => __('ROMANIAN', 'geodirectory'),
1559
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1560
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1561
-                                'sk' => __('SLOVAK', 'geodirectory'),
1562
-                                'sl' => __('SLOVENIAN', 'geodirectory'),
1563
-                                'sr' => __('SERBIAN', 'geodirectory'),
1564
-                                'sv' => __('	SWEDISH', 'geodirectory'),
1565
-                                'tl' => __('TAGALOG', 'geodirectory'),
1566
-                                'ta' => __('TAMIL', 'geodirectory'),
1567
-                                'te' => __('TELUGU', 'geodirectory'),
1568
-                                'th' => __('THAI', 'geodirectory'),
1569
-                                'tr' => __('TURKISH', 'geodirectory'),
1570
-                                'uk' => __('UKRAINIAN', 'geodirectory'),
1571
-                                'vi' => __('VIETNAMESE', 'geodirectory'),
1572
-                                'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1573
-                                'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1574
-                            );
1575
-                            $geodir_default_map_language = get_option('geodir_default_map_language');
1576
-                            if (empty($geodir_default_map_language))
1577
-                                $geodir_default_map_language = 'en';
1578
-                            foreach ($arr_map_langages as $language_key => $language_txt) {
1579
-                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1580
-                                    $geodir_default_language_selected = "selected='selected'";
1581
-                                else
1582
-                                    $geodir_default_language_selected = '';
1583
-
1584
-                                ?>
1518
+							$arr_map_langages = array(
1519
+								'ar' => __('ARABIC', 'geodirectory'),
1520
+								'eu' => __('BASQUE', 'geodirectory'),
1521
+								'bg' => __('BULGARIAN', 'geodirectory'),
1522
+								'bn' => __('BENGALI', 'geodirectory'),
1523
+								'ca' => __('CATALAN', 'geodirectory'),
1524
+								'cs' => __('CZECH', 'geodirectory'),
1525
+								'da' => __('DANISH', 'geodirectory'),
1526
+								'de' => __('GERMAN', 'geodirectory'),
1527
+								'el' => __('GREEK', 'geodirectory'),
1528
+								'en' => __('ENGLISH', 'geodirectory'),
1529
+								'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1530
+								'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1531
+								'es' => __('SPANISH', 'geodirectory'),
1532
+								'eu' => __('BASQUE', 'geodirectory'),
1533
+								'fa' => __('FARSI', 'geodirectory'),
1534
+								'fi' => __('FINNISH', 'geodirectory'),
1535
+								'fil' => __('FILIPINO', 'geodirectory'),
1536
+								'fr' => __('FRENCH', 'geodirectory'),
1537
+								'gl' => __('GALICIAN', 'geodirectory'),
1538
+								'gu' => __('GUJARATI', 'geodirectory'),
1539
+								'hi' => __('HINDI', 'geodirectory'),
1540
+								'hr' => __('CROATIAN', 'geodirectory'),
1541
+								'hu' => __('HUNGARIAN', 'geodirectory'),
1542
+								'id' => __('INDONESIAN', 'geodirectory'),
1543
+								'it' => __('ITALIAN', 'geodirectory'),
1544
+								'iw' => __('HEBREW', 'geodirectory'),
1545
+								'ja' => __('JAPANESE', 'geodirectory'),
1546
+								'kn' => __('KANNADA', 'geodirectory'),
1547
+								'ko' => __('KOREAN', 'geodirectory'),
1548
+								'lt' => __('LITHUANIAN', 'geodirectory'),
1549
+								'lv' => __('LATVIAN', 'geodirectory'),
1550
+								'ml' => __('MALAYALAM', 'geodirectory'),
1551
+								'mr' => __('MARATHI', 'geodirectory'),
1552
+								'nl' => __('DUTCH', 'geodirectory'),
1553
+								'no' => __('NORWEGIAN', 'geodirectory'),
1554
+								'pl' => __('POLISH', 'geodirectory'),
1555
+								'pt' => __('PORTUGUESE', 'geodirectory'),
1556
+								'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1557
+								'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1558
+								'ro' => __('ROMANIAN', 'geodirectory'),
1559
+								'ru' => __('RUSSIAN', 'geodirectory'),
1560
+								'ru' => __('RUSSIAN', 'geodirectory'),
1561
+								'sk' => __('SLOVAK', 'geodirectory'),
1562
+								'sl' => __('SLOVENIAN', 'geodirectory'),
1563
+								'sr' => __('SERBIAN', 'geodirectory'),
1564
+								'sv' => __('	SWEDISH', 'geodirectory'),
1565
+								'tl' => __('TAGALOG', 'geodirectory'),
1566
+								'ta' => __('TAMIL', 'geodirectory'),
1567
+								'te' => __('TELUGU', 'geodirectory'),
1568
+								'th' => __('THAI', 'geodirectory'),
1569
+								'tr' => __('TURKISH', 'geodirectory'),
1570
+								'uk' => __('UKRAINIAN', 'geodirectory'),
1571
+								'vi' => __('VIETNAMESE', 'geodirectory'),
1572
+								'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1573
+								'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1574
+							);
1575
+							$geodir_default_map_language = get_option('geodir_default_map_language');
1576
+							if (empty($geodir_default_map_language))
1577
+								$geodir_default_map_language = 'en';
1578
+							foreach ($arr_map_langages as $language_key => $language_txt) {
1579
+								if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1580
+									$geodir_default_language_selected = "selected='selected'";
1581
+								else
1582
+									$geodir_default_language_selected = '';
1583
+
1584
+								?>
1585 1585
                                 <option
1586 1586
                                     value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option>
1587 1587
 
1588 1588
                             <?php }
1589
-                            ?>
1589
+							?>
1590 1590
                         </select>
1591 1591
                     </td>
1592 1592
                 </tr>
@@ -1597,46 +1597,46 @@  discard block
 block discarded – undo
1597 1597
                     <td width="60%">
1598 1598
                         <select name="geodir_default_map_search_pt" style="width:60%">
1599 1599
                             <?php
1600
-                            $post_types = geodir_get_posttypes('array');
1601
-                            $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1602
-                            if (empty($geodir_default_map_search_pt))
1603
-                                $geodir_default_map_search_pt = 'gd_place';
1604
-                            if (is_array($post_types)) {
1605
-                                foreach ($post_types as $key => $post_types_obj) {
1606
-                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1607
-                                        $geodir_search_pt_selected = "selected='selected'";
1608
-                                    else
1609
-                                        $geodir_search_pt_selected = '';
1610
-
1611
-                                    ?>
1600
+							$post_types = geodir_get_posttypes('array');
1601
+							$geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1602
+							if (empty($geodir_default_map_search_pt))
1603
+								$geodir_default_map_search_pt = 'gd_place';
1604
+							if (is_array($post_types)) {
1605
+								foreach ($post_types as $key => $post_types_obj) {
1606
+									if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1607
+										$geodir_search_pt_selected = "selected='selected'";
1608
+									else
1609
+										$geodir_search_pt_selected = '';
1610
+
1611
+									?>
1612 1612
                                     <option
1613 1613
                                         value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo $post_types_obj['labels']['singular_name']; ?></option>
1614 1614
 
1615 1615
                                 <?php }
1616 1616
 
1617
-                            }
1617
+							}
1618 1618
 
1619
-                            ?>
1619
+							?>
1620 1620
                         </select>
1621 1621
                     </td>
1622 1622
                 </tr>
1623 1623
 
1624 1624
                 <?php
1625
-                break;
1625
+				break;
1626 1626
 
1627
-            case 'map':
1628
-                ?>
1627
+			case 'map':
1628
+				?>
1629 1629
                 <tr valign="top">
1630 1630
                     <td class="forminp">
1631 1631
                         <?php
1632
-                        global $post_cat, $cat_display;
1633
-                        $post_types = geodir_get_posttypes('object');
1634
-                        $cat_display = 'checkbox';
1635
-                        $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1636
-                        $gd_cats = get_option('geodir_exclude_cat_on_map');
1637
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1638
-                        $count = 1;
1639
-                        ?>
1632
+						global $post_cat, $cat_display;
1633
+						$post_types = geodir_get_posttypes('object');
1634
+						$cat_display = 'checkbox';
1635
+						$gd_post_types = get_option('geodir_exclude_post_type_on_map');
1636
+						$gd_cats = get_option('geodir_exclude_cat_on_map');
1637
+						$gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1638
+						$count = 1;
1639
+						?>
1640 1640
                         <table width="70%" class="widefat">
1641 1641
                             <thead>
1642 1642
                             <tr>
@@ -1645,18 +1645,18 @@  discard block
 block discarded – undo
1645 1645
                                 <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th>
1646 1646
                             </tr>
1647 1647
                             <?php
1648
-                            $gd_categs = $gd_cats;
1649
-                            foreach ($post_types as $key => $post_types_obj) :
1650
-                                $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1651
-                                $gd_taxonomy = geodir_get_taxonomies($key);
1652
-                                if ($gd_cats_upgrade) {
1653
-                                    $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1654
-                                    $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1655
-                                    $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1656
-                                }
1657
-                                $post_cat = implode(',', $gd_cats);
1658
-                                $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1659
-                                ?>
1648
+							$gd_categs = $gd_cats;
1649
+							foreach ($post_types as $key => $post_types_obj) :
1650
+								$checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1651
+								$gd_taxonomy = geodir_get_taxonomies($key);
1652
+								if ($gd_cats_upgrade) {
1653
+									$gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1654
+									$gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1655
+									$gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1656
+								}
1657
+								$post_cat = implode(',', $gd_cats);
1658
+								$gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1659
+								?>
1660 1660
                                 <tr>
1661 1661
                                     <td valign="top" width="5%"><?php echo $count; ?></td>
1662 1662
                                     <td valign="top" width="25%" id="td_post_types"><input type="checkbox"
@@ -1677,19 +1677,19 @@  discard block
 block discarded – undo
1677 1677
                     </td>
1678 1678
                 </tr>
1679 1679
                 <?php
1680
-                break;
1680
+				break;
1681 1681
 
1682
-            case 'checkbox' :
1682
+			case 'checkbox' :
1683 1683
 
1684
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1685
-                    ?>
1684
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1685
+					?>
1686 1686
                     <tr valign="top">
1687 1687
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1688 1688
                     <td class="forminp">
1689 1689
                 <?php
1690
-                endif;
1690
+				endif;
1691 1691
 
1692
-                ?>
1692
+				?>
1693 1693
                 <fieldset>
1694 1694
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1695 1695
                     <label for="<?php echo $value['id'] ?>">
@@ -1699,49 +1699,49 @@  discard block
 block discarded – undo
1699 1699
                 </fieldset>
1700 1700
                 <?php
1701 1701
 
1702
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1703
-                    ?>
1702
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1703
+					?>
1704 1704
                     </td>
1705 1705
                     </tr>
1706 1706
                 <?php
1707
-                endif;
1707
+				endif;
1708 1708
 
1709
-                break;
1709
+				break;
1710 1710
 
1711
-            case 'radio' :
1711
+			case 'radio' :
1712 1712
 
1713
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1714
-                    ?>
1713
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1714
+					?>
1715 1715
                     <tr valign="top">
1716 1716
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1717 1717
                     <td class="forminp">
1718 1718
                 <?php
1719
-                endif;
1719
+				endif;
1720 1720
 
1721
-                ?>
1721
+				?>
1722 1722
                 <fieldset>
1723 1723
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1724 1724
                     <label for="<?php echo $value['id'];?>">
1725 1725
                         <input name="<?php echo esc_attr($value['id']); ?>"
1726 1726
                                id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1727 1727
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1728
-                            echo 'checked="checked"';
1729
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1728
+							echo 'checked="checked"';
1729
+						}elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1730 1730
                         <?php echo $value['desc']; ?></label><br>
1731 1731
                 </fieldset>
1732 1732
                 <?php
1733 1733
 
1734
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1735
-                    ?>
1734
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1735
+					?>
1736 1736
                     </td>
1737 1737
                     </tr>
1738 1738
                 <?php
1739
-                endif;
1739
+				endif;
1740 1740
 
1741
-                break;
1741
+				break;
1742 1742
 
1743
-            case 'textarea':
1744
-                ?>
1743
+			case 'textarea':
1744
+				?>
1745 1745
                 <tr valign="top">
1746 1746
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1747 1747
                 <td class="forminp">
@@ -1754,30 +1754,30 @@  discard block
 block discarded – undo
1754 1754
 
1755 1755
                 </td>
1756 1756
                 </tr><?php
1757
-                break;
1757
+				break;
1758 1758
 
1759
-            case 'editor':
1760
-                ?>
1759
+			case 'editor':
1760
+				?>
1761 1761
                 <tr valign="top">
1762 1762
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1763 1763
                 <td class="forminp"><?php
1764
-                    if (get_option($value['id']))
1765
-                        $content = stripslashes(get_option($value['id']));
1766
-                    else
1767
-                        $content = $value['std'];
1764
+					if (get_option($value['id']))
1765
+						$content = stripslashes(get_option($value['id']));
1766
+					else
1767
+						$content = $value['std'];
1768 1768
 
1769
-                    $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1769
+					$editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1770 1770
 
1771
-                    wp_editor($content, esc_attr($value['id']), $editor_settings);
1771
+					wp_editor($content, esc_attr($value['id']), $editor_settings);
1772 1772
 
1773
-                    ?> <span class="description"><?php echo $value['desc'] ?></span>
1773
+					?> <span class="description"><?php echo $value['desc'] ?></span>
1774 1774
 
1775 1775
                 </td>
1776 1776
                 </tr><?php
1777
-                break;
1777
+				break;
1778 1778
 
1779
-            case 'single_select_page' :
1780
-                // WPML
1779
+			case 'single_select_page' :
1780
+				// WPML
1781 1781
 				$switch_lang = false;
1782 1782
 				$disabled = '';
1783 1783
 				if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
@@ -1795,18 +1795,18 @@  discard block
 block discarded – undo
1795 1795
 				//
1796 1796
 				$page_setting = (int)get_option($value['id']);
1797 1797
 
1798
-                $args = array('name' => $value['id'],
1799
-                    'id' => $value['id'],
1800
-                    'sort_column' => 'menu_order',
1801
-                    'sort_order' => 'ASC',
1802
-                    'show_option_none' => ' ',
1803
-                    'class' => $value['class'],
1804
-                    'echo' => false,
1805
-                    'selected' => $page_setting);
1798
+				$args = array('name' => $value['id'],
1799
+					'id' => $value['id'],
1800
+					'sort_column' => 'menu_order',
1801
+					'sort_order' => 'ASC',
1802
+					'show_option_none' => ' ',
1803
+					'class' => $value['class'],
1804
+					'echo' => false,
1805
+					'selected' => $page_setting);
1806 1806
 
1807
-                if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1807
+				if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1808 1808
 
1809
-                ?>
1809
+				?>
1810 1810
                 <tr valign="top" class="single_select_page">
1811 1811
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1812 1812
                 <td class="forminp">
@@ -1817,17 +1817,17 @@  discard block
 block discarded – undo
1817 1817
 				if ($switch_lang) {
1818 1818
 					$sitepress->switch_lang($switch_lang, true);
1819 1819
 				}
1820
-                break;
1821
-            case 'single_select_country' :
1822
-                $country_setting = (string)get_option($value['id']);
1823
-                if (strstr($country_setting, ':')) :
1824
-                    $country = current(explode(':', $country_setting));
1825
-                    $state = end(explode(':', $country_setting));
1826
-                else :
1827
-                    $country = $country_setting;
1828
-                    $state = '*';
1829
-                endif;
1830
-                ?>
1820
+				break;
1821
+			case 'single_select_country' :
1822
+				$country_setting = (string)get_option($value['id']);
1823
+				if (strstr($country_setting, ':')) :
1824
+					$country = current(explode(':', $country_setting));
1825
+					$state = end(explode(':', $country_setting));
1826
+				else :
1827
+					$country = $country_setting;
1828
+					$state = '*';
1829
+				endif;
1830
+				?>
1831 1831
                 <tr valign="top">
1832 1832
                 <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th>
1833 1833
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1838,12 +1838,12 @@  discard block
 block discarded – undo
1838 1838
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1839 1839
                 </td>
1840 1840
                 </tr><?php
1841
-                break;
1842
-            case 'multi_select_countries' :
1843
-                $countries = $geodirectory->countries->countries;
1844
-                asort($countries);
1845
-                $selections = (array)get_option($value['id']);
1846
-                ?>
1841
+				break;
1842
+			case 'multi_select_countries' :
1843
+				$countries = $geodirectory->countries->countries;
1844
+				asort($countries);
1845
+				$selections = (array)get_option($value['id']);
1846
+				?>
1847 1847
                 <tr valign="top">
1848 1848
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1849 1849
                 <td class="forminp">
@@ -1851,22 +1851,22 @@  discard block
 block discarded – undo
1851 1851
                             data-placeholder="<?php _e('Choose countries&hellip;', 'geodirectory'); ?>"
1852 1852
                             title="Country" class="chosen_select">
1853 1853
                         <?php
1854
-                        if ($countries) foreach ($countries as $key => $val) :
1855
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1856
-                        endforeach;
1857
-                        ?>
1854
+						if ($countries) foreach ($countries as $key => $val) :
1855
+							echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1856
+						endforeach;
1857
+						?>
1858 1858
                     </select>
1859 1859
                 </td>
1860 1860
                 </tr>
1861 1861
 
1862 1862
                 <?php
1863 1863
 
1864
-                break;
1864
+				break;
1865 1865
 
1866
-            case 'google_analytics' :
1867
-                $selections = (array)get_option($value['id']);
1868
-                if(get_option('geodir_ga_client_id') && get_option('geodir_ga_client_secret') ) {
1869
-                    ?>
1866
+			case 'google_analytics' :
1867
+				$selections = (array)get_option($value['id']);
1868
+				if(get_option('geodir_ga_client_id') && get_option('geodir_ga_client_secret') ) {
1869
+					?>
1870 1870
                     <tr valign="top">
1871 1871
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1872 1872
                         <td class="forminp">
@@ -1874,19 +1874,19 @@  discard block
 block discarded – undo
1874 1874
 
1875 1875
                             <?php
1876 1876
 
1877
-                            $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1878
-                            $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1879
-                            $state = "&state=123";//any string
1880
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1881
-                            $response_type = "&response_type=code";
1882
-                            $client_id = "&client_id=".get_option('geodir_ga_client_id');
1883
-                            $access_type = "&access_type=offline";
1884
-                            $approval_prompt = "&approval_prompt=force";
1877
+							$oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1878
+							$scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1879
+							$state = "&state=123";//any string
1880
+							$redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1881
+							$response_type = "&response_type=code";
1882
+							$client_id = "&client_id=".get_option('geodir_ga_client_id');
1883
+							$access_type = "&access_type=offline";
1884
+							$approval_prompt = "&approval_prompt=force";
1885 1885
 
1886
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1886
+							$auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1887 1887
 
1888 1888
 
1889
-                            ?>
1889
+							?>
1890 1890
                             <script>
1891 1891
                                 function gd_ga_popup() {
1892 1892
                                     var win = window.open("<?php echo $auth_url;?>", "Google Analytics", "");
@@ -1901,47 +1901,47 @@  discard block
 block discarded – undo
1901 1901
                             </script>
1902 1902
 
1903 1903
                             <?php
1904
-                            if (get_option('gd_ga_refresh_token')) {
1905
-                                ?>
1904
+							if (get_option('gd_ga_refresh_token')) {
1905
+								?>
1906 1906
                                 <span class="button-primary"
1907 1907
                                       onclick="gd_ga_popup();"><?php _e('Re-authorize', 'geodirectory'); ?></span>
1908 1908
                                 <span
1909 1909
                                     style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1910 1910
                             <?php
1911
-                            } else {
1912
-                                ?>
1911
+							} else {
1912
+								?>
1913 1913
                                 <span class="button-primary"
1914 1914
                                       onclick="gd_ga_popup();"><?php _e('Authorize', 'geodirectory');?></span>
1915 1915
                             <?php
1916
-                            }
1917
-                            ?>
1916
+							}
1917
+							?>
1918 1918
                         </td>
1919 1919
                     </tr>
1920 1920
 
1921 1921
                 <?php
1922
-                }
1922
+				}
1923 1923
 
1924
-                break;
1924
+				break;
1925 1925
 
1926
-            case 'field_seperator' :
1926
+			case 'field_seperator' :
1927 1927
 
1928
-                ?>
1928
+				?>
1929 1929
                 <tr valign="top">
1930 1930
                     <td colspan="2" class="forminp geodir_line_seperator"></td>
1931 1931
                 </tr>
1932 1932
                 <?php
1933 1933
 
1934
-                break;
1934
+				break;
1935 1935
 
1936
-        endswitch;
1936
+		endswitch;
1937 1937
 
1938
-    endforeach;
1938
+	endforeach;
1939 1939
 
1940
-    if ($first_title === false) {
1941
-        echo "</div>";
1942
-    }
1940
+	if ($first_title === false) {
1941
+		echo "</div>";
1942
+	}
1943 1943
 
1944
-    ?>
1944
+	?>
1945 1945
 
1946 1946
     <script type="text/javascript">
1947 1947
 
@@ -2001,33 +2001,33 @@  discard block
 block discarded – undo
2001 2001
  */
2002 2002
 function geodir_post_info_setting()
2003 2003
 {
2004
-    global $post, $post_id;
2005
-
2006
-    $post_type = get_post_type();
2007
-
2008
-    $package_info = array();
2009
-
2010
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
2011
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
2012
-    echo '<div id="geodir_wrapper">';
2013
-    /**
2014
-     * Called before the GD custom fields are output in the wp-admin area.
2015
-     *
2016
-     * @since 1.0.0
2017
-     * @see 'geodir_after_default_field_in_meta_box'
2018
-     */
2019
-    do_action('geodir_before_default_field_in_meta_box');
2020
-    //geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
2021
-    // to display all fields in one information box
2022
-    geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
2023
-    /**
2024
-     * Called after the GD custom fields are output in the wp-admin area.
2025
-     *
2026
-     * @since 1.0.0
2027
-     * @see 'geodir_before_default_field_in_meta_box'
2028
-     */
2029
-    do_action('geodir_after_default_field_in_meta_box');
2030
-    echo '</div>';
2004
+	global $post, $post_id;
2005
+
2006
+	$post_type = get_post_type();
2007
+
2008
+	$package_info = array();
2009
+
2010
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
2011
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
2012
+	echo '<div id="geodir_wrapper">';
2013
+	/**
2014
+	 * Called before the GD custom fields are output in the wp-admin area.
2015
+	 *
2016
+	 * @since 1.0.0
2017
+	 * @see 'geodir_after_default_field_in_meta_box'
2018
+	 */
2019
+	do_action('geodir_before_default_field_in_meta_box');
2020
+	//geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
2021
+	// to display all fields in one information box
2022
+	geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
2023
+	/**
2024
+	 * Called after the GD custom fields are output in the wp-admin area.
2025
+	 *
2026
+	 * @since 1.0.0
2027
+	 * @see 'geodir_before_default_field_in_meta_box'
2028
+	 */
2029
+	do_action('geodir_after_default_field_in_meta_box');
2030
+	echo '</div>';
2031 2031
 }
2032 2032
 
2033 2033
 /**
@@ -2040,18 +2040,18 @@  discard block
 block discarded – undo
2040 2040
  */
2041 2041
 function geodir_post_addinfo_setting()
2042 2042
 {
2043
-    global $post, $post_id;
2043
+	global $post, $post_id;
2044 2044
 
2045
-    $post_type = get_post_type();
2045
+	$post_type = get_post_type();
2046 2046
 
2047
-    $package_info = array();
2047
+	$package_info = array();
2048 2048
 
2049
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
2049
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
2050 2050
 
2051
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
2052
-    echo '<div id="geodir_wrapper">';
2053
-    geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
2054
-    echo '</div>';
2051
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
2052
+	echo '<div id="geodir_wrapper">';
2053
+	geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
2054
+	echo '</div>';
2055 2055
 
2056 2056
 }
2057 2057
 
@@ -2065,60 +2065,60 @@  discard block
 block discarded – undo
2065 2065
  */
2066 2066
 function geodir_post_attachments()
2067 2067
 {
2068
-    global $post, $post_id;
2068
+	global $post, $post_id;
2069 2069
 
2070
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
2070
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
2071 2071
 
2072
-    if (geodir_get_featured_image($post_id, 'thumbnail')) {
2073
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
2074
-        geodir_show_featured_image($post_id, 'thumbnail');
2075
-    }
2072
+	if (geodir_get_featured_image($post_id, 'thumbnail')) {
2073
+		echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
2074
+		geodir_show_featured_image($post_id, 'thumbnail');
2075
+	}
2076 2076
 
2077
-    $image_limit = 0;
2077
+	$image_limit = 0;
2078 2078
 
2079
-    ?>
2079
+	?>
2080 2080
 
2081 2081
 
2082 2082
     <h5 class="form_title">
2083 2083
         <?php if ($image_limit != 0 && $image_limit == 1) {
2084
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
2085
-        } ?>
2084
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
2085
+		} ?>
2086 2086
         <?php if ($image_limit != 0 && $image_limit > 1) {
2087
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
2088
-        } ?>
2087
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
2088
+		} ?>
2089 2089
         <?php if ($image_limit == 0) {
2090
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
2091
-        } ?>
2090
+			echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
2091
+		} ?>
2092 2092
     </h5>
2093 2093
 
2094 2094
 
2095 2095
     <?php
2096 2096
 
2097
-    $curImages = geodir_get_images($post_id);
2098
-    $place_img_array = array();
2097
+	$curImages = geodir_get_images($post_id);
2098
+	$place_img_array = array();
2099 2099
 
2100
-    if (!empty($curImages)):
2101
-        foreach ($curImages as $p_img):
2102
-            $place_img_array[] = $p_img->src;
2103
-        endforeach;
2104
-    endif;
2100
+	if (!empty($curImages)):
2101
+		foreach ($curImages as $p_img):
2102
+			$place_img_array[] = $p_img->src;
2103
+		endforeach;
2104
+	endif;
2105 2105
 
2106
-    if (!empty($place_img_array))
2107
-        $curImages = implode(',', $place_img_array);
2106
+	if (!empty($place_img_array))
2107
+		$curImages = implode(',', $place_img_array);
2108 2108
 
2109 2109
 
2110
-    // adjust values here
2111
-    $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
2110
+	// adjust values here
2111
+	$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
2112 2112
 
2113
-    $svalue = $curImages; // this will be initial value of the above form field. Image urls.
2113
+	$svalue = $curImages; // this will be initial value of the above form field. Image urls.
2114 2114
 
2115
-    $multiple = true; // allow multiple files upload
2115
+	$multiple = true; // allow multiple files upload
2116 2116
 
2117
-    $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
2117
+	$width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
2118 2118
 
2119
-    $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
2119
+	$height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
2120 2120
 
2121
-    ?>
2121
+	?>
2122 2122
 
2123 2123
     <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;">
2124 2124
         <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/>
@@ -2160,13 +2160,13 @@  discard block
 block discarded – undo
2160 2160
  */
2161 2161
 function geodir_action_post_updated($post_ID, $post_after, $post_before)
2162 2162
 {
2163
-    $post_type = get_post_type($post_ID);
2163
+	$post_type = get_post_type($post_ID);
2164 2164
 
2165
-    if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
2166
-        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) {
2167
-            geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
2168
-        }
2169
-    }
2165
+	if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
2166
+		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) {
2167
+			geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
2168
+		}
2169
+	}
2170 2170
 }
2171 2171
 
2172 2172
 /**
@@ -2181,39 +2181,39 @@  discard block
 block discarded – undo
2181 2181
  */
2182 2182
 function geodir_notification_add_bcc_option($settings)
2183 2183
 {
2184
-    if (!empty($settings)) {
2185
-        $new_settings = array();
2186
-        foreach ($settings as $setting) {
2187
-            if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
2188
-                $geodir_bcc_listing_published_yes = array(
2189
-                    'name' => __('Listing published', 'geodirectory'),
2190
-                    'desc' => __('Yes', 'geodirectory'),
2191
-                    'id' => 'geodir_bcc_listing_published',
2192
-                    'std' => 'yes',
2193
-                    'type' => 'radio',
2194
-                    'value' => '1',
2195
-                    'radiogroup' => 'start'
2196
-                );
2197
-
2198
-                $geodir_bcc_listing_published_no = array(
2199
-                    'name' => __('Listing published', 'geodirectory'),
2200
-                    'desc' => __('No', 'geodirectory'),
2201
-                    'id' => 'geodir_bcc_listing_published',
2202
-                    'std' => 'yes',
2203
-                    'type' => 'radio',
2204
-                    'value' => '0',
2205
-                    'radiogroup' => 'end'
2206
-                );
2207
-
2208
-                $new_settings[] = $geodir_bcc_listing_published_yes;
2209
-                $new_settings[] = $geodir_bcc_listing_published_no;
2210
-            }
2211
-            $new_settings[] = $setting;
2212
-        }
2213
-        $settings = $new_settings;
2214
-    }
2184
+	if (!empty($settings)) {
2185
+		$new_settings = array();
2186
+		foreach ($settings as $setting) {
2187
+			if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
2188
+				$geodir_bcc_listing_published_yes = array(
2189
+					'name' => __('Listing published', 'geodirectory'),
2190
+					'desc' => __('Yes', 'geodirectory'),
2191
+					'id' => 'geodir_bcc_listing_published',
2192
+					'std' => 'yes',
2193
+					'type' => 'radio',
2194
+					'value' => '1',
2195
+					'radiogroup' => 'start'
2196
+				);
2197
+
2198
+				$geodir_bcc_listing_published_no = array(
2199
+					'name' => __('Listing published', 'geodirectory'),
2200
+					'desc' => __('No', 'geodirectory'),
2201
+					'id' => 'geodir_bcc_listing_published',
2202
+					'std' => 'yes',
2203
+					'type' => 'radio',
2204
+					'value' => '0',
2205
+					'radiogroup' => 'end'
2206
+				);
2207
+
2208
+				$new_settings[] = $geodir_bcc_listing_published_yes;
2209
+				$new_settings[] = $geodir_bcc_listing_published_no;
2210
+			}
2211
+			$new_settings[] = $setting;
2212
+		}
2213
+		$settings = $new_settings;
2214
+	}
2215 2215
 
2216
-    return $settings;
2216
+	return $settings;
2217 2217
 }
2218 2218
 
2219 2219
 
@@ -2228,19 +2228,19 @@  discard block
 block discarded – undo
2228 2228
  */
2229 2229
 function get_gd_theme_compat_callback()
2230 2230
 {
2231
-    global $wpdb;
2232
-    $themes = get_option('gd_theme_compats');
2233
-
2234
-    if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
2235
-        if (isset($_POST['export'])) {
2236
-            echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
2237
-        } else {
2238
-            echo json_encode($themes[$_POST['theme']]);
2239
-        }
2231
+	global $wpdb;
2232
+	$themes = get_option('gd_theme_compats');
2240 2233
 
2241
-    }
2234
+	if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
2235
+		if (isset($_POST['export'])) {
2236
+			echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
2237
+		} else {
2238
+			echo json_encode($themes[$_POST['theme']]);
2239
+		}
2242 2240
 
2243
-    die();
2241
+	}
2242
+
2243
+	die();
2244 2244
 }
2245 2245
 
2246 2246
 add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
@@ -2254,20 +2254,20 @@  discard block
 block discarded – undo
2254 2254
  */
2255 2255
 function get_gd_theme_compat_import_callback()
2256 2256
 {
2257
-    global $wpdb;
2258
-    $themes = get_option('gd_theme_compats');
2259
-    if (isset($_POST['theme']) && !empty($_POST['theme'])) {
2260
-        $json = json_decode(stripslashes($_POST['theme']), true);
2261
-        if (!empty($json) && is_array($json)) {
2262
-            $key = sanitize_text_field(key($json));
2263
-            $themes[$key] = $json[$key];
2264
-            update_option('gd_theme_compats', $themes);
2265
-            echo $key;
2266
-            die();
2267
-        }
2268
-    }
2269
-    echo '0';
2270
-    die();
2257
+	global $wpdb;
2258
+	$themes = get_option('gd_theme_compats');
2259
+	if (isset($_POST['theme']) && !empty($_POST['theme'])) {
2260
+		$json = json_decode(stripslashes($_POST['theme']), true);
2261
+		if (!empty($json) && is_array($json)) {
2262
+			$key = sanitize_text_field(key($json));
2263
+			$themes[$key] = $json[$key];
2264
+			update_option('gd_theme_compats', $themes);
2265
+			echo $key;
2266
+			die();
2267
+		}
2268
+	}
2269
+	echo '0';
2270
+	die();
2271 2271
 }
2272 2272
 
2273 2273
 
@@ -2280,39 +2280,39 @@  discard block
 block discarded – undo
2280 2280
  */
2281 2281
 function gd_set_theme_compat()
2282 2282
 {
2283
-    global $wpdb;
2284
-    $theme = wp_get_theme();
2283
+	global $wpdb;
2284
+	$theme = wp_get_theme();
2285 2285
 
2286
-    if ($theme->parent()) {
2287
-        $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
2288
-    } else {
2289
-        $theme_name = str_replace(" ", "_", $theme->get('Name'));
2290
-    }
2286
+	if ($theme->parent()) {
2287
+		$theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
2288
+	} else {
2289
+		$theme_name = str_replace(" ", "_", $theme->get('Name'));
2290
+	}
2291 2291
 
2292
-    $theme_compats = get_option('gd_theme_compats');
2293
-    $current_compat = get_option('gd_theme_compat');
2294
-    $current_compat = str_replace("_custom", "", $current_compat);
2292
+	$theme_compats = get_option('gd_theme_compats');
2293
+	$current_compat = get_option('gd_theme_compat');
2294
+	$current_compat = str_replace("_custom", "", $current_compat);
2295 2295
 
2296
-    if ($current_compat == $theme_name && strpos("_custom", get_option('gd_theme_compat')) !== false) {
2297
-        return;
2298
-    }// if already running correct compat then bail
2296
+	if ($current_compat == $theme_name && strpos("_custom", get_option('gd_theme_compat')) !== false) {
2297
+		return;
2298
+	}// if already running correct compat then bail
2299 2299
 
2300
-    if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
2301
-        update_option('gd_theme_compat', $theme_name);
2302
-        update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
2300
+	if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
2301
+		update_option('gd_theme_compat', $theme_name);
2302
+		update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
2303 2303
 
2304
-        // if there are default options to set then set them
2305
-        if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
2304
+		// if there are default options to set then set them
2305
+		if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
2306 2306
 
2307
-            foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
2308
-                update_option($key, $val);
2309
-            }
2310
-        }
2307
+			foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
2308
+				update_option($key, $val);
2309
+			}
2310
+		}
2311 2311
 
2312
-    } else {
2313
-        update_option('gd_theme_compat', '');
2314
-        update_option('theme_compatibility_setting', '');
2315
-    }
2312
+	} else {
2313
+		update_option('gd_theme_compat', '');
2314
+		update_option('theme_compatibility_setting', '');
2315
+	}
2316 2316
 
2317 2317
 
2318 2318
 }
@@ -2327,9 +2327,9 @@  discard block
 block discarded – undo
2327 2327
  */
2328 2328
 function gd_check_avada_compat()
2329 2329
 {
2330
-    if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
2331
-        add_action('admin_notices', 'gd_avada_compat_warning');
2332
-    }
2330
+	if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
2331
+		add_action('admin_notices', 'gd_avada_compat_warning');
2332
+	}
2333 2333
 }
2334 2334
 
2335 2335
 
@@ -2342,22 +2342,22 @@  discard block
 block discarded – undo
2342 2342
 function gd_avada_compat_warning()
2343 2343
 {
2344 2344
 
2345
-    /*
2345
+	/*
2346 2346
     $msg_type = error
2347 2347
     $msg_type = updated fade
2348 2348
     $msg_type = update-nag
2349 2349
     */
2350 2350
 
2351
-    $plugin = 'avada-nag';
2352
-    $timestamp = 'avada-nag1234';
2353
-    $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');
2354
-    echo '<div id="' . $timestamp . '"  class="error">';
2355
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2356
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2357
-    echo "<p>$message</p>";
2358
-    echo "</div>";
2351
+	$plugin = 'avada-nag';
2352
+	$timestamp = 'avada-nag1234';
2353
+	$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');
2354
+	echo '<div id="' . $timestamp . '"  class="error">';
2355
+	echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2356
+	echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2357
+	echo "<p>$message</p>";
2358
+	echo "</div>";
2359 2359
 
2360
-    ?>
2360
+	?>
2361 2361
     <script>
2362 2362
         function gdRemoveANotification($plugin, $timestamp) {
2363 2363
 
@@ -2425,10 +2425,10 @@  discard block
 block discarded – undo
2425 2425
  */
2426 2426
 function geodir_avada_remove_notification()
2427 2427
 {
2428
-    update_option('avada_nag', TRUE);
2428
+	update_option('avada_nag', TRUE);
2429 2429
 
2430
-    // Always die in functions echoing ajax content
2431
-    die();
2430
+	// Always die in functions echoing ajax content
2431
+	die();
2432 2432
 }
2433 2433
 
2434 2434
 
@@ -2450,9 +2450,9 @@  discard block
 block discarded – undo
2450 2450
 	global $post, $typenow, $current_screen;
2451 2451
 	
2452 2452
 	$post_type = NULL;
2453
-    if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2453
+	if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2454 2454
 		$post_type = get_post_type($_REQUEST['post']);
2455
-    elseif ($post && isset($post->post_type))
2455
+	elseif ($post && isset($post->post_type))
2456 2456
 		$post_type = $post->post_type;
2457 2457
 	elseif ($typenow)
2458 2458
 		$post_type = $typenow;
@@ -2487,7 +2487,7 @@  discard block
 block discarded – undo
2487 2487
 		// Don't allow same slug url for listing and location
2488 2488
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2489 2489
 			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2490
-        	wp_redirect($redirect_url);
2490
+			wp_redirect($redirect_url);
2491 2491
 			exit;
2492 2492
 		}
2493 2493
 		
@@ -2517,10 +2517,10 @@  discard block
 block discarded – undo
2517 2517
  * @package GeoDirectory
2518 2518
  */
2519 2519
 function geodir_hide_admin_preview_button() {
2520
-    global $post_type;
2521
-    $post_types = geodir_get_posttypes();
2522
-    if(in_array($post_type, $post_types))
2523
-        echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2520
+	global $post_type;
2521
+	$post_types = geodir_get_posttypes();
2522
+	if(in_array($post_type, $post_types))
2523
+		echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2524 2524
 }
2525 2525
 add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2526 2526
 add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
@@ -2535,7 +2535,7 @@  discard block
 block discarded – undo
2535 2535
  */
2536 2536
 function geodir_import_export_tab( $tabs ) {
2537 2537
 	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2538
-    return $tabs;
2538
+	return $tabs;
2539 2539
 }
2540 2540
 
2541 2541
 /**
@@ -2550,26 +2550,26 @@  discard block
 block discarded – undo
2550 2550
 function geodir_import_export_page() {
2551 2551
 	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2552 2552
 	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2553
-    /**
2554
-     * Filter sample category data csv file url.
2555
-     *
2556
-     * @since 1.0.0
2557
-     * @package GeoDirectory
2558
-     *
2559
-     * @param string $gd_cats_sample_csv Sample category data csv file url.
2560
-     */
2553
+	/**
2554
+	 * Filter sample category data csv file url.
2555
+	 *
2556
+	 * @since 1.0.0
2557
+	 * @package GeoDirectory
2558
+	 *
2559
+	 * @param string $gd_cats_sample_csv Sample category data csv file url.
2560
+	 */
2561 2561
 	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2562 2562
 	
2563 2563
 	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2564
-    /**
2565
-     * Filter sample post data csv file url.
2566
-     *
2567
-     * @since 1.0.0
2568
-     * @package GeoDirectory
2569
-     *
2570
-     * @param string $gd_posts_sample_csv Sample post data csv file url.
2571
-     */
2572
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2564
+	/**
2565
+	 * Filter sample post data csv file url.
2566
+	 *
2567
+	 * @since 1.0.0
2568
+	 * @package GeoDirectory
2569
+	 *
2570
+	 * @param string $gd_posts_sample_csv Sample post data csv file url.
2571
+	 */
2572
+	$gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2573 2573
 	
2574 2574
 	$gd_posttypes = geodir_get_posttypes( 'array' );
2575 2575
 	
@@ -2592,14 +2592,14 @@  discard block
 block discarded – undo
2592 2592
 	$gd_chunksize_options[100000] = 100000;
2593 2593
 	 
2594 2594
 	 /**
2595
-     * Filter max entries per export csv file.
2596
-     *
2597
-     * @since 1.5.6
2598
-     * @package GeoDirectory
2599
-     *
2600
-     * @param string $gd_chunksize_options Entries options.
2601
-     */
2602
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2595
+	  * Filter max entries per export csv file.
2596
+	  *
2597
+	  * @since 1.5.6
2598
+	  * @package GeoDirectory
2599
+	  *
2600
+	  * @param string $gd_chunksize_options Entries options.
2601
+	  */
2602
+	$gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2603 2603
 	
2604 2604
 	$gd_chunksize_option = '';
2605 2605
 	foreach ($gd_chunksize_options as $value => $title) {
@@ -2615,12 +2615,12 @@  discard block
 block discarded – undo
2615 2615
   <div class="gd-content-heading">
2616 2616
 
2617 2617
   <?php
2618
-    ini_set('max_execution_time', 999999);
2619
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2620
-    ini_restore('max_execution_time');
2618
+	ini_set('max_execution_time', 999999);
2619
+	$ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2620
+	ini_restore('max_execution_time');
2621 2621
 
2622
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2623
-        ?>
2622
+	if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2623
+		?>
2624 2624
 	<div id="gd_ie_reqs" class="metabox-holder">
2625 2625
       <div class="meta-box-sortables ui-sortable">
2626 2626
         <div class="postbox">
@@ -2793,7 +2793,7 @@  discard block
 block discarded – undo
2793 2793
 						 * Called just after the sample CSV download link.
2794 2794
 						 *
2795 2795
 						 * @since 1.0.0
2796
-                         * @package GeoDirectory
2796
+						 * @package GeoDirectory
2797 2797
 						 */
2798 2798
 						do_action('geodir_sample_cats_csv_download_link');
2799 2799
 						?>
@@ -2878,11 +2878,11 @@  discard block
 block discarded – undo
2878 2878
 	 *
2879 2879
 	 * Called after the last setting on the GD > Import & Export page.
2880 2880
 	 * @since 1.4.6
2881
-     * @package GeoDirectory
2881
+	 * @package GeoDirectory
2882 2882
 	 *
2883 2883
 	 * @param array $gd_posttypes GD post types.
2884
-     * @param array $gd_chunksize_options File chunk size options.
2885
-     * @param string $nonce Wordpress security token for GD import & export.
2884
+	 * @param array $gd_chunksize_options File chunk size options.
2885
+	 * @param string $nonce Wordpress security token for GD import & export.
2886 2886
 	 */
2887 2887
 	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2888 2888
 	?>
@@ -3569,44 +3569,44 @@  discard block
 block discarded – undo
3569 3569
 function geodir_init_filesystem()
3570 3570
 {
3571 3571
 
3572
-    if(!function_exists('get_filesystem_method')){
3573
-        require_once(ABSPATH."/wp-admin/includes/file.php");
3574
-    }
3575
-    $access_type = get_filesystem_method();
3576
-    if ($access_type === 'direct') {
3577
-        /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3578
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3579
-
3580
-        /* initialize the API */
3581
-        if (!WP_Filesystem($creds)) {
3582
-            /* any problems and we exit */
3583
-            //return '@@@3';
3584
-            return false;
3585
-        }
3586
-
3587
-        global $wp_filesystem;
3588
-        return $wp_filesystem;
3589
-        /* do our file manipulations below */
3590
-    } elseif (defined('FTP_USER')) {
3591
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3572
+	if(!function_exists('get_filesystem_method')){
3573
+		require_once(ABSPATH."/wp-admin/includes/file.php");
3574
+	}
3575
+	$access_type = get_filesystem_method();
3576
+	if ($access_type === 'direct') {
3577
+		/* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3578
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3579
+
3580
+		/* initialize the API */
3581
+		if (!WP_Filesystem($creds)) {
3582
+			/* any problems and we exit */
3583
+			//return '@@@3';
3584
+			return false;
3585
+		}
3592 3586
 
3593
-        /* initialize the API */
3594
-        if (!WP_Filesystem($creds)) {
3595
-            /* any problems and we exit */
3596
-            //return '@@@33';
3597
-            return false;
3598
-        }
3587
+		global $wp_filesystem;
3588
+		return $wp_filesystem;
3589
+		/* do our file manipulations below */
3590
+	} elseif (defined('FTP_USER')) {
3591
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3592
+
3593
+		/* initialize the API */
3594
+		if (!WP_Filesystem($creds)) {
3595
+			/* any problems and we exit */
3596
+			//return '@@@33';
3597
+			return false;
3598
+		}
3599 3599
 
3600
-        global $wp_filesystem;
3601
-        //return '@@@1';
3602
-        return $wp_filesystem;
3600
+		global $wp_filesystem;
3601
+		//return '@@@1';
3602
+		return $wp_filesystem;
3603 3603
 
3604
-    } else {
3605
-        //return '@@@2';
3606
-        /* don't have direct write access. Prompt user with our notice */
3607
-        add_action('admin_notice', 'geodir_filesystem_notice');
3608
-        return false;
3609
-    }
3604
+	} else {
3605
+		//return '@@@2';
3606
+		/* don't have direct write access. Prompt user with our notice */
3607
+		add_action('admin_notice', 'geodir_filesystem_notice');
3608
+		return false;
3609
+	}
3610 3610
 
3611 3611
 }
3612 3612
 
@@ -3624,10 +3624,10 @@  discard block
 block discarded – undo
3624 3624
  */
3625 3625
 function geodir_filesystem_notice()
3626 3626
 {   if ( defined( 'DOING_AJAX' ) ){return;}
3627
-    $access_type = get_filesystem_method();
3628
-    if ($access_type === 'direct') {
3629
-    } elseif (!defined('FTP_USER')) {
3630
-        ?>
3627
+	$access_type = get_filesystem_method();
3628
+	if ($access_type === 'direct') {
3629
+	} elseif (!defined('FTP_USER')) {
3630
+		?>
3631 3631
         <div class="error">
3632 3632
             <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'); ?>
3633 3633
                 <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>
@@ -3653,1251 +3653,1251 @@  discard block
 block discarded – undo
3653 3653
  * @return string Json data.
3654 3654
  */
3655 3655
 function geodir_ajax_import_export() {
3656
-    global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3656
+	global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3657 3657
     
3658
-    error_reporting(0);
3658
+	error_reporting(0);
3659 3659
 
3660
-    // try to set higher limits for import
3661
-    $max_input_time = ini_get('max_input_time');
3662
-    $max_execution_time = ini_get('max_execution_time');
3663
-    $memory_limit= ini_get('memory_limit');
3660
+	// try to set higher limits for import
3661
+	$max_input_time = ini_get('max_input_time');
3662
+	$max_execution_time = ini_get('max_execution_time');
3663
+	$memory_limit= ini_get('memory_limit');
3664 3664
 
3665
-    if(!$max_input_time || $max_input_time<3000){
3666
-        ini_set('max_input_time', 3000);
3667
-    }
3665
+	if(!$max_input_time || $max_input_time<3000){
3666
+		ini_set('max_input_time', 3000);
3667
+	}
3668 3668
 
3669
-    if(!$max_execution_time || $max_execution_time<3000){
3670
-        ini_set('max_execution_time', 3000);
3671
-    }
3669
+	if(!$max_execution_time || $max_execution_time<3000){
3670
+		ini_set('max_execution_time', 3000);
3671
+	}
3672 3672
 
3673
-    if($memory_limit && str_replace('M','',$memory_limit)){
3674
-        if(str_replace('M','',$memory_limit)<256){
3675
-            ini_set('memory_limit', '256M');
3676
-        }
3677
-    }
3673
+	if($memory_limit && str_replace('M','',$memory_limit)){
3674
+		if(str_replace('M','',$memory_limit)<256){
3675
+			ini_set('memory_limit', '256M');
3676
+		}
3677
+	}
3678 3678
 
3679
-    $json = array();
3679
+	$json = array();
3680 3680
 
3681
-    if ( !current_user_can( 'manage_options' ) ) {
3682
-        wp_send_json( $json );
3683
-    }
3681
+	if ( !current_user_can( 'manage_options' ) ) {
3682
+		wp_send_json( $json );
3683
+	}
3684 3684
 
3685
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3686
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3687
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3685
+	$task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3686
+	$nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3687
+	$stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3688 3688
 
3689
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3690
-        wp_send_json( $json );
3691
-    }
3689
+	if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3690
+		wp_send_json( $json );
3691
+	}
3692 3692
 
3693
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3694
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3695
-    $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3696
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3693
+	$post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3694
+	$chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3695
+	$chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3696
+	$chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3697 3697
 
3698
-    $wp_filesystem = geodir_init_filesystem();
3699
-    if (!$wp_filesystem) {
3700
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3701
-        wp_send_json( $json );
3702
-    }
3698
+	$wp_filesystem = geodir_init_filesystem();
3699
+	if (!$wp_filesystem) {
3700
+		$json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3701
+		wp_send_json( $json );
3702
+	}
3703 3703
 
3704
-    if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3705
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3706
-        wp_send_json( $json );
3707
-    }
3704
+	if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3705
+		$json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3706
+		wp_send_json( $json );
3707
+	}
3708 3708
 
3709
-    $csv_file_dir = geodir_path_import_export( false );
3710
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3711
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3712
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3713
-            wp_send_json( $json );
3714
-        }
3715
-    }
3709
+	$csv_file_dir = geodir_path_import_export( false );
3710
+	if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3711
+		if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3712
+			$json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3713
+			wp_send_json( $json );
3714
+		}
3715
+	}
3716 3716
     
3717
-    $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3718
-    $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3719
-
3720
-    switch ( $task ) {
3721
-        case 'export_posts': {
3722
-            // WPML
3723
-            $is_wpml = geodir_is_wpml();
3724
-            if ($is_wpml) {
3725
-                global $sitepress;
3726
-                $active_lang = ICL_LANGUAGE_CODE;
3717
+	$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3718
+	$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3719
+
3720
+	switch ( $task ) {
3721
+		case 'export_posts': {
3722
+			// WPML
3723
+			$is_wpml = geodir_is_wpml();
3724
+			if ($is_wpml) {
3725
+				global $sitepress;
3726
+				$active_lang = ICL_LANGUAGE_CODE;
3727 3727
                 
3728
-                $sitepress->switch_lang('all', true);
3729
-            }
3730
-            // WPML
3731
-            if ( $post_type == 'gd_event' ) {
3732
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3733
-            }
3734
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3728
+				$sitepress->switch_lang('all', true);
3729
+			}
3730
+			// WPML
3731
+			if ( $post_type == 'gd_event' ) {
3732
+				add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3733
+			}
3734
+			$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3735 3735
             
3736
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3737
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3738
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3739
-            }
3740
-            $posts_count = geodir_get_posts_count( $post_type );
3741
-            $file_url_base = geodir_path_import_export() . '/';
3742
-            $file_url = $file_url_base . $file_name . '.csv';
3743
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3744
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3736
+			$file_name = $post_type . '_' . date( 'dmyHi' );
3737
+			if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3738
+				$file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3739
+			}
3740
+			$posts_count = geodir_get_posts_count( $post_type );
3741
+			$file_url_base = geodir_path_import_export() . '/';
3742
+			$file_url = $file_url_base . $file_name . '.csv';
3743
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3744
+			$file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3745 3745
             
3746
-            $chunk_file_paths = array();
3746
+			$chunk_file_paths = array();
3747 3747
 
3748
-            if ( isset( $_REQUEST['_c'] ) ) {
3749
-                $json['total'] = $posts_count;
3750
-                // WPML
3751
-                if ($is_wpml) {
3752
-                    $sitepress->switch_lang($active_lang, true);
3753
-                }
3754
-                // WPML
3755
-                wp_send_json( $json );
3756
-                gd_die();
3757
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3758
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3759
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3760
-                $percentage = min( $percentage, 100 );
3748
+			if ( isset( $_REQUEST['_c'] ) ) {
3749
+				$json['total'] = $posts_count;
3750
+				// WPML
3751
+				if ($is_wpml) {
3752
+					$sitepress->switch_lang($active_lang, true);
3753
+				}
3754
+				// WPML
3755
+				wp_send_json( $json );
3756
+				gd_die();
3757
+			} else if ( isset( $_REQUEST['_st'] ) ) {
3758
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3759
+				$percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3760
+				$percentage = min( $percentage, 100 );
3761 3761
                 
3762
-                $json['percentage'] = $percentage;
3763
-                // WPML
3764
-                if ($is_wpml) {
3765
-                    $sitepress->switch_lang($active_lang, true);
3766
-                }
3767
-                // WPML
3768
-                wp_send_json( $json );
3769
-                gd_die();
3770
-            } else {
3771
-                if ( !$posts_count > 0 ) {
3772
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3773
-                } else {
3774
-                    $total_posts = $posts_count;
3775
-                    if ($chunk_per_page > $total_posts) {
3776
-                        $chunk_per_page = $total_posts;
3777
-                    }
3778
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3762
+				$json['percentage'] = $percentage;
3763
+				// WPML
3764
+				if ($is_wpml) {
3765
+					$sitepress->switch_lang($active_lang, true);
3766
+				}
3767
+				// WPML
3768
+				wp_send_json( $json );
3769
+				gd_die();
3770
+			} else {
3771
+				if ( !$posts_count > 0 ) {
3772
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3773
+				} else {
3774
+					$total_posts = $posts_count;
3775
+					if ($chunk_per_page > $total_posts) {
3776
+						$chunk_per_page = $total_posts;
3777
+					}
3778
+					$chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3779 3779
                     
3780
-                    $j = $chunk_page_no;
3781
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3780
+					$j = $chunk_page_no;
3781
+					$chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3782 3782
                     
3783
-                    $per_page = 500;
3784
-                    if ($per_page > $chunk_per_page) {
3785
-                        $per_page = $chunk_per_page;
3786
-                    }
3787
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3783
+					$per_page = 500;
3784
+					if ($per_page > $chunk_per_page) {
3785
+						$per_page = $chunk_per_page;
3786
+					}
3787
+					$total_pages = ceil( $chunk_per_page / $per_page );
3788 3788
                     
3789
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3790
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3789
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3790
+						$save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3791 3791
                         
3792
-                        $clear = $i == 0 ? true : false;
3793
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3794
-                    }
3792
+						$clear = $i == 0 ? true : false;
3793
+						geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3794
+					}
3795 3795
                         
3796
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3797
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3798
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3799
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3800
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3796
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3797
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3798
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3799
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3800
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3801 3801
                         
3802
-                        $file_url = $file_url_base . $chunk_file_name;
3803
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3804
-                    }
3802
+						$file_url = $file_url_base . $chunk_file_name;
3803
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3804
+					}
3805 3805
                     
3806
-                    if ( !empty($chunk_file_paths) ) {
3807
-                        $json['total'] = $posts_count;
3808
-                        $json['files'] = $chunk_file_paths;
3809
-                    } else {
3810
-                        if ($j > 1) {
3811
-                            $json['total'] = $posts_count;
3812
-                            $json['files'] = array();
3813
-                        } else {
3814
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3815
-                        }
3816
-                    }
3817
-                }
3818
-                // WPML
3819
-                if ($is_wpml) {
3820
-                    $sitepress->switch_lang($active_lang, true);
3821
-                }
3822
-                // WPML
3823
-                wp_send_json( $json );
3824
-            }
3825
-        }
3826
-        break;
3827
-        case 'export_cats': {
3828
-            // WPML
3829
-            $is_wpml = geodir_is_wpml();
3830
-            if ($is_wpml) {
3831
-                global $sitepress;
3832
-                $active_lang = ICL_LANGUAGE_CODE;
3806
+					if ( !empty($chunk_file_paths) ) {
3807
+						$json['total'] = $posts_count;
3808
+						$json['files'] = $chunk_file_paths;
3809
+					} else {
3810
+						if ($j > 1) {
3811
+							$json['total'] = $posts_count;
3812
+							$json['files'] = array();
3813
+						} else {
3814
+							$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3815
+						}
3816
+					}
3817
+				}
3818
+				// WPML
3819
+				if ($is_wpml) {
3820
+					$sitepress->switch_lang($active_lang, true);
3821
+				}
3822
+				// WPML
3823
+				wp_send_json( $json );
3824
+			}
3825
+		}
3826
+		break;
3827
+		case 'export_cats': {
3828
+			// WPML
3829
+			$is_wpml = geodir_is_wpml();
3830
+			if ($is_wpml) {
3831
+				global $sitepress;
3832
+				$active_lang = ICL_LANGUAGE_CODE;
3833 3833
                 
3834
-                $sitepress->switch_lang('all', true);
3835
-            }
3836
-            // WPML
3837
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3834
+				$sitepress->switch_lang('all', true);
3835
+			}
3836
+			// WPML
3837
+			$file_name = $post_type . 'category_' . date( 'dmyHi' );
3838 3838
             
3839
-            $terms_count = geodir_get_terms_count( $post_type );
3840
-            $file_url_base = geodir_path_import_export() . '/';
3841
-            $file_url = $file_url_base . $file_name . '.csv';
3842
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3843
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3839
+			$terms_count = geodir_get_terms_count( $post_type );
3840
+			$file_url_base = geodir_path_import_export() . '/';
3841
+			$file_url = $file_url_base . $file_name . '.csv';
3842
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3843
+			$file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3844 3844
             
3845
-            $chunk_file_paths = array();
3845
+			$chunk_file_paths = array();
3846 3846
             
3847
-            if ( isset( $_REQUEST['_st'] ) ) {
3848
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3849
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3850
-                $percentage = min( $percentage, 100 );
3847
+			if ( isset( $_REQUEST['_st'] ) ) {
3848
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3849
+				$percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3850
+				$percentage = min( $percentage, 100 );
3851 3851
                 
3852
-                $json['percentage'] = $percentage;
3853
-                // WPML
3854
-                if ($is_wpml) {
3855
-                    $sitepress->switch_lang($active_lang, true);
3856
-                }
3857
-                // WPML
3858
-                wp_send_json( $json );
3859
-            } else {
3860
-                if ( !$terms_count > 0 ) {
3861
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3862
-                } else {
3863
-                    $total_terms = $terms_count;
3864
-                    if ($chunk_per_page > $terms_count) {
3865
-                        $chunk_per_page = $terms_count;
3866
-                    }
3867
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3852
+				$json['percentage'] = $percentage;
3853
+				// WPML
3854
+				if ($is_wpml) {
3855
+					$sitepress->switch_lang($active_lang, true);
3856
+				}
3857
+				// WPML
3858
+				wp_send_json( $json );
3859
+			} else {
3860
+				if ( !$terms_count > 0 ) {
3861
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3862
+				} else {
3863
+					$total_terms = $terms_count;
3864
+					if ($chunk_per_page > $terms_count) {
3865
+						$chunk_per_page = $terms_count;
3866
+					}
3867
+					$chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3868 3868
                     
3869
-                    $j = $chunk_page_no;
3870
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3869
+					$j = $chunk_page_no;
3870
+					$chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3871 3871
                     
3872
-                    $per_page = 500;
3873
-                    if ($per_page > $chunk_per_page) {
3874
-                        $per_page = $chunk_per_page;
3875
-                    }
3876
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3872
+					$per_page = 500;
3873
+					if ($per_page > $chunk_per_page) {
3874
+						$per_page = $chunk_per_page;
3875
+					}
3876
+					$total_pages = ceil( $chunk_per_page / $per_page );
3877 3877
                     
3878
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3879
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3878
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3879
+						$save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3880 3880
                         
3881
-                        $clear = $i == 0 ? true : false;
3882
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3883
-                    }
3881
+						$clear = $i == 0 ? true : false;
3882
+						geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3883
+					}
3884 3884
                     
3885
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3886
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3887
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3888
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3889
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3885
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3886
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3887
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3888
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3889
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3890 3890
                         
3891
-                        $file_url = $file_url_base . $chunk_file_name;
3892
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3893
-                    }
3891
+						$file_url = $file_url_base . $chunk_file_name;
3892
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3893
+					}
3894 3894
                     
3895
-                    if ( !empty($chunk_file_paths) ) {
3896
-                        $json['total'] = $terms_count;
3897
-                        $json['files'] = $chunk_file_paths;
3898
-                    } else {
3899
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3900
-                    }
3901
-                }
3902
-                // WPML
3903
-                if ($is_wpml) {
3904
-                    $sitepress->switch_lang($active_lang, true);
3905
-                }
3906
-                // WPML
3907
-                wp_send_json( $json );
3908
-            }
3909
-        }
3910
-        break;
3911
-        case 'export_locations': {
3912
-            $file_url_base = geodir_path_import_export() . '/';
3913
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3914
-            $file_url = $file_url_base . $file_name . '.csv';
3915
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3916
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3895
+					if ( !empty($chunk_file_paths) ) {
3896
+						$json['total'] = $terms_count;
3897
+						$json['files'] = $chunk_file_paths;
3898
+					} else {
3899
+						$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3900
+					}
3901
+				}
3902
+				// WPML
3903
+				if ($is_wpml) {
3904
+					$sitepress->switch_lang($active_lang, true);
3905
+				}
3906
+				// WPML
3907
+				wp_send_json( $json );
3908
+			}
3909
+		}
3910
+		break;
3911
+		case 'export_locations': {
3912
+			$file_url_base = geodir_path_import_export() . '/';
3913
+			$file_name = 'gd_locations_' . date( 'dmyHi' );
3914
+			$file_url = $file_url_base . $file_name . '.csv';
3915
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3916
+			$file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3917 3917
             
3918
-            $items_count = (int)geodir_location_imex_count_locations();
3918
+			$items_count = (int)geodir_location_imex_count_locations();
3919 3919
             
3920
-            if ( isset( $_REQUEST['_st'] ) ) {
3921
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3922
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3923
-                $percentage = min( $percentage, 100 );
3920
+			if ( isset( $_REQUEST['_st'] ) ) {
3921
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3922
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3923
+				$percentage = min( $percentage, 100 );
3924 3924
                 
3925
-                $json['percentage'] = $percentage;
3926
-                wp_send_json( $json );
3927
-            } else {
3928
-                $chunk_file_paths = array();
3925
+				$json['percentage'] = $percentage;
3926
+				wp_send_json( $json );
3927
+			} else {
3928
+				$chunk_file_paths = array();
3929 3929
                 
3930
-                if ( !$items_count > 0 ) {
3931
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3932
-                } else {
3933
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3934
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3930
+				if ( !$items_count > 0 ) {
3931
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3932
+				} else {
3933
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3934
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3935 3935
                     
3936
-                    $j = $chunk_page_no;
3937
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3936
+					$j = $chunk_page_no;
3937
+					$chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3938 3938
                     
3939
-                    $per_page = 500;
3940
-                    $per_page = min( $per_page, $chunk_per_page );
3941
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3939
+					$per_page = 500;
3940
+					$per_page = min( $per_page, $chunk_per_page );
3941
+					$total_pages = ceil( $chunk_per_page / $per_page );
3942 3942
                     
3943
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3944
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3943
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3944
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3945 3945
                         
3946
-                        $clear = $i == 0 ? true : false;
3947
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3948
-                    }
3946
+						$clear = $i == 0 ? true : false;
3947
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3948
+					}
3949 3949
                     
3950
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3951
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3952
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3953
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3954
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3950
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3951
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3952
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3953
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3954
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3955 3955
                         
3956
-                        $file_url = $file_url_base . $chunk_file_name;
3957
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3958
-                    }
3956
+						$file_url = $file_url_base . $chunk_file_name;
3957
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3958
+					}
3959 3959
                     
3960
-                    if ( !empty($chunk_file_paths) ) {
3961
-                        $json['total'] = $items_count;
3962
-                        $json['files'] = $chunk_file_paths;
3963
-                    } else {
3964
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3965
-                    }
3966
-                }
3967
-                wp_send_json( $json );
3968
-            }
3969
-        }
3970
-        break;
3971
-        case 'export_hoods': {
3972
-            $file_url_base = geodir_path_import_export() . '/';
3973
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3974
-            $file_url = $file_url_base . $file_name . '.csv';
3975
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3976
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3960
+					if ( !empty($chunk_file_paths) ) {
3961
+						$json['total'] = $items_count;
3962
+						$json['files'] = $chunk_file_paths;
3963
+					} else {
3964
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3965
+					}
3966
+				}
3967
+				wp_send_json( $json );
3968
+			}
3969
+		}
3970
+		break;
3971
+		case 'export_hoods': {
3972
+			$file_url_base = geodir_path_import_export() . '/';
3973
+			$file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3974
+			$file_url = $file_url_base . $file_name . '.csv';
3975
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3976
+			$file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3977 3977
             
3978
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3978
+			$items_count = (int)geodir_location_imex_count_neighbourhoods();
3979 3979
             
3980
-            if ( isset( $_REQUEST['_st'] ) ) {
3981
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3982
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3983
-                $percentage = min( $percentage, 100 );
3980
+			if ( isset( $_REQUEST['_st'] ) ) {
3981
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3982
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3983
+				$percentage = min( $percentage, 100 );
3984 3984
                 
3985
-                $json['percentage'] = $percentage;
3986
-                wp_send_json( $json );
3987
-            } else {
3988
-                $chunk_file_paths = array();
3985
+				$json['percentage'] = $percentage;
3986
+				wp_send_json( $json );
3987
+			} else {
3988
+				$chunk_file_paths = array();
3989 3989
                 
3990
-                if ( !$items_count > 0 ) {
3991
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3992
-                } else {
3993
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3994
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3990
+				if ( !$items_count > 0 ) {
3991
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3992
+				} else {
3993
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3994
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3995 3995
                     
3996
-                    $j = $chunk_page_no;
3997
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3996
+					$j = $chunk_page_no;
3997
+					$chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3998 3998
                     
3999
-                    $per_page = 500;
4000
-                    $per_page = min( $per_page, $chunk_per_page );
4001
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3999
+					$per_page = 500;
4000
+					$per_page = min( $per_page, $chunk_per_page );
4001
+					$total_pages = ceil( $chunk_per_page / $per_page );
4002 4002
                     
4003
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
4004
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
4003
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
4004
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
4005 4005
                         
4006
-                        $clear = $i == 0 ? true : false;
4007
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
4008
-                    }
4006
+						$clear = $i == 0 ? true : false;
4007
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
4008
+					}
4009 4009
                     
4010
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
4011
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
4012
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
4013
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
4014
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
4010
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
4011
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
4012
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
4013
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
4014
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
4015 4015
                         
4016
-                        $file_url = $file_url_base . $chunk_file_name;
4017
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
4018
-                    }
4016
+						$file_url = $file_url_base . $chunk_file_name;
4017
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
4018
+					}
4019 4019
                     
4020
-                    if ( !empty($chunk_file_paths) ) {
4021
-                        $json['total'] = $items_count;
4022
-                        $json['files'] = $chunk_file_paths;
4023
-                    } else {
4024
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
4025
-                    }
4026
-                }
4027
-                wp_send_json( $json );
4028
-            }
4029
-        }
4030
-        break;
4031
-        case 'prepare_import':
4032
-        case 'import_cat':
4033
-        case 'import_post':
4034
-        case 'import_loc':
4035
-        case 'import_hood': {
4036
-            // WPML
4037
-            $is_wpml = geodir_is_wpml();
4038
-            if ($is_wpml) {
4039
-                global $sitepress;
4040
-                $active_lang = ICL_LANGUAGE_CODE;
4041
-            }
4042
-            // WPML
4020
+					if ( !empty($chunk_file_paths) ) {
4021
+						$json['total'] = $items_count;
4022
+						$json['files'] = $chunk_file_paths;
4023
+					} else {
4024
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
4025
+					}
4026
+				}
4027
+				wp_send_json( $json );
4028
+			}
4029
+		}
4030
+		break;
4031
+		case 'prepare_import':
4032
+		case 'import_cat':
4033
+		case 'import_post':
4034
+		case 'import_loc':
4035
+		case 'import_hood': {
4036
+			// WPML
4037
+			$is_wpml = geodir_is_wpml();
4038
+			if ($is_wpml) {
4039
+				global $sitepress;
4040
+				$active_lang = ICL_LANGUAGE_CODE;
4041
+			}
4042
+			// WPML
4043 4043
             
4044
-            ini_set( 'auto_detect_line_endings', true );
4044
+			ini_set( 'auto_detect_line_endings', true );
4045 4045
             
4046
-            $uploads = wp_upload_dir();
4047
-            $uploads_dir = $uploads['path'];
4048
-            $uploads_subdir = $uploads['subdir'];
4046
+			$uploads = wp_upload_dir();
4047
+			$uploads_dir = $uploads['path'];
4048
+			$uploads_subdir = $uploads['subdir'];
4049 4049
             
4050
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
4051
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
4050
+			$csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
4051
+			$import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
4052 4052
             
4053
-            $csv_file_arr = explode( '/', $csv_file );
4054
-            $csv_filename = end( $csv_file_arr );
4055
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
4053
+			$csv_file_arr = explode( '/', $csv_file );
4054
+			$csv_filename = end( $csv_file_arr );
4055
+			$target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
4056 4056
             
4057
-            $json['file'] = $csv_file;
4058
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
4059
-            $file = array();
4057
+			$json['file'] = $csv_file;
4058
+			$json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
4059
+			$file = array();
4060 4060
 
4061
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
4062
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
4061
+			if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
4062
+				$wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
4063 4063
                 
4064
-                if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
4065
-                    $json['error'] = NULL;
4066
-                    $json['rows'] = 0;
4064
+				if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
4065
+					$json['error'] = NULL;
4066
+					$json['rows'] = 0;
4067 4067
                     
4068
-                    $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
4069
-                    setlocale(LC_ALL, 'en_US.UTF-8');
4070
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
4071
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
4072
-                            if ( !empty( $data ) ) {
4073
-                                $file[] = $data;
4074
-                            }
4075
-                        }
4076
-                        fclose($handle);
4077
-                    }
4078
-                    setlocale(LC_ALL, $lc_all);
4068
+					$lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
4069
+					setlocale(LC_ALL, 'en_US.UTF-8');
4070
+					if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
4071
+						while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
4072
+							if ( !empty( $data ) ) {
4073
+								$file[] = $data;
4074
+							}
4075
+						}
4076
+						fclose($handle);
4077
+					}
4078
+					setlocale(LC_ALL, $lc_all);
4079 4079
 
4080
-                    $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
4080
+					$json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
4081 4081
                     
4082
-                    if (!$json['rows'] > 0) {
4083
-                        $json['error'] = __('No data found in csv file.', 'geodirectory');
4084
-                    }
4085
-                } else {
4086
-                    wp_send_json( $json );
4087
-                }
4088
-            } else {
4089
-                wp_send_json( $json );
4090
-            }
4082
+					if (!$json['rows'] > 0) {
4083
+						$json['error'] = __('No data found in csv file.', 'geodirectory');
4084
+					}
4085
+				} else {
4086
+					wp_send_json( $json );
4087
+				}
4088
+			} else {
4089
+				wp_send_json( $json );
4090
+			}
4091 4091
             
4092
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
4093
-                wp_send_json( $json );
4094
-            }
4092
+			if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
4093
+				wp_send_json( $json );
4094
+			}
4095 4095
             
4096
-            $total = $json['rows'];
4097
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
4098
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
4096
+			$total = $json['rows'];
4097
+			$limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
4098
+			$processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
4099 4099
             
4100
-            $count = $limit;
4100
+			$count = $limit;
4101 4101
             
4102
-            if ($count < $total) {
4103
-                $count = $processed + $count;
4104
-                if ($count > $total) {
4105
-                    $count = $total;
4106
-                }
4107
-            } else {
4108
-                $count = $total;
4109
-            }
4102
+			if ($count < $total) {
4103
+				$count = $processed + $count;
4104
+				if ($count > $total) {
4105
+					$count = $total;
4106
+				}
4107
+			} else {
4108
+				$count = $total;
4109
+			}
4110 4110
             
4111
-            $created = 0;
4112
-            $updated = 0;
4113
-            $skipped = 0;
4114
-            $invalid = 0;
4115
-            $invalid_addr = 0;
4116
-            $images = 0;
4111
+			$created = 0;
4112
+			$updated = 0;
4113
+			$skipped = 0;
4114
+			$invalid = 0;
4115
+			$invalid_addr = 0;
4116
+			$images = 0;
4117 4117
             
4118
-            $gd_post_info = array();
4119
-            $countpost = 0;
4118
+			$gd_post_info = array();
4119
+			$countpost = 0;
4120 4120
             
4121
-            $post_types = geodir_get_posttypes();
4121
+			$post_types = geodir_get_posttypes();
4122 4122
 
4123
-            if ( $task == 'import_cat' ) {
4124
-                if (!empty($file)) {
4125
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4123
+			if ( $task == 'import_cat' ) {
4124
+				if (!empty($file)) {
4125
+					$columns = isset($file[0]) ? $file[0] : NULL;
4126 4126
                     
4127
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4128
-                        $json['error'] = CSV_INVAILD_FILE;
4129
-                        wp_send_json( $json );
4130
-                        exit;
4131
-                    }
4127
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4128
+						$json['error'] = CSV_INVAILD_FILE;
4129
+						wp_send_json( $json );
4130
+						exit;
4131
+					}
4132 4132
                     
4133
-                    $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
4133
+					$gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
4134 4134
                     
4135
-                    for ($i = 1; $i <= $limit; $i++) {
4136
-                        $index = $processed + $i;
4135
+					for ($i = 1; $i <= $limit; $i++) {
4136
+						$index = $processed + $i;
4137 4137
                         
4138
-                        if (isset($file[$index])) {
4139
-                            $row = $file[$index];
4140
-                            $row = array_map( 'trim', $row );
4141
-                            //$row = array_map( 'utf8_encode', $row );
4138
+						if (isset($file[$index])) {
4139
+							$row = $file[$index];
4140
+							$row = array_map( 'trim', $row );
4141
+							//$row = array_map( 'utf8_encode', $row );
4142 4142
                             
4143
-                            $cat_id = '';
4144
-                            $cat_name = '';
4145
-                            $cat_slug = '';
4146
-                            $cat_posttype = '';
4147
-                            $cat_parent = '';
4148
-                            $cat_description = '';
4149
-                            $cat_schema = '';
4150
-                            $cat_top_description = '';
4151
-                            $cat_image = '';
4152
-                            $cat_icon = '';
4153
-                            $cat_language = '';
4154
-                            $cat_id_original = '';
4143
+							$cat_id = '';
4144
+							$cat_name = '';
4145
+							$cat_slug = '';
4146
+							$cat_posttype = '';
4147
+							$cat_parent = '';
4148
+							$cat_description = '';
4149
+							$cat_schema = '';
4150
+							$cat_top_description = '';
4151
+							$cat_image = '';
4152
+							$cat_icon = '';
4153
+							$cat_language = '';
4154
+							$cat_id_original = '';
4155 4155
                             
4156
-                            $c = 0;
4157
-                            foreach ($columns as $column ) {
4158
-                                if ( $column == 'cat_id' ) {
4159
-                                    $cat_id = (int)$row[$c];
4160
-                                } else if ( $column == 'cat_name' ) {
4161
-                                    $cat_name = $row[$c];
4162
-                                } else if ( $column == 'cat_slug' ) {
4163
-                                    $cat_slug = $row[$c];
4164
-                                } else if ( $column == 'cat_posttype' ) {
4165
-                                    $cat_posttype = $row[$c];
4166
-                                } else if ( $column == 'cat_parent' ) {
4167
-                                    $cat_parent = trim($row[$c]);
4168
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
4169
-                                    $cat_schema = $row[$c];
4170
-                                } else if ( $column == 'cat_description' ) {
4171
-                                    $cat_description = $row[$c];
4172
-                                } else if ( $column == 'cat_top_description' ) {
4173
-                                    $cat_top_description = $row[$c];
4174
-                                } else if ( $column == 'cat_image' ) {
4175
-                                    $cat_image = $row[$c];
4176
-                                } else if ( $column == 'cat_icon' ) {
4177
-                                    $cat_icon = $row[$c];
4178
-                                }
4179
-                                // WPML
4180
-                                if ( $is_wpml ) {
4181
-                                    if ( $column == 'cat_language' ) {
4182
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
4183
-                                    } else if ( $column == 'cat_id_original' ) {
4184
-                                        $cat_id_original = (int)$row[$c];
4185
-                                    }
4186
-                                }
4187
-                                // WPML
4188
-                                $c++;
4189
-                            }
4156
+							$c = 0;
4157
+							foreach ($columns as $column ) {
4158
+								if ( $column == 'cat_id' ) {
4159
+									$cat_id = (int)$row[$c];
4160
+								} else if ( $column == 'cat_name' ) {
4161
+									$cat_name = $row[$c];
4162
+								} else if ( $column == 'cat_slug' ) {
4163
+									$cat_slug = $row[$c];
4164
+								} else if ( $column == 'cat_posttype' ) {
4165
+									$cat_posttype = $row[$c];
4166
+								} else if ( $column == 'cat_parent' ) {
4167
+									$cat_parent = trim($row[$c]);
4168
+								} else if ( $column == 'cat_schema' && $row[$c] != '' ) {
4169
+									$cat_schema = $row[$c];
4170
+								} else if ( $column == 'cat_description' ) {
4171
+									$cat_description = $row[$c];
4172
+								} else if ( $column == 'cat_top_description' ) {
4173
+									$cat_top_description = $row[$c];
4174
+								} else if ( $column == 'cat_image' ) {
4175
+									$cat_image = $row[$c];
4176
+								} else if ( $column == 'cat_icon' ) {
4177
+									$cat_icon = $row[$c];
4178
+								}
4179
+								// WPML
4180
+								if ( $is_wpml ) {
4181
+									if ( $column == 'cat_language' ) {
4182
+										$cat_language = geodir_strtolower( trim( $row[$c] ) );
4183
+									} else if ( $column == 'cat_id_original' ) {
4184
+										$cat_id_original = (int)$row[$c];
4185
+									}
4186
+								}
4187
+								// WPML
4188
+								$c++;
4189
+							}
4190 4190
                             
4191
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
4192
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4191
+							if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
4192
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4193 4193
                                 
4194
-                                $invalid++;
4195
-                                continue;
4196
-                            }
4194
+								$invalid++;
4195
+								continue;
4196
+							}
4197 4197
                             
4198
-                            // WPML
4199
-                            if ($is_wpml && $cat_language != '') {
4200
-                                $sitepress->switch_lang($cat_language, true);
4201
-                            }
4202
-                            // WPML
4198
+							// WPML
4199
+							if ($is_wpml && $cat_language != '') {
4200
+								$sitepress->switch_lang($cat_language, true);
4201
+							}
4202
+							// WPML
4203 4203
                                                         
4204
-                            $term_data = array();
4205
-                            $term_data['name'] = $cat_name;
4206
-                            $term_data['slug'] = $cat_slug;
4207
-                            $term_data['description'] = $cat_description;
4208
-                            $term_data['cat_schema'] = $cat_schema;
4209
-                            $term_data['top_description'] = $cat_top_description;
4210
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
4211
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
4204
+							$term_data = array();
4205
+							$term_data['name'] = $cat_name;
4206
+							$term_data['slug'] = $cat_slug;
4207
+							$term_data['description'] = $cat_description;
4208
+							$term_data['cat_schema'] = $cat_schema;
4209
+							$term_data['top_description'] = $cat_top_description;
4210
+							$term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
4211
+							$term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
4212 4212
                             
4213
-                            //$term_data = array_map( 'utf8_encode', $term_data );
4213
+							//$term_data = array_map( 'utf8_encode', $term_data );
4214 4214
                             
4215
-                            $taxonomy = $cat_posttype . 'category';
4215
+							$taxonomy = $cat_posttype . 'category';
4216 4216
                             
4217
-                            $term_data['taxonomy'] = $taxonomy;
4217
+							$term_data['taxonomy'] = $taxonomy;
4218 4218
 
4219
-                            $term_parent_id = 0;
4220
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
4221
-                                $term_parent = '';
4219
+							$term_parent_id = 0;
4220
+							if ($cat_parent != "" || (int)$cat_parent > 0) {
4221
+								$term_parent = '';
4222 4222
                                 
4223
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
4224
-                                    //
4225
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
4226
-                                    //
4227
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
4228
-                                    //
4229
-                                } else {
4230
-                                    $term_parent_data = array();
4231
-                                    $term_parent_data['name'] = $cat_parent;
4232
-                                    //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
4233
-                                    $term_parent_data['taxonomy'] = $taxonomy;
4223
+								if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
4224
+									//
4225
+								} else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
4226
+									//
4227
+								} else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
4228
+									//
4229
+								} else {
4230
+									$term_parent_data = array();
4231
+									$term_parent_data['name'] = $cat_parent;
4232
+									//$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
4233
+									$term_parent_data['taxonomy'] = $taxonomy;
4234 4234
                                     
4235
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
4236
-                                }
4235
+									$term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
4236
+								}
4237 4237
                                 
4238
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
4239
-                                    $term_parent_id = (int)$term_parent->term_id;
4240
-                                }
4241
-                            }
4242
-                            $term_data['parent'] = (int)$term_parent_id;
4238
+								if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
4239
+									$term_parent_id = (int)$term_parent->term_id;
4240
+								}
4241
+							}
4242
+							$term_data['parent'] = (int)$term_parent_id;
4243 4243
 
4244
-                            $term_id = NULL;
4245
-                            if ( $import_choice == 'update' ) {
4246
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
4247
-                                    $term_data['term_id'] = $term['term_id'];
4244
+							$term_id = NULL;
4245
+							if ( $import_choice == 'update' ) {
4246
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
4247
+									$term_data['term_id'] = $term['term_id'];
4248 4248
                                     
4249
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
4250
-                                        $updated++;
4251
-                                    } else {
4252
-                                        $invalid++;
4253
-                                        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' ) );
4254
-                                    }
4255
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4256
-                                    $term_data['term_id'] = $term['term_id'];
4249
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
4250
+										$updated++;
4251
+									} else {
4252
+										$invalid++;
4253
+										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' ) );
4254
+									}
4255
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4256
+									$term_data['term_id'] = $term['term_id'];
4257 4257
                                     
4258
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
4259
-                                        $updated++;
4260
-                                    } else {
4261
-                                        $invalid++;
4262
-                                        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' ) );
4263
-                                    }
4264
-                                } else {
4265
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
4266
-                                        $created++;
4267
-                                    } else {
4268
-                                        $invalid++;
4269
-                                        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' ) );
4270
-                                    }
4271
-                                }
4272
-                            } else if ( $import_choice == 'skip' ) {
4273
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
4274
-                                    $skipped++;
4275
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4276
-                                    $skipped++;
4277
-                                } else {
4278
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
4279
-                                        $created++;
4280
-                                    } else {
4281
-                                        $invalid++;
4282
-                                        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' ) );
4283
-                                    }
4284
-                                }
4285
-                            } else {
4286
-                                $invalid++;
4287
-                                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' ) );
4288
-                            }
4258
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
4259
+										$updated++;
4260
+									} else {
4261
+										$invalid++;
4262
+										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' ) );
4263
+									}
4264
+								} else {
4265
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
4266
+										$created++;
4267
+									} else {
4268
+										$invalid++;
4269
+										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' ) );
4270
+									}
4271
+								}
4272
+							} else if ( $import_choice == 'skip' ) {
4273
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
4274
+									$skipped++;
4275
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4276
+									$skipped++;
4277
+								} else {
4278
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
4279
+										$created++;
4280
+									} else {
4281
+										$invalid++;
4282
+										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' ) );
4283
+									}
4284
+								}
4285
+							} else {
4286
+								$invalid++;
4287
+								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' ) );
4288
+							}
4289 4289
                             
4290
-                            if ( $term_id ) {
4291
-                                // WPML
4292
-                                if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
4293
-                                    $wpml_element_type = 'tax_' . $taxonomy;
4294
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
4295
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4296
-
4297
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
4290
+							if ( $term_id ) {
4291
+								// WPML
4292
+								if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
4293
+									$wpml_element_type = 'tax_' . $taxonomy;
4294
+									$source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
4295
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4296
+
4297
+									$trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
4298 4298
                                     
4299
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
4300
-                                }
4301
-                                // WPML
4299
+									$sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
4300
+								}
4301
+								// WPML
4302 4302
                                 
4303
-                                if ( isset( $term_data['top_description'] ) ) {
4304
-                                    update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
4305
-                                }
4303
+								if ( isset( $term_data['top_description'] ) ) {
4304
+									update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
4305
+								}
4306 4306
                                 
4307
-                                if ( isset( $term_data['cat_schema'] ) ) {
4308
-                                    update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
4309
-                                }
4307
+								if ( isset( $term_data['cat_schema'] ) ) {
4308
+									update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
4309
+								}
4310 4310
             
4311
-                                $attachment = false;
4312
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
4313
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
4314
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
4311
+								$attachment = false;
4312
+								if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
4313
+									$cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
4314
+									$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
4315 4315
                                     
4316
-                                    if ( basename($cat_image) != $term_data['image'] ) {
4317
-                                        $attachment = true;
4318
-                                        update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4319
-                                    }
4320
-                                }
4316
+									if ( basename($cat_image) != $term_data['image'] ) {
4317
+										$attachment = true;
4318
+										update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4319
+									}
4320
+								}
4321 4321
                                 
4322
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4323
-                                    $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4324
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4322
+								if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4323
+									$cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4324
+									$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4325 4325
                                         
4326
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
4327
-                                        $attachment = true;
4328
-                                        update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4329
-                                    }
4330
-                                }
4326
+									if ( basename($cat_icon) != $term_data['icon'] ) {
4327
+										$attachment = true;
4328
+										update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4329
+									}
4330
+								}
4331 4331
                                 
4332
-                                if ( $attachment ) {
4333
-                                    $images++;
4334
-                                }
4335
-                            }
4332
+								if ( $attachment ) {
4333
+									$images++;
4334
+								}
4335
+							}
4336 4336
                             
4337
-                            // WPML
4338
-                            if ($is_wpml && $cat_language != '') {
4339
-                                $sitepress->switch_lang($active_lang, true);
4340
-                            }
4341
-                            // WPML
4342
-                        }
4343
-                    }
4344
-                }
4337
+							// WPML
4338
+							if ($is_wpml && $cat_language != '') {
4339
+								$sitepress->switch_lang($active_lang, true);
4340
+							}
4341
+							// WPML
4342
+						}
4343
+					}
4344
+				}
4345 4345
                 
4346
-                $json = array();
4347
-                $json['processed'] = $limit;
4348
-                $json['created'] = $created;
4349
-                $json['updated'] = $updated;
4350
-                $json['skipped'] = $skipped;
4351
-                $json['invalid'] = $invalid;
4352
-                $json['images'] = $images;
4346
+				$json = array();
4347
+				$json['processed'] = $limit;
4348
+				$json['created'] = $created;
4349
+				$json['updated'] = $updated;
4350
+				$json['skipped'] = $skipped;
4351
+				$json['invalid'] = $invalid;
4352
+				$json['images'] = $images;
4353 4353
                 
4354
-                wp_send_json( $json );
4355
-                exit;
4356
-            } else if ( $task == 'import_post' ) {
4357
-                //run some stuff to make the import quicker
4358
-                wp_defer_term_counting( true );
4359
-                wp_defer_comment_counting( true );
4360
-                $wpdb->query( 'SET autocommit = 0;' );
4361
-
4362
-                //remove_all_actions('publish_post');
4363
-                //remove_all_actions('transition_post_status');
4364
-                //remove_all_actions('publish_future_post');
4365
-
4366
-                if (!empty($file)) {
4367
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4368
-                    $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4369
-                    $default_status = 'publish';
4370
-                    $current_date = date_i18n( 'Y-m-d', time() );
4354
+				wp_send_json( $json );
4355
+				exit;
4356
+			} else if ( $task == 'import_post' ) {
4357
+				//run some stuff to make the import quicker
4358
+				wp_defer_term_counting( true );
4359
+				wp_defer_comment_counting( true );
4360
+				$wpdb->query( 'SET autocommit = 0;' );
4361
+
4362
+				//remove_all_actions('publish_post');
4363
+				//remove_all_actions('transition_post_status');
4364
+				//remove_all_actions('publish_future_post');
4365
+
4366
+				if (!empty($file)) {
4367
+					$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4368
+					$wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4369
+					$default_status = 'publish';
4370
+					$current_date = date_i18n( 'Y-m-d', time() );
4371 4371
                     
4372
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4372
+					$columns = isset($file[0]) ? $file[0] : NULL;
4373 4373
                     
4374
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4375
-                        $json['error'] = CSV_INVAILD_FILE;
4376
-                        wp_send_json( $json );
4377
-                        exit;
4378
-                    }
4374
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4375
+						$json['error'] = CSV_INVAILD_FILE;
4376
+						wp_send_json( $json );
4377
+						exit;
4378
+					}
4379 4379
 
4380
-                    $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4381
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4382
-                    $processed_actual = 0;
4383
-                    for ($i = 1; $i <= $limit; $i++) {
4384
-                        $index = $processed + $i;
4385
-                        $gd_post = array();
4380
+					$gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4381
+					$wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4382
+					$processed_actual = 0;
4383
+					for ($i = 1; $i <= $limit; $i++) {
4384
+						$index = $processed + $i;
4385
+						$gd_post = array();
4386 4386
                         
4387
-                        if (isset($file[$index])) {
4388
-                            $processed_actual++;
4389
-                            $row = $file[$index];
4390
-                            $row = array_map( 'trim', $row );
4391
-                            //$row = array_map( 'utf8_encode', $row );
4392
-                            $row = array_map( 'addslashes_gpc', $row );
4387
+						if (isset($file[$index])) {
4388
+							$processed_actual++;
4389
+							$row = $file[$index];
4390
+							$row = array_map( 'trim', $row );
4391
+							//$row = array_map( 'utf8_encode', $row );
4392
+							$row = array_map( 'addslashes_gpc', $row );
4393 4393
                             
4394
-                            $post_id = '';
4395
-                            $post_title = '';
4396
-                            $post_author = '';
4397
-                            $post_content = '';
4398
-                            $post_category_arr = array();
4399
-                            $default_category = '';
4400
-                            $post_tags = array();
4401
-                            $post_type = '';
4402
-                            $post_status = '';
4403
-                            $geodir_video = '';
4404
-                            $post_address = '';
4405
-                            $post_city = '';
4406
-                            $post_region = '';
4407
-                            $post_country = '';
4408
-                            $post_zip = '';
4409
-                            $post_latitude = '';
4410
-                            $post_longitude = '';
4411
-                            $post_neighbourhood = '';
4412
-                            $neighbourhood_latitude = '';
4413
-                            $neighbourhood_longitude = '';
4414
-                            $geodir_timing = '';
4415
-                            $geodir_contact = '';
4416
-                            $geodir_email = '';
4417
-                            $geodir_website = '';
4418
-                            $geodir_twitter = '';
4419
-                            $geodir_facebook = '';
4420
-                            $geodir_twitter = '';
4421
-                            $post_images = array();
4394
+							$post_id = '';
4395
+							$post_title = '';
4396
+							$post_author = '';
4397
+							$post_content = '';
4398
+							$post_category_arr = array();
4399
+							$default_category = '';
4400
+							$post_tags = array();
4401
+							$post_type = '';
4402
+							$post_status = '';
4403
+							$geodir_video = '';
4404
+							$post_address = '';
4405
+							$post_city = '';
4406
+							$post_region = '';
4407
+							$post_country = '';
4408
+							$post_zip = '';
4409
+							$post_latitude = '';
4410
+							$post_longitude = '';
4411
+							$post_neighbourhood = '';
4412
+							$neighbourhood_latitude = '';
4413
+							$neighbourhood_longitude = '';
4414
+							$geodir_timing = '';
4415
+							$geodir_contact = '';
4416
+							$geodir_email = '';
4417
+							$geodir_website = '';
4418
+							$geodir_twitter = '';
4419
+							$geodir_facebook = '';
4420
+							$geodir_twitter = '';
4421
+							$post_images = array();
4422 4422
                             
4423
-                            $expire_date = 'Never';
4423
+							$expire_date = 'Never';
4424 4424
                             
4425
-                            $language = '';
4426
-                            $original_post_id = '';
4425
+							$language = '';
4426
+							$original_post_id = '';
4427 4427
                             
4428
-                            $c = 0;
4429
-                            foreach ($columns as $column ) {
4430
-                                $gd_post[$column] = $row[$c];
4428
+							$c = 0;
4429
+							foreach ($columns as $column ) {
4430
+								$gd_post[$column] = $row[$c];
4431 4431
                                 
4432
-                                if ( $column == 'post_id' ) {
4433
-                                    $post_id = $row[$c];
4434
-                                } else if ( $column == 'post_title' ) {
4435
-                                    $post_title = sanitize_text_field($row[$c]);
4436
-                                } else if ( $column == 'post_author' ) {
4437
-                                    $post_author = $row[$c];
4438
-                                } else if ( $column == 'post_content' ) {
4439
-                                    $post_content = $row[$c];
4440
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4441
-                                    $post_category_arr = explode( ',', $row[$c] );
4442
-                                } else if ( $column == 'default_category' ) {
4443
-                                    $default_category = wp_kses_normalize_entities($row[$c]);
4444
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4445
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4446
-                                } else if ( $column == 'post_type' ) {
4447
-                                    $post_type = $row[$c];
4448
-                                } else if ( $column == 'post_status' ) {
4449
-                                    $post_status = sanitize_key( $row[$c] );
4450
-                                } else if ( $column == 'is_featured' ) {
4451
-                                    $is_featured = (int)$row[$c];
4452
-                                } else if ( $column == 'geodir_video' ) {
4453
-                                    $geodir_video = $row[$c];
4454
-                                } else if ( $column == 'post_address' ) {
4455
-                                    $post_address = sanitize_text_field($row[$c]);
4456
-                                } else if ( $column == 'post_city' ) {
4457
-                                    $post_city = sanitize_text_field($row[$c]);
4458
-                                } else if ( $column == 'post_region' ) {
4459
-                                    $post_region = sanitize_text_field($row[$c]);
4460
-                                } else if ( $column == 'post_country' ) {
4461
-                                    $post_country = sanitize_text_field($row[$c]);
4462
-                                } else if ( $column == 'post_zip' ) {
4463
-                                    $post_zip = sanitize_text_field($row[$c]);
4464
-                                } else if ( $column == 'post_latitude' ) {
4465
-                                    $post_latitude = sanitize_text_field($row[$c]);
4466
-                                } else if ( $column == 'post_longitude' ) {
4467
-                                    $post_longitude = sanitize_text_field($row[$c]);
4468
-                                } else if ( $column == 'post_neighbourhood' ) {
4469
-                                    $post_neighbourhood = sanitize_text_field($row[$c]);
4470
-                                    unset($gd_post[$column]);
4471
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4472
-                                    $neighbourhood_latitude = sanitize_text_field($row[$c]);
4473
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4474
-                                    $neighbourhood_longitude = sanitize_text_field($row[$c]);
4475
-                                } else if ( $column == 'geodir_timing' ) {
4476
-                                    $geodir_timing = sanitize_text_field($row[$c]);
4477
-                                } else if ( $column == 'geodir_contact' ) {
4478
-                                    $geodir_contact = sanitize_text_field($row[$c]);
4479
-                                } else if ( $column == 'geodir_email' ) {
4480
-                                    $geodir_email = sanitize_email($row[$c]);
4481
-                                } else if ( $column == 'geodir_website' ) {
4482
-                                    $geodir_website = sanitize_text_field($row[$c]);
4483
-                                } else if ( $column == 'geodir_twitter' ) {
4484
-                                    $geodir_twitter = sanitize_text_field($row[$c]);
4485
-                                } else if ( $column == 'geodir_facebook' ) {
4486
-                                    $geodir_facebook = sanitize_text_field($row[$c]);
4487
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4488
-                                    $post_images[] = $row[$c];
4489
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4490
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4491
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4492
-                                    $row[$c] = str_replace('/', '-', $row[$c]);
4493
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4494
-                                }
4495
-                                // WPML
4496
-                                if ($is_wpml) {
4497
-                                    if ($column == 'language') {
4498
-                                        $language = geodir_strtolower(trim($row[$c]));
4499
-                                    } else if ($column == 'original_post_id') {
4500
-                                        $original_post_id = (int)$row[$c];
4501
-                                    }
4502
-                                }
4503
-                                // WPML
4504
-                                $c++;
4505
-                            }
4506
-                            // listing claimed or not
4507
-                            if ($is_claim_active && isset($gd_post['claimed'])) {
4508
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4509
-                            }
4432
+								if ( $column == 'post_id' ) {
4433
+									$post_id = $row[$c];
4434
+								} else if ( $column == 'post_title' ) {
4435
+									$post_title = sanitize_text_field($row[$c]);
4436
+								} else if ( $column == 'post_author' ) {
4437
+									$post_author = $row[$c];
4438
+								} else if ( $column == 'post_content' ) {
4439
+									$post_content = $row[$c];
4440
+								} else if ( $column == 'post_category' && $row[$c] != '' ) {
4441
+									$post_category_arr = explode( ',', $row[$c] );
4442
+								} else if ( $column == 'default_category' ) {
4443
+									$default_category = wp_kses_normalize_entities($row[$c]);
4444
+								} else if ( $column == 'post_tags' && $row[$c] != '' ) {
4445
+									$post_tags = explode( ',', sanitize_text_field($row[$c]) );
4446
+								} else if ( $column == 'post_type' ) {
4447
+									$post_type = $row[$c];
4448
+								} else if ( $column == 'post_status' ) {
4449
+									$post_status = sanitize_key( $row[$c] );
4450
+								} else if ( $column == 'is_featured' ) {
4451
+									$is_featured = (int)$row[$c];
4452
+								} else if ( $column == 'geodir_video' ) {
4453
+									$geodir_video = $row[$c];
4454
+								} else if ( $column == 'post_address' ) {
4455
+									$post_address = sanitize_text_field($row[$c]);
4456
+								} else if ( $column == 'post_city' ) {
4457
+									$post_city = sanitize_text_field($row[$c]);
4458
+								} else if ( $column == 'post_region' ) {
4459
+									$post_region = sanitize_text_field($row[$c]);
4460
+								} else if ( $column == 'post_country' ) {
4461
+									$post_country = sanitize_text_field($row[$c]);
4462
+								} else if ( $column == 'post_zip' ) {
4463
+									$post_zip = sanitize_text_field($row[$c]);
4464
+								} else if ( $column == 'post_latitude' ) {
4465
+									$post_latitude = sanitize_text_field($row[$c]);
4466
+								} else if ( $column == 'post_longitude' ) {
4467
+									$post_longitude = sanitize_text_field($row[$c]);
4468
+								} else if ( $column == 'post_neighbourhood' ) {
4469
+									$post_neighbourhood = sanitize_text_field($row[$c]);
4470
+									unset($gd_post[$column]);
4471
+								} else if ( $column == 'neighbourhood_latitude' ) {
4472
+									$neighbourhood_latitude = sanitize_text_field($row[$c]);
4473
+								} else if ( $column == 'neighbourhood_longitude' ) {
4474
+									$neighbourhood_longitude = sanitize_text_field($row[$c]);
4475
+								} else if ( $column == 'geodir_timing' ) {
4476
+									$geodir_timing = sanitize_text_field($row[$c]);
4477
+								} else if ( $column == 'geodir_contact' ) {
4478
+									$geodir_contact = sanitize_text_field($row[$c]);
4479
+								} else if ( $column == 'geodir_email' ) {
4480
+									$geodir_email = sanitize_email($row[$c]);
4481
+								} else if ( $column == 'geodir_website' ) {
4482
+									$geodir_website = sanitize_text_field($row[$c]);
4483
+								} else if ( $column == 'geodir_twitter' ) {
4484
+									$geodir_twitter = sanitize_text_field($row[$c]);
4485
+								} else if ( $column == 'geodir_facebook' ) {
4486
+									$geodir_facebook = sanitize_text_field($row[$c]);
4487
+								} else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4488
+									$post_images[] = $row[$c];
4489
+								} else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4490
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4491
+								} else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4492
+									$row[$c] = str_replace('/', '-', $row[$c]);
4493
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4494
+								}
4495
+								// WPML
4496
+								if ($is_wpml) {
4497
+									if ($column == 'language') {
4498
+										$language = geodir_strtolower(trim($row[$c]));
4499
+									} else if ($column == 'original_post_id') {
4500
+										$original_post_id = (int)$row[$c];
4501
+									}
4502
+								}
4503
+								// WPML
4504
+								$c++;
4505
+							}
4506
+							// listing claimed or not
4507
+							if ($is_claim_active && isset($gd_post['claimed'])) {
4508
+								$gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4509
+							}
4510 4510
                             
4511
-                            // WPML
4512
-                            if ($is_wpml && $language != '') {
4513
-                                $sitepress->switch_lang($language, true);
4514
-                            }
4515
-                            // WPML
4511
+							// WPML
4512
+							if ($is_wpml && $language != '') {
4513
+								$sitepress->switch_lang($language, true);
4514
+							}
4515
+							// WPML
4516 4516
 
4517
-                            $gd_post['IMAGE'] = $post_images;
4517
+							$gd_post['IMAGE'] = $post_images;
4518 4518
                             
4519
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4520
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4519
+							$post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4520
+							$post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4521 4521
                                                                                                                 
4522
-                            $valid = true;
4522
+							$valid = true;
4523 4523
                             
4524
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4525
-                                $invalid++;
4526
-                                $valid = false;
4527
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4528
-                            }
4524
+							if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4525
+								$invalid++;
4526
+								$valid = false;
4527
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4528
+							}
4529 4529
                             
4530
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4531
-                            if ( $location_allowed ) {
4532
-                                $location_result = geodir_get_default_location();
4533
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4534
-                                    $invalid_addr++;
4535
-                                    $valid = false;
4536
-                                    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' ) );
4537
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4538
-                                    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 ) ) ) {
4539
-                                        $invalid_addr++;
4540
-                                        $valid = false;
4541
-                                        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' ) );
4542
-                                    } else {
4543
-                                        if (!$location_manager) {
4544
-                                            $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.
4545
-                                        }
4546
-                                    }
4547
-                                }
4548
-                            }
4530
+							$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4531
+							if ( $location_allowed ) {
4532
+								$location_result = geodir_get_default_location();
4533
+								if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4534
+									$invalid_addr++;
4535
+									$valid = false;
4536
+									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' ) );
4537
+								} else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4538
+									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 ) ) ) {
4539
+										$invalid_addr++;
4540
+										$valid = false;
4541
+										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' ) );
4542
+									} else {
4543
+										if (!$location_manager) {
4544
+											$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.
4545
+										}
4546
+									}
4547
+								}
4548
+							}
4549 4549
                             
4550
-                            if ( !$valid ) {
4551
-                                continue;
4552
-                            }
4550
+							if ( !$valid ) {
4551
+								continue;
4552
+							}
4553 4553
 
4554
-                            $cat_taxonomy = $post_type . 'category';
4555
-                            $tags_taxonomy = $post_type . '_tags';
4554
+							$cat_taxonomy = $post_type . 'category';
4555
+							$tags_taxonomy = $post_type . '_tags';
4556 4556
                             
4557
-                            if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4558
-                                $post_category_arr = array_merge(array($default_category), $post_category_arr);
4559
-                            }
4557
+							if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4558
+								$post_category_arr = array_merge(array($default_category), $post_category_arr);
4559
+							}
4560 4560
 
4561
-                            $post_category = array();
4562
-                            $default_category_id = NULL;
4563
-                            if ( !empty( $post_category_arr ) ) {
4564
-                                foreach ( $post_category_arr as $value ) {
4565
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4561
+							$post_category = array();
4562
+							$default_category_id = NULL;
4563
+							if ( !empty( $post_category_arr ) ) {
4564
+								foreach ( $post_category_arr as $value ) {
4565
+									$category_name = wp_kses_normalize_entities( trim( $value ) );
4566 4566
                                     
4567
-                                    if ( $category_name != '' ) {
4568
-                                        $term_category = array();
4567
+									if ( $category_name != '' ) {
4568
+										$term_category = array();
4569 4569
                                         
4570
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4571
-                                            $term_category = $term;
4572
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4573
-                                            $term_category = $term;
4574
-                                        } else {
4575
-                                            $term_data = array();
4576
-                                            $term_data['name'] = $category_name;
4577
-                                            $term_data['taxonomy'] = $cat_taxonomy;
4570
+										if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4571
+											$term_category = $term;
4572
+										} else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4573
+											$term_category = $term;
4574
+										} else {
4575
+											$term_data = array();
4576
+											$term_data['name'] = $category_name;
4577
+											$term_data['taxonomy'] = $cat_taxonomy;
4578 4578
                                             
4579
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4580
-                                            if ( $term_id ) {
4581
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4582
-                                            }
4583
-                                        }
4579
+											$term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4580
+											if ( $term_id ) {
4581
+												$term_category = get_term( $term_id, $cat_taxonomy );
4582
+											}
4583
+										}
4584 4584
                                         
4585
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4586
-                                            $post_category[] = intval($term_category->term_id);
4585
+										if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4586
+											$post_category[] = intval($term_category->term_id);
4587 4587
                                             
4588
-                                            if ($category_name == $default_category) {
4589
-                                                $default_category_id = intval($term_category->term_id);
4590
-                                            }
4591
-                                        }
4592
-                                    }
4593
-                                }
4594
-                            }
4588
+											if ($category_name == $default_category) {
4589
+												$default_category_id = intval($term_category->term_id);
4590
+											}
4591
+										}
4592
+									}
4593
+								}
4594
+							}
4595 4595
 
4596
-                            $save_post = array();
4597
-                            $save_post['post_title'] = $post_title;
4598
-                            $save_post['post_content'] = $post_content;
4599
-                            $save_post['post_type'] = $post_type;
4600
-                            $save_post['post_author'] = $post_author;
4601
-                            $save_post['post_status'] = $post_status;
4602
-                            $save_post['post_category'] = $post_category;
4603
-                            $save_post['post_tags'] = $post_tags;
4604
-
4605
-                            $saved_post_id = NULL;
4606
-                            if ( $import_choice == 'update' ) {
4607
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4596
+							$save_post = array();
4597
+							$save_post['post_title'] = $post_title;
4598
+							$save_post['post_content'] = $post_content;
4599
+							$save_post['post_type'] = $post_type;
4600
+							$save_post['post_author'] = $post_author;
4601
+							$save_post['post_status'] = $post_status;
4602
+							$save_post['post_category'] = $post_category;
4603
+							$save_post['post_tags'] = $post_tags;
4604
+
4605
+							$saved_post_id = NULL;
4606
+							if ( $import_choice == 'update' ) {
4607
+								$gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4608 4608
                                 
4609
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4610
-                                    $save_post['ID'] = $post_id;
4609
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4610
+									$save_post['ID'] = $post_id;
4611 4611
                                     
4612
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4613
-                                        if ( is_wp_error( $saved_post_id ) ) {
4614
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4615
-                                            $saved_post_id = 0;
4616
-                                        } else {
4617
-                                            $saved_post_id = $post_id;
4618
-                                            $updated++;
4619
-                                        }
4620
-                                    }
4621
-                                } else {
4622
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4623
-                                        if ( is_wp_error( $saved_post_id ) ) {
4624
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4625
-                                            $saved_post_id = 0;
4626
-                                        } else {
4627
-                                            $created++;
4628
-                                        }
4629
-                                    }
4630
-                                }
4612
+									if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4613
+										if ( is_wp_error( $saved_post_id ) ) {
4614
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4615
+											$saved_post_id = 0;
4616
+										} else {
4617
+											$saved_post_id = $post_id;
4618
+											$updated++;
4619
+										}
4620
+									}
4621
+								} else {
4622
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4623
+										if ( is_wp_error( $saved_post_id ) ) {
4624
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4625
+											$saved_post_id = 0;
4626
+										} else {
4627
+											$created++;
4628
+										}
4629
+									}
4630
+								}
4631 4631
                                 
4632
-                                if ( !$saved_post_id > 0 ) {
4633
-                                    $invalid++;
4634
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4635
-                                }
4636
-                            } else if ( $import_choice == 'skip' ) {
4637
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4638
-                                    $skipped++;	
4639
-                                } else {
4640
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4641
-                                        if ( is_wp_error( $saved_post_id ) ) {
4642
-                                            $invalid++;
4632
+								if ( !$saved_post_id > 0 ) {
4633
+									$invalid++;
4634
+									geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4635
+								}
4636
+							} else if ( $import_choice == 'skip' ) {
4637
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4638
+									$skipped++;	
4639
+								} else {
4640
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4641
+										if ( is_wp_error( $saved_post_id ) ) {
4642
+											$invalid++;
4643 4643
                                             
4644
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4645
-                                            $saved_post_id = 0;
4646
-                                        } else {
4647
-                                            $created++;
4648
-                                        }
4649
-                                    } else {
4650
-                                        $invalid++;
4644
+											geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4645
+											$saved_post_id = 0;
4646
+										} else {
4647
+											$created++;
4648
+										}
4649
+									} else {
4650
+										$invalid++;
4651 4651
                                         
4652
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4653
-                                    }
4654
-                                }
4655
-                            } else {
4656
-                                $invalid++;
4652
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4653
+									}
4654
+								}
4655
+							} else {
4656
+								$invalid++;
4657 4657
                                 
4658
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4659
-                            }
4658
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4659
+							}
4660 4660
 
4661
-                            if ( (int)$saved_post_id > 0 ) {
4662
-                                // WPML
4663
-                                if ($is_wpml && $original_post_id > 0 && $language != '') {
4664
-                                    $wpml_post_type = 'post_' . $post_type;
4665
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4666
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4661
+							if ( (int)$saved_post_id > 0 ) {
4662
+								// WPML
4663
+								if ($is_wpml && $original_post_id > 0 && $language != '') {
4664
+									$wpml_post_type = 'post_' . $post_type;
4665
+									$source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4666
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4667 4667
 
4668
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4668
+									$trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4669 4669
                                     
4670
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4671
-                                }
4672
-                                // WPML
4673
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4670
+									$sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4671
+								}
4672
+								// WPML
4673
+								$gd_post_info = geodir_get_post_info( $saved_post_id );
4674 4674
                                 
4675
-                                $gd_post['post_id'] = $saved_post_id;
4676
-                                $gd_post['ID'] = $saved_post_id;
4677
-                                $gd_post['post_tags'] = $post_tags;
4678
-                                $gd_post['post_title'] = $post_title;
4679
-                                $gd_post['post_status'] = $post_status;
4680
-                                $gd_post['submit_time'] = time();
4681
-                                $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4675
+								$gd_post['post_id'] = $saved_post_id;
4676
+								$gd_post['ID'] = $saved_post_id;
4677
+								$gd_post['post_tags'] = $post_tags;
4678
+								$gd_post['post_title'] = $post_title;
4679
+								$gd_post['post_status'] = $post_status;
4680
+								$gd_post['submit_time'] = time();
4681
+								$gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4682 4682
                                                     
4683
-                                // post location
4684
-                                $post_location_id = 0;
4685
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4686
-                                    $gd_post['post_neighbourhood'] = '';
4683
+								// post location
4684
+								$post_location_id = 0;
4685
+								if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4686
+									$gd_post['post_neighbourhood'] = '';
4687 4687
                                     
4688
-                                    $post_location_info = array(
4689
-                                                                'city' => $post_city,
4690
-                                                                'region' => $post_region,
4691
-                                                                'country' => $post_country,
4692
-                                                                'geo_lat' => $post_latitude,
4693
-                                                                'geo_lng' => $post_longitude
4694
-                                                            );
4695
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4696
-                                        $post_location_id = $location_id;
4697
-                                    }
4688
+									$post_location_info = array(
4689
+																'city' => $post_city,
4690
+																'region' => $post_region,
4691
+																'country' => $post_country,
4692
+																'geo_lat' => $post_latitude,
4693
+																'geo_lng' => $post_longitude
4694
+															);
4695
+									if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4696
+										$post_location_id = $location_id;
4697
+									}
4698 4698
                                     
4699
-                                    if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4700
-                                        $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4699
+									if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4700
+										$neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4701 4701
 
4702
-                                        $hood_data = array();
4703
-                                        $hood_data['hood_location_id'] = $post_location_id;
4704
-                                        $hood_data['hood_name'] = $post_neighbourhood;
4702
+										$hood_data = array();
4703
+										$hood_data['hood_location_id'] = $post_location_id;
4704
+										$hood_data['hood_name'] = $post_neighbourhood;
4705 4705
                                         
4706
-                                        if (!empty($neighbourhood_info)) {
4707
-                                            $hood_data['hood_id'] = $neighbourhood_info->hood_id;
4708
-                                            $hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4706
+										if (!empty($neighbourhood_info)) {
4707
+											$hood_data['hood_id'] = $neighbourhood_info->hood_id;
4708
+											$hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4709 4709
                                             
4710
-                                            if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4711
-                                                $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4712
-                                                $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4713
-                                            }
4714
-                                        }
4710
+											if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4711
+												$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4712
+												$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4713
+											}
4714
+										}
4715 4715
                                         
4716
-                                        if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4717
-                                            $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4718
-                                            $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4719
-                                        }
4716
+										if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4717
+											$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4718
+											$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4719
+										}
4720 4720
                                         
4721
-                                        $hood_data['hood_latitude'] = $post_latitude;
4722
-                                        $hood_data['hood_longitude'] = $post_longitude;
4721
+										$hood_data['hood_latitude'] = $post_latitude;
4722
+										$hood_data['hood_longitude'] = $post_longitude;
4723 4723
 
4724
-                                        $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4725
-                                        if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4726
-                                            $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4727
-                                        }
4728
-                                    }
4729
-                                }
4730
-                                $gd_post['post_location_id'] = $post_location_id;
4724
+										$neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4725
+										if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4726
+											$gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4727
+										}
4728
+									}
4729
+								}
4730
+								$gd_post['post_location_id'] = $post_location_id;
4731 4731
                                 
4732
-                                // post package info
4733
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4734
-                                if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4735
-                                    $package_id = $gd_post_info->package_id;
4736
-                                }
4732
+								// post package info
4733
+								$package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4734
+								if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4735
+									$package_id = $gd_post_info->package_id;
4736
+								}
4737 4737
                                 
4738
-                                $package_info = array();
4739
-                                if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4740
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4738
+								$package_info = array();
4739
+								if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4740
+									$package_info = (array)geodir_get_package_info_by_id($package_id);
4741 4741
                                     
4742
-                                    if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4743
-                                        $package_info = array();
4744
-                                    }
4745
-                                }
4742
+									if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4743
+										$package_info = array();
4744
+									}
4745
+								}
4746 4746
                                 
4747
-                                if (empty($package_info)) {
4748
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4749
-                                }
4747
+								if (empty($package_info)) {
4748
+									$package_info = (array)geodir_post_package_info( array(), '', $post_type );
4749
+								}
4750 4750
                                  
4751
-                                if (!empty($package_info))	 {
4752
-                                    $package_id = $package_info['pid'];
4751
+								if (!empty($package_info))	 {
4752
+									$package_id = $package_info['pid'];
4753 4753
                                     
4754
-                                    if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4755
-                                        $gd_post['expire_date'] = $expire_date;
4756
-                                    } else {
4757
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4758
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4759
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4760
-                                        } else {
4761
-                                            $gd_post['expire_date'] = 'Never';
4762
-                                        }
4763
-                                    }
4754
+									if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4755
+										$gd_post['expire_date'] = $expire_date;
4756
+									} else {
4757
+										if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4758
+											$gd_post['alive_days'] = (int)$package_info['days'];
4759
+											$gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4760
+										} else {
4761
+											$gd_post['expire_date'] = 'Never';
4762
+										}
4763
+									}
4764 4764
                                     
4765
-                                    $gd_post['package_id'] = $package_id;
4766
-                                }
4765
+									$gd_post['package_id'] = $package_id;
4766
+								}
4767 4767
 
4768
-                                $table = $plugin_prefix . $post_type . '_detail';
4768
+								$table = $plugin_prefix . $post_type . '_detail';
4769 4769
                                 
4770
-                                if ($post_type == 'gd_event') {
4771
-                                    $gd_post = geodir_imex_process_event_data($gd_post);
4772
-                                }
4770
+								if ($post_type == 'gd_event') {
4771
+									$gd_post = geodir_imex_process_event_data($gd_post);
4772
+								}
4773 4773
                                 
4774
-                                if (isset($gd_post['post_id'])) {
4775
-                                    unset($gd_post['post_id']);
4776
-                                }
4774
+								if (isset($gd_post['post_id'])) {
4775
+									unset($gd_post['post_id']);
4776
+								}
4777 4777
 
4778
-                                // Export franchise fields
4779
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4780
-                                if ($is_franchise_active) {
4781
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
4782
-                                        $gd_franchise_lock = array();
4778
+								// Export franchise fields
4779
+								$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4780
+								if ($is_franchise_active) {
4781
+									if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
4782
+										$gd_franchise_lock = array();
4783 4783
                                         
4784
-                                        if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4785
-                                            $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4786
-                                            $gd_franchise_lock = trim( $gd_franchise_lock );
4787
-                                            $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4788
-                                        }
4784
+										if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4785
+											$gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4786
+											$gd_franchise_lock = trim( $gd_franchise_lock );
4787
+											$gd_franchise_lock = explode( ",", $gd_franchise_lock );
4788
+										}
4789 4789
                                         
4790
-                                        update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4791
-                                        update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4792
-                                    } else {
4793
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4794
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4795
-                                        }
4796
-                                    }
4797
-                                }
4790
+										update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4791
+										update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4792
+									} else {
4793
+										if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4794
+											geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4795
+										}
4796
+									}
4797
+								}
4798 4798
                                 
4799
-                                if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4800
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4801
-                                    if ($default_category_id) {
4802
-                                        $save_post['post_default_category'] = $default_category_id;
4803
-                                        $gd_post['default_category'] = $default_category_id;
4804
-                                    }
4805
-                                    $gd_post[$cat_taxonomy] = $save_post['post_category'];
4806
-                                }
4799
+								if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4800
+									$save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4801
+									if ($default_category_id) {
4802
+										$save_post['post_default_category'] = $default_category_id;
4803
+										$gd_post['default_category'] = $default_category_id;
4804
+									}
4805
+									$gd_post[$cat_taxonomy] = $save_post['post_category'];
4806
+								}
4807 4807
                                 
4808
-                                // Save post info
4809
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4810
-                                // post taxonomies
4811
-                                if ( !empty( $save_post['post_category'] ) ) {
4812
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4808
+								// Save post info
4809
+								geodir_save_post_info( $saved_post_id, $gd_post );
4810
+								// post taxonomies
4811
+								if ( !empty( $save_post['post_category'] ) ) {
4812
+									wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4813 4813
                                     
4814
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4815
-                                    if ($default_category_id) {
4816
-                                        $post_default_category = $default_category_id;
4817
-                                    }
4818
-                                    $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4819
-                                    $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4820
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4814
+									$post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4815
+									if ($default_category_id) {
4816
+										$post_default_category = $default_category_id;
4817
+									}
4818
+									$post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4819
+									$save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4820
+									$post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4821 4821
                                     
4822
-                                    if ($post_category_str != '' && $post_default_category) {
4823
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4824
-                                    }
4822
+									if ($post_category_str != '' && $post_default_category) {
4823
+										$post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4824
+									}
4825 4825
                                     
4826
-                                    $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4826
+									$post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4827 4827
                                     
4828
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4829
-                                }
4828
+									geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4829
+								}
4830 4830
 
4831
-                                if ( !empty( $save_post['post_tags'] ) ) {
4832
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4833
-                                }
4831
+								if ( !empty( $save_post['post_tags'] ) ) {
4832
+									wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4833
+								}
4834 4834
 
4835
-                                // Post images
4836
-                                if ( !empty( $post_images ) ) {
4837
-                                    $post_images = array_unique($post_images);
4835
+								// Post images
4836
+								if ( !empty( $post_images ) ) {
4837
+									$post_images = array_unique($post_images);
4838 4838
                                     
4839
-                                    $old_post_images_arr = array();
4840
-                                    $saved_post_images_arr = array();
4839
+									$old_post_images_arr = array();
4840
+									$saved_post_images_arr = array();
4841 4841
                                     
4842
-                                    $order = 1;
4842
+									$order = 1;
4843 4843
                                     
4844
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4845
-                                    if (!empty($old_post_images)) {
4846
-                                        foreach( $old_post_images as $old_post_image ) {
4847
-                                            if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4848
-                                                $old_post_images_arr[] = $old_post_image->file;
4849
-                                            }
4850
-                                        }
4851
-                                    }
4844
+									$old_post_images = geodir_get_images( $saved_post_id );
4845
+									if (!empty($old_post_images)) {
4846
+										foreach( $old_post_images as $old_post_image ) {
4847
+											if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4848
+												$old_post_images_arr[] = $old_post_image->file;
4849
+											}
4850
+										}
4851
+									}
4852 4852
 
4853
-                                    foreach ( $post_images as $post_image ) {
4854
-                                        $image_name = basename( $post_image );
4855
-                                        $saved_post_images_arr[] = $image_name;
4853
+									foreach ( $post_images as $post_image ) {
4854
+										$image_name = basename( $post_image );
4855
+										$saved_post_images_arr[] = $image_name;
4856 4856
                                         
4857
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4858
-                                            continue; // Skip if image already exists.
4859
-                                        }
4857
+										if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4858
+											continue; // Skip if image already exists.
4859
+										}
4860 4860
                                         
4861
-                                        $image_name_parts = explode( '.', $image_name );
4862
-                                        array_pop( $image_name_parts );
4863
-                                        $proper_image_name = implode( '.', $image_name_parts );
4861
+										$image_name_parts = explode( '.', $image_name );
4862
+										array_pop( $image_name_parts );
4863
+										$proper_image_name = implode( '.', $image_name_parts );
4864 4864
                                         
4865
-                                        $arr_file_type = wp_check_filetype( $image_name );
4865
+										$arr_file_type = wp_check_filetype( $image_name );
4866 4866
                                         
4867
-                                        if ( !empty( $arr_file_type ) ) {
4868
-                                            $uploaded_file_type = $arr_file_type['type'];
4867
+										if ( !empty( $arr_file_type ) ) {
4868
+											$uploaded_file_type = $arr_file_type['type'];
4869 4869
                                             
4870
-                                            $attachment = array();
4871
-                                            $attachment['post_id'] = $saved_post_id;
4872
-                                            $attachment['title'] = $proper_image_name;
4873
-                                            $attachment['content'] = '';
4874
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4875
-                                            $attachment['mime_type'] = $uploaded_file_type;
4876
-                                            $attachment['menu_order'] = $order;
4877
-                                            $attachment['is_featured'] = 0;
4878
-
4879
-                                            $attachment_set = '';
4880
-                                            foreach ( $attachment as $key => $val ) {
4881
-                                                if ( $val != '' ) {
4882
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4883
-                                                }
4884
-                                            }
4885
-                                            $attachment_set = trim( $attachment_set, ", " );
4870
+											$attachment = array();
4871
+											$attachment['post_id'] = $saved_post_id;
4872
+											$attachment['title'] = $proper_image_name;
4873
+											$attachment['content'] = '';
4874
+											$attachment['file'] = $uploads_subdir . '/' . $image_name;
4875
+											$attachment['mime_type'] = $uploaded_file_type;
4876
+											$attachment['menu_order'] = $order;
4877
+											$attachment['is_featured'] = 0;
4878
+
4879
+											$attachment_set = '';
4880
+											foreach ( $attachment as $key => $val ) {
4881
+												if ( $val != '' ) {
4882
+													$attachment_set .= $key . " = '" . $val . "', ";
4883
+												}
4884
+											}
4885
+											$attachment_set = trim( $attachment_set, ", " );
4886 4886
                                                                                         
4887
-                                            // Add new attachment
4888
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4887
+											// Add new attachment
4888
+											$wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4889 4889
                                                                                         
4890
-                                            $order++;
4891
-                                        }
4892
-                                    }
4890
+											$order++;
4891
+										}
4892
+									}
4893 4893
 
4894
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4895
-                                    // Remove previous attachment
4896
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4894
+									$saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4895
+									// Remove previous attachment
4896
+									$wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4897 4897
                                     
4898
-                                    if ( !empty( $saved_post_images_arr ) ) {
4899
-                                        geodir_set_wp_featured_image($saved_post_id);
4900
-                                        /*
4898
+									if ( !empty( $saved_post_images_arr ) ) {
4899
+										geodir_set_wp_featured_image($saved_post_id);
4900
+										/*
4901 4901
                                         $menu_order = 1;
4902 4902
                                         
4903 4903
                                         foreach ( $saved_post_images_arr as $img_name ) {
@@ -4910,281 +4910,281 @@  discard block
 block discarded – undo
4910 4910
                                             }
4911 4911
                                             $menu_order++;
4912 4912
                                         }*/
4913
-                                    }
4913
+									}
4914 4914
                                     
4915
-                                    if ( $order > 1 ) {
4916
-                                        $images++;
4917
-                                    }
4918
-                                }
4915
+									if ( $order > 1 ) {
4916
+										$images++;
4917
+									}
4918
+								}
4919 4919
 
4920
-                                /** This action is documented in geodirectory-functions/post-functions.php */
4921
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4920
+								/** This action is documented in geodirectory-functions/post-functions.php */
4921
+								do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4922 4922
                                 
4923
-                                if (isset($is_featured)) {
4924
-                                    geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4925
-                                }
4926
-                                if (isset($gd_post['expire_date'])) {
4927
-                                    geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4928
-                                }
4929
-                            }
4923
+								if (isset($is_featured)) {
4924
+									geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4925
+								}
4926
+								if (isset($gd_post['expire_date'])) {
4927
+									geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4928
+								}
4929
+							}
4930 4930
                             
4931
-                            // WPML
4932
-                            if ($is_wpml && $language != '') {
4933
-                                $sitepress->switch_lang($active_lang, true);
4934
-                            }
4935
-                            // WPML
4936
-                        }
4937
-                    }
4938
-                }
4931
+							// WPML
4932
+							if ($is_wpml && $language != '') {
4933
+								$sitepress->switch_lang($active_lang, true);
4934
+							}
4935
+							// WPML
4936
+						}
4937
+					}
4938
+				}
4939 4939
 
4940
-                //undo some stuff to make the import quicker
4941
-                wp_defer_term_counting( false );
4942
-                wp_defer_comment_counting( false );
4943
-                $wpdb->query( 'COMMIT;' );
4944
-                $wpdb->query( 'SET autocommit = 1;' );
4945
-
4946
-                $json = array();
4947
-                $json['processed'] = $processed_actual;
4948
-                $json['created'] = $created;
4949
-                $json['updated'] = $updated;
4950
-                $json['skipped'] = $skipped;
4951
-                $json['invalid'] = $invalid;
4952
-                $json['invalid_addr'] = $invalid_addr;
4953
-                $json['images'] = $images;
4940
+				//undo some stuff to make the import quicker
4941
+				wp_defer_term_counting( false );
4942
+				wp_defer_comment_counting( false );
4943
+				$wpdb->query( 'COMMIT;' );
4944
+				$wpdb->query( 'SET autocommit = 1;' );
4945
+
4946
+				$json = array();
4947
+				$json['processed'] = $processed_actual;
4948
+				$json['created'] = $created;
4949
+				$json['updated'] = $updated;
4950
+				$json['skipped'] = $skipped;
4951
+				$json['invalid'] = $invalid;
4952
+				$json['invalid_addr'] = $invalid_addr;
4953
+				$json['images'] = $images;
4954 4954
                 
4955
-                wp_send_json( $json );
4956
-                exit;
4957
-            } else if ( $task == 'import_loc' ) {
4958
-                global $gd_post_types;
4959
-                $gd_post_types = $post_types;
4955
+				wp_send_json( $json );
4956
+				exit;
4957
+			} else if ( $task == 'import_loc' ) {
4958
+				global $gd_post_types;
4959
+				$gd_post_types = $post_types;
4960 4960
                 
4961
-                if (!empty($file)) {
4962
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4961
+				if (!empty($file)) {
4962
+					$columns = isset($file[0]) ? $file[0] : NULL;
4963 4963
                     
4964
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4965
-                        $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4966
-                        wp_send_json( $json );
4967
-                    }
4964
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4965
+						$json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4966
+						wp_send_json( $json );
4967
+					}
4968 4968
                     
4969
-                    $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4970
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4971
-                    for ($i = 1; $i <= $limit; $i++) {
4972
-                        $index = $processed + $i;
4969
+					$gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4970
+					$gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4971
+					for ($i = 1; $i <= $limit; $i++) {
4972
+						$index = $processed + $i;
4973 4973
                         
4974
-                        if (isset($file[$index])) {
4975
-                            $row = $file[$index];
4976
-                            $row = array_map( 'trim', $row );
4977
-                            $data = array();
4974
+						if (isset($file[$index])) {
4975
+							$row = $file[$index];
4976
+							$row = array_map( 'trim', $row );
4977
+							$data = array();
4978 4978
                             
4979
-                            foreach ($columns as $c => $column ) {
4980
-                                if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta', 'city_desc', 'region_meta', 'region_desc', 'country_meta', 'country_desc'))) {
4981
-                                    $data[$column] = $row[$c];
4982
-                                }
4983
-                            }
4979
+							foreach ($columns as $c => $column ) {
4980
+								if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta', 'city_desc', 'region_meta', 'region_desc', 'country_meta', 'country_desc'))) {
4981
+									$data[$column] = $row[$c];
4982
+								}
4983
+							}
4984 4984
 
4985
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4986
-                                $invalid++;
4987
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4988
-                                continue;
4989
-                            }
4985
+							if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4986
+								$invalid++;
4987
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4988
+								continue;
4989
+							}
4990 4990
                             
4991
-                            $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4991
+							$data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4992 4992
                             
4993
-                            if ( $import_choice == 'update' ) {
4994
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4995
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4996
-                                        $updated++;
4997
-                                    } else {
4998
-                                        $invalid++;
4999
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5000
-                                    }
5001
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
5002
-                                    $data['location_id'] = (int)$location->location_id;
4993
+							if ( $import_choice == 'update' ) {
4994
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4995
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4996
+										$updated++;
4997
+									} else {
4998
+										$invalid++;
4999
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5000
+									}
5001
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
5002
+									$data['location_id'] = (int)$location->location_id;
5003 5003
                                     
5004
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
5005
-                                        $data['location_id'] = (int)$location->location_id;
5006
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
5007
-                                        $data['location_id'] = (int)$location->location_id;
5008
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
5009
-                                        $data['location_id'] = (int)$location->location_id;
5010
-                                    }
5004
+									if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
5005
+										$data['location_id'] = (int)$location->location_id;
5006
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
5007
+										$data['location_id'] = (int)$location->location_id;
5008
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
5009
+										$data['location_id'] = (int)$location->location_id;
5010
+									}
5011 5011
                                     
5012
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
5013
-                                        $updated++;
5014
-                                    } else {
5015
-                                        $invalid++;
5016
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5017
-                                    }
5018
-                                } else {
5019
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
5020
-                                        $created++;
5021
-                                    } else {
5022
-                                        $invalid++;
5023
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5024
-                                    }
5025
-                                }
5026
-                            } elseif ( $import_choice == 'skip' ) {
5027
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
5028
-                                    $skipped++;
5029
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
5030
-                                    $skipped++;
5031
-                                } else {
5032
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
5033
-                                        $created++;
5034
-                                    } else {
5035
-                                        $invalid++;
5036
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5037
-                                    }
5038
-                                }
5039
-                            } else {
5040
-                                $invalid++;
5041
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5042
-                            }
5043
-                        }
5044
-                    }
5045
-                }
5012
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
5013
+										$updated++;
5014
+									} else {
5015
+										$invalid++;
5016
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5017
+									}
5018
+								} else {
5019
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
5020
+										$created++;
5021
+									} else {
5022
+										$invalid++;
5023
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5024
+									}
5025
+								}
5026
+							} elseif ( $import_choice == 'skip' ) {
5027
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
5028
+									$skipped++;
5029
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
5030
+									$skipped++;
5031
+								} else {
5032
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
5033
+										$created++;
5034
+									} else {
5035
+										$invalid++;
5036
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5037
+									}
5038
+								}
5039
+							} else {
5040
+								$invalid++;
5041
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
5042
+							}
5043
+						}
5044
+					}
5045
+				}
5046 5046
                 
5047
-                $json = array();
5048
-                $json['processed'] = $limit;
5049
-                $json['created'] = $created;
5050
-                $json['updated'] = $updated;
5051
-                $json['skipped'] = $skipped;
5052
-                $json['invalid'] = $invalid;
5053
-                $json['images'] = $images;
5047
+				$json = array();
5048
+				$json['processed'] = $limit;
5049
+				$json['created'] = $created;
5050
+				$json['updated'] = $updated;
5051
+				$json['skipped'] = $skipped;
5052
+				$json['invalid'] = $invalid;
5053
+				$json['images'] = $images;
5054 5054
                 
5055
-                wp_send_json( $json );
5056
-            } else if ( $task == 'import_hood' ) {               
5057
-                if (!empty($file)) {
5058
-                    $columns = isset($file[0]) ? $file[0] : NULL;
5055
+				wp_send_json( $json );
5056
+			} else if ( $task == 'import_hood' ) {               
5057
+				if (!empty($file)) {
5058
+					$columns = isset($file[0]) ? $file[0] : NULL;
5059 5059
                     
5060
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
5061
-                        $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
5062
-                        wp_send_json( $json );
5063
-                    }
5060
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
5061
+						$json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
5062
+						wp_send_json( $json );
5063
+					}
5064 5064
                     
5065
-                    $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
5066
-                    $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' );
5067
-                    for ($i = 1; $i <= $limit; $i++) {
5068
-                        $index = $processed + $i;
5065
+					$gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
5066
+					$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' );
5067
+					for ($i = 1; $i <= $limit; $i++) {
5068
+						$index = $processed + $i;
5069 5069
                         
5070
-                        if (isset($file[$index])) {
5071
-                            $row = $file[$index];
5072
-                            $row = array_map( 'trim', $row );
5073
-                            $data = array();
5070
+						if (isset($file[$index])) {
5071
+							$row = $file[$index];
5072
+							$row = array_map( 'trim', $row );
5073
+							$data = array();
5074 5074
                             
5075
-                            foreach ($columns as $c => $column) {
5076
-                                if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
5077
-                                    $data[$column] = sanitize_text_field($row[$c]);
5078
-                                }
5079
-                            }
5075
+							foreach ($columns as $c => $column) {
5076
+								if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
5077
+									$data[$column] = sanitize_text_field($row[$c]);
5078
+								}
5079
+							}
5080 5080
 
5081
-                            if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
5082
-                                $invalid++;
5083
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5084
-                                continue;
5085
-                            }
5081
+							if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
5082
+								$invalid++;
5083
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5084
+								continue;
5085
+							}
5086 5086
                             
5087
-                            $location_info = array();
5088
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
5089
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
5090
-                            } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
5091
-                                $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
5092
-                            }
5087
+							$location_info = array();
5088
+							if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
5089
+								$location_info = geodir_get_location_by_id('', (int)$data['location_id']);
5090
+							} else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
5091
+								$location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
5092
+							}
5093 5093
 
5094
-                            if (empty($location_info)) {
5095
-                                $invalid++;
5096
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5097
-                                continue;
5098
-                            }
5094
+							if (empty($location_info)) {
5095
+								$invalid++;
5096
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5097
+								continue;
5098
+							}
5099 5099
                             
5100
-                            $location_id = $location_info->location_id;
5100
+							$location_id = $location_info->location_id;
5101 5101
 
5102
-                            $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
5102
+							$data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
5103 5103
                             
5104
-                            $hood_data = array();
5105
-                            $hood_data['hood_name'] = $data['neighbourhood_name'];
5106
-                            $hood_data['hood_slug'] = $data['neighbourhood_slug'];
5107
-                            $hood_data['hood_latitude'] = $data['latitude'];
5108
-                            $hood_data['hood_longitude'] = $data['longitude'];
5109
-                            $hood_data['hood_location_id'] = $location_id;
5104
+							$hood_data = array();
5105
+							$hood_data['hood_name'] = $data['neighbourhood_name'];
5106
+							$hood_data['hood_slug'] = $data['neighbourhood_slug'];
5107
+							$hood_data['hood_latitude'] = $data['latitude'];
5108
+							$hood_data['hood_longitude'] = $data['longitude'];
5109
+							$hood_data['hood_location_id'] = $location_id;
5110 5110
                                     
5111
-                            if ( $import_choice == 'update' ) {
5112
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
5113
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
5111
+							if ( $import_choice == 'update' ) {
5112
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
5113
+									$hood_data['hood_id'] = (int)$data['neighbourhood_id'];
5114 5114
                                     
5115
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5116
-                                        $updated++;
5117
-                                    } else {
5118
-                                        $invalid++;
5119
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5120
-                                    }
5121
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
5122
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
5115
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5116
+										$updated++;
5117
+									} else {
5118
+										$invalid++;
5119
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5120
+									}
5121
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
5122
+									$hood_data['hood_id'] = (int)$neighbourhood->hood_id;
5123 5123
                                     
5124
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5125
-                                        $updated++;
5126
-                                    } else {
5127
-                                        $invalid++;
5128
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5129
-                                    }
5130
-                                } else {
5131
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5132
-                                        $created++;
5133
-                                    } else {
5134
-                                        $invalid++;
5135
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5136
-                                    }
5137
-                                }
5138
-                            } elseif ( $import_choice == 'skip' ) {
5139
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
5140
-                                    $skipped++;
5141
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
5142
-                                    $skipped++;
5143
-                                } else {
5124
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5125
+										$updated++;
5126
+									} else {
5127
+										$invalid++;
5128
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5129
+									}
5130
+								} else {
5131
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5132
+										$created++;
5133
+									} else {
5134
+										$invalid++;
5135
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5136
+									}
5137
+								}
5138
+							} elseif ( $import_choice == 'skip' ) {
5139
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
5140
+									$skipped++;
5141
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
5142
+									$skipped++;
5143
+								} else {
5144 5144
                                     
5145
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5146
-                                        $created++;
5147
-                                    } else {
5148
-                                        $invalid++;
5149
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5150
-                                    }
5151
-                                }
5152
-                            } else {
5153
-                                $invalid++;
5154
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5155
-                            }
5156
-                        }
5157
-                    }
5158
-                }
5145
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
5146
+										$created++;
5147
+									} else {
5148
+										$invalid++;
5149
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5150
+									}
5151
+								}
5152
+							} else {
5153
+								$invalid++;
5154
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
5155
+							}
5156
+						}
5157
+					}
5158
+				}
5159 5159
                 
5160
-                $json = array();
5161
-                $json['processed'] = $limit;
5162
-                $json['created'] = $created;
5163
-                $json['updated'] = $updated;
5164
-                $json['skipped'] = $skipped;
5165
-                $json['invalid'] = $invalid;
5166
-                $json['images'] = $images;
5160
+				$json = array();
5161
+				$json['processed'] = $limit;
5162
+				$json['created'] = $created;
5163
+				$json['updated'] = $updated;
5164
+				$json['skipped'] = $skipped;
5165
+				$json['invalid'] = $invalid;
5166
+				$json['images'] = $images;
5167 5167
                 
5168
-                wp_send_json( $json );
5169
-            }
5170
-        }
5171
-        break;
5172
-        case 'import_finish':{
5173
-            /**
5174
-             * Run an action when an import finishes.
5175
-             *
5176
-             * This action can be used to fire functions after an import ends.
5177
-             *
5178
-             * @since 1.5.3
5179
-             * @package GeoDirectory
5180
-             */
5181
-            do_action('geodir_import_finished');
5182
-        }
5183
-        break;
5168
+				wp_send_json( $json );
5169
+			}
5170
+		}
5171
+		break;
5172
+		case 'import_finish':{
5173
+			/**
5174
+			 * Run an action when an import finishes.
5175
+			 *
5176
+			 * This action can be used to fire functions after an import ends.
5177
+			 *
5178
+			 * @since 1.5.3
5179
+			 * @package GeoDirectory
5180
+			 */
5181
+			do_action('geodir_import_finished');
5182
+		}
5183
+		break;
5184 5184
 
5185
-    }
5186
-    echo '0';
5187
-    gd_die();
5185
+	}
5186
+	echo '0';
5187
+	gd_die();
5188 5188
 }
5189 5189
 
5190 5190
 /**
@@ -5228,12 +5228,12 @@  discard block
 block discarded – undo
5228 5228
 		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
5229 5229
 	}
5230 5230
 	
5231
-    if( !empty( $term ) ) {
5231
+	if( !empty( $term ) ) {
5232 5232
 		$result = wp_insert_term( $term, $taxonomy, $args );
5233
-        if( !is_wp_error( $result ) ) {
5234
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5235
-        }
5236
-    }
5233
+		if( !is_wp_error( $result ) ) {
5234
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5235
+		}
5236
+	}
5237 5237
 	
5238 5238
 	return false;
5239 5239
 }
@@ -5279,16 +5279,16 @@  discard block
 block discarded – undo
5279 5279
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
5280 5280
 		
5281 5281
 		if( !is_wp_error( $result ) ) {
5282
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5283
-        }
5282
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5283
+		}
5284 5284
 	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
5285 5285
 		$term_data['term_id'] = $term_info['term_id'];
5286 5286
 		
5287 5287
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
5288 5288
 		
5289 5289
 		if( !is_wp_error( $result ) ) {
5290
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5291
-        }
5290
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5291
+		}
5292 5292
 	} else {
5293 5293
 		return geodir_imex_insert_term( $taxonomy, $term_data );
5294 5294
 	}
@@ -5310,47 +5310,47 @@  discard block
 block discarded – undo
5310 5310
  * @return int Posts count.
5311 5311
  */
5312 5312
 function geodir_get_posts_count( $post_type ) {
5313
-    global $wpdb, $plugin_prefix;
5313
+	global $wpdb, $plugin_prefix;
5314 5314
 
5315
-    if ( !post_type_exists( $post_type ) ) {
5316
-        return 0;
5317
-    }
5315
+	if ( !post_type_exists( $post_type ) ) {
5316
+		return 0;
5317
+	}
5318 5318
         
5319
-    $table = $plugin_prefix . $post_type . '_detail';
5319
+	$table = $plugin_prefix . $post_type . '_detail';
5320 5320
 
5321
-    // Skip listing with statuses trash, auto-draft etc...
5322
-    $skip_statuses = geodir_imex_export_skip_statuses();
5323
-    $where_statuses = '';
5324
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5325
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5326
-    }
5321
+	// Skip listing with statuses trash, auto-draft etc...
5322
+	$skip_statuses = geodir_imex_export_skip_statuses();
5323
+	$where_statuses = '';
5324
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5325
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5326
+	}
5327 5327
     
5328
-    /**
5329
-     * Filter the SQL where clause part to filter posts count in import/export.
5330
-     *
5331
-     * @since 1.6.4
5332
-     * @package GeoDirectory
5333
-     *
5334
-     * @param string $where SQL where clause part.
5335
-     */
5336
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5337
-
5338
-    $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 );
5339
-
5340
-    $posts_count = (int)$wpdb->get_var( $query );
5328
+	/**
5329
+	 * Filter the SQL where clause part to filter posts count in import/export.
5330
+	 *
5331
+	 * @since 1.6.4
5332
+	 * @package GeoDirectory
5333
+	 *
5334
+	 * @param string $where SQL where clause part.
5335
+	 */
5336
+	$where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5337
+
5338
+	$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 );
5339
+
5340
+	$posts_count = (int)$wpdb->get_var( $query );
5341 5341
     
5342
-    /**
5343
-     * Modify returned post counts for the current post type.
5344
-     *
5345
-     * @since 1.4.6
5346
-     * @package GeoDirectory
5347
-     *
5348
-     * @param int $posts_count Post counts.
5349
-     * @param string $post_type Post type.
5350
-     */
5351
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5352
-
5353
-    return $posts_count;
5342
+	/**
5343
+	 * Modify returned post counts for the current post type.
5344
+	 *
5345
+	 * @since 1.4.6
5346
+	 * @package GeoDirectory
5347
+	 *
5348
+	 * @param int $posts_count Post counts.
5349
+	 * @param string $post_type Post type.
5350
+	 */
5351
+	$posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5352
+
5353
+	return $posts_count;
5354 5354
 }
5355 5355
 
5356 5356
 /**
@@ -5378,10 +5378,10 @@  discard block
 block discarded – undo
5378 5378
 	
5379 5379
 	if ( !empty( $posts ) ) {
5380 5380
 		$is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' );
5381
-        $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5382
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5383
-        $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5384
-        $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5381
+		$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5382
+		$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5383
+		$neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5384
+		$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5385 5385
 		
5386 5386
 		$csv_row = array();
5387 5387
 		$csv_row[] = 'post_id';
@@ -5413,7 +5413,7 @@  discard block
 block discarded – undo
5413 5413
 		}
5414 5414
 		$csv_row[] = 'post_status';
5415 5415
 		$csv_row[] = 'is_featured';
5416
-        // Export claim listing field
5416
+		// Export claim listing field
5417 5417
 		if ($is_claim_active) {
5418 5418
 			$csv_row[] = 'claimed';
5419 5419
 		}
@@ -5421,7 +5421,7 @@  discard block
 block discarded – undo
5421 5421
 			$csv_row[] = 'package_id';
5422 5422
 			$csv_row[] = 'expire_date';
5423 5423
 		}
5424
-        $csv_row[] = 'post_date';
5424
+		$csv_row[] = 'post_date';
5425 5425
 		$csv_row[] = 'geodir_video';
5426 5426
 		$csv_row[] = 'post_address';
5427 5427
 		$csv_row[] = 'post_city';
@@ -5430,11 +5430,11 @@  discard block
 block discarded – undo
5430 5430
 		$csv_row[] = 'post_zip';
5431 5431
 		$csv_row[] = 'post_latitude';
5432 5432
 		$csv_row[] = 'post_longitude';
5433
-        if ($neighbourhood_active) {
5434
-            $csv_row[] = 'post_neighbourhood';
5435
-            $csv_row[] = 'neighbourhood_latitude';
5436
-            $csv_row[] = 'neighbourhood_longitude';
5437
-        }
5433
+		if ($neighbourhood_active) {
5434
+			$csv_row[] = 'post_neighbourhood';
5435
+			$csv_row[] = 'neighbourhood_latitude';
5436
+			$csv_row[] = 'neighbourhood_longitude';
5437
+		}
5438 5438
 		$csv_row[] = 'geodir_timing';
5439 5439
 		$csv_row[] = 'geodir_contact';
5440 5440
 		$csv_row[] = 'geodir_email';
@@ -5466,21 +5466,21 @@  discard block
 block discarded – undo
5466 5466
 			$csv_row[] = 'franchise';
5467 5467
 		}
5468 5468
         
5469
-        /**
5470
-         * Filter columns feild names of gd export listings csv.
5471
-         *
5472
-         * @since 1.6.5
5473
-         * @package GeoDirectory
5474
-         *
5475
-         * @param array $csv_row Column names being exported in csv.
5476
-         * @param string $post_type The post type.
5477
-         */
5478
-        $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5469
+		/**
5470
+		 * Filter columns feild names of gd export listings csv.
5471
+		 *
5472
+		 * @since 1.6.5
5473
+		 * @package GeoDirectory
5474
+		 *
5475
+		 * @param array $csv_row Column names being exported in csv.
5476
+		 * @param string $post_type The post type.
5477
+		 */
5478
+		$csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5479 5479
 		
5480 5480
 		$csv_rows[] = $csv_row;
5481 5481
 
5482 5482
 		$images_count = 5;
5483
-        $xx=0;
5483
+		$xx=0;
5484 5484
 		foreach ( $posts as $post ) {$xx++;
5485 5485
 			$post_id = $post['ID'];
5486 5486
 			
@@ -5611,14 +5611,14 @@  discard block
 block discarded – undo
5611 5611
 			}
5612 5612
 			$csv_row[] = $post_info['post_status']; // post_status
5613 5613
 			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5614
-            if ($is_claim_active) {
5615
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5616
-            }
5614
+			if ($is_claim_active) {
5615
+				$csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5616
+			}
5617 5617
 			if ($is_payment_plugin) {
5618 5618
 				$csv_row[] = (int)$post_info['package_id']; // package_id
5619 5619
 				$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
5620 5620
 			}
5621
-            $csv_row[] = $post_info['post_date']; // post_date
5621
+			$csv_row[] = $post_info['post_date']; // post_date
5622 5622
 			$csv_row[] = $post_info['geodir_video']; // geodir_video
5623 5623
 			$csv_row[] = $post_info['post_address']; // post_address
5624 5624
 			$csv_row[] = $post_info['post_city']; // post_city
@@ -5627,21 +5627,21 @@  discard block
 block discarded – undo
5627 5627
 			$csv_row[] = $post_info['post_zip']; // post_zip
5628 5628
 			$csv_row[] = $post_info['post_latitude']; // post_latitude
5629 5629
 			$csv_row[] = $post_info['post_longitude']; // post_longitude
5630
-            if ($neighbourhood_active) {
5631
-                $post_neighbourhood = '';
5632
-                $neighbourhood_latitude = '';
5633
-                $neighbourhood_longitude = '';
5634
-                if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5635
-                    if (!empty($hood_info)) {
5636
-                        $post_neighbourhood = $hood_info->hood_name;
5637
-                        $neighbourhood_latitude = $hood_info->hood_latitude;
5638
-                        $neighbourhood_longitude = $hood_info->hood_longitude;
5639
-                    }
5640
-                }
5641
-                $csv_row[] = $post_neighbourhood; // post_neighbourhood
5642
-                $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5643
-                $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5644
-            }
5630
+			if ($neighbourhood_active) {
5631
+				$post_neighbourhood = '';
5632
+				$neighbourhood_latitude = '';
5633
+				$neighbourhood_longitude = '';
5634
+				if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5635
+					if (!empty($hood_info)) {
5636
+						$post_neighbourhood = $hood_info->hood_name;
5637
+						$neighbourhood_latitude = $hood_info->hood_latitude;
5638
+						$neighbourhood_longitude = $hood_info->hood_longitude;
5639
+					}
5640
+				}
5641
+				$csv_row[] = $post_neighbourhood; // post_neighbourhood
5642
+				$csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5643
+				$csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5644
+			}
5645 5645
 			$csv_row[] = $post_info['geodir_timing']; // geodir_timing
5646 5646
 			$csv_row[] = $post_info['geodir_contact']; // geodir_contact
5647 5647
 			$csv_row[] = $post_info['geodir_email']; // geodir_email
@@ -5681,16 +5681,16 @@  discard block
 block discarded – undo
5681 5681
 				$csv_row[] = (int)$franchise; // franchise id
5682 5682
 			}
5683 5683
             
5684
-            /**
5685
-             * Filter columns values of gd export listings csv file
5686
-             *
5687
-             * @since 1.6.5
5688
-             * @package GeoDirectory
5689
-             *
5690
-             * @param array $csv_row Field values being exported in csv.
5691
-             * @param array $post_info The post info.
5692
-             */
5693
-            $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5684
+			/**
5685
+			 * Filter columns values of gd export listings csv file
5686
+			 *
5687
+			 * @since 1.6.5
5688
+			 * @package GeoDirectory
5689
+			 *
5690
+			 * @param array $csv_row Field values being exported in csv.
5691
+			 * @param array $post_info The post info.
5692
+			 */
5693
+			$csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5694 5694
 			
5695 5695
 			for ( $c = 0; $c < $images_count; $c++ ) {
5696 5696
 				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
@@ -5723,64 +5723,64 @@  discard block
 block discarded – undo
5723 5723
  * @return array Array of posts data.
5724 5724
  */
5725 5725
 function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5726
-    global $wpdb, $plugin_prefix;
5726
+	global $wpdb, $plugin_prefix;
5727 5727
 
5728
-    if ( ! post_type_exists( $post_type ) )
5729
-        return new stdClass;
5728
+	if ( ! post_type_exists( $post_type ) )
5729
+		return new stdClass;
5730 5730
         
5731
-    $table = $plugin_prefix . $post_type . '_detail';
5731
+	$table = $plugin_prefix . $post_type . '_detail';
5732 5732
 
5733
-    $limit = '';
5734
-    if ( $per_page > 0 && $page_no > 0 ) {
5735
-        $offset = ( $page_no - 1 ) * $per_page;
5733
+	$limit = '';
5734
+	if ( $per_page > 0 && $page_no > 0 ) {
5735
+		$offset = ( $page_no - 1 ) * $per_page;
5736 5736
         
5737
-        if ( $offset > 0 ) {
5738
-            $limit = " LIMIT " . $offset . "," . $per_page;
5739
-        } else {
5740
-            $limit = " LIMIT " . $per_page;
5741
-        }
5742
-    }
5737
+		if ( $offset > 0 ) {
5738
+			$limit = " LIMIT " . $offset . "," . $per_page;
5739
+		} else {
5740
+			$limit = " LIMIT " . $per_page;
5741
+		}
5742
+	}
5743 5743
 
5744
-    // Skip listing with statuses trash, auto-draft etc...
5745
-    $skip_statuses = geodir_imex_export_skip_statuses();
5746
-    $where_statuses = '';
5747
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5748
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5749
-    }
5744
+	// Skip listing with statuses trash, auto-draft etc...
5745
+	$skip_statuses = geodir_imex_export_skip_statuses();
5746
+	$where_statuses = '';
5747
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5748
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5749
+	}
5750 5750
     
5751
-    /**
5752
-     * Filter the SQL where clause part to filter posts in import/export.
5753
-     *
5754
-     * @since 1.6.4
5755
-     * @package GeoDirectory
5756
-     *
5757
-     * @param string $where SQL where clause part.
5758
-     */
5759
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5760
-
5761
-    $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 );
5762
-    /**
5763
-     * Modify returned posts SQL query for the current post type.
5764
-     *
5765
-     * @since 1.4.6
5766
-     * @package GeoDirectory
5767
-     *
5768
-     * @param int $query The SQL query.
5769
-     * @param string $post_type Post type.
5770
-     */
5771
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5772
-    $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A );
5773
-
5774
-    /**
5775
-     * Modify returned post results for the current post type.
5776
-     *
5777
-     * @since 1.4.6
5778
-     * @package GeoDirectory
5779
-     *
5780
-     * @param object $results An object containing all post ids.
5781
-     * @param string $post_type Post type.
5782
-     */
5783
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5751
+	/**
5752
+	 * Filter the SQL where clause part to filter posts in import/export.
5753
+	 *
5754
+	 * @since 1.6.4
5755
+	 * @package GeoDirectory
5756
+	 *
5757
+	 * @param string $where SQL where clause part.
5758
+	 */
5759
+	$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5760
+
5761
+	$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 );
5762
+	/**
5763
+	 * Modify returned posts SQL query for the current post type.
5764
+	 *
5765
+	 * @since 1.4.6
5766
+	 * @package GeoDirectory
5767
+	 *
5768
+	 * @param int $query The SQL query.
5769
+	 * @param string $post_type Post type.
5770
+	 */
5771
+	$query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5772
+	$results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A );
5773
+
5774
+	/**
5775
+	 * Modify returned post results for the current post type.
5776
+	 *
5777
+	 * @since 1.4.6
5778
+	 * @package GeoDirectory
5779
+	 *
5780
+	 * @param object $results An object containing all post ids.
5781
+	 * @param string $post_type Post type.
5782
+	 */
5783
+	return apply_filters( 'geodir_export_posts', $results, $post_type );
5784 5784
 }
5785 5785
 
5786 5786
 /**
@@ -5799,26 +5799,26 @@  discard block
 block discarded – undo
5799 5799
  * @return string The SQL query.
5800 5800
  */
5801 5801
 function geodir_imex_get_events_query( $query, $post_type ) {
5802
-    if ( $post_type == 'gd_event' ) {
5803
-        global $wpdb, $plugin_prefix;
5802
+	if ( $post_type == 'gd_event' ) {
5803
+		global $wpdb, $plugin_prefix;
5804 5804
         
5805
-        $table = $plugin_prefix . $post_type . '_detail';
5806
-        $schedule_table = EVENT_SCHEDULE;
5805
+		$table = $plugin_prefix . $post_type . '_detail';
5806
+		$schedule_table = EVENT_SCHEDULE;
5807 5807
         
5808
-        // Skip listing with statuses trash, auto-draft etc...
5809
-        $skip_statuses = geodir_imex_export_skip_statuses();
5810
-        $where_statuses = '';
5811
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5812
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5813
-        }
5808
+		// Skip listing with statuses trash, auto-draft etc...
5809
+		$skip_statuses = geodir_imex_export_skip_statuses();
5810
+		$where_statuses = '';
5811
+		if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5812
+			$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5813
+		}
5814 5814
         
5815
-        /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5816
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5815
+		/** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5816
+		$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5817 5817
 
5818
-        $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 );
5819
-    }
5818
+		$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 );
5819
+	}
5820 5820
 
5821
-    return $query;
5821
+	return $query;
5822 5822
 }
5823 5823
 
5824 5824
 /**
@@ -5840,36 +5840,36 @@  discard block
 block discarded – undo
5840 5840
  * @return int Total terms count.
5841 5841
  */
5842 5842
 function geodir_get_terms_count( $post_type ) {
5843
-    $args = array( 'hide_empty' => 0 );
5843
+	$args = array( 'hide_empty' => 0 );
5844 5844
 
5845
-    remove_all_filters( 'get_terms' );
5845
+	remove_all_filters( 'get_terms' );
5846 5846
 
5847
-    $taxonomy = $post_type . 'category';
5847
+	$taxonomy = $post_type . 'category';
5848 5848
 
5849
-    // WPML
5850
-    $is_wpml = geodir_is_wpml();
5851
-    $active_lang = 'all';
5852
-    if ( $is_wpml ) {
5853
-        global $sitepress;
5854
-        $active_lang = $sitepress->get_current_language();
5849
+	// WPML
5850
+	$is_wpml = geodir_is_wpml();
5851
+	$active_lang = 'all';
5852
+	if ( $is_wpml ) {
5853
+		global $sitepress;
5854
+		$active_lang = $sitepress->get_current_language();
5855 5855
         
5856
-        if ( $active_lang != 'all' ) {
5857
-            $sitepress->switch_lang( 'all', true );
5858
-        }
5859
-    }
5860
-    // WPML
5856
+		if ( $active_lang != 'all' ) {
5857
+			$sitepress->switch_lang( 'all', true );
5858
+		}
5859
+	}
5860
+	// WPML
5861 5861
             
5862
-    $count_terms = wp_count_terms( $taxonomy, $args );
5862
+	$count_terms = wp_count_terms( $taxonomy, $args );
5863 5863
 
5864
-    // WPML
5865
-    if ( $is_wpml && $active_lang !== 'all' ) {
5866
-        global $sitepress;
5867
-        $sitepress->switch_lang( $active_lang, true );
5868
-    }
5869
-    // WPML
5870
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5864
+	// WPML
5865
+	if ( $is_wpml && $active_lang !== 'all' ) {
5866
+		global $sitepress;
5867
+		$sitepress->switch_lang( $active_lang, true );
5868
+	}
5869
+	// WPML
5870
+	$count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5871 5871
      
5872
-    return $count_terms;
5872
+	return $count_terms;
5873 5873
 }
5874 5874
 
5875 5875
 /**
@@ -5908,11 +5908,11 @@  discard block
 block discarded – undo
5908 5908
 		$csv_row[] = 'cat_posttype';
5909 5909
 		$csv_row[] = 'cat_parent';
5910 5910
 		$csv_row[] = 'cat_schema';
5911
-        // WPML
5911
+		// WPML
5912 5912
 		$is_wpml = geodir_is_wpml();
5913 5913
 		if ($is_wpml) {
5914 5914
 			$csv_row[] = 'cat_language';
5915
-            $csv_row[] = 'cat_id_original';
5915
+			$csv_row[] = 'cat_id_original';
5916 5916
 		}
5917 5917
 		// WPML
5918 5918
 		$csv_row[] = 'cat_description';
@@ -5942,10 +5942,10 @@  discard block
 block discarded – undo
5942 5942
 			$csv_row[] = $post_type;
5943 5943
 			$csv_row[] = $cat_parent;
5944 5944
 			$csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5945
-            // WPML
5945
+			// WPML
5946 5946
 			if ($is_wpml) {
5947 5947
 				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5948
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5948
+				$csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5949 5949
 			}
5950 5950
 			// WPML
5951 5951
 			$csv_row[] = $term->description;
@@ -6541,43 +6541,43 @@  discard block
 block discarded – undo
6541 6541
  * @param string $status Post status.
6542 6542
  */
6543 6543
 function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
6544
-    global $wpdb, $current_user;
6545
-
6546
-    $option_value = get_option($option);
6547
-
6548
-    if ($option_value > 0) :
6549
-        if (get_post($option_value)) :
6550
-            // Page exists
6551
-            return;
6552
-        endif;
6553
-    endif;
6554
-
6555
-    $page_found = $wpdb->get_var(
6556
-        $wpdb->prepare(
6557
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6558
-            array($slug)
6559
-        )
6560
-    );
6561
-
6562
-    if ($page_found) :
6563
-        // Page exists
6564
-        if (!$option_value) update_option($option, $page_found);
6565
-        return;
6566
-    endif;
6567
-
6568
-    $page_data = array(
6569
-        'post_status' => $status,
6570
-        'post_type' => 'page',
6571
-        'post_author' => $current_user->ID,
6572
-        'post_name' => $slug,
6573
-        'post_title' => $page_title,
6574
-        'post_content' => $page_content,
6575
-        'post_parent' => $post_parent,
6576
-        'comment_status' => 'closed'
6577
-    );
6578
-    $page_id = wp_insert_post($page_data);
6579
-
6580
-    add_option($option, $page_id);
6544
+	global $wpdb, $current_user;
6545
+
6546
+	$option_value = get_option($option);
6547
+
6548
+	if ($option_value > 0) :
6549
+		if (get_post($option_value)) :
6550
+			// Page exists
6551
+			return;
6552
+		endif;
6553
+	endif;
6554
+
6555
+	$page_found = $wpdb->get_var(
6556
+		$wpdb->prepare(
6557
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6558
+			array($slug)
6559
+		)
6560
+	);
6561
+
6562
+	if ($page_found) :
6563
+		// Page exists
6564
+		if (!$option_value) update_option($option, $page_found);
6565
+		return;
6566
+	endif;
6567
+
6568
+	$page_data = array(
6569
+		'post_status' => $status,
6570
+		'post_type' => 'page',
6571
+		'post_author' => $current_user->ID,
6572
+		'post_name' => $slug,
6573
+		'post_title' => $page_title,
6574
+		'post_content' => $page_content,
6575
+		'post_parent' => $post_parent,
6576
+		'comment_status' => 'closed'
6577
+	);
6578
+	$page_id = wp_insert_post($page_data);
6579
+
6580
+	add_option($option, $page_id);
6581 6581
 
6582 6582
 }
6583 6583
 
@@ -6608,9 +6608,9 @@  discard block
 block discarded – undo
6608 6608
  * @package GeoDirectory
6609 6609
  */
6610 6610
 function geodir_admin_upgrade_notice() {
6611
-    $class = "error";
6612
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6613
-    echo"<div class=\"$class\"> <p>$message</p></div>";
6611
+	$class = "error";
6612
+	$message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6613
+	echo"<div class=\"$class\"> <p>$message</p></div>";
6614 6614
 }
6615 6615
 
6616 6616
 /**
@@ -6623,18 +6623,18 @@  discard block
 block discarded – undo
6623 6623
  */
6624 6624
 function geodire_admin_upgrade_notice( $plugin_data, $r )
6625 6625
 {
6626
-    // readme contents
6627
-    $args = array(
6628
-        'timeout'     => 15,
6629
-        'redirection' => 5
6630
-    );
6631
-    $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6632
-    $data       = wp_remote_get( $url, $args );
6626
+	// readme contents
6627
+	$args = array(
6628
+		'timeout'     => 15,
6629
+		'redirection' => 5
6630
+	);
6631
+	$url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6632
+	$data       = wp_remote_get( $url, $args );
6633 6633
 
6634
-    if (!is_wp_error($data) && $data['response']['code'] == 200) {
6634
+	if (!is_wp_error($data) && $data['response']['code'] == 200) {
6635 6635
 
6636
-        geodir_in_plugin_update_message($data['body']);
6637
-    }
6636
+		geodir_in_plugin_update_message($data['body']);
6637
+	}
6638 6638
 }
6639 6639
 
6640 6640
 
@@ -6642,28 +6642,28 @@  discard block
 block discarded – undo
6642 6642
 * @param string $content http response body
6643 6643
 */
6644 6644
 function geodir_in_plugin_update_message($content) {
6645
-    // Output Upgrade Notice
6646
-    $matches        = null;
6647
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6648
-    $upgrade_notice = '';
6649
-    if ( preg_match( $regexp, $content, $matches ) ) {
6650
-        if(empty($matches)){return;}
6651
-
6652
-        $version = trim( $matches[1] );
6653
-        if($version && $version>GEODIRECTORY_VERSION){
6654
-
6655
-
6656
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6657
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6658
-            $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6659
-            foreach ( $notices as $index => $line ) {
6660
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6661
-            }
6662
-            $upgrade_notice .= '</div> ';
6663
-        }
6664
-        }
6665
-    }
6666
-    echo $upgrade_notice;
6645
+	// Output Upgrade Notice
6646
+	$matches        = null;
6647
+	$regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6648
+	$upgrade_notice = '';
6649
+	if ( preg_match( $regexp, $content, $matches ) ) {
6650
+		if(empty($matches)){return;}
6651
+
6652
+		$version = trim( $matches[1] );
6653
+		if($version && $version>GEODIRECTORY_VERSION){
6654
+
6655
+
6656
+		$notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6657
+		if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6658
+			$upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6659
+			foreach ( $notices as $index => $line ) {
6660
+				$upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6661
+			}
6662
+			$upgrade_notice .= '</div> ';
6663
+		}
6664
+		}
6665
+	}
6666
+	echo $upgrade_notice;
6667 6667
 }
6668 6668
 
6669 6669
 /**
@@ -6696,19 +6696,19 @@  discard block
 block discarded – undo
6696 6696
  * @param array Listing statuses to be skipped.
6697 6697
  */
6698 6698
 function geodir_imex_export_skip_statuses() {
6699
-    $statuses = array( 'trash', 'auto-draft' );
6699
+	$statuses = array( 'trash', 'auto-draft' );
6700 6700
     
6701
-    /**
6702
-     * Filter the statuses to skip during GD export listings.
6703
-     *
6704
-     * @since 1.6.0
6705
-     * @package GeoDirectory
6706
-     *
6707
-     * @param array $statuses Listing statuses to be skipped.
6708
-     */
6709
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6701
+	/**
6702
+	 * Filter the statuses to skip during GD export listings.
6703
+	 *
6704
+	 * @since 1.6.0
6705
+	 * @package GeoDirectory
6706
+	 *
6707
+	 * @param array $statuses Listing statuses to be skipped.
6708
+	 */
6709
+	$statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6710 6710
      
6711
-    return $statuses;
6711
+	return $statuses;
6712 6712
 }
6713 6713
 
6714 6714
 /**
@@ -6720,15 +6720,15 @@  discard block
 block discarded – undo
6720 6720
  * @since 1.6.3
6721 6721
  */
6722 6722
 function geodir_admin_dequeue_scripts() {
6723
-    // EDD
6724
-    if (wp_script_is('jquery-chosen', 'enqueued')) {
6725
-        wp_dequeue_script('jquery-chosen');
6726
-    }
6723
+	// EDD
6724
+	if (wp_script_is('jquery-chosen', 'enqueued')) {
6725
+		wp_dequeue_script('jquery-chosen');
6726
+	}
6727 6727
     
6728
-    // Ultimate Addons for Visual Composer
6729
-    if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6730
-        wp_dequeue_script('ultimate-vc-backend-script');
6731
-    }
6728
+	// Ultimate Addons for Visual Composer
6729
+	if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6730
+		wp_dequeue_script('ultimate-vc-backend-script');
6731
+	}
6732 6732
 }
6733 6733
 
6734 6734
 /**
@@ -6744,24 +6744,24 @@  discard block
 block discarded – undo
6744 6744
  * @return string SQL where clause part.
6745 6745
  */
6746 6746
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6747
-    global $wpdb;
6747
+	global $wpdb;
6748 6748
     
6749
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6749
+	$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6750 6750
     
6751
-    if ( !empty( $filters ) ) {
6752
-        foreach ( $filters as $field => $value ) {
6753
-            switch ($field) {
6754
-                case 'start_date':
6755
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6756
-                break;
6757
-                case 'end_date':
6758
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6759
-                break;
6760
-            }
6761
-        }
6762
-    }
6751
+	if ( !empty( $filters ) ) {
6752
+		foreach ( $filters as $field => $value ) {
6753
+			switch ($field) {
6754
+				case 'start_date':
6755
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6756
+				break;
6757
+				case 'end_date':
6758
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6759
+				break;
6760
+			}
6761
+		}
6762
+	}
6763 6763
     
6764
-    return $where;
6764
+	return $where;
6765 6765
 }
6766 6766
 add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
6767 6767
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
Please login to merge, or discard this patch.