Test Failed
Pull Request — master (#414)
by Kiran
17:21
created
geodirectory_shortcodes.php 2 patches
Indentation   +899 added lines, -899 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 // If this file is called directly, abort.
9 9
 if (!defined('WPINC')) {
10
-    die;
10
+	die;
11 11
 }
12 12
 require_once('geodirectory-functions/shortcode_functions.php');
13 13
 
@@ -32,43 +32,43 @@  discard block
 block discarded – undo
32 32
  */
33 33
 function geodir_sc_add_listing($atts)
34 34
 {
35
-    ob_start();
36
-    $defaults = array(
37
-        'pid' => '',
38
-        'listing_type' => 'gd_place',
39
-        'login_msg' => __('You must login to post.', 'geodirectory'),
40
-        'show_login' => false,
41
-    );
42
-    $params = shortcode_atts($defaults, $atts);
43
-
44
-    foreach ($params as $key => $value) {
45
-        $_REQUEST[$key] = $value;
46
-    }
47
-
48
-    $user_id = get_current_user_id();
49
-    if (!$user_id) {
50
-        echo $params['login_msg'];
51
-        if ($params['show_login']) {
52
-            echo "<br />";
53
-            $defaults = array(
54
-                'before_widget' => '',
55
-                'after_widget' => '',
56
-                'before_title' => '',
57
-                'after_title' => '',
58
-            );
59
-
60
-            geodir_loginwidget_output($defaults, $defaults);
61
-        }
62
-
63
-
64
-    } else {
65
-       // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
-    }
67
-    $output = ob_get_contents();
68
-
69
-    ob_end_clean();
70
-
71
-    return $output;
35
+	ob_start();
36
+	$defaults = array(
37
+		'pid' => '',
38
+		'listing_type' => 'gd_place',
39
+		'login_msg' => __('You must login to post.', 'geodirectory'),
40
+		'show_login' => false,
41
+	);
42
+	$params = shortcode_atts($defaults, $atts);
43
+
44
+	foreach ($params as $key => $value) {
45
+		$_REQUEST[$key] = $value;
46
+	}
47
+
48
+	$user_id = get_current_user_id();
49
+	if (!$user_id) {
50
+		echo $params['login_msg'];
51
+		if ($params['show_login']) {
52
+			echo "<br />";
53
+			$defaults = array(
54
+				'before_widget' => '',
55
+				'after_widget' => '',
56
+				'before_title' => '',
57
+				'after_title' => '',
58
+			);
59
+
60
+			geodir_loginwidget_output($defaults, $defaults);
61
+		}
62
+
63
+
64
+	} else {
65
+	   // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
+	}
67
+	$output = ob_get_contents();
68
+
69
+	ob_end_clean();
70
+
71
+	return $output;
72 72
 }
73 73
 
74 74
 /**
@@ -96,136 +96,136 @@  discard block
 block discarded – undo
96 96
  */
97 97
 function geodir_sc_home_map($atts)
98 98
 {
99
-    ob_start();
100
-    $defaults = array(
101
-        'width' => '960',
102
-        'height' => '425',
103
-        'maptype' => 'ROADMAP',
104
-        'zoom' => '13',
105
-        'autozoom' => '',
106
-        'child_collapse' => '0',
107
-        'scrollwheel' => '0',
99
+	ob_start();
100
+	$defaults = array(
101
+		'width' => '960',
102
+		'height' => '425',
103
+		'maptype' => 'ROADMAP',
104
+		'zoom' => '13',
105
+		'autozoom' => '',
106
+		'child_collapse' => '0',
107
+		'scrollwheel' => '0',
108 108
 		'marker_cluster' => false,
109
-        'latitude' => '',
110
-        'longitude' => ''
111
-    );
112
-
113
-    $params = shortcode_atts($defaults, $atts);
114
-
115
-    $params = gdsc_validate_map_args($params);
116
-
117
-    $map_args = array(
118
-        'map_canvas_name' => 'gd_home_map',
119
-        'latitude' => $params['latitude'],
120
-        'longitude' => $params['longitude'],
121
-
122
-        /**
123
-         * Filter the widget width of the map on home/listings page.
124
-         *
125
-         * @since 1.0.0
126
-         * @param mixed(string|int|float) $params['width'] The map width.
127
-         */
128
-        'width' => apply_filters('widget_width', $params['width']),
129
-        /**
130
-         * Filter the widget height of the map on home/listings page.
131
-         *
132
-         * @since 1.0.0
133
-         * @param mixed(string|int|float) $params['height'] The map height.
134
-         */
135
-        'height' => apply_filters('widget_heigh', $params['height']),
136
-        /**
137
-         * Filter the widget maptype of the map on home/listings page.
138
-         *
139
-         * @since 1.0.0
109
+		'latitude' => '',
110
+		'longitude' => ''
111
+	);
112
+
113
+	$params = shortcode_atts($defaults, $atts);
114
+
115
+	$params = gdsc_validate_map_args($params);
116
+
117
+	$map_args = array(
118
+		'map_canvas_name' => 'gd_home_map',
119
+		'latitude' => $params['latitude'],
120
+		'longitude' => $params['longitude'],
121
+
122
+		/**
123
+		 * Filter the widget width of the map on home/listings page.
124
+		 *
125
+		 * @since 1.0.0
126
+		 * @param mixed(string|int|float) $params['width'] The map width.
127
+		 */
128
+		'width' => apply_filters('widget_width', $params['width']),
129
+		/**
130
+		 * Filter the widget height of the map on home/listings page.
131
+		 *
132
+		 * @since 1.0.0
133
+		 * @param mixed(string|int|float) $params['height'] The map height.
134
+		 */
135
+		'height' => apply_filters('widget_heigh', $params['height']),
136
+		/**
137
+		 * Filter the widget maptype of the map on home/listings page.
138
+		 *
139
+		 * @since 1.0.0
140 140
 		 * @since 1.5.2 Added TERRAIN map type.
141
-         * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
-         */
143
-        'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
-        /**
145
-         * Filter the widget scrollwheel value of the map on home/listings page.
146
-         *
147
-         * Should the scrollwheel zoom the map or not.
148
-         *
149
-         * @since 1.0.0
150
-         * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
-         */
152
-        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
-        /**
154
-         * Filter the widget zoom level of the map on home/listings page.
155
-         *
156
-         * @since 1.0.0
157
-         * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
-         */
159
-        'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
-        /**
161
-         * Filter the widget auto zoom value of the map on home/listings page.
162
-         *
163
-         * If the map should autozoom to fit the markers shown.
164
-         *
165
-         * @since 1.0.0
166
-         * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
-         */
168
-        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
-        /**
170
-         * Filter the widget child_collapse value of the map on home/listings page.
171
-         *
172
-         * If the map should auto collapse the child categories if the category bar is present.
173
-         *
174
-         * @since 1.0.0
175
-         * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
-         */
177
-        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
-        'enable_cat_filters' => true,
179
-        'enable_text_search' => true,
180
-        'enable_post_type_filters' => true,
181
-        /**
182
-         * Filter the widget enable_location_filters value of the map on home/listings page.
183
-         *
184
-         * This is used when the location addon is used.
185
-         *
186
-         * @since 1.0.0
187
-         * @param bool $val True if location filters should be used, false if not.
188
-         */
189
-        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
-        'enable_jason_on_load' => false,
191
-        'enable_marker_cluster' => false,
192
-        'enable_map_resize_button' => true,
193
-        'map_class_name' => 'geodir-map-home-page',
194
-        'is_geodir_home_map_widget' => true,
195
-    );
141
+		 * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
+		 */
143
+		'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
+		/**
145
+		 * Filter the widget scrollwheel value of the map on home/listings page.
146
+		 *
147
+		 * Should the scrollwheel zoom the map or not.
148
+		 *
149
+		 * @since 1.0.0
150
+		 * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
+		 */
152
+		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
+		/**
154
+		 * Filter the widget zoom level of the map on home/listings page.
155
+		 *
156
+		 * @since 1.0.0
157
+		 * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
+		 */
159
+		'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
+		/**
161
+		 * Filter the widget auto zoom value of the map on home/listings page.
162
+		 *
163
+		 * If the map should autozoom to fit the markers shown.
164
+		 *
165
+		 * @since 1.0.0
166
+		 * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
+		 */
168
+		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
+		/**
170
+		 * Filter the widget child_collapse value of the map on home/listings page.
171
+		 *
172
+		 * If the map should auto collapse the child categories if the category bar is present.
173
+		 *
174
+		 * @since 1.0.0
175
+		 * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
+		 */
177
+		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
+		'enable_cat_filters' => true,
179
+		'enable_text_search' => true,
180
+		'enable_post_type_filters' => true,
181
+		/**
182
+		 * Filter the widget enable_location_filters value of the map on home/listings page.
183
+		 *
184
+		 * This is used when the location addon is used.
185
+		 *
186
+		 * @since 1.0.0
187
+		 * @param bool $val True if location filters should be used, false if not.
188
+		 */
189
+		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
+		'enable_jason_on_load' => false,
191
+		'enable_marker_cluster' => false,
192
+		'enable_map_resize_button' => true,
193
+		'map_class_name' => 'geodir-map-home-page',
194
+		'is_geodir_home_map_widget' => true,
195
+	);
196 196
 
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199
-        $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
201
-            if ($map_args['autozoom']) {
202
-                $map_args['enable_marker_cluster_no_reposition'] = false;
203
-            } else {
204
-                $map_args['enable_marker_cluster_no_reposition'] = true;
205
-            }
199
+		$map_args['enable_marker_cluster'] = true;
200
+		if(get_option('geodir_marker_cluster_type')) {
201
+			if ($map_args['autozoom']) {
202
+				$map_args['enable_marker_cluster_no_reposition'] = false;
203
+			} else {
204
+				$map_args['enable_marker_cluster_no_reposition'] = true;
205
+			}
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+			$map_args['enable_marker_cluster_server'] = true ;
208 208
 
209
-        }
209
+		}
210 210
 	} else {
211 211
 		$map_args['enable_marker_cluster'] = false;
212 212
 	}
213 213
 
214
-    // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
-        $map_args['enable_marker_cluster_no_reposition'] = true;
217
-    }
214
+	// if lat and long set in shortcode, hack it so the map is not repositioned
215
+	if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
+		$map_args['enable_marker_cluster_no_reposition'] = true;
217
+	}
218 218
 
219 219
 
220
-    geodir_draw_map($map_args);
220
+	geodir_draw_map($map_args);
221 221
 
222
-    add_action('wp_footer', 'geodir_home_map_add_script', 100);
222
+	add_action('wp_footer', 'geodir_home_map_add_script', 100);
223 223
 
224
-    $output = ob_get_contents();
224
+	$output = ob_get_contents();
225 225
 
226
-    ob_end_clean();
226
+	ob_end_clean();
227 227
 
228
-    return $output;
228
+	return $output;
229 229
 }
230 230
 add_shortcode('gd_homepage_map', 'geodir_sc_home_map');
231 231
 
@@ -264,243 +264,243 @@  discard block
 block discarded – undo
264 264
  */
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267
-    // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
-
270
-        global $add_post_in_marker_array, $gd_sc_map_params;
271
-        $backup_globals                             = array();
272
-        $backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
-        $backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
-
275
-        $defaults = array(
276
-            'width'          => '294',
277
-            'height'         => '370',
278
-            'zoom'           => '13',
279
-            'autozoom'       => '',
280
-            'sticky'         => '',
281
-            'showall'        => '0',
282
-            'scrollwheel'    => '0',
283
-            'maptype'        => 'ROADMAP',
284
-            'child_collapse' => 0,
285
-            'marker_cluster' => false,
286
-            'post_type'      => 'gd_place',
287
-            'category'       => '0',
288
-            'event_type'     => 'all'
289
-        );
290
-
291
-        $params = shortcode_atts( $defaults, $atts );
292
-
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
-            $params['post_type'] = 'gd_place';
295
-        }
296
-
297
-        // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
300
-            'orderby' => 'count',
301
-            'order'   => 'DESC',
302
-            'fields'  => 'ids'
303
-        ) );
304
-
305
-        // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
308
-        }
309
-
310
-        // Array_intersect returns only the items in $params['category'] that are also in our category list
311
-        // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
313
-
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
-        }
317
-
318
-        $params = gdsc_validate_map_args( $params );
319
-
320
-        $gd_sc_map_params = $params;
321
-
322
-        $query_args = array(
323
-            'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
-            'is_geodir_loop' => true,
325
-            'gd_location'    => false,
326
-            'post_type'      => $params['post_type'],
327
-        );
328
-
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
-
332
-            ######### WPML #########
333
-            if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
-            }
336
-            ######### WPML #########
337
-
338
-            $tax_query = array(
339
-                'taxonomy' => $category_taxonomy[0],
340
-                'field'    => 'id',
341
-                'terms'    => $params['category']
342
-            );
343
-
344
-            $query_args['tax_query'] = array( $tax_query );
345
-        }
346
-
347
-        $add_post_in_marker_array = true;
348
-
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
-            global $geodir_event_widget_listview;
351
-            $geodir_event_widget_listview = true;
352
-
353
-            $query_args['geodir_event_type'] = $params['event_type'];
354
-
355
-            $listings = geodir_event_get_widget_events( $query_args );
356
-
357
-            $geodir_event_widget_listview = false;
358
-        } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
360
-        }
361
-
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
365
-            }
366
-        }
367
-
368
-        ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
-
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
-
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
-
375
-        $default_location = geodir_get_default_location();
376
-
377
-        $map_args = array(
378
-            'map_canvas_name'          => 'gd_listing_map',
379
-            'width'                    => $params['width'],
380
-            'height'                   => $params['height'],
381
-            'zoom'                     => $params['zoom'],
382
-            'autozoom'                 => $params['autozoom'],
383
-            'sticky'                   => $params['sticky'],
384
-            'showall'                  => $params['showall'],
385
-            'scrollwheel'              => $params['scrollwheel'],
386
-            'maptype'                  => $params['maptype'],
387
-            'child_collapse'           => 0,
388
-            'enable_cat_filters'       => false,
389
-            'enable_text_search'       => false,
390
-            'enable_post_type_filters' => false,
391
-            'enable_location_filters'  => false,
392
-            'enable_jason_on_load'     => true,
393
-            'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
-            'streetViewControl'        => true,
397
-            'showPreview'              => '0',
398
-            'maxZoom'                  => 21,
399
-            'bubble_size'              => 'small',
400
-        );
401
-
402
-        if ( is_single() ) {
403
-            global $post;
404
-            if ( isset( $post->post_latitude ) ) {
405
-                $map_args['latitude']  = $post->post_latitude;
406
-                $map_args['longitude'] = $post->post_longitude;
407
-            }
408
-
409
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
-        } else {
411
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
412
-        }
413
-
414
-        // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
-            $map_args['enable_marker_cluster'] = true;
417
-        } else {
418
-            $map_args['enable_marker_cluster'] = false;
419
-        }
420
-
421
-        geodir_draw_map( $map_args );
422
-
423
-        $output = ob_get_contents();
424
-
425
-        ob_end_clean();
426
-
427
-        foreach ( $backup_globals as $global => $value ) {
428
-            ${$global} = $value;
429
-        }
430
-
431
-        return $output;
432
-    }else{
433
-        ob_start();
434
-        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
-        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
-        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
-        $defaults = array(
438
-            'width' => '294',
439
-            'height' => '370',
440
-            'zoom' => '13',
441
-            'autozoom' => '',
442
-            'sticky' => '',
443
-            'showall' => '0',
444
-            'scrollwheel' => '0',
445
-            'maptype' => 'ROADMAP',
446
-            'child_collapse' => 0,
447
-            'marker_cluster' => false
448
-        );
449
-        $params = shortcode_atts($defaults, $atts);
450
-        $params = gdsc_validate_map_args($params);
451
-        $map_args = array(
452
-            'map_canvas_name' => 'gd_listing_map',
453
-            'width' => $params['width'],
454
-            'height' => $params['height'],
455
-            'zoom' => $params['zoom'],
456
-            'autozoom' => $params['autozoom'],
457
-            'sticky' => $params['sticky'],
458
-            'showall' => $params['showall'],
459
-            'scrollwheel' => $params['scrollwheel'],
460
-            'child_collapse' => 0,
461
-            'enable_cat_filters' => false,
462
-            'enable_text_search' => false,
463
-            'enable_post_type_filters' => false,
464
-            'enable_location_filters' => false,
465
-            'enable_jason_on_load' => true,
466
-        );
467
-        if (is_single()) {
468
-            global $post;
469
-            $map_default_lat = $address_latitude = $post->post_latitude;
470
-            $map_default_lng = $address_longitude = $post->post_longitude;
471
-            $mapview = $post->post_mapview;
472
-            $map_args['zoom'] = $post->post_mapzoom;
473
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
-        } else {
475
-            $default_location = geodir_get_default_location();
476
-            $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
-            $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
479
-        }
480
-        if (empty($mapview)) {
481
-            $mapview = 'ROADMAP';
482
-        }
483
-        // Set default map options
484
-        $map_args['ajax_url'] = geodir_get_ajax_url();
485
-        $map_args['latitude'] = $map_default_lat;
486
-        $map_args['longitude'] = $map_default_lng;
487
-        $map_args['streetViewControl'] = true;
488
-        $map_args['maptype'] = $mapview;
489
-        $map_args['showPreview'] = '0';
490
-        $map_args['maxZoom'] = 21;
491
-        $map_args['bubble_size'] = 'small';
492
-
493
-        // Add marker cluster
494
-        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
-            $map_args['enable_marker_cluster'] = true;
496
-        } else {
497
-            $map_args['enable_marker_cluster'] = false;
498
-        }
499
-        geodir_draw_map($map_args);
500
-        $output = ob_get_contents();
501
-        ob_end_clean();
502
-        return $output;
503
-    }
267
+	// if some params are set then we need a new query, if not then we can use the main query
268
+	if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
+
270
+		global $add_post_in_marker_array, $gd_sc_map_params;
271
+		$backup_globals                             = array();
272
+		$backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
+		$backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
+
275
+		$defaults = array(
276
+			'width'          => '294',
277
+			'height'         => '370',
278
+			'zoom'           => '13',
279
+			'autozoom'       => '',
280
+			'sticky'         => '',
281
+			'showall'        => '0',
282
+			'scrollwheel'    => '0',
283
+			'maptype'        => 'ROADMAP',
284
+			'child_collapse' => 0,
285
+			'marker_cluster' => false,
286
+			'post_type'      => 'gd_place',
287
+			'category'       => '0',
288
+			'event_type'     => 'all'
289
+		);
290
+
291
+		$params = shortcode_atts( $defaults, $atts );
292
+
293
+		if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
+			$params['post_type'] = 'gd_place';
295
+		}
296
+
297
+		// Validate the selected category/ies - Grab the current list based on post_type
298
+		$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
+		$categories        = get_terms( $category_taxonomy, array(
300
+			'orderby' => 'count',
301
+			'order'   => 'DESC',
302
+			'fields'  => 'ids'
303
+		) );
304
+
305
+		// Make sure we have an array
306
+		if ( ! ( is_array( $params['category'] ) ) ) {
307
+			$params['category'] = explode( ',', $params['category'] );
308
+		}
309
+
310
+		// Array_intersect returns only the items in $params['category'] that are also in our category list
311
+		// Otherwise it becomes empty and later on that will mean "All"
312
+		$params['category'] = array_intersect( $params['category'], $categories );
313
+
314
+		if ( $params['post_type'] == 'gd_event' ) {
315
+			$params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
+		}
317
+
318
+		$params = gdsc_validate_map_args( $params );
319
+
320
+		$gd_sc_map_params = $params;
321
+
322
+		$query_args = array(
323
+			'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
+			'is_geodir_loop' => true,
325
+			'gd_location'    => false,
326
+			'post_type'      => $params['post_type'],
327
+		);
328
+
329
+		if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
+			$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
+
332
+			######### WPML #########
333
+			if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
334
+				$category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
+			}
336
+			######### WPML #########
337
+
338
+			$tax_query = array(
339
+				'taxonomy' => $category_taxonomy[0],
340
+				'field'    => 'id',
341
+				'terms'    => $params['category']
342
+			);
343
+
344
+			$query_args['tax_query'] = array( $tax_query );
345
+		}
346
+
347
+		$add_post_in_marker_array = true;
348
+
349
+		if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
+			global $geodir_event_widget_listview;
351
+			$geodir_event_widget_listview = true;
352
+
353
+			$query_args['geodir_event_type'] = $params['event_type'];
354
+
355
+			$listings = geodir_event_get_widget_events( $query_args );
356
+
357
+			$geodir_event_widget_listview = false;
358
+		} else {
359
+			$listings = geodir_get_widget_listings( $query_args );
360
+		}
361
+
362
+		if ( ! empty( $listings ) ) {
363
+			foreach ( $listings as $listing ) {
364
+				create_marker_jason_of_posts( $listing );
365
+			}
366
+		}
367
+
368
+		ob_start();
369
+		add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
+
371
+		add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
+
373
+		add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
+
375
+		$default_location = geodir_get_default_location();
376
+
377
+		$map_args = array(
378
+			'map_canvas_name'          => 'gd_listing_map',
379
+			'width'                    => $params['width'],
380
+			'height'                   => $params['height'],
381
+			'zoom'                     => $params['zoom'],
382
+			'autozoom'                 => $params['autozoom'],
383
+			'sticky'                   => $params['sticky'],
384
+			'showall'                  => $params['showall'],
385
+			'scrollwheel'              => $params['scrollwheel'],
386
+			'maptype'                  => $params['maptype'],
387
+			'child_collapse'           => 0,
388
+			'enable_cat_filters'       => false,
389
+			'enable_text_search'       => false,
390
+			'enable_post_type_filters' => false,
391
+			'enable_location_filters'  => false,
392
+			'enable_jason_on_load'     => true,
393
+			'ajax_url'                 => geodir_get_ajax_url(),
394
+			'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
+			'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
+			'streetViewControl'        => true,
397
+			'showPreview'              => '0',
398
+			'maxZoom'                  => 21,
399
+			'bubble_size'              => 'small',
400
+		);
401
+
402
+		if ( is_single() ) {
403
+			global $post;
404
+			if ( isset( $post->post_latitude ) ) {
405
+				$map_args['latitude']  = $post->post_latitude;
406
+				$map_args['longitude'] = $post->post_longitude;
407
+			}
408
+
409
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
+		} else {
411
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
412
+		}
413
+
414
+		// Add marker cluster
415
+		if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
+			$map_args['enable_marker_cluster'] = true;
417
+		} else {
418
+			$map_args['enable_marker_cluster'] = false;
419
+		}
420
+
421
+		geodir_draw_map( $map_args );
422
+
423
+		$output = ob_get_contents();
424
+
425
+		ob_end_clean();
426
+
427
+		foreach ( $backup_globals as $global => $value ) {
428
+			${$global} = $value;
429
+		}
430
+
431
+		return $output;
432
+	}else{
433
+		ob_start();
434
+		add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
+		add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
+		add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
+		$defaults = array(
438
+			'width' => '294',
439
+			'height' => '370',
440
+			'zoom' => '13',
441
+			'autozoom' => '',
442
+			'sticky' => '',
443
+			'showall' => '0',
444
+			'scrollwheel' => '0',
445
+			'maptype' => 'ROADMAP',
446
+			'child_collapse' => 0,
447
+			'marker_cluster' => false
448
+		);
449
+		$params = shortcode_atts($defaults, $atts);
450
+		$params = gdsc_validate_map_args($params);
451
+		$map_args = array(
452
+			'map_canvas_name' => 'gd_listing_map',
453
+			'width' => $params['width'],
454
+			'height' => $params['height'],
455
+			'zoom' => $params['zoom'],
456
+			'autozoom' => $params['autozoom'],
457
+			'sticky' => $params['sticky'],
458
+			'showall' => $params['showall'],
459
+			'scrollwheel' => $params['scrollwheel'],
460
+			'child_collapse' => 0,
461
+			'enable_cat_filters' => false,
462
+			'enable_text_search' => false,
463
+			'enable_post_type_filters' => false,
464
+			'enable_location_filters' => false,
465
+			'enable_jason_on_load' => true,
466
+		);
467
+		if (is_single()) {
468
+			global $post;
469
+			$map_default_lat = $address_latitude = $post->post_latitude;
470
+			$map_default_lng = $address_longitude = $post->post_longitude;
471
+			$mapview = $post->post_mapview;
472
+			$map_args['zoom'] = $post->post_mapzoom;
473
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
+		} else {
475
+			$default_location = geodir_get_default_location();
476
+			$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
+			$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
479
+		}
480
+		if (empty($mapview)) {
481
+			$mapview = 'ROADMAP';
482
+		}
483
+		// Set default map options
484
+		$map_args['ajax_url'] = geodir_get_ajax_url();
485
+		$map_args['latitude'] = $map_default_lat;
486
+		$map_args['longitude'] = $map_default_lng;
487
+		$map_args['streetViewControl'] = true;
488
+		$map_args['maptype'] = $mapview;
489
+		$map_args['showPreview'] = '0';
490
+		$map_args['maxZoom'] = 21;
491
+		$map_args['bubble_size'] = 'small';
492
+
493
+		// Add marker cluster
494
+		if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
+			$map_args['enable_marker_cluster'] = true;
496
+		} else {
497
+			$map_args['enable_marker_cluster'] = false;
498
+		}
499
+		geodir_draw_map($map_args);
500
+		$output = ob_get_contents();
501
+		ob_end_clean();
502
+		return $output;
503
+	}
504 504
 }
505 505
 
506 506
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -533,120 +533,120 @@  discard block
 block discarded – undo
533 533
  */
534 534
 function geodir_sc_listing_slider($atts)
535 535
 {
536
-    ob_start();
537
-    $defaults = array(
538
-        'post_type' => 'gd_place',
539
-        'category' => '0',
540
-        'post_number' => '5',
541
-        'slideshow' => '0',
542
-        'animation_loop' => 0,
543
-        'direction_nav' => 0,
544
-        'slideshow_speed' => 5000,
545
-        'animation_speed' => 600,
546
-        'animation' => 'slide',
547
-        'order_by' => 'latest',
548
-        'show_title' => '',
549
-        'show_featured_only' => '',
550
-        'title' => '',
551
-    );
552
-
553
-    $params = shortcode_atts($defaults, $atts);
554
-
555
-
556
-    /*
536
+	ob_start();
537
+	$defaults = array(
538
+		'post_type' => 'gd_place',
539
+		'category' => '0',
540
+		'post_number' => '5',
541
+		'slideshow' => '0',
542
+		'animation_loop' => 0,
543
+		'direction_nav' => 0,
544
+		'slideshow_speed' => 5000,
545
+		'animation_speed' => 600,
546
+		'animation' => 'slide',
547
+		'order_by' => 'latest',
548
+		'show_title' => '',
549
+		'show_featured_only' => '',
550
+		'title' => '',
551
+	);
552
+
553
+	$params = shortcode_atts($defaults, $atts);
554
+
555
+
556
+	/*
557 557
      *
558 558
      * Now we begin the validation of the attributes.
559 559
      */
560
-    // Check we have a valid post_type
561
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
-        $params['post_type'] = 'gd_place';
563
-    }
564
-
565
-    // Check we have a valid sort_order
566
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
-
568
-    // Match the chosen animation to our options
569
-    $animation_list = array('slide', 'fade');
570
-    if (!(in_array($params['animation'], $animation_list))) {
571
-        $params['animation'] = 'slide';
572
-    }
573
-
574
-    // Post_number needs to be a positive integer
575
-    $params['post_number'] = absint($params['post_number']);
576
-    if (0 == $params['post_number']) {
577
-        $params['post_number'] = 1;
578
-    }
579
-
580
-    // Manage the entered categories
581
-    if (0 != $params['category'] || '' != $params['category']) {
582
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
-    }
584
-    // Convert show_title to a bool
585
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
-
587
-    // Convert show_featured_only to a bool
588
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
-
590
-    /*
560
+	// Check we have a valid post_type
561
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
+		$params['post_type'] = 'gd_place';
563
+	}
564
+
565
+	// Check we have a valid sort_order
566
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
+
568
+	// Match the chosen animation to our options
569
+	$animation_list = array('slide', 'fade');
570
+	if (!(in_array($params['animation'], $animation_list))) {
571
+		$params['animation'] = 'slide';
572
+	}
573
+
574
+	// Post_number needs to be a positive integer
575
+	$params['post_number'] = absint($params['post_number']);
576
+	if (0 == $params['post_number']) {
577
+		$params['post_number'] = 1;
578
+	}
579
+
580
+	// Manage the entered categories
581
+	if (0 != $params['category'] || '' != $params['category']) {
582
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
+	}
584
+	// Convert show_title to a bool
585
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
+
587
+	// Convert show_featured_only to a bool
588
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
+
590
+	/*
591 591
      * Hopefully all attributes are now valid, and safe to pass forward
592 592
      */
593 593
 
594
-    // redeclare vars after validation
595
-
596
-    if (isset($params['direction_nav'])) {
597
-        $params['directionNav'] = $params['direction_nav'];
598
-    }
599
-    if (isset($params['animation_loop'])) {
600
-        $params['animationLoop'] = $params['animation_loop'];
601
-    }
602
-    if (isset($params['slideshow_speed'])) {
603
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
604
-    }
605
-    if (isset($params['animation_speed'])) {
606
-        $params['animationSpeed'] = $params['animation_speed'];
607
-    }
608
-    if (isset($params['order_by'])) {
609
-        $params['list_sort'] = $params['order_by'];
610
-    }
611
-
612
-    $query_args = array(
613
-        'post_number' => $params['post_number'],
614
-        'is_geodir_loop' => true,
615
-        'post_type' => $params['post_type'],
616
-        'order_by' => $params['order_by']
617
-    );
618
-
619
-    if (1 == $params['show_featured_only']) {
620
-        $query_args['show_featured_only'] = 1;
621
-    }
622
-
623
-    if (0 != $params['category'] && '' != $params['category']) {
624
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
-        $tax_query = array(
626
-            'taxonomy' => $category_taxonomy[0],
627
-            'field' => 'id',
628
-            'terms' => $params['category'],
629
-        );
630
-
631
-        $query_args['tax_query'] = array($tax_query);
632
-    }
633
-
634
-    $defaults = array(
635
-        'before_widget' => '',
636
-        'after_widget' => '',
637
-        'before_title' => '',
638
-        'after_title' => '',
639
-    );
640
-
641
-    $query_args = array_merge($query_args, $params);
642
-
643
-    geodir_listing_slider_widget_output($defaults, $query_args);
644
-
645
-    $output = ob_get_contents();
646
-
647
-    ob_end_clean();
648
-
649
-    return $output;
594
+	// redeclare vars after validation
595
+
596
+	if (isset($params['direction_nav'])) {
597
+		$params['directionNav'] = $params['direction_nav'];
598
+	}
599
+	if (isset($params['animation_loop'])) {
600
+		$params['animationLoop'] = $params['animation_loop'];
601
+	}
602
+	if (isset($params['slideshow_speed'])) {
603
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
604
+	}
605
+	if (isset($params['animation_speed'])) {
606
+		$params['animationSpeed'] = $params['animation_speed'];
607
+	}
608
+	if (isset($params['order_by'])) {
609
+		$params['list_sort'] = $params['order_by'];
610
+	}
611
+
612
+	$query_args = array(
613
+		'post_number' => $params['post_number'],
614
+		'is_geodir_loop' => true,
615
+		'post_type' => $params['post_type'],
616
+		'order_by' => $params['order_by']
617
+	);
618
+
619
+	if (1 == $params['show_featured_only']) {
620
+		$query_args['show_featured_only'] = 1;
621
+	}
622
+
623
+	if (0 != $params['category'] && '' != $params['category']) {
624
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
+		$tax_query = array(
626
+			'taxonomy' => $category_taxonomy[0],
627
+			'field' => 'id',
628
+			'terms' => $params['category'],
629
+		);
630
+
631
+		$query_args['tax_query'] = array($tax_query);
632
+	}
633
+
634
+	$defaults = array(
635
+		'before_widget' => '',
636
+		'after_widget' => '',
637
+		'before_title' => '',
638
+		'after_title' => '',
639
+	);
640
+
641
+	$query_args = array_merge($query_args, $params);
642
+
643
+	geodir_listing_slider_widget_output($defaults, $query_args);
644
+
645
+	$output = ob_get_contents();
646
+
647
+	ob_end_clean();
648
+
649
+	return $output;
650 650
 }
651 651
 
652 652
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -670,22 +670,22 @@  discard block
 block discarded – undo
670 670
  */
671 671
 function geodir_sc_login_box($atts)
672 672
 {
673
-    ob_start();
673
+	ob_start();
674 674
 
675
-    $defaults = array(
676
-        'before_widget' => '',
677
-        'after_widget' => '',
678
-        'before_title' => '',
679
-        'after_title' => '',
680
-    );
675
+	$defaults = array(
676
+		'before_widget' => '',
677
+		'after_widget' => '',
678
+		'before_title' => '',
679
+		'after_title' => '',
680
+	);
681 681
 
682
-    geodir_loginwidget_output($defaults, $defaults);
682
+	geodir_loginwidget_output($defaults, $defaults);
683 683
 
684
-    $output = ob_get_contents();
684
+	$output = ob_get_contents();
685 685
 
686
-    ob_end_clean();
686
+	ob_end_clean();
687 687
 
688
-    return $output;
688
+	return $output;
689 689
 }
690 690
 
691 691
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -716,31 +716,31 @@  discard block
 block discarded – undo
716 716
  */
717 717
 function geodir_sc_popular_post_category($atts)
718 718
 {
719
-    ob_start();
720
-    global $geodir_post_category_str;
721
-    $defaults = array(
722
-        'category_limit' => 15,
723
-        'category_restrict' => false,
724
-        'before_widget' => '',
725
-        'after_widget' => '',
726
-        'before_title' => '',
727
-        'after_title' => '',
728
-        'title' => '',
729
-        'default_post_type' => '',
730
-        'parent_only' => false,
731
-    );
732
-
733
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
-    $params['category_limit'] = absint($params['category_limit']);
735
-    $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
-    $params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
-    geodir_popular_post_category_output($params, $params);
738
-
739
-    $output = ob_get_contents();
740
-
741
-    ob_end_clean();
742
-
743
-    return $output;
719
+	ob_start();
720
+	global $geodir_post_category_str;
721
+	$defaults = array(
722
+		'category_limit' => 15,
723
+		'category_restrict' => false,
724
+		'before_widget' => '',
725
+		'after_widget' => '',
726
+		'before_title' => '',
727
+		'after_title' => '',
728
+		'title' => '',
729
+		'default_post_type' => '',
730
+		'parent_only' => false,
731
+	);
732
+
733
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
+	$params['category_limit'] = absint($params['category_limit']);
735
+	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
+	$params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
+	geodir_popular_post_category_output($params, $params);
738
+
739
+	$output = ob_get_contents();
740
+
741
+	ob_end_clean();
742
+
743
+	return $output;
744 744
 }
745 745
 
746 746
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -783,98 +783,98 @@  discard block
 block discarded – undo
783 783
  */
784 784
 function geodir_sc_popular_post_view($atts)
785 785
 {
786
-    ob_start();
787
-    $defaults = array(
788
-        'post_type' => 'gd_place',
789
-        'category' => '0',
790
-        'post_number' => '5',
791
-        'layout' => 'gridview_onehalf',
792
-        'add_location_filter' => '0',
793
-        'list_sort' => 'latest',
794
-        'use_viewing_post_type' => '1',
795
-        'character_count' => '20',
796
-        'listing_width' => '',
797
-        'show_featured_only' => '0',
798
-        'show_special_only' => '0',
799
-        'with_pics_only' => '0',
800
-        'with_videos_only' => '0',
801
-        'hide_if_empty' => '0',
802
-        'before_widget' => '',
803
-        'after_widget' => '',
804
-        'before_title' => '<h3 class="widget-title">',
805
-        'after_title' => '</h3>',
806
-        'title' => '',
807
-        'category_title' => '',
808
-    );
809
-
810
-    $params = shortcode_atts($defaults, $atts);
811
-
812
-    /**
813
-     * Validate our incoming params
814
-     */
786
+	ob_start();
787
+	$defaults = array(
788
+		'post_type' => 'gd_place',
789
+		'category' => '0',
790
+		'post_number' => '5',
791
+		'layout' => 'gridview_onehalf',
792
+		'add_location_filter' => '0',
793
+		'list_sort' => 'latest',
794
+		'use_viewing_post_type' => '1',
795
+		'character_count' => '20',
796
+		'listing_width' => '',
797
+		'show_featured_only' => '0',
798
+		'show_special_only' => '0',
799
+		'with_pics_only' => '0',
800
+		'with_videos_only' => '0',
801
+		'hide_if_empty' => '0',
802
+		'before_widget' => '',
803
+		'after_widget' => '',
804
+		'before_title' => '<h3 class="widget-title">',
805
+		'after_title' => '</h3>',
806
+		'title' => '',
807
+		'category_title' => '',
808
+	);
815 809
 
816
-    // Validate the selected post type, default to gd_place on fail
817
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
818
-        $params['post_type'] = 'gd_place';
819
-    }
820
-
821
-    // Validate the selected category/ies - Grab the current list based on post_type
822
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
823
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
824
-
825
-    // Make sure we have an array
826
-    if (!(is_array($params['category']))) {
827
-        $params['category'] = explode(',', $params['category']);
828
-    }
829
-
830
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
831
-    // Otherwise it becomes empty and later on that will mean "All"
832
-    $params['category'] = array_intersect($params['category'], $categories);
833
-
834
-    // Post_number needs to be a positive integer
835
-    $params['post_number'] = absint($params['post_number']);
836
-    if (0 == $params['post_number']) {
837
-        $params['post_number'] = 1;
838
-    }
839
-
840
-    // Validate our layout choice
841
-    // Outside of the norm, I added some more simple terms to match the existing
842
-    // So now I just run the switch to set it properly.
843
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
844
-
845
-    // Validate our sorting choice
846
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
847
-
848
-    // Validate character_count
849
-    if ($params['character_count'] !== '') {
850
-        $params['character_count'] = absint($params['character_count']);
851
-    }
852
-
853
-    // Validate Listing width, used in the template widget-listing-listview.php
854
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
855
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
856
-
857
-    // Validate the checkboxes used on the widget
858
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
859
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
860
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
861
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
862
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
863
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
864
-    $params['hide_if_empty'] = gdsc_to_bool_val($params['hide_if_empty']);
865
-
866
-    /**
867
-     * End of validation
868
-     */
810
+	$params = shortcode_atts($defaults, $atts);
811
+
812
+	/**
813
+	 * Validate our incoming params
814
+	 */
815
+
816
+	// Validate the selected post type, default to gd_place on fail
817
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
818
+		$params['post_type'] = 'gd_place';
819
+	}
820
+
821
+	// Validate the selected category/ies - Grab the current list based on post_type
822
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
823
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
824
+
825
+	// Make sure we have an array
826
+	if (!(is_array($params['category']))) {
827
+		$params['category'] = explode(',', $params['category']);
828
+	}
869 829
 
870
-    geodir_popular_postview_output($params, $params);
830
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
831
+	// Otherwise it becomes empty and later on that will mean "All"
832
+	$params['category'] = array_intersect($params['category'], $categories);
871 833
 
834
+	// Post_number needs to be a positive integer
835
+	$params['post_number'] = absint($params['post_number']);
836
+	if (0 == $params['post_number']) {
837
+		$params['post_number'] = 1;
838
+	}
839
+
840
+	// Validate our layout choice
841
+	// Outside of the norm, I added some more simple terms to match the existing
842
+	// So now I just run the switch to set it properly.
843
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
844
+
845
+	// Validate our sorting choice
846
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
847
+
848
+	// Validate character_count
849
+	if ($params['character_count'] !== '') {
850
+		$params['character_count'] = absint($params['character_count']);
851
+	}
852
+
853
+	// Validate Listing width, used in the template widget-listing-listview.php
854
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
855
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
872 856
 
873
-    $output = ob_get_contents();
857
+	// Validate the checkboxes used on the widget
858
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
859
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
860
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
861
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
862
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
863
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
864
+	$params['hide_if_empty'] = gdsc_to_bool_val($params['hide_if_empty']);
874 865
 
875
-    ob_end_clean();
866
+	/**
867
+	 * End of validation
868
+	 */
876 869
 
877
-    return $output;
870
+	geodir_popular_postview_output($params, $params);
871
+
872
+
873
+	$output = ob_get_contents();
874
+
875
+	ob_end_clean();
876
+
877
+	return $output;
878 878
 }
879 879
 
880 880
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -896,37 +896,37 @@  discard block
 block discarded – undo
896 896
  * @return string Recent reviews HTML.
897 897
  */
898 898
 function geodir_sc_recent_reviews($atts) {
899
-    ob_start();
900
-    $defaults = array(
899
+	ob_start();
900
+	$defaults = array(
901 901
 		'title' => '',
902 902
 		'count' => 5,
903
-    );
903
+	);
904 904
 
905
-    $params = shortcode_atts($defaults, $atts);
905
+	$params = shortcode_atts($defaults, $atts);
906 906
 
907
-    $count = absint($params['count']);
908
-    if (0 == $count) {
909
-        $count = 1;
910
-    }
907
+	$count = absint($params['count']);
908
+	if (0 == $count) {
909
+		$count = 1;
910
+	}
911 911
 	
912 912
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
913 913
 
914
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
914
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
915 915
 
916
-    if ($comments_li) {
917
-        if ($title != '') { ?>
916
+	if ($comments_li) {
917
+		if ($title != '') { ?>
918 918
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
919 919
 		<?php } ?>
920 920
         <div class="geodir_sc_recent_reviews_section">
921 921
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
922 922
         </div>
923 923
     <?php
924
-    }
925
-    $output = ob_get_contents();
924
+	}
925
+	$output = ob_get_contents();
926 926
 
927
-    ob_end_clean();
927
+	ob_end_clean();
928 928
 
929
-    return $output;
929
+	return $output;
930 930
 }
931 931
 
932 932
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -956,63 +956,63 @@  discard block
 block discarded – undo
956 956
  */
957 957
 function geodir_sc_related_listings($atts)
958 958
 {
959
-    ob_start();
960
-    $defaults = array(
961
-        'post_number' => 5,
962
-        'relate_to' => 'category',
963
-        'layout' => 'gridview_onehalf',
964
-        'add_location_filter' => 0,
965
-        'listing_width' => '',
966
-        'list_sort' => 'latest',
967
-        'character_count' => 20,
968
-        'is_widget' => 1,
969
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
970
-    );
971
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
972
-
973
-    $params = shortcode_atts($defaults, $atts);
974
-
975
-    /**
976
-     * Begin validating parameters
977
-     */
959
+	ob_start();
960
+	$defaults = array(
961
+		'post_number' => 5,
962
+		'relate_to' => 'category',
963
+		'layout' => 'gridview_onehalf',
964
+		'add_location_filter' => 0,
965
+		'listing_width' => '',
966
+		'list_sort' => 'latest',
967
+		'character_count' => 20,
968
+		'is_widget' => 1,
969
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
970
+	);
971
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
978 972
 
979
-    // Validate that post_number is a number and is 1 or higher
980
-    $params['post_number'] = absint($params['post_number']);
981
-    if (0 === $params['post_number']) {
982
-        $params['post_number'] = 1;
983
-    }
973
+	$params = shortcode_atts($defaults, $atts);
984 974
 
985
-    // Validate relate_to - only category or tags
986
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
987
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
988
-        $params['relate_to'] = 'category';
989
-    }
975
+	/**
976
+	 * Begin validating parameters
977
+	 */
990 978
 
991
-    // Validate layout selection
992
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
979
+	// Validate that post_number is a number and is 1 or higher
980
+	$params['post_number'] = absint($params['post_number']);
981
+	if (0 === $params['post_number']) {
982
+		$params['post_number'] = 1;
983
+	}
993 984
 
994
-    // Validate sorting option
995
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
985
+	// Validate relate_to - only category or tags
986
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
987
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
988
+		$params['relate_to'] = 'category';
989
+	}
990
+
991
+	// Validate layout selection
992
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
996 993
 
997
-    // Validate add_location_filter
998
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
994
+	// Validate sorting option
995
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
999 996
 
1000
-    // Validate listing_width
1001
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
997
+	// Validate add_location_filter
998
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
1002 999
 
1003
-    // Validate character_count
1004
-    if ($params['character_count'] !== '') {
1005
-        $params['character_count'] = absint($params['character_count']);
1006
-    }
1000
+	// Validate listing_width
1001
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1007 1002
 
1008
-    if ($related_display = geodir_related_posts_display($params)) {
1009
-        echo $related_display;
1010
-    }
1011
-    $output = ob_get_contents();
1003
+	// Validate character_count
1004
+	if ($params['character_count'] !== '') {
1005
+		$params['character_count'] = absint($params['character_count']);
1006
+	}
1007
+
1008
+	if ($related_display = geodir_related_posts_display($params)) {
1009
+		echo $related_display;
1010
+	}
1011
+	$output = ob_get_contents();
1012 1012
 
1013
-    ob_end_clean();
1013
+	ob_end_clean();
1014 1014
 
1015
-    return $output;
1015
+	return $output;
1016 1016
 }
1017 1017
 
1018 1018
 /**
@@ -1036,13 +1036,13 @@  discard block
 block discarded – undo
1036 1036
  * @return string Advanced search widget HTML.
1037 1037
  */
1038 1038
 function geodir_sc_advanced_search($atts) {
1039
-    $defaults = array(
1039
+	$defaults = array(
1040 1040
 		'title' => '',
1041 1041
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
1042
-        'after_widget' => '</section>',
1043
-        'before_title' => '<h3 class="widget-title">',
1044
-        'after_title' => '</h3>',
1045
-        'show_adv_search' => 'default',
1042
+		'after_widget' => '</section>',
1043
+		'before_title' => '<h3 class="widget-title">',
1044
+		'after_title' => '</h3>',
1045
+		'show_adv_search' => 'default',
1046 1046
 		'post_type' => ''
1047 1047
 	);
1048 1048
 	
@@ -1066,9 +1066,9 @@  discard block
 block discarded – undo
1066 1066
 	the_widget('geodir_advance_search_widget', $params, $params );
1067 1067
 	
1068 1068
 	$output = ob_get_contents();
1069
-    ob_end_clean();
1069
+	ob_end_clean();
1070 1070
 
1071
-    return $output;
1071
+	return $output;
1072 1072
 }
1073 1073
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
1074 1074
 
@@ -1114,48 +1114,48 @@  discard block
 block discarded – undo
1114 1114
 		'add_location_filter' => '1',
1115 1115
 		'tab_layout' => 'bestof-tabs-on-top',
1116 1116
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
1117
-        'after_widget' => '</section>',
1118
-        'before_title' => '<h3 class="widget-title">',
1119
-        'after_title' => '</h3>',
1117
+		'after_widget' => '</section>',
1118
+		'before_title' => '<h3 class="widget-title">',
1119
+		'after_title' => '</h3>',
1120 1120
 	);
1121 1121
 	$params = shortcode_atts($defaults, $atts);
1122 1122
 
1123
-    /**
1124
-     * Validate our incoming params
1125
-     */
1123
+	/**
1124
+	 * Validate our incoming params
1125
+	 */
1126 1126
 
1127
-    // Validate the selected post type, default to gd_place on fail
1128
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
1129
-        $params['post_type'] = 'gd_place';
1130
-    }
1127
+	// Validate the selected post type, default to gd_place on fail
1128
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
1129
+		$params['post_type'] = 'gd_place';
1130
+	}
1131 1131
 	
1132 1132
 	// Post limit needs to be a positive integer
1133
-    $params['post_limit'] = absint($params['post_limit']);
1134
-    if (0 == $params['post_limit']) {
1135
-        $params['post_limit'] = 5;
1136
-    }
1133
+	$params['post_limit'] = absint($params['post_limit']);
1134
+	if (0 == $params['post_limit']) {
1135
+		$params['post_limit'] = 5;
1136
+	}
1137 1137
 	
1138 1138
 	// Category limit needs to be a positive integer
1139
-    $params['categ_limit'] = absint($params['categ_limit']);
1140
-    if (0 == $params['categ_limit']) {
1141
-        $params['categ_limit'] = 3;
1142
-    }
1139
+	$params['categ_limit'] = absint($params['categ_limit']);
1140
+	if (0 == $params['categ_limit']) {
1141
+		$params['categ_limit'] = 3;
1142
+	}
1143 1143
 	
1144 1144
 	// Tab layout validation
1145
-    $params['tab_layout'] = $params['tab_layout'];
1146
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1147
-        $params['tab_layout'] = 'bestof-tabs-on-top';
1148
-    }
1145
+	$params['tab_layout'] = $params['tab_layout'];
1146
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1147
+		$params['tab_layout'] = 'bestof-tabs-on-top';
1148
+	}
1149 1149
 	
1150 1150
 	// Validate character_count
1151
-    $params['character_count'] = $params['character_count'];
1151
+	$params['character_count'] = $params['character_count'];
1152 1152
 
1153 1153
 	ob_start();
1154 1154
 	the_widget('geodir_bestof_widget', $params, $params);
1155
-    $output = ob_get_contents();
1156
-    ob_end_clean();
1155
+	$output = ob_get_contents();
1156
+	ob_end_clean();
1157 1157
 
1158
-    return $output;
1158
+	return $output;
1159 1159
 }
1160 1160
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1161 1161
 
@@ -1208,152 +1208,152 @@  discard block
 block discarded – undo
1208 1208
  * @return string HTML content to display geodirectory listings.
1209 1209
  */
1210 1210
 function geodir_sc_gd_listings($atts, $content = '') {
1211
-    global $post;
1212
-    $defaults = array(
1213
-        'title'                 => '',
1214
-        'post_type'             => 'gd_place',
1215
-        'category'              => 0,
1216
-        'list_sort'             => 'latest',
1217
-        'event_type'            => '',
1218
-        'post_number'           => 10,
1219
-        'post_author'           => '',
1220
-        'layout'                => 'gridview_onehalf',
1221
-        'listing_width'         => '',
1222
-        'character_count'       => 20,
1223
-        'add_location_filter'   => 1,
1224
-        'show_featured_only'    => '',
1225
-        'show_special_only'     => '',
1226
-        'with_pics_only'        => '',
1227
-        'with_videos_only'      => '',
1228
-        'with_pagination'       => '1',
1229
-        'top_pagination'        => '0',
1230
-        'bottom_pagination'     => '1',
1231
-        'without_no_results'    => 0,
1232
-        'tags'                  => '',
1233
-        'show_favorites_only'   => '',
1234
-        'favorites_by_user'     => '',
1235
-    );
1236
-    $params = shortcode_atts($defaults, $atts);
1237
-
1238
-    $params['title']        = wp_strip_all_tags($params['title']);
1239
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1240
-
1241
-    // Validate the selected category/ies - Grab the current list based on post_type
1242
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1243
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids', 'hide_empty' => 0));
1244
-
1245
-    // Make sure we have an array
1246
-    if (!(is_array($params['category']))) {
1247
-        $params['category'] = explode(',', $params['category']);
1248
-    }
1249
-
1250
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1251
-    // Otherwise it becomes empty and later on that will mean "All"
1252
-    $params['category']     = array_intersect($params['category'], $categories);
1253
-
1254
-    // Post_number needs to be a positive integer
1255
-    $params['post_number']  = absint($params['post_number']);
1256
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1211
+	global $post;
1212
+	$defaults = array(
1213
+		'title'                 => '',
1214
+		'post_type'             => 'gd_place',
1215
+		'category'              => 0,
1216
+		'list_sort'             => 'latest',
1217
+		'event_type'            => '',
1218
+		'post_number'           => 10,
1219
+		'post_author'           => '',
1220
+		'layout'                => 'gridview_onehalf',
1221
+		'listing_width'         => '',
1222
+		'character_count'       => 20,
1223
+		'add_location_filter'   => 1,
1224
+		'show_featured_only'    => '',
1225
+		'show_special_only'     => '',
1226
+		'with_pics_only'        => '',
1227
+		'with_videos_only'      => '',
1228
+		'with_pagination'       => '1',
1229
+		'top_pagination'        => '0',
1230
+		'bottom_pagination'     => '1',
1231
+		'without_no_results'    => 0,
1232
+		'tags'                  => '',
1233
+		'show_favorites_only'   => '',
1234
+		'favorites_by_user'     => '',
1235
+	);
1236
+	$params = shortcode_atts($defaults, $atts);
1237
+
1238
+	$params['title']        = wp_strip_all_tags($params['title']);
1239
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1240
+
1241
+	// Validate the selected category/ies - Grab the current list based on post_type
1242
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1243
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids', 'hide_empty' => 0));
1244
+
1245
+	// Make sure we have an array
1246
+	if (!(is_array($params['category']))) {
1247
+		$params['category'] = explode(',', $params['category']);
1248
+	}
1249
+
1250
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1251
+	// Otherwise it becomes empty and later on that will mean "All"
1252
+	$params['category']     = array_intersect($params['category'], $categories);
1253
+
1254
+	// Post_number needs to be a positive integer
1255
+	$params['post_number']  = absint($params['post_number']);
1256
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1257 1257
     
1258
-    // Post_number needs to be a positive integer
1259
-    if (!empty($atts['post_author'])) {
1260
-
1261
-        // 'current' left for backwards compatibility
1262
-        if ( ($atts['post_author'] == 'current' || $atts['post_author'] == 'current_author') && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1263
-            $params['post_author'] = $post->post_author;
1264
-        } else if ($atts['post_author'] == 'current_user' ) {
1265
-            if($uid = get_current_user_id()){
1266
-                $params['post_author'] = absint($uid);
1267
-            }else{
1268
-                $params['post_author'] = -1;// if not logged in then don't show any listings.
1269
-            }
1270
-
1271
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1272
-            $params['post_author'] = absint($atts['post_author']);
1273
-        } else {
1274
-            unset($params['post_author']);
1275
-        }
1276
-    } else {
1277
-        unset($params['post_author']);
1278
-    }
1279
-
1280
-    // Validate character_count
1281
-    //todo: is this necessary?
1282
-    $params['character_count']  = $params['character_count'];
1283
-
1284
-    // Validate our layout choice
1285
-    // Outside of the norm, I added some more simple terms to match the existing
1286
-    // So now I just run the switch to set it properly.
1287
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1288
-
1289
-    // Validate our sorting choice
1290
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
1291
-
1292
-    // Validate Listing width, used in the template widget-listing-listview.php
1293
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1294
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1295
-
1296
-    // Validate the checkboxes used on the widget
1297
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1298
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1299
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1300
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1301
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1302
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1303
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1304
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1258
+	// Post_number needs to be a positive integer
1259
+	if (!empty($atts['post_author'])) {
1260
+
1261
+		// 'current' left for backwards compatibility
1262
+		if ( ($atts['post_author'] == 'current' || $atts['post_author'] == 'current_author') && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1263
+			$params['post_author'] = $post->post_author;
1264
+		} else if ($atts['post_author'] == 'current_user' ) {
1265
+			if($uid = get_current_user_id()){
1266
+				$params['post_author'] = absint($uid);
1267
+			}else{
1268
+				$params['post_author'] = -1;// if not logged in then don't show any listings.
1269
+			}
1270
+
1271
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1272
+			$params['post_author'] = absint($atts['post_author']);
1273
+		} else {
1274
+			unset($params['post_author']);
1275
+		}
1276
+	} else {
1277
+		unset($params['post_author']);
1278
+	}
1279
+
1280
+	// Validate character_count
1281
+	//todo: is this necessary?
1282
+	$params['character_count']  = $params['character_count'];
1283
+
1284
+	// Validate our layout choice
1285
+	// Outside of the norm, I added some more simple terms to match the existing
1286
+	// So now I just run the switch to set it properly.
1287
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1288
+
1289
+	// Validate our sorting choice
1290
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
1291
+
1292
+	// Validate Listing width, used in the template widget-listing-listview.php
1293
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1294
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1295
+
1296
+	// Validate the checkboxes used on the widget
1297
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1298
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1299
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1300
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1301
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1302
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1303
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1304
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1305 1305
     
1306
-    // User favorites
1307
-    $params['show_favorites_only']  = gdsc_to_bool_val($params['show_favorites_only']);
1308
-    if (!empty($params['show_favorites_only'])) {
1309
-        if ($params['favorites_by_user'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1310
-            $params['favorites_by_user'] = $post->post_author;
1311
-        } else if ($params['favorites_by_user'] != 'current' && absint($params['favorites_by_user']) > 0) {
1312
-            $params['favorites_by_user'] = absint($atts['favorites_by_user']);
1313
-        } else if ($params['favorites_by_user'] != 'current' && $current_user_id = get_current_user_id()) {
1314
-            $params['favorites_by_user'] = $current_user_id;
1315
-        } else {
1316
-            $params['favorites_by_user'] = 0;
1317
-        }
1318
-    }
1319
-
1320
-    // Clean tags
1321
-    if (!empty($params['tags'])) {
1322
-        if (!is_array($params['tags'])) {
1323
-            $comma = _x(',', 'tag delimiter');
1324
-            if ( ',' !== $comma ) {
1325
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1326
-            }
1327
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1328
-            $params['tags'] = array_map('trim', $params['tags']);
1329
-        }
1330
-    } else {
1331
-        $params['tags'] = array();
1332
-    }
1333
-
1334
-    /**
1335
-     * End of validation
1336
-     */
1337
-    if (isset($atts['geodir_ajax'])) {
1338
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1339
-        unset($atts['geodir_ajax']);
1340
-    }
1341
-    if (isset($atts['pageno'])) {
1342
-        $params['pageno'] = $atts['pageno'];
1343
-        unset($atts['pageno']);
1344
-    }
1345
-
1346
-    if ( !empty($atts['shortcode_content']) ) {
1347
-        $content = $atts['shortcode_content'];
1348
-    }
1349
-    $params['shortcode_content'] = trim($content);
1350
-    $atts['shortcode_content'] = trim($content);
1306
+	// User favorites
1307
+	$params['show_favorites_only']  = gdsc_to_bool_val($params['show_favorites_only']);
1308
+	if (!empty($params['show_favorites_only'])) {
1309
+		if ($params['favorites_by_user'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1310
+			$params['favorites_by_user'] = $post->post_author;
1311
+		} else if ($params['favorites_by_user'] != 'current' && absint($params['favorites_by_user']) > 0) {
1312
+			$params['favorites_by_user'] = absint($atts['favorites_by_user']);
1313
+		} else if ($params['favorites_by_user'] != 'current' && $current_user_id = get_current_user_id()) {
1314
+			$params['favorites_by_user'] = $current_user_id;
1315
+		} else {
1316
+			$params['favorites_by_user'] = 0;
1317
+		}
1318
+	}
1319
+
1320
+	// Clean tags
1321
+	if (!empty($params['tags'])) {
1322
+		if (!is_array($params['tags'])) {
1323
+			$comma = _x(',', 'tag delimiter');
1324
+			if ( ',' !== $comma ) {
1325
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1326
+			}
1327
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1328
+			$params['tags'] = array_map('trim', $params['tags']);
1329
+		}
1330
+	} else {
1331
+		$params['tags'] = array();
1332
+	}
1333
+
1334
+	/**
1335
+	 * End of validation
1336
+	 */
1337
+	if (isset($atts['geodir_ajax'])) {
1338
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1339
+		unset($atts['geodir_ajax']);
1340
+	}
1341
+	if (isset($atts['pageno'])) {
1342
+		$params['pageno'] = $atts['pageno'];
1343
+		unset($atts['pageno']);
1344
+	}
1345
+
1346
+	if ( !empty($atts['shortcode_content']) ) {
1347
+		$content = $atts['shortcode_content'];
1348
+	}
1349
+	$params['shortcode_content'] = trim($content);
1350
+	$atts['shortcode_content'] = trim($content);
1351 1351
     
1352
-    $params['shortcode_atts']       = $atts;
1352
+	$params['shortcode_atts']       = $atts;
1353 1353
 
1354
-    $output = geodir_sc_gd_listings_output($params);
1354
+	$output = geodir_sc_gd_listings_output($params);
1355 1355
 
1356
-    return $output;
1356
+	return $output;
1357 1357
 }
1358 1358
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1359 1359
 
@@ -1393,56 +1393,56 @@  discard block
 block discarded – undo
1393 1393
  * @return string HTML content to display CPT categories.
1394 1394
  */
1395 1395
 function geodir_sc_cpt_categories_widget($atts, $content = '') {
1396
-    $defaults = array(
1397
-        'title' => '',
1398
-        'post_type' => '', // NULL for all
1399
-        'hide_empty' => '',
1400
-        'show_count' => '',
1401
-        'hide_icon' => '',
1402
-        'cpt_left' => '',
1403
-        'sort_by' => 'count',
1404
-        'max_count' => 'all',
1405
-        'max_level' => '1',
1406
-        'no_cpt_filter' => '',
1407
-        'no_cat_filter' => '',
1408
-        'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1409
-        'after_widget' => '</section>',
1410
-        'before_title' => '<h3 class="widget-title">',
1411
-        'after_title' => '</h3>',
1412
-    );
1413
-    $params = shortcode_atts($defaults, $atts);
1414
-
1415
-    /**
1416
-     * Validate our incoming params
1417
-     */
1418
-    // Make sure we have an array
1419
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1420
-     
1421
-    // Validate the checkboxes used on the widget
1422
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1423
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1424
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1425
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1396
+	$defaults = array(
1397
+		'title' => '',
1398
+		'post_type' => '', // NULL for all
1399
+		'hide_empty' => '',
1400
+		'show_count' => '',
1401
+		'hide_icon' => '',
1402
+		'cpt_left' => '',
1403
+		'sort_by' => 'count',
1404
+		'max_count' => 'all',
1405
+		'max_level' => '1',
1406
+		'no_cpt_filter' => '',
1407
+		'no_cat_filter' => '',
1408
+		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1409
+		'after_widget' => '</section>',
1410
+		'before_title' => '<h3 class="widget-title">',
1411
+		'after_title' => '</h3>',
1412
+	);
1413
+	$params = shortcode_atts($defaults, $atts);
1426 1414
 
1427
-    if ($params['max_count'] != 'all') {
1428
-        $params['max_count'] = absint($params['max_count']);
1429
-    }
1415
+	/**
1416
+	 * Validate our incoming params
1417
+	 */
1418
+	// Make sure we have an array
1419
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1420
+     
1421
+	// Validate the checkboxes used on the widget
1422
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1423
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1424
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1425
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1426
+
1427
+	if ($params['max_count'] != 'all') {
1428
+		$params['max_count'] = absint($params['max_count']);
1429
+	}
1430 1430
 
1431
-    if ($params['max_level'] != 'all') {
1432
-        $params['max_level'] = absint($params['max_level']);
1433
-    }
1431
+	if ($params['max_level'] != 'all') {
1432
+		$params['max_level'] = absint($params['max_level']);
1433
+	}
1434 1434
 
1435
-    $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1436
-    $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1435
+	$params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1436
+	$params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1437 1437
 
1438
-    $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1438
+	$params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1439 1439
 
1440
-    ob_start();
1441
-    the_widget('geodir_cpt_categories_widget', $params, $params);
1442
-    $output = ob_get_contents();
1443
-    ob_end_clean();
1440
+	ob_start();
1441
+	the_widget('geodir_cpt_categories_widget', $params, $params);
1442
+	$output = ob_get_contents();
1443
+	ob_end_clean();
1444 1444
 
1445
-    return $output;
1445
+	return $output;
1446 1446
 }
1447 1447
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1448 1448
 
@@ -1457,6 +1457,6 @@  discard block
 block discarded – undo
1457 1457
  * @return string HTML code.
1458 1458
  */
1459 1459
 function geodir_sc_responsive_videos($atts, $content) {
1460
-    return '<div class="geodir-video-wrapper">'.$content.'</div>';
1460
+	return '<div class="geodir-video-wrapper">'.$content.'</div>';
1461 1461
 }
1462 1462
 add_shortcode('gd_video', 'geodir_sc_responsive_videos');
1463 1463
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -197,14 +197,14 @@  discard block
 block discarded – undo
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199 199
         $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
200
+        if (get_option('geodir_marker_cluster_type')) {
201 201
             if ($map_args['autozoom']) {
202 202
                 $map_args['enable_marker_cluster_no_reposition'] = false;
203 203
             } else {
204 204
                 $map_args['enable_marker_cluster_no_reposition'] = true;
205 205
             }
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+            $map_args['enable_marker_cluster_server'] = true;
208 208
 
209 209
         }
210 210
 	} else {
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 	}
213 213
 
214 214
     // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
215
+    if (!empty($params['latitude']) && !empty($params['longitude'])) {
216 216
         $map_args['enable_marker_cluster_no_reposition'] = true;
217 217
     }
218 218
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267 267
     // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
268
+    if (isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type'])) {
269 269
 
270 270
         global $add_post_in_marker_array, $gd_sc_map_params;
271 271
         $backup_globals                             = array();
@@ -288,34 +288,34 @@  discard block
 block discarded – undo
288 288
             'event_type'     => 'all'
289 289
         );
290 290
 
291
-        $params = shortcode_atts( $defaults, $atts );
291
+        $params = shortcode_atts($defaults, $atts);
292 292
 
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
293
+        if (!(gdsc_is_post_type_valid($params['post_type']))) {
294 294
             $params['post_type'] = 'gd_place';
295 295
         }
296 296
 
297 297
         // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
298
+        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
299
+        $categories        = get_terms($category_taxonomy, array(
300 300
             'orderby' => 'count',
301 301
             'order'   => 'DESC',
302 302
             'fields'  => 'ids'
303
-        ) );
303
+        ));
304 304
 
305 305
         // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
306
+        if (!(is_array($params['category']))) {
307
+            $params['category'] = explode(',', $params['category']);
308 308
         }
309 309
 
310 310
         // Array_intersect returns only the items in $params['category'] that are also in our category list
311 311
         // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
312
+        $params['category'] = array_intersect($params['category'], $categories);
313 313
 
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
314
+        if ($params['post_type'] == 'gd_event') {
315
+            $params['event_type'] = gdsc_validate_list_filter_choice($params['event_type']);
316 316
         }
317 317
 
318
-        $params = gdsc_validate_map_args( $params );
318
+        $params = gdsc_validate_map_args($params);
319 319
 
320 320
         $gd_sc_map_params = $params;
321 321
 
@@ -326,12 +326,12 @@  discard block
 block discarded – undo
326 326
             'post_type'      => $params['post_type'],
327 327
         );
328 328
 
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
329
+        if (!empty($params['category']) && isset($params['category'][0]) && (int) $params['category'][0] != 0) {
330
+            $category_taxonomy = geodir_get_taxonomies($params['post_type']);
331 331
 
332 332
             ######### WPML #########
333
-            if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
333
+            if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
334
+                $category = gd_lang_object_ids($params['category'], $category_taxonomy[0]);
335 335
             }
336 336
             ######### WPML #########
337 337
 
@@ -341,36 +341,36 @@  discard block
 block discarded – undo
341 341
                 'terms'    => $params['category']
342 342
             );
343 343
 
344
-            $query_args['tax_query'] = array( $tax_query );
344
+            $query_args['tax_query'] = array($tax_query);
345 345
         }
346 346
 
347 347
         $add_post_in_marker_array = true;
348 348
 
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
349
+        if ($params['post_type'] == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
350 350
             global $geodir_event_widget_listview;
351 351
             $geodir_event_widget_listview = true;
352 352
 
353 353
             $query_args['geodir_event_type'] = $params['event_type'];
354 354
 
355
-            $listings = geodir_event_get_widget_events( $query_args );
355
+            $listings = geodir_event_get_widget_events($query_args);
356 356
 
357 357
             $geodir_event_widget_listview = false;
358 358
         } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
359
+            $listings = geodir_get_widget_listings($query_args);
360 360
         }
361 361
 
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
362
+        if (!empty($listings)) {
363
+            foreach ($listings as $listing) {
364
+                create_marker_jason_of_posts($listing);
365 365
             }
366 366
         }
367 367
 
368 368
         ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
369
+        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
370 370
 
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
371
+        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
372 372
 
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
373
+        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
374 374
 
375 375
         $default_location = geodir_get_default_location();
376 376
 
@@ -391,17 +391,17 @@  discard block
 block discarded – undo
391 391
             'enable_location_filters'  => false,
392 392
             'enable_jason_on_load'     => true,
393 393
             'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
394
+            'latitude'                 => isset($default_location->city_latitude) ? $default_location->city_latitude : '',
395
+            'longitude'                => isset($default_location->city_longitude) ? $default_location->city_longitude : '',
396 396
             'streetViewControl'        => true,
397 397
             'showPreview'              => '0',
398 398
             'maxZoom'                  => 21,
399 399
             'bubble_size'              => 'small',
400 400
         );
401 401
 
402
-        if ( is_single() ) {
402
+        if (is_single()) {
403 403
             global $post;
404
-            if ( isset( $post->post_latitude ) ) {
404
+            if (isset($post->post_latitude)) {
405 405
                 $map_args['latitude']  = $post->post_latitude;
406 406
                 $map_args['longitude'] = $post->post_longitude;
407 407
             }
@@ -412,24 +412,24 @@  discard block
 block discarded – undo
412 412
         }
413 413
 
414 414
         // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
415
+        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
416 416
             $map_args['enable_marker_cluster'] = true;
417 417
         } else {
418 418
             $map_args['enable_marker_cluster'] = false;
419 419
         }
420 420
 
421
-        geodir_draw_map( $map_args );
421
+        geodir_draw_map($map_args);
422 422
 
423 423
         $output = ob_get_contents();
424 424
 
425 425
         ob_end_clean();
426 426
 
427
-        foreach ( $backup_globals as $global => $value ) {
427
+        foreach ($backup_globals as $global => $value) {
428 428
             ${$global} = $value;
429 429
         }
430 430
 
431 431
         return $output;
432
-    }else{
432
+    } else {
433 433
         ob_start();
434 434
         add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435 435
         add_action('the_post', 'create_list_jsondata'); // Add marker in json array
@@ -1050,20 +1050,20 @@  discard block
 block discarded – undo
1050 1050
 	
1051 1051
 	$show_adv_search = isset($params['show_adv_search']) && in_array($params['show_adv_search'], array('default', 'always', 'searched')) ? $params['show_adv_search'] : '';
1052 1052
 	
1053
-	if ($show_adv_search != '' ) {
1054
-		$show_adv_class = 'geodir-advance-search-' . $show_adv_search . ' ';
1053
+	if ($show_adv_search != '') {
1054
+		$show_adv_class = 'geodir-advance-search-'.$show_adv_search.' ';
1055 1055
 		if ($show_adv_search == 'searched' && geodir_is_page('search')) {
1056 1056
 			$show_adv_search = 'search';
1057 1057
 		}
1058
-		$show_adv_attrs = 'data-show-adv="' . $show_adv_search . '"';
1058
+		$show_adv_attrs = 'data-show-adv="'.$show_adv_search.'"';
1059 1059
 		
1060
-		$params['before_widget'] = str_replace('class="', $show_adv_attrs . ' class="' . $show_adv_class, $params['before_widget']);
1060
+		$params['before_widget'] = str_replace('class="', $show_adv_attrs.' class="'.$show_adv_class, $params['before_widget']);
1061 1061
 	}
1062 1062
 	
1063 1063
 	ob_start();
1064 1064
 	
1065 1065
 	//geodir_get_template_part('listing', 'filter-form');
1066
-	the_widget('geodir_advance_search_widget', $params, $params );
1066
+	the_widget('geodir_advance_search_widget', $params, $params);
1067 1067
 	
1068 1068
 	$output = ob_get_contents();
1069 1069
     ob_end_clean();
@@ -1259,13 +1259,13 @@  discard block
 block discarded – undo
1259 1259
     if (!empty($atts['post_author'])) {
1260 1260
 
1261 1261
         // 'current' left for backwards compatibility
1262
-        if ( ($atts['post_author'] == 'current' || $atts['post_author'] == 'current_author') && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1262
+        if (($atts['post_author'] == 'current' || $atts['post_author'] == 'current_author') && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1263 1263
             $params['post_author'] = $post->post_author;
1264
-        } else if ($atts['post_author'] == 'current_user' ) {
1265
-            if($uid = get_current_user_id()){
1264
+        } else if ($atts['post_author'] == 'current_user') {
1265
+            if ($uid = get_current_user_id()) {
1266 1266
                 $params['post_author'] = absint($uid);
1267
-            }else{
1268
-                $params['post_author'] = -1;// if not logged in then don't show any listings.
1267
+            } else {
1268
+                $params['post_author'] = -1; // if not logged in then don't show any listings.
1269 1269
             }
1270 1270
 
1271 1271
         } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
@@ -1279,7 +1279,7 @@  discard block
 block discarded – undo
1279 1279
 
1280 1280
     // Validate character_count
1281 1281
     //todo: is this necessary?
1282
-    $params['character_count']  = $params['character_count'];
1282
+    $params['character_count'] = $params['character_count'];
1283 1283
 
1284 1284
     // Validate our layout choice
1285 1285
     // Outside of the norm, I added some more simple terms to match the existing
@@ -1291,7 +1291,7 @@  discard block
 block discarded – undo
1291 1291
 
1292 1292
     // Validate Listing width, used in the template widget-listing-listview.php
1293 1293
     // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1294
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1294
+    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1295 1295
 
1296 1296
     // Validate the checkboxes used on the widget
1297 1297
     $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
@@ -1321,7 +1321,7 @@  discard block
 block discarded – undo
1321 1321
     if (!empty($params['tags'])) {
1322 1322
         if (!is_array($params['tags'])) {
1323 1323
             $comma = _x(',', 'tag delimiter');
1324
-            if ( ',' !== $comma ) {
1324
+            if (',' !== $comma) {
1325 1325
                 $params['tags'] = str_replace($comma, ',', $params['tags']);
1326 1326
             }
1327 1327
             $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
@@ -1343,13 +1343,13 @@  discard block
 block discarded – undo
1343 1343
         unset($atts['pageno']);
1344 1344
     }
1345 1345
 
1346
-    if ( !empty($atts['shortcode_content']) ) {
1346
+    if (!empty($atts['shortcode_content'])) {
1347 1347
         $content = $atts['shortcode_content'];
1348 1348
     }
1349 1349
     $params['shortcode_content'] = trim($content);
1350 1350
     $atts['shortcode_content'] = trim($content);
1351 1351
     
1352
-    $params['shortcode_atts']       = $atts;
1352
+    $params['shortcode_atts'] = $atts;
1353 1353
 
1354 1354
     $output = geodir_sc_gd_listings_output($params);
1355 1355
 
@@ -1421,8 +1421,8 @@  discard block
 block discarded – undo
1421 1421
     // Validate the checkboxes used on the widget
1422 1422
     $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1423 1423
     $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1424
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1425
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1424
+    $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']);
1425
+    $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']);
1426 1426
 
1427 1427
     if ($params['max_count'] != 'all') {
1428 1428
         $params['max_count'] = absint($params['max_count']);
Please login to merge, or discard this patch.
geodirectory-admin/admin_functions.php 2 patches
Indentation   +2946 added lines, -2946 removed lines patch added patch discarded remove patch
@@ -13,133 +13,133 @@  discard block
 block discarded – undo
13 13
  * @package GeoDirectory
14 14
  */
15 15
 function geodir_deactivation() {
16
-    // Update installed variable
17
-    update_option("geodir_installed", 0);
16
+	// Update installed variable
17
+	update_option("geodir_installed", 0);
18 18
 
19
-    // Remove rewrite rules and then recreate rewrite rules.
20
-    flush_rewrite_rules();
19
+	// Remove rewrite rules and then recreate rewrite rules.
20
+	flush_rewrite_rules();
21 21
 }
22 22
 
23 23
 if (!function_exists('geodir_admin_styles')) {
24
-    /**
25
-     * Enqueue Admin Styles.
26
-     *
27
-     * @since 1.0.0
28
-     * @package GeoDirectory
29
-     */
30
-    function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32
-        wp_enqueue_style('geodirectory-admin-css');
24
+	/**
25
+	 * Enqueue Admin Styles.
26
+	 *
27
+	 * @since 1.0.0
28
+	 * @package GeoDirectory
29
+	 */
30
+	function geodir_admin_styles() {
31
+		wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32
+		wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35
-        wp_enqueue_style('geodirectory-frontend-style');
34
+		wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35
+		wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38
-        wp_enqueue_style('geodir-chosen-style');
37
+		wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38
+		wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41
-        wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
40
+		wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41
+		wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44
-        wp_enqueue_style('geodirectory-jquery-ui-css');
43
+		wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44
+		wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47
-        wp_enqueue_style('geodirectory-custom-fields-css');
46
+		wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47
+		wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50
-        wp_enqueue_style('geodirectory-pluplodar-css');
49
+		wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50
+		wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53
-        wp_enqueue_style('geodir-rating-style');
52
+		wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53
+		wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56
-        wp_enqueue_style('geodir-rtl-style');
57
-    }
55
+		wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56
+		wp_enqueue_style('geodir-rtl-style');
57
+	}
58 58
 }
59 59
 
60 60
 if (!function_exists('geodir_admin_styles_req')) {
61
-    /**
62
-     * Loads stylesheets from CDN.
63
-     *
64
-     * @since 1.0.0
65
-     * @package GeoDirectory
66
-     */
67
-    function geodir_admin_styles_req()
68
-    {
61
+	/**
62
+	 * Loads stylesheets from CDN.
63
+	 *
64
+	 * @since 1.0.0
65
+	 * @package GeoDirectory
66
+	 */
67
+	function geodir_admin_styles_req()
68
+	{
69 69
 
70
-        wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71
-        wp_enqueue_style('font-awesome');
70
+		wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71
+		wp_enqueue_style('font-awesome');
72 72
 
73
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74
-        wp_enqueue_script('geodirectory-admin');
73
+		wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74
+		wp_enqueue_script('geodirectory-admin');
75 75
 
76
-    }
76
+	}
77 77
 }
78 78
 
79 79
 if (!function_exists('geodir_admin_scripts')) {
80
-    /**
81
-     * Enqueue Admin Scripts.
82
-     *
83
-     * @since 1.0.0
84
-     * @package GeoDirectory
85
-     */
86
-    function geodir_admin_scripts()
87
-    {
88
-        $geodir_map_name = geodir_map_name();
80
+	/**
81
+	 * Enqueue Admin Scripts.
82
+	 *
83
+	 * @since 1.0.0
84
+	 * @package GeoDirectory
85
+	 */
86
+	function geodir_admin_scripts()
87
+	{
88
+		$geodir_map_name = geodir_map_name();
89 89
         
90
-        wp_enqueue_script('jquery');
90
+		wp_enqueue_script('jquery');
91 91
 
92
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
92
+		wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93 93
 
94
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95
-        wp_enqueue_script('chosen');
94
+		wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95
+		wp_enqueue_script('chosen');
96 96
 
97
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98
-        wp_enqueue_script('geodirectory-choose-ajax');
97
+		wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98
+		wp_enqueue_script('geodirectory-choose-ajax');
99 99
 
100
-        if (isset($_REQUEST['listing_type'])) {
101
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102
-        }
100
+		if (isset($_REQUEST['listing_type'])) {
101
+			wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102
+		}
103 103
 
104
-        wp_enqueue_script('geodirectory-custom-fields-script');
105
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
104
+		wp_enqueue_script('geodirectory-custom-fields-script');
105
+		$plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
106 106
 
107
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
107
+		wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
108 108
 
109
-        if (in_array($geodir_map_name, array('auto', 'google'))) {
110
-            $map_lang = "&language=" . geodir_get_map_default_language();
111
-            $map_key = "&key=" . geodir_get_map_api_key();
112
-            /** This filter is documented in geodirectory_template_tags.php */
113
-            $map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
-            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
109
+		if (in_array($geodir_map_name, array('auto', 'google'))) {
110
+			$map_lang = "&language=" . geodir_get_map_default_language();
111
+			$map_key = "&key=" . geodir_get_map_api_key();
112
+			/** This filter is documented in geodirectory_template_tags.php */
113
+			$map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
+			wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
115 115
             
116
-            // Overlapping Marker Spiderfier
117
-            wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
118
-            wp_enqueue_script('geodirectory-g-overlappingmarker-script');
119
-        }
116
+			// Overlapping Marker Spiderfier
117
+			wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
118
+			wp_enqueue_script('geodirectory-g-overlappingmarker-script');
119
+		}
120 120
         
121
-        if ($geodir_map_name == 'osm') {
122
-            // Leaflet OpenStreetMap
123
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
124
-            wp_enqueue_style('geodirectory-leaflet-style');
121
+		if ($geodir_map_name == 'osm') {
122
+			// Leaflet OpenStreetMap
123
+			wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
124
+			wp_enqueue_style('geodirectory-leaflet-style');
125 125
                 
126
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
127
-            wp_enqueue_script('geodirectory-leaflet-script');
126
+			wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
127
+			wp_enqueue_script('geodirectory-leaflet-script');
128 128
             
129
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
130
-            wp_enqueue_script('geodirectory-leaflet-geo-script');
129
+			wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
130
+			wp_enqueue_script('geodirectory-leaflet-geo-script');
131 131
             
132
-            // Overlapping Marker Spiderfier Leaflet
133
-            wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
134
-            wp_enqueue_script('geodirectory-o-overlappingmarker-script');
135
-        }
136
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
132
+			// Overlapping Marker Spiderfier Leaflet
133
+			wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
134
+			wp_enqueue_script('geodirectory-o-overlappingmarker-script');
135
+		}
136
+		wp_enqueue_script( 'jquery-ui-autocomplete' );
137 137
         
138
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
139
-        wp_enqueue_script('geodirectory-goMap-script');
138
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
139
+		wp_enqueue_script('geodirectory-goMap-script');
140 140
 
141
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
142
-        wp_enqueue_script('geodirectory-goMap-script');
141
+		wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
142
+		wp_enqueue_script('geodirectory-goMap-script');
143 143
 
144 144
 		// font awesome rating script
145 145
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
@@ -150,167 +150,167 @@  discard block
 block discarded – undo
150 150
 			wp_enqueue_script('geodir-jRating-js');
151 151
 		}
152 152
 
153
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
154
-        wp_enqueue_script('geodir-on-document-load');
155
-
156
-
157
-        // SCRIPT FOR UPLOAD
158
-        wp_enqueue_script('plupload-all');
159
-        wp_enqueue_script('jquery-ui-sortable');
160
-
161
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
162
-        wp_enqueue_script('geodirectory-plupload-script');
163
-
164
-        // SCRIPT FOR UPLOAD END
165
-
166
-
167
-        // place js config array for plupload
168
-        $plupload_init = array(
169
-            'runtimes' => 'html5,silverlight,flash,html4',
170
-            'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
171
-            'container' => 'plupload-upload-ui', // will be adjusted per uploader
172
-            'drop_element' => 'dropbox', // will be adjusted per uploader
173
-            'file_data_name' => 'async-upload', // will be adjusted per uploader
174
-            'multiple_queues' => true,
175
-            'max_file_size' => geodir_max_upload_size(),
176
-            'url' => admin_url('admin-ajax.php'),
177
-            'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
178
-            'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
179
-            'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
180
-            'multipart' => true,
181
-            'urlstream_upload' => true,
182
-            'multi_selection' => false, // will be added per uploader
183
-            // additional post data to send to our ajax hook
184
-            'multipart_params' => array(
185
-                '_ajax_nonce' => "", // will be added per uploader
186
-                'action' => 'plupload_action', // the ajax action name
187
-                'imgid' => 0 // will be added per uploader
188
-            )
189
-        );
190
-        $base_plupload_config = json_encode($plupload_init);
191
-
192
-
193
-        $thumb_img_arr = array();
194
-
195
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
196
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
197
-
198
-        $totImg = '';
199
-        $image_limit = '';
200
-        if (!empty($thumb_img_arr)) {
201
-            $totImg = count($thumb_img_arr);
202
-        }
153
+		wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
154
+		wp_enqueue_script('geodir-on-document-load');
155
+
156
+
157
+		// SCRIPT FOR UPLOAD
158
+		wp_enqueue_script('plupload-all');
159
+		wp_enqueue_script('jquery-ui-sortable');
160
+
161
+		wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
162
+		wp_enqueue_script('geodirectory-plupload-script');
163
+
164
+		// SCRIPT FOR UPLOAD END
165
+
166
+
167
+		// place js config array for plupload
168
+		$plupload_init = array(
169
+			'runtimes' => 'html5,silverlight,flash,html4',
170
+			'browse_button' => 'plupload-browse-button', // will be adjusted per uploader
171
+			'container' => 'plupload-upload-ui', // will be adjusted per uploader
172
+			'drop_element' => 'dropbox', // will be adjusted per uploader
173
+			'file_data_name' => 'async-upload', // will be adjusted per uploader
174
+			'multiple_queues' => true,
175
+			'max_file_size' => geodir_max_upload_size(),
176
+			'url' => admin_url('admin-ajax.php'),
177
+			'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
178
+			'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
179
+			'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
180
+			'multipart' => true,
181
+			'urlstream_upload' => true,
182
+			'multi_selection' => false, // will be added per uploader
183
+			// additional post data to send to our ajax hook
184
+			'multipart_params' => array(
185
+				'_ajax_nonce' => "", // will be added per uploader
186
+				'action' => 'plupload_action', // the ajax action name
187
+				'imgid' => 0 // will be added per uploader
188
+			)
189
+		);
190
+		$base_plupload_config = json_encode($plupload_init);
191
+
192
+
193
+		$thumb_img_arr = array();
194
+
195
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
196
+			$thumb_img_arr = geodir_get_images($_REQUEST['pid']);
197
+
198
+		$totImg = '';
199
+		$image_limit = '';
200
+		if (!empty($thumb_img_arr)) {
201
+			$totImg = count($thumb_img_arr);
202
+		}
203 203
 
204
-        $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
205
-            'totalImg' => $totImg,
206
-            'image_limit' => $image_limit,
207
-            'upload_img_size' => geodir_max_upload_size());
204
+		$gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
205
+			'totalImg' => $totImg,
206
+			'image_limit' => $image_limit,
207
+			'upload_img_size' => geodir_max_upload_size());
208 208
 
209
-        wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
209
+		wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
210 210
 
211
-        $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
212
-        wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
211
+		$ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
212
+		wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
213 213
 
214 214
 
215
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
216
-        wp_enqueue_script('geodirectory-admin-script');
215
+		wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
216
+		wp_enqueue_script('geodirectory-admin-script');
217 217
 
218
-        wp_enqueue_style('farbtastic');
219
-        wp_enqueue_script('farbtastic');
218
+		wp_enqueue_style('farbtastic');
219
+		wp_enqueue_script('farbtastic');
220 220
 
221
-        $screen = get_current_screen();
222
-        if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
223
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
224
-        }
221
+		$screen = get_current_screen();
222
+		if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
223
+			wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
224
+		}
225 225
 
226
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
227
-        wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
226
+		$ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
227
+		wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
228 228
 
229
-    }
229
+	}
230 230
 }
231 231
 
232 232
 if (!function_exists('geodir_admin_menu')) {
233
-    /**
234
-     * Admin Menus
235
-     *
236
-     * Sets up the admin menus in wordpress.
237
-     *
238
-     * @since 1.0.0
239
-     * @package GeoDirectory
240
-     * @global array $menu Menu array.
241
-     * @global object $geodirectory GeoDirectory plugin object.
242
-     */
243
-    function geodir_admin_menu()
244
-    {
245
-        global $menu, $geodirectory;
233
+	/**
234
+	 * Admin Menus
235
+	 *
236
+	 * Sets up the admin menus in wordpress.
237
+	 *
238
+	 * @since 1.0.0
239
+	 * @package GeoDirectory
240
+	 * @global array $menu Menu array.
241
+	 * @global object $geodirectory GeoDirectory plugin object.
242
+	 */
243
+	function geodir_admin_menu()
244
+	{
245
+		global $menu, $geodirectory;
246 246
 
247
-        if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
247
+		if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
248 248
 
249
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
249
+		add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
250 250
 
251 251
 
252
-    }
252
+	}
253 253
 }
254 254
 
255 255
 if (!function_exists('geodir_admin_menu_order')) {
256
-    /**
257
-     * Order admin menus.
258
-     *
259
-     * @since 1.0.0
260
-     * @package GeoDirectory
261
-     * @param array $menu_order Menu order array.
262
-     * @return array Modified menu order array.
263
-     */
264
-    function geodir_admin_menu_order($menu_order)
265
-    {
266
-
267
-        // Initialize our custom order array
268
-        $geodir_menu_order = array();
269
-
270
-        // Get the index of our custom separator
271
-        $geodir_separator = array_search('separator-geodirectory', $menu_order);
272
-
273
-        // Get index of posttype menu
274
-        $post_types = geodir_get_posttypes();
275
-
276
-        // Loop through menu order and do some rearranging
277
-        foreach ($menu_order as $index => $item) :
278
-
279
-            if ((('geodirectory') == $item)) :
280
-                $geodir_menu_order[] = 'separator-geodirectory';
281
-                if (!empty($post_types)) {
282
-                    foreach ($post_types as $post_type) {
283
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
284
-                    }
285
-                }
286
-                $geodir_menu_order[] = $item;
256
+	/**
257
+	 * Order admin menus.
258
+	 *
259
+	 * @since 1.0.0
260
+	 * @package GeoDirectory
261
+	 * @param array $menu_order Menu order array.
262
+	 * @return array Modified menu order array.
263
+	 */
264
+	function geodir_admin_menu_order($menu_order)
265
+	{
287 266
 
288
-                unset($menu_order[$geodir_separator]);
289
-            //unset( $menu_order[$geodir_places] );
290
-            elseif (!in_array($item, array('separator-geodirectory'))) :
291
-                $geodir_menu_order[] = $item;
292
-            endif;
267
+		// Initialize our custom order array
268
+		$geodir_menu_order = array();
293 269
 
294
-        endforeach;
270
+		// Get the index of our custom separator
271
+		$geodir_separator = array_search('separator-geodirectory', $menu_order);
295 272
 
296
-        // Return order
297
-        return $geodir_menu_order;
298
-    }
273
+		// Get index of posttype menu
274
+		$post_types = geodir_get_posttypes();
275
+
276
+		// Loop through menu order and do some rearranging
277
+		foreach ($menu_order as $index => $item) :
278
+
279
+			if ((('geodirectory') == $item)) :
280
+				$geodir_menu_order[] = 'separator-geodirectory';
281
+				if (!empty($post_types)) {
282
+					foreach ($post_types as $post_type) {
283
+						$geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
284
+					}
285
+				}
286
+				$geodir_menu_order[] = $item;
287
+
288
+				unset($menu_order[$geodir_separator]);
289
+			//unset( $menu_order[$geodir_places] );
290
+			elseif (!in_array($item, array('separator-geodirectory'))) :
291
+				$geodir_menu_order[] = $item;
292
+			endif;
293
+
294
+		endforeach;
295
+
296
+		// Return order
297
+		return $geodir_menu_order;
298
+	}
299 299
 }
300 300
 
301 301
 if (!function_exists('geodir_admin_custom_menu_order')) {
302
-    /**
303
-     * Enables custom menu order.
304
-     *
305
-     * @since 1.0.0
306
-     * @package GeoDirectory
307
-     * @return bool
308
-     */
309
-    function geodir_admin_custom_menu_order()
310
-    {
311
-        if (!current_user_can('manage_options')) return false;
312
-        return true;
313
-    }
302
+	/**
303
+	 * Enables custom menu order.
304
+	 *
305
+	 * @since 1.0.0
306
+	 * @package GeoDirectory
307
+	 * @return bool
308
+	 */
309
+	function geodir_admin_custom_menu_order()
310
+	{
311
+		if (!current_user_can('manage_options')) return false;
312
+		return true;
313
+	}
314 314
 }
315 315
 
316 316
 /**
@@ -321,51 +321,51 @@  discard block
 block discarded – undo
321 321
  */
322 322
 function geodir_before_admin_panel()
323 323
 {
324
-    if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
325
-        echo '<div id="message" class="updated fade">
324
+	if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
325
+		echo '<div id="message" class="updated fade">
326 326
                         <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>
327 327
                         <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
328 328
                 </div>';
329 329
 
330
-    }
330
+	}
331 331
 
332
-    if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
333
-        switch ($_REQUEST['msg']) {
334
-            case 'success':
335
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
336
-                flush_rewrite_rules(false);
332
+	if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
333
+		switch ($_REQUEST['msg']) {
334
+			case 'success':
335
+				echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
336
+				flush_rewrite_rules(false);
337 337
 
338
-                break;
338
+				break;
339 339
 			case 'fail':
340 340
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
341 341
 				
342 342
 				if ($gderr == 21)
343
-			    	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>';
343
+					echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
344 344
 				else
345 345
 					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
346
-                break;
347
-        }
348
-    }
346
+				break;
347
+		}
348
+	}
349 349
 
350
-    $geodir_load_map = get_option('geodir_load_map');
351
-    $need_map_key = false;
352
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
353
-        $need_map_key = true;
354
-    }
350
+	$geodir_load_map = get_option('geodir_load_map');
351
+	$need_map_key = false;
352
+	if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
353
+		$need_map_key = true;
354
+	}
355 355
 
356
-    if (!geodir_get_map_api_key() && $need_map_key) {
357
-        echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
358
-    }
356
+	if (!geodir_get_map_api_key() && $need_map_key) {
357
+		echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
358
+	}
359 359
 
360
-    if (!geodir_is_default_location_set()) {
361
-        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>';
360
+	if (!geodir_is_default_location_set()) {
361
+		echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
362 362
 
363
-    }
363
+	}
364 364
 
365
-    if (!function_exists('curl_init')) {
366
-        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>';
365
+	if (!function_exists('curl_init')) {
366
+		echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
367 367
 
368
-    }
368
+	}
369 369
 
370 370
 
371 371
 
@@ -382,19 +382,19 @@  discard block
 block discarded – undo
382 382
  */
383 383
 function geodir_handle_option_form_submit($current_tab)
384 384
 {
385
-    global $geodir_settings;
386
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
387
-        /**
388
-         * Contains settings array for current tab.
389
-         *
390
-         * @since 1.0.0
391
-         * @package GeoDirectory
392
-         */
393
-        include_once('option-pages/' . $current_tab . '_array.php');
394
-    }
395
-    if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
396
-        if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
397
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
385
+	global $geodir_settings;
386
+	if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
387
+		/**
388
+		 * Contains settings array for current tab.
389
+		 *
390
+		 * @since 1.0.0
391
+		 * @package GeoDirectory
392
+		 */
393
+		include_once('option-pages/' . $current_tab . '_array.php');
394
+	}
395
+	if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
396
+		if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
397
+		if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
398 398
 		
399 399
 		/**
400 400
 		 * Fires before updating geodirectory admin settings.
@@ -406,38 +406,38 @@  discard block
 block discarded – undo
406 406
 		 */
407 407
 		do_action('geodir_before_update_options', $current_tab, $geodir_settings);		
408 408
 		
409
-        if (!empty($geodir_settings[$current_tab]))
410
-            geodir_update_options($geodir_settings[$current_tab]);
409
+		if (!empty($geodir_settings[$current_tab]))
410
+			geodir_update_options($geodir_settings[$current_tab]);
411 411
 
412
-        /**
413
-         * Called after GeoDirectory options settings are updated.
414
-         *
415
-         * @since 1.0.0
416
-         * @param array $geodir_settings The array of GeoDirectory settings.
417
-         * @see 'geodir_before_update_options'
418
-         */
419
-        do_action('geodir_update_options', $geodir_settings);
412
+		/**
413
+		 * Called after GeoDirectory options settings are updated.
414
+		 *
415
+		 * @since 1.0.0
416
+		 * @param array $geodir_settings The array of GeoDirectory settings.
417
+		 * @see 'geodir_before_update_options'
418
+		 */
419
+		do_action('geodir_update_options', $geodir_settings);
420 420
 
421
-        /**
422
-         * Called after GeoDirectory options settings are updated.
423
-         *
424
-         * Provides tab specific settings.
425
-         *
426
-         * @since 1.0.0
427
-         * @param string $current_tab The current settings tab name.
428
-         * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
429
-         */
430
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
421
+		/**
422
+		 * Called after GeoDirectory options settings are updated.
423
+		 *
424
+		 * Provides tab specific settings.
425
+		 *
426
+		 * @since 1.0.0
427
+		 * @param string $current_tab The current settings tab name.
428
+		 * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
429
+		 */
430
+		do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
431 431
 
432
-        flush_rewrite_rules(false);
432
+		flush_rewrite_rules(false);
433 433
 
434
-        $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
434
+		$current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
435 435
 
436
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
436
+		$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
437 437
 
438
-        wp_redirect($redirect_url);
439
-        exit();
440
-    endif;
438
+		wp_redirect($redirect_url);
439
+		exit();
440
+	endif;
441 441
 
442 442
 
443 443
 }
@@ -455,144 +455,144 @@  discard block
 block discarded – undo
455 455
  * @return bool Returns true if saved.
456 456
  */
457 457
 function geodir_update_options($options, $dummy = false) {
458
-    if ((!isset($_POST) || !$_POST) && !$dummy) return false;
458
+	if ((!isset($_POST) || !$_POST) && !$dummy) return false;
459 459
 
460
-    foreach ($options as $value) {
461
-        if ($dummy && isset($value['std']))
462
-            $_POST[$value['id']] = $value['std'];
460
+	foreach ($options as $value) {
461
+		if ($dummy && isset($value['std']))
462
+			$_POST[$value['id']] = $value['std'];
463 463
 
464 464
 
465
-        if (isset($value['type']) && $value['type'] == 'checkbox') :
465
+		if (isset($value['type']) && $value['type'] == 'checkbox') :
466 466
 
467
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
468
-                update_option($value['id'], $_POST[$value['id']]);
469
-            } else {
470
-                update_option($value['id'], 0);
471
-            }
467
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
468
+				update_option($value['id'], $_POST[$value['id']]);
469
+			} else {
470
+				update_option($value['id'], 0);
471
+			}
472 472
 
473
-        elseif (isset($value['type']) && $value['type'] == 'image_width') :
473
+		elseif (isset($value['type']) && $value['type'] == 'image_width') :
474 474
 
475
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
476
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
477
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
478
-                if (isset($_POST[$value['id'] . '_crop'])) :
479
-                    update_option($value['id'] . '_crop', 1);
480
-                else :
481
-                    update_option($value['id'] . '_crop', 0);
482
-                endif;
483
-            } else {
484
-                update_option($value['id'] . '_width', $value['std']);
485
-                update_option($value['id'] . '_height', $value['std']);
486
-                update_option($value['id'] . '_crop', 1);
487
-            }
475
+			if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
476
+				update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
477
+				update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
478
+				if (isset($_POST[$value['id'] . '_crop'])) :
479
+					update_option($value['id'] . '_crop', 1);
480
+				else :
481
+					update_option($value['id'] . '_crop', 0);
482
+				endif;
483
+			} else {
484
+				update_option($value['id'] . '_width', $value['std']);
485
+				update_option($value['id'] . '_height', $value['std']);
486
+				update_option($value['id'] . '_crop', 1);
487
+			}
488 488
 
489
-        elseif (isset($value['type']) && $value['type'] == 'map') :
490
-            $post_types = array();
491
-            $categories = array();
489
+		elseif (isset($value['type']) && $value['type'] == 'map') :
490
+			$post_types = array();
491
+			$categories = array();
492 492
 
493
-            if (!empty($_POST['home_map_post_types'])) :
494
-                foreach ($_POST['home_map_post_types'] as $post_type) :
495
-                    $post_types[] = $post_type;
496
-                endforeach;
497
-            endif;
493
+			if (!empty($_POST['home_map_post_types'])) :
494
+				foreach ($_POST['home_map_post_types'] as $post_type) :
495
+					$post_types[] = $post_type;
496
+				endforeach;
497
+			endif;
498 498
 
499
-            update_option('geodir_exclude_post_type_on_map', $post_types);
499
+			update_option('geodir_exclude_post_type_on_map', $post_types);
500 500
 
501
-            if (!empty($_POST['post_category'])) :
502
-                foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
503
-                    $categories[$texonomy] = array();
504
-                    foreach ($cat_arr as $category) :
505
-                        $categories[$texonomy][] = $category;
506
-                    endforeach;
507
-                    $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
508
-                endforeach;
509
-            endif;
510
-            update_option('geodir_exclude_cat_on_map', $categories);
511
-            update_option('geodir_exclude_cat_on_map_upgrade', 1);
512
-        elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
501
+			if (!empty($_POST['post_category'])) :
502
+				foreach ($_POST['post_category'] as $texonomy => $cat_arr) :
503
+					$categories[$texonomy] = array();
504
+					foreach ($cat_arr as $category) :
505
+						$categories[$texonomy][] = $category;
506
+					endforeach;
507
+					$categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array();
508
+				endforeach;
509
+			endif;
510
+			update_option('geodir_exclude_cat_on_map', $categories);
511
+			update_option('geodir_exclude_cat_on_map_upgrade', 1);
512
+		elseif (isset($value['type']) && $value['type'] == 'map_default_settings') :
513 513
 
514 514
 
515
-            if (!empty($_POST['geodir_default_map_language'])):
516
-                update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
517
-            endif;
515
+			if (!empty($_POST['geodir_default_map_language'])):
516
+				update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
517
+			endif;
518 518
 
519 519
 
520
-            if (!empty($_POST['geodir_default_map_search_pt'])):
521
-                update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
522
-            endif;
520
+			if (!empty($_POST['geodir_default_map_search_pt'])):
521
+				update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
522
+			endif;
523 523
 
524 524
 
525
-        elseif (isset($value['type']) && $value['type'] == 'file') :
525
+		elseif (isset($value['type']) && $value['type'] == 'file') :
526 526
 
527 527
 
528
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
528
+			if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
529 529
 
530
-                if (get_option($value['id'])) {
531
-                    $image_name_arr = explode('/', get_option($value['id']));
532
-                    $noimg_name = end($image_name_arr);
533
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
534
-                    if (file_exists($img_path))
535
-                        unlink($img_path);
536
-                }
530
+				if (get_option($value['id'])) {
531
+					$image_name_arr = explode('/', get_option($value['id']));
532
+					$noimg_name = end($image_name_arr);
533
+					$img_path = $uploads['path'] . '/' . $noimg_name;
534
+					if (file_exists($img_path))
535
+						unlink($img_path);
536
+				}
537 537
 
538
-                update_option($value['id'], '');
539
-            }
538
+				update_option($value['id'], '');
539
+			}
540 540
 
541
-            $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
542
-            $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
543
-
544
-            if (!empty($filename)):
545
-                $ext = pathinfo($filename, PATHINFO_EXTENSION);
546
-                $uplaods = array();
547
-
548
-                foreach ($uploadedfile as $key => $uplaod):
549
-                    if ($key == 'name'):
550
-                        $uplaods[$key] = $filename;
551
-                    else :
552
-                        $uplaods[$key] = $uplaod;
553
-                    endif;
554
-                endforeach;
555
-
556
-                $uploads = wp_upload_dir();
557
-
558
-                if (get_option($value['id'])) {
559
-                    $image_name_arr = explode('/', get_option($value['id']));
560
-                    $noimg_name = end($image_name_arr);
561
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
562
-                    if (file_exists($img_path))
563
-                        unlink($img_path);
564
-                }
541
+			$uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : '';
542
+			$filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : '';
543
+
544
+			if (!empty($filename)):
545
+				$ext = pathinfo($filename, PATHINFO_EXTENSION);
546
+				$uplaods = array();
547
+
548
+				foreach ($uploadedfile as $key => $uplaod):
549
+					if ($key == 'name'):
550
+						$uplaods[$key] = $filename;
551
+					else :
552
+						$uplaods[$key] = $uplaod;
553
+					endif;
554
+				endforeach;
555
+
556
+				$uploads = wp_upload_dir();
557
+
558
+				if (get_option($value['id'])) {
559
+					$image_name_arr = explode('/', get_option($value['id']));
560
+					$noimg_name = end($image_name_arr);
561
+					$img_path = $uploads['path'] . '/' . $noimg_name;
562
+					if (file_exists($img_path))
563
+						unlink($img_path);
564
+				}
565 565
 
566
-                $upload_overrides = array('test_form' => false);
567
-                $movefile = wp_handle_upload($uplaods, $upload_overrides);
566
+				$upload_overrides = array('test_form' => false);
567
+				$movefile = wp_handle_upload($uplaods, $upload_overrides);
568 568
 
569
-                update_option($value['id'], $movefile['url']);
569
+				update_option($value['id'], $movefile['url']);
570 570
 
571
-            endif;
571
+			endif;
572 572
 
573
-            if (!get_option($value['id']) && isset($value['value'])):
574
-                update_option($value['id'], $value['value']);
575
-            endif;
573
+			if (!get_option($value['id']) && isset($value['value'])):
574
+				update_option($value['id'], $value['value']);
575
+			endif;
576 576
 
577 577
 
578
-        else :
579
-            // same menu setting per theme.
580
-            if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
581
-                $theme = wp_get_theme();
582
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
583
-            }
578
+		else :
579
+			// same menu setting per theme.
580
+			if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
581
+				$theme = wp_get_theme();
582
+				update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
583
+			}
584 584
 
585
-            if (isset($value['id']) && isset($_POST[$value['id']])) {
586
-                update_option($value['id'], $_POST[$value['id']]);
587
-            } else {
588
-                delete_option($value['id']);
589
-            }
585
+			if (isset($value['id']) && isset($_POST[$value['id']])) {
586
+				update_option($value['id'], $_POST[$value['id']]);
587
+			} else {
588
+				delete_option($value['id']);
589
+			}
590 590
 
591
-        endif;
592
-    }
593
-    if ($dummy)
594
-        $_POST = array();
595
-    return true;
591
+		endif;
592
+	}
593
+	if ($dummy)
594
+		$_POST = array();
595
+	return true;
596 596
 
597 597
 }
598 598
 
@@ -641,33 +641,33 @@  discard block
 block discarded – undo
641 641
 function places_custom_fields_tab($tabs)
642 642
 {
643 643
 
644
-    $geodir_post_types = get_option('geodir_post_types');
644
+	$geodir_post_types = get_option('geodir_post_types');
645 645
 
646
-    if (!empty($geodir_post_types)) {
646
+	if (!empty($geodir_post_types)) {
647 647
 
648
-        foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
648
+		foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info):
649 649
 
650
-            $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
650
+			$listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
651 651
 
652
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
653
-                'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
654
-                'subtabs' => array(
655
-                    array('subtab' => 'custom_fields',
656
-                        'label' => __('Custom Fields', 'geodirectory'),
657
-                        'request' => array('listing_type' => $geodir_post_type)),
658
-                    array('subtab' => 'sorting_options',
659
-                        'label' => __('Sorting Options', 'geodirectory'),
660
-                        'request' => array('listing_type' => $geodir_post_type)),
661
-                ),
662
-                'tab_index' => 9,
663
-                'request' => array('listing_type' => $geodir_post_type)
664
-            );
652
+			$tabs[$geodir_post_type . '_fields_settings'] = array(
653
+				'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
654
+				'subtabs' => array(
655
+					array('subtab' => 'custom_fields',
656
+						'label' => __('Custom Fields', 'geodirectory'),
657
+						'request' => array('listing_type' => $geodir_post_type)),
658
+					array('subtab' => 'sorting_options',
659
+						'label' => __('Sorting Options', 'geodirectory'),
660
+						'request' => array('listing_type' => $geodir_post_type)),
661
+				),
662
+				'tab_index' => 9,
663
+				'request' => array('listing_type' => $geodir_post_type)
664
+			);
665 665
 
666
-        endforeach;
666
+		endforeach;
667 667
 
668
-    }
668
+	}
669 669
 
670
-    return $tabs;
670
+	return $tabs;
671 671
 }
672 672
 
673 673
 
@@ -683,9 +683,9 @@  discard block
 block discarded – undo
683 683
  */
684 684
 function geodir_tools_setting_tab($tabs)
685 685
 {
686
-    wp_enqueue_script( 'jquery-ui-progressbar' );
687
-    $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
688
-    return $tabs;
686
+	wp_enqueue_script( 'jquery-ui-progressbar' );
687
+	$tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
688
+	return $tabs;
689 689
 }
690 690
 
691 691
 /**
@@ -700,8 +700,8 @@  discard block
 block discarded – undo
700 700
  */
701 701
 function geodir_compatibility_setting_tab($tabs)
702 702
 {
703
-    $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
704
-    return $tabs;
703
+	$tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
704
+	return $tabs;
705 705
 }
706 706
 
707 707
 
@@ -717,144 +717,144 @@  discard block
 block discarded – undo
717 717
  */
718 718
 function geodir_extend_geodirectory_setting_tab($tabs)
719 719
 {
720
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
721
-    return $tabs;
720
+	$tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
721
+	return $tabs;
722 722
 }
723 723
 
724 724
 
725 725
 if (!function_exists('geodir_edit_post_columns')) {
726
-    /**
727
-     * Modify admin post listing page columns.
728
-     *
729
-     * @since 1.0.0
730
-     * @package GeoDirectory
731
-     * @param array $columns The column array.
732
-     * @return array Altered column array.
733
-     */
734
-    function geodir_edit_post_columns($columns)
735
-    {
736
-
737
-        $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
738
-            'categorys' => __('Categories', 'geodirectory'));
739
-
740
-        if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
741
-        {
742
-            $offset = 0; // should we prepend $array with $data?
743
-            $offset = count($columns); // or should we append $array with $data? lets pick this one...
744
-        }
726
+	/**
727
+	 * Modify admin post listing page columns.
728
+	 *
729
+	 * @since 1.0.0
730
+	 * @package GeoDirectory
731
+	 * @param array $columns The column array.
732
+	 * @return array Altered column array.
733
+	 */
734
+	function geodir_edit_post_columns($columns)
735
+	{
745 736
 
746
-        $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
737
+		$new_columns = array('location' => __('Location (ID)', 'geodirectory'),
738
+			'categorys' => __('Categories', 'geodirectory'));
747 739
 
748
-        $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
740
+		if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
741
+		{
742
+			$offset = 0; // should we prepend $array with $data?
743
+			$offset = count($columns); // or should we append $array with $data? lets pick this one...
744
+		}
749 745
 
750
-        return $columns;
751
-    }
746
+		$columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset));
747
+
748
+		$columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
749
+
750
+		return $columns;
751
+	}
752 752
 }
753 753
 
754 754
 
755 755
 if (!function_exists('geodir_manage_post_columns')) {
756
-    /**
757
-     * Adds content to our custom post listing page columns.
758
-     *
759
-     * @since 1.0.0
760
-     * @package GeoDirectory
761
-     * @global object $wpdb WordPress Database object.
762
-     * @global object $post WordPress Post object.
763
-     * @param string $column The column name.
764
-     * @param int $post_id The post ID.
765
-     */
766
-    function geodir_manage_post_columns($column, $post_id)
767
-    {
768
-        global $post, $wpdb;
769
-
770
-        switch ($column):
771
-            /* If displaying the 'city' column. */
772
-            case 'location' :
773
-                $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
774
-                $location = geodir_get_location($location_id);
775
-                /* If no city is found, output a default message. */
776
-                if (empty($location)) {
777
-                    _e('Unknown', 'geodirectory');
778
-                } else {
779
-                    /* If there is a city id, append 'city name' to the text string. */
780
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
781
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
782
-                }
783
-                break;
784
-
785
-            /* If displaying the 'expire' column. */
786
-            case 'expire' :
787
-                $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
788
-                $d1 = $expire_date; // get expire_date
789
-                $d2 = date('Y-m-d'); // get current date
790
-                $state = __('days left', 'geodirectory');
791
-                $date_diff_text = '';
792
-                $expire_class = 'expire_left';
793
-                if ($expire_date != 'Never') {
794
-                    if (strtotime($d1) < strtotime($d2)) {
795
-                        $state = __('days overdue', 'geodirectory');
796
-                        $expire_class = 'expire_over';
797
-                    }
798
-                    $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
799
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
800
-                }
801
-                /* If no expire_date is found, output a default message. */
802
-                if (empty($expire_date))
803
-                    echo __('Unknown', 'geodirectory');
804
-                /* If there is a expire_date, append 'days left' to the text string. */
805
-                else
806
-                    echo $expire_date . $date_diff_text;
807
-                break;
808
-
809
-            /* If displaying the 'categorys' column. */
810
-            case 'categorys' :
811
-
812
-                /* Get the categorys for the post. */
813
-
814
-
815
-                $terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
816
-
817
-                /* If terms were found. */
818
-                if (!empty($terms)) {
819
-                    $out = array();
820
-                    /* Loop through each term, linking to the 'edit posts' page for the specific term. */
821
-                    foreach ($terms as $term) {
822
-                        if (!strstr($term->taxonomy, 'tag')) {
823
-                            $out[] = sprintf('<a href="%s">%s</a>',
824
-                                esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
825
-                                esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
826
-                            );
827
-                        }
828
-                    }
829
-                    /* Join the terms, separating them with a comma. */
830
-                    echo(join(', ', $out));
831
-                } /* If no terms were found, output a default message. */
832
-                else {
833
-                    _e('No Categories', 'geodirectory');
834
-                }
835
-                break;
756
+	/**
757
+	 * Adds content to our custom post listing page columns.
758
+	 *
759
+	 * @since 1.0.0
760
+	 * @package GeoDirectory
761
+	 * @global object $wpdb WordPress Database object.
762
+	 * @global object $post WordPress Post object.
763
+	 * @param string $column The column name.
764
+	 * @param int $post_id The post ID.
765
+	 */
766
+	function geodir_manage_post_columns($column, $post_id)
767
+	{
768
+		global $post, $wpdb;
769
+
770
+		switch ($column):
771
+			/* If displaying the 'city' column. */
772
+			case 'location' :
773
+				$location_id = geodir_get_post_meta($post->ID, 'post_location_id', true);
774
+				$location = geodir_get_location($location_id);
775
+				/* If no city is found, output a default message. */
776
+				if (empty($location)) {
777
+					_e('Unknown', 'geodirectory');
778
+				} else {
779
+					/* If there is a city id, append 'city name' to the text string. */
780
+					$add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
781
+					echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
782
+				}
783
+				break;
784
+
785
+			/* If displaying the 'expire' column. */
786
+			case 'expire' :
787
+				$expire_date = geodir_get_post_meta($post->ID, 'expire_date', true);
788
+				$d1 = $expire_date; // get expire_date
789
+				$d2 = date('Y-m-d'); // get current date
790
+				$state = __('days left', 'geodirectory');
791
+				$date_diff_text = '';
792
+				$expire_class = 'expire_left';
793
+				if ($expire_date != 'Never') {
794
+					if (strtotime($d1) < strtotime($d2)) {
795
+						$state = __('days overdue', 'geodirectory');
796
+						$expire_class = 'expire_over';
797
+					}
798
+					$date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
799
+					$date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
800
+				}
801
+				/* If no expire_date is found, output a default message. */
802
+				if (empty($expire_date))
803
+					echo __('Unknown', 'geodirectory');
804
+				/* If there is a expire_date, append 'days left' to the text string. */
805
+				else
806
+					echo $expire_date . $date_diff_text;
807
+				break;
836 808
 
837
-        endswitch;
838
-    }
809
+			/* If displaying the 'categorys' column. */
810
+			case 'categorys' :
811
+
812
+				/* Get the categorys for the post. */
813
+
814
+
815
+				$terms = wp_get_object_terms($post_id, get_object_taxonomies($post));
816
+
817
+				/* If terms were found. */
818
+				if (!empty($terms)) {
819
+					$out = array();
820
+					/* Loop through each term, linking to the 'edit posts' page for the specific term. */
821
+					foreach ($terms as $term) {
822
+						if (!strstr($term->taxonomy, 'tag')) {
823
+							$out[] = sprintf('<a href="%s">%s</a>',
824
+								esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
825
+								esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
826
+							);
827
+						}
828
+					}
829
+					/* Join the terms, separating them with a comma. */
830
+					echo(join(', ', $out));
831
+				} /* If no terms were found, output a default message. */
832
+				else {
833
+					_e('No Categories', 'geodirectory');
834
+				}
835
+				break;
836
+
837
+		endswitch;
838
+	}
839 839
 }
840 840
 
841 841
 
842 842
 if (!function_exists('geodir_post_sortable_columns')) {
843
-    /**
844
-     * Makes admin post listing page columns sortable.
845
-     *
846
-     * @since 1.0.0
847
-     * @package GeoDirectory
848
-     * @param array $columns The column array.
849
-     * @return array Altered column array.
850
-     */
851
-    function geodir_post_sortable_columns($columns)
852
-    {
853
-
854
-        $columns['expire'] = 'expire';
855
-
856
-        return $columns;
857
-    }
843
+	/**
844
+	 * Makes admin post listing page columns sortable.
845
+	 *
846
+	 * @since 1.0.0
847
+	 * @package GeoDirectory
848
+	 * @param array $columns The column array.
849
+	 * @return array Altered column array.
850
+	 */
851
+	function geodir_post_sortable_columns($columns)
852
+	{
853
+
854
+		$columns['expire'] = 'expire';
855
+
856
+		return $columns;
857
+	}
858 858
 }
859 859
 
860 860
 /**
@@ -868,32 +868,32 @@  discard block
 block discarded – undo
868 868
  * @param int $post_id The post ID.
869 869
  */
870 870
 function geodir_post_information_save($post_id, $post) {
871
-    global $wpdb, $current_user;
871
+	global $wpdb, $current_user;
872 872
 
873
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
874
-        return;
875
-    }
873
+	if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
874
+		return;
875
+	}
876 876
 
877
-    $geodir_posttypes = geodir_get_posttypes();
877
+	$geodir_posttypes = geodir_get_posttypes();
878 878
 
879
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
880
-        return;
879
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
880
+		return;
881 881
 
882
-    if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
883
-        if (isset($_REQUEST['_status']))
884
-            geodir_change_post_status($post_id, $_REQUEST['_status']);
882
+	if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
883
+		if (isset($_REQUEST['_status']))
884
+			geodir_change_post_status($post_id, $_REQUEST['_status']);
885 885
 
886
-        if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
887
-            return;
886
+		if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash'))
887
+			return;
888 888
 
889
-        if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
890
-            return;
889
+		if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__)))
890
+			return;
891 891
 
892
-        if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
893
-            return;
892
+		if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__)))
893
+			return;
894 894
 
895
-        geodir_save_listing($_REQUEST);
896
-    }
895
+		geodir_save_listing($_REQUEST);
896
+	}
897 897
 }
898 898
 
899 899
 /**
@@ -909,102 +909,102 @@  discard block
 block discarded – undo
909 909
  */
910 910
 function geodir_admin_fields($options)
911 911
 {
912
-    global $geodirectory;
913
-
914
-    $first_title = true;
915
-    $tab_id = '';
916
-    $i = 0;
917
-    foreach ($options as $value) :
918
-        if (!isset($value['name'])) $value['name'] = '';
919
-        if (!isset($value['class'])) $value['class'] = '';
920
-        if (!isset($value['css'])) $value['css'] = '';
921
-        if (!isset($value['std'])) $value['std'] = '';
922
-        $desc = '';
923
-        switch ($value['type']) :
924
-            case 'dummy_installer':
925
-                $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
926
-                geodir_autoinstall_admin_header($post_type);
927
-                break;
928
-            case 'title':
929
-
930
-                if ($i == 0) {
931
-                    echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
932
-                    echo '<div class="inner_content_tab_main">';
933
-                }
912
+	global $geodirectory;
913
+
914
+	$first_title = true;
915
+	$tab_id = '';
916
+	$i = 0;
917
+	foreach ($options as $value) :
918
+		if (!isset($value['name'])) $value['name'] = '';
919
+		if (!isset($value['class'])) $value['class'] = '';
920
+		if (!isset($value['css'])) $value['css'] = '';
921
+		if (!isset($value['std'])) $value['std'] = '';
922
+		$desc = '';
923
+		switch ($value['type']) :
924
+			case 'dummy_installer':
925
+				$post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place';
926
+				geodir_autoinstall_admin_header($post_type);
927
+				break;
928
+			case 'title':
929
+
930
+				if ($i == 0) {
931
+					echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>';
932
+					echo '<div class="inner_content_tab_main">';
933
+				}
934 934
 
935
-                $i++;
935
+				$i++;
936 936
 
937
-                if (isset($value['id']) && $value['id'])
938
-                    $tab_id = $value['id'];
937
+				if (isset($value['id']) && $value['id'])
938
+					$tab_id = $value['id'];
939 939
 
940
-                if (isset($value['desc']) && $value['desc'])
941
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
940
+				if (isset($value['desc']) && $value['desc'])
941
+					$desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
942 942
 
943
-                if (isset($value['name']) && $value['name']) {
944
-                    if ($first_title === true) {
945
-                        $first_title = false;
946
-                    } else {
947
-                        echo '</div>';
948
-                    }
949
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
943
+				if (isset($value['name']) && $value['name']) {
944
+					if ($first_title === true) {
945
+						$first_title = false;
946
+					} else {
947
+						echo '</div>';
948
+					}
949
+					echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
950 950
 
951
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
952
-                }
951
+					echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
952
+				}
953 953
 
954
-                /**
955
-                 * Called after a GeoDirectory settings title is output in the GD settings page.
956
-                 *
957
-                 * The action is called dynamically geodir_settings_$value['id'].
958
-                 *
959
-                 * @since 1.0.0
960
-                 */
961
-                do_action('geodir_settings_' . sanitize_title($value['id']));
962
-                break;
963
-
964
-            case 'no_tabs':
965
-
966
-                echo '<div class="inner_content_tab_main">';
967
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
968
-
969
-                break;
970
-
971
-            case 'sectionstart':
972
-                if (isset($value['desc']) && $value['desc'])
973
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
974
-                if (isset($value['name']) && $value['name'])
975
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
976
-                /**
977
-                 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
978
-                 *
979
-                 * The action is called dynamically geodir_settings_$value['id']_start.
980
-                 *
981
-                 * @since 1.0.0
982
-                 */
983
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
984
-                echo '<table class="form-table">' . "\n\n";
985
-
986
-                break;
987
-            case 'sectionend':
988
-                /**
989
-                 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
990
-                 *
991
-                 * The action is called dynamically geodir_settings_$value['id']_end.
992
-                 *
993
-                 * @since 1.0.0
994
-                 */
995
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
996
-                echo '</table>';
997
-                /**
998
-                 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
999
-                 *
1000
-                 * The action is called dynamically geodir_settings_$value['id']_end.
1001
-                 *
1002
-                 * @since 1.0.0
1003
-                 */
1004
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1005
-                break;
1006
-            case 'text':
1007
-                ?>
954
+				/**
955
+				 * Called after a GeoDirectory settings title is output in the GD settings page.
956
+				 *
957
+				 * The action is called dynamically geodir_settings_$value['id'].
958
+				 *
959
+				 * @since 1.0.0
960
+				 */
961
+				do_action('geodir_settings_' . sanitize_title($value['id']));
962
+				break;
963
+
964
+			case 'no_tabs':
965
+
966
+				echo '<div class="inner_content_tab_main">';
967
+				echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
968
+
969
+				break;
970
+
971
+			case 'sectionstart':
972
+				if (isset($value['desc']) && $value['desc'])
973
+					$desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
974
+				if (isset($value['name']) && $value['name'])
975
+					echo '<h3>' . $value['name'] . $desc . '</h3>';
976
+				/**
977
+				 * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
978
+				 *
979
+				 * The action is called dynamically geodir_settings_$value['id']_start.
980
+				 *
981
+				 * @since 1.0.0
982
+				 */
983
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
984
+				echo '<table class="form-table">' . "\n\n";
985
+
986
+				break;
987
+			case 'sectionend':
988
+				/**
989
+				 * Called before a GeoDirectory settings sectionend is output in the GD settings page.
990
+				 *
991
+				 * The action is called dynamically geodir_settings_$value['id']_end.
992
+				 *
993
+				 * @since 1.0.0
994
+				 */
995
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
996
+				echo '</table>';
997
+				/**
998
+				 * Called after a GeoDirectory settings sectionend is output in the GD settings page.
999
+				 *
1000
+				 * The action is called dynamically geodir_settings_$value['id']_end.
1001
+				 *
1002
+				 * @since 1.0.0
1003
+				 */
1004
+				if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1005
+				break;
1006
+			case 'text':
1007
+				?>
1008 1008
                 <tr valign="top">
1009 1009
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1010 1010
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1013,15 +1013,15 @@  discard block
 block discarded – undo
1013 1013
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1014 1014
                                            style=" <?php echo esc_attr($value['css']); ?>"
1015 1015
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1016
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1017
-                                           } else {
1018
-                                               echo esc_attr($value['std']);
1019
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1016
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1017
+										   } else {
1018
+											   echo esc_attr($value['std']);
1019
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1020 1020
                 </tr><?php
1021
-                break;
1021
+				break;
1022 1022
 
1023
-            case 'map-key':
1024
-                ?>
1023
+			case 'map-key':
1024
+				?>
1025 1025
                 <tr valign="top">
1026 1026
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1027 1027
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1030,17 +1030,17 @@  discard block
 block discarded – undo
1030 1030
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1031 1031
                                            style=" <?php echo esc_attr($value['css']); ?>"
1032 1032
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1033
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1034
-                                           } else {
1035
-                                               echo esc_attr($value['std']);
1036
-                                           } ?>"/>
1033
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1034
+										   } else {
1035
+											   echo esc_attr($value['std']);
1036
+										   } ?>"/>
1037 1037
                     <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
1038 1038
                     <span class="description"><?php echo $value['desc']; ?></span></td>
1039 1039
                 </tr><?php
1040
-                break;
1040
+				break;
1041 1041
 
1042
-            case 'password':
1043
-                ?>
1042
+			case 'password':
1043
+				?>
1044 1044
                 <tr valign="top">
1045 1045
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1046 1046
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
@@ -1049,42 +1049,42 @@  discard block
 block discarded – undo
1049 1049
                                            <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1050 1050
                                            style="<?php echo esc_attr($value['css']); ?>"
1051 1051
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1052
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1053
-                                           } else {
1054
-                                               echo esc_attr($value['std']);
1055
-                                           } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1052
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1053
+										   } else {
1054
+											   echo esc_attr($value['std']);
1055
+										   } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td>
1056 1056
                 </tr><?php
1057
-                break;
1057
+				break;
1058 1058
 
1059
-            case 'html_content':
1060
-                ?>
1059
+			case 'html_content':
1060
+				?>
1061 1061
                 <tr valign="top">
1062 1062
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1063 1063
                 <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td>
1064 1064
                 </tr><?php
1065
-                break;
1065
+				break;
1066 1066
 
1067
-            case 'color' :
1068
-                ?>
1067
+			case 'color' :
1068
+				?>
1069 1069
                 <tr valign="top">
1070 1070
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1071 1071
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1072 1072
                                            id="<?php echo esc_attr($value['id']); ?>" type="text"
1073 1073
                                            style="<?php echo esc_attr($value['css']); ?>"
1074 1074
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1075
-                                               echo esc_attr(stripslashes(get_option($value['id'])));
1076
-                                           } else {
1077
-                                               echo esc_attr($value['std']);
1078
-                                           } ?>" class="colorpick"/> <span
1075
+											   echo esc_attr(stripslashes(get_option($value['id'])));
1076
+										   } else {
1077
+											   echo esc_attr($value['std']);
1078
+										   } ?>" class="colorpick"/> <span
1079 1079
                         class="description"><?php echo $value['desc']; ?></span>
1080 1080
 
1081 1081
                     <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv"
1082 1082
                          style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div>
1083 1083
                 </td>
1084 1084
                 </tr><?php
1085
-                break;
1086
-            case 'image_width' :
1087
-                ?>
1085
+				break;
1086
+			case 'image_width' :
1087
+				?>
1088 1088
                 <tr valign="top">
1089 1089
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1090 1090
                 <td class="forminp">
@@ -1106,11 +1106,11 @@  discard block
 block discarded – undo
1106 1106
 
1107 1107
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1108 1108
                 </tr><?php
1109
-                break;
1110
-            case 'select':
1111
-                $option_value = get_option($value['id']);
1112
-                $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1113
-                ?>
1109
+				break;
1110
+			case 'select':
1111
+				$option_value = get_option($value['id']);
1112
+				$option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value;
1113
+				?>
1114 1114
                 <tr valign="top">
1115 1115
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1116 1116
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1119,33 +1119,33 @@  discard block
 block discarded – undo
1119 1119
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1120 1120
                                             option-ajaxchosen="false">
1121 1121
                         <?php
1122
-                        foreach ($value['options'] as $key => $val) {
1123
-                            $geodir_select_value = '';
1124
-                            if ($option_value != '') {
1125
-                                if ($option_value != '' && $option_value == $key)
1126
-                                    $geodir_select_value = ' selected="selected" ';
1127
-                            } else {
1128
-                                if ($value['std'] == $key)
1129
-                                    $geodir_select_value = ' selected="selected" ';
1130
-                            }
1131
-                            ?>
1122
+						foreach ($value['options'] as $key => $val) {
1123
+							$geodir_select_value = '';
1124
+							if ($option_value != '') {
1125
+								if ($option_value != '' && $option_value == $key)
1126
+									$geodir_select_value = ' selected="selected" ';
1127
+							} else {
1128
+								if ($value['std'] == $key)
1129
+									$geodir_select_value = ' selected="selected" ';
1130
+							}
1131
+							?>
1132 1132
                             <option
1133 1133
                                 value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo geodir_utf8_ucfirst($val) ?></option>
1134 1134
                         <?php
1135
-                        }
1136
-                        ?>
1135
+						}
1136
+						?>
1137 1137
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1138 1138
                 </td>
1139 1139
                 </tr><?php
1140
-                break;
1140
+				break;
1141 1141
 
1142
-            case 'multiselect':
1143
-                $option_values = get_option($value['id']);
1144
-                if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1145
-                   $option_values = $value['std'];
1146
-                }
1147
-                $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1148
-                ?>
1142
+			case 'multiselect':
1143
+				$option_values = get_option($value['id']);
1144
+				if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
1145
+				   $option_values = $value['std'];
1146
+				}
1147
+				$option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values;
1148
+				?>
1149 1149
                 <tr valign="top">
1150 1150
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1151 1151
                 <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]"
@@ -1155,26 +1155,26 @@  discard block
 block discarded – undo
1155 1155
                                             data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1156 1156
                                             option-ajaxchosen="false">
1157 1157
                         <?php
1158
-                        foreach ($value['options'] as $key => $val) {
1159
-                            if (strpos($key, 'optgroup_start-') === 0) {
1160
-                                ?><optgroup label="<?php echo geodir_utf8_ucfirst($val); ?>"><?php
1161
-                            } else if (strpos($key, 'optgroup_end-') === 0) {
1162
-                                ?></optgroup><?php
1163
-                            } else {
1164
-                                ?>
1158
+						foreach ($value['options'] as $key => $val) {
1159
+							if (strpos($key, 'optgroup_start-') === 0) {
1160
+								?><optgroup label="<?php echo geodir_utf8_ucfirst($val); ?>"><?php
1161
+							} else if (strpos($key, 'optgroup_end-') === 0) {
1162
+								?></optgroup><?php
1163
+							} else {
1164
+								?>
1165 1165
                                 <option value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>>
1166 1166
                                     <?php echo geodir_utf8_ucfirst($val) ?>
1167 1167
                                 </option>
1168 1168
                             <?php
1169
-                            }
1170
-                        }
1171
-                        ?>
1169
+							}
1170
+						}
1171
+						?>
1172 1172
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1173 1173
                 </td>
1174 1174
                 </tr><?php
1175
-                break;
1176
-            case 'file':
1177
-                ?>
1175
+				break;
1176
+			case 'file':
1177
+				?>
1178 1178
                 <tr valign="top">
1179 1179
                 <th scope="row" class="titledesc"><?php echo $value['name']; ?></th>
1180 1180
                 <td class="forminp">
@@ -1194,87 +1194,87 @@  discard block
 block discarded – undo
1194 1194
                     <?php } ?>
1195 1195
                 </td>
1196 1196
                 </tr><?php
1197
-                break;
1198
-            case 'map_default_settings' :
1199
-                ?>
1197
+				break;
1198
+			case 'map_default_settings' :
1199
+				?>
1200 1200
 
1201 1201
                 <tr valign="top">
1202 1202
                     <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1203 1203
                     <td width="60%">
1204 1204
                         <select name="geodir_default_map_language" style="width:60%">
1205 1205
                             <?php
1206
-                            $arr_map_langages = array(
1207
-                                'ar' => __('ARABIC', 'geodirectory'),
1208
-                                'eu' => __('BASQUE', 'geodirectory'),
1209
-                                'bg' => __('BULGARIAN', 'geodirectory'),
1210
-                                'bn' => __('BENGALI', 'geodirectory'),
1211
-                                'ca' => __('CATALAN', 'geodirectory'),
1212
-                                'cs' => __('CZECH', 'geodirectory'),
1213
-                                'da' => __('DANISH', 'geodirectory'),
1214
-                                'de' => __('GERMAN', 'geodirectory'),
1215
-                                'el' => __('GREEK', 'geodirectory'),
1216
-                                'en' => __('ENGLISH', 'geodirectory'),
1217
-                                'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1218
-                                'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1219
-                                'es' => __('SPANISH', 'geodirectory'),
1220
-                                'eu' => __('BASQUE', 'geodirectory'),
1221
-                                'fa' => __('FARSI', 'geodirectory'),
1222
-                                'fi' => __('FINNISH', 'geodirectory'),
1223
-                                'fil' => __('FILIPINO', 'geodirectory'),
1224
-                                'fr' => __('FRENCH', 'geodirectory'),
1225
-                                'gl' => __('GALICIAN', 'geodirectory'),
1226
-                                'gu' => __('GUJARATI', 'geodirectory'),
1227
-                                'hi' => __('HINDI', 'geodirectory'),
1228
-                                'hr' => __('CROATIAN', 'geodirectory'),
1229
-                                'hu' => __('HUNGARIAN', 'geodirectory'),
1230
-                                'id' => __('INDONESIAN', 'geodirectory'),
1231
-                                'it' => __('ITALIAN', 'geodirectory'),
1232
-                                'iw' => __('HEBREW', 'geodirectory'),
1233
-                                'ja' => __('JAPANESE', 'geodirectory'),
1234
-                                'kn' => __('KANNADA', 'geodirectory'),
1235
-                                'ko' => __('KOREAN', 'geodirectory'),
1236
-                                'lt' => __('LITHUANIAN', 'geodirectory'),
1237
-                                'lv' => __('LATVIAN', 'geodirectory'),
1238
-                                'ml' => __('MALAYALAM', 'geodirectory'),
1239
-                                'mr' => __('MARATHI', 'geodirectory'),
1240
-                                'nl' => __('DUTCH', 'geodirectory'),
1241
-                                'no' => __('NORWEGIAN', 'geodirectory'),
1242
-                                'pl' => __('POLISH', 'geodirectory'),
1243
-                                'pt' => __('PORTUGUESE', 'geodirectory'),
1244
-                                'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1245
-                                'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1246
-                                'ro' => __('ROMANIAN', 'geodirectory'),
1247
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1248
-                                'ru' => __('RUSSIAN', 'geodirectory'),
1249
-                                'sk' => __('SLOVAK', 'geodirectory'),
1250
-                                'sl' => __('SLOVENIAN', 'geodirectory'),
1251
-                                'sr' => __('SERBIAN', 'geodirectory'),
1252
-                                'sv' => __('	SWEDISH', 'geodirectory'),
1253
-                                'tl' => __('TAGALOG', 'geodirectory'),
1254
-                                'ta' => __('TAMIL', 'geodirectory'),
1255
-                                'te' => __('TELUGU', 'geodirectory'),
1256
-                                'th' => __('THAI', 'geodirectory'),
1257
-                                'tr' => __('TURKISH', 'geodirectory'),
1258
-                                'uk' => __('UKRAINIAN', 'geodirectory'),
1259
-                                'vi' => __('VIETNAMESE', 'geodirectory'),
1260
-                                'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1261
-                                'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1262
-                            );
1263
-                            $geodir_default_map_language = get_option('geodir_default_map_language');
1264
-                            if (empty($geodir_default_map_language))
1265
-                                $geodir_default_map_language = 'en';
1266
-                            foreach ($arr_map_langages as $language_key => $language_txt) {
1267
-                                if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1268
-                                    $geodir_default_language_selected = "selected='selected'";
1269
-                                else
1270
-                                    $geodir_default_language_selected = '';
1271
-
1272
-                                ?>
1206
+							$arr_map_langages = array(
1207
+								'ar' => __('ARABIC', 'geodirectory'),
1208
+								'eu' => __('BASQUE', 'geodirectory'),
1209
+								'bg' => __('BULGARIAN', 'geodirectory'),
1210
+								'bn' => __('BENGALI', 'geodirectory'),
1211
+								'ca' => __('CATALAN', 'geodirectory'),
1212
+								'cs' => __('CZECH', 'geodirectory'),
1213
+								'da' => __('DANISH', 'geodirectory'),
1214
+								'de' => __('GERMAN', 'geodirectory'),
1215
+								'el' => __('GREEK', 'geodirectory'),
1216
+								'en' => __('ENGLISH', 'geodirectory'),
1217
+								'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
1218
+								'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
1219
+								'es' => __('SPANISH', 'geodirectory'),
1220
+								'eu' => __('BASQUE', 'geodirectory'),
1221
+								'fa' => __('FARSI', 'geodirectory'),
1222
+								'fi' => __('FINNISH', 'geodirectory'),
1223
+								'fil' => __('FILIPINO', 'geodirectory'),
1224
+								'fr' => __('FRENCH', 'geodirectory'),
1225
+								'gl' => __('GALICIAN', 'geodirectory'),
1226
+								'gu' => __('GUJARATI', 'geodirectory'),
1227
+								'hi' => __('HINDI', 'geodirectory'),
1228
+								'hr' => __('CROATIAN', 'geodirectory'),
1229
+								'hu' => __('HUNGARIAN', 'geodirectory'),
1230
+								'id' => __('INDONESIAN', 'geodirectory'),
1231
+								'it' => __('ITALIAN', 'geodirectory'),
1232
+								'iw' => __('HEBREW', 'geodirectory'),
1233
+								'ja' => __('JAPANESE', 'geodirectory'),
1234
+								'kn' => __('KANNADA', 'geodirectory'),
1235
+								'ko' => __('KOREAN', 'geodirectory'),
1236
+								'lt' => __('LITHUANIAN', 'geodirectory'),
1237
+								'lv' => __('LATVIAN', 'geodirectory'),
1238
+								'ml' => __('MALAYALAM', 'geodirectory'),
1239
+								'mr' => __('MARATHI', 'geodirectory'),
1240
+								'nl' => __('DUTCH', 'geodirectory'),
1241
+								'no' => __('NORWEGIAN', 'geodirectory'),
1242
+								'pl' => __('POLISH', 'geodirectory'),
1243
+								'pt' => __('PORTUGUESE', 'geodirectory'),
1244
+								'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
1245
+								'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
1246
+								'ro' => __('ROMANIAN', 'geodirectory'),
1247
+								'ru' => __('RUSSIAN', 'geodirectory'),
1248
+								'ru' => __('RUSSIAN', 'geodirectory'),
1249
+								'sk' => __('SLOVAK', 'geodirectory'),
1250
+								'sl' => __('SLOVENIAN', 'geodirectory'),
1251
+								'sr' => __('SERBIAN', 'geodirectory'),
1252
+								'sv' => __('	SWEDISH', 'geodirectory'),
1253
+								'tl' => __('TAGALOG', 'geodirectory'),
1254
+								'ta' => __('TAMIL', 'geodirectory'),
1255
+								'te' => __('TELUGU', 'geodirectory'),
1256
+								'th' => __('THAI', 'geodirectory'),
1257
+								'tr' => __('TURKISH', 'geodirectory'),
1258
+								'uk' => __('UKRAINIAN', 'geodirectory'),
1259
+								'vi' => __('VIETNAMESE', 'geodirectory'),
1260
+								'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
1261
+								'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
1262
+							);
1263
+							$geodir_default_map_language = get_option('geodir_default_map_language');
1264
+							if (empty($geodir_default_map_language))
1265
+								$geodir_default_map_language = 'en';
1266
+							foreach ($arr_map_langages as $language_key => $language_txt) {
1267
+								if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language)
1268
+									$geodir_default_language_selected = "selected='selected'";
1269
+								else
1270
+									$geodir_default_language_selected = '';
1271
+
1272
+								?>
1273 1273
                                 <option
1274 1274
                                     value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option>
1275 1275
 
1276 1276
                             <?php }
1277
-                            ?>
1277
+							?>
1278 1278
                         </select>
1279 1279
                     </td>
1280 1280
                 </tr>
@@ -1285,46 +1285,46 @@  discard block
 block discarded – undo
1285 1285
                     <td width="60%">
1286 1286
                         <select name="geodir_default_map_search_pt" style="width:60%">
1287 1287
                             <?php
1288
-                            $post_types = geodir_get_posttypes('array');
1289
-                            $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1290
-                            if (empty($geodir_default_map_search_pt))
1291
-                                $geodir_default_map_search_pt = 'gd_place';
1292
-                            if (is_array($post_types)) {
1293
-                                foreach ($post_types as $key => $post_types_obj) {
1294
-                                    if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1295
-                                        $geodir_search_pt_selected = "selected='selected'";
1296
-                                    else
1297
-                                        $geodir_search_pt_selected = '';
1298
-
1299
-                                    ?>
1288
+							$post_types = geodir_get_posttypes('array');
1289
+							$geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
1290
+							if (empty($geodir_default_map_search_pt))
1291
+								$geodir_default_map_search_pt = 'gd_place';
1292
+							if (is_array($post_types)) {
1293
+								foreach ($post_types as $key => $post_types_obj) {
1294
+									if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt)
1295
+										$geodir_search_pt_selected = "selected='selected'";
1296
+									else
1297
+										$geodir_search_pt_selected = '';
1298
+
1299
+									?>
1300 1300
                                     <option
1301 1301
                                         value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo __($post_types_obj['labels']['singular_name'], 'geodirectory'); ?></option>
1302 1302
 
1303 1303
                                 <?php }
1304 1304
 
1305
-                            }
1305
+							}
1306 1306
 
1307
-                            ?>
1307
+							?>
1308 1308
                         </select>
1309 1309
                     </td>
1310 1310
                 </tr>
1311 1311
 
1312 1312
                 <?php
1313
-                break;
1313
+				break;
1314 1314
 
1315
-            case 'map':
1316
-                ?>
1315
+			case 'map':
1316
+				?>
1317 1317
                 <tr valign="top">
1318 1318
                     <td class="forminp">
1319 1319
                         <?php
1320
-                        global $post_cat, $cat_display;
1321
-                        $post_types = geodir_get_posttypes('object');
1322
-                        $cat_display = 'checkbox';
1323
-                        $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1324
-                        $gd_cats = get_option('geodir_exclude_cat_on_map');
1325
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1326
-                        $count = 1;
1327
-                        ?>
1320
+						global $post_cat, $cat_display;
1321
+						$post_types = geodir_get_posttypes('object');
1322
+						$cat_display = 'checkbox';
1323
+						$gd_post_types = get_option('geodir_exclude_post_type_on_map');
1324
+						$gd_cats = get_option('geodir_exclude_cat_on_map');
1325
+						$gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1326
+						$count = 1;
1327
+						?>
1328 1328
                         <table width="70%" class="widefat">
1329 1329
                             <thead>
1330 1330
                             <tr>
@@ -1333,18 +1333,18 @@  discard block
 block discarded – undo
1333 1333
                                 <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th>
1334 1334
                             </tr>
1335 1335
                             <?php
1336
-                            $gd_categs = $gd_cats;
1337
-                            foreach ($post_types as $key => $post_types_obj) :
1338
-                                $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1339
-                                $gd_taxonomy = geodir_get_taxonomies($key);
1340
-                                if ($gd_cats_upgrade) {
1341
-                                    $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1342
-                                    $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1343
-                                    $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1344
-                                }
1345
-                                $post_cat = implode(',', $gd_cats);
1346
-                                $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1347
-                                ?>
1336
+							$gd_categs = $gd_cats;
1337
+							foreach ($post_types as $key => $post_types_obj) :
1338
+								$checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : '';
1339
+								$gd_taxonomy = geodir_get_taxonomies($key);
1340
+								if ($gd_cats_upgrade) {
1341
+									$gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : '';
1342
+									$gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array();
1343
+									$gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array();
1344
+								}
1345
+								$post_cat = implode(',', $gd_cats);
1346
+								$gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy);
1347
+								?>
1348 1348
                                 <tr>
1349 1349
                                     <td valign="top" width="5%"><?php echo $count; ?></td>
1350 1350
                                     <td valign="top" width="25%" id="td_post_types"><input type="checkbox"
@@ -1365,19 +1365,19 @@  discard block
 block discarded – undo
1365 1365
                     </td>
1366 1366
                 </tr>
1367 1367
                 <?php
1368
-                break;
1368
+				break;
1369 1369
 
1370
-            case 'checkbox' :
1370
+			case 'checkbox' :
1371 1371
 
1372
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1373
-                    ?>
1372
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) :
1373
+					?>
1374 1374
                     <tr valign="top">
1375 1375
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1376 1376
                     <td class="forminp">
1377 1377
                 <?php
1378
-                endif;
1378
+				endif;
1379 1379
 
1380
-                ?>
1380
+				?>
1381 1381
                 <fieldset>
1382 1382
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1383 1383
                     <label for="<?php echo $value['id'] ?>">
@@ -1387,49 +1387,49 @@  discard block
 block discarded – undo
1387 1387
                 </fieldset>
1388 1388
                 <?php
1389 1389
 
1390
-                if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1391
-                    ?>
1390
+				if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) :
1391
+					?>
1392 1392
                     </td>
1393 1393
                     </tr>
1394 1394
                 <?php
1395
-                endif;
1395
+				endif;
1396 1396
 
1397
-                break;
1397
+				break;
1398 1398
 
1399
-            case 'radio' :
1399
+			case 'radio' :
1400 1400
 
1401
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1402
-                    ?>
1401
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) :
1402
+					?>
1403 1403
                     <tr valign="top">
1404 1404
                     <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1405 1405
                     <td class="forminp">
1406 1406
                 <?php
1407
-                endif;
1407
+				endif;
1408 1408
 
1409
-                ?>
1409
+				?>
1410 1410
                 <fieldset>
1411 1411
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1412 1412
                     <label for="<?php echo $value['id'];?>">
1413 1413
                         <input name="<?php echo esc_attr($value['id']); ?>"
1414 1414
                                id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1415 1415
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1416
-                            echo 'checked="checked"';
1417
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1416
+							echo 'checked="checked"';
1417
+						}elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1418 1418
                         <?php echo $value['desc']; ?></label><br>
1419 1419
                 </fieldset>
1420 1420
                 <?php
1421 1421
 
1422
-                if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1423
-                    ?>
1422
+				if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) :
1423
+					?>
1424 1424
                     </td>
1425 1425
                     </tr>
1426 1426
                 <?php
1427
-                endif;
1427
+				endif;
1428 1428
 
1429
-                break;
1429
+				break;
1430 1430
 
1431
-            case 'textarea':
1432
-                ?>
1431
+			case 'textarea':
1432
+				?>
1433 1433
                 <tr valign="top">
1434 1434
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1435 1435
                 <td class="forminp">
@@ -1442,30 +1442,30 @@  discard block
 block discarded – undo
1442 1442
 
1443 1443
                 </td>
1444 1444
                 </tr><?php
1445
-                break;
1445
+				break;
1446 1446
 
1447
-            case 'editor':
1448
-                ?>
1447
+			case 'editor':
1448
+				?>
1449 1449
                 <tr valign="top">
1450 1450
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1451 1451
                 <td class="forminp"><?php
1452
-                    if (get_option($value['id']))
1453
-                        $content = stripslashes(get_option($value['id']));
1454
-                    else
1455
-                        $content = $value['std'];
1452
+					if (get_option($value['id']))
1453
+						$content = stripslashes(get_option($value['id']));
1454
+					else
1455
+						$content = $value['std'];
1456 1456
 
1457
-                    $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1457
+					$editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
1458 1458
 
1459
-                    wp_editor($content, esc_attr($value['id']), $editor_settings);
1459
+					wp_editor($content, esc_attr($value['id']), $editor_settings);
1460 1460
 
1461
-                    ?> <span class="description"><?php echo $value['desc'] ?></span>
1461
+					?> <span class="description"><?php echo $value['desc'] ?></span>
1462 1462
 
1463 1463
                 </td>
1464 1464
                 </tr><?php
1465
-                break;
1465
+				break;
1466 1466
 
1467
-            case 'single_select_page' :
1468
-                // WPML
1467
+			case 'single_select_page' :
1468
+				// WPML
1469 1469
 				$switch_lang = false;
1470 1470
 				$disabled = '';
1471 1471
 				if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
@@ -1483,18 +1483,18 @@  discard block
 block discarded – undo
1483 1483
 				//
1484 1484
 				$page_setting = (int)get_option($value['id']);
1485 1485
 
1486
-                $args = array('name' => $value['id'],
1487
-                    'id' => $value['id'],
1488
-                    'sort_column' => 'menu_order',
1489
-                    'sort_order' => 'ASC',
1490
-                    'show_option_none' => ' ',
1491
-                    'class' => $value['class'],
1492
-                    'echo' => false,
1493
-                    'selected' => $page_setting);
1486
+				$args = array('name' => $value['id'],
1487
+					'id' => $value['id'],
1488
+					'sort_column' => 'menu_order',
1489
+					'sort_order' => 'ASC',
1490
+					'show_option_none' => ' ',
1491
+					'class' => $value['class'],
1492
+					'echo' => false,
1493
+					'selected' => $page_setting);
1494 1494
 
1495
-                if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1495
+				if (isset($value['args'])) $args = wp_parse_args($value['args'], $args);
1496 1496
 
1497
-                ?>
1497
+				?>
1498 1498
                 <tr valign="top" class="single_select_page">
1499 1499
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1500 1500
                 <td class="forminp">
@@ -1505,17 +1505,17 @@  discard block
 block discarded – undo
1505 1505
 				if ($switch_lang) {
1506 1506
 					$sitepress->switch_lang($switch_lang, true);
1507 1507
 				}
1508
-                break;
1509
-            case 'single_select_country' :
1510
-                $country_setting = (string)get_option($value['id']);
1511
-                if (strstr($country_setting, ':')) :
1512
-                    $country = current(explode(':', $country_setting));
1513
-                    $state = end(explode(':', $country_setting));
1514
-                else :
1515
-                    $country = $country_setting;
1516
-                    $state = '*';
1517
-                endif;
1518
-                ?>
1508
+				break;
1509
+			case 'single_select_country' :
1510
+				$country_setting = (string)get_option($value['id']);
1511
+				if (strstr($country_setting, ':')) :
1512
+					$country = current(explode(':', $country_setting));
1513
+					$state = end(explode(':', $country_setting));
1514
+				else :
1515
+					$country = $country_setting;
1516
+					$state = '*';
1517
+				endif;
1518
+				?>
1519 1519
                 <tr valign="top">
1520 1520
                 <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th>
1521 1521
                 <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>"
@@ -1526,12 +1526,12 @@  discard block
 block discarded – undo
1526 1526
                     </select> <span class="description"><?php echo $value['desc'] ?></span>
1527 1527
                 </td>
1528 1528
                 </tr><?php
1529
-                break;
1530
-            case 'multi_select_countries' :
1531
-                $countries = $geodirectory->countries->countries;
1532
-                asort($countries);
1533
-                $selections = (array)get_option($value['id']);
1534
-                ?>
1529
+				break;
1530
+			case 'multi_select_countries' :
1531
+				$countries = $geodirectory->countries->countries;
1532
+				asort($countries);
1533
+				$selections = (array)get_option($value['id']);
1534
+				?>
1535 1535
                 <tr valign="top">
1536 1536
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1537 1537
                 <td class="forminp">
@@ -1539,21 +1539,21 @@  discard block
 block discarded – undo
1539 1539
                             data-placeholder="<?php _e('Choose countries&hellip;', 'geodirectory'); ?>"
1540 1540
                             title="Country" class="chosen_select">
1541 1541
                         <?php
1542
-                        if ($countries) foreach ($countries as $key => $val) :
1543
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1544
-                        endforeach;
1545
-                        ?>
1542
+						if ($countries) foreach ($countries as $key => $val) :
1543
+							echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1544
+						endforeach;
1545
+						?>
1546 1546
                     </select>
1547 1547
                 </td>
1548 1548
                 </tr>
1549 1549
 
1550 1550
                 <?php
1551 1551
 
1552
-                break;
1552
+				break;
1553 1553
 
1554
-            case 'google_analytics' :
1555
-                $selections = (array)get_option($value['id']);
1556
-                    ?>
1554
+			case 'google_analytics' :
1555
+				$selections = (array)get_option($value['id']);
1556
+					?>
1557 1557
                     <tr valign="top">
1558 1558
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1559 1559
                         <td class="forminp">
@@ -1561,62 +1561,62 @@  discard block
 block discarded – undo
1561 1561
 
1562 1562
                             <?php
1563 1563
 
1564
-                            $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1565
-                            $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1566
-                            $state = "&state=123";//any string
1567
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1568
-                            $response_type = "&response_type=code";
1569
-                            $client_id = "&client_id=".get_option('geodir_ga_client_id');
1570
-                            $access_type = "&access_type=offline";
1571
-                            $approval_prompt = "&approval_prompt=force";
1564
+							$oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1565
+							$scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1566
+							$state = "&state=123";//any string
1567
+							$redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1568
+							$response_type = "&response_type=code";
1569
+							$client_id = "&client_id=".get_option('geodir_ga_client_id');
1570
+							$access_type = "&access_type=offline";
1571
+							$approval_prompt = "&approval_prompt=force";
1572 1572
 
1573
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1573
+							$auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1574 1574
 
1575 1575
 
1576
-                            if (get_option('geodir_ga_auth_token')) {
1577
-                                ?>
1576
+							if (get_option('geodir_ga_auth_token')) {
1577
+								?>
1578 1578
                                 <span class="button-primary"
1579 1579
                                       onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1580 1580
                                 <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1581 1581
                             <?php
1582
-                                global $gd_ga_errors;
1583
-                                if(!empty($gd_ga_errors)){
1584
-                                    print_r($gd_ga_errors);
1585
-                                }
1586
-                            } else {
1587
-                                ?>
1582
+								global $gd_ga_errors;
1583
+								if(!empty($gd_ga_errors)){
1584
+									print_r($gd_ga_errors);
1585
+								}
1586
+							} else {
1587
+								?>
1588 1588
                                 <span class="button-primary"
1589 1589
                                       onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1590 1590
                             <?php
1591
-                            }
1592
-                            ?>
1591
+							}
1592
+							?>
1593 1593
                         </td>
1594 1594
                     </tr>
1595 1595
 
1596 1596
                 <?php
1597 1597
 
1598 1598
 
1599
-                break;
1599
+				break;
1600 1600
 
1601
-            case 'field_seperator' :
1601
+			case 'field_seperator' :
1602 1602
 
1603
-                ?>
1603
+				?>
1604 1604
                 <tr valign="top">
1605 1605
                     <td colspan="2" class="forminp geodir_line_seperator"></td>
1606 1606
                 </tr>
1607 1607
                 <?php
1608 1608
 
1609
-                break;
1609
+				break;
1610 1610
 
1611
-        endswitch;
1611
+		endswitch;
1612 1612
 
1613
-    endforeach;
1613
+	endforeach;
1614 1614
 
1615
-    if ($first_title === false) {
1616
-        echo "</div>";
1617
-    }
1615
+	if ($first_title === false) {
1616
+		echo "</div>";
1617
+	}
1618 1618
 
1619
-    ?>
1619
+	?>
1620 1620
 
1621 1621
     <script type="text/javascript">
1622 1622
 
@@ -1676,33 +1676,33 @@  discard block
 block discarded – undo
1676 1676
  */
1677 1677
 function geodir_post_info_setting()
1678 1678
 {
1679
-    global $post, $post_id;
1680
-
1681
-    $post_type = get_post_type();
1682
-
1683
-    $package_info = array();
1684
-
1685
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
1686
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
1687
-    echo '<div id="geodir_wrapper">';
1688
-    /**
1689
-     * Called before the GD custom fields are output in the wp-admin area.
1690
-     *
1691
-     * @since 1.0.0
1692
-     * @see 'geodir_after_default_field_in_meta_box'
1693
-     */
1694
-    do_action('geodir_before_default_field_in_meta_box');
1695
-    //geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
1696
-    // to display all fields in one information box
1697
-    geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
1698
-    /**
1699
-     * Called after the GD custom fields are output in the wp-admin area.
1700
-     *
1701
-     * @since 1.0.0
1702
-     * @see 'geodir_before_default_field_in_meta_box'
1703
-     */
1704
-    do_action('geodir_after_default_field_in_meta_box');
1705
-    echo '</div>';
1679
+	global $post, $post_id;
1680
+
1681
+	$post_type = get_post_type();
1682
+
1683
+	$package_info = array();
1684
+
1685
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
1686
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename');
1687
+	echo '<div id="geodir_wrapper">';
1688
+	/**
1689
+	 * Called before the GD custom fields are output in the wp-admin area.
1690
+	 *
1691
+	 * @since 1.0.0
1692
+	 * @see 'geodir_after_default_field_in_meta_box'
1693
+	 */
1694
+	do_action('geodir_before_default_field_in_meta_box');
1695
+	//geodir_get_custom_fields_html($package_info->pid,'default',$post_type);
1696
+	// to display all fields in one information box
1697
+	geodir_get_custom_fields_html($package_info->pid, 'all', $post_type);
1698
+	/**
1699
+	 * Called after the GD custom fields are output in the wp-admin area.
1700
+	 *
1701
+	 * @since 1.0.0
1702
+	 * @see 'geodir_before_default_field_in_meta_box'
1703
+	 */
1704
+	do_action('geodir_after_default_field_in_meta_box');
1705
+	echo '</div>';
1706 1706
 }
1707 1707
 
1708 1708
 /**
@@ -1715,18 +1715,18 @@  discard block
 block discarded – undo
1715 1715
  */
1716 1716
 function geodir_post_addinfo_setting()
1717 1717
 {
1718
-    global $post, $post_id;
1718
+	global $post, $post_id;
1719 1719
 
1720
-    $post_type = get_post_type();
1720
+	$post_type = get_post_type();
1721 1721
 
1722
-    $package_info = array();
1722
+	$package_info = array();
1723 1723
 
1724
-    $package_info = geodir_post_package_info($package_info, $post, $post_type);
1724
+	$package_info = geodir_post_package_info($package_info, $post, $post_type);
1725 1725
 
1726
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
1727
-    echo '<div id="geodir_wrapper">';
1728
-    geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
1729
-    echo '</div>';
1726
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename');
1727
+	echo '<div id="geodir_wrapper">';
1728
+	geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type);
1729
+	echo '</div>';
1730 1730
 
1731 1731
 }
1732 1732
 
@@ -1740,60 +1740,60 @@  discard block
 block discarded – undo
1740 1740
  */
1741 1741
 function geodir_post_attachments()
1742 1742
 {
1743
-    global $post, $post_id;
1743
+	global $post, $post_id;
1744 1744
 
1745
-    wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1745
+	wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1746 1746
 
1747
-    if (geodir_get_featured_image($post_id, 'thumbnail')) {
1748
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1749
-        geodir_show_featured_image($post_id, 'thumbnail');
1750
-    }
1747
+	if (geodir_get_featured_image($post_id, 'thumbnail')) {
1748
+		echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1749
+		geodir_show_featured_image($post_id, 'thumbnail');
1750
+	}
1751 1751
 
1752
-    $image_limit = 0;
1752
+	$image_limit = 0;
1753 1753
 
1754
-    ?>
1754
+	?>
1755 1755
 
1756 1756
 
1757 1757
     <h5 class="form_title">
1758 1758
         <?php if ($image_limit != 0 && $image_limit == 1) {
1759
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1760
-        } ?>
1759
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1760
+		} ?>
1761 1761
         <?php if ($image_limit != 0 && $image_limit > 1) {
1762
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1763
-        } ?>
1762
+			echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1763
+		} ?>
1764 1764
         <?php if ($image_limit == 0) {
1765
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1766
-        } ?>
1765
+			echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1766
+		} ?>
1767 1767
     </h5>
1768 1768
 
1769 1769
 
1770 1770
     <?php
1771 1771
 
1772
-    $curImages = geodir_get_images($post_id);
1773
-    $place_img_array = array();
1772
+	$curImages = geodir_get_images($post_id);
1773
+	$place_img_array = array();
1774 1774
 
1775
-    if (!empty($curImages)):
1776
-        foreach ($curImages as $p_img):
1777
-            $place_img_array[] = $p_img->src;
1778
-        endforeach;
1779
-    endif;
1775
+	if (!empty($curImages)):
1776
+		foreach ($curImages as $p_img):
1777
+			$place_img_array[] = $p_img->src;
1778
+		endforeach;
1779
+	endif;
1780 1780
 
1781
-    if (!empty($place_img_array))
1782
-        $curImages = implode(',', $place_img_array);
1781
+	if (!empty($place_img_array))
1782
+		$curImages = implode(',', $place_img_array);
1783 1783
 
1784 1784
 
1785
-    // adjust values here
1786
-    $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
1785
+	// adjust values here
1786
+	$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
1787 1787
 
1788
-    $svalue = $curImages; // this will be initial value of the above form field. Image urls.
1788
+	$svalue = $curImages; // this will be initial value of the above form field. Image urls.
1789 1789
 
1790
-    $multiple = true; // allow multiple files upload
1790
+	$multiple = true; // allow multiple files upload
1791 1791
 
1792
-    $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1792
+	$width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
1793 1793
 
1794
-    $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1794
+	$height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
1795 1795
 
1796
-    ?>
1796
+	?>
1797 1797
 
1798 1798
     <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;">
1799 1799
         <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/>
@@ -1835,13 +1835,13 @@  discard block
 block discarded – undo
1835 1835
  */
1836 1836
 function geodir_action_post_updated($post_ID, $post_after, $post_before)
1837 1837
 {
1838
-    $post_type = get_post_type($post_ID);
1838
+	$post_type = get_post_type($post_ID);
1839 1839
 
1840
-    if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1841
-        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) {
1842
-            geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
1843
-        }
1844
-    }
1840
+	if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1841
+		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) {
1842
+			geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title);
1843
+		}
1844
+	}
1845 1845
 }
1846 1846
 
1847 1847
 /**
@@ -1856,39 +1856,39 @@  discard block
 block discarded – undo
1856 1856
  */
1857 1857
 function geodir_notification_add_bcc_option($settings)
1858 1858
 {
1859
-    if (!empty($settings)) {
1860
-        $new_settings = array();
1861
-        foreach ($settings as $setting) {
1862
-            if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
1863
-                $geodir_bcc_listing_published_yes = array(
1864
-                    'name' => __('Listing published', 'geodirectory'),
1865
-                    'desc' => __('Yes', 'geodirectory'),
1866
-                    'id' => 'geodir_bcc_listing_published',
1867
-                    'std' => 'yes',
1868
-                    'type' => 'radio',
1869
-                    'value' => '1',
1870
-                    'radiogroup' => 'start'
1871
-                );
1872
-
1873
-                $geodir_bcc_listing_published_no = array(
1874
-                    'name' => __('Listing published', 'geodirectory'),
1875
-                    'desc' => __('No', 'geodirectory'),
1876
-                    'id' => 'geodir_bcc_listing_published',
1877
-                    'std' => 'yes',
1878
-                    'type' => 'radio',
1879
-                    'value' => '0',
1880
-                    'radiogroup' => 'end'
1881
-                );
1882
-
1883
-                $new_settings[] = $geodir_bcc_listing_published_yes;
1884
-                $new_settings[] = $geodir_bcc_listing_published_no;
1885
-            }
1886
-            $new_settings[] = $setting;
1887
-        }
1888
-        $settings = $new_settings;
1889
-    }
1859
+	if (!empty($settings)) {
1860
+		$new_settings = array();
1861
+		foreach ($settings as $setting) {
1862
+			if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
1863
+				$geodir_bcc_listing_published_yes = array(
1864
+					'name' => __('Listing published', 'geodirectory'),
1865
+					'desc' => __('Yes', 'geodirectory'),
1866
+					'id' => 'geodir_bcc_listing_published',
1867
+					'std' => 'yes',
1868
+					'type' => 'radio',
1869
+					'value' => '1',
1870
+					'radiogroup' => 'start'
1871
+				);
1872
+
1873
+				$geodir_bcc_listing_published_no = array(
1874
+					'name' => __('Listing published', 'geodirectory'),
1875
+					'desc' => __('No', 'geodirectory'),
1876
+					'id' => 'geodir_bcc_listing_published',
1877
+					'std' => 'yes',
1878
+					'type' => 'radio',
1879
+					'value' => '0',
1880
+					'radiogroup' => 'end'
1881
+				);
1882
+
1883
+				$new_settings[] = $geodir_bcc_listing_published_yes;
1884
+				$new_settings[] = $geodir_bcc_listing_published_no;
1885
+			}
1886
+			$new_settings[] = $setting;
1887
+		}
1888
+		$settings = $new_settings;
1889
+	}
1890 1890
 
1891
-    return $settings;
1891
+	return $settings;
1892 1892
 }
1893 1893
 
1894 1894
 
@@ -1903,19 +1903,19 @@  discard block
 block discarded – undo
1903 1903
  */
1904 1904
 function get_gd_theme_compat_callback()
1905 1905
 {
1906
-    global $wpdb;
1907
-    $themes = get_option('gd_theme_compats');
1908
-
1909
-    if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
1910
-        if (isset($_POST['export'])) {
1911
-            echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
1912
-        } else {
1913
-            echo json_encode($themes[$_POST['theme']]);
1914
-        }
1906
+	global $wpdb;
1907
+	$themes = get_option('gd_theme_compats');
1915 1908
 
1916
-    }
1909
+	if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
1910
+		if (isset($_POST['export'])) {
1911
+			echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']]));
1912
+		} else {
1913
+			echo json_encode($themes[$_POST['theme']]);
1914
+		}
1915
+
1916
+	}
1917 1917
 
1918
-    die();
1918
+	die();
1919 1919
 }
1920 1920
 
1921 1921
 add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
@@ -1929,20 +1929,20 @@  discard block
 block discarded – undo
1929 1929
  */
1930 1930
 function get_gd_theme_compat_import_callback()
1931 1931
 {
1932
-    global $wpdb;
1933
-    $themes = get_option('gd_theme_compats');
1934
-    if (isset($_POST['theme']) && !empty($_POST['theme'])) {
1935
-        $json = json_decode(stripslashes($_POST['theme']), true);
1936
-        if (!empty($json) && is_array($json)) {
1937
-            $key = sanitize_text_field(key($json));
1938
-            $themes[$key] = $json[$key];
1939
-            update_option('gd_theme_compats', $themes);
1940
-            echo $key;
1941
-            die();
1942
-        }
1943
-    }
1944
-    echo '0';
1945
-    die();
1932
+	global $wpdb;
1933
+	$themes = get_option('gd_theme_compats');
1934
+	if (isset($_POST['theme']) && !empty($_POST['theme'])) {
1935
+		$json = json_decode(stripslashes($_POST['theme']), true);
1936
+		if (!empty($json) && is_array($json)) {
1937
+			$key = sanitize_text_field(key($json));
1938
+			$themes[$key] = $json[$key];
1939
+			update_option('gd_theme_compats', $themes);
1940
+			echo $key;
1941
+			die();
1942
+		}
1943
+	}
1944
+	echo '0';
1945
+	die();
1946 1946
 }
1947 1947
 
1948 1948
 
@@ -1955,39 +1955,39 @@  discard block
 block discarded – undo
1955 1955
  */
1956 1956
 function gd_set_theme_compat()
1957 1957
 {
1958
-    global $wpdb;
1959
-    $theme = wp_get_theme();
1958
+	global $wpdb;
1959
+	$theme = wp_get_theme();
1960 1960
 
1961
-    if ($theme->parent()) {
1962
-        $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
1963
-    } else {
1964
-        $theme_name = str_replace(" ", "_", $theme->get('Name'));
1965
-    }
1961
+	if ($theme->parent()) {
1962
+		$theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
1963
+	} else {
1964
+		$theme_name = str_replace(" ", "_", $theme->get('Name'));
1965
+	}
1966 1966
 
1967
-    $theme_compats = get_option('gd_theme_compats');
1968
-    $current_compat = get_option('gd_theme_compat');
1969
-    $current_compat = str_replace("_custom", "", $current_compat);
1967
+	$theme_compats = get_option('gd_theme_compats');
1968
+	$current_compat = get_option('gd_theme_compat');
1969
+	$current_compat = str_replace("_custom", "", $current_compat);
1970 1970
  
1971
-    if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
1972
-        return;
1973
-    }// if already running correct compat then bail
1971
+	if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
1972
+		return;
1973
+	}// if already running correct compat then bail
1974 1974
 
1975
-    if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
1976
-        update_option('gd_theme_compat', $theme_name);
1977
-        update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
1975
+	if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
1976
+		update_option('gd_theme_compat', $theme_name);
1977
+		update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
1978 1978
 
1979
-        // if there are default options to set then set them
1980
-        if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
1979
+		// if there are default options to set then set them
1980
+		if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
1981 1981
 
1982
-            foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
1983
-                update_option($key, $val);
1984
-            }
1985
-        }
1982
+			foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
1983
+				update_option($key, $val);
1984
+			}
1985
+		}
1986 1986
 
1987
-    } else {
1988
-        update_option('gd_theme_compat', '');
1989
-        update_option('theme_compatibility_setting', '');
1990
-    }
1987
+	} else {
1988
+		update_option('gd_theme_compat', '');
1989
+		update_option('theme_compatibility_setting', '');
1990
+	}
1991 1991
 
1992 1992
 
1993 1993
 }
@@ -2002,9 +2002,9 @@  discard block
 block discarded – undo
2002 2002
  */
2003 2003
 function gd_check_avada_compat()
2004 2004
 {
2005
-    if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
2006
-        add_action('admin_notices', 'gd_avada_compat_warning');
2007
-    }
2005
+	if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
2006
+		add_action('admin_notices', 'gd_avada_compat_warning');
2007
+	}
2008 2008
 }
2009 2009
 
2010 2010
 
@@ -2017,22 +2017,22 @@  discard block
 block discarded – undo
2017 2017
 function gd_avada_compat_warning()
2018 2018
 {
2019 2019
 
2020
-    /*
2020
+	/*
2021 2021
     $msg_type = error
2022 2022
     $msg_type = updated fade
2023 2023
     $msg_type = update-nag
2024 2024
     */
2025 2025
 
2026
-    $plugin = 'avada-nag';
2027
-    $timestamp = 'avada-nag1234';
2028
-    $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');
2029
-    echo '<div id="' . $timestamp . '"  class="error">';
2030
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2031
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2032
-    echo "<p>$message</p>";
2033
-    echo "</div>";
2026
+	$plugin = 'avada-nag';
2027
+	$timestamp = 'avada-nag1234';
2028
+	$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');
2029
+	echo '<div id="' . $timestamp . '"  class="error">';
2030
+	echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2031
+	echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2032
+	echo "<p>$message</p>";
2033
+	echo "</div>";
2034 2034
 
2035
-    ?>
2035
+	?>
2036 2036
     <script>
2037 2037
         function gdRemoveANotification($plugin, $timestamp) {
2038 2038
 
@@ -2100,10 +2100,10 @@  discard block
 block discarded – undo
2100 2100
  */
2101 2101
 function geodir_avada_remove_notification()
2102 2102
 {
2103
-    update_option('avada_nag', TRUE);
2103
+	update_option('avada_nag', TRUE);
2104 2104
 
2105
-    // Always die in functions echoing ajax content
2106
-    die();
2105
+	// Always die in functions echoing ajax content
2106
+	die();
2107 2107
 }
2108 2108
 
2109 2109
 
@@ -2125,11 +2125,11 @@  discard block
 block discarded – undo
2125 2125
 	global $post, $typenow, $current_screen;
2126 2126
 	
2127 2127
 	$post_type = NULL;
2128
-    if (isset($_REQUEST['post_type']))
2128
+	if (isset($_REQUEST['post_type']))
2129 2129
 		$post_type = sanitize_key($_REQUEST['post_type']);
2130
-    elseif (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2130
+	elseif (isset($_REQUEST['post']) && get_post_type($_REQUEST['post']))
2131 2131
 		$post_type = get_post_type($_REQUEST['post']);
2132
-    elseif ($post && isset($post->post_type))
2132
+	elseif ($post && isset($post->post_type))
2133 2133
 		$post_type = $post->post_type;
2134 2134
 	elseif ($typenow)
2135 2135
 		$post_type = $typenow;
@@ -2163,7 +2163,7 @@  discard block
 block discarded – undo
2163 2163
 		// Don't allow same slug url for listing and location
2164 2164
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2165 2165
 			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2166
-        	wp_redirect($redirect_url);
2166
+			wp_redirect($redirect_url);
2167 2167
 			exit;
2168 2168
 		}
2169 2169
 		
@@ -2193,10 +2193,10 @@  discard block
 block discarded – undo
2193 2193
  * @package GeoDirectory
2194 2194
  */
2195 2195
 function geodir_hide_admin_preview_button() {
2196
-    global $post_type;
2197
-    $post_types = geodir_get_posttypes();
2198
-    if(in_array($post_type, $post_types))
2199
-        echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2196
+	global $post_type;
2197
+	$post_types = geodir_get_posttypes();
2198
+	if(in_array($post_type, $post_types))
2199
+		echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2200 2200
 }
2201 2201
 add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2202 2202
 add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
@@ -2211,7 +2211,7 @@  discard block
 block discarded – undo
2211 2211
  */
2212 2212
 function geodir_import_export_tab( $tabs ) {
2213 2213
 	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2214
-    return $tabs;
2214
+	return $tabs;
2215 2215
 }
2216 2216
 
2217 2217
 /**
@@ -2226,26 +2226,26 @@  discard block
 block discarded – undo
2226 2226
 function geodir_import_export_page() {
2227 2227
 	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2228 2228
 	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2229
-    /**
2230
-     * Filter sample category data csv file url.
2231
-     *
2232
-     * @since 1.0.0
2233
-     * @package GeoDirectory
2234
-     *
2235
-     * @param string $gd_cats_sample_csv Sample category data csv file url.
2236
-     */
2229
+	/**
2230
+	 * Filter sample category data csv file url.
2231
+	 *
2232
+	 * @since 1.0.0
2233
+	 * @package GeoDirectory
2234
+	 *
2235
+	 * @param string $gd_cats_sample_csv Sample category data csv file url.
2236
+	 */
2237 2237
 	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2238 2238
 	
2239 2239
 	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2240
-    /**
2241
-     * Filter sample post data csv file url.
2242
-     *
2243
-     * @since 1.0.0
2244
-     * @package GeoDirectory
2245
-     *
2246
-     * @param string $gd_posts_sample_csv Sample post data csv file url.
2247
-     */
2248
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2240
+	/**
2241
+	 * Filter sample post data csv file url.
2242
+	 *
2243
+	 * @since 1.0.0
2244
+	 * @package GeoDirectory
2245
+	 *
2246
+	 * @param string $gd_posts_sample_csv Sample post data csv file url.
2247
+	 */
2248
+	$gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2249 2249
 	
2250 2250
 	$gd_posttypes = geodir_get_posttypes( 'array' );
2251 2251
 	
@@ -2268,14 +2268,14 @@  discard block
 block discarded – undo
2268 2268
 	$gd_chunksize_options[100000] = 100000;
2269 2269
 	 
2270 2270
 	 /**
2271
-     * Filter max entries per export csv file.
2272
-     *
2273
-     * @since 1.5.6
2274
-     * @package GeoDirectory
2275
-     *
2276
-     * @param string $gd_chunksize_options Entries options.
2277
-     */
2278
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2271
+	  * Filter max entries per export csv file.
2272
+	  *
2273
+	  * @since 1.5.6
2274
+	  * @package GeoDirectory
2275
+	  *
2276
+	  * @param string $gd_chunksize_options Entries options.
2277
+	  */
2278
+	$gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2279 2279
 	
2280 2280
 	$gd_chunksize_option = '';
2281 2281
 	foreach ($gd_chunksize_options as $value => $title) {
@@ -2292,12 +2292,12 @@  discard block
 block discarded – undo
2292 2292
   <div class="gd-content-heading">
2293 2293
 
2294 2294
   <?php
2295
-    ini_set('max_execution_time', 999999);
2296
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2297
-    ini_restore('max_execution_time');
2295
+	ini_set('max_execution_time', 999999);
2296
+	$ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2297
+	ini_restore('max_execution_time');
2298 2298
 
2299
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2300
-        ?>
2299
+	if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2300
+		?>
2301 2301
 	<div id="gd_ie_reqs" class="metabox-holder">
2302 2302
       <div class="meta-box-sortables ui-sortable">
2303 2303
         <div class="postbox">
@@ -2472,7 +2472,7 @@  discard block
 block discarded – undo
2472 2472
 						 * Called just after the sample CSV download link.
2473 2473
 						 *
2474 2474
 						 * @since 1.0.0
2475
-                         * @package GeoDirectory
2475
+						 * @package GeoDirectory
2476 2476
 						 */
2477 2477
 						do_action('geodir_sample_cats_csv_download_link');
2478 2478
 						?>
@@ -2557,11 +2557,11 @@  discard block
 block discarded – undo
2557 2557
 	 *
2558 2558
 	 * Called after the last setting on the GD > Import & Export page.
2559 2559
 	 * @since 1.4.6
2560
-     * @package GeoDirectory
2560
+	 * @package GeoDirectory
2561 2561
 	 *
2562 2562
 	 * @param array $gd_posttypes GD post types.
2563
-     * @param array $gd_chunksize_options File chunk size options.
2564
-     * @param string $nonce Wordpress security token for GD import & export.
2563
+	 * @param array $gd_chunksize_options File chunk size options.
2564
+	 * @param string $nonce Wordpress security token for GD import & export.
2565 2565
 	 */
2566 2566
 	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2567 2567
 	?>
@@ -3248,44 +3248,44 @@  discard block
 block discarded – undo
3248 3248
 function geodir_init_filesystem()
3249 3249
 {
3250 3250
 
3251
-    if(!function_exists('get_filesystem_method')){
3252
-        require_once(ABSPATH."/wp-admin/includes/file.php");
3253
-    }
3254
-    $access_type = get_filesystem_method();
3255
-    if ($access_type === 'direct') {
3256
-        /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3257
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3258
-
3259
-        /* initialize the API */
3260
-        if (!WP_Filesystem($creds)) {
3261
-            /* any problems and we exit */
3262
-            //return '@@@3';
3263
-            return false;
3264
-        }
3251
+	if(!function_exists('get_filesystem_method')){
3252
+		require_once(ABSPATH."/wp-admin/includes/file.php");
3253
+	}
3254
+	$access_type = get_filesystem_method();
3255
+	if ($access_type === 'direct') {
3256
+		/* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3257
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3258
+
3259
+		/* initialize the API */
3260
+		if (!WP_Filesystem($creds)) {
3261
+			/* any problems and we exit */
3262
+			//return '@@@3';
3263
+			return false;
3264
+		}
3265 3265
 
3266
-        global $wp_filesystem;
3267
-        return $wp_filesystem;
3268
-        /* do our file manipulations below */
3269
-    } elseif (defined('FTP_USER')) {
3270
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3266
+		global $wp_filesystem;
3267
+		return $wp_filesystem;
3268
+		/* do our file manipulations below */
3269
+	} elseif (defined('FTP_USER')) {
3270
+		$creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3271
+
3272
+		/* initialize the API */
3273
+		if (!WP_Filesystem($creds)) {
3274
+			/* any problems and we exit */
3275
+			//return '@@@33';
3276
+			return false;
3277
+		}
3271 3278
 
3272
-        /* initialize the API */
3273
-        if (!WP_Filesystem($creds)) {
3274
-            /* any problems and we exit */
3275
-            //return '@@@33';
3276
-            return false;
3277
-        }
3279
+		global $wp_filesystem;
3280
+		//return '@@@1';
3281
+		return $wp_filesystem;
3278 3282
 
3279
-        global $wp_filesystem;
3280
-        //return '@@@1';
3281
-        return $wp_filesystem;
3282
-
3283
-    } else {
3284
-        //return '@@@2';
3285
-        /* don't have direct write access. Prompt user with our notice */
3286
-        add_action('admin_notice', 'geodir_filesystem_notice');
3287
-        return false;
3288
-    }
3283
+	} else {
3284
+		//return '@@@2';
3285
+		/* don't have direct write access. Prompt user with our notice */
3286
+		add_action('admin_notice', 'geodir_filesystem_notice');
3287
+		return false;
3288
+	}
3289 3289
 
3290 3290
 }
3291 3291
 
@@ -3303,10 +3303,10 @@  discard block
 block discarded – undo
3303 3303
  */
3304 3304
 function geodir_filesystem_notice()
3305 3305
 {   if ( defined( 'DOING_AJAX' ) ){return;}
3306
-    $access_type = get_filesystem_method();
3307
-    if ($access_type === 'direct') {
3308
-    } elseif (!defined('FTP_USER')) {
3309
-        ?>
3306
+	$access_type = get_filesystem_method();
3307
+	if ($access_type === 'direct') {
3308
+	} elseif (!defined('FTP_USER')) {
3309
+		?>
3310 3310
         <div class="error">
3311 3311
             <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'); ?>
3312 3312
                 <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>
@@ -3334,1280 +3334,1280 @@  discard block
 block discarded – undo
3334 3334
  * @return string Json data.
3335 3335
  */
3336 3336
 function geodir_ajax_import_export() {
3337
-    global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3337
+	global $wpdb, $plugin_prefix, $current_user, $wp_filesystem;
3338 3338
     
3339
-    error_reporting(0);
3339
+	error_reporting(0);
3340 3340
 
3341
-    $xstart = microtime(true);
3341
+	$xstart = microtime(true);
3342 3342
 
3343
-    // try to set higher limits for import
3344
-    $max_input_time = ini_get('max_input_time');
3345
-    $max_execution_time = ini_get('max_execution_time');
3346
-    $memory_limit= ini_get('memory_limit');
3343
+	// try to set higher limits for import
3344
+	$max_input_time = ini_get('max_input_time');
3345
+	$max_execution_time = ini_get('max_execution_time');
3346
+	$memory_limit= ini_get('memory_limit');
3347 3347
 
3348
-    if(!$max_input_time || $max_input_time<3000){
3349
-        ini_set('max_input_time', 3000);
3350
-    }
3348
+	if(!$max_input_time || $max_input_time<3000){
3349
+		ini_set('max_input_time', 3000);
3350
+	}
3351 3351
 
3352
-    if(!$max_execution_time || $max_execution_time<3000){
3353
-        ini_set('max_execution_time', 3000);
3354
-    }
3352
+	if(!$max_execution_time || $max_execution_time<3000){
3353
+		ini_set('max_execution_time', 3000);
3354
+	}
3355 3355
 
3356
-    if($memory_limit && str_replace('M','',$memory_limit)){
3357
-        if(str_replace('M','',$memory_limit)<256){
3358
-            ini_set('memory_limit', '256M');
3359
-        }
3360
-    }
3356
+	if($memory_limit && str_replace('M','',$memory_limit)){
3357
+		if(str_replace('M','',$memory_limit)<256){
3358
+			ini_set('memory_limit', '256M');
3359
+		}
3360
+	}
3361 3361
 
3362
-    $json = array();
3362
+	$json = array();
3363 3363
 
3364
-    if ( !current_user_can( 'manage_options' ) ) {
3365
-        wp_send_json( $json );
3366
-    }
3364
+	if ( !current_user_can( 'manage_options' ) ) {
3365
+		wp_send_json( $json );
3366
+	}
3367 3367
 
3368
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3369
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3370
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3368
+	$task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3369
+	$nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3370
+	$stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3371 3371
 
3372
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3373
-        wp_send_json( $json );
3374
-    }
3372
+	if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3373
+		wp_send_json( $json );
3374
+	}
3375 3375
 
3376
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3377
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3378
-    $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3379
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3376
+	$post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3377
+	$chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3378
+	$chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3379
+	$chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3380 3380
 
3381
-    $wp_filesystem = geodir_init_filesystem();
3382
-    if (!$wp_filesystem) {
3383
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3384
-        wp_send_json( $json );
3385
-    }
3381
+	$wp_filesystem = geodir_init_filesystem();
3382
+	if (!$wp_filesystem) {
3383
+		$json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3384
+		wp_send_json( $json );
3385
+	}
3386 3386
 
3387
-    if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3388
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3389
-        wp_send_json( $json );
3390
-    }
3387
+	if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3388
+		$json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3389
+		wp_send_json( $json );
3390
+	}
3391 3391
 
3392
-    $csv_file_dir = geodir_path_import_export( false );
3393
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3394
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3395
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3396
-            wp_send_json( $json );
3397
-        }
3398
-    }
3392
+	$csv_file_dir = geodir_path_import_export( false );
3393
+	if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3394
+		if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3395
+			$json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3396
+			wp_send_json( $json );
3397
+		}
3398
+	}
3399 3399
     
3400
-    $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3401
-    $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3402
-
3403
-    switch ( $task ) {
3404
-        case 'export_posts': {
3405
-            // WPML
3406
-            $is_wpml = geodir_is_wpml();
3407
-            if ($is_wpml) {
3408
-                global $sitepress;
3409
-                $active_lang = ICL_LANGUAGE_CODE;
3400
+	$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3401
+	$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3402
+
3403
+	switch ( $task ) {
3404
+		case 'export_posts': {
3405
+			// WPML
3406
+			$is_wpml = geodir_is_wpml();
3407
+			if ($is_wpml) {
3408
+				global $sitepress;
3409
+				$active_lang = ICL_LANGUAGE_CODE;
3410 3410
                 
3411
-                $sitepress->switch_lang('all', true);
3412
-            }
3413
-            // WPML
3414
-            if ( $post_type == 'gd_event' ) {
3415
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3416
-            }
3417
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3411
+				$sitepress->switch_lang('all', true);
3412
+			}
3413
+			// WPML
3414
+			if ( $post_type == 'gd_event' ) {
3415
+				add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3416
+			}
3417
+			$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3418 3418
             
3419
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3420
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3421
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3422
-            }
3423
-            $posts_count = geodir_get_posts_count( $post_type );
3424
-            $file_url_base = geodir_path_import_export() . '/';
3425
-            $file_url = $file_url_base . $file_name . '.csv';
3426
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3427
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3419
+			$file_name = $post_type . '_' . date( 'dmyHi' );
3420
+			if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3421
+				$file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3422
+			}
3423
+			$posts_count = geodir_get_posts_count( $post_type );
3424
+			$file_url_base = geodir_path_import_export() . '/';
3425
+			$file_url = $file_url_base . $file_name . '.csv';
3426
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3427
+			$file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3428 3428
             
3429
-            $chunk_file_paths = array();
3429
+			$chunk_file_paths = array();
3430 3430
 
3431
-            if ( isset( $_REQUEST['_c'] ) ) {
3432
-                $json['total'] = $posts_count;
3433
-                // WPML
3434
-                if ($is_wpml) {
3435
-                    $sitepress->switch_lang($active_lang, true);
3436
-                }
3437
-                // WPML
3438
-                wp_send_json( $json );
3439
-                gd_die();
3440
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3441
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3442
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3443
-                $percentage = min( $percentage, 100 );
3431
+			if ( isset( $_REQUEST['_c'] ) ) {
3432
+				$json['total'] = $posts_count;
3433
+				// WPML
3434
+				if ($is_wpml) {
3435
+					$sitepress->switch_lang($active_lang, true);
3436
+				}
3437
+				// WPML
3438
+				wp_send_json( $json );
3439
+				gd_die();
3440
+			} else if ( isset( $_REQUEST['_st'] ) ) {
3441
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3442
+				$percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3443
+				$percentage = min( $percentage, 100 );
3444 3444
                 
3445
-                $json['percentage'] = $percentage;
3446
-                // WPML
3447
-                if ($is_wpml) {
3448
-                    $sitepress->switch_lang($active_lang, true);
3449
-                }
3450
-                // WPML
3451
-                wp_send_json( $json );
3452
-                gd_die();
3453
-            } else {
3454
-                if ( !$posts_count > 0 ) {
3455
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3456
-                } else {
3457
-                    $total_posts = $posts_count;
3458
-                    if ($chunk_per_page > $total_posts) {
3459
-                        $chunk_per_page = $total_posts;
3460
-                    }
3461
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3445
+				$json['percentage'] = $percentage;
3446
+				// WPML
3447
+				if ($is_wpml) {
3448
+					$sitepress->switch_lang($active_lang, true);
3449
+				}
3450
+				// WPML
3451
+				wp_send_json( $json );
3452
+				gd_die();
3453
+			} else {
3454
+				if ( !$posts_count > 0 ) {
3455
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3456
+				} else {
3457
+					$total_posts = $posts_count;
3458
+					if ($chunk_per_page > $total_posts) {
3459
+						$chunk_per_page = $total_posts;
3460
+					}
3461
+					$chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3462 3462
                     
3463
-                    $j = $chunk_page_no;
3464
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3463
+					$j = $chunk_page_no;
3464
+					$chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3465 3465
                     
3466
-                    $per_page = 500;
3467
-                    if ($per_page > $chunk_per_page) {
3468
-                        $per_page = $chunk_per_page;
3469
-                    }
3470
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3466
+					$per_page = 500;
3467
+					if ($per_page > $chunk_per_page) {
3468
+						$per_page = $chunk_per_page;
3469
+					}
3470
+					$total_pages = ceil( $chunk_per_page / $per_page );
3471 3471
                     
3472
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3473
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3472
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3473
+						$save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3474 3474
                         
3475
-                        $clear = $i == 0 ? true : false;
3476
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3477
-                    }
3475
+						$clear = $i == 0 ? true : false;
3476
+						geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3477
+					}
3478 3478
                         
3479
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3480
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3481
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3482
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3483
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3479
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3480
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3481
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3482
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3483
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3484 3484
                         
3485
-                        $file_url = $file_url_base . $chunk_file_name;
3486
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3487
-                    }
3485
+						$file_url = $file_url_base . $chunk_file_name;
3486
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3487
+					}
3488 3488
                     
3489
-                    if ( !empty($chunk_file_paths) ) {
3490
-                        $json['total'] = $posts_count;
3491
-                        $json['files'] = $chunk_file_paths;
3492
-                    } else {
3493
-                        if ($j > 1) {
3494
-                            $json['total'] = $posts_count;
3495
-                            $json['files'] = array();
3496
-                        } else {
3497
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3498
-                        }
3499
-                    }
3500
-                }
3501
-                // WPML
3502
-                if ($is_wpml) {
3503
-                    $sitepress->switch_lang($active_lang, true);
3504
-                }
3505
-                // WPML
3506
-                wp_send_json( $json );
3507
-            }
3508
-        }
3509
-        break;
3510
-        case 'export_cats': {
3511
-            // WPML
3512
-            $is_wpml = geodir_is_wpml();
3513
-            if ($is_wpml) {
3514
-                global $sitepress;
3515
-                $active_lang = ICL_LANGUAGE_CODE;
3489
+					if ( !empty($chunk_file_paths) ) {
3490
+						$json['total'] = $posts_count;
3491
+						$json['files'] = $chunk_file_paths;
3492
+					} else {
3493
+						if ($j > 1) {
3494
+							$json['total'] = $posts_count;
3495
+							$json['files'] = array();
3496
+						} else {
3497
+							$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3498
+						}
3499
+					}
3500
+				}
3501
+				// WPML
3502
+				if ($is_wpml) {
3503
+					$sitepress->switch_lang($active_lang, true);
3504
+				}
3505
+				// WPML
3506
+				wp_send_json( $json );
3507
+			}
3508
+		}
3509
+		break;
3510
+		case 'export_cats': {
3511
+			// WPML
3512
+			$is_wpml = geodir_is_wpml();
3513
+			if ($is_wpml) {
3514
+				global $sitepress;
3515
+				$active_lang = ICL_LANGUAGE_CODE;
3516 3516
                 
3517
-                $sitepress->switch_lang('all', true);
3518
-            }
3519
-            // WPML
3520
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3517
+				$sitepress->switch_lang('all', true);
3518
+			}
3519
+			// WPML
3520
+			$file_name = $post_type . 'category_' . date( 'dmyHi' );
3521 3521
             
3522
-            $terms_count = geodir_get_terms_count( $post_type );
3523
-            $file_url_base = geodir_path_import_export() . '/';
3524
-            $file_url = $file_url_base . $file_name . '.csv';
3525
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3526
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3522
+			$terms_count = geodir_get_terms_count( $post_type );
3523
+			$file_url_base = geodir_path_import_export() . '/';
3524
+			$file_url = $file_url_base . $file_name . '.csv';
3525
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3526
+			$file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3527 3527
             
3528
-            $chunk_file_paths = array();
3528
+			$chunk_file_paths = array();
3529 3529
             
3530
-            if ( isset( $_REQUEST['_st'] ) ) {
3531
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3532
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3533
-                $percentage = min( $percentage, 100 );
3530
+			if ( isset( $_REQUEST['_st'] ) ) {
3531
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3532
+				$percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3533
+				$percentage = min( $percentage, 100 );
3534 3534
                 
3535
-                $json['percentage'] = $percentage;
3536
-                // WPML
3537
-                if ($is_wpml) {
3538
-                    $sitepress->switch_lang($active_lang, true);
3539
-                }
3540
-                // WPML
3541
-                wp_send_json( $json );
3542
-            } else {
3543
-                if ( !$terms_count > 0 ) {
3544
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3545
-                } else {
3546
-                    $total_terms = $terms_count;
3547
-                    if ($chunk_per_page > $terms_count) {
3548
-                        $chunk_per_page = $terms_count;
3549
-                    }
3550
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3535
+				$json['percentage'] = $percentage;
3536
+				// WPML
3537
+				if ($is_wpml) {
3538
+					$sitepress->switch_lang($active_lang, true);
3539
+				}
3540
+				// WPML
3541
+				wp_send_json( $json );
3542
+			} else {
3543
+				if ( !$terms_count > 0 ) {
3544
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3545
+				} else {
3546
+					$total_terms = $terms_count;
3547
+					if ($chunk_per_page > $terms_count) {
3548
+						$chunk_per_page = $terms_count;
3549
+					}
3550
+					$chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3551 3551
                     
3552
-                    $j = $chunk_page_no;
3553
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3552
+					$j = $chunk_page_no;
3553
+					$chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3554 3554
                     
3555
-                    $per_page = 500;
3556
-                    if ($per_page > $chunk_per_page) {
3557
-                        $per_page = $chunk_per_page;
3558
-                    }
3559
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3555
+					$per_page = 500;
3556
+					if ($per_page > $chunk_per_page) {
3557
+						$per_page = $chunk_per_page;
3558
+					}
3559
+					$total_pages = ceil( $chunk_per_page / $per_page );
3560 3560
                     
3561
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3562
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3561
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3562
+						$save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3563 3563
                         
3564
-                        $clear = $i == 0 ? true : false;
3565
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3566
-                    }
3564
+						$clear = $i == 0 ? true : false;
3565
+						geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3566
+					}
3567 3567
                     
3568
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3569
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3570
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3571
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3572
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3568
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3569
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3570
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3571
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3572
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3573 3573
                         
3574
-                        $file_url = $file_url_base . $chunk_file_name;
3575
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3576
-                    }
3574
+						$file_url = $file_url_base . $chunk_file_name;
3575
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3576
+					}
3577 3577
                     
3578
-                    if ( !empty($chunk_file_paths) ) {
3579
-                        $json['total'] = $terms_count;
3580
-                        $json['files'] = $chunk_file_paths;
3581
-                    } else {
3582
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3583
-                    }
3584
-                }
3585
-                // WPML
3586
-                if ($is_wpml) {
3587
-                    $sitepress->switch_lang($active_lang, true);
3588
-                }
3589
-                // WPML
3590
-                wp_send_json( $json );
3591
-            }
3592
-        }
3593
-        break;
3594
-        case 'export_locations': {
3595
-            $file_url_base = geodir_path_import_export() . '/';
3596
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3597
-            $file_url = $file_url_base . $file_name . '.csv';
3598
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3599
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3578
+					if ( !empty($chunk_file_paths) ) {
3579
+						$json['total'] = $terms_count;
3580
+						$json['files'] = $chunk_file_paths;
3581
+					} else {
3582
+						$json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3583
+					}
3584
+				}
3585
+				// WPML
3586
+				if ($is_wpml) {
3587
+					$sitepress->switch_lang($active_lang, true);
3588
+				}
3589
+				// WPML
3590
+				wp_send_json( $json );
3591
+			}
3592
+		}
3593
+		break;
3594
+		case 'export_locations': {
3595
+			$file_url_base = geodir_path_import_export() . '/';
3596
+			$file_name = 'gd_locations_' . date( 'dmyHi' );
3597
+			$file_url = $file_url_base . $file_name . '.csv';
3598
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3599
+			$file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3600 3600
             
3601
-            $items_count = (int)geodir_location_imex_count_locations();
3601
+			$items_count = (int)geodir_location_imex_count_locations();
3602 3602
             
3603
-            if ( isset( $_REQUEST['_st'] ) ) {
3604
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3605
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3606
-                $percentage = min( $percentage, 100 );
3603
+			if ( isset( $_REQUEST['_st'] ) ) {
3604
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3605
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3606
+				$percentage = min( $percentage, 100 );
3607 3607
                 
3608
-                $json['percentage'] = $percentage;
3609
-                wp_send_json( $json );
3610
-            } else {
3611
-                $chunk_file_paths = array();
3608
+				$json['percentage'] = $percentage;
3609
+				wp_send_json( $json );
3610
+			} else {
3611
+				$chunk_file_paths = array();
3612 3612
                 
3613
-                if ( !$items_count > 0 ) {
3614
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3615
-                } else {
3616
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3617
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3613
+				if ( !$items_count > 0 ) {
3614
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3615
+				} else {
3616
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3617
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3618 3618
                     
3619
-                    $j = $chunk_page_no;
3620
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3619
+					$j = $chunk_page_no;
3620
+					$chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3621 3621
                     
3622
-                    $per_page = 500;
3623
-                    $per_page = min( $per_page, $chunk_per_page );
3624
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3622
+					$per_page = 500;
3623
+					$per_page = min( $per_page, $chunk_per_page );
3624
+					$total_pages = ceil( $chunk_per_page / $per_page );
3625 3625
                     
3626
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3627
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3626
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3627
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3628 3628
                         
3629
-                        $clear = $i == 0 ? true : false;
3630
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3631
-                    }
3629
+						$clear = $i == 0 ? true : false;
3630
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3631
+					}
3632 3632
                     
3633
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3634
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3635
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3636
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3637
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3633
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3634
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3635
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3636
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3637
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3638 3638
                         
3639
-                        $file_url = $file_url_base . $chunk_file_name;
3640
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3641
-                    }
3639
+						$file_url = $file_url_base . $chunk_file_name;
3640
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3641
+					}
3642 3642
                     
3643
-                    if ( !empty($chunk_file_paths) ) {
3644
-                        $json['total'] = $items_count;
3645
-                        $json['files'] = $chunk_file_paths;
3646
-                    } else {
3647
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3648
-                    }
3649
-                }
3650
-                wp_send_json( $json );
3651
-            }
3652
-        }
3653
-        break;
3654
-        case 'export_hoods': {
3655
-            $file_url_base = geodir_path_import_export() . '/';
3656
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3657
-            $file_url = $file_url_base . $file_name . '.csv';
3658
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3659
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3643
+					if ( !empty($chunk_file_paths) ) {
3644
+						$json['total'] = $items_count;
3645
+						$json['files'] = $chunk_file_paths;
3646
+					} else {
3647
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3648
+					}
3649
+				}
3650
+				wp_send_json( $json );
3651
+			}
3652
+		}
3653
+		break;
3654
+		case 'export_hoods': {
3655
+			$file_url_base = geodir_path_import_export() . '/';
3656
+			$file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3657
+			$file_url = $file_url_base . $file_name . '.csv';
3658
+			$file_path = $csv_file_dir . '/' . $file_name . '.csv';
3659
+			$file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3660 3660
             
3661
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3661
+			$items_count = (int)geodir_location_imex_count_neighbourhoods();
3662 3662
             
3663
-            if ( isset( $_REQUEST['_st'] ) ) {
3664
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3665
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3666
-                $percentage = min( $percentage, 100 );
3663
+			if ( isset( $_REQUEST['_st'] ) ) {
3664
+				$line_count = (int)geodir_import_export_line_count( $file_path_temp );
3665
+				$percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3666
+				$percentage = min( $percentage, 100 );
3667 3667
                 
3668
-                $json['percentage'] = $percentage;
3669
-                wp_send_json( $json );
3670
-            } else {
3671
-                $chunk_file_paths = array();
3668
+				$json['percentage'] = $percentage;
3669
+				wp_send_json( $json );
3670
+			} else {
3671
+				$chunk_file_paths = array();
3672 3672
                 
3673
-                if ( !$items_count > 0 ) {
3674
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3675
-                } else {
3676
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3677
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3673
+				if ( !$items_count > 0 ) {
3674
+					$json['error'] = __( 'No records to export.', 'geodirectory' );
3675
+				} else {
3676
+					$chunk_per_page = min( $chunk_per_page, $items_count );
3677
+					$chunk_total_pages = ceil( $items_count / $chunk_per_page );
3678 3678
                     
3679
-                    $j = $chunk_page_no;
3680
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3679
+					$j = $chunk_page_no;
3680
+					$chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3681 3681
                     
3682
-                    $per_page = 500;
3683
-                    $per_page = min( $per_page, $chunk_per_page );
3684
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3682
+					$per_page = 500;
3683
+					$per_page = min( $per_page, $chunk_per_page );
3684
+					$total_pages = ceil( $chunk_per_page / $per_page );
3685 3685
                     
3686
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3687
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3686
+					for ( $i = 0; $i <= $total_pages; $i++ ) {
3687
+						$save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3688 3688
                         
3689
-                        $clear = $i == 0 ? true : false;
3690
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3691
-                    }
3689
+						$clear = $i == 0 ? true : false;
3690
+						geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3691
+					}
3692 3692
                     
3693
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3694
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3695
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3696
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3697
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3693
+					if ( $wp_filesystem->exists( $file_path_temp ) ) {
3694
+						$chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3695
+						$chunk_file_name = $file_name . $chunk_page_no . '.csv';
3696
+						$file_path = $csv_file_dir . '/' . $chunk_file_name;
3697
+						$wp_filesystem->move( $file_path_temp, $file_path, true );
3698 3698
                         
3699
-                        $file_url = $file_url_base . $chunk_file_name;
3700
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3701
-                    }
3699
+						$file_url = $file_url_base . $chunk_file_name;
3700
+						$chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3701
+					}
3702 3702
                     
3703
-                    if ( !empty($chunk_file_paths) ) {
3704
-                        $json['total'] = $items_count;
3705
-                        $json['files'] = $chunk_file_paths;
3706
-                    } else {
3707
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3708
-                    }
3709
-                }
3710
-                wp_send_json( $json );
3711
-            }
3712
-        }
3713
-        break;
3714
-        case 'prepare_import':
3715
-        case 'import_cat':
3716
-        case 'import_post':
3717
-        case 'import_loc':
3718
-        case 'import_hood': {
3719
-            // WPML
3720
-            $is_wpml = geodir_is_wpml();
3721
-            if ($is_wpml) {
3722
-                global $sitepress;
3723
-                $active_lang = ICL_LANGUAGE_CODE;
3724
-            }
3725
-            // WPML
3703
+					if ( !empty($chunk_file_paths) ) {
3704
+						$json['total'] = $items_count;
3705
+						$json['files'] = $chunk_file_paths;
3706
+					} else {
3707
+						$json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3708
+					}
3709
+				}
3710
+				wp_send_json( $json );
3711
+			}
3712
+		}
3713
+		break;
3714
+		case 'prepare_import':
3715
+		case 'import_cat':
3716
+		case 'import_post':
3717
+		case 'import_loc':
3718
+		case 'import_hood': {
3719
+			// WPML
3720
+			$is_wpml = geodir_is_wpml();
3721
+			if ($is_wpml) {
3722
+				global $sitepress;
3723
+				$active_lang = ICL_LANGUAGE_CODE;
3724
+			}
3725
+			// WPML
3726 3726
             
3727
-            ini_set( 'auto_detect_line_endings', true );
3727
+			ini_set( 'auto_detect_line_endings', true );
3728 3728
             
3729
-            $uploads = wp_upload_dir();
3730
-            $uploads_dir = $uploads['path'];
3731
-            $uploads_subdir = $uploads['subdir'];
3729
+			$uploads = wp_upload_dir();
3730
+			$uploads_dir = $uploads['path'];
3731
+			$uploads_subdir = $uploads['subdir'];
3732 3732
             
3733
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3734
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3733
+			$csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3734
+			$import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3735 3735
             
3736
-            $csv_file_arr = explode( '/', $csv_file );
3737
-            $csv_filename = end( $csv_file_arr );
3738
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3736
+			$csv_file_arr = explode( '/', $csv_file );
3737
+			$csv_filename = end( $csv_file_arr );
3738
+			$target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3739 3739
             
3740
-            $json['file'] = $csv_file;
3741
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3742
-            $file = array();
3740
+			$json['file'] = $csv_file;
3741
+			$json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3742
+			$file = array();
3743 3743
 
3744
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3745
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3744
+			if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3745
+				$wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3746 3746
                 
3747
-                if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3748
-                    $json['error'] = NULL;
3749
-
3750
-                    $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3751
-                    setlocale(LC_ALL, 'en_US.UTF-8');
3752
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3753
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3754
-                            if ( !empty( $data ) ) {
3755
-                                $file[] = $data;
3756
-                            }
3757
-                        }
3758
-                        fclose($handle);
3759
-                    }
3760
-                    setlocale(LC_ALL, $lc_all);
3747
+				if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3748
+					$json['error'] = NULL;
3749
+
3750
+					$lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3751
+					setlocale(LC_ALL, 'en_US.UTF-8');
3752
+					if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3753
+						while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3754
+							if ( !empty( $data ) ) {
3755
+								$file[] = $data;
3756
+							}
3757
+						}
3758
+						fclose($handle);
3759
+					}
3760
+					setlocale(LC_ALL, $lc_all);
3761 3761
 
3762
-                    $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
3762
+					$json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0;
3763 3763
                     
3764
-                    if (!$json['rows'] > 0) {
3765
-                        $json['error'] = __('No data found in csv file.', 'geodirectory');
3766
-                    }
3767
-                } else {
3768
-                    wp_send_json( $json );
3769
-                }
3770
-            } else {
3771
-                wp_send_json( $json );
3772
-            }
3764
+					if (!$json['rows'] > 0) {
3765
+						$json['error'] = __('No data found in csv file.', 'geodirectory');
3766
+					}
3767
+				} else {
3768
+					wp_send_json( $json );
3769
+				}
3770
+			} else {
3771
+				wp_send_json( $json );
3772
+			}
3773 3773
             
3774
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3775
-                wp_send_json( $json );
3776
-            }
3774
+			if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3775
+				wp_send_json( $json );
3776
+			}
3777 3777
             
3778
-            $total = $json['rows'];
3779
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3780
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3778
+			$total = $json['rows'];
3779
+			$limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3780
+			$processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3781 3781
             
3782
-            $count = $limit;
3782
+			$count = $limit;
3783 3783
             
3784
-            if ($count < $total) {
3785
-                $count = $processed + $count;
3786
-                if ($count > $total) {
3787
-                    $count = $total;
3788
-                }
3789
-            } else {
3790
-                $count = $total;
3791
-            }
3784
+			if ($count < $total) {
3785
+				$count = $processed + $count;
3786
+				if ($count > $total) {
3787
+					$count = $total;
3788
+				}
3789
+			} else {
3790
+				$count = $total;
3791
+			}
3792 3792
             
3793
-            $created = 0;
3794
-            $updated = 0;
3795
-            $skipped = 0;
3796
-            $invalid = 0;
3797
-            $invalid_addr = 0;
3798
-            $images = 0;
3793
+			$created = 0;
3794
+			$updated = 0;
3795
+			$skipped = 0;
3796
+			$invalid = 0;
3797
+			$invalid_addr = 0;
3798
+			$images = 0;
3799 3799
             
3800
-            $gd_post_info = array();
3801
-            $countpost = 0;
3800
+			$gd_post_info = array();
3801
+			$countpost = 0;
3802 3802
             
3803
-            $post_types = geodir_get_posttypes();
3803
+			$post_types = geodir_get_posttypes();
3804 3804
 
3805
-            if ( $task == 'import_cat' ) {
3806
-                if (!empty($file)) {
3807
-                    $columns = isset($file[0]) ? $file[0] : NULL;
3805
+			if ( $task == 'import_cat' ) {
3806
+				if (!empty($file)) {
3807
+					$columns = isset($file[0]) ? $file[0] : NULL;
3808 3808
                     
3809
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3810
-                        $json['error'] = CSV_INVAILD_FILE;
3811
-                        wp_send_json( $json );
3812
-                        exit;
3813
-                    }
3809
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3810
+						$json['error'] = CSV_INVAILD_FILE;
3811
+						wp_send_json( $json );
3812
+						exit;
3813
+					}
3814 3814
                     
3815
-                    $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
3815
+					$gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
3816 3816
                     
3817
-                    for ($i = 1; $i <= $limit; $i++) {
3818
-                        $index = $processed + $i;
3817
+					for ($i = 1; $i <= $limit; $i++) {
3818
+						$index = $processed + $i;
3819 3819
                         
3820
-                        if (isset($file[$index])) {
3821
-                            $row = $file[$index];
3822
-                            $row = array_map( 'trim', $row );
3823
-                            //$row = array_map( 'utf8_encode', $row );
3820
+						if (isset($file[$index])) {
3821
+							$row = $file[$index];
3822
+							$row = array_map( 'trim', $row );
3823
+							//$row = array_map( 'utf8_encode', $row );
3824 3824
                             
3825
-                            $cat_id = '';
3826
-                            $cat_name = '';
3827
-                            $cat_slug = '';
3828
-                            $cat_posttype = '';
3829
-                            $cat_parent = '';
3830
-                            $cat_description = '';
3831
-                            $cat_schema = '';
3832
-                            $cat_top_description = '';
3833
-                            $cat_image = '';
3834
-                            $cat_icon = '';
3835
-                            $cat_language = '';
3836
-                            $cat_id_original = '';
3825
+							$cat_id = '';
3826
+							$cat_name = '';
3827
+							$cat_slug = '';
3828
+							$cat_posttype = '';
3829
+							$cat_parent = '';
3830
+							$cat_description = '';
3831
+							$cat_schema = '';
3832
+							$cat_top_description = '';
3833
+							$cat_image = '';
3834
+							$cat_icon = '';
3835
+							$cat_language = '';
3836
+							$cat_id_original = '';
3837 3837
                             
3838
-                            $c = 0;
3839
-                            foreach ($columns as $column ) {
3840
-                                if ( $column == 'cat_id' ) {
3841
-                                    $cat_id = (int)$row[$c];
3842
-                                } else if ( $column == 'cat_name' ) {
3843
-                                    $cat_name = $row[$c];
3844
-                                } else if ( $column == 'cat_slug' ) {
3845
-                                    $cat_slug = $row[$c];
3846
-                                } else if ( $column == 'cat_posttype' ) {
3847
-                                    $cat_posttype = $row[$c];
3848
-                                } else if ( $column == 'cat_parent' ) {
3849
-                                    $cat_parent = trim($row[$c]);
3850
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3851
-                                    $cat_schema = $row[$c];
3852
-                                } else if ( $column == 'cat_description' ) {
3853
-                                    $cat_description = $row[$c];
3854
-                                } else if ( $column == 'cat_top_description' ) {
3855
-                                    $cat_top_description = $row[$c];
3856
-                                } else if ( $column == 'cat_image' ) {
3857
-                                    $cat_image = $row[$c];
3858
-                                } else if ( $column == 'cat_icon' ) {
3859
-                                    $cat_icon = $row[$c];
3860
-                                }
3861
-                                // WPML
3862
-                                if ( $is_wpml ) {
3863
-                                    if ( $column == 'cat_language' ) {
3864
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3865
-                                    } else if ( $column == 'cat_id_original' ) {
3866
-                                        $cat_id_original = (int)$row[$c];
3867
-                                    }
3868
-                                }
3869
-                                // WPML
3870
-                                $c++;
3871
-                            }
3838
+							$c = 0;
3839
+							foreach ($columns as $column ) {
3840
+								if ( $column == 'cat_id' ) {
3841
+									$cat_id = (int)$row[$c];
3842
+								} else if ( $column == 'cat_name' ) {
3843
+									$cat_name = $row[$c];
3844
+								} else if ( $column == 'cat_slug' ) {
3845
+									$cat_slug = $row[$c];
3846
+								} else if ( $column == 'cat_posttype' ) {
3847
+									$cat_posttype = $row[$c];
3848
+								} else if ( $column == 'cat_parent' ) {
3849
+									$cat_parent = trim($row[$c]);
3850
+								} else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3851
+									$cat_schema = $row[$c];
3852
+								} else if ( $column == 'cat_description' ) {
3853
+									$cat_description = $row[$c];
3854
+								} else if ( $column == 'cat_top_description' ) {
3855
+									$cat_top_description = $row[$c];
3856
+								} else if ( $column == 'cat_image' ) {
3857
+									$cat_image = $row[$c];
3858
+								} else if ( $column == 'cat_icon' ) {
3859
+									$cat_icon = $row[$c];
3860
+								}
3861
+								// WPML
3862
+								if ( $is_wpml ) {
3863
+									if ( $column == 'cat_language' ) {
3864
+										$cat_language = geodir_strtolower( trim( $row[$c] ) );
3865
+									} else if ( $column == 'cat_id_original' ) {
3866
+										$cat_id_original = (int)$row[$c];
3867
+									}
3868
+								}
3869
+								// WPML
3870
+								$c++;
3871
+							}
3872 3872
                             
3873
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3874
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3873
+							if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3874
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3875 3875
                                 
3876
-                                $invalid++;
3877
-                                continue;
3878
-                            }
3876
+								$invalid++;
3877
+								continue;
3878
+							}
3879 3879
                             
3880
-                            // WPML
3881
-                            if ($is_wpml && $cat_language != '') {
3882
-                                $sitepress->switch_lang($cat_language, true);
3883
-                            }
3884
-                            // WPML
3880
+							// WPML
3881
+							if ($is_wpml && $cat_language != '') {
3882
+								$sitepress->switch_lang($cat_language, true);
3883
+							}
3884
+							// WPML
3885 3885
                                                         
3886
-                            $term_data = array();
3887
-                            $term_data['name'] = $cat_name;
3888
-                            $term_data['slug'] = $cat_slug;
3889
-                            $term_data['description'] = $cat_description;
3890
-                            $term_data['cat_schema'] = $cat_schema;
3891
-                            $term_data['top_description'] = $cat_top_description;
3892
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3893
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3886
+							$term_data = array();
3887
+							$term_data['name'] = $cat_name;
3888
+							$term_data['slug'] = $cat_slug;
3889
+							$term_data['description'] = $cat_description;
3890
+							$term_data['cat_schema'] = $cat_schema;
3891
+							$term_data['top_description'] = $cat_top_description;
3892
+							$term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3893
+							$term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3894 3894
                             
3895
-                            //$term_data = array_map( 'utf8_encode', $term_data );
3895
+							//$term_data = array_map( 'utf8_encode', $term_data );
3896 3896
                             
3897
-                            $taxonomy = $cat_posttype . 'category';
3897
+							$taxonomy = $cat_posttype . 'category';
3898 3898
                             
3899
-                            $term_data['taxonomy'] = $taxonomy;
3899
+							$term_data['taxonomy'] = $taxonomy;
3900 3900
 
3901
-                            $term_parent_id = 0;
3902
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3903
-                                $term_parent = '';
3901
+							$term_parent_id = 0;
3902
+							if ($cat_parent != "" || (int)$cat_parent > 0) {
3903
+								$term_parent = '';
3904 3904
                                 
3905
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3906
-                                    //
3907
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3908
-                                    //
3909
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3910
-                                    //
3911
-                                } else {
3912
-                                    $term_parent_data = array();
3913
-                                    $term_parent_data['name'] = $cat_parent;
3914
-                                    //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3915
-                                    $term_parent_data['taxonomy'] = $taxonomy;
3905
+								if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3906
+									//
3907
+								} else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3908
+									//
3909
+								} else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3910
+									//
3911
+								} else {
3912
+									$term_parent_data = array();
3913
+									$term_parent_data['name'] = $cat_parent;
3914
+									//$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3915
+									$term_parent_data['taxonomy'] = $taxonomy;
3916 3916
                                     
3917
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3918
-                                }
3917
+									$term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3918
+								}
3919 3919
                                 
3920
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3921
-                                    $term_parent_id = (int)$term_parent->term_id;
3922
-                                }
3923
-                            }
3924
-                            $term_data['parent'] = (int)$term_parent_id;
3920
+								if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3921
+									$term_parent_id = (int)$term_parent->term_id;
3922
+								}
3923
+							}
3924
+							$term_data['parent'] = (int)$term_parent_id;
3925 3925
 
3926
-                            $term_id = NULL;
3927
-                            if ( $import_choice == 'update' ) {
3928
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3929
-                                    $term_data['term_id'] = $term['term_id'];
3926
+							$term_id = NULL;
3927
+							if ( $import_choice == 'update' ) {
3928
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3929
+									$term_data['term_id'] = $term['term_id'];
3930 3930
                                     
3931
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3932
-                                        $updated++;
3933
-                                    } else {
3934
-                                        $invalid++;
3935
-                                        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' ) );
3936
-                                    }
3937
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3938
-                                    $term_data['term_id'] = $term['term_id'];
3931
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3932
+										$updated++;
3933
+									} else {
3934
+										$invalid++;
3935
+										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' ) );
3936
+									}
3937
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3938
+									$term_data['term_id'] = $term['term_id'];
3939 3939
                                     
3940
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3941
-                                        $updated++;
3942
-                                    } else {
3943
-                                        $invalid++;
3944
-                                        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' ) );
3945
-                                    }
3946
-                                } else {
3947
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3948
-                                        $created++;
3949
-                                    } else {
3950
-                                        $invalid++;
3951
-                                        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' ) );
3952
-                                    }
3953
-                                }
3954
-                            } else if ( $import_choice == 'skip' ) {
3955
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3956
-                                    $skipped++;
3957
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3958
-                                    $skipped++;
3959
-                                } else {
3960
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3961
-                                        $created++;
3962
-                                    } else {
3963
-                                        $invalid++;
3964
-                                        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' ) );
3965
-                                    }
3966
-                                }
3967
-                            } else {
3968
-                                $invalid++;
3969
-                                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' ) );
3970
-                            }
3940
+									if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3941
+										$updated++;
3942
+									} else {
3943
+										$invalid++;
3944
+										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' ) );
3945
+									}
3946
+								} else {
3947
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3948
+										$created++;
3949
+									} else {
3950
+										$invalid++;
3951
+										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' ) );
3952
+									}
3953
+								}
3954
+							} else if ( $import_choice == 'skip' ) {
3955
+								if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3956
+									$skipped++;
3957
+								} else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3958
+									$skipped++;
3959
+								} else {
3960
+									if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3961
+										$created++;
3962
+									} else {
3963
+										$invalid++;
3964
+										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' ) );
3965
+									}
3966
+								}
3967
+							} else {
3968
+								$invalid++;
3969
+								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' ) );
3970
+							}
3971 3971
                             
3972
-                            if ( $term_id ) {
3973
-                                // WPML
3974
-                                if ($is_wpml && geodir_wpml_is_taxonomy_translated($taxonomy) && $cat_id_original > 0 && $cat_language != '') {
3975
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3976
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3977
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3978
-
3979
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3972
+							if ( $term_id ) {
3973
+								// WPML
3974
+								if ($is_wpml && geodir_wpml_is_taxonomy_translated($taxonomy) && $cat_id_original > 0 && $cat_language != '') {
3975
+									$wpml_element_type = 'tax_' . $taxonomy;
3976
+									$source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3977
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3978
+
3979
+									$trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3980 3980
                                     
3981
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3982
-                                }
3983
-                                // WPML
3981
+									$sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3982
+								}
3983
+								// WPML
3984 3984
                                 
3985
-                                if ( isset( $term_data['top_description'] ) ) {
3986
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3987
-                                }
3985
+								if ( isset( $term_data['top_description'] ) ) {
3986
+									geodir_update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3987
+								}
3988 3988
                                 
3989
-                                if ( isset( $term_data['cat_schema'] ) ) {
3990
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3991
-                                }
3989
+								if ( isset( $term_data['cat_schema'] ) ) {
3990
+									geodir_update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3991
+								}
3992 3992
             
3993
-                                $attachment = false;
3994
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3995
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3996
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3993
+								$attachment = false;
3994
+								if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3995
+									$cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3996
+									$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3997 3997
                                     
3998
-                                    if ( basename($cat_image) != $term_data['image'] ) {
3999
-                                        $attachment = true;
4000
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4001
-                                    }
4002
-                                }
3998
+									if ( basename($cat_image) != $term_data['image'] ) {
3999
+										$attachment = true;
4000
+										geodir_update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4001
+									}
4002
+								}
4003 4003
                                 
4004
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4005
-                                    $cat_icon = geodir_get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4006
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4007
-
4008
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
4009
-                                        $attachment = true;
4010
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4011
-                                    }
4012
-                                }
4004
+								if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4005
+									$cat_icon = geodir_get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4006
+									$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4007
+
4008
+									if ( basename($cat_icon) != $term_data['icon'] ) {
4009
+										$attachment = true;
4010
+										geodir_update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4011
+									}
4012
+								}
4013 4013
                                 
4014
-                                if ( $attachment ) {
4015
-                                    $images++;
4016
-                                }
4017
-                            }
4014
+								if ( $attachment ) {
4015
+									$images++;
4016
+								}
4017
+							}
4018 4018
                             
4019
-                            // WPML
4020
-                            if ($is_wpml && $cat_language != '') {
4021
-                                $sitepress->switch_lang($active_lang, true);
4022
-                            }
4023
-                            // WPML
4024
-                        }
4025
-                    }
4026
-                }
4019
+							// WPML
4020
+							if ($is_wpml && $cat_language != '') {
4021
+								$sitepress->switch_lang($active_lang, true);
4022
+							}
4023
+							// WPML
4024
+						}
4025
+					}
4026
+				}
4027 4027
                 
4028
-                $json = array();
4029
-                $json['processed'] = $limit;
4030
-                $json['created'] = $created;
4031
-                $json['updated'] = $updated;
4032
-                $json['skipped'] = $skipped;
4033
-                $json['invalid'] = $invalid;
4034
-                $json['images'] = $images;
4028
+				$json = array();
4029
+				$json['processed'] = $limit;
4030
+				$json['created'] = $created;
4031
+				$json['updated'] = $updated;
4032
+				$json['skipped'] = $skipped;
4033
+				$json['invalid'] = $invalid;
4034
+				$json['images'] = $images;
4035 4035
                 
4036
-                wp_send_json( $json );
4037
-                exit;
4038
-            } else if ( $task == 'import_post' ) {
4039
-                $xtimings['###1'] = microtime(true)-$xstart;
4040
-                //run some stuff to make the import quicker
4041
-                wp_defer_term_counting( true );
4042
-                wp_defer_comment_counting( true );
4043
-                $wpdb->query( 'SET autocommit = 0;' );
4036
+				wp_send_json( $json );
4037
+				exit;
4038
+			} else if ( $task == 'import_post' ) {
4039
+				$xtimings['###1'] = microtime(true)-$xstart;
4040
+				//run some stuff to make the import quicker
4041
+				wp_defer_term_counting( true );
4042
+				wp_defer_comment_counting( true );
4043
+				$wpdb->query( 'SET autocommit = 0;' );
4044 4044
 //
4045 4045
 //                remove_all_actions('publish_post');
4046 4046
 //                remove_all_actions('transition_post_status');
4047 4047
 //                remove_all_actions('publish_future_post');
4048 4048
 
4049
-                if (!empty($file)) {
4050
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4051
-                    $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4052
-                    $default_status = 'publish';
4053
-                    $current_date = date_i18n( 'Y-m-d', time() );
4049
+				if (!empty($file)) {
4050
+					$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4051
+					$wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4052
+					$default_status = 'publish';
4053
+					$current_date = date_i18n( 'Y-m-d', time() );
4054 4054
                     
4055
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4055
+					$columns = isset($file[0]) ? $file[0] : NULL;
4056 4056
                     
4057
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4058
-                        $json['error'] = CSV_INVAILD_FILE;
4059
-                        wp_send_json( $json );
4060
-                        exit;
4061
-                    }
4062
-                    $xtimings['###2'] = microtime(true)-$xstart;
4063
-                    $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4064
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4065
-                    $processed_actual = 0;
4066
-                    for ($i = 1; $i <= $limit; $i++) {
4067
-                        $index = $processed + $i;
4068
-                        $gd_post = array();
4057
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4058
+						$json['error'] = CSV_INVAILD_FILE;
4059
+						wp_send_json( $json );
4060
+						exit;
4061
+					}
4062
+					$xtimings['###2'] = microtime(true)-$xstart;
4063
+					$gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4064
+					$wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4065
+					$processed_actual = 0;
4066
+					for ($i = 1; $i <= $limit; $i++) {
4067
+						$index = $processed + $i;
4068
+						$gd_post = array();
4069 4069
                         
4070
-                        if (isset($file[$index])) {
4071
-                            $processed_actual++;
4072
-                            $row = $file[$index];
4073
-                            $row = array_map( 'trim', $row );
4074
-                            //$row = array_map( 'utf8_encode', $row );
4075
-                            $row = array_map( 'addslashes_gpc', $row );
4070
+						if (isset($file[$index])) {
4071
+							$processed_actual++;
4072
+							$row = $file[$index];
4073
+							$row = array_map( 'trim', $row );
4074
+							//$row = array_map( 'utf8_encode', $row );
4075
+							$row = array_map( 'addslashes_gpc', $row );
4076 4076
                             
4077
-                            $post_id = '';
4078
-                            $post_title = '';
4079
-                            $post_date = '';
4080
-                            $post_author = '';
4081
-                            $post_content = '';
4082
-                            $post_category_arr = array();
4083
-                            $default_category = '';
4084
-                            $post_tags = array();
4085
-                            $post_type = '';
4086
-                            $post_status = '';
4087
-                            $is_featured = 0;
4088
-                            $geodir_video = '';
4089
-                            $post_address = '';
4090
-                            $post_city = '';
4091
-                            $post_region = '';
4092
-                            $post_country = '';
4093
-                            $post_zip = '';
4094
-                            $post_latitude = '';
4095
-                            $post_longitude = '';
4096
-                            $post_neighbourhood = '';
4097
-                            $neighbourhood_latitude = '';
4098
-                            $neighbourhood_longitude = '';
4099
-                            $geodir_timing = '';
4100
-                            $geodir_contact = '';
4101
-                            $geodir_email = '';
4102
-                            $geodir_website = '';
4103
-                            $geodir_twitter = '';
4104
-                            $geodir_facebook = '';
4105
-                            $geodir_twitter = '';
4106
-                            $geodir_link_business = null;
4107
-                            $post_images = array();
4077
+							$post_id = '';
4078
+							$post_title = '';
4079
+							$post_date = '';
4080
+							$post_author = '';
4081
+							$post_content = '';
4082
+							$post_category_arr = array();
4083
+							$default_category = '';
4084
+							$post_tags = array();
4085
+							$post_type = '';
4086
+							$post_status = '';
4087
+							$is_featured = 0;
4088
+							$geodir_video = '';
4089
+							$post_address = '';
4090
+							$post_city = '';
4091
+							$post_region = '';
4092
+							$post_country = '';
4093
+							$post_zip = '';
4094
+							$post_latitude = '';
4095
+							$post_longitude = '';
4096
+							$post_neighbourhood = '';
4097
+							$neighbourhood_latitude = '';
4098
+							$neighbourhood_longitude = '';
4099
+							$geodir_timing = '';
4100
+							$geodir_contact = '';
4101
+							$geodir_email = '';
4102
+							$geodir_website = '';
4103
+							$geodir_twitter = '';
4104
+							$geodir_facebook = '';
4105
+							$geodir_twitter = '';
4106
+							$geodir_link_business = null;
4107
+							$post_images = array();
4108 4108
                             
4109
-                            $expire_date = 'Never';
4109
+							$expire_date = 'Never';
4110 4110
                             
4111
-                            $language = '';
4112
-                            $original_post_id = '';
4111
+							$language = '';
4112
+							$original_post_id = '';
4113 4113
                             
4114
-                            $c = 0;
4115
-                            foreach ($columns as $column ) {
4116
-                                $gd_post[$column] = $row[$c];
4114
+							$c = 0;
4115
+							foreach ($columns as $column ) {
4116
+								$gd_post[$column] = $row[$c];
4117 4117
                                 
4118
-                                if ( $column == 'post_id' ) {
4119
-                                    $post_id = $row[$c];
4120
-                                } else if ( $column == 'post_title' ) {
4121
-                                    $post_title = sanitize_text_field($row[$c]);
4122
-                                } else if ( $column == 'post_author' ) {
4123
-                                    $post_author = $row[$c];
4124
-                                } else if ( $column == 'post_date' ) {
4125
-                                    $post_date = $row[$c];
4126
-                                } else if ( $column == 'post_content' ) {
4127
-                                    $post_content = $row[$c];
4128
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4129
-                                    $post_category_arr = explode( ',', $row[$c] );
4130
-                                } else if ( $column == 'default_category' ) {
4131
-                                    $default_category = wp_kses_normalize_entities($row[$c]);
4132
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4133
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4134
-                                } else if ( $column == 'post_type' ) {
4135
-                                    $post_type = $row[$c];
4136
-                                } else if ( $column == 'post_status' ) {
4137
-                                    $post_status = sanitize_key( $row[$c] );
4138
-                                } else if ( $column == 'is_featured' ) {
4139
-                                    $is_featured = (int)$row[$c];
4140
-                                } else if ( $column == 'geodir_video' ) {
4141
-                                    $geodir_video = $row[$c];
4142
-                                } else if ( $column == 'post_address' ) {
4143
-                                    $post_address = sanitize_text_field($row[$c]);
4144
-                                } else if ( $column == 'post_city' ) {
4145
-                                    $post_city = sanitize_text_field($row[$c]);
4146
-                                } else if ( $column == 'post_region' ) {
4147
-                                    $post_region = sanitize_text_field($row[$c]);
4148
-                                } else if ( $column == 'post_country' ) {
4149
-                                    $post_country = sanitize_text_field($row[$c]);
4150
-                                } else if ( $column == 'post_zip' ) {
4151
-                                    $post_zip = sanitize_text_field($row[$c]);
4152
-                                } else if ( $column == 'post_latitude' ) {
4153
-                                    $post_latitude = sanitize_text_field($row[$c]);
4154
-                                } else if ( $column == 'post_longitude' ) {
4155
-                                    $post_longitude = sanitize_text_field($row[$c]);
4156
-                                } else if ( $column == 'post_neighbourhood' ) {
4157
-                                    $post_neighbourhood = sanitize_text_field($row[$c]);
4158
-                                    unset($gd_post[$column]);
4159
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4160
-                                    $neighbourhood_latitude = sanitize_text_field($row[$c]);
4161
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4162
-                                    $neighbourhood_longitude = sanitize_text_field($row[$c]);
4163
-                                } else if ( $column == 'geodir_timing' ) {
4164
-                                    $geodir_timing = sanitize_text_field($row[$c]);
4165
-                                } else if ( $column == 'geodir_contact' ) {
4166
-                                    $geodir_contact = sanitize_text_field($row[$c]);
4167
-                                } else if ( $column == 'geodir_email' ) {
4168
-                                    $geodir_email = sanitize_email($row[$c]);
4169
-                                } else if ( $column == 'geodir_website' ) {
4170
-                                    $geodir_website = sanitize_text_field($row[$c]);
4171
-                                } else if ( $column == 'geodir_twitter' ) {
4172
-                                    $geodir_twitter = sanitize_text_field($row[$c]);
4173
-                                } else if ( $column == 'geodir_facebook' ) {
4174
-                                    $geodir_facebook = sanitize_text_field($row[$c]);
4175
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4176
-                                    $post_images[] = $row[$c];
4177
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4178
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4179
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4180
-                                    $row[$c] = str_replace('/', '-', $row[$c]);
4181
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4182
-                                } else if ( strpos( $column, 'linked_' ) === 0 ) {
4183
-                                    $geodir_link_business = (int)$row[$c];
4184
-                                }
4185
-                                // WPML
4186
-                                if ($is_wpml) {
4187
-                                    if ($column == 'language') {
4188
-                                        $language = geodir_strtolower(trim($row[$c]));
4189
-                                    } else if ($column == 'original_post_id') {
4190
-                                        $original_post_id = (int)$row[$c];
4191
-                                    }
4192
-                                }
4193
-                                // WPML
4194
-                                $c++;
4195
-                            }
4196
-                            // listing claimed or not
4197
-                            if ($is_claim_active && isset($gd_post['claimed'])) {
4198
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4199
-                            }
4118
+								if ( $column == 'post_id' ) {
4119
+									$post_id = $row[$c];
4120
+								} else if ( $column == 'post_title' ) {
4121
+									$post_title = sanitize_text_field($row[$c]);
4122
+								} else if ( $column == 'post_author' ) {
4123
+									$post_author = $row[$c];
4124
+								} else if ( $column == 'post_date' ) {
4125
+									$post_date = $row[$c];
4126
+								} else if ( $column == 'post_content' ) {
4127
+									$post_content = $row[$c];
4128
+								} else if ( $column == 'post_category' && $row[$c] != '' ) {
4129
+									$post_category_arr = explode( ',', $row[$c] );
4130
+								} else if ( $column == 'default_category' ) {
4131
+									$default_category = wp_kses_normalize_entities($row[$c]);
4132
+								} else if ( $column == 'post_tags' && $row[$c] != '' ) {
4133
+									$post_tags = explode( ',', sanitize_text_field($row[$c]) );
4134
+								} else if ( $column == 'post_type' ) {
4135
+									$post_type = $row[$c];
4136
+								} else if ( $column == 'post_status' ) {
4137
+									$post_status = sanitize_key( $row[$c] );
4138
+								} else if ( $column == 'is_featured' ) {
4139
+									$is_featured = (int)$row[$c];
4140
+								} else if ( $column == 'geodir_video' ) {
4141
+									$geodir_video = $row[$c];
4142
+								} else if ( $column == 'post_address' ) {
4143
+									$post_address = sanitize_text_field($row[$c]);
4144
+								} else if ( $column == 'post_city' ) {
4145
+									$post_city = sanitize_text_field($row[$c]);
4146
+								} else if ( $column == 'post_region' ) {
4147
+									$post_region = sanitize_text_field($row[$c]);
4148
+								} else if ( $column == 'post_country' ) {
4149
+									$post_country = sanitize_text_field($row[$c]);
4150
+								} else if ( $column == 'post_zip' ) {
4151
+									$post_zip = sanitize_text_field($row[$c]);
4152
+								} else if ( $column == 'post_latitude' ) {
4153
+									$post_latitude = sanitize_text_field($row[$c]);
4154
+								} else if ( $column == 'post_longitude' ) {
4155
+									$post_longitude = sanitize_text_field($row[$c]);
4156
+								} else if ( $column == 'post_neighbourhood' ) {
4157
+									$post_neighbourhood = sanitize_text_field($row[$c]);
4158
+									unset($gd_post[$column]);
4159
+								} else if ( $column == 'neighbourhood_latitude' ) {
4160
+									$neighbourhood_latitude = sanitize_text_field($row[$c]);
4161
+								} else if ( $column == 'neighbourhood_longitude' ) {
4162
+									$neighbourhood_longitude = sanitize_text_field($row[$c]);
4163
+								} else if ( $column == 'geodir_timing' ) {
4164
+									$geodir_timing = sanitize_text_field($row[$c]);
4165
+								} else if ( $column == 'geodir_contact' ) {
4166
+									$geodir_contact = sanitize_text_field($row[$c]);
4167
+								} else if ( $column == 'geodir_email' ) {
4168
+									$geodir_email = sanitize_email($row[$c]);
4169
+								} else if ( $column == 'geodir_website' ) {
4170
+									$geodir_website = sanitize_text_field($row[$c]);
4171
+								} else if ( $column == 'geodir_twitter' ) {
4172
+									$geodir_twitter = sanitize_text_field($row[$c]);
4173
+								} else if ( $column == 'geodir_facebook' ) {
4174
+									$geodir_facebook = sanitize_text_field($row[$c]);
4175
+								} else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4176
+									$post_images[] = $row[$c];
4177
+								} else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4178
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4179
+								} else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4180
+									$row[$c] = str_replace('/', '-', $row[$c]);
4181
+									$expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4182
+								} else if ( strpos( $column, 'linked_' ) === 0 ) {
4183
+									$geodir_link_business = (int)$row[$c];
4184
+								}
4185
+								// WPML
4186
+								if ($is_wpml) {
4187
+									if ($column == 'language') {
4188
+										$language = geodir_strtolower(trim($row[$c]));
4189
+									} else if ($column == 'original_post_id') {
4190
+										$original_post_id = (int)$row[$c];
4191
+									}
4192
+								}
4193
+								// WPML
4194
+								$c++;
4195
+							}
4196
+							// listing claimed or not
4197
+							if ($is_claim_active && isset($gd_post['claimed'])) {
4198
+								$gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4199
+							}
4200 4200
                             
4201
-                            // WPML
4202
-                            if ($is_wpml && $language != '') {
4203
-                                $sitepress->switch_lang($language, true);
4204
-                            }
4205
-                            // WPML
4201
+							// WPML
4202
+							if ($is_wpml && $language != '') {
4203
+								$sitepress->switch_lang($language, true);
4204
+							}
4205
+							// WPML
4206 4206
 
4207
-                            $gd_post['IMAGE'] = $post_images;
4207
+							$gd_post['IMAGE'] = $post_images;
4208 4208
                             
4209
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4210
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4209
+							$post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4210
+							$post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4211 4211
                                                                                                                 
4212
-                            $valid = true;
4212
+							$valid = true;
4213 4213
                             
4214
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4215
-                                $invalid++;
4216
-                                $valid = false;
4217
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4218
-                            }
4219
-                            $xtimings['###3'] = microtime(true)-$xstart;
4220
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4221
-                            if ( $location_allowed ) {
4222
-                                $location_result = geodir_get_default_location();
4223
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4224
-                                    $invalid_addr++;
4225
-                                    $valid = false;
4226
-                                    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' ) );
4227
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4228
-                                    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 ) ) ) {
4229
-                                        $invalid_addr++;
4230
-                                        $valid = false;
4231
-                                        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' ) );
4232
-                                    } else {
4233
-                                        if (!$location_manager) {
4234
-                                            $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.
4235
-                                        }
4236
-                                    }
4237
-                                }
4238
-                            }
4239
-                            $xtimings['###4']   = microtime(true)-$xstart;
4240
-                            if ( !$valid ) {
4241
-                                continue;
4242
-                            }
4214
+							if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4215
+								$invalid++;
4216
+								$valid = false;
4217
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4218
+							}
4219
+							$xtimings['###3'] = microtime(true)-$xstart;
4220
+							$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4221
+							if ( $location_allowed ) {
4222
+								$location_result = geodir_get_default_location();
4223
+								if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4224
+									$invalid_addr++;
4225
+									$valid = false;
4226
+									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' ) );
4227
+								} else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4228
+									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 ) ) ) {
4229
+										$invalid_addr++;
4230
+										$valid = false;
4231
+										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' ) );
4232
+									} else {
4233
+										if (!$location_manager) {
4234
+											$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.
4235
+										}
4236
+									}
4237
+								}
4238
+							}
4239
+							$xtimings['###4']   = microtime(true)-$xstart;
4240
+							if ( !$valid ) {
4241
+								continue;
4242
+							}
4243 4243
 
4244
-                            $cat_taxonomy = $post_type . 'category';
4245
-                            $tags_taxonomy = $post_type . '_tags';
4244
+							$cat_taxonomy = $post_type . 'category';
4245
+							$tags_taxonomy = $post_type . '_tags';
4246 4246
                             
4247
-                            if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4248
-                                $post_category_arr = array_merge(array($default_category), $post_category_arr);
4249
-                            }
4247
+							if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4248
+								$post_category_arr = array_merge(array($default_category), $post_category_arr);
4249
+							}
4250 4250
 
4251
-                            $post_category = array();
4252
-                            $default_category_id = NULL;
4253
-                            if ( !empty( $post_category_arr ) ) {
4254
-                                foreach ( $post_category_arr as $value ) {
4255
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4251
+							$post_category = array();
4252
+							$default_category_id = NULL;
4253
+							if ( !empty( $post_category_arr ) ) {
4254
+								foreach ( $post_category_arr as $value ) {
4255
+									$category_name = wp_kses_normalize_entities( trim( $value ) );
4256 4256
                                     
4257
-                                    if ( $category_name != '' ) {
4258
-                                        $term_category = array();
4257
+									if ( $category_name != '' ) {
4258
+										$term_category = array();
4259 4259
                                         
4260
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4261
-                                            $term_category = $term;
4262
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4263
-                                            $term_category = $term;
4264
-                                        } else {
4265
-                                            $term_data = array();
4266
-                                            $term_data['name'] = $category_name;
4267
-                                            $term_data['taxonomy'] = $cat_taxonomy;
4260
+										if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4261
+											$term_category = $term;
4262
+										} else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4263
+											$term_category = $term;
4264
+										} else {
4265
+											$term_data = array();
4266
+											$term_data['name'] = $category_name;
4267
+											$term_data['taxonomy'] = $cat_taxonomy;
4268 4268
                                             
4269
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4270
-                                            if ( $term_id ) {
4271
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4272
-                                            }
4273
-                                        }
4269
+											$term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4270
+											if ( $term_id ) {
4271
+												$term_category = get_term( $term_id, $cat_taxonomy );
4272
+											}
4273
+										}
4274 4274
                                         
4275
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4276
-                                            $post_category[] = intval($term_category->term_id);
4275
+										if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4276
+											$post_category[] = intval($term_category->term_id);
4277 4277
                                             
4278
-                                            if ($category_name == $default_category) {
4279
-                                                $default_category_id = intval($term_category->term_id);
4280
-                                            }
4281
-                                        }
4282
-                                    }
4283
-                                }
4284
-                            }
4285
-                            $xtimings['###5'] = microtime(true)-$xstart;
4286
-                            $save_post = array();
4287
-                            $save_post['post_title'] = $post_title;
4288
-                            if (!empty($post_date)) {
4289
-                                $post_date = geodir_date( $post_date, 'Y-m-d H:i:s' ); // convert to mysql date format.
4278
+											if ($category_name == $default_category) {
4279
+												$default_category_id = intval($term_category->term_id);
4280
+											}
4281
+										}
4282
+									}
4283
+								}
4284
+							}
4285
+							$xtimings['###5'] = microtime(true)-$xstart;
4286
+							$save_post = array();
4287
+							$save_post['post_title'] = $post_title;
4288
+							if (!empty($post_date)) {
4289
+								$post_date = geodir_date( $post_date, 'Y-m-d H:i:s' ); // convert to mysql date format.
4290 4290
                                 
4291
-                                $save_post['post_date'] = $post_date;
4292
-                                $save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4293
-                            }
4294
-                            $save_post['post_content'] = $post_content;
4295
-                            $save_post['post_type'] = $post_type;
4296
-                            $save_post['post_author'] = $post_author;
4297
-                            $save_post['post_status'] = $post_status;
4298
-                            $save_post['post_category'] = $post_category;
4299
-                            $save_post['post_tags'] = $post_tags;
4300
-
4301
-                            $saved_post_id = NULL;
4302
-                            if ( $import_choice == 'update' ) {
4303
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4291
+								$save_post['post_date'] = $post_date;
4292
+								$save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4293
+							}
4294
+							$save_post['post_content'] = $post_content;
4295
+							$save_post['post_type'] = $post_type;
4296
+							$save_post['post_author'] = $post_author;
4297
+							$save_post['post_status'] = $post_status;
4298
+							$save_post['post_category'] = $post_category;
4299
+							$save_post['post_tags'] = $post_tags;
4300
+
4301
+							$saved_post_id = NULL;
4302
+							if ( $import_choice == 'update' ) {
4303
+								$gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4304 4304
                                 
4305
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4306
-                                    $save_post['ID'] = $post_id;
4305
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4306
+									$save_post['ID'] = $post_id;
4307 4307
                                     
4308
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4309
-                                        if ( is_wp_error( $saved_post_id ) ) {
4310
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4311
-                                            $saved_post_id = 0;
4312
-                                        } else {
4313
-                                            $saved_post_id = $post_id;
4314
-                                            $updated++;
4315
-                                        }
4316
-                                    }
4317
-                                } else {
4318
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4319
-                                        if ( is_wp_error( $saved_post_id ) ) {
4320
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4321
-                                            $saved_post_id = 0;
4322
-                                        } else {
4323
-                                            $created++;
4324
-                                        }
4325
-                                    }
4326
-                                }
4308
+									if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4309
+										if ( is_wp_error( $saved_post_id ) ) {
4310
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4311
+											$saved_post_id = 0;
4312
+										} else {
4313
+											$saved_post_id = $post_id;
4314
+											$updated++;
4315
+										}
4316
+									}
4317
+								} else {
4318
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4319
+										if ( is_wp_error( $saved_post_id ) ) {
4320
+											$gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4321
+											$saved_post_id = 0;
4322
+										} else {
4323
+											$created++;
4324
+										}
4325
+									}
4326
+								}
4327 4327
                                 
4328
-                                if ( !$saved_post_id > 0 ) {
4329
-                                    $invalid++;
4330
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4331
-                                }
4332
-                            } else if ( $import_choice == 'skip' ) {
4333
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4334
-                                    $skipped++;	
4335
-                                } else {
4336
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4337
-                                        if ( is_wp_error( $saved_post_id ) ) {
4338
-                                            $invalid++;
4328
+								if ( !$saved_post_id > 0 ) {
4329
+									$invalid++;
4330
+									geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4331
+								}
4332
+							} else if ( $import_choice == 'skip' ) {
4333
+								if ( $post_id > 0 && get_post( $post_id ) ) {
4334
+									$skipped++;	
4335
+								} else {
4336
+									if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4337
+										if ( is_wp_error( $saved_post_id ) ) {
4338
+											$invalid++;
4339 4339
                                             
4340
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4341
-                                            $saved_post_id = 0;
4342
-                                        } else {
4343
-                                            $created++;
4344
-                                        }
4345
-                                    } else {
4346
-                                        $invalid++;
4340
+											geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4341
+											$saved_post_id = 0;
4342
+										} else {
4343
+											$created++;
4344
+										}
4345
+									} else {
4346
+										$invalid++;
4347 4347
                                         
4348
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4349
-                                    }
4350
-                                }
4351
-                            } else {
4352
-                                $invalid++;
4348
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4349
+									}
4350
+								}
4351
+							} else {
4352
+								$invalid++;
4353 4353
                                 
4354
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4355
-                            }
4356
-                            $xtimings['###6'] = microtime(true)-$xstart;
4357
-                            if ( (int)$saved_post_id > 0 ) {
4358
-                                // WPML
4359
-                                if ($is_wpml && geodir_wpml_is_post_type_translated($post_type) && $original_post_id > 0 && $language != '') {
4360
-                                    $wpml_post_type = 'post_' . $post_type;
4361
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4362
-                                    $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4363
-
4364
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4354
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4355
+							}
4356
+							$xtimings['###6'] = microtime(true)-$xstart;
4357
+							if ( (int)$saved_post_id > 0 ) {
4358
+								// WPML
4359
+								if ($is_wpml && geodir_wpml_is_post_type_translated($post_type) && $original_post_id > 0 && $language != '') {
4360
+									$wpml_post_type = 'post_' . $post_type;
4361
+									$source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4362
+									$source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4363
+
4364
+									$trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4365 4365
                                     
4366
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4367
-                                }
4368
-                                // WPML
4369
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4366
+									$sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4367
+								}
4368
+								// WPML
4369
+								$gd_post_info = geodir_get_post_info( $saved_post_id );
4370 4370
                                 
4371
-                                $gd_post['post_id'] = $saved_post_id;
4372
-                                $gd_post['ID'] = $saved_post_id;
4373
-                                $gd_post['post_tags'] = $post_tags;
4374
-                                $gd_post['post_title'] = $post_title;
4375
-                                $gd_post['post_status'] = $post_status;
4376
-                                $gd_post['submit_time'] = time();
4377
-                                $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4371
+								$gd_post['post_id'] = $saved_post_id;
4372
+								$gd_post['ID'] = $saved_post_id;
4373
+								$gd_post['post_tags'] = $post_tags;
4374
+								$gd_post['post_title'] = $post_title;
4375
+								$gd_post['post_status'] = $post_status;
4376
+								$gd_post['submit_time'] = time();
4377
+								$gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR'];
4378 4378
                                                     
4379
-                                // post location
4380
-                                $post_location_id = 0;
4381
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4382
-                                    $gd_post['post_neighbourhood'] = '';
4379
+								// post location
4380
+								$post_location_id = 0;
4381
+								if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4382
+									$gd_post['post_neighbourhood'] = '';
4383 4383
                                     
4384
-                                    $post_location_info = array(
4385
-                                                                'city' => $post_city,
4386
-                                                                'region' => $post_region,
4387
-                                                                'country' => $post_country,
4388
-                                                                'geo_lat' => $post_latitude,
4389
-                                                                'geo_lng' => $post_longitude
4390
-                                                            );
4391
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4392
-                                        $post_location_id = $location_id;
4393
-                                    }
4384
+									$post_location_info = array(
4385
+																'city' => $post_city,
4386
+																'region' => $post_region,
4387
+																'country' => $post_country,
4388
+																'geo_lat' => $post_latitude,
4389
+																'geo_lng' => $post_longitude
4390
+															);
4391
+									if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4392
+										$post_location_id = $location_id;
4393
+									}
4394 4394
                                     
4395
-                                    if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4396
-                                        $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4395
+									if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
4396
+										$neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id);
4397 4397
 
4398
-                                        $hood_data = array();
4399
-                                        $hood_data['hood_location_id'] = $post_location_id;
4400
-                                        $hood_data['hood_name'] = $post_neighbourhood;
4398
+										$hood_data = array();
4399
+										$hood_data['hood_location_id'] = $post_location_id;
4400
+										$hood_data['hood_name'] = $post_neighbourhood;
4401 4401
                                         
4402
-                                        if (!empty($neighbourhood_info)) {
4403
-                                            $hood_data['hood_id'] = $neighbourhood_info->hood_id;
4404
-                                            $hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4402
+										if (!empty($neighbourhood_info)) {
4403
+											$hood_data['hood_id'] = $neighbourhood_info->hood_id;
4404
+											$hood_data['hood_slug'] = $neighbourhood_info->hood_slug;
4405 4405
                                             
4406
-                                            if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4407
-                                                $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4408
-                                                $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4409
-                                            }
4410
-                                        }
4406
+											if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4407
+												$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4408
+												$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4409
+											}
4410
+										}
4411 4411
                                         
4412
-                                        if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4413
-                                            $neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4414
-                                            $neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4415
-                                        }
4412
+										if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
4413
+											$neighbourhood_latitude = $neighbourhood_info->hood_latitude;
4414
+											$neighbourhood_longitude = $neighbourhood_info->hood_longitude;
4415
+										}
4416 4416
                                         
4417
-                                        $hood_data['hood_latitude'] = $post_latitude;
4418
-                                        $hood_data['hood_longitude'] = $post_longitude;
4419
-
4420
-                                        $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4421
-                                        if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4422
-                                            $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4423
-                                        }
4424
-                                    }
4425
-                                }
4426
-                                $gd_post['post_location_id'] = $post_location_id;
4417
+										$hood_data['hood_latitude'] = $post_latitude;
4418
+										$hood_data['hood_longitude'] = $post_longitude;
4419
+
4420
+										$neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data);
4421
+										if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
4422
+											$gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug;
4423
+										}
4424
+									}
4425
+								}
4426
+								$gd_post['post_location_id'] = $post_location_id;
4427 4427
                                 
4428
-                                if ($geodir_link_business !== null) {
4429
-                                    $gd_post['geodir_link_business'] = $geodir_link_business > 0 ? $geodir_link_business : '';
4430
-                                }
4428
+								if ($geodir_link_business !== null) {
4429
+									$gd_post['geodir_link_business'] = $geodir_link_business > 0 ? $geodir_link_business : '';
4430
+								}
4431 4431
                                 
4432
-                                // post package info
4433
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4434
-                                if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4435
-                                    $package_id = $gd_post_info->package_id;
4436
-                                }
4432
+								// post package info
4433
+								$package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4434
+								if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4435
+									$package_id = $gd_post_info->package_id;
4436
+								}
4437 4437
                                 
4438
-                                $package_info = array();
4439
-                                if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4440
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4438
+								$package_info = array();
4439
+								if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4440
+									$package_info = (array)geodir_get_package_info_by_id($package_id);
4441 4441
                                     
4442
-                                    if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4443
-                                        $package_info = array();
4444
-                                    }
4445
-                                }
4442
+									if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4443
+										$package_info = array();
4444
+									}
4445
+								}
4446 4446
                                 
4447
-                                if (empty($package_info)) {
4448
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4449
-                                }
4447
+								if (empty($package_info)) {
4448
+									$package_info = (array)geodir_post_package_info( array(), '', $post_type );
4449
+								}
4450 4450
                                  
4451
-                                if (!empty($package_info))	 {
4452
-                                    $package_id = $package_info['pid'];
4451
+								if (!empty($package_info))	 {
4452
+									$package_id = $package_info['pid'];
4453 4453
                                     
4454
-                                    if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4455
-                                        $gd_post['expire_date'] = $expire_date;
4456
-                                    } else {
4457
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4458
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4459
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4460
-                                        } else {
4461
-                                            $gd_post['expire_date'] = 'Never';
4462
-                                        }
4463
-                                    }
4454
+									if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4455
+										$gd_post['expire_date'] = $expire_date;
4456
+									} else {
4457
+										if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4458
+											$gd_post['alive_days'] = (int)$package_info['days'];
4459
+											$gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4460
+										} else {
4461
+											$gd_post['expire_date'] = 'Never';
4462
+										}
4463
+									}
4464 4464
                                     
4465
-                                    $gd_post['package_id'] = $package_id;
4466
-                                }
4465
+									$gd_post['package_id'] = $package_id;
4466
+								}
4467 4467
 
4468
-                                $table = $plugin_prefix . $post_type . '_detail';
4468
+								$table = $plugin_prefix . $post_type . '_detail';
4469 4469
                                 
4470
-                                if ($post_type == 'gd_event') {
4471
-                                    $gd_post = geodir_imex_process_event_data($gd_post);
4472
-                                }
4470
+								if ($post_type == 'gd_event') {
4471
+									$gd_post = geodir_imex_process_event_data($gd_post);
4472
+								}
4473 4473
                                 
4474
-                                if (isset($gd_post['post_id'])) {
4475
-                                    unset($gd_post['post_id']);
4476
-                                }
4474
+								if (isset($gd_post['post_id'])) {
4475
+									unset($gd_post['post_id']);
4476
+								}
4477 4477
 
4478
-                                // Export franchise fields
4479
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4480
-                                if ($is_franchise_active) {
4481
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && empty( $gd_post['franchise'] ) ) {
4482
-                                        if ( absint( $gd_post['gd_is_franchise'] ) != 0 ) {
4483
-                                            $gd_franchise_lock = array();
4478
+								// Export franchise fields
4479
+								$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4480
+								if ($is_franchise_active) {
4481
+									if ( isset( $gd_post['gd_is_franchise'] ) && empty( $gd_post['franchise'] ) ) {
4482
+										if ( absint( $gd_post['gd_is_franchise'] ) != 0 ) {
4483
+											$gd_franchise_lock = array();
4484 4484
                                             
4485
-                                            if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4486
-                                                $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4487
-                                                $gd_franchise_lock = trim( $gd_franchise_lock );
4488
-                                                $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4489
-                                            }
4485
+											if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4486
+												$gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4487
+												$gd_franchise_lock = trim( $gd_franchise_lock );
4488
+												$gd_franchise_lock = explode( ",", $gd_franchise_lock );
4489
+											}
4490 4490
                                             
4491
-                                            update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4492
-                                            update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4493
-                                        } else {
4494
-                                            if ( function_exists( 'geodir_franchise_remove_franchise' ) ) {
4495
-                                                geodir_franchise_remove_franchise( $saved_post_id );
4496
-                                            }
4497
-                                        }
4498
-                                    } else {
4499
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4500
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4501
-                                        }
4502
-                                    }
4503
-                                }
4491
+											update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4492
+											update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4493
+										} else {
4494
+											if ( function_exists( 'geodir_franchise_remove_franchise' ) ) {
4495
+												geodir_franchise_remove_franchise( $saved_post_id );
4496
+											}
4497
+										}
4498
+									} else {
4499
+										if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4500
+											geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4501
+										}
4502
+									}
4503
+								}
4504 4504
                                 
4505
-                                if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4506
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4507
-                                    if ($default_category_id) {
4508
-                                        $save_post['post_default_category'] = $default_category_id;
4509
-                                        $gd_post['default_category'] = $default_category_id;
4510
-                                    }
4511
-                                    $gd_post[$cat_taxonomy] = $save_post['post_category'];
4512
-                                }
4513
-                                $xtimings['###7'] = microtime(true)-$xstart;
4514
-                                // Save post info
4515
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4516
-                                $xtimings['###8'] = microtime(true)-$xstart;
4517
-                                // post taxonomies
4518
-                                if ( !empty( $save_post['post_category'] ) ) {
4519
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4505
+								if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4506
+									$save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4507
+									if ($default_category_id) {
4508
+										$save_post['post_default_category'] = $default_category_id;
4509
+										$gd_post['default_category'] = $default_category_id;
4510
+									}
4511
+									$gd_post[$cat_taxonomy] = $save_post['post_category'];
4512
+								}
4513
+								$xtimings['###7'] = microtime(true)-$xstart;
4514
+								// Save post info
4515
+								geodir_save_post_info( $saved_post_id, $gd_post );
4516
+								$xtimings['###8'] = microtime(true)-$xstart;
4517
+								// post taxonomies
4518
+								if ( !empty( $save_post['post_category'] ) ) {
4519
+									wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4520 4520
                                     
4521
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4522
-                                    if ($default_category_id) {
4523
-                                        $post_default_category = $default_category_id;
4524
-                                    }
4525
-                                    $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4526
-                                    $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4527
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4521
+									$post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4522
+									if ($default_category_id) {
4523
+										$post_default_category = $default_category_id;
4524
+									}
4525
+									$post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4526
+									$save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4527
+									$post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4528 4528
                                     
4529
-                                    if ($post_category_str != '' && $post_default_category) {
4530
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4531
-                                    }
4529
+									if ($post_category_str != '' && $post_default_category) {
4530
+										$post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4531
+									}
4532 4532
                                     
4533
-                                    $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4533
+									$post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4534 4534
                                     
4535
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4536
-                                }
4537
-                                $xtimings['###8.1'] = microtime(true)-$xstart;
4538
-                                if ( !empty( $save_post['post_tags'] ) ) {
4539
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4540
-                                }
4541
-                                $xtimings['###9'] = microtime(true)-$xstart;
4542
-                                // Post images
4543
-                                if ( !empty( $post_images ) ) {
4544
-                                    $post_images = array_unique($post_images);
4535
+									geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4536
+								}
4537
+								$xtimings['###8.1'] = microtime(true)-$xstart;
4538
+								if ( !empty( $save_post['post_tags'] ) ) {
4539
+									wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4540
+								}
4541
+								$xtimings['###9'] = microtime(true)-$xstart;
4542
+								// Post images
4543
+								if ( !empty( $post_images ) ) {
4544
+									$post_images = array_unique($post_images);
4545 4545
                                     
4546
-                                    $old_post_images_arr = array();
4547
-                                    $saved_post_images_arr = array();
4546
+									$old_post_images_arr = array();
4547
+									$saved_post_images_arr = array();
4548 4548
                                     
4549
-                                    $order = 1;
4549
+									$order = 1;
4550 4550
                                     
4551
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4552
-                                    $xtimings['###9.1'] = microtime(true)-$xstart;
4553
-                                    if (!empty($old_post_images)) {
4554
-                                        foreach( $old_post_images as $old_post_image ) {
4555
-                                            if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4556
-                                                $old_post_images_arr[] = $old_post_image->file;
4557
-                                            }
4558
-                                        }
4559
-                                    }
4551
+									$old_post_images = geodir_get_images( $saved_post_id );
4552
+									$xtimings['###9.1'] = microtime(true)-$xstart;
4553
+									if (!empty($old_post_images)) {
4554
+										foreach( $old_post_images as $old_post_image ) {
4555
+											if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4556
+												$old_post_images_arr[] = $old_post_image->file;
4557
+											}
4558
+										}
4559
+									}
4560 4560
 
4561
-                                    foreach ( $post_images as $post_image ) {
4562
-                                        $image_name = basename( $post_image );
4563
-                                        $saved_post_images_arr[] = $image_name;
4561
+									foreach ( $post_images as $post_image ) {
4562
+										$image_name = basename( $post_image );
4563
+										$saved_post_images_arr[] = $image_name;
4564 4564
                                         
4565
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4566
-                                            continue; // Skip if image already exists.
4567
-                                        }
4565
+										if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4566
+											continue; // Skip if image already exists.
4567
+										}
4568 4568
                                         
4569
-                                        $image_name_parts = explode( '.', $image_name );
4570
-                                        array_pop( $image_name_parts );
4571
-                                        $proper_image_name = implode( '.', $image_name_parts );
4572
-                                        $xtimings['###9.2'] = microtime(true)-$xstart;
4573
-                                        $arr_file_type = wp_check_filetype( $image_name );
4574
-                                        $xtimings['###9.3'] = microtime(true)-$xstart;
4575
-                                        if ( !empty( $arr_file_type ) ) {
4576
-                                            $uploaded_file_type = $arr_file_type['type'];
4569
+										$image_name_parts = explode( '.', $image_name );
4570
+										array_pop( $image_name_parts );
4571
+										$proper_image_name = implode( '.', $image_name_parts );
4572
+										$xtimings['###9.2'] = microtime(true)-$xstart;
4573
+										$arr_file_type = wp_check_filetype( $image_name );
4574
+										$xtimings['###9.3'] = microtime(true)-$xstart;
4575
+										if ( !empty( $arr_file_type ) ) {
4576
+											$uploaded_file_type = $arr_file_type['type'];
4577 4577
                                             
4578
-                                            $attachment = array();
4579
-                                            $attachment['post_id'] = $saved_post_id;
4580
-                                            $attachment['title'] = $proper_image_name;
4581
-                                            $attachment['content'] = '';
4582
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4583
-                                            $attachment['mime_type'] = $uploaded_file_type;
4584
-                                            $attachment['menu_order'] = $order;
4585
-                                            $attachment['is_featured'] = 0;
4586
-
4587
-                                            $attachment_set = '';
4588
-                                            foreach ( $attachment as $key => $val ) {
4589
-                                                if ( $val != '' ) {
4590
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4591
-                                                }
4592
-                                            }
4593
-                                            $attachment_set = trim( $attachment_set, ", " );
4578
+											$attachment = array();
4579
+											$attachment['post_id'] = $saved_post_id;
4580
+											$attachment['title'] = $proper_image_name;
4581
+											$attachment['content'] = '';
4582
+											$attachment['file'] = $uploads_subdir . '/' . $image_name;
4583
+											$attachment['mime_type'] = $uploaded_file_type;
4584
+											$attachment['menu_order'] = $order;
4585
+											$attachment['is_featured'] = 0;
4586
+
4587
+											$attachment_set = '';
4588
+											foreach ( $attachment as $key => $val ) {
4589
+												if ( $val != '' ) {
4590
+													$attachment_set .= $key . " = '" . $val . "', ";
4591
+												}
4592
+											}
4593
+											$attachment_set = trim( $attachment_set, ", " );
4594 4594
                                                                                         
4595
-                                            // Add new attachment
4596
-                                            $xtimings['###9.4'] = microtime(true)-$xstart;
4597
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4598
-                                            $xtimings['###9.5'] = microtime(true)-$xstart;
4599
-                                            $order++;
4600
-                                        }
4601
-                                    }
4602
-
4603
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4604
-                                    // Remove previous attachment
4605
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4606
-                                    $xtimings['###9.6'] = microtime(true)-$xstart;
4607
-                                    if ( !empty( $saved_post_images_arr ) ) {
4608
-                                        geodir_set_wp_featured_image($saved_post_id);
4609
-                                        $xtimings['###9.7'] = microtime(true)-$xstart;
4610
-                                        /*
4595
+											// Add new attachment
4596
+											$xtimings['###9.4'] = microtime(true)-$xstart;
4597
+											$wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4598
+											$xtimings['###9.5'] = microtime(true)-$xstart;
4599
+											$order++;
4600
+										}
4601
+									}
4602
+
4603
+									$saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4604
+									// Remove previous attachment
4605
+									$wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4606
+									$xtimings['###9.6'] = microtime(true)-$xstart;
4607
+									if ( !empty( $saved_post_images_arr ) ) {
4608
+										geodir_set_wp_featured_image($saved_post_id);
4609
+										$xtimings['###9.7'] = microtime(true)-$xstart;
4610
+										/*
4611 4611
                                         $menu_order = 1;
4612 4612
                                         
4613 4613
                                         foreach ( $saved_post_images_arr as $img_name ) {
@@ -4620,288 +4620,288 @@  discard block
 block discarded – undo
4620 4620
                                             }
4621 4621
                                             $menu_order++;
4622 4622
                                         }*/
4623
-                                    }
4623
+									}
4624 4624
                                     
4625
-                                    if ( $order > 1 ) {
4626
-                                        $images++;
4627
-                                    }
4628
-                                }
4629
-                                $xtimings['###10'] = microtime(true)-$xstart;
4630
-                                /** This action is documented in geodirectory-functions/post-functions.php */
4631
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4632
-                                $xtimings['###11'] = microtime(true)-$xstart;
4633
-                                if (isset($is_featured)) {
4634
-                                    geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4635
-                                }
4636
-                                if (isset($gd_post['alive_days'])) {
4637
-                                    geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']);
4638
-                                }
4639
-                                if (isset($gd_post['expire_date'])) {
4640
-                                    geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4641
-                                }
4642
-                                $xtimings['###12'] = microtime(true)-$xstart;
4643
-                            }
4625
+									if ( $order > 1 ) {
4626
+										$images++;
4627
+									}
4628
+								}
4629
+								$xtimings['###10'] = microtime(true)-$xstart;
4630
+								/** This action is documented in geodirectory-functions/post-functions.php */
4631
+								do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4632
+								$xtimings['###11'] = microtime(true)-$xstart;
4633
+								if (isset($is_featured)) {
4634
+									geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4635
+								}
4636
+								if (isset($gd_post['alive_days'])) {
4637
+									geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']);
4638
+								}
4639
+								if (isset($gd_post['expire_date'])) {
4640
+									geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4641
+								}
4642
+								$xtimings['###12'] = microtime(true)-$xstart;
4643
+							}
4644 4644
                             
4645
-                            // WPML
4646
-                            if ($is_wpml && $language != '') {
4647
-                                $sitepress->switch_lang($active_lang, true);
4648
-                            }
4649
-                            // WPML
4650
-                        }
4651
-                    }
4652
-                }
4645
+							// WPML
4646
+							if ($is_wpml && $language != '') {
4647
+								$sitepress->switch_lang($active_lang, true);
4648
+							}
4649
+							// WPML
4650
+						}
4651
+					}
4652
+				}
4653 4653
 
4654
-                //undo some stuff to make the import quicker
4655
-                wp_defer_term_counting( false );
4656
-                wp_defer_comment_counting( false );
4657
-                $wpdb->query( 'COMMIT;' );
4658
-                $wpdb->query( 'SET autocommit = 1;' );
4659
-                $xtimings['###13'] = microtime(true)-$xstart;
4660
-                $json = array();
4661
-                $json['processed'] = $processed_actual;
4662
-                $json['created'] = $created;
4663
-                $json['updated'] = $updated;
4664
-                $json['skipped'] = $skipped;
4665
-                $json['invalid'] = $invalid;
4666
-                $json['invalid_addr'] = $invalid_addr;
4667
-                $json['images'] = $images;
4668
-                $json['timing'] = microtime(true)-$xstart;
4669
-                $json['timings'] = $xtimings;
4654
+				//undo some stuff to make the import quicker
4655
+				wp_defer_term_counting( false );
4656
+				wp_defer_comment_counting( false );
4657
+				$wpdb->query( 'COMMIT;' );
4658
+				$wpdb->query( 'SET autocommit = 1;' );
4659
+				$xtimings['###13'] = microtime(true)-$xstart;
4660
+				$json = array();
4661
+				$json['processed'] = $processed_actual;
4662
+				$json['created'] = $created;
4663
+				$json['updated'] = $updated;
4664
+				$json['skipped'] = $skipped;
4665
+				$json['invalid'] = $invalid;
4666
+				$json['invalid_addr'] = $invalid_addr;
4667
+				$json['images'] = $images;
4668
+				$json['timing'] = microtime(true)-$xstart;
4669
+				$json['timings'] = $xtimings;
4670 4670
                 
4671 4671
 
4672
-                wp_send_json( $json );
4673
-                exit;
4674
-            } else if ( $task == 'import_loc' ) {
4675
-                global $gd_post_types;
4676
-                $gd_post_types = $post_types;
4672
+				wp_send_json( $json );
4673
+				exit;
4674
+			} else if ( $task == 'import_loc' ) {
4675
+				global $gd_post_types;
4676
+				$gd_post_types = $post_types;
4677 4677
                 
4678
-                if (!empty($file)) {
4679
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4678
+				if (!empty($file)) {
4679
+					$columns = isset($file[0]) ? $file[0] : NULL;
4680 4680
                     
4681
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4682
-                        $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4683
-                        wp_send_json( $json );
4684
-                    }
4681
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4682
+						$json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4683
+						wp_send_json( $json );
4684
+					}
4685 4685
                     
4686
-                    $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4687
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4688
-                    for ($i = 1; $i <= $limit; $i++) {
4689
-                        $index = $processed + $i;
4686
+					$gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4687
+					$gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4688
+					for ($i = 1; $i <= $limit; $i++) {
4689
+						$index = $processed + $i;
4690 4690
                         
4691
-                        if (isset($file[$index])) {
4692
-                            $row = $file[$index];
4693
-                            $row = array_map( 'trim', $row );
4694
-                            $data = array();
4691
+						if (isset($file[$index])) {
4692
+							$row = $file[$index];
4693
+							$row = array_map( 'trim', $row );
4694
+							$data = array();
4695 4695
                             
4696
-                            foreach ($columns as $c => $column ) {
4697
-                                if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4698
-                                    $data[$column] = $row[$c];
4699
-                                }
4700
-                            }
4696
+							foreach ($columns as $c => $column ) {
4697
+								if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4698
+									$data[$column] = $row[$c];
4699
+								}
4700
+							}
4701 4701
 
4702
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4703
-                                $invalid++;
4704
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4705
-                                continue;
4706
-                            }
4702
+							if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4703
+								$invalid++;
4704
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4705
+								continue;
4706
+							}
4707 4707
                             
4708
-                            $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4708
+							$data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4709 4709
                             
4710
-                            if ( $import_choice == 'update' ) {
4711
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4712
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4713
-                                        $updated++;
4714
-                                    } else {
4715
-                                        $invalid++;
4716
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4717
-                                    }
4718
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4719
-                                    $data['location_id'] = (int)$location->location_id;
4710
+							if ( $import_choice == 'update' ) {
4711
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4712
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4713
+										$updated++;
4714
+									} else {
4715
+										$invalid++;
4716
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4717
+									}
4718
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4719
+									$data['location_id'] = (int)$location->location_id;
4720 4720
                                     
4721
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4722
-                                        $data['location_id'] = (int)$location->location_id;
4723
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4724
-                                        $data['location_id'] = (int)$location->location_id;
4725
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4726
-                                        $data['location_id'] = (int)$location->location_id;
4727
-                                    }
4721
+									if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4722
+										$data['location_id'] = (int)$location->location_id;
4723
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4724
+										$data['location_id'] = (int)$location->location_id;
4725
+									} else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4726
+										$data['location_id'] = (int)$location->location_id;
4727
+									}
4728 4728
                                     
4729
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4730
-                                        $updated++;
4731
-                                    } else {
4732
-                                        $invalid++;
4733
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4734
-                                    }
4735
-                                } else {
4736
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4737
-                                        $created++;
4738
-                                    } else {
4739
-                                        $invalid++;
4740
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4741
-                                    }
4742
-                                }
4743
-                            } elseif ( $import_choice == 'skip' ) {
4744
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4745
-                                    $skipped++;
4746
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4747
-                                    $skipped++;
4748
-                                } else {
4749
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4750
-                                        $created++;
4751
-                                    } else {
4752
-                                        $invalid++;
4753
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4754
-                                    }
4755
-                                }
4756
-                            } else {
4757
-                                $invalid++;
4758
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4759
-                            }
4760
-                        }
4761
-                    }
4762
-                }
4729
+									if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4730
+										$updated++;
4731
+									} else {
4732
+										$invalid++;
4733
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4734
+									}
4735
+								} else {
4736
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4737
+										$created++;
4738
+									} else {
4739
+										$invalid++;
4740
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4741
+									}
4742
+								}
4743
+							} elseif ( $import_choice == 'skip' ) {
4744
+								if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4745
+									$skipped++;
4746
+								} else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4747
+									$skipped++;
4748
+								} else {
4749
+									if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4750
+										$created++;
4751
+									} else {
4752
+										$invalid++;
4753
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4754
+									}
4755
+								}
4756
+							} else {
4757
+								$invalid++;
4758
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4759
+							}
4760
+						}
4761
+					}
4762
+				}
4763 4763
                 
4764
-                $json = array();
4765
-                $json['processed'] = $limit;
4766
-                $json['created'] = $created;
4767
-                $json['updated'] = $updated;
4768
-                $json['skipped'] = $skipped;
4769
-                $json['invalid'] = $invalid;
4770
-                $json['images'] = $images;
4764
+				$json = array();
4765
+				$json['processed'] = $limit;
4766
+				$json['created'] = $created;
4767
+				$json['updated'] = $updated;
4768
+				$json['skipped'] = $skipped;
4769
+				$json['invalid'] = $invalid;
4770
+				$json['images'] = $images;
4771 4771
                 
4772
-                wp_send_json( $json );
4773
-            } else if ( $task == 'import_hood' ) {               
4774
-                if (!empty($file)) {
4775
-                    $columns = isset($file[0]) ? $file[0] : NULL;
4772
+				wp_send_json( $json );
4773
+			} else if ( $task == 'import_hood' ) {               
4774
+				if (!empty($file)) {
4775
+					$columns = isset($file[0]) ? $file[0] : NULL;
4776 4776
                     
4777
-                    if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4778
-                        $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4779
-                        wp_send_json( $json );
4780
-                    }
4777
+					if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4778
+						$json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4779
+						wp_send_json( $json );
4780
+					}
4781 4781
                     
4782
-                    $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4783
-                    $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' );
4784
-                    for ($i = 1; $i <= $limit; $i++) {
4785
-                        $index = $processed + $i;
4782
+					$gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4783
+					$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' );
4784
+					for ($i = 1; $i <= $limit; $i++) {
4785
+						$index = $processed + $i;
4786 4786
                         
4787
-                        if (isset($file[$index])) {
4788
-                            $row = $file[$index];
4789
-                            $row = array_map( 'trim', $row );
4790
-                            $data = array();
4787
+						if (isset($file[$index])) {
4788
+							$row = $file[$index];
4789
+							$row = array_map( 'trim', $row );
4790
+							$data = array();
4791 4791
                             
4792
-                            foreach ($columns as $c => $column) {
4793
-                                if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
4794
-                                    $data[$column] = sanitize_text_field($row[$c]);
4795
-                                }
4796
-                            }
4792
+							foreach ($columns as $c => $column) {
4793
+								if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
4794
+									$data[$column] = sanitize_text_field($row[$c]);
4795
+								}
4796
+							}
4797 4797
 
4798
-                            if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4799
-                                $invalid++;
4800
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4801
-                                continue;
4802
-                            }
4798
+							if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4799
+								$invalid++;
4800
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4801
+								continue;
4802
+							}
4803 4803
                             
4804
-                            $location_info = array();
4805
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4806
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4807
-                            } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4808
-                                $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4809
-                            }
4804
+							$location_info = array();
4805
+							if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4806
+								$location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4807
+							} else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4808
+								$location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4809
+							}
4810 4810
 
4811
-                            if (empty($location_info)) {
4812
-                                $invalid++;
4813
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4814
-                                continue;
4815
-                            }
4811
+							if (empty($location_info)) {
4812
+								$invalid++;
4813
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4814
+								continue;
4815
+							}
4816 4816
                             
4817
-                            $location_id = $location_info->location_id;
4817
+							$location_id = $location_info->location_id;
4818 4818
 
4819
-                            $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
4819
+							$data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0;
4820 4820
                             
4821
-                            $hood_data = array();
4822
-                            $hood_data['hood_name'] = $data['neighbourhood_name'];
4823
-                            $hood_data['hood_slug'] = $data['neighbourhood_slug'];
4824
-                            $hood_data['hood_latitude'] = $data['latitude'];
4825
-                            $hood_data['hood_longitude'] = $data['longitude'];
4826
-                            $hood_data['hood_location_id'] = $location_id;
4821
+							$hood_data = array();
4822
+							$hood_data['hood_name'] = $data['neighbourhood_name'];
4823
+							$hood_data['hood_slug'] = $data['neighbourhood_slug'];
4824
+							$hood_data['hood_latitude'] = $data['latitude'];
4825
+							$hood_data['hood_longitude'] = $data['longitude'];
4826
+							$hood_data['hood_location_id'] = $location_id;
4827 4827
                                     
4828
-                            if ( $import_choice == 'update' ) {
4829
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4830
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4828
+							if ( $import_choice == 'update' ) {
4829
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4830
+									$hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4831 4831
                                     
4832
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4833
-                                        $updated++;
4834
-                                    } else {
4835
-                                        $invalid++;
4836
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4837
-                                    }
4838
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4839
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4832
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4833
+										$updated++;
4834
+									} else {
4835
+										$invalid++;
4836
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4837
+									}
4838
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4839
+									$hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4840 4840
                                     
4841
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4842
-                                        $updated++;
4843
-                                    } else {
4844
-                                        $invalid++;
4845
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4846
-                                    }
4847
-                                } else {
4848
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4849
-                                        $created++;
4850
-                                    } else {
4851
-                                        $invalid++;
4852
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4853
-                                    }
4854
-                                }
4855
-                            } elseif ( $import_choice == 'skip' ) {
4856
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4857
-                                    $skipped++;
4858
-                                } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4859
-                                    $skipped++;
4860
-                                } else {
4841
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4842
+										$updated++;
4843
+									} else {
4844
+										$invalid++;
4845
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4846
+									}
4847
+								} else {
4848
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4849
+										$created++;
4850
+									} else {
4851
+										$invalid++;
4852
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4853
+									}
4854
+								}
4855
+							} elseif ( $import_choice == 'skip' ) {
4856
+								if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4857
+									$skipped++;
4858
+								} else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4859
+									$skipped++;
4860
+								} else {
4861 4861
                                     
4862
-                                    if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4863
-                                        $created++;
4864
-                                    } else {
4865
-                                        $invalid++;
4866
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4867
-                                    }
4868
-                                }
4869
-                            } else {
4870
-                                $invalid++;
4871
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4872
-                            }
4873
-                        }
4874
-                    }
4875
-                }
4862
+									if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4863
+										$created++;
4864
+									} else {
4865
+										$invalid++;
4866
+										geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4867
+									}
4868
+								}
4869
+							} else {
4870
+								$invalid++;
4871
+								geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4872
+							}
4873
+						}
4874
+					}
4875
+				}
4876 4876
                 
4877
-                $json = array();
4878
-                $json['processed'] = $limit;
4879
-                $json['created'] = $created;
4880
-                $json['updated'] = $updated;
4881
-                $json['skipped'] = $skipped;
4882
-                $json['invalid'] = $invalid;
4883
-                $json['images'] = $images;
4877
+				$json = array();
4878
+				$json['processed'] = $limit;
4879
+				$json['created'] = $created;
4880
+				$json['updated'] = $updated;
4881
+				$json['skipped'] = $skipped;
4882
+				$json['invalid'] = $invalid;
4883
+				$json['images'] = $images;
4884 4884
                 
4885
-                wp_send_json( $json );
4886
-            }
4887
-        }
4888
-        break;
4889
-        case 'import_finish':{
4890
-            /**
4891
-             * Run an action when an import finishes.
4892
-             *
4893
-             * This action can be used to fire functions after an import ends.
4894
-             *
4895
-             * @since 1.5.3
4896
-             * @package GeoDirectory
4897
-             */
4898
-            do_action('geodir_import_finished');
4899
-        }
4900
-        break;
4885
+				wp_send_json( $json );
4886
+			}
4887
+		}
4888
+		break;
4889
+		case 'import_finish':{
4890
+			/**
4891
+			 * Run an action when an import finishes.
4892
+			 *
4893
+			 * This action can be used to fire functions after an import ends.
4894
+			 *
4895
+			 * @since 1.5.3
4896
+			 * @package GeoDirectory
4897
+			 */
4898
+			do_action('geodir_import_finished');
4899
+		}
4900
+		break;
4901 4901
 
4902
-    }
4903
-    echo '0';
4904
-    gd_die();
4902
+	}
4903
+	echo '0';
4904
+	gd_die();
4905 4905
 }
4906 4906
 
4907 4907
 /**
@@ -4945,12 +4945,12 @@  discard block
 block discarded – undo
4945 4945
 		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4946 4946
 	}
4947 4947
 	
4948
-    if( !empty( $term ) ) {
4948
+	if( !empty( $term ) ) {
4949 4949
 		$result = wp_insert_term( $term, $taxonomy, $args );
4950
-        if( !is_wp_error( $result ) ) {
4951
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4952
-        }
4953
-    }
4950
+		if( !is_wp_error( $result ) ) {
4951
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4952
+		}
4953
+	}
4954 4954
 	
4955 4955
 	return false;
4956 4956
 }
@@ -4996,16 +4996,16 @@  discard block
 block discarded – undo
4996 4996
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4997 4997
 		
4998 4998
 		if( !is_wp_error( $result ) ) {
4999
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5000
-        }
4999
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5000
+		}
5001 5001
 	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
5002 5002
 		$term_data['term_id'] = $term_info['term_id'];
5003 5003
 		
5004 5004
 		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
5005 5005
 		
5006 5006
 		if( !is_wp_error( $result ) ) {
5007
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5008
-        }
5007
+			return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5008
+		}
5009 5009
 	} else {
5010 5010
 		return geodir_imex_insert_term( $taxonomy, $term_data );
5011 5011
 	}
@@ -5027,47 +5027,47 @@  discard block
 block discarded – undo
5027 5027
  * @return int Posts count.
5028 5028
  */
5029 5029
 function geodir_get_posts_count( $post_type ) {
5030
-    global $wpdb, $plugin_prefix;
5030
+	global $wpdb, $plugin_prefix;
5031 5031
 
5032
-    if ( !post_type_exists( $post_type ) ) {
5033
-        return 0;
5034
-    }
5032
+	if ( !post_type_exists( $post_type ) ) {
5033
+		return 0;
5034
+	}
5035 5035
         
5036
-    $table = $plugin_prefix . $post_type . '_detail';
5036
+	$table = $plugin_prefix . $post_type . '_detail';
5037 5037
 
5038
-    // Skip listing with statuses trash, auto-draft etc...
5039
-    $skip_statuses = geodir_imex_export_skip_statuses();
5040
-    $where_statuses = '';
5041
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5042
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5043
-    }
5038
+	// Skip listing with statuses trash, auto-draft etc...
5039
+	$skip_statuses = geodir_imex_export_skip_statuses();
5040
+	$where_statuses = '';
5041
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5042
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5043
+	}
5044 5044
     
5045
-    /**
5046
-     * Filter the SQL where clause part to filter posts count in import/export.
5047
-     *
5048
-     * @since 1.6.4
5049
-     * @package GeoDirectory
5050
-     *
5051
-     * @param string $where SQL where clause part.
5052
-     */
5053
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5054
-
5055
-    $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 );
5056
-
5057
-    $posts_count = (int)$wpdb->get_var( $query );
5045
+	/**
5046
+	 * Filter the SQL where clause part to filter posts count in import/export.
5047
+	 *
5048
+	 * @since 1.6.4
5049
+	 * @package GeoDirectory
5050
+	 *
5051
+	 * @param string $where SQL where clause part.
5052
+	 */
5053
+	$where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5054
+
5055
+	$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 );
5056
+
5057
+	$posts_count = (int)$wpdb->get_var( $query );
5058 5058
     
5059
-    /**
5060
-     * Modify returned post counts for the current post type.
5061
-     *
5062
-     * @since 1.4.6
5063
-     * @package GeoDirectory
5064
-     *
5065
-     * @param int $posts_count Post counts.
5066
-     * @param string $post_type Post type.
5067
-     */
5068
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5069
-
5070
-    return $posts_count;
5059
+	/**
5060
+	 * Modify returned post counts for the current post type.
5061
+	 *
5062
+	 * @since 1.4.6
5063
+	 * @package GeoDirectory
5064
+	 *
5065
+	 * @param int $posts_count Post counts.
5066
+	 * @param string $post_type Post type.
5067
+	 */
5068
+	$posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5069
+
5070
+	return $posts_count;
5071 5071
 }
5072 5072
 
5073 5073
 /**
@@ -5135,7 +5135,7 @@  discard block
 block discarded – undo
5135 5135
 		}
5136 5136
 		$csv_row[] = 'post_status';
5137 5137
 		$csv_row[] = 'is_featured';
5138
-        // Export claim listing field
5138
+		// Export claim listing field
5139 5139
 		if ($is_claim_active) {
5140 5140
 			$csv_row[] = 'claimed';
5141 5141
 		}
@@ -5144,7 +5144,7 @@  discard block
 block discarded – undo
5144 5144
 			$csv_row[] = 'alive_days';
5145 5145
 			$csv_row[] = 'expire_date';
5146 5146
 		}
5147
-        $csv_row[] = 'post_date';
5147
+		$csv_row[] = 'post_date';
5148 5148
 		$csv_row[] = 'post_address';
5149 5149
 		$csv_row[] = 'post_city';
5150 5150
 		$csv_row[] = 'post_region';
@@ -5152,11 +5152,11 @@  discard block
 block discarded – undo
5152 5152
 		$csv_row[] = 'post_zip';
5153 5153
 		$csv_row[] = 'post_latitude';
5154 5154
 		$csv_row[] = 'post_longitude';
5155
-        if ($neighbourhood_active) {
5156
-            $csv_row[] = 'post_neighbourhood';
5157
-            $csv_row[] = 'neighbourhood_latitude';
5158
-            $csv_row[] = 'neighbourhood_longitude';
5159
-        }
5155
+		if ($neighbourhood_active) {
5156
+			$csv_row[] = 'post_neighbourhood';
5157
+			$csv_row[] = 'neighbourhood_latitude';
5158
+			$csv_row[] = 'neighbourhood_longitude';
5159
+		}
5160 5160
 		$csv_row[] = 'geodir_timing';
5161 5161
 		$csv_row[] = 'geodir_contact';
5162 5162
 		$csv_row[] = 'geodir_email';
@@ -5191,21 +5191,21 @@  discard block
 block discarded – undo
5191 5191
 			$csv_row[] = 'franchise';
5192 5192
 		}
5193 5193
         
5194
-        /**
5195
-         * Filter columns field names of gd export listings csv.
5196
-         *
5197
-         * @since 1.6.5
5198
-         * @package GeoDirectory
5199
-         *
5200
-         * @param array $csv_row Column names being exported in csv.
5201
-         * @param string $post_type The post type.
5202
-         */
5203
-        $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5194
+		/**
5195
+		 * Filter columns field names of gd export listings csv.
5196
+		 *
5197
+		 * @since 1.6.5
5198
+		 * @package GeoDirectory
5199
+		 *
5200
+		 * @param array $csv_row Column names being exported in csv.
5201
+		 * @param string $post_type The post type.
5202
+		 */
5203
+		$csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
5204 5204
 		
5205 5205
 		$csv_rows[] = $csv_row;
5206 5206
 
5207 5207
 		$images_count = 5;
5208
-        $xx=0;
5208
+		$xx=0;
5209 5209
 		foreach ( $posts as $post ) {$xx++;
5210 5210
 			$post_id = $post['ID'];
5211 5211
 			
@@ -5336,15 +5336,15 @@  discard block
 block discarded – undo
5336 5336
 			}
5337 5337
 			$csv_row[] = $post_info['post_status']; // post_status
5338 5338
 			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5339
-            if ($is_claim_active) {
5340
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5341
-            }
5339
+			if ($is_claim_active) {
5340
+				$csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5341
+			}
5342 5342
 			if ($is_payment_plugin) {
5343 5343
 				$csv_row[] = (int)$post_info['package_id']; // package_id
5344 5344
 				$csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days
5345 5345
 				$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
5346 5346
 			}
5347
-            $csv_row[] = $post_info['post_date']; // post_date
5347
+			$csv_row[] = $post_info['post_date']; // post_date
5348 5348
 			$csv_row[] = stripslashes($post_info['post_address']); // post_address
5349 5349
 			$csv_row[] = stripslashes($post_info['post_city']); // post_city
5350 5350
 			$csv_row[] = stripslashes($post_info['post_region']); // post_region
@@ -5352,21 +5352,21 @@  discard block
 block discarded – undo
5352 5352
 			$csv_row[] = stripslashes($post_info['post_zip']); // post_zip
5353 5353
 			$csv_row[] = $post_info['post_latitude']; // post_latitude
5354 5354
 			$csv_row[] = $post_info['post_longitude']; // post_longitude
5355
-            if ($neighbourhood_active) {
5356
-                $post_neighbourhood = '';
5357
-                $neighbourhood_latitude = '';
5358
-                $neighbourhood_longitude = '';
5359
-                if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5360
-                    if (!empty($hood_info)) {
5361
-                        $post_neighbourhood = $hood_info->hood_name;
5362
-                        $neighbourhood_latitude = $hood_info->hood_latitude;
5363
-                        $neighbourhood_longitude = $hood_info->hood_longitude;
5364
-                    }
5365
-                }
5366
-                $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood
5367
-                $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5368
-                $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5369
-            }
5355
+			if ($neighbourhood_active) {
5356
+				$post_neighbourhood = '';
5357
+				$neighbourhood_latitude = '';
5358
+				$neighbourhood_longitude = '';
5359
+				if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
5360
+					if (!empty($hood_info)) {
5361
+						$post_neighbourhood = $hood_info->hood_name;
5362
+						$neighbourhood_latitude = $hood_info->hood_latitude;
5363
+						$neighbourhood_longitude = $hood_info->hood_longitude;
5364
+					}
5365
+				}
5366
+				$csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood
5367
+				$csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude
5368
+				$csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude
5369
+			}
5370 5370
 			$csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing
5371 5371
 			$csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact
5372 5372
 			$csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email
@@ -5409,16 +5409,16 @@  discard block
 block discarded – undo
5409 5409
 				$csv_row[] = (int)$franchise; // franchise id
5410 5410
 			}
5411 5411
             
5412
-            /**
5413
-             * Filter columns values of gd export listings csv file
5414
-             *
5415
-             * @since 1.6.5
5416
-             * @package GeoDirectory
5417
-             *
5418
-             * @param array $csv_row Field values being exported in csv.
5419
-             * @param array $post_info The post info.
5420
-             */
5421
-            $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5412
+			/**
5413
+			 * Filter columns values of gd export listings csv file
5414
+			 *
5415
+			 * @since 1.6.5
5416
+			 * @package GeoDirectory
5417
+			 *
5418
+			 * @param array $csv_row Field values being exported in csv.
5419
+			 * @param array $post_info The post info.
5420
+			 */
5421
+			$csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5422 5422
 			
5423 5423
 			for ( $c = 0; $c < $images_count; $c++ ) {
5424 5424
 				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
@@ -5451,64 +5451,64 @@  discard block
 block discarded – undo
5451 5451
  * @return array Array of posts data.
5452 5452
  */
5453 5453
 function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5454
-    global $wpdb, $plugin_prefix;
5454
+	global $wpdb, $plugin_prefix;
5455 5455
 
5456
-    if ( ! post_type_exists( $post_type ) )
5457
-        return new stdClass;
5456
+	if ( ! post_type_exists( $post_type ) )
5457
+		return new stdClass;
5458 5458
         
5459
-    $table = $plugin_prefix . $post_type . '_detail';
5459
+	$table = $plugin_prefix . $post_type . '_detail';
5460 5460
 
5461
-    $limit = '';
5462
-    if ( $per_page > 0 && $page_no > 0 ) {
5463
-        $offset = ( $page_no - 1 ) * $per_page;
5461
+	$limit = '';
5462
+	if ( $per_page > 0 && $page_no > 0 ) {
5463
+		$offset = ( $page_no - 1 ) * $per_page;
5464 5464
         
5465
-        if ( $offset > 0 ) {
5466
-            $limit = " LIMIT " . $offset . "," . $per_page;
5467
-        } else {
5468
-            $limit = " LIMIT " . $per_page;
5469
-        }
5470
-    }
5465
+		if ( $offset > 0 ) {
5466
+			$limit = " LIMIT " . $offset . "," . $per_page;
5467
+		} else {
5468
+			$limit = " LIMIT " . $per_page;
5469
+		}
5470
+	}
5471 5471
 
5472
-    // Skip listing with statuses trash, auto-draft etc...
5473
-    $skip_statuses = geodir_imex_export_skip_statuses();
5474
-    $where_statuses = '';
5475
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5476
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5477
-    }
5472
+	// Skip listing with statuses trash, auto-draft etc...
5473
+	$skip_statuses = geodir_imex_export_skip_statuses();
5474
+	$where_statuses = '';
5475
+	if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5476
+		$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5477
+	}
5478 5478
     
5479
-    /**
5480
-     * Filter the SQL where clause part to filter posts in import/export.
5481
-     *
5482
-     * @since 1.6.4
5483
-     * @package GeoDirectory
5484
-     *
5485
-     * @param string $where SQL where clause part.
5486
-     */
5487
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5488
-
5489
-    $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 );
5490
-    /**
5491
-     * Modify returned posts SQL query for the current post type.
5492
-     *
5493
-     * @since 1.4.6
5494
-     * @package GeoDirectory
5495
-     *
5496
-     * @param int $query The SQL query.
5497
-     * @param string $post_type Post type.
5498
-     */
5499
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5500
-    $results = (array)$wpdb->get_results( $query, ARRAY_A );
5501
-
5502
-    /**
5503
-     * Modify returned post results for the current post type.
5504
-     *
5505
-     * @since 1.4.6
5506
-     * @package GeoDirectory
5507
-     *
5508
-     * @param object $results An object containing all post ids.
5509
-     * @param string $post_type Post type.
5510
-     */
5511
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5479
+	/**
5480
+	 * Filter the SQL where clause part to filter posts in import/export.
5481
+	 *
5482
+	 * @since 1.6.4
5483
+	 * @package GeoDirectory
5484
+	 *
5485
+	 * @param string $where SQL where clause part.
5486
+	 */
5487
+	$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5488
+
5489
+	$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 );
5490
+	/**
5491
+	 * Modify returned posts SQL query for the current post type.
5492
+	 *
5493
+	 * @since 1.4.6
5494
+	 * @package GeoDirectory
5495
+	 *
5496
+	 * @param int $query The SQL query.
5497
+	 * @param string $post_type Post type.
5498
+	 */
5499
+	$query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5500
+	$results = (array)$wpdb->get_results( $query, ARRAY_A );
5501
+
5502
+	/**
5503
+	 * Modify returned post results for the current post type.
5504
+	 *
5505
+	 * @since 1.4.6
5506
+	 * @package GeoDirectory
5507
+	 *
5508
+	 * @param object $results An object containing all post ids.
5509
+	 * @param string $post_type Post type.
5510
+	 */
5511
+	return apply_filters( 'geodir_export_posts', $results, $post_type );
5512 5512
 }
5513 5513
 
5514 5514
 /**
@@ -5527,26 +5527,26 @@  discard block
 block discarded – undo
5527 5527
  * @return string The SQL query.
5528 5528
  */
5529 5529
 function geodir_imex_get_events_query( $query, $post_type ) {
5530
-    if ( $post_type == 'gd_event' ) {
5531
-        global $wpdb, $plugin_prefix;
5530
+	if ( $post_type == 'gd_event' ) {
5531
+		global $wpdb, $plugin_prefix;
5532 5532
         
5533
-        $table = $plugin_prefix . $post_type . '_detail';
5534
-        $schedule_table = EVENT_SCHEDULE;
5533
+		$table = $plugin_prefix . $post_type . '_detail';
5534
+		$schedule_table = EVENT_SCHEDULE;
5535 5535
         
5536
-        // Skip listing with statuses trash, auto-draft etc...
5537
-        $skip_statuses = geodir_imex_export_skip_statuses();
5538
-        $where_statuses = '';
5539
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5540
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5541
-        }
5536
+		// Skip listing with statuses trash, auto-draft etc...
5537
+		$skip_statuses = geodir_imex_export_skip_statuses();
5538
+		$where_statuses = '';
5539
+		if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5540
+			$where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5541
+		}
5542 5542
         
5543
-        /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5544
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5543
+		/** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5544
+		$where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5545 5545
 
5546
-        $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 );
5547
-    }
5546
+		$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 );
5547
+	}
5548 5548
 
5549
-    return $query;
5549
+	return $query;
5550 5550
 }
5551 5551
 
5552 5552
 /**
@@ -5568,36 +5568,36 @@  discard block
 block discarded – undo
5568 5568
  * @return int Total terms count.
5569 5569
  */
5570 5570
 function geodir_get_terms_count( $post_type ) {
5571
-    $args = array( 'hide_empty' => 0 );
5571
+	$args = array( 'hide_empty' => 0 );
5572 5572
 
5573
-    remove_all_filters( 'get_terms' );
5573
+	remove_all_filters( 'get_terms' );
5574 5574
 
5575
-    $taxonomy = $post_type . 'category';
5575
+	$taxonomy = $post_type . 'category';
5576 5576
 
5577
-    // WPML
5578
-    $is_wpml = geodir_is_wpml();
5579
-    $active_lang = 'all';
5580
-    if ( $is_wpml ) {
5581
-        global $sitepress;
5582
-        $active_lang = $sitepress->get_current_language();
5577
+	// WPML
5578
+	$is_wpml = geodir_is_wpml();
5579
+	$active_lang = 'all';
5580
+	if ( $is_wpml ) {
5581
+		global $sitepress;
5582
+		$active_lang = $sitepress->get_current_language();
5583 5583
         
5584
-        if ( $active_lang != 'all' ) {
5585
-            $sitepress->switch_lang( 'all', true );
5586
-        }
5587
-    }
5588
-    // WPML
5584
+		if ( $active_lang != 'all' ) {
5585
+			$sitepress->switch_lang( 'all', true );
5586
+		}
5587
+	}
5588
+	// WPML
5589 5589
             
5590
-    $count_terms = wp_count_terms( $taxonomy, $args );
5590
+	$count_terms = wp_count_terms( $taxonomy, $args );
5591 5591
 
5592
-    // WPML
5593
-    if ( $is_wpml && $active_lang !== 'all' ) {
5594
-        global $sitepress;
5595
-        $sitepress->switch_lang( $active_lang, true );
5596
-    }
5597
-    // WPML
5598
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5592
+	// WPML
5593
+	if ( $is_wpml && $active_lang !== 'all' ) {
5594
+		global $sitepress;
5595
+		$sitepress->switch_lang( $active_lang, true );
5596
+	}
5597
+	// WPML
5598
+	$count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5599 5599
      
5600
-    return $count_terms;
5600
+	return $count_terms;
5601 5601
 }
5602 5602
 
5603 5603
 /**
@@ -5636,11 +5636,11 @@  discard block
 block discarded – undo
5636 5636
 		$csv_row[] = 'cat_posttype';
5637 5637
 		$csv_row[] = 'cat_parent';
5638 5638
 		$csv_row[] = 'cat_schema';
5639
-        // WPML
5639
+		// WPML
5640 5640
 		$is_wpml = geodir_wpml_is_taxonomy_translated( $taxonomy );
5641 5641
 		if ($is_wpml) {
5642 5642
 			$csv_row[] = 'cat_language';
5643
-            $csv_row[] = 'cat_id_original';
5643
+			$csv_row[] = 'cat_id_original';
5644 5644
 		}
5645 5645
 		// WPML
5646 5646
 		$csv_row[] = 'cat_description';
@@ -5670,10 +5670,10 @@  discard block
 block discarded – undo
5670 5670
 			$csv_row[] = $post_type;
5671 5671
 			$csv_row[] = $cat_parent;
5672 5672
 			$csv_row[] = geodir_get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5673
-            // WPML
5673
+			// WPML
5674 5674
 			if ($is_wpml) {
5675 5675
 				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5676
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5676
+				$csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5677 5677
 			}
5678 5678
 			// WPML
5679 5679
 			$csv_row[] = $term->description;
@@ -6091,43 +6091,43 @@  discard block
 block discarded – undo
6091 6091
  * @param string $status Post status.
6092 6092
  */
6093 6093
 function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
6094
-    global $wpdb, $current_user;
6095
-
6096
-    $option_value = get_option($option);
6097
-
6098
-    if ($option_value > 0) :
6099
-        if (get_post($option_value)) :
6100
-            // Page exists
6101
-            return;
6102
-        endif;
6103
-    endif;
6104
-
6105
-    $page_found = $wpdb->get_var(
6106
-        $wpdb->prepare(
6107
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6108
-            array($slug)
6109
-        )
6110
-    );
6111
-
6112
-    if ($page_found) :
6113
-        // Page exists
6114
-        if (!$option_value) update_option($option, $page_found);
6115
-        return;
6116
-    endif;
6117
-
6118
-    $page_data = array(
6119
-        'post_status' => $status,
6120
-        'post_type' => 'page',
6121
-        'post_author' => $current_user->ID,
6122
-        'post_name' => $slug,
6123
-        'post_title' => $page_title,
6124
-        'post_content' => $page_content,
6125
-        'post_parent' => $post_parent,
6126
-        'comment_status' => 'closed'
6127
-    );
6128
-    $page_id = wp_insert_post($page_data);
6129
-
6130
-    add_option($option, $page_id);
6094
+	global $wpdb, $current_user;
6095
+
6096
+	$option_value = get_option($option);
6097
+
6098
+	if ($option_value > 0) :
6099
+		if (get_post($option_value)) :
6100
+			// Page exists
6101
+			return;
6102
+		endif;
6103
+	endif;
6104
+
6105
+	$page_found = $wpdb->get_var(
6106
+		$wpdb->prepare(
6107
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6108
+			array($slug)
6109
+		)
6110
+	);
6111
+
6112
+	if ($page_found) :
6113
+		// Page exists
6114
+		if (!$option_value) update_option($option, $page_found);
6115
+		return;
6116
+	endif;
6117
+
6118
+	$page_data = array(
6119
+		'post_status' => $status,
6120
+		'post_type' => 'page',
6121
+		'post_author' => $current_user->ID,
6122
+		'post_name' => $slug,
6123
+		'post_title' => $page_title,
6124
+		'post_content' => $page_content,
6125
+		'post_parent' => $post_parent,
6126
+		'comment_status' => 'closed'
6127
+	);
6128
+	$page_id = wp_insert_post($page_data);
6129
+
6130
+	add_option($option, $page_id);
6131 6131
 
6132 6132
 }
6133 6133
 
@@ -6158,9 +6158,9 @@  discard block
 block discarded – undo
6158 6158
  * @package GeoDirectory
6159 6159
  */
6160 6160
 function geodir_admin_upgrade_notice() {
6161
-    $class = "error";
6162
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6163
-    echo"<div class=\"$class\"> <p>$message</p></div>";
6161
+	$class = "error";
6162
+	$message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6163
+	echo"<div class=\"$class\"> <p>$message</p></div>";
6164 6164
 }
6165 6165
 
6166 6166
 /**
@@ -6173,18 +6173,18 @@  discard block
 block discarded – undo
6173 6173
  */
6174 6174
 function geodire_admin_upgrade_notice( $plugin_data, $r )
6175 6175
 {
6176
-    // readme contents
6177
-    $args = array(
6178
-        'timeout'     => 15,
6179
-        'redirection' => 5
6180
-    );
6181
-    $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6182
-    $data       = wp_remote_get( $url, $args );
6176
+	// readme contents
6177
+	$args = array(
6178
+		'timeout'     => 15,
6179
+		'redirection' => 5
6180
+	);
6181
+	$url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6182
+	$data       = wp_remote_get( $url, $args );
6183 6183
 
6184
-    if (!is_wp_error($data) && $data['response']['code'] == 200) {
6184
+	if (!is_wp_error($data) && $data['response']['code'] == 200) {
6185 6185
 
6186
-        geodir_in_plugin_update_message($data['body']);
6187
-    }
6186
+		geodir_in_plugin_update_message($data['body']);
6187
+	}
6188 6188
 }
6189 6189
 
6190 6190
 
@@ -6192,28 +6192,28 @@  discard block
 block discarded – undo
6192 6192
 * @param string $content http response body
6193 6193
 */
6194 6194
 function geodir_in_plugin_update_message($content) {
6195
-    // Output Upgrade Notice
6196
-    $matches        = null;
6197
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6198
-    $upgrade_notice = '';
6199
-    if ( preg_match( $regexp, $content, $matches ) ) {
6200
-        if(empty($matches)){return;}
6201
-
6202
-        $version = trim( $matches[1] );
6203
-        if($version && $version>GEODIRECTORY_VERSION){
6204
-
6205
-
6206
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6207
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6208
-            $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6209
-            foreach ( $notices as $index => $line ) {
6210
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6211
-            }
6212
-            $upgrade_notice .= '</div> ';
6213
-        }
6214
-        }
6215
-    }
6216
-    echo $upgrade_notice;
6195
+	// Output Upgrade Notice
6196
+	$matches        = null;
6197
+	$regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6198
+	$upgrade_notice = '';
6199
+	if ( preg_match( $regexp, $content, $matches ) ) {
6200
+		if(empty($matches)){return;}
6201
+
6202
+		$version = trim( $matches[1] );
6203
+		if($version && $version>GEODIRECTORY_VERSION){
6204
+
6205
+
6206
+		$notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6207
+		if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6208
+			$upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6209
+			foreach ( $notices as $index => $line ) {
6210
+				$upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6211
+			}
6212
+			$upgrade_notice .= '</div> ';
6213
+		}
6214
+		}
6215
+	}
6216
+	echo $upgrade_notice;
6217 6217
 }
6218 6218
 
6219 6219
 /**
@@ -6246,19 +6246,19 @@  discard block
 block discarded – undo
6246 6246
  * @param array Listing statuses to be skipped.
6247 6247
  */
6248 6248
 function geodir_imex_export_skip_statuses() {
6249
-    $statuses = array( 'trash', 'auto-draft' );
6249
+	$statuses = array( 'trash', 'auto-draft' );
6250 6250
     
6251
-    /**
6252
-     * Filter the statuses to skip during GD export listings.
6253
-     *
6254
-     * @since 1.6.0
6255
-     * @package GeoDirectory
6256
-     *
6257
-     * @param array $statuses Listing statuses to be skipped.
6258
-     */
6259
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6251
+	/**
6252
+	 * Filter the statuses to skip during GD export listings.
6253
+	 *
6254
+	 * @since 1.6.0
6255
+	 * @package GeoDirectory
6256
+	 *
6257
+	 * @param array $statuses Listing statuses to be skipped.
6258
+	 */
6259
+	$statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6260 6260
      
6261
-    return $statuses;
6261
+	return $statuses;
6262 6262
 }
6263 6263
 
6264 6264
 /**
@@ -6274,42 +6274,42 @@  discard block
 block discarded – undo
6274 6274
  * @global string $typenow Current post type.
6275 6275
  */
6276 6276
 function geodir_admin_dequeue_scripts() {
6277
-    global $typenow;
6277
+	global $typenow;
6278 6278
     
6279
-    // EDD
6280
-    if (wp_script_is('jquery-chosen', 'enqueued')) {
6281
-        wp_dequeue_script('jquery-chosen');
6282
-    }
6279
+	// EDD
6280
+	if (wp_script_is('jquery-chosen', 'enqueued')) {
6281
+		wp_dequeue_script('jquery-chosen');
6282
+	}
6283 6283
     
6284
-    // Ultimate Addons for Visual Composer
6285
-    if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6286
-        wp_dequeue_script('ultimate-vc-backend-script');
6287
-    }
6284
+	// Ultimate Addons for Visual Composer
6285
+	if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
6286
+		wp_dequeue_script('ultimate-vc-backend-script');
6287
+	}
6288 6288
     
6289
-    // VC editor conflicts
6290
-    if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
6291
-        wp_dequeue_script('dfd_vc_damin_scripts');
6292
-    }
6289
+	// VC editor conflicts
6290
+	if (class_exists('Vc_Role_Access_Controller') && wp_script_is('dfd_vc_damin_scripts', 'enqueued')) {
6291
+		wp_dequeue_script('dfd_vc_damin_scripts');
6292
+	}
6293 6293
     
6294
-    // Ultimate chosen
6295
-    if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
6296
-        wp_dequeue_script('ultimate-chosen-script');
6297
-    }
6294
+	// Ultimate chosen
6295
+	if (wp_script_is('ultimate-chosen-script', 'enqueued')) {
6296
+		wp_dequeue_script('ultimate-chosen-script');
6297
+	}
6298 6298
     
6299
-    // Crum composer choosen
6300
-    if (wp_script_is('crum-composer-choosen', 'enqueued')) {
6301
-        wp_dequeue_script('crum-composer-choosen');
6302
-    }
6299
+	// Crum composer choosen
6300
+	if (wp_script_is('crum-composer-choosen', 'enqueued')) {
6301
+		wp_dequeue_script('crum-composer-choosen');
6302
+	}
6303 6303
     
6304
-    // Fix conflict Fusion Builder jquery chosen with GD jquery chosen.
6305
-    if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
6306
-        wp_dequeue_script('fusion_builder_chosen_js');
6307
-    }
6304
+	// Fix conflict Fusion Builder jquery chosen with GD jquery chosen.
6305
+	if (class_exists('FusionBuilder') && wp_script_is('fusion_builder_chosen_js', 'enqueued')) {
6306
+		wp_dequeue_script('fusion_builder_chosen_js');
6307
+	}
6308 6308
     
6309
-    // Fix conflicts timepicker & setting date value.
6310
-    if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) {
6311
-        wp_dequeue_script('acf-timepicker');
6312
-    }
6309
+	// Fix conflicts timepicker & setting date value.
6310
+	if (class_exists('acf') && wp_script_is('acf-timepicker', 'enqueued')) {
6311
+		wp_dequeue_script('acf-timepicker');
6312
+	}
6313 6313
 }
6314 6314
 
6315 6315
 /**
@@ -6325,48 +6325,48 @@  discard block
 block discarded – undo
6325 6325
  * @return string SQL where clause part.
6326 6326
  */
6327 6327
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6328
-    global $wpdb;
6328
+	global $wpdb;
6329 6329
     
6330
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6330
+	$filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6331 6331
     
6332
-    if ( !empty( $filters ) ) {
6333
-        foreach ( $filters as $field => $value ) {
6334
-            switch ($field) {
6335
-                case 'start_date':
6336
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6337
-                break;
6338
-                case 'end_date':
6339
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6340
-                break;
6341
-            }
6342
-        }
6343
-    }
6332
+	if ( !empty( $filters ) ) {
6333
+		foreach ( $filters as $field => $value ) {
6334
+			switch ($field) {
6335
+				case 'start_date':
6336
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6337
+				break;
6338
+				case 'end_date':
6339
+					$where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6340
+				break;
6341
+			}
6342
+		}
6343
+	}
6344 6344
     
6345
-    return $where;
6345
+	return $where;
6346 6346
 }
6347 6347
 add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
6348 6348
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6349 6349
 
6350 6350
 
6351 6351
 function geodir_fix_for_primer_theme(){
6352
-    if(!defined( 'PRIMER_VERSION' )){return;}
6353
-    global $pagenow;
6352
+	if(!defined( 'PRIMER_VERSION' )){return;}
6353
+	global $pagenow;
6354 6354
 
6355
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6355
+	if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6356 6356
 
6357
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6357
+		$post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6358 6358
 
6359
-        $post_types = geodir_get_posttypes();
6360
-        if ($post_type && in_array($post_type, $post_types) ) {
6361
-            global $primer_customizer_layouts;
6362
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6363
-        }
6364
-    }
6359
+		$post_types = geodir_get_posttypes();
6360
+		if ($post_type && in_array($post_type, $post_types) ) {
6361
+			global $primer_customizer_layouts;
6362
+			remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6363
+		}
6364
+	}
6365 6365
 
6366 6366
 }
6367 6367
 
6368 6368
 if(is_admin()){
6369
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6369
+	add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6370 6370
 }
6371 6371
 
6372 6372
 
@@ -6499,96 +6499,96 @@  discard block
 block discarded – undo
6499 6499
 
6500 6500
 function geodir_ga_activation_url() {
6501 6501
 
6502
-    return add_query_arg( array(
6503
-        'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6504
-        'scope'         => GEODIR_GA_SCOPE,
6505
-        'response_type' => 'code',
6506
-        'redirect_uri'  => GEODIR_GA_REDIRECT,
6507
-        'client_id'     => GEODIR_GA_CLIENTID,
6508
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6502
+	return add_query_arg( array(
6503
+		'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6504
+		'scope'         => GEODIR_GA_SCOPE,
6505
+		'response_type' => 'code',
6506
+		'redirect_uri'  => GEODIR_GA_REDIRECT,
6507
+		'client_id'     => GEODIR_GA_CLIENTID,
6508
+	), 'https://accounts.google.com/o/oauth2/auth' );
6509 6509
 
6510
-    return $url;
6510
+	return $url;
6511 6511
 }
6512 6512
 
6513 6513
 function geodir_gd_accounts(){
6514
-    $accounts = array();
6515
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6516
-    if($useAuth){
6517
-        try {
6518
-            $accounts = geodir_ga_get_analytics_accounts();
6519
-        } catch (Exception $e) {
6520
-            geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6521
-        }
6514
+	$accounts = array();
6515
+	$useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6516
+	if($useAuth){
6517
+		try {
6518
+			$accounts = geodir_ga_get_analytics_accounts();
6519
+		} catch (Exception $e) {
6520
+			geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6521
+		}
6522 6522
         
6523
-        if(is_array($accounts)){
6524
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6525
-        }elseif(get_option('geodir_ga_account_id')){
6526
-            $accounts = array();
6527
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6528
-        }
6529
-    }
6530
-    return $accounts;
6523
+		if(is_array($accounts)){
6524
+			$accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6525
+		}elseif(get_option('geodir_ga_account_id')){
6526
+			$accounts = array();
6527
+			$accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6528
+		}
6529
+	}
6530
+	return $accounts;
6531 6531
 }
6532 6532
 
6533 6533
 function geodir_ga_get_analytics_accounts()
6534 6534
 {
6535
-    global $gd_ga_errors;
6536
-    $accounts = array();
6535
+	global $gd_ga_errors;
6536
+	$accounts = array();
6537 6537
 
6538
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6538
+	if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6539 6539
 
6540 6540
 
6541
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6542
-      return get_option('geodir_gd_uids');
6543
-    }
6541
+	if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6542
+	  return get_option('geodir_gd_uids');
6543
+	}
6544 6544
 
6545
-    # Create a new Gdata call
6546
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6547
-        $stats = new GDGoogleAnalyticsStats();
6548
-    else
6549
-        return false;
6545
+	# Create a new Gdata call
6546
+	if ( trim(get_option('geodir_ga_auth_code')) != '' )
6547
+		$stats = new GDGoogleAnalyticsStats();
6548
+	else
6549
+		return false;
6550 6550
 
6551
-    # Check if Google sucessfully logged in
6552
-    if ( ! $stats->checkLogin() )
6553
-        return false;
6551
+	# Check if Google sucessfully logged in
6552
+	if ( ! $stats->checkLogin() )
6553
+		return false;
6554 6554
 
6555
-    # Get a list of accounts
6556
-    try {
6557
-        $accounts = $stats->getAllProfiles();
6558
-    } catch (Exception $e) {
6559
-        $gd_ga_errors[] = $e->getMessage();
6560
-        return false;
6561
-    }
6555
+	# Get a list of accounts
6556
+	try {
6557
+		$accounts = $stats->getAllProfiles();
6558
+	} catch (Exception $e) {
6559
+		$gd_ga_errors[] = $e->getMessage();
6560
+		return false;
6561
+	}
6562 6562
 
6563 6563
 
6564
-    natcasesort ($accounts);
6564
+	natcasesort ($accounts);
6565 6565
 
6566
-    # Return the account array if there are accounts
6567
-    if ( count($accounts) > 0 ){
6568
-        update_option('geodir_gd_uids',$accounts);
6569
-        return $accounts;
6570
-    }
6571
-    else
6572
-        return false;
6566
+	# Return the account array if there are accounts
6567
+	if ( count($accounts) > 0 ){
6568
+		update_option('geodir_gd_uids',$accounts);
6569
+		return $accounts;
6570
+	}
6571
+	else
6572
+		return false;
6573 6573
 }
6574 6574
 
6575 6575
 add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6576 6576
 function geodir_ga_deauthorize(){
6577 6577
 
6578
-    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6578
+	if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6579 6579
 
6580
-        die( 'Security check' );
6580
+		die( 'Security check' );
6581 6581
 
6582
-    } else {
6583
-        update_option('geodir_ga_auth_token','');
6584
-        update_option('geodir_ga_auth_code','');
6585
-        update_option('geodir_gd_uids','');
6582
+	} else {
6583
+		update_option('geodir_ga_auth_token','');
6584
+		update_option('geodir_ga_auth_code','');
6585
+		update_option('geodir_gd_uids','');
6586 6586
 
6587 6587
 
6588
-        echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
6589
-    }
6588
+		echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
6589
+	}
6590 6590
 
6591
-    die();
6591
+	die();
6592 6592
 }
6593 6593
 
6594 6594
 
@@ -6599,14 +6599,14 @@  discard block
 block discarded – undo
6599 6599
  * @package GeoDirectory
6600 6600
  */
6601 6601
 function geodir_post_type_setting_fun() {
6602
-    $post_type_arr = array();
6602
+	$post_type_arr = array();
6603 6603
 
6604
-    $post_types = geodir_get_posttypes('object');
6604
+	$post_types = geodir_get_posttypes('object');
6605 6605
 
6606
-    foreach ($post_types as $key => $post_types_obj) {
6607
-        $post_type_arr[$key] = $post_types_obj->labels->singular_name;
6608
-    }
6609
-    return $post_type_arr;
6606
+	foreach ($post_types as $key => $post_types_obj) {
6607
+		$post_type_arr[$key] = $post_types_obj->labels->singular_name;
6608
+	}
6609
+	return $post_type_arr;
6610 6610
 }
6611 6611
 
6612 6612
 /**
@@ -6617,35 +6617,35 @@  discard block
 block discarded – undo
6617 6617
  */
6618 6618
 function geodir_listing_image_size_arr(){
6619 6619
 
6620
-    global $_wp_additional_image_sizes;
6621
-
6622
-    $sizes = array();
6623
-
6624
-    foreach ( get_intermediate_image_sizes() as $_size ) {
6625
-        if ( in_array( $_size, array('thumbnail', 'medium', 'medium_large', 'large') ) ) {
6626
-            $sizes[ $_size ]['width']  = get_option( "{$_size}_size_w" );
6627
-            $sizes[ $_size ]['height'] = get_option( "{$_size}_size_h" );
6628
-            $sizes[ $_size ]['crop']   = (bool) get_option( "{$_size}_crop" );
6629
-        } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
6630
-            $sizes[ $_size ] = array(
6631
-                'width'  => $_wp_additional_image_sizes[ $_size ]['width'],
6632
-                'height' => $_wp_additional_image_sizes[ $_size ]['height'],
6633
-                'crop'   => $_wp_additional_image_sizes[ $_size ]['crop'],
6634
-            );
6635
-        }
6636
-    }
6620
+	global $_wp_additional_image_sizes;
6621
+
6622
+	$sizes = array();
6623
+
6624
+	foreach ( get_intermediate_image_sizes() as $_size ) {
6625
+		if ( in_array( $_size, array('thumbnail', 'medium', 'medium_large', 'large') ) ) {
6626
+			$sizes[ $_size ]['width']  = get_option( "{$_size}_size_w" );
6627
+			$sizes[ $_size ]['height'] = get_option( "{$_size}_size_h" );
6628
+			$sizes[ $_size ]['crop']   = (bool) get_option( "{$_size}_crop" );
6629
+		} elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
6630
+			$sizes[ $_size ] = array(
6631
+				'width'  => $_wp_additional_image_sizes[ $_size ]['width'],
6632
+				'height' => $_wp_additional_image_sizes[ $_size ]['height'],
6633
+				'crop'   => $_wp_additional_image_sizes[ $_size ]['crop'],
6634
+			);
6635
+		}
6636
+	}
6637 6637
 
6638 6638
 
6639 6639
 
6640
-    $options = array();
6640
+	$options = array();
6641 6641
 
6642
-    $options['default'] = __('GD Default', 'geodirectory');
6642
+	$options['default'] = __('GD Default', 'geodirectory');
6643 6643
 
6644
-    if(!empty($sizes)){
6645
-        foreach($sizes as $key=>$val){
6646
-            $options[$key] = $key. ' ( '.$val['width'].' x '.$val['height']. ' )';
6647
-        }
6648
-    }
6644
+	if(!empty($sizes)){
6645
+		foreach($sizes as $key=>$val){
6646
+			$options[$key] = $key. ' ( '.$val['width'].' x '.$val['height']. ' )';
6647
+		}
6648
+	}
6649 6649
 
6650
-    return $options;
6650
+	return $options;
6651 6651
 }
6652 6652
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +960 added lines, -960 removed lines patch added patch discarded remove patch
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
      * @package GeoDirectory
29 29
      */
30 30
     function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
31
+        wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32 32
         wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
34
+        wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35 35
         wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
37
+        wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38 38
         wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
40
+        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41 41
         wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
43
+        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44 44
         wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
46
+        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47 47
         wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
49
+        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50 50
         wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
52
+        wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53 53
         wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
55
+        wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56 56
         wp_enqueue_style('geodir-rtl-style');
57 57
     }
58 58
 }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71 71
         wp_enqueue_style('font-awesome');
72 72
 
73
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
73
+        wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74 74
         wp_enqueue_script('geodirectory-admin');
75 75
 
76 76
     }
@@ -89,68 +89,68 @@  discard block
 block discarded – undo
89 89
         
90 90
         wp_enqueue_script('jquery');
91 91
 
92
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
92
+        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93 93
 
94
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
94
+        wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95 95
         wp_enqueue_script('chosen');
96 96
 
97
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
97
+        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98 98
         wp_enqueue_script('geodirectory-choose-ajax');
99 99
 
100 100
         if (isset($_REQUEST['listing_type'])) {
101
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
101
+            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102 102
         }
103 103
 
104 104
         wp_enqueue_script('geodirectory-custom-fields-script');
105
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
105
+        $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions';
106 106
 
107
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
107
+        wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
108 108
 
109 109
         if (in_array($geodir_map_name, array('auto', 'google'))) {
110
-            $map_lang = "&language=" . geodir_get_map_default_language();
111
-            $map_key = "&key=" . geodir_get_map_api_key();
110
+            $map_lang = "&language=".geodir_get_map_default_language();
111
+            $map_key = "&key=".geodir_get_map_api_key();
112 112
             /** This filter is documented in geodirectory_template_tags.php */
113 113
             $map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
-            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
114
+            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
115 115
             
116 116
             // Overlapping Marker Spiderfier
117
-            wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
117
+            wp_register_script('geodirectory-g-overlappingmarker-script', geodir_plugin_url().'/geodirectory-assets/jawj/oms.min.js', array(), GEODIRECTORY_VERSION);
118 118
             wp_enqueue_script('geodirectory-g-overlappingmarker-script');
119 119
         }
120 120
         
121 121
         if ($geodir_map_name == 'osm') {
122 122
             // Leaflet OpenStreetMap
123
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
123
+            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
124 124
             wp_enqueue_style('geodirectory-leaflet-style');
125 125
                 
126
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
126
+            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
127 127
             wp_enqueue_script('geodirectory-leaflet-script');
128 128
             
129
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
129
+            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.min.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
130 130
             wp_enqueue_script('geodirectory-leaflet-geo-script');
131 131
             
132 132
             // Overlapping Marker Spiderfier Leaflet
133
-            wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url() . '/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
133
+            wp_register_script('geodirectory-o-overlappingmarker-script', geodir_plugin_url().'/geodirectory-assets/jawj/oms-leaflet.min.js', array(), GEODIRECTORY_VERSION);
134 134
             wp_enqueue_script('geodirectory-o-overlappingmarker-script');
135 135
         }
136
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
136
+        wp_enqueue_script('jquery-ui-autocomplete');
137 137
         
138
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
138
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
139 139
         wp_enqueue_script('geodirectory-goMap-script');
140 140
 
141
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
141
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
142 142
         wp_enqueue_script('geodirectory-goMap-script');
143 143
 
144 144
 		// font awesome rating script
145 145
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
146
-			wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
146
+			wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
147 147
 			wp_enqueue_script('geodir-barrating-js');
148 148
 		} else { // default rating script
149
-			wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
149
+			wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
150 150
 			wp_enqueue_script('geodir-jRating-js');
151 151
 		}
152 152
 
153
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
153
+        wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
154 154
         wp_enqueue_script('geodir-on-document-load');
155 155
 
156 156
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         wp_enqueue_script('plupload-all');
159 159
         wp_enqueue_script('jquery-ui-sortable');
160 160
 
161
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
161
+        wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
162 162
         wp_enqueue_script('geodirectory-plupload-script');
163 163
 
164 164
         // SCRIPT FOR UPLOAD END
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
213 213
 
214 214
 
215
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
215
+        wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
216 216
         wp_enqueue_script('geodirectory-admin-script');
217 217
 
218 218
         wp_enqueue_style('farbtastic');
@@ -220,10 +220,10 @@  discard block
 block discarded – undo
220 220
 
221 221
         $screen = get_current_screen();
222 222
         if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
223
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
223
+            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
224 224
         }
225 225
 
226
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
226
+        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl').'?geodir_ajax=true')));
227 227
         wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
228 228
 
229 229
     }
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 
247 247
         if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
248 248
 
249
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
249
+        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
250 250
 
251 251
 
252 252
     }
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
                 $geodir_menu_order[] = 'separator-geodirectory';
281 281
                 if (!empty($post_types)) {
282 282
                     foreach ($post_types as $post_type) {
283
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
283
+                        $geodir_menu_order[] = 'edit.php?post_type='.$post_type;
284 284
                     }
285 285
                 }
286 286
                 $geodir_menu_order[] = $item;
@@ -323,8 +323,8 @@  discard block
 block discarded – undo
323 323
 {
324 324
     if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
325 325
         echo '<div id="message" class="updated fade">
326
-                        <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>
327
-                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
326
+                        <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>
327
+                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
328 328
                 </div>';
329 329
 
330 330
     }
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
333 333
         switch ($_REQUEST['msg']) {
334 334
             case 'success':
335
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
335
+                echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
336 336
                 flush_rewrite_rules(false);
337 337
 
338 338
                 break;
@@ -340,30 +340,30 @@  discard block
 block discarded – undo
340 340
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
341 341
 				
342 342
 				if ($gderr == 21)
343
-			    	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>';
343
+			    	echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
344 344
 				else
345
-					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
345
+					echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
346 346
                 break;
347 347
         }
348 348
     }
349 349
 
350 350
     $geodir_load_map = get_option('geodir_load_map');
351 351
     $need_map_key = false;
352
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
352
+    if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
353 353
         $need_map_key = true;
354 354
     }
355 355
 
356 356
     if (!geodir_get_map_api_key() && $need_map_key) {
357
-        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>';
357
+        echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
358 358
     }
359 359
 
360 360
     if (!geodir_is_default_location_set()) {
361
-        echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
361
+        echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
362 362
 
363 363
     }
364 364
 
365 365
     if (!function_exists('curl_init')) {
366
-        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>';
366
+        echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
367 367
 
368 368
     }
369 369
 
@@ -383,18 +383,18 @@  discard block
 block discarded – undo
383 383
 function geodir_handle_option_form_submit($current_tab)
384 384
 {
385 385
     global $geodir_settings;
386
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
386
+    if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
387 387
         /**
388 388
          * Contains settings array for current tab.
389 389
          *
390 390
          * @since 1.0.0
391 391
          * @package GeoDirectory
392 392
          */
393
-        include_once('option-pages/' . $current_tab . '_array.php');
393
+        include_once('option-pages/'.$current_tab.'_array.php');
394 394
     }
395 395
     if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
396 396
         if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
397
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
397
+        if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
398 398
 		
399 399
 		/**
400 400
 		 * Fires before updating geodirectory admin settings.
@@ -427,13 +427,13 @@  discard block
 block discarded – undo
427 427
          * @param string $current_tab The current settings tab name.
428 428
          * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
429 429
          */
430
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
430
+        do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
431 431
 
432 432
         flush_rewrite_rules(false);
433 433
 
434 434
         $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
435 435
 
436
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
436
+        $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
437 437
 
438 438
         wp_redirect($redirect_url);
439 439
         exit();
@@ -472,18 +472,18 @@  discard block
 block discarded – undo
472 472
 
473 473
         elseif (isset($value['type']) && $value['type'] == 'image_width') :
474 474
 
475
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
476
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
477
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
478
-                if (isset($_POST[$value['id'] . '_crop'])) :
479
-                    update_option($value['id'] . '_crop', 1);
475
+            if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
476
+                update_option($value['id'].'_width', $_POST[$value['id'].'_width']);
477
+                update_option($value['id'].'_height', $_POST[$value['id'].'_height']);
478
+                if (isset($_POST[$value['id'].'_crop'])) :
479
+                    update_option($value['id'].'_crop', 1);
480 480
                 else :
481
-                    update_option($value['id'] . '_crop', 0);
481
+                    update_option($value['id'].'_crop', 0);
482 482
                 endif;
483 483
             } else {
484
-                update_option($value['id'] . '_width', $value['std']);
485
-                update_option($value['id'] . '_height', $value['std']);
486
-                update_option($value['id'] . '_crop', 1);
484
+                update_option($value['id'].'_width', $value['std']);
485
+                update_option($value['id'].'_height', $value['std']);
486
+                update_option($value['id'].'_crop', 1);
487 487
             }
488 488
 
489 489
         elseif (isset($value['type']) && $value['type'] == 'map') :
@@ -525,12 +525,12 @@  discard block
 block discarded – undo
525 525
         elseif (isset($value['type']) && $value['type'] == 'file') :
526 526
 
527 527
 
528
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
528
+            if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
529 529
 
530 530
                 if (get_option($value['id'])) {
531 531
                     $image_name_arr = explode('/', get_option($value['id']));
532 532
                     $noimg_name = end($image_name_arr);
533
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
533
+                    $img_path = $uploads['path'].'/'.$noimg_name;
534 534
                     if (file_exists($img_path))
535 535
                         unlink($img_path);
536 536
                 }
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
                 if (get_option($value['id'])) {
559 559
                     $image_name_arr = explode('/', get_option($value['id']));
560 560
                     $noimg_name = end($image_name_arr);
561
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
561
+                    $img_path = $uploads['path'].'/'.$noimg_name;
562 562
                     if (file_exists($img_path))
563 563
                         unlink($img_path);
564 564
                 }
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
             // same menu setting per theme.
580 580
             if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
581 581
                 $theme = wp_get_theme();
582
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
582
+                update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
583 583
             }
584 584
 
585 585
             if (isset($value['id']) && isset($_POST[$value['id']])) {
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
 
650 650
             $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory');
651 651
 
652
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
652
+            $tabs[$geodir_post_type.'_fields_settings'] = array(
653 653
                 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
654 654
                 'subtabs' => array(
655 655
                     array('subtab' => 'custom_fields',
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
  */
684 684
 function geodir_tools_setting_tab($tabs)
685 685
 {
686
-    wp_enqueue_script( 'jquery-ui-progressbar' );
686
+    wp_enqueue_script('jquery-ui-progressbar');
687 687
     $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
688 688
     return $tabs;
689 689
 }
@@ -717,7 +717,7 @@  discard block
 block discarded – undo
717 717
  */
718 718
 function geodir_extend_geodirectory_setting_tab($tabs)
719 719
 {
720
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
720
+    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
721 721
     return $tabs;
722 722
 }
723 723
 
@@ -777,8 +777,8 @@  discard block
 block discarded – undo
777 777
                     _e('Unknown', 'geodirectory');
778 778
                 } else {
779 779
                     /* If there is a city id, append 'city name' to the text string. */
780
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
781
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
780
+                    $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
781
+                    echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id);
782 782
                 }
783 783
                 break;
784 784
 
@@ -796,14 +796,14 @@  discard block
 block discarded – undo
796 796
                         $expire_class = 'expire_over';
797 797
                     }
798 798
                     $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
799
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
799
+                    $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
800 800
                 }
801 801
                 /* If no expire_date is found, output a default message. */
802 802
                 if (empty($expire_date))
803 803
                     echo __('Unknown', 'geodirectory');
804 804
                 /* If there is a expire_date, append 'days left' to the text string. */
805 805
                 else
806
-                    echo $expire_date . $date_diff_text;
806
+                    echo $expire_date.$date_diff_text;
807 807
                 break;
808 808
 
809 809
             /* If displaying the 'categorys' column. */
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
 function geodir_post_information_save($post_id, $post) {
871 871
     global $wpdb, $current_user;
872 872
 
873
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
873
+    if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
874 874
         return;
875 875
     }
876 876
 
@@ -938,7 +938,7 @@  discard block
 block discarded – undo
938 938
                     $tab_id = $value['id'];
939 939
 
940 940
                 if (isset($value['desc']) && $value['desc'])
941
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
941
+                    $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>';
942 942
 
943 943
                 if (isset($value['name']) && $value['name']) {
944 944
                     if ($first_title === true) {
@@ -946,9 +946,9 @@  discard block
 block discarded – undo
946 946
                     } else {
947 947
                         echo '</div>';
948 948
                     }
949
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
949
+                    echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>';
950 950
 
951
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
951
+                    echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
952 952
                 }
953 953
 
954 954
                 /**
@@ -958,21 +958,21 @@  discard block
 block discarded – undo
958 958
                  *
959 959
                  * @since 1.0.0
960 960
                  */
961
-                do_action('geodir_settings_' . sanitize_title($value['id']));
961
+                do_action('geodir_settings_'.sanitize_title($value['id']));
962 962
                 break;
963 963
 
964 964
             case 'no_tabs':
965 965
 
966 966
                 echo '<div class="inner_content_tab_main">';
967
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
967
+                echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
968 968
 
969 969
                 break;
970 970
 
971 971
             case 'sectionstart':
972 972
                 if (isset($value['desc']) && $value['desc'])
973
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
973
+                    $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>';
974 974
                 if (isset($value['name']) && $value['name'])
975
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
975
+                    echo '<h3>'.$value['name'].$desc.'</h3>';
976 976
                 /**
977 977
                  * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
978 978
                  *
@@ -980,8 +980,8 @@  discard block
 block discarded – undo
980 980
                  *
981 981
                  * @since 1.0.0
982 982
                  */
983
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
984
-                echo '<table class="form-table">' . "\n\n";
983
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
984
+                echo '<table class="form-table">'."\n\n";
985 985
 
986 986
                 break;
987 987
             case 'sectionend':
@@ -992,7 +992,7 @@  discard block
 block discarded – undo
992 992
                  *
993 993
                  * @since 1.0.0
994 994
                  */
995
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
995
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
996 996
                 echo '</table>';
997 997
                 /**
998 998
                  * Called after a GeoDirectory settings sectionend is output in the GD settings page.
@@ -1001,7 +1001,7 @@  discard block
 block discarded – undo
1001 1001
                  *
1002 1002
                  * @since 1.0.0
1003 1003
                  */
1004
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
1004
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
1005 1005
                 break;
1006 1006
             case 'text':
1007 1007
                 ?>
@@ -1010,7 +1010,7 @@  discard block
 block discarded – undo
1010 1010
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1011 1011
                                            id="<?php echo esc_attr($value['id']); ?>"
1012 1012
                                            type="<?php echo esc_attr($value['type']); ?>"
1013
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1013
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1014 1014
                                            style=" <?php echo esc_attr($value['css']); ?>"
1015 1015
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1016 1016
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1027,14 +1027,14 @@  discard block
 block discarded – undo
1027 1027
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1028 1028
                                            id="<?php echo esc_attr($value['id']); ?>"
1029 1029
                                            type="<?php echo esc_attr($value['type']); ?>"
1030
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1030
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1031 1031
                                            style=" <?php echo esc_attr($value['css']); ?>"
1032 1032
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1033 1033
                                                echo esc_attr(stripslashes(get_option($value['id'])));
1034 1034
                                            } else {
1035 1035
                                                echo esc_attr($value['std']);
1036 1036
                                            } ?>"/>
1037
-                    <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
1037
+                    <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )', 'geodirectory'); ?>" ><?php _e('Generate API Key', 'geodirectory'); ?></a>
1038 1038
                     <span class="description"><?php echo $value['desc']; ?></span></td>
1039 1039
                 </tr><?php
1040 1040
                 break;
@@ -1046,7 +1046,7 @@  discard block
 block discarded – undo
1046 1046
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1047 1047
                                            id="<?php echo esc_attr($value['id']); ?>"
1048 1048
                                            type="<?php echo esc_attr($value['type']); ?>"
1049
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1049
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1050 1050
                                            style="<?php echo esc_attr($value['css']); ?>"
1051 1051
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1052 1052
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1092,17 +1092,17 @@  discard block
 block discarded – undo
1092 1092
                     <?php _e('Width', 'geodirectory'); ?> <input
1093 1093
                         name="<?php echo esc_attr($value['id']); ?>_width"
1094 1094
                         id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3"
1095
-                        value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1095
+                        value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1096 1096
 
1097 1097
                     <?php _e('Height', 'geodirectory'); ?> <input
1098 1098
                         name="<?php echo esc_attr($value['id']); ?>_height"
1099 1099
                         id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3"
1100
-                        value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1100
+                        value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1101 1101
 
1102 1102
                     <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
1103 1103
                             name="<?php echo esc_attr($value['id']); ?>_crop"
1104 1104
                             id="<?php echo esc_attr($value['id']); ?>_crop"
1105
-                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label>
1105
+                            type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label>
1106 1106
 
1107 1107
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1108 1108
                 </tr><?php
@@ -1152,7 +1152,7 @@  discard block
 block discarded – undo
1152 1152
                                             id="<?php echo esc_attr($value['id']); ?>"
1153 1153
                                             style="<?php echo esc_attr($value['css']); ?>"
1154 1154
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1155
-                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1155
+                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>"
1156 1156
                                             option-ajaxchosen="false">
1157 1157
                         <?php
1158 1158
                         foreach ($value['options'] as $key => $val) {
@@ -1162,7 +1162,7 @@  discard block
 block discarded – undo
1162 1162
                                 ?></optgroup><?php
1163 1163
                             } else {
1164 1164
                                 ?>
1165
-                                <option value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>>
1165
+                                <option value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>>
1166 1166
                                     <?php echo geodir_utf8_ucfirst($val) ?>
1167 1167
                                 </option>
1168 1168
                             <?php
@@ -1199,7 +1199,7 @@  discard block
 block discarded – undo
1199 1199
                 ?>
1200 1200
 
1201 1201
                 <tr valign="top">
1202
-                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1202
+                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
1203 1203
                     <td width="60%">
1204 1204
                         <select name="geodir_default_map_language" style="width:60%">
1205 1205
                             <?php
@@ -1281,7 +1281,7 @@  discard block
 block discarded – undo
1281 1281
 
1282 1282
                 <tr valign="top">
1283 1283
                     <th class="titledesc"
1284
-                        width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
1284
+                        width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
1285 1285
                     <td width="60%">
1286 1286
                         <select name="geodir_default_map_search_pt" style="width:60%">
1287 1287
                             <?php
@@ -1322,7 +1322,7 @@  discard block
 block discarded – undo
1322 1322
                         $cat_display = 'checkbox';
1323 1323
                         $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1324 1324
                         $gd_cats = get_option('geodir_exclude_cat_on_map');
1325
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1325
+                        $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
1326 1326
                         $count = 1;
1327 1327
                         ?>
1328 1328
                         <table width="70%" class="widefat">
@@ -1351,7 +1351,7 @@  discard block
 block discarded – undo
1351 1351
                                                                                            name="home_map_post_types[]"
1352 1352
                                                                                            id="<?php echo esc_attr($value['id']); ?>"
1353 1353
                                                                                            value="<?php echo $key; ?>"
1354
-                                                                                           class="map_post_type" <?php echo $checked;?> />
1354
+                                                                                           class="map_post_type" <?php echo $checked; ?> />
1355 1355
                                         <?php echo __($post_types_obj->labels->singular_name, 'geodirectory'); ?></td>
1356 1356
                                     <td width="40%">
1357 1357
                                         <div class="home_map_category" style="overflow:auto;width:200px;height:100px;"
@@ -1409,12 +1409,12 @@  discard block
 block discarded – undo
1409 1409
                 ?>
1410 1410
                 <fieldset>
1411 1411
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1412
-                    <label for="<?php echo $value['id'];?>">
1412
+                    <label for="<?php echo $value['id']; ?>">
1413 1413
                         <input name="<?php echo esc_attr($value['id']); ?>"
1414
-                               id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1414
+                               id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio"
1415 1415
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1416 1416
                             echo 'checked="checked"';
1417
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1417
+                        }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
1418 1418
                         <?php echo $value['desc']; ?></label><br>
1419 1419
                 </fieldset>
1420 1420
                 <?php
@@ -1434,9 +1434,9 @@  discard block
 block discarded – undo
1434 1434
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1435 1435
                 <td class="forminp">
1436 1436
                     <textarea
1437
-                        <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1437
+                        <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1438 1438
                         id="<?php echo esc_attr($value['id']); ?>"
1439
-                        <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1439
+                        <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1440 1440
                         style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span
1441 1441
                         class="description"><?php echo $value['desc'] ?></span>
1442 1442
 
@@ -1481,7 +1481,7 @@  discard block
 block discarded – undo
1481 1481
 					}
1482 1482
 				}
1483 1483
 				//
1484
-				$page_setting = (int)get_option($value['id']);
1484
+				$page_setting = (int) get_option($value['id']);
1485 1485
 
1486 1486
                 $args = array('name' => $value['id'],
1487 1487
                     'id' => $value['id'],
@@ -1498,7 +1498,7 @@  discard block
 block discarded – undo
1498 1498
                 <tr valign="top" class="single_select_page">
1499 1499
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1500 1500
                 <td class="forminp">
1501
-                    <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
1501
+                    <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
1502 1502
                     <span class="description"><?php echo $value['desc'] ?></span>
1503 1503
                 </td>
1504 1504
                 </tr><?php
@@ -1507,7 +1507,7 @@  discard block
 block discarded – undo
1507 1507
 				}
1508 1508
                 break;
1509 1509
             case 'single_select_country' :
1510
-                $country_setting = (string)get_option($value['id']);
1510
+                $country_setting = (string) get_option($value['id']);
1511 1511
                 if (strstr($country_setting, ':')) :
1512 1512
                     $country = current(explode(':', $country_setting));
1513 1513
                     $state = end(explode(':', $country_setting));
@@ -1530,7 +1530,7 @@  discard block
 block discarded – undo
1530 1530
             case 'multi_select_countries' :
1531 1531
                 $countries = $geodirectory->countries->countries;
1532 1532
                 asort($countries);
1533
-                $selections = (array)get_option($value['id']);
1533
+                $selections = (array) get_option($value['id']);
1534 1534
                 ?>
1535 1535
                 <tr valign="top">
1536 1536
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1540,7 +1540,7 @@  discard block
 block discarded – undo
1540 1540
                             title="Country" class="chosen_select">
1541 1541
                         <?php
1542 1542
                         if ($countries) foreach ($countries as $key => $val) :
1543
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1543
+                            echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>';
1544 1544
                         endforeach;
1545 1545
                         ?>
1546 1546
                     </select>
@@ -1552,7 +1552,7 @@  discard block
 block discarded – undo
1552 1552
                 break;
1553 1553
 
1554 1554
             case 'google_analytics' :
1555
-                $selections = (array)get_option($value['id']);
1555
+                $selections = (array) get_option($value['id']);
1556 1556
                     ?>
1557 1557
                     <tr valign="top">
1558 1558
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1563,30 +1563,30 @@  discard block
 block discarded – undo
1563 1563
 
1564 1564
                             $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1565 1565
                             $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1566
-                            $state = "&state=123";//any string
1567
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1566
+                            $state = "&state=123"; //any string
1567
+                            $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
1568 1568
                             $response_type = "&response_type=code";
1569 1569
                             $client_id = "&client_id=".get_option('geodir_ga_client_id');
1570 1570
                             $access_type = "&access_type=offline";
1571 1571
                             $approval_prompt = "&approval_prompt=force";
1572 1572
 
1573
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1573
+                            $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt;
1574 1574
 
1575 1575
 
1576 1576
                             if (get_option('geodir_ga_auth_token')) {
1577 1577
                                 ?>
1578 1578
                                 <span class="button-primary"
1579
-                                      onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1579
+                                      onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize'); ?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
1580 1580
                                 <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1581 1581
                             <?php
1582 1582
                                 global $gd_ga_errors;
1583
-                                if(!empty($gd_ga_errors)){
1583
+                                if (!empty($gd_ga_errors)) {
1584 1584
                                     print_r($gd_ga_errors);
1585 1585
                                 }
1586 1586
                             } else {
1587 1587
                                 ?>
1588 1588
                                 <span class="button-primary"
1589
-                                      onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1589
+                                      onclick="window.open('<?php echo  geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory'); ?></span>
1590 1590
                             <?php
1591 1591
                             }
1592 1592
                             ?>
@@ -1657,9 +1657,9 @@  discard block
 block discarded – undo
1657 1657
 
1658 1658
             <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
1659 1659
             jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
1660
-            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
1660
+            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
1661 1661
             jQuery('.gd-content-heading').hide();
1662
-            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
1662
+            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
1663 1663
             <?php } ?>
1664 1664
         });
1665 1665
     </script>
@@ -1745,7 +1745,7 @@  discard block
 block discarded – undo
1745 1745
     wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1746 1746
 
1747 1747
     if (geodir_get_featured_image($post_id, 'thumbnail')) {
1748
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1748
+        echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
1749 1749
         geodir_show_featured_image($post_id, 'thumbnail');
1750 1750
     }
1751 1751
 
@@ -1756,13 +1756,13 @@  discard block
 block discarded – undo
1756 1756
 
1757 1757
     <h5 class="form_title">
1758 1758
         <?php if ($image_limit != 0 && $image_limit == 1) {
1759
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1759
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
1760 1760
         } ?>
1761 1761
         <?php if ($image_limit != 0 && $image_limit > 1) {
1762
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1762
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
1763 1763
         } ?>
1764 1764
         <?php if ($image_limit == 0) {
1765
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1765
+            echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
1766 1766
         } ?>
1767 1767
     </h5>
1768 1768
 
@@ -1801,10 +1801,10 @@  discard block
 block discarded – undo
1801 1801
         <div
1802 1802
             class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
1803 1803
             id="<?php echo $id; ?>plupload-upload-ui">
1804
-            <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
1804
+            <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
1805 1805
             <input id="<?php echo $id; ?>plupload-browse-button" type="button"
1806 1806
                    value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
1807
-            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span>
1807
+            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span>
1808 1808
             <?php if ($width && $height): ?>
1809 1809
                 <span class="plupload-resize"></span>
1810 1810
                 <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span>
@@ -1816,7 +1816,7 @@  discard block
 block discarded – undo
1816 1816
              id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;">
1817 1817
         </div>
1818 1818
         <span
1819
-            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory');?></span>
1819
+            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory'); ?></span>
1820 1820
         <span id="<?php echo $id; ?>upload-error" style="display:none"></span>
1821 1821
     </div>
1822 1822
 
@@ -2026,9 +2026,9 @@  discard block
 block discarded – undo
2026 2026
     $plugin = 'avada-nag';
2027 2027
     $timestamp = 'avada-nag1234';
2028 2028
     $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');
2029
-    echo '<div id="' . $timestamp . '"  class="error">';
2030
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2031
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
2029
+    echo '<div id="'.$timestamp.'"  class="error">';
2030
+    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fa fa-times"></i></span>';
2031
+    echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
2032 2032
     echo "<p>$message</p>";
2033 2033
     echo "</div>";
2034 2034
 
@@ -2162,7 +2162,7 @@  discard block
 block discarded – undo
2162 2162
 		
2163 2163
 		// Don't allow same slug url for listing and location
2164 2164
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2165
-			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2165
+			$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
2166 2166
         	wp_redirect($redirect_url);
2167 2167
 			exit;
2168 2168
 		}
@@ -2174,7 +2174,7 @@  discard block
 block discarded – undo
2174 2174
 			$default_language = $sitepress->get_default_language();
2175 2175
 			
2176 2176
 			if ($current_language != 'all' && $current_language != $default_language) {
2177
-				$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
2177
+				$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
2178 2178
 				wp_redirect($redirect_url);
2179 2179
 				exit;
2180 2180
 			}
@@ -2195,11 +2195,11 @@  discard block
 block discarded – undo
2195 2195
 function geodir_hide_admin_preview_button() {
2196 2196
     global $post_type;
2197 2197
     $post_types = geodir_get_posttypes();
2198
-    if(in_array($post_type, $post_types))
2198
+    if (in_array($post_type, $post_types))
2199 2199
         echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2200 2200
 }
2201
-add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2202
-add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
2201
+add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
2202
+add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
2203 2203
 
2204 2204
 /**
2205 2205
  * Add the tab in left sidebar menu fro import & export page.
@@ -2209,8 +2209,8 @@  discard block
 block discarded – undo
2209 2209
  *
2210 2210
  * @return array Array of tab data.
2211 2211
  */
2212
-function geodir_import_export_tab( $tabs ) {
2213
-	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2212
+function geodir_import_export_tab($tabs) {
2213
+	$tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
2214 2214
     return $tabs;
2215 2215
 }
2216 2216
 
@@ -2224,8 +2224,8 @@  discard block
 block discarded – undo
2224 2224
  * @return string Html content.
2225 2225
  */
2226 2226
 function geodir_import_export_page() {
2227
-	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2228
-	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2227
+	$nonce = wp_create_nonce('geodir_import_export_nonce');
2228
+	$gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv';
2229 2229
     /**
2230 2230
      * Filter sample category data csv file url.
2231 2231
      *
@@ -2234,9 +2234,9 @@  discard block
 block discarded – undo
2234 2234
      *
2235 2235
      * @param string $gd_cats_sample_csv Sample category data csv file url.
2236 2236
      */
2237
-	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2237
+	$gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
2238 2238
 	
2239
-	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2239
+	$gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv';
2240 2240
     /**
2241 2241
      * Filter sample post data csv file url.
2242 2242
      *
@@ -2245,15 +2245,15 @@  discard block
 block discarded – undo
2245 2245
      *
2246 2246
      * @param string $gd_posts_sample_csv Sample post data csv file url.
2247 2247
      */
2248
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2248
+    $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
2249 2249
 	
2250
-	$gd_posttypes = geodir_get_posttypes( 'array' );
2250
+	$gd_posttypes = geodir_get_posttypes('array');
2251 2251
 	
2252 2252
 	$gd_posttypes_option = '';
2253
-	foreach ( $gd_posttypes as $gd_posttype => $row ) {
2254
-		$gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>';
2253
+	foreach ($gd_posttypes as $gd_posttype => $row) {
2254
+		$gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>';
2255 2255
 	}
2256
-	wp_enqueue_script( 'jquery-ui-progressbar' );
2256
+	wp_enqueue_script('jquery-ui-progressbar');
2257 2257
 	
2258 2258
 	$gd_chunksize_options = array();
2259 2259
 	$gd_chunksize_options[100] = 100;
@@ -2275,50 +2275,50 @@  discard block
 block discarded – undo
2275 2275
      *
2276 2276
      * @param string $gd_chunksize_options Entries options.
2277 2277
      */
2278
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2278
+    $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
2279 2279
 	
2280 2280
 	$gd_chunksize_option = '';
2281 2281
 	foreach ($gd_chunksize_options as $value => $title) {
2282
-		$gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>';
2282
+		$gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>';
2283 2283
 	}
2284 2284
 	
2285 2285
 	$uploads = wp_upload_dir();
2286
-	$upload_dir = wp_sprintf( CSV_TRANSFER_IMG_FOLDER, str_replace( ABSPATH, '', $uploads['path'] ) );
2286
+	$upload_dir = wp_sprintf(CSV_TRANSFER_IMG_FOLDER, str_replace(ABSPATH, '', $uploads['path']));
2287 2287
 ?>
2288 2288
 </form>
2289 2289
 <div class="inner_content_tab_main gd-import-export">
2290
-  <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3>
2291
-  <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span>
2290
+  <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
2291
+  <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
2292 2292
   <div class="gd-content-heading">
2293 2293
 
2294 2294
   <?php
2295 2295
     ini_set('max_execution_time', 999999);
2296
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2296
+    $ini_max_execution_time_check = @ini_get('max_execution_time');
2297 2297
     ini_restore('max_execution_time');
2298 2298
 
2299
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2299
+    if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
2300 2300
         ?>
2301 2301
 	<div id="gd_ie_reqs" class="metabox-holder">
2302 2302
       <div class="meta-box-sortables ui-sortable">
2303 2303
         <div class="postbox">
2304
-          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3>
2304
+          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
2305 2305
           <div class="inside">
2306
-            <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span>
2306
+            <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
2307 2307
 			<table class="form-table">
2308 2308
 				<thead>
2309 2309
 				  <tr>
2310
-				  	<th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th>
2310
+				  	<th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
2311 2311
 				  </tr>
2312 2312
 				</thead>
2313 2313
 				<tbody>
2314 2314
 				  <tr>
2315
-				  	<td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td>
2315
+				  	<td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
2316 2316
 				  </tr>
2317 2317
 				  <tr>
2318
-				  	<td>max_execution_time</td><td><?php  echo @ini_get( 'max_execution_time' );?></td><td>3000</td>
2318
+				  	<td>max_execution_time</td><td><?php  echo @ini_get('max_execution_time'); ?></td><td>3000</td>
2319 2319
 				  </tr>
2320 2320
 				  <tr>
2321
-				  	<td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td>
2321
+				  	<td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
2322 2322
 				  </tr>
2323 2323
 				</tbody>
2324 2324
 		    </table>
@@ -2330,21 +2330,21 @@  discard block
 block discarded – undo
2330 2330
 	<div id="gd_ie_imposts" class="metabox-holder">
2331 2331
       <div class="meta-box-sortables ui-sortable">
2332 2332
         <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox">
2333
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2334
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3>
2333
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2334
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
2335 2335
           <div class="inside">
2336 2336
             <table class="form-table">
2337 2337
 				<tbody>
2338 2338
 				  <tr>
2339 2339
 					<td class="gd-imex-box">
2340 2340
 						<div class="gd-im-choices">
2341
-						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2342
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2341
+						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2342
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2343 2343
 						</div>
2344 2344
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui">
2345 2345
 							<input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
2346
-							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2347
-						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" />
2346
+							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2347
+						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" />
2348 2348
 						<input type="hidden" id="gd_im_post_allowed_types" data-exts=".csv" value="csv" />
2349 2349
 							<?php
2350 2350
 							/**
@@ -2354,7 +2354,7 @@  discard block
 block discarded – undo
2354 2354
 							 */
2355 2355
 							do_action('geodir_sample_csv_download_link');
2356 2356
 							?>
2357
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span>
2357
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
2358 2358
 							<div class="filelist"></div>
2359 2359
 						</div>
2360 2360
 						<span id="gd_im_postupload-error" style="display:none"></span>
@@ -2372,7 +2372,7 @@  discard block
 block discarded – undo
2372 2372
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2373 2373
 						</div>
2374 2374
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2375
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2375
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2376 2376
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2377 2377
 									id="gd-import-perc">0%</font> )
2378 2378
 								<div class="gd-fileprogress"></div>
@@ -2384,10 +2384,10 @@  discard block
 block discarded – undo
2384 2384
                     	<div class="gd-imex-btns" style="display:none;">
2385 2385
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2386 2386
                         	<input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2387
-                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2388
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2387
+                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2388
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2389 2389
 							<div id="gd_process_data" style="display:none">
2390
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2390
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2391 2391
 							</div>
2392 2392
 						</div>
2393 2393
 					</td>
@@ -2401,30 +2401,30 @@  discard block
 block discarded – undo
2401 2401
 	<div id="gd_ie_excategs" class="metabox-holder">
2402 2402
 	  <div class="meta-box-sortables ui-sortable">
2403 2403
 		<div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox">
2404
-		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2405
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3>
2404
+		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2405
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
2406 2406
 		  <div class="inside">
2407 2407
 			<table class="form-table">
2408 2408
 			  <tbody>
2409 2409
 				<tr>
2410 2410
 				  <td class="fld"><label for="gd_post_type">
2411
-					<?php _e( 'Post Type:', 'geodirectory' );?>
2411
+					<?php _e('Post Type:', 'geodirectory'); ?>
2412 2412
 					</label></td>
2413 2413
 				  <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px">
2414
-					  <?php echo $gd_posttypes_option;?>
2414
+					  <?php echo $gd_posttypes_option; ?>
2415 2415
 					</select></td>
2416 2416
 				</tr>
2417 2417
 				<tr>
2418
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2419
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2418
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2419
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2420 2420
 				</tr>
2421 2421
                 <tr class="gd-imex-dates">
2422
-					<td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td>
2423
-					<td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2422
+					<td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
2423
+					<td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2424 2424
 				</tr>
2425 2425
 				<tr>
2426 2426
 				  <td class="fld" style="vertical-align:top"><label>
2427
-					<?php _e( 'Progress:', 'geodirectory' );?>
2427
+					<?php _e('Progress:', 'geodirectory'); ?>
2428 2428
 					</label></td>
2429 2429
 				  <td><div id='gd_progressbar_box'>
2430 2430
 					  <div id="gd_progressbar" class="gd_progressbar">
@@ -2432,13 +2432,13 @@  discard block
 block discarded – undo
2432 2432
 					  </div>
2433 2433
 					</div>
2434 2434
 					<p style="display:inline-block">
2435
-					  <?php _e( 'Elapsed Time:', 'geodirectory' );?>
2435
+					  <?php _e('Elapsed Time:', 'geodirectory'); ?>
2436 2436
 					</p>
2437 2437
 					  
2438 2438
 					<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2439 2439
 				</tr>
2440 2440
 				<tr class="gd-ie-actions">
2441
-				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2441
+				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2442 2442
 				  </td>
2443 2443
 				  <td id="gd_ie_ex_files" class="gd-ie-files"></td>
2444 2444
 				</tr>
@@ -2451,21 +2451,21 @@  discard block
 block discarded – undo
2451 2451
 	<div id="gd_ie_imcategs" class="metabox-holder">
2452 2452
       <div class="meta-box-sortables ui-sortable">
2453 2453
         <div id="gd_ie_imcats" class="postbox gd-hndle-pbox">
2454
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2455
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3>
2454
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2455
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
2456 2456
           <div class="inside">
2457 2457
             <table class="form-table">
2458 2458
 				<tbody>
2459 2459
 				  <tr>
2460 2460
 					<td class="gd-imex-box">
2461 2461
 						<div class="gd-im-choices">
2462
-						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2463
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2462
+						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2463
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2464 2464
 						</div>
2465 2465
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui">
2466 2466
 							<input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
2467
-							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2468
-						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" />
2467
+							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2468
+						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" />
2469 2469
 						<input type="hidden" id="gd_im_cat_allowed_types" data-exts=".csv" value="csv" />
2470 2470
 						<?php
2471 2471
 						/**
@@ -2476,7 +2476,7 @@  discard block
 block discarded – undo
2476 2476
 						 */
2477 2477
 						do_action('geodir_sample_cats_csv_download_link');
2478 2478
 						?>
2479
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span>
2479
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
2480 2480
 							<div class="filelist"></div>
2481 2481
 						</div>
2482 2482
 						<span id="gd_im_catupload-error" style="display:none"></span>
@@ -2493,7 +2493,7 @@  discard block
 block discarded – undo
2493 2493
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2494 2494
 						</div>
2495 2495
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2496
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2496
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2497 2497
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2498 2498
 									id="gd-import-perc">0%</font> )
2499 2499
 								<div class="gd-fileprogress"></div>
@@ -2505,10 +2505,10 @@  discard block
 block discarded – undo
2505 2505
                     	<div class="gd-imex-btns" style="display:none;">
2506 2506
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2507 2507
                         	<input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2508
-                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2509
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2508
+                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2509
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2510 2510
 							<div id="gd_process_data" style="display:none">
2511
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2511
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2512 2512
 							</div>
2513 2513
 						</div>
2514 2514
 					</td>
@@ -2522,26 +2522,26 @@  discard block
 block discarded – undo
2522 2522
 	<div id="gd_ie_excategs" class="metabox-holder">
2523 2523
       <div class="meta-box-sortables ui-sortable">
2524 2524
         <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox">
2525
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2526
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3>
2525
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2526
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
2527 2527
           <div class="inside">
2528 2528
             <table class="form-table">
2529 2529
 				<tbody>
2530 2530
 				  <tr>
2531
-					<td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td>
2532
-					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td>
2531
+					<td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
2532
+					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td>
2533 2533
 				  </tr>
2534 2534
 				   <tr>
2535
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2536
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2535
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2536
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2537 2537
 				  </tr>
2538 2538
 				  <tr>
2539
-					<td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td>
2540
-					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2539
+					<td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
2540
+					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2541 2541
 				  </tr>
2542 2542
 				  <tr class="gd-ie-actions">
2543 2543
 					<td style="vertical-align:top">
2544
-						<input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2544
+						<input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2545 2545
 					</td>
2546 2546
 					<td id="gd_ie_ex_files" class="gd-ie-files"></td>
2547 2547
 				  </tr>
@@ -2563,7 +2563,7 @@  discard block
 block discarded – undo
2563 2563
      * @param array $gd_chunksize_options File chunk size options.
2564 2564
      * @param string $nonce Wordpress security token for GD import & export.
2565 2565
 	 */
2566
-	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2566
+	do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
2567 2567
 	?>
2568 2568
   </div>
2569 2569
 </div>
@@ -2582,7 +2582,7 @@  discard block
 block discarded – undo
2582 2582
         jQuery.ajax({
2583 2583
             url: ajaxurl,
2584 2584
             type: "POST",
2585
-            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>',
2585
+            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>',
2586 2586
             dataType: 'json',
2587 2587
             cache: false,
2588 2588
             success: function(data) {
@@ -2634,7 +2634,7 @@  discard block
 block discarded – undo
2634 2634
 
2635 2635
         jQuery(cont).find('.filelist .file').remove();
2636 2636
         
2637
-        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
2637
+        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
2638 2638
         jQuery('#gd-import-msg', cont).show();
2639 2639
         
2640 2640
         return false;
@@ -2693,7 +2693,7 @@  discard block
 block discarded – undo
2693 2693
     jQuery.ajax({
2694 2694
         url: ajaxurl,
2695 2695
         type: "POST",
2696
-        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>',
2696
+        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>',
2697 2697
         dataType : 'json',
2698 2698
         cache: false,
2699 2699
         success: function (data) {
@@ -2882,27 +2882,27 @@  discard block
 block discarded – undo
2882 2882
 
2883 2883
     var gdMsg = '<p></p>';
2884 2884
     if ( processed > 0 ) {
2885
-        var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>';
2885
+        var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
2886 2886
         msgParse = msgParse.replace("%s", processed);
2887 2887
         gdMsg += msgParse;
2888 2888
     }
2889 2889
 
2890 2890
     if ( updated > 0 ) {
2891
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2891
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
2892 2892
         msgParse = msgParse.replace("%s", updated);
2893 2893
         msgParse = msgParse.replace("%d", processed);
2894 2894
         gdMsg += msgParse;
2895 2895
     }
2896 2896
 
2897 2897
     if ( created > 0 ) {
2898
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2898
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
2899 2899
         msgParse = msgParse.replace("%s", created);
2900 2900
         msgParse = msgParse.replace("%d", processed);
2901 2901
         gdMsg += msgParse;
2902 2902
     }
2903 2903
 
2904 2904
     if ( skipped > 0 ) {
2905
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2905
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
2906 2906
         msgParse = msgParse.replace("%s", skipped);
2907 2907
         msgParse = msgParse.replace("%d", processed);
2908 2908
         gdMsg += msgParse;
@@ -2912,17 +2912,17 @@  discard block
 block discarded – undo
2912 2912
         if (type=='loc') {
2913 2913
             invalid_addr = invalid;
2914 2914
         }
2915
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>';
2915
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
2916 2916
         msgParse = msgParse.replace("%s", invalid_addr);
2917 2917
         msgParse = msgParse.replace("%d", total);
2918 2918
         gdMsg += msgParse;
2919 2919
     }
2920 2920
 
2921 2921
     if (invalid > 0 && type!='loc') {
2922
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2922
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
2923 2923
         
2924 2924
         if (type=='hood') {
2925
-            msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>';
2925
+            msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
2926 2926
         }
2927 2927
         msgParse = msgParse.replace("%s", invalid);
2928 2928
         msgParse = msgParse.replace("%d", total);
@@ -2930,7 +2930,7 @@  discard block
 block discarded – undo
2930 2930
     }
2931 2931
 
2932 2932
     if (images > 0) {
2933
-        gdMsg += '<p><?php echo addslashes( $upload_dir );?></p>';
2933
+        gdMsg += '<p><?php echo addslashes($upload_dir); ?></p>';
2934 2934
     }
2935 2935
     gdMsg += '<p></p>';
2936 2936
     jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
@@ -3094,9 +3094,9 @@  discard block
 block discarded – undo
3094 3094
             if (typeof filters !== 'undefined' && filters && doFilter) {
3095 3095
                 getTotal = true;
3096 3096
                 attach += '&_c=1';
3097
-                gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>');
3097
+                gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
3098 3098
             } else {
3099
-                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3099
+                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3100 3100
             }
3101 3101
             jQuery(el).find('#gd_timer').text('00:00:01');
3102 3102
             jQuery('#gd_ie_ex_files', el).html('');
@@ -3105,7 +3105,7 @@  discard block
 block discarded – undo
3105 3105
         jQuery.ajax({
3106 3106
             url: ajaxurl,
3107 3107
             type: "POST",
3108
-            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach,
3108
+            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach,
3109 3109
             dataType : 'json',
3110 3110
             cache: false,
3111 3111
             beforeSend: function (jqXHR, settings) {},
@@ -3130,11 +3130,11 @@  discard block
 block discarded – undo
3130 3130
                         } else {
3131 3131
                             if (pages < page || pages == page) {
3132 3132
                                 window.clearInterval(timer_posts);
3133
-                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3133
+                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3134 3134
                             } else {
3135 3135
                                 var percentage = Math.round(((page * chunk_size) / total_posts) * 100);
3136 3136
                                 percentage = percentage > 100 ? 100 : percentage;
3137
-                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3137
+                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3138 3138
                             }
3139 3139
                             if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3140 3140
                                 var obj_files = data.files;
@@ -3165,7 +3165,7 @@  discard block
 block discarded – undo
3165 3165
 
3166 3166
     function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
3167 3167
         if (page < 2) {
3168
-            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3168
+            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3169 3169
             jQuery(el).find('#gd_timer').text('00:00:01');
3170 3170
             jQuery('#gd_ie_ex_files', el).html('');
3171 3171
         }
@@ -3173,7 +3173,7 @@  discard block
 block discarded – undo
3173 3173
         jQuery.ajax({
3174 3174
             url: ajaxurl,
3175 3175
             type: "POST",
3176
-            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page,
3176
+            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page,
3177 3177
             dataType : 'json',
3178 3178
             cache: false,
3179 3179
             beforeSend: function (jqXHR, settings) {},
@@ -3187,11 +3187,11 @@  discard block
 block discarded – undo
3187 3187
                     } else {
3188 3188
                         if (pages < page || pages == page) {
3189 3189
                             window.clearInterval(timer_cats);
3190
-                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3190
+                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3191 3191
                         } else {
3192 3192
                             var percentage = Math.round(((page * chunk_size) / total_cats) * 100);
3193 3193
                             percentage = percentage > 100 ? 100 : percentage;
3194
-                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
3194
+                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
3195 3195
                         }
3196 3196
                         if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3197 3197
                             var obj_files = data.files;
@@ -3248,13 +3248,13 @@  discard block
 block discarded – undo
3248 3248
 function geodir_init_filesystem()
3249 3249
 {
3250 3250
 
3251
-    if(!function_exists('get_filesystem_method')){
3251
+    if (!function_exists('get_filesystem_method')) {
3252 3252
         require_once(ABSPATH."/wp-admin/includes/file.php");
3253 3253
     }
3254 3254
     $access_type = get_filesystem_method();
3255 3255
     if ($access_type === 'direct') {
3256 3256
         /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3257
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3257
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3258 3258
 
3259 3259
         /* initialize the API */
3260 3260
         if (!WP_Filesystem($creds)) {
@@ -3267,7 +3267,7 @@  discard block
 block discarded – undo
3267 3267
         return $wp_filesystem;
3268 3268
         /* do our file manipulations below */
3269 3269
     } elseif (defined('FTP_USER')) {
3270
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3270
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3271 3271
 
3272 3272
         /* initialize the API */
3273 3273
         if (!WP_Filesystem($creds)) {
@@ -3302,7 +3302,7 @@  discard block
 block discarded – undo
3302 3302
  * @package GeoDirectory
3303 3303
  */
3304 3304
 function geodir_filesystem_notice()
3305
-{   if ( defined( 'DOING_AJAX' ) ){return;}
3305
+{   if (defined('DOING_AJAX')) {return; }
3306 3306
     $access_type = get_filesystem_method();
3307 3307
     if ($access_type === 'direct') {
3308 3308
     } elseif (!defined('FTP_USER')) {
@@ -3343,64 +3343,64 @@  discard block
 block discarded – undo
3343 3343
     // try to set higher limits for import
3344 3344
     $max_input_time = ini_get('max_input_time');
3345 3345
     $max_execution_time = ini_get('max_execution_time');
3346
-    $memory_limit= ini_get('memory_limit');
3346
+    $memory_limit = ini_get('memory_limit');
3347 3347
 
3348
-    if(!$max_input_time || $max_input_time<3000){
3348
+    if (!$max_input_time || $max_input_time < 3000) {
3349 3349
         ini_set('max_input_time', 3000);
3350 3350
     }
3351 3351
 
3352
-    if(!$max_execution_time || $max_execution_time<3000){
3352
+    if (!$max_execution_time || $max_execution_time < 3000) {
3353 3353
         ini_set('max_execution_time', 3000);
3354 3354
     }
3355 3355
 
3356
-    if($memory_limit && str_replace('M','',$memory_limit)){
3357
-        if(str_replace('M','',$memory_limit)<256){
3356
+    if ($memory_limit && str_replace('M', '', $memory_limit)) {
3357
+        if (str_replace('M', '', $memory_limit) < 256) {
3358 3358
             ini_set('memory_limit', '256M');
3359 3359
         }
3360 3360
     }
3361 3361
 
3362 3362
     $json = array();
3363 3363
 
3364
-    if ( !current_user_can( 'manage_options' ) ) {
3365
-        wp_send_json( $json );
3364
+    if (!current_user_can('manage_options')) {
3365
+        wp_send_json($json);
3366 3366
     }
3367 3367
 
3368
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3369
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3370
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3368
+    $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL;
3369
+    $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL;
3370
+    $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false;
3371 3371
 
3372
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3373
-        wp_send_json( $json );
3372
+    if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
3373
+        wp_send_json($json);
3374 3374
     }
3375 3375
 
3376
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3377
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3376
+    $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL;
3377
+    $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL;
3378 3378
     $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3379
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3379
+    $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1;
3380 3380
 
3381 3381
     $wp_filesystem = geodir_init_filesystem();
3382 3382
     if (!$wp_filesystem) {
3383
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3384
-        wp_send_json( $json );
3383
+        $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
3384
+        wp_send_json($json);
3385 3385
     }
3386 3386
 
3387 3387
     if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3388
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3389
-        wp_send_json( $json );
3388
+        $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
3389
+        wp_send_json($json);
3390 3390
     }
3391 3391
 
3392
-    $csv_file_dir = geodir_path_import_export( false );
3393
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3394
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3395
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3396
-            wp_send_json( $json );
3392
+    $csv_file_dir = geodir_path_import_export(false);
3393
+    if (!$wp_filesystem->is_dir($csv_file_dir)) {
3394
+        if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
3395
+            $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
3396
+            wp_send_json($json);
3397 3397
         }
3398 3398
     }
3399 3399
     
3400 3400
     $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3401 3401
     $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3402 3402
 
3403
-    switch ( $task ) {
3403
+    switch ($task) {
3404 3404
         case 'export_posts': {
3405 3405
             // WPML
3406 3406
             $is_wpml = geodir_is_wpml();
@@ -3411,36 +3411,36 @@  discard block
 block discarded – undo
3411 3411
                 $sitepress->switch_lang('all', true);
3412 3412
             }
3413 3413
             // WPML
3414
-            if ( $post_type == 'gd_event' ) {
3415
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3414
+            if ($post_type == 'gd_event') {
3415
+                add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
3416 3416
             }
3417
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3417
+            $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
3418 3418
             
3419
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3420
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3421
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3419
+            $file_name = $post_type.'_'.date('dmyHi');
3420
+            if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
3421
+                $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
3422 3422
             }
3423
-            $posts_count = geodir_get_posts_count( $post_type );
3424
-            $file_url_base = geodir_path_import_export() . '/';
3425
-            $file_url = $file_url_base . $file_name . '.csv';
3426
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3427
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3423
+            $posts_count = geodir_get_posts_count($post_type);
3424
+            $file_url_base = geodir_path_import_export().'/';
3425
+            $file_url = $file_url_base.$file_name.'.csv';
3426
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3427
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv';
3428 3428
             
3429 3429
             $chunk_file_paths = array();
3430 3430
 
3431
-            if ( isset( $_REQUEST['_c'] ) ) {
3431
+            if (isset($_REQUEST['_c'])) {
3432 3432
                 $json['total'] = $posts_count;
3433 3433
                 // WPML
3434 3434
                 if ($is_wpml) {
3435 3435
                     $sitepress->switch_lang($active_lang, true);
3436 3436
                 }
3437 3437
                 // WPML
3438
-                wp_send_json( $json );
3438
+                wp_send_json($json);
3439 3439
                 gd_die();
3440
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3441
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3442
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3443
-                $percentage = min( $percentage, 100 );
3440
+            } else if (isset($_REQUEST['_st'])) {
3441
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3442
+                $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0;
3443
+                $percentage = min($percentage, 100);
3444 3444
                 
3445 3445
                 $json['percentage'] = $percentage;
3446 3446
                 // WPML
@@ -3448,45 +3448,45 @@  discard block
 block discarded – undo
3448 3448
                     $sitepress->switch_lang($active_lang, true);
3449 3449
                 }
3450 3450
                 // WPML
3451
-                wp_send_json( $json );
3451
+                wp_send_json($json);
3452 3452
                 gd_die();
3453 3453
             } else {
3454
-                if ( !$posts_count > 0 ) {
3455
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3454
+                if (!$posts_count > 0) {
3455
+                    $json['error'] = __('No records to export.', 'geodirectory');
3456 3456
                 } else {
3457 3457
                     $total_posts = $posts_count;
3458 3458
                     if ($chunk_per_page > $total_posts) {
3459 3459
                         $chunk_per_page = $total_posts;
3460 3460
                     }
3461
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3461
+                    $chunk_total_pages = ceil($total_posts / $chunk_per_page);
3462 3462
                     
3463 3463
                     $j = $chunk_page_no;
3464
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3464
+                    $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j);
3465 3465
                     
3466 3466
                     $per_page = 500;
3467 3467
                     if ($per_page > $chunk_per_page) {
3468 3468
                         $per_page = $chunk_per_page;
3469 3469
                     }
3470
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3470
+                    $total_pages = ceil($chunk_per_page / $per_page);
3471 3471
                     
3472
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3473
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3472
+                    for ($i = 0; $i <= $total_pages; $i++) {
3473
+                        $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page);
3474 3474
                         
3475 3475
                         $clear = $i == 0 ? true : false;
3476
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3476
+                        geodir_save_csv_data($file_path_temp, $save_posts, $clear);
3477 3477
                     }
3478 3478
                         
3479
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3480
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3481
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3482
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3483
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3479
+                    if ($wp_filesystem->exists($file_path_temp)) {
3480
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3481
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3482
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3483
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3484 3484
                         
3485
-                        $file_url = $file_url_base . $chunk_file_name;
3486
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3485
+                        $file_url = $file_url_base.$chunk_file_name;
3486
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3487 3487
                     }
3488 3488
                     
3489
-                    if ( !empty($chunk_file_paths) ) {
3489
+                    if (!empty($chunk_file_paths)) {
3490 3490
                         $json['total'] = $posts_count;
3491 3491
                         $json['files'] = $chunk_file_paths;
3492 3492
                     } else {
@@ -3494,7 +3494,7 @@  discard block
 block discarded – undo
3494 3494
                             $json['total'] = $posts_count;
3495 3495
                             $json['files'] = array();
3496 3496
                         } else {
3497
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3497
+                            $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3498 3498
                         }
3499 3499
                     }
3500 3500
                 }
@@ -3503,7 +3503,7 @@  discard block
 block discarded – undo
3503 3503
                     $sitepress->switch_lang($active_lang, true);
3504 3504
                 }
3505 3505
                 // WPML
3506
-                wp_send_json( $json );
3506
+                wp_send_json($json);
3507 3507
             }
3508 3508
         }
3509 3509
         break;
@@ -3517,20 +3517,20 @@  discard block
 block discarded – undo
3517 3517
                 $sitepress->switch_lang('all', true);
3518 3518
             }
3519 3519
             // WPML
3520
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3520
+            $file_name = $post_type.'category_'.date('dmyHi');
3521 3521
             
3522
-            $terms_count = geodir_get_terms_count( $post_type );
3523
-            $file_url_base = geodir_path_import_export() . '/';
3524
-            $file_url = $file_url_base . $file_name . '.csv';
3525
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3526
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3522
+            $terms_count = geodir_get_terms_count($post_type);
3523
+            $file_url_base = geodir_path_import_export().'/';
3524
+            $file_url = $file_url_base.$file_name.'.csv';
3525
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3526
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv';
3527 3527
             
3528 3528
             $chunk_file_paths = array();
3529 3529
             
3530
-            if ( isset( $_REQUEST['_st'] ) ) {
3531
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3532
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3533
-                $percentage = min( $percentage, 100 );
3530
+            if (isset($_REQUEST['_st'])) {
3531
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3532
+                $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0;
3533
+                $percentage = min($percentage, 100);
3534 3534
                 
3535 3535
                 $json['percentage'] = $percentage;
3536 3536
                 // WPML
@@ -3538,48 +3538,48 @@  discard block
 block discarded – undo
3538 3538
                     $sitepress->switch_lang($active_lang, true);
3539 3539
                 }
3540 3540
                 // WPML
3541
-                wp_send_json( $json );
3541
+                wp_send_json($json);
3542 3542
             } else {
3543
-                if ( !$terms_count > 0 ) {
3544
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3543
+                if (!$terms_count > 0) {
3544
+                    $json['error'] = __('No records to export.', 'geodirectory');
3545 3545
                 } else {
3546 3546
                     $total_terms = $terms_count;
3547 3547
                     if ($chunk_per_page > $terms_count) {
3548 3548
                         $chunk_per_page = $terms_count;
3549 3549
                     }
3550
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3550
+                    $chunk_total_pages = ceil($total_terms / $chunk_per_page);
3551 3551
                     
3552 3552
                     $j = $chunk_page_no;
3553
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3553
+                    $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j);
3554 3554
                     
3555 3555
                     $per_page = 500;
3556 3556
                     if ($per_page > $chunk_per_page) {
3557 3557
                         $per_page = $chunk_per_page;
3558 3558
                     }
3559
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3559
+                    $total_pages = ceil($chunk_per_page / $per_page);
3560 3560
                     
3561
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3562
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3561
+                    for ($i = 0; $i <= $total_pages; $i++) {
3562
+                        $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page);
3563 3563
                         
3564 3564
                         $clear = $i == 0 ? true : false;
3565
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3565
+                        geodir_save_csv_data($file_path_temp, $save_terms, $clear);
3566 3566
                     }
3567 3567
                     
3568
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3569
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3570
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3571
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3572
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3568
+                    if ($wp_filesystem->exists($file_path_temp)) {
3569
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3570
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3571
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3572
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3573 3573
                         
3574
-                        $file_url = $file_url_base . $chunk_file_name;
3575
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3574
+                        $file_url = $file_url_base.$chunk_file_name;
3575
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3576 3576
                     }
3577 3577
                     
3578
-                    if ( !empty($chunk_file_paths) ) {
3578
+                    if (!empty($chunk_file_paths)) {
3579 3579
                         $json['total'] = $terms_count;
3580 3580
                         $json['files'] = $chunk_file_paths;
3581 3581
                     } else {
3582
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3582
+                        $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3583 3583
                     }
3584 3584
                 }
3585 3585
                 // WPML
@@ -3587,127 +3587,127 @@  discard block
 block discarded – undo
3587 3587
                     $sitepress->switch_lang($active_lang, true);
3588 3588
                 }
3589 3589
                 // WPML
3590
-                wp_send_json( $json );
3590
+                wp_send_json($json);
3591 3591
             }
3592 3592
         }
3593 3593
         break;
3594 3594
         case 'export_locations': {
3595
-            $file_url_base = geodir_path_import_export() . '/';
3596
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3597
-            $file_url = $file_url_base . $file_name . '.csv';
3598
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3599
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3595
+            $file_url_base = geodir_path_import_export().'/';
3596
+            $file_name = 'gd_locations_'.date('dmyHi');
3597
+            $file_url = $file_url_base.$file_name.'.csv';
3598
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3599
+            $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv';
3600 3600
             
3601
-            $items_count = (int)geodir_location_imex_count_locations();
3601
+            $items_count = (int) geodir_location_imex_count_locations();
3602 3602
             
3603
-            if ( isset( $_REQUEST['_st'] ) ) {
3604
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3605
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3606
-                $percentage = min( $percentage, 100 );
3603
+            if (isset($_REQUEST['_st'])) {
3604
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3605
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3606
+                $percentage = min($percentage, 100);
3607 3607
                 
3608 3608
                 $json['percentage'] = $percentage;
3609
-                wp_send_json( $json );
3609
+                wp_send_json($json);
3610 3610
             } else {
3611 3611
                 $chunk_file_paths = array();
3612 3612
                 
3613
-                if ( !$items_count > 0 ) {
3614
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3613
+                if (!$items_count > 0) {
3614
+                    $json['error'] = __('No records to export.', 'geodirectory');
3615 3615
                 } else {
3616
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3617
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3616
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3617
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3618 3618
                     
3619 3619
                     $j = $chunk_page_no;
3620
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3620
+                    $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j);
3621 3621
                     
3622 3622
                     $per_page = 500;
3623
-                    $per_page = min( $per_page, $chunk_per_page );
3624
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3623
+                    $per_page = min($per_page, $chunk_per_page);
3624
+                    $total_pages = ceil($chunk_per_page / $per_page);
3625 3625
                     
3626
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3627
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3626
+                    for ($i = 0; $i <= $total_pages; $i++) {
3627
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3628 3628
                         
3629 3629
                         $clear = $i == 0 ? true : false;
3630
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3630
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3631 3631
                     }
3632 3632
                     
3633
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3634
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3635
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3636
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3637
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3633
+                    if ($wp_filesystem->exists($file_path_temp)) {
3634
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3635
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3636
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3637
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3638 3638
                         
3639
-                        $file_url = $file_url_base . $chunk_file_name;
3640
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3639
+                        $file_url = $file_url_base.$chunk_file_name;
3640
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3641 3641
                     }
3642 3642
                     
3643
-                    if ( !empty($chunk_file_paths) ) {
3643
+                    if (!empty($chunk_file_paths)) {
3644 3644
                         $json['total'] = $items_count;
3645 3645
                         $json['files'] = $chunk_file_paths;
3646 3646
                     } else {
3647
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3647
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3648 3648
                     }
3649 3649
                 }
3650
-                wp_send_json( $json );
3650
+                wp_send_json($json);
3651 3651
             }
3652 3652
         }
3653 3653
         break;
3654 3654
         case 'export_hoods': {
3655
-            $file_url_base = geodir_path_import_export() . '/';
3656
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3657
-            $file_url = $file_url_base . $file_name . '.csv';
3658
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3659
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3655
+            $file_url_base = geodir_path_import_export().'/';
3656
+            $file_name = 'gd_neighbourhoods_'.date('dmyHi');
3657
+            $file_url = $file_url_base.$file_name.'.csv';
3658
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3659
+            $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv';
3660 3660
             
3661
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3661
+            $items_count = (int) geodir_location_imex_count_neighbourhoods();
3662 3662
             
3663
-            if ( isset( $_REQUEST['_st'] ) ) {
3664
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3665
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3666
-                $percentage = min( $percentage, 100 );
3663
+            if (isset($_REQUEST['_st'])) {
3664
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3665
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3666
+                $percentage = min($percentage, 100);
3667 3667
                 
3668 3668
                 $json['percentage'] = $percentage;
3669
-                wp_send_json( $json );
3669
+                wp_send_json($json);
3670 3670
             } else {
3671 3671
                 $chunk_file_paths = array();
3672 3672
                 
3673
-                if ( !$items_count > 0 ) {
3674
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3673
+                if (!$items_count > 0) {
3674
+                    $json['error'] = __('No records to export.', 'geodirectory');
3675 3675
                 } else {
3676
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3677
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3676
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3677
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3678 3678
                     
3679 3679
                     $j = $chunk_page_no;
3680
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3680
+                    $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j);
3681 3681
                     
3682 3682
                     $per_page = 500;
3683
-                    $per_page = min( $per_page, $chunk_per_page );
3684
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3683
+                    $per_page = min($per_page, $chunk_per_page);
3684
+                    $total_pages = ceil($chunk_per_page / $per_page);
3685 3685
                     
3686
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3687
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3686
+                    for ($i = 0; $i <= $total_pages; $i++) {
3687
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3688 3688
                         
3689 3689
                         $clear = $i == 0 ? true : false;
3690
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3690
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3691 3691
                     }
3692 3692
                     
3693
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3694
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3695
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3696
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3697
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3693
+                    if ($wp_filesystem->exists($file_path_temp)) {
3694
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3695
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3696
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3697
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3698 3698
                         
3699
-                        $file_url = $file_url_base . $chunk_file_name;
3700
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3699
+                        $file_url = $file_url_base.$chunk_file_name;
3700
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3701 3701
                     }
3702 3702
                     
3703
-                    if ( !empty($chunk_file_paths) ) {
3703
+                    if (!empty($chunk_file_paths)) {
3704 3704
                         $json['total'] = $items_count;
3705 3705
                         $json['files'] = $chunk_file_paths;
3706 3706
                     } else {
3707
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3707
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3708 3708
                     }
3709 3709
                 }
3710
-                wp_send_json( $json );
3710
+                wp_send_json($json);
3711 3711
             }
3712 3712
         }
3713 3713
         break;
@@ -3724,34 +3724,34 @@  discard block
 block discarded – undo
3724 3724
             }
3725 3725
             // WPML
3726 3726
             
3727
-            ini_set( 'auto_detect_line_endings', true );
3727
+            ini_set('auto_detect_line_endings', true);
3728 3728
             
3729 3729
             $uploads = wp_upload_dir();
3730 3730
             $uploads_dir = $uploads['path'];
3731 3731
             $uploads_subdir = $uploads['subdir'];
3732 3732
             
3733
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3734
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3733
+            $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL;
3734
+            $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip';
3735 3735
             
3736
-            $csv_file_arr = explode( '/', $csv_file );
3737
-            $csv_filename = end( $csv_file_arr );
3738
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3736
+            $csv_file_arr = explode('/', $csv_file);
3737
+            $csv_filename = end($csv_file_arr);
3738
+            $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename;
3739 3739
             
3740 3740
             $json['file'] = $csv_file;
3741
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3741
+            $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
3742 3742
             $file = array();
3743 3743
 
3744
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3745
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3744
+            if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
3745
+                $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename);
3746 3746
                 
3747 3747
                 if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3748 3748
                     $json['error'] = NULL;
3749 3749
 
3750 3750
                     $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3751 3751
                     setlocale(LC_ALL, 'en_US.UTF-8');
3752
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3753
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3754
-                            if ( !empty( $data ) ) {
3752
+                    if (($handle = fopen($target_path, "r")) !== FALSE) {
3753
+                        while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
3754
+                            if (!empty($data)) {
3755 3755
                                 $file[] = $data;
3756 3756
                             }
3757 3757
                         }
@@ -3765,19 +3765,19 @@  discard block
 block discarded – undo
3765 3765
                         $json['error'] = __('No data found in csv file.', 'geodirectory');
3766 3766
                     }
3767 3767
                 } else {
3768
-                    wp_send_json( $json );
3768
+                    wp_send_json($json);
3769 3769
                 }
3770 3770
             } else {
3771
-                wp_send_json( $json );
3771
+                wp_send_json($json);
3772 3772
             }
3773 3773
             
3774
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3775
-                wp_send_json( $json );
3774
+            if ($task == 'prepare_import' || !empty($json['error'])) {
3775
+                wp_send_json($json);
3776 3776
             }
3777 3777
             
3778 3778
             $total = $json['rows'];
3779
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3780
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3779
+            $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1;
3780
+            $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0;
3781 3781
             
3782 3782
             $count = $limit;
3783 3783
             
@@ -3802,13 +3802,13 @@  discard block
 block discarded – undo
3802 3802
             
3803 3803
             $post_types = geodir_get_posttypes();
3804 3804
 
3805
-            if ( $task == 'import_cat' ) {
3805
+            if ($task == 'import_cat') {
3806 3806
                 if (!empty($file)) {
3807 3807
                     $columns = isset($file[0]) ? $file[0] : NULL;
3808 3808
                     
3809 3809
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3810 3810
                         $json['error'] = CSV_INVAILD_FILE;
3811
-                        wp_send_json( $json );
3811
+                        wp_send_json($json);
3812 3812
                         exit;
3813 3813
                     }
3814 3814
                     
@@ -3819,7 +3819,7 @@  discard block
 block discarded – undo
3819 3819
                         
3820 3820
                         if (isset($file[$index])) {
3821 3821
                             $row = $file[$index];
3822
-                            $row = array_map( 'trim', $row );
3822
+                            $row = array_map('trim', $row);
3823 3823
                             //$row = array_map( 'utf8_encode', $row );
3824 3824
                             
3825 3825
                             $cat_id = '';
@@ -3836,42 +3836,42 @@  discard block
 block discarded – undo
3836 3836
                             $cat_id_original = '';
3837 3837
                             
3838 3838
                             $c = 0;
3839
-                            foreach ($columns as $column ) {
3840
-                                if ( $column == 'cat_id' ) {
3841
-                                    $cat_id = (int)$row[$c];
3842
-                                } else if ( $column == 'cat_name' ) {
3839
+                            foreach ($columns as $column) {
3840
+                                if ($column == 'cat_id') {
3841
+                                    $cat_id = (int) $row[$c];
3842
+                                } else if ($column == 'cat_name') {
3843 3843
                                     $cat_name = $row[$c];
3844
-                                } else if ( $column == 'cat_slug' ) {
3844
+                                } else if ($column == 'cat_slug') {
3845 3845
                                     $cat_slug = $row[$c];
3846
-                                } else if ( $column == 'cat_posttype' ) {
3846
+                                } else if ($column == 'cat_posttype') {
3847 3847
                                     $cat_posttype = $row[$c];
3848
-                                } else if ( $column == 'cat_parent' ) {
3848
+                                } else if ($column == 'cat_parent') {
3849 3849
                                     $cat_parent = trim($row[$c]);
3850
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3850
+                                } else if ($column == 'cat_schema' && $row[$c] != '') {
3851 3851
                                     $cat_schema = $row[$c];
3852
-                                } else if ( $column == 'cat_description' ) {
3852
+                                } else if ($column == 'cat_description') {
3853 3853
                                     $cat_description = $row[$c];
3854
-                                } else if ( $column == 'cat_top_description' ) {
3854
+                                } else if ($column == 'cat_top_description') {
3855 3855
                                     $cat_top_description = $row[$c];
3856
-                                } else if ( $column == 'cat_image' ) {
3856
+                                } else if ($column == 'cat_image') {
3857 3857
                                     $cat_image = $row[$c];
3858
-                                } else if ( $column == 'cat_icon' ) {
3858
+                                } else if ($column == 'cat_icon') {
3859 3859
                                     $cat_icon = $row[$c];
3860 3860
                                 }
3861 3861
                                 // WPML
3862
-                                if ( $is_wpml ) {
3863
-                                    if ( $column == 'cat_language' ) {
3864
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3865
-                                    } else if ( $column == 'cat_id_original' ) {
3866
-                                        $cat_id_original = (int)$row[$c];
3862
+                                if ($is_wpml) {
3863
+                                    if ($column == 'cat_language') {
3864
+                                        $cat_language = geodir_strtolower(trim($row[$c]));
3865
+                                    } else if ($column == 'cat_id_original') {
3866
+                                        $cat_id_original = (int) $row[$c];
3867 3867
                                     }
3868 3868
                                 }
3869 3869
                                 // WPML
3870 3870
                                 $c++;
3871 3871
                             }
3872 3872
                             
3873
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3874
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3873
+                            if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
3874
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
3875 3875
                                 
3876 3876
                                 $invalid++;
3877 3877
                                 continue;
@@ -3889,24 +3889,24 @@  discard block
 block discarded – undo
3889 3889
                             $term_data['description'] = $cat_description;
3890 3890
                             $term_data['cat_schema'] = $cat_schema;
3891 3891
                             $term_data['top_description'] = $cat_top_description;
3892
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3893
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3892
+                            $term_data['image'] = $cat_image != '' ? basename($cat_image) : '';
3893
+                            $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : '';
3894 3894
                             
3895 3895
                             //$term_data = array_map( 'utf8_encode', $term_data );
3896 3896
                             
3897
-                            $taxonomy = $cat_posttype . 'category';
3897
+                            $taxonomy = $cat_posttype.'category';
3898 3898
                             
3899 3899
                             $term_data['taxonomy'] = $taxonomy;
3900 3900
 
3901 3901
                             $term_parent_id = 0;
3902
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3902
+                            if ($cat_parent != "" || (int) $cat_parent > 0) {
3903 3903
                                 $term_parent = '';
3904 3904
                                 
3905
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3905
+                                if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
3906 3906
                                     //
3907
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3907
+                                } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
3908 3908
                                     //
3909
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3909
+                                } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
3910 3910
                                     //
3911 3911
                                 } else {
3912 3912
                                     $term_parent_data = array();
@@ -3914,104 +3914,104 @@  discard block
 block discarded – undo
3914 3914
                                     //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3915 3915
                                     $term_parent_data['taxonomy'] = $taxonomy;
3916 3916
                                     
3917
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3917
+                                    $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data);
3918 3918
                                 }
3919 3919
                                 
3920
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3921
-                                    $term_parent_id = (int)$term_parent->term_id;
3920
+                                if (!empty($term_parent) && !is_wp_error($term_parent)) {
3921
+                                    $term_parent_id = (int) $term_parent->term_id;
3922 3922
                                 }
3923 3923
                             }
3924
-                            $term_data['parent'] = (int)$term_parent_id;
3924
+                            $term_data['parent'] = (int) $term_parent_id;
3925 3925
 
3926 3926
                             $term_id = NULL;
3927
-                            if ( $import_choice == 'update' ) {
3928
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3927
+                            if ($import_choice == 'update') {
3928
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3929 3929
                                     $term_data['term_id'] = $term['term_id'];
3930 3930
                                     
3931
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3931
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3932 3932
                                         $updated++;
3933 3933
                                     } else {
3934 3934
                                         $invalid++;
3935
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3935
+                                        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'));
3936 3936
                                     }
3937
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3937
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3938 3938
                                     $term_data['term_id'] = $term['term_id'];
3939 3939
                                     
3940
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3940
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3941 3941
                                         $updated++;
3942 3942
                                     } else {
3943 3943
                                         $invalid++;
3944
-                                        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' ) );
3944
+                                        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'));
3945 3945
                                     }
3946 3946
                                 } else {
3947
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3947
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3948 3948
                                         $created++;
3949 3949
                                     } else {
3950 3950
                                         $invalid++;
3951
-                                        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' ) );
3951
+                                        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'));
3952 3952
                                     }
3953 3953
                                 }
3954
-                            } else if ( $import_choice == 'skip' ) {
3955
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3954
+                            } else if ($import_choice == 'skip') {
3955
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3956 3956
                                     $skipped++;
3957
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3957
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3958 3958
                                     $skipped++;
3959 3959
                                 } else {
3960
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3960
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3961 3961
                                         $created++;
3962 3962
                                     } else {
3963 3963
                                         $invalid++;
3964
-                                        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' ) );
3964
+                                        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'));
3965 3965
                                     }
3966 3966
                                 }
3967 3967
                             } else {
3968 3968
                                 $invalid++;
3969
-                                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' ) );
3969
+                                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'));
3970 3970
                             }
3971 3971
                             
3972
-                            if ( $term_id ) {
3972
+                            if ($term_id) {
3973 3973
                                 // WPML
3974 3974
                                 if ($is_wpml && geodir_wpml_is_taxonomy_translated($taxonomy) && $cat_id_original > 0 && $cat_language != '') {
3975
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3976
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3975
+                                    $wpml_element_type = 'tax_'.$taxonomy;
3976
+                                    $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type);
3977 3977
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3978 3978
 
3979
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3979
+                                    $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type);
3980 3980
                                     
3981
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3981
+                                    $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language);
3982 3982
                                 }
3983 3983
                                 // WPML
3984 3984
                                 
3985
-                                if ( isset( $term_data['top_description'] ) ) {
3986
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3985
+                                if (isset($term_data['top_description'])) {
3986
+                                    geodir_update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype);
3987 3987
                                 }
3988 3988
                                 
3989
-                                if ( isset( $term_data['cat_schema'] ) ) {
3990
-                                    geodir_update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3989
+                                if (isset($term_data['cat_schema'])) {
3990
+                                    geodir_update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype);
3991 3991
                                 }
3992 3992
             
3993 3993
                                 $attachment = false;
3994
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3995
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3996
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3994
+                                if (isset($term_data['image']) && $term_data['image'] != '') {
3995
+                                    $cat_image = geodir_get_default_catimage($term_id, $cat_posttype);
3996
+                                    $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : '';
3997 3997
                                     
3998
-                                    if ( basename($cat_image) != $term_data['image'] ) {
3998
+                                    if (basename($cat_image) != $term_data['image']) {
3999 3999
                                         $attachment = true;
4000
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
4000
+                                        geodir_update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
4001 4001
                                     }
4002 4002
                                 }
4003 4003
                                 
4004
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
4005
-                                    $cat_icon = geodir_get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
4006
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
4004
+                                if (isset($term_data['icon']) && $term_data['icon'] != '') {
4005
+                                    $cat_icon = geodir_get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype);
4006
+                                    $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
4007 4007
 
4008
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
4008
+                                    if (basename($cat_icon) != $term_data['icon']) {
4009 4009
                                         $attachment = true;
4010
-                                        geodir_update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
4010
+                                        geodir_update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
4011 4011
                                     }
4012 4012
                                 }
4013 4013
                                 
4014
-                                if ( $attachment ) {
4014
+                                if ($attachment) {
4015 4015
                                     $images++;
4016 4016
                                 }
4017 4017
                             }
@@ -4033,35 +4033,35 @@  discard block
 block discarded – undo
4033 4033
                 $json['invalid'] = $invalid;
4034 4034
                 $json['images'] = $images;
4035 4035
                 
4036
-                wp_send_json( $json );
4036
+                wp_send_json($json);
4037 4037
                 exit;
4038
-            } else if ( $task == 'import_post' ) {
4039
-                $xtimings['###1'] = microtime(true)-$xstart;
4038
+            } else if ($task == 'import_post') {
4039
+                $xtimings['###1'] = microtime(true) - $xstart;
4040 4040
                 //run some stuff to make the import quicker
4041
-                wp_defer_term_counting( true );
4042
-                wp_defer_comment_counting( true );
4043
-                $wpdb->query( 'SET autocommit = 0;' );
4041
+                wp_defer_term_counting(true);
4042
+                wp_defer_comment_counting(true);
4043
+                $wpdb->query('SET autocommit = 0;');
4044 4044
 //
4045 4045
 //                remove_all_actions('publish_post');
4046 4046
 //                remove_all_actions('transition_post_status');
4047 4047
 //                remove_all_actions('publish_future_post');
4048 4048
 
4049 4049
                 if (!empty($file)) {
4050
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4050
+                    $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
4051 4051
                     $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4052 4052
                     $default_status = 'publish';
4053
-                    $current_date = date_i18n( 'Y-m-d', time() );
4053
+                    $current_date = date_i18n('Y-m-d', time());
4054 4054
                     
4055 4055
                     $columns = isset($file[0]) ? $file[0] : NULL;
4056 4056
                     
4057 4057
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4058 4058
                         $json['error'] = CSV_INVAILD_FILE;
4059
-                        wp_send_json( $json );
4059
+                        wp_send_json($json);
4060 4060
                         exit;
4061 4061
                     }
4062
-                    $xtimings['###2'] = microtime(true)-$xstart;
4062
+                    $xtimings['###2'] = microtime(true) - $xstart;
4063 4063
                     $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4064
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4064
+                    $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
4065 4065
                     $processed_actual = 0;
4066 4066
                     for ($i = 1; $i <= $limit; $i++) {
4067 4067
                         $index = $processed + $i;
@@ -4070,9 +4070,9 @@  discard block
 block discarded – undo
4070 4070
                         if (isset($file[$index])) {
4071 4071
                             $processed_actual++;
4072 4072
                             $row = $file[$index];
4073
-                            $row = array_map( 'trim', $row );
4073
+                            $row = array_map('trim', $row);
4074 4074
                             //$row = array_map( 'utf8_encode', $row );
4075
-                            $row = array_map( 'addslashes_gpc', $row );
4075
+                            $row = array_map('addslashes_gpc', $row);
4076 4076
                             
4077 4077
                             $post_id = '';
4078 4078
                             $post_title = '';
@@ -4112,82 +4112,82 @@  discard block
 block discarded – undo
4112 4112
                             $original_post_id = '';
4113 4113
                             
4114 4114
                             $c = 0;
4115
-                            foreach ($columns as $column ) {
4115
+                            foreach ($columns as $column) {
4116 4116
                                 $gd_post[$column] = $row[$c];
4117 4117
                                 
4118
-                                if ( $column == 'post_id' ) {
4118
+                                if ($column == 'post_id') {
4119 4119
                                     $post_id = $row[$c];
4120
-                                } else if ( $column == 'post_title' ) {
4120
+                                } else if ($column == 'post_title') {
4121 4121
                                     $post_title = sanitize_text_field($row[$c]);
4122
-                                } else if ( $column == 'post_author' ) {
4122
+                                } else if ($column == 'post_author') {
4123 4123
                                     $post_author = $row[$c];
4124
-                                } else if ( $column == 'post_date' ) {
4124
+                                } else if ($column == 'post_date') {
4125 4125
                                     $post_date = $row[$c];
4126
-                                } else if ( $column == 'post_content' ) {
4126
+                                } else if ($column == 'post_content') {
4127 4127
                                     $post_content = $row[$c];
4128
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4129
-                                    $post_category_arr = explode( ',', $row[$c] );
4130
-                                } else if ( $column == 'default_category' ) {
4128
+                                } else if ($column == 'post_category' && $row[$c] != '') {
4129
+                                    $post_category_arr = explode(',', $row[$c]);
4130
+                                } else if ($column == 'default_category') {
4131 4131
                                     $default_category = wp_kses_normalize_entities($row[$c]);
4132
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4133
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4134
-                                } else if ( $column == 'post_type' ) {
4132
+                                } else if ($column == 'post_tags' && $row[$c] != '') {
4133
+                                    $post_tags = explode(',', sanitize_text_field($row[$c]));
4134
+                                } else if ($column == 'post_type') {
4135 4135
                                     $post_type = $row[$c];
4136
-                                } else if ( $column == 'post_status' ) {
4137
-                                    $post_status = sanitize_key( $row[$c] );
4138
-                                } else if ( $column == 'is_featured' ) {
4139
-                                    $is_featured = (int)$row[$c];
4140
-                                } else if ( $column == 'geodir_video' ) {
4136
+                                } else if ($column == 'post_status') {
4137
+                                    $post_status = sanitize_key($row[$c]);
4138
+                                } else if ($column == 'is_featured') {
4139
+                                    $is_featured = (int) $row[$c];
4140
+                                } else if ($column == 'geodir_video') {
4141 4141
                                     $geodir_video = $row[$c];
4142
-                                } else if ( $column == 'post_address' ) {
4142
+                                } else if ($column == 'post_address') {
4143 4143
                                     $post_address = sanitize_text_field($row[$c]);
4144
-                                } else if ( $column == 'post_city' ) {
4144
+                                } else if ($column == 'post_city') {
4145 4145
                                     $post_city = sanitize_text_field($row[$c]);
4146
-                                } else if ( $column == 'post_region' ) {
4146
+                                } else if ($column == 'post_region') {
4147 4147
                                     $post_region = sanitize_text_field($row[$c]);
4148
-                                } else if ( $column == 'post_country' ) {
4148
+                                } else if ($column == 'post_country') {
4149 4149
                                     $post_country = sanitize_text_field($row[$c]);
4150
-                                } else if ( $column == 'post_zip' ) {
4150
+                                } else if ($column == 'post_zip') {
4151 4151
                                     $post_zip = sanitize_text_field($row[$c]);
4152
-                                } else if ( $column == 'post_latitude' ) {
4152
+                                } else if ($column == 'post_latitude') {
4153 4153
                                     $post_latitude = sanitize_text_field($row[$c]);
4154
-                                } else if ( $column == 'post_longitude' ) {
4154
+                                } else if ($column == 'post_longitude') {
4155 4155
                                     $post_longitude = sanitize_text_field($row[$c]);
4156
-                                } else if ( $column == 'post_neighbourhood' ) {
4156
+                                } else if ($column == 'post_neighbourhood') {
4157 4157
                                     $post_neighbourhood = sanitize_text_field($row[$c]);
4158 4158
                                     unset($gd_post[$column]);
4159
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4159
+                                } else if ($column == 'neighbourhood_latitude') {
4160 4160
                                     $neighbourhood_latitude = sanitize_text_field($row[$c]);
4161
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4161
+                                } else if ($column == 'neighbourhood_longitude') {
4162 4162
                                     $neighbourhood_longitude = sanitize_text_field($row[$c]);
4163
-                                } else if ( $column == 'geodir_timing' ) {
4163
+                                } else if ($column == 'geodir_timing') {
4164 4164
                                     $geodir_timing = sanitize_text_field($row[$c]);
4165
-                                } else if ( $column == 'geodir_contact' ) {
4165
+                                } else if ($column == 'geodir_contact') {
4166 4166
                                     $geodir_contact = sanitize_text_field($row[$c]);
4167
-                                } else if ( $column == 'geodir_email' ) {
4167
+                                } else if ($column == 'geodir_email') {
4168 4168
                                     $geodir_email = sanitize_email($row[$c]);
4169
-                                } else if ( $column == 'geodir_website' ) {
4169
+                                } else if ($column == 'geodir_website') {
4170 4170
                                     $geodir_website = sanitize_text_field($row[$c]);
4171
-                                } else if ( $column == 'geodir_twitter' ) {
4171
+                                } else if ($column == 'geodir_twitter') {
4172 4172
                                     $geodir_twitter = sanitize_text_field($row[$c]);
4173
-                                } else if ( $column == 'geodir_facebook' ) {
4173
+                                } else if ($column == 'geodir_facebook') {
4174 4174
                                     $geodir_facebook = sanitize_text_field($row[$c]);
4175
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4175
+                                } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
4176 4176
                                     $post_images[] = $row[$c];
4177
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4178
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4179
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4177
+                                } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
4178
+                                    $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
4179
+                                } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
4180 4180
                                     $row[$c] = str_replace('/', '-', $row[$c]);
4181
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4182
-                                } else if ( strpos( $column, 'linked_' ) === 0 ) {
4183
-                                    $geodir_link_business = (int)$row[$c];
4181
+                                    $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
4182
+                                } else if (strpos($column, 'linked_') === 0) {
4183
+                                    $geodir_link_business = (int) $row[$c];
4184 4184
                                 }
4185 4185
                                 // WPML
4186 4186
                                 if ($is_wpml) {
4187 4187
                                     if ($column == 'language') {
4188 4188
                                         $language = geodir_strtolower(trim($row[$c]));
4189 4189
                                     } else if ($column == 'original_post_id') {
4190
-                                        $original_post_id = (int)$row[$c];
4190
+                                        $original_post_id = (int) $row[$c];
4191 4191
                                     }
4192 4192
                                 }
4193 4193
                                 // WPML
@@ -4195,7 +4195,7 @@  discard block
 block discarded – undo
4195 4195
                             }
4196 4196
                             // listing claimed or not
4197 4197
                             if ($is_claim_active && isset($gd_post['claimed'])) {
4198
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4198
+                                $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0;
4199 4199
                             }
4200 4200
                             
4201 4201
                             // WPML
@@ -4206,43 +4206,43 @@  discard block
 block discarded – undo
4206 4206
 
4207 4207
                             $gd_post['IMAGE'] = $post_images;
4208 4208
                             
4209
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4210
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4209
+                            $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status;
4210
+                            $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status;
4211 4211
                                                                                                                 
4212 4212
                             $valid = true;
4213 4213
                             
4214
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4214
+                            if ($post_title == '' || !in_array($post_type, $post_types)) {
4215 4215
                                 $invalid++;
4216 4216
                                 $valid = false;
4217
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4217
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
4218 4218
                             }
4219
-                            $xtimings['###3'] = microtime(true)-$xstart;
4220
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4221
-                            if ( $location_allowed ) {
4219
+                            $xtimings['###3'] = microtime(true) - $xstart;
4220
+                            $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
4221
+                            if ($location_allowed) {
4222 4222
                                 $location_result = geodir_get_default_location();
4223
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4223
+                                if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
4224 4224
                                     $invalid_addr++;
4225 4225
                                     $valid = false;
4226
-                                    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' ) );
4227
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4228
-                                    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 ) ) ) {
4226
+                                    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'));
4227
+                                } else if (!empty($location_result) && $location_result->location_id == 0) {
4228
+                                    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))) {
4229 4229
                                         $invalid_addr++;
4230 4230
                                         $valid = false;
4231
-                                        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' ) );
4231
+                                        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'));
4232 4232
                                     } else {
4233 4233
                                         if (!$location_manager) {
4234
-                                            $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.
4234
+                                            $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.
4235 4235
                                         }
4236 4236
                                     }
4237 4237
                                 }
4238 4238
                             }
4239
-                            $xtimings['###4']   = microtime(true)-$xstart;
4240
-                            if ( !$valid ) {
4239
+                            $xtimings['###4'] = microtime(true) - $xstart;
4240
+                            if (!$valid) {
4241 4241
                                 continue;
4242 4242
                             }
4243 4243
 
4244
-                            $cat_taxonomy = $post_type . 'category';
4245
-                            $tags_taxonomy = $post_type . '_tags';
4244
+                            $cat_taxonomy = $post_type.'category';
4245
+                            $tags_taxonomy = $post_type.'_tags';
4246 4246
                             
4247 4247
                             if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4248 4248
                                 $post_category_arr = array_merge(array($default_category), $post_category_arr);
@@ -4250,29 +4250,29 @@  discard block
 block discarded – undo
4250 4250
 
4251 4251
                             $post_category = array();
4252 4252
                             $default_category_id = NULL;
4253
-                            if ( !empty( $post_category_arr ) ) {
4254
-                                foreach ( $post_category_arr as $value ) {
4255
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4253
+                            if (!empty($post_category_arr)) {
4254
+                                foreach ($post_category_arr as $value) {
4255
+                                    $category_name = wp_kses_normalize_entities(trim($value));
4256 4256
                                     
4257
-                                    if ( $category_name != '' ) {
4257
+                                    if ($category_name != '') {
4258 4258
                                         $term_category = array();
4259 4259
                                         
4260
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4260
+                                        if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
4261 4261
                                             $term_category = $term;
4262
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4262
+                                        } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
4263 4263
                                             $term_category = $term;
4264 4264
                                         } else {
4265 4265
                                             $term_data = array();
4266 4266
                                             $term_data['name'] = $category_name;
4267 4267
                                             $term_data['taxonomy'] = $cat_taxonomy;
4268 4268
                                             
4269
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4270
-                                            if ( $term_id ) {
4271
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4269
+                                            $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data);
4270
+                                            if ($term_id) {
4271
+                                                $term_category = get_term($term_id, $cat_taxonomy);
4272 4272
                                             }
4273 4273
                                         }
4274 4274
                                         
4275
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4275
+                                        if (!empty($term_category) && !is_wp_error($term_category)) {
4276 4276
                                             $post_category[] = intval($term_category->term_id);
4277 4277
                                             
4278 4278
                                             if ($category_name == $default_category) {
@@ -4282,14 +4282,14 @@  discard block
 block discarded – undo
4282 4282
                                     }
4283 4283
                                 }
4284 4284
                             }
4285
-                            $xtimings['###5'] = microtime(true)-$xstart;
4285
+                            $xtimings['###5'] = microtime(true) - $xstart;
4286 4286
                             $save_post = array();
4287 4287
                             $save_post['post_title'] = $post_title;
4288 4288
                             if (!empty($post_date)) {
4289
-                                $post_date = geodir_date( $post_date, 'Y-m-d H:i:s' ); // convert to mysql date format.
4289
+                                $post_date = geodir_date($post_date, 'Y-m-d H:i:s'); // convert to mysql date format.
4290 4290
                                 
4291 4291
                                 $save_post['post_date'] = $post_date;
4292
-                                $save_post['post_date_gmt'] = get_gmt_from_date( $post_date );
4292
+                                $save_post['post_date_gmt'] = get_gmt_from_date($post_date);
4293 4293
                             }
4294 4294
                             $save_post['post_content'] = $post_content;
4295 4295
                             $save_post['post_type'] = $post_type;
@@ -4299,15 +4299,15 @@  discard block
 block discarded – undo
4299 4299
                             $save_post['post_tags'] = $post_tags;
4300 4300
 
4301 4301
                             $saved_post_id = NULL;
4302
-                            if ( $import_choice == 'update' ) {
4303
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4302
+                            if ($import_choice == 'update') {
4303
+                                $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
4304 4304
                                 
4305
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4305
+                                if ($post_id > 0 && get_post($post_id)) {
4306 4306
                                     $save_post['ID'] = $post_id;
4307 4307
                                     
4308
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4309
-                                        if ( is_wp_error( $saved_post_id ) ) {
4310
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4308
+                                    if ($saved_post_id = wp_update_post($save_post, true)) {
4309
+                                        if (is_wp_error($saved_post_id)) {
4310
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4311 4311
                                             $saved_post_id = 0;
4312 4312
                                         } else {
4313 4313
                                             $saved_post_id = $post_id;
@@ -4315,9 +4315,9 @@  discard block
 block discarded – undo
4315 4315
                                         }
4316 4316
                                     }
4317 4317
                                 } else {
4318
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4319
-                                        if ( is_wp_error( $saved_post_id ) ) {
4320
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4318
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4319
+                                        if (is_wp_error($saved_post_id)) {
4320
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4321 4321
                                             $saved_post_id = 0;
4322 4322
                                         } else {
4323 4323
                                             $created++;
@@ -4325,19 +4325,19 @@  discard block
 block discarded – undo
4325 4325
                                     }
4326 4326
                                 }
4327 4327
                                 
4328
-                                if ( !$saved_post_id > 0 ) {
4328
+                                if (!$saved_post_id > 0) {
4329 4329
                                     $invalid++;
4330
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4330
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error);
4331 4331
                                 }
4332
-                            } else if ( $import_choice == 'skip' ) {
4333
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4332
+                            } else if ($import_choice == 'skip') {
4333
+                                if ($post_id > 0 && get_post($post_id)) {
4334 4334
                                     $skipped++;	
4335 4335
                                 } else {
4336
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4337
-                                        if ( is_wp_error( $saved_post_id ) ) {
4336
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4337
+                                        if (is_wp_error($saved_post_id)) {
4338 4338
                                             $invalid++;
4339 4339
                                             
4340
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4340
+                                            geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error);
4341 4341
                                             $saved_post_id = 0;
4342 4342
                                         } else {
4343 4343
                                             $created++;
@@ -4345,28 +4345,28 @@  discard block
 block discarded – undo
4345 4345
                                     } else {
4346 4346
                                         $invalid++;
4347 4347
                                         
4348
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4348
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4349 4349
                                     }
4350 4350
                                 }
4351 4351
                             } else {
4352 4352
                                 $invalid++;
4353 4353
                                 
4354
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4354
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4355 4355
                             }
4356
-                            $xtimings['###6'] = microtime(true)-$xstart;
4357
-                            if ( (int)$saved_post_id > 0 ) {
4356
+                            $xtimings['###6'] = microtime(true) - $xstart;
4357
+                            if ((int) $saved_post_id > 0) {
4358 4358
                                 // WPML
4359 4359
                                 if ($is_wpml && geodir_wpml_is_post_type_translated($post_type) && $original_post_id > 0 && $language != '') {
4360
-                                    $wpml_post_type = 'post_' . $post_type;
4361
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4360
+                                    $wpml_post_type = 'post_'.$post_type;
4361
+                                    $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type);
4362 4362
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4363 4363
 
4364
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4364
+                                    $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type);
4365 4365
                                     
4366
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4366
+                                    $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language);
4367 4367
                                 }
4368 4368
                                 // WPML
4369
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4369
+                                $gd_post_info = geodir_get_post_info($saved_post_id);
4370 4370
                                 
4371 4371
                                 $gd_post['post_id'] = $saved_post_id;
4372 4372
                                 $gd_post['ID'] = $saved_post_id;
@@ -4378,7 +4378,7 @@  discard block
 block discarded – undo
4378 4378
                                                     
4379 4379
                                 // post location
4380 4380
                                 $post_location_id = 0;
4381
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4381
+                                if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
4382 4382
                                     $gd_post['post_neighbourhood'] = '';
4383 4383
                                     
4384 4384
                                     $post_location_info = array(
@@ -4388,7 +4388,7 @@  discard block
 block discarded – undo
4388 4388
                                                                 'geo_lat' => $post_latitude,
4389 4389
                                                                 'geo_lng' => $post_longitude
4390 4390
                                                             );
4391
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4391
+                                    if ($location_id = (int) geodir_add_new_location($post_location_info)) {
4392 4392
                                         $post_location_id = $location_id;
4393 4393
                                     }
4394 4394
                                     
@@ -4430,14 +4430,14 @@  discard block
 block discarded – undo
4430 4430
                                 }
4431 4431
                                 
4432 4432
                                 // post package info
4433
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4433
+                                $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0;
4434 4434
                                 if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4435 4435
                                     $package_id = $gd_post_info->package_id;
4436 4436
                                 }
4437 4437
                                 
4438 4438
                                 $package_info = array();
4439 4439
                                 if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4440
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4440
+                                    $package_info = (array) geodir_get_package_info_by_id($package_id);
4441 4441
                                     
4442 4442
                                     if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4443 4443
                                         $package_info = array();
@@ -4445,18 +4445,18 @@  discard block
 block discarded – undo
4445 4445
                                 }
4446 4446
                                 
4447 4447
                                 if (empty($package_info)) {
4448
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4448
+                                    $package_info = (array) geodir_post_package_info(array(), '', $post_type);
4449 4449
                                 }
4450 4450
                                  
4451
-                                if (!empty($package_info))	 {
4451
+                                if (!empty($package_info)) {
4452 4452
                                     $package_id = $package_info['pid'];
4453 4453
                                     
4454 4454
                                     if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4455 4455
                                         $gd_post['expire_date'] = $expire_date;
4456 4456
                                     } else {
4457
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4458
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4459
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4457
+                                        if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
4458
+                                            $gd_post['alive_days'] = (int) $package_info['days'];
4459
+                                            $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
4460 4460
                                         } else {
4461 4461
                                             $gd_post['expire_date'] = 'Never';
4462 4462
                                         }
@@ -4465,7 +4465,7 @@  discard block
 block discarded – undo
4465 4465
                                     $gd_post['package_id'] = $package_id;
4466 4466
                                 }
4467 4467
 
4468
-                                $table = $plugin_prefix . $post_type . '_detail';
4468
+                                $table = $plugin_prefix.$post_type.'_detail';
4469 4469
                                 
4470 4470
                                 if ($post_type == 'gd_event') {
4471 4471
                                     $gd_post = geodir_imex_process_event_data($gd_post);
@@ -4476,71 +4476,71 @@  discard block
 block discarded – undo
4476 4476
                                 }
4477 4477
 
4478 4478
                                 // Export franchise fields
4479
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4479
+                                $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
4480 4480
                                 if ($is_franchise_active) {
4481
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && empty( $gd_post['franchise'] ) ) {
4482
-                                        if ( absint( $gd_post['gd_is_franchise'] ) != 0 ) {
4481
+                                    if (isset($gd_post['gd_is_franchise']) && empty($gd_post['franchise'])) {
4482
+                                        if (absint($gd_post['gd_is_franchise']) != 0) {
4483 4483
                                             $gd_franchise_lock = array();
4484 4484
                                             
4485
-                                            if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4486
-                                                $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4487
-                                                $gd_franchise_lock = trim( $gd_franchise_lock );
4488
-                                                $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4485
+                                            if (isset($gd_post['gd_franchise_lock'])) {
4486
+                                                $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
4487
+                                                $gd_franchise_lock = trim($gd_franchise_lock);
4488
+                                                $gd_franchise_lock = explode(",", $gd_franchise_lock);
4489 4489
                                             }
4490 4490
                                             
4491
-                                            update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4492
-                                            update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4491
+                                            update_post_meta($saved_post_id, 'gd_is_franchise', 1);
4492
+                                            update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock);
4493 4493
                                         } else {
4494
-                                            if ( function_exists( 'geodir_franchise_remove_franchise' ) ) {
4495
-                                                geodir_franchise_remove_franchise( $saved_post_id );
4494
+                                            if (function_exists('geodir_franchise_remove_franchise')) {
4495
+                                                geodir_franchise_remove_franchise($saved_post_id);
4496 4496
                                             }
4497 4497
                                         }
4498 4498
                                     } else {
4499
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4500
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4499
+                                        if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
4500
+                                            geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']);
4501 4501
                                         }
4502 4502
                                     }
4503 4503
                                 }
4504 4504
                                 
4505 4505
                                 if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4506
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4506
+                                    $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
4507 4507
                                     if ($default_category_id) {
4508 4508
                                         $save_post['post_default_category'] = $default_category_id;
4509 4509
                                         $gd_post['default_category'] = $default_category_id;
4510 4510
                                     }
4511 4511
                                     $gd_post[$cat_taxonomy] = $save_post['post_category'];
4512 4512
                                 }
4513
-                                $xtimings['###7'] = microtime(true)-$xstart;
4513
+                                $xtimings['###7'] = microtime(true) - $xstart;
4514 4514
                                 // Save post info
4515
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4516
-                                $xtimings['###8'] = microtime(true)-$xstart;
4515
+                                geodir_save_post_info($saved_post_id, $gd_post);
4516
+                                $xtimings['###8'] = microtime(true) - $xstart;
4517 4517
                                 // post taxonomies
4518
-                                if ( !empty( $save_post['post_category'] ) ) {
4519
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4518
+                                if (!empty($save_post['post_category'])) {
4519
+                                    wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy);
4520 4520
                                     
4521
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4521
+                                    $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : '';
4522 4522
                                     if ($default_category_id) {
4523 4523
                                         $post_default_category = $default_category_id;
4524 4524
                                     }
4525 4525
                                     $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4526 4526
                                     $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4527
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4527
+                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
4528 4528
                                     
4529 4529
                                     if ($post_category_str != '' && $post_default_category) {
4530
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4530
+                                        $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str);
4531 4531
                                     }
4532 4532
                                     
4533 4533
                                     $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4534 4534
                                     
4535
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4535
+                                    geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str);
4536 4536
                                 }
4537
-                                $xtimings['###8.1'] = microtime(true)-$xstart;
4538
-                                if ( !empty( $save_post['post_tags'] ) ) {
4539
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4537
+                                $xtimings['###8.1'] = microtime(true) - $xstart;
4538
+                                if (!empty($save_post['post_tags'])) {
4539
+                                    wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy);
4540 4540
                                 }
4541
-                                $xtimings['###9'] = microtime(true)-$xstart;
4541
+                                $xtimings['###9'] = microtime(true) - $xstart;
4542 4542
                                 // Post images
4543
-                                if ( !empty( $post_images ) ) {
4543
+                                if (!empty($post_images)) {
4544 4544
                                     $post_images = array_unique($post_images);
4545 4545
                                     
4546 4546
                                     $old_post_images_arr = array();
@@ -4548,65 +4548,65 @@  discard block
 block discarded – undo
4548 4548
                                     
4549 4549
                                     $order = 1;
4550 4550
                                     
4551
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4552
-                                    $xtimings['###9.1'] = microtime(true)-$xstart;
4551
+                                    $old_post_images = geodir_get_images($saved_post_id);
4552
+                                    $xtimings['###9.1'] = microtime(true) - $xstart;
4553 4553
                                     if (!empty($old_post_images)) {
4554
-                                        foreach( $old_post_images as $old_post_image ) {
4554
+                                        foreach ($old_post_images as $old_post_image) {
4555 4555
                                             if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4556 4556
                                                 $old_post_images_arr[] = $old_post_image->file;
4557 4557
                                             }
4558 4558
                                         }
4559 4559
                                     }
4560 4560
 
4561
-                                    foreach ( $post_images as $post_image ) {
4562
-                                        $image_name = basename( $post_image );
4561
+                                    foreach ($post_images as $post_image) {
4562
+                                        $image_name = basename($post_image);
4563 4563
                                         $saved_post_images_arr[] = $image_name;
4564 4564
                                         
4565
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4565
+                                        if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
4566 4566
                                             continue; // Skip if image already exists.
4567 4567
                                         }
4568 4568
                                         
4569
-                                        $image_name_parts = explode( '.', $image_name );
4570
-                                        array_pop( $image_name_parts );
4571
-                                        $proper_image_name = implode( '.', $image_name_parts );
4572
-                                        $xtimings['###9.2'] = microtime(true)-$xstart;
4573
-                                        $arr_file_type = wp_check_filetype( $image_name );
4574
-                                        $xtimings['###9.3'] = microtime(true)-$xstart;
4575
-                                        if ( !empty( $arr_file_type ) ) {
4569
+                                        $image_name_parts = explode('.', $image_name);
4570
+                                        array_pop($image_name_parts);
4571
+                                        $proper_image_name = implode('.', $image_name_parts);
4572
+                                        $xtimings['###9.2'] = microtime(true) - $xstart;
4573
+                                        $arr_file_type = wp_check_filetype($image_name);
4574
+                                        $xtimings['###9.3'] = microtime(true) - $xstart;
4575
+                                        if (!empty($arr_file_type)) {
4576 4576
                                             $uploaded_file_type = $arr_file_type['type'];
4577 4577
                                             
4578 4578
                                             $attachment = array();
4579 4579
                                             $attachment['post_id'] = $saved_post_id;
4580 4580
                                             $attachment['title'] = $proper_image_name;
4581 4581
                                             $attachment['content'] = '';
4582
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4582
+                                            $attachment['file'] = $uploads_subdir.'/'.$image_name;
4583 4583
                                             $attachment['mime_type'] = $uploaded_file_type;
4584 4584
                                             $attachment['menu_order'] = $order;
4585 4585
                                             $attachment['is_featured'] = 0;
4586 4586
 
4587 4587
                                             $attachment_set = '';
4588
-                                            foreach ( $attachment as $key => $val ) {
4589
-                                                if ( $val != '' ) {
4590
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4588
+                                            foreach ($attachment as $key => $val) {
4589
+                                                if ($val != '') {
4590
+                                                    $attachment_set .= $key." = '".$val."', ";
4591 4591
                                                 }
4592 4592
                                             }
4593
-                                            $attachment_set = trim( $attachment_set, ", " );
4593
+                                            $attachment_set = trim($attachment_set, ", ");
4594 4594
                                                                                         
4595 4595
                                             // Add new attachment
4596
-                                            $xtimings['###9.4'] = microtime(true)-$xstart;
4597
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4598
-                                            $xtimings['###9.5'] = microtime(true)-$xstart;
4596
+                                            $xtimings['###9.4'] = microtime(true) - $xstart;
4597
+                                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
4598
+                                            $xtimings['###9.5'] = microtime(true) - $xstart;
4599 4599
                                             $order++;
4600 4600
                                         }
4601 4601
                                     }
4602 4602
 
4603
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4603
+                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
4604 4604
                                     // Remove previous attachment
4605
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4606
-                                    $xtimings['###9.6'] = microtime(true)-$xstart;
4607
-                                    if ( !empty( $saved_post_images_arr ) ) {
4605
+                                    $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
4606
+                                    $xtimings['###9.6'] = microtime(true) - $xstart;
4607
+                                    if (!empty($saved_post_images_arr)) {
4608 4608
                                         geodir_set_wp_featured_image($saved_post_id);
4609
-                                        $xtimings['###9.7'] = microtime(true)-$xstart;
4609
+                                        $xtimings['###9.7'] = microtime(true) - $xstart;
4610 4610
                                         /*
4611 4611
                                         $menu_order = 1;
4612 4612
                                         
@@ -4622,14 +4622,14 @@  discard block
 block discarded – undo
4622 4622
                                         }*/
4623 4623
                                     }
4624 4624
                                     
4625
-                                    if ( $order > 1 ) {
4625
+                                    if ($order > 1) {
4626 4626
                                         $images++;
4627 4627
                                     }
4628 4628
                                 }
4629
-                                $xtimings['###10'] = microtime(true)-$xstart;
4629
+                                $xtimings['###10'] = microtime(true) - $xstart;
4630 4630
                                 /** This action is documented in geodirectory-functions/post-functions.php */
4631
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4632
-                                $xtimings['###11'] = microtime(true)-$xstart;
4631
+                                do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
4632
+                                $xtimings['###11'] = microtime(true) - $xstart;
4633 4633
                                 if (isset($is_featured)) {
4634 4634
                                     geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
4635 4635
                                 }
@@ -4639,7 +4639,7 @@  discard block
 block discarded – undo
4639 4639
                                 if (isset($gd_post['expire_date'])) {
4640 4640
                                     geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']);
4641 4641
                                 }
4642
-                                $xtimings['###12'] = microtime(true)-$xstart;
4642
+                                $xtimings['###12'] = microtime(true) - $xstart;
4643 4643
                             }
4644 4644
                             
4645 4645
                             // WPML
@@ -4652,11 +4652,11 @@  discard block
 block discarded – undo
4652 4652
                 }
4653 4653
 
4654 4654
                 //undo some stuff to make the import quicker
4655
-                wp_defer_term_counting( false );
4656
-                wp_defer_comment_counting( false );
4657
-                $wpdb->query( 'COMMIT;' );
4658
-                $wpdb->query( 'SET autocommit = 1;' );
4659
-                $xtimings['###13'] = microtime(true)-$xstart;
4655
+                wp_defer_term_counting(false);
4656
+                wp_defer_comment_counting(false);
4657
+                $wpdb->query('COMMIT;');
4658
+                $wpdb->query('SET autocommit = 1;');
4659
+                $xtimings['###13'] = microtime(true) - $xstart;
4660 4660
                 $json = array();
4661 4661
                 $json['processed'] = $processed_actual;
4662 4662
                 $json['created'] = $created;
@@ -4665,13 +4665,13 @@  discard block
 block discarded – undo
4665 4665
                 $json['invalid'] = $invalid;
4666 4666
                 $json['invalid_addr'] = $invalid_addr;
4667 4667
                 $json['images'] = $images;
4668
-                $json['timing'] = microtime(true)-$xstart;
4668
+                $json['timing'] = microtime(true) - $xstart;
4669 4669
                 $json['timings'] = $xtimings;
4670 4670
                 
4671 4671
 
4672
-                wp_send_json( $json );
4672
+                wp_send_json($json);
4673 4673
                 exit;
4674
-            } else if ( $task == 'import_loc' ) {
4674
+            } else if ($task == 'import_loc') {
4675 4675
                 global $gd_post_types;
4676 4676
                 $gd_post_types = $post_types;
4677 4677
                 
@@ -4680,82 +4680,82 @@  discard block
 block discarded – undo
4680 4680
                     
4681 4681
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4682 4682
                         $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4683
-                        wp_send_json( $json );
4683
+                        wp_send_json($json);
4684 4684
                     }
4685 4685
                     
4686 4686
                     $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4687
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4687
+                    $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
4688 4688
                     for ($i = 1; $i <= $limit; $i++) {
4689 4689
                         $index = $processed + $i;
4690 4690
                         
4691 4691
                         if (isset($file[$index])) {
4692 4692
                             $row = $file[$index];
4693
-                            $row = array_map( 'trim', $row );
4693
+                            $row = array_map('trim', $row);
4694 4694
                             $data = array();
4695 4695
                             
4696
-                            foreach ($columns as $c => $column ) {
4696
+                            foreach ($columns as $c => $column) {
4697 4697
                                 if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4698 4698
                                     $data[$column] = $row[$c];
4699 4699
                                 }
4700 4700
                             }
4701 4701
 
4702
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4702
+                            if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
4703 4703
                                 $invalid++;
4704
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4704
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4705 4705
                                 continue;
4706 4706
                             }
4707 4707
                             
4708 4708
                             $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4709 4709
                             
4710
-                            if ( $import_choice == 'update' ) {
4711
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4712
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4710
+                            if ($import_choice == 'update') {
4711
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4712
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4713 4713
                                         $updated++;
4714 4714
                                     } else {
4715 4715
                                         $invalid++;
4716
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4716
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4717 4717
                                     }
4718
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4719
-                                    $data['location_id'] = (int)$location->location_id;
4718
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4719
+                                    $data['location_id'] = (int) $location->location_id;
4720 4720
                                     
4721
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4722
-                                        $data['location_id'] = (int)$location->location_id;
4723
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4724
-                                        $data['location_id'] = (int)$location->location_id;
4725
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4726
-                                        $data['location_id'] = (int)$location->location_id;
4721
+                                    if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
4722
+                                        $data['location_id'] = (int) $location->location_id;
4723
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
4724
+                                        $data['location_id'] = (int) $location->location_id;
4725
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
4726
+                                        $data['location_id'] = (int) $location->location_id;
4727 4727
                                     }
4728 4728
                                     
4729
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4729
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4730 4730
                                         $updated++;
4731 4731
                                     } else {
4732 4732
                                         $invalid++;
4733
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4733
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4734 4734
                                     }
4735 4735
                                 } else {
4736
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4736
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4737 4737
                                         $created++;
4738 4738
                                     } else {
4739 4739
                                         $invalid++;
4740
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4740
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4741 4741
                                     }
4742 4742
                                 }
4743
-                            } elseif ( $import_choice == 'skip' ) {
4744
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4743
+                            } elseif ($import_choice == 'skip') {
4744
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4745 4745
                                     $skipped++;
4746
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4746
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4747 4747
                                     $skipped++;
4748 4748
                                 } else {
4749
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4749
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4750 4750
                                         $created++;
4751 4751
                                     } else {
4752 4752
                                         $invalid++;
4753
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4753
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4754 4754
                                     }
4755 4755
                                 }
4756 4756
                             } else {
4757 4757
                                 $invalid++;
4758
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4758
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4759 4759
                             }
4760 4760
                         }
4761 4761
                     }
@@ -4769,24 +4769,24 @@  discard block
 block discarded – undo
4769 4769
                 $json['invalid'] = $invalid;
4770 4770
                 $json['images'] = $images;
4771 4771
                 
4772
-                wp_send_json( $json );
4773
-            } else if ( $task == 'import_hood' ) {               
4772
+                wp_send_json($json);
4773
+            } else if ($task == 'import_hood') {               
4774 4774
                 if (!empty($file)) {
4775 4775
                     $columns = isset($file[0]) ? $file[0] : NULL;
4776 4776
                     
4777 4777
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4778 4778
                         $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4779
-                        wp_send_json( $json );
4779
+                        wp_send_json($json);
4780 4780
                     }
4781 4781
                     
4782 4782
                     $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4783
-                    $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' );
4783
+                    $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');
4784 4784
                     for ($i = 1; $i <= $limit; $i++) {
4785 4785
                         $index = $processed + $i;
4786 4786
                         
4787 4787
                         if (isset($file[$index])) {
4788 4788
                             $row = $file[$index];
4789
-                            $row = array_map( 'trim', $row );
4789
+                            $row = array_map('trim', $row);
4790 4790
                             $data = array();
4791 4791
                             
4792 4792
                             foreach ($columns as $c => $column) {
@@ -4797,20 +4797,20 @@  discard block
 block discarded – undo
4797 4797
 
4798 4798
                             if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4799 4799
                                 $invalid++;
4800
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4800
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4801 4801
                                 continue;
4802 4802
                             }
4803 4803
                             
4804 4804
                             $location_info = array();
4805
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4806
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4805
+                            if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
4806
+                                $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
4807 4807
                             } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4808 4808
                                 $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4809 4809
                             }
4810 4810
 
4811 4811
                             if (empty($location_info)) {
4812 4812
                                 $invalid++;
4813
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4813
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4814 4814
                                 continue;
4815 4815
                             }
4816 4816
                             
@@ -4825,35 +4825,35 @@  discard block
 block discarded – undo
4825 4825
                             $hood_data['hood_longitude'] = $data['longitude'];
4826 4826
                             $hood_data['hood_location_id'] = $location_id;
4827 4827
                                     
4828
-                            if ( $import_choice == 'update' ) {
4829
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4830
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4828
+                            if ($import_choice == 'update') {
4829
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4830
+                                    $hood_data['hood_id'] = (int) $data['neighbourhood_id'];
4831 4831
                                     
4832 4832
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4833 4833
                                         $updated++;
4834 4834
                                     } else {
4835 4835
                                         $invalid++;
4836
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4836
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4837 4837
                                     }
4838 4838
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4839
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4839
+                                    $hood_data['hood_id'] = (int) $neighbourhood->hood_id;
4840 4840
                                     
4841 4841
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4842 4842
                                         $updated++;
4843 4843
                                     } else {
4844 4844
                                         $invalid++;
4845
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4845
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4846 4846
                                     }
4847 4847
                                 } else {
4848 4848
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4849 4849
                                         $created++;
4850 4850
                                     } else {
4851 4851
                                         $invalid++;
4852
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4852
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4853 4853
                                     }
4854 4854
                                 }
4855
-                            } elseif ( $import_choice == 'skip' ) {
4856
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4855
+                            } elseif ($import_choice == 'skip') {
4856
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4857 4857
                                     $skipped++;
4858 4858
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4859 4859
                                     $skipped++;
@@ -4863,12 +4863,12 @@  discard block
 block discarded – undo
4863 4863
                                         $created++;
4864 4864
                                     } else {
4865 4865
                                         $invalid++;
4866
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4866
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4867 4867
                                     }
4868 4868
                                 }
4869 4869
                             } else {
4870 4870
                                 $invalid++;
4871
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4871
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4872 4872
                             }
4873 4873
                         }
4874 4874
                     }
@@ -4882,7 +4882,7 @@  discard block
 block discarded – undo
4882 4882
                 $json['invalid'] = $invalid;
4883 4883
                 $json['images'] = $images;
4884 4884
                 
4885
-                wp_send_json( $json );
4885
+                wp_send_json($json);
4886 4886
             }
4887 4887
         }
4888 4888
         break;
@@ -4926,29 +4926,29 @@  discard block
 block discarded – undo
4926 4926
  * }
4927 4927
  * @return int|bool Term id when success, false when fail.
4928 4928
  */
4929
-function geodir_imex_insert_term( $taxonomy, $term_data ) {
4930
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4929
+function geodir_imex_insert_term($taxonomy, $term_data) {
4930
+	if (empty($taxonomy) || empty($term_data)) {
4931 4931
 		return false;
4932 4932
 	}
4933 4933
 	
4934
-	$term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : '';
4934
+	$term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : '';
4935 4935
 	$args = array();
4936
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4937
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4938
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4936
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4937
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4938
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4939 4939
 	
4940
-	if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
4941
-		$term_args = array_merge( $term_data, $args );
4942
-		$defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4943
-		$term_args = wp_parse_args( $term_args, $defaults );
4944
-		$term_args = sanitize_term( $term_args, $taxonomy, 'db' );
4945
-		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4940
+	if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
4941
+		$term_args = array_merge($term_data, $args);
4942
+		$defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4943
+		$term_args = wp_parse_args($term_args, $defaults);
4944
+		$term_args = sanitize_term($term_args, $taxonomy, 'db');
4945
+		$args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args);
4946 4946
 	}
4947 4947
 	
4948
-    if( !empty( $term ) ) {
4949
-		$result = wp_insert_term( $term, $taxonomy, $args );
4950
-        if( !is_wp_error( $result ) ) {
4951
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4948
+    if (!empty($term)) {
4949
+		$result = wp_insert_term($term, $taxonomy, $args);
4950
+        if (!is_wp_error($result)) {
4951
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4952 4952
         }
4953 4953
     }
4954 4954
 	
@@ -4978,36 +4978,36 @@  discard block
 block discarded – undo
4978 4978
  * }
4979 4979
  * @return int|bool Term id when success, false when fail.
4980 4980
  */
4981
-function geodir_imex_update_term( $taxonomy, $term_data ) {
4982
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4981
+function geodir_imex_update_term($taxonomy, $term_data) {
4982
+	if (empty($taxonomy) || empty($term_data)) {
4983 4983
 		return false;
4984 4984
 	}
4985 4985
 	
4986
-	$term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0;
4986
+	$term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0;
4987 4987
 	
4988 4988
 	$args = array();
4989
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4990
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4991
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4989
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4990
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4991
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4992 4992
 	
4993
-	if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
4993
+	if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
4994 4994
 		$term_data['term_id'] = $term_info['term_id'];
4995 4995
 		
4996
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4996
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
4997 4997
 		
4998
-		if( !is_wp_error( $result ) ) {
4999
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4998
+		if (!is_wp_error($result)) {
4999
+            return isset($result['term_id']) ? $result['term_id'] : 0;
5000 5000
         }
5001
-	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
5001
+	} else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
5002 5002
 		$term_data['term_id'] = $term_info['term_id'];
5003 5003
 		
5004
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
5004
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
5005 5005
 		
5006
-		if( !is_wp_error( $result ) ) {
5007
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
5006
+		if (!is_wp_error($result)) {
5007
+            return isset($result['term_id']) ? $result['term_id'] : 0;
5008 5008
         }
5009 5009
 	} else {
5010
-		return geodir_imex_insert_term( $taxonomy, $term_data );
5010
+		return geodir_imex_insert_term($taxonomy, $term_data);
5011 5011
 	}
5012 5012
 	
5013 5013
 	return false;
@@ -5026,20 +5026,20 @@  discard block
 block discarded – undo
5026 5026
  * @param string $post_type Post type.
5027 5027
  * @return int Posts count.
5028 5028
  */
5029
-function geodir_get_posts_count( $post_type ) {
5029
+function geodir_get_posts_count($post_type) {
5030 5030
     global $wpdb, $plugin_prefix;
5031 5031
 
5032
-    if ( !post_type_exists( $post_type ) ) {
5032
+    if (!post_type_exists($post_type)) {
5033 5033
         return 0;
5034 5034
     }
5035 5035
         
5036
-    $table = $plugin_prefix . $post_type . '_detail';
5036
+    $table = $plugin_prefix.$post_type.'_detail';
5037 5037
 
5038 5038
     // Skip listing with statuses trash, auto-draft etc...
5039 5039
     $skip_statuses = geodir_imex_export_skip_statuses();
5040 5040
     $where_statuses = '';
5041
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5042
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5041
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5042
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5043 5043
     }
5044 5044
     
5045 5045
     /**
@@ -5050,11 +5050,11 @@  discard block
 block discarded – undo
5050 5050
      *
5051 5051
      * @param string $where SQL where clause part.
5052 5052
      */
5053
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
5053
+    $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
5054 5054
 
5055
-    $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 );
5055
+    $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);
5056 5056
 
5057
-    $posts_count = (int)$wpdb->get_var( $query );
5057
+    $posts_count = (int) $wpdb->get_var($query);
5058 5058
     
5059 5059
     /**
5060 5060
      * Modify returned post counts for the current post type.
@@ -5065,7 +5065,7 @@  discard block
 block discarded – undo
5065 5065
      * @param int $posts_count Post counts.
5066 5066
      * @param string $post_type Post type.
5067 5067
      */
5068
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
5068
+    $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
5069 5069
 
5070 5070
     return $posts_count;
5071 5071
 }
@@ -5087,19 +5087,19 @@  discard block
 block discarded – undo
5087 5087
  * @param int $page_no Page number. Default 0.
5088 5088
  * @return array Array of posts data.
5089 5089
  */
5090
-function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {	
5090
+function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {	
5091 5091
 	global $wp_filesystem;
5092 5092
 
5093
-	$posts = geodir_get_export_posts( $post_type, $per_page, $page_no );
5093
+	$posts = geodir_get_export_posts($post_type, $per_page, $page_no);
5094 5094
 
5095 5095
 	$csv_rows = array();
5096 5096
 	
5097
-	if ( !empty( $posts ) ) {
5098
-		$is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' );
5097
+	if (!empty($posts)) {
5098
+		$is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
5099 5099
 		$location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5100
-		$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5100
+		$location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
5101 5101
 		$neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5102
-		$is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5102
+		$is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
5103 5103
 		$is_events_active = function_exists('geodir_event_plugin_activated') ? true : false;
5104 5104
 		$is_custom_posts_active = function_exists('geodir_custom_post_type_plugin_activated') ? true : false;
5105 5105
 		
@@ -5114,7 +5114,7 @@  discard block
 block discarded – undo
5114 5114
 		$csv_row[] = 'default_category';
5115 5115
 		$csv_row[] = 'post_tags';
5116 5116
 		$csv_row[] = 'post_type';
5117
-		if ( $post_type == 'gd_event' ) {
5117
+		if ($post_type == 'gd_event') {
5118 5118
 			$csv_row[] = 'event_date';
5119 5119
 			$csv_row[] = 'event_enddate';
5120 5120
 			$csv_row[] = 'starttime';
@@ -5166,25 +5166,25 @@  discard block
 block discarded – undo
5166 5166
 		$csv_row[] = 'geodir_video';
5167 5167
 		$csv_row[] = 'geodir_special_offers';
5168 5168
 		if ($is_events_active || $is_custom_posts_active) {
5169
-			$csv_row[] = !empty($post_ypes[$post_type]['linkable_to']) ? 'linked_' . $post_ypes[$post_type]['linkable_to'] . '_ID' : 'linked_cpt_ID';
5169
+			$csv_row[] = !empty($post_ypes[$post_type]['linkable_to']) ? 'linked_'.$post_ypes[$post_type]['linkable_to'].'_ID' : 'linked_cpt_ID';
5170 5170
 		}
5171 5171
 		// WPML
5172
-		$is_wpml = geodir_wpml_is_post_type_translated( $post_type );
5172
+		$is_wpml = geodir_wpml_is_post_type_translated($post_type);
5173 5173
 		if ($is_wpml) {
5174 5174
 			$csv_row[] = 'language';
5175 5175
 			$csv_row[] = 'original_post_id';
5176 5176
 		}
5177 5177
 		// WPML
5178 5178
 
5179
-		$custom_fields = geodir_imex_get_custom_fields( $post_type );
5180
-		if ( !empty( $custom_fields ) ) {
5181
-			foreach ( $custom_fields as $custom_field ) {
5179
+		$custom_fields = geodir_imex_get_custom_fields($post_type);
5180
+		if (!empty($custom_fields)) {
5181
+			foreach ($custom_fields as $custom_field) {
5182 5182
 				$csv_row[] = $custom_field->htmlvar_name;
5183 5183
 			}
5184 5184
 		}
5185 5185
 
5186 5186
 		// Export franchise fields
5187
-		$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
5187
+		$is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
5188 5188
 		if ($is_franchise_active) {
5189 5189
 			$csv_row[] = 'gd_is_franchise';
5190 5190
 			$csv_row[] = 'gd_franchise_lock';
@@ -5205,28 +5205,28 @@  discard block
 block discarded – undo
5205 5205
 		$csv_rows[] = $csv_row;
5206 5206
 
5207 5207
 		$images_count = 5;
5208
-        $xx=0;
5209
-		foreach ( $posts as $post ) {$xx++;
5208
+        $xx = 0;
5209
+		foreach ($posts as $post) {$xx++;
5210 5210
 			$post_id = $post['ID'];
5211 5211
 			
5212
-			$gd_post_info = geodir_get_post_info( $post_id );
5213
-			$post_info = (array)$gd_post_info;
5212
+			$gd_post_info = geodir_get_post_info($post_id);
5213
+			$post_info = (array) $gd_post_info;
5214 5214
 			
5215
-			$taxonomy_category = $post_type . 'category';
5216
-			$taxonomy_tags = $post_type . '_tags';
5215
+			$taxonomy_category = $post_type.'category';
5216
+			$taxonomy_tags = $post_type.'_tags';
5217 5217
 			
5218 5218
 			$post_category = '';
5219 5219
 			$default_category_id = $gd_post_info->default_category;
5220 5220
 			$default_category = '';
5221 5221
 			$post_tags = '';
5222
-			$terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) );
5222
+			$terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags));
5223 5223
 			
5224
-			if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
5224
+			if (!empty($terms) && !is_wp_error($terms)) {
5225 5225
 				$post_category = array();
5226 5226
 				$post_tags = array();
5227 5227
 			
5228
-				foreach ( $terms as $term ) {
5229
-					if ( $term->taxonomy == $taxonomy_category ) {
5228
+				foreach ($terms as $term) {
5229
+					if ($term->taxonomy == $taxonomy_category) {
5230 5230
 						$post_category[] = $term->name;
5231 5231
 						
5232 5232
 						if ($default_category_id == $term->term_id) {
@@ -5234,7 +5234,7 @@  discard block
 block discarded – undo
5234 5234
 						}
5235 5235
 					}
5236 5236
 					
5237
-					if ( $term->taxonomy == $taxonomy_tags ) {
5237
+					if ($term->taxonomy == $taxonomy_tags) {
5238 5238
 						$post_tags[] = $term->name;
5239 5239
 					}
5240 5240
 				}
@@ -5242,47 +5242,47 @@  discard block
 block discarded – undo
5242 5242
 				if (empty($default_category) && !empty($post_category)) {
5243 5243
 					$default_category = $post_category[0]; // Set first one as default category.
5244 5244
 				}
5245
-				$post_category = !empty( $post_category ) ? implode( ',', $post_category ) : '';
5246
-				$post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : '';
5245
+				$post_category = !empty($post_category) ? implode(',', $post_category) : '';
5246
+				$post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
5247 5247
 			}
5248 5248
 
5249 5249
 			// Franchise data
5250
-			if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
5250
+			if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
5251 5251
 				$franchise_id = $post_info['franchise'];
5252 5252
 				$gd_franchise_info = geodir_get_post_info($franchise_id);
5253 5253
 
5254 5254
 				if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
5255
-					$franchise_info = (array)$gd_franchise_info;
5255
+					$franchise_info = (array) $gd_franchise_info;
5256 5256
 					$locked_fields = geodir_franchise_get_locked_fields($franchise_id, true);
5257 5257
 					
5258 5258
 					if (!empty($locked_fields)) {
5259
-						foreach( $locked_fields as $locked_field) {
5259
+						foreach ($locked_fields as $locked_field) {
5260 5260
 							if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
5261 5261
 								$post_info[$locked_field] = $franchise_info[$locked_field];
5262 5262
 							}
5263 5263
 							
5264 5264
 							if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
5265
-								$franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) );
5265
+								$franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags));
5266 5266
 			
5267
-								if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
5267
+								if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
5268 5268
 									$franchise_post_category = array();
5269 5269
 									$franchise_post_tags = array();
5270 5270
 								
5271
-									foreach ( $franchise_terms as $franchise_term ) {
5272
-										if ( $franchise_term->taxonomy == $taxonomy_category ) {
5271
+									foreach ($franchise_terms as $franchise_term) {
5272
+										if ($franchise_term->taxonomy == $taxonomy_category) {
5273 5273
 											$franchise_post_category[] = $franchise_term->name;
5274 5274
 										}
5275 5275
 										
5276
-										if ( $franchise_term->taxonomy == $taxonomy_tags ) {
5276
+										if ($franchise_term->taxonomy == $taxonomy_tags) {
5277 5277
 											$franchise_post_tags[] = $franchise_term->name;
5278 5278
 										}
5279 5279
 									}
5280 5280
 									
5281 5281
 									if (in_array($taxonomy_category, $locked_fields)) {
5282
-										$post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : '';
5282
+										$post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
5283 5283
 									}
5284 5284
 									if (in_array('post_tags', $locked_fields)) {
5285
-										$post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : '';
5285
+										$post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
5286 5286
 									}
5287 5287
 								}
5288 5288
 							}
@@ -5291,18 +5291,18 @@  discard block
 block discarded – undo
5291 5291
 				}
5292 5292
 			}
5293 5293
 						
5294
-			$post_images = geodir_get_images( $post_id );
5294
+			$post_images = geodir_get_images($post_id);
5295 5295
 			$current_images = array();
5296
-			if ( !empty( $post_images ) ) {
5297
-				foreach ( $post_images as $post_image ) {
5298
-					$post_image = (array)$post_image;
5299
-					$image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : '';
5300
-					if ( $image ) {
5296
+			if (!empty($post_images)) {
5297
+				foreach ($post_images as $post_image) {
5298
+					$post_image = (array) $post_image;
5299
+					$image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : '';
5300
+					if ($image) {
5301 5301
 						$current_images[] = $image;
5302 5302
 					}
5303 5303
 				}
5304 5304
 				
5305
-				$images_count = max( $images_count, count( $current_images ) );
5305
+				$images_count = max($images_count, count($current_images));
5306 5306
 			}
5307 5307
 
5308 5308
 			$csv_row = array();
@@ -5314,7 +5314,7 @@  discard block
 block discarded – undo
5314 5314
 			$csv_row[] = $default_category; // default_category
5315 5315
 			$csv_row[] = $post_tags; // post_tags
5316 5316
 			$csv_row[] = $post_type; // post_type
5317
-			if ( $post_type == 'gd_event' ) {
5317
+			if ($post_type == 'gd_event') {
5318 5318
 				$event_data = geodir_imex_get_event_data($post, $gd_post_info);
5319 5319
 				$csv_row[] = $event_data['event_date']; // event_date
5320 5320
 				$csv_row[] = $event_data['event_enddate']; // enddate
@@ -5335,12 +5335,12 @@  discard block
 block discarded – undo
5335 5335
 				$csv_row[] = $event_data['recurring_end_date']; // repeat_end
5336 5336
 			}
5337 5337
 			$csv_row[] = $post_info['post_status']; // post_status
5338
-			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5338
+			$csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5339 5339
             if ($is_claim_active) {
5340
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5340
+                $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed
5341 5341
             }
5342 5342
 			if ($is_payment_plugin) {
5343
-				$csv_row[] = (int)$post_info['package_id']; // package_id
5343
+				$csv_row[] = (int) $post_info['package_id']; // package_id
5344 5344
 				$csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days
5345 5345
 				$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
5346 5346
 			}
@@ -5376,18 +5376,18 @@  discard block
 block discarded – undo
5376 5376
 			$csv_row[] = stripslashes($post_info['geodir_video']); // geodir_video
5377 5377
 			$csv_row[] = stripslashes($post_info['geodir_special_offers']); // geodir_special_offers
5378 5378
 			if ($is_events_active || $is_custom_posts_active) {
5379
-				$csv_row[] = !empty($post_info['geodir_link_business']) ? (int)$post_info['geodir_link_business'] : ''; // linked business
5379
+				$csv_row[] = !empty($post_info['geodir_link_business']) ? (int) $post_info['geodir_link_business'] : ''; // linked business
5380 5380
 			}
5381 5381
 			// WPML
5382 5382
 			if ($is_wpml) {
5383
-				$csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type );
5384
-				$csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type );
5383
+				$csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type);
5384
+				$csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type);
5385 5385
 			}
5386 5386
 			// WPML
5387 5387
 			
5388
-			if ( !empty( $custom_fields ) ) {
5389
-				foreach ( $custom_fields as $custom_field ) {
5390
-					$csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : '';
5388
+			if (!empty($custom_fields)) {
5389
+				foreach ($custom_fields as $custom_field) {
5390
+					$csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : '';
5391 5391
 				}
5392 5392
 			}
5393 5393
 			
@@ -5398,15 +5398,15 @@  discard block
 block discarded – undo
5398 5398
 				$franchise = '';
5399 5399
 					
5400 5400
 				if (geodir_franchise_pkg_is_active($gd_post_info)) {
5401
-					$gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true );
5402
-					$locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : '';
5401
+					$gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true);
5402
+					$locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : '';
5403 5403
 					$locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
5404
-					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id
5404
+					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id
5405 5405
 				}
5406 5406
 				
5407
-				$csv_row[] = (int)$gd_is_franchise; // gd_is_franchise
5407
+				$csv_row[] = (int) $gd_is_franchise; // gd_is_franchise
5408 5408
 				$csv_row[] = $locaked_fields; // gd_franchise_lock fields
5409
-				$csv_row[] = (int)$franchise; // franchise id
5409
+				$csv_row[] = (int) $franchise; // franchise id
5410 5410
 			}
5411 5411
             
5412 5412
             /**
@@ -5420,15 +5420,15 @@  discard block
 block discarded – undo
5420 5420
              */
5421 5421
             $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5422 5422
 			
5423
-			for ( $c = 0; $c < $images_count; $c++ ) {
5424
-				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
5423
+			for ($c = 0; $c < $images_count; $c++) {
5424
+				$csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE
5425 5425
 			}
5426 5426
 			
5427 5427
 			$csv_rows[] = $csv_row;
5428 5428
 
5429 5429
 		}
5430 5430
 
5431
-		for ( $c = 0; $c < $images_count; $c++ ) {
5431
+		for ($c = 0; $c < $images_count; $c++) {
5432 5432
 			$csv_rows[0][] = 'IMAGE';
5433 5433
 		}
5434 5434
 	}
@@ -5450,30 +5450,30 @@  discard block
 block discarded – undo
5450 5450
  * @param int $page_no Page number. Default 0.
5451 5451
  * @return array Array of posts data.
5452 5452
  */
5453
-function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5453
+function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
5454 5454
     global $wpdb, $plugin_prefix;
5455 5455
 
5456
-    if ( ! post_type_exists( $post_type ) )
5456
+    if (!post_type_exists($post_type))
5457 5457
         return new stdClass;
5458 5458
         
5459
-    $table = $plugin_prefix . $post_type . '_detail';
5459
+    $table = $plugin_prefix.$post_type.'_detail';
5460 5460
 
5461 5461
     $limit = '';
5462
-    if ( $per_page > 0 && $page_no > 0 ) {
5463
-        $offset = ( $page_no - 1 ) * $per_page;
5462
+    if ($per_page > 0 && $page_no > 0) {
5463
+        $offset = ($page_no - 1) * $per_page;
5464 5464
         
5465
-        if ( $offset > 0 ) {
5466
-            $limit = " LIMIT " . $offset . "," . $per_page;
5465
+        if ($offset > 0) {
5466
+            $limit = " LIMIT ".$offset.",".$per_page;
5467 5467
         } else {
5468
-            $limit = " LIMIT " . $per_page;
5468
+            $limit = " LIMIT ".$per_page;
5469 5469
         }
5470 5470
     }
5471 5471
 
5472 5472
     // Skip listing with statuses trash, auto-draft etc...
5473 5473
     $skip_statuses = geodir_imex_export_skip_statuses();
5474 5474
     $where_statuses = '';
5475
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5476
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5475
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5476
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5477 5477
     }
5478 5478
     
5479 5479
     /**
@@ -5484,9 +5484,9 @@  discard block
 block discarded – undo
5484 5484
      *
5485 5485
      * @param string $where SQL where clause part.
5486 5486
      */
5487
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5487
+    $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5488 5488
 
5489
-    $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 );
5489
+    $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);
5490 5490
     /**
5491 5491
      * Modify returned posts SQL query for the current post type.
5492 5492
      *
@@ -5496,8 +5496,8 @@  discard block
 block discarded – undo
5496 5496
      * @param int $query The SQL query.
5497 5497
      * @param string $post_type Post type.
5498 5498
      */
5499
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5500
-    $results = (array)$wpdb->get_results( $query, ARRAY_A );
5499
+    $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
5500
+    $results = (array) $wpdb->get_results($query, ARRAY_A);
5501 5501
 
5502 5502
     /**
5503 5503
      * Modify returned post results for the current post type.
@@ -5508,7 +5508,7 @@  discard block
 block discarded – undo
5508 5508
      * @param object $results An object containing all post ids.
5509 5509
      * @param string $post_type Post type.
5510 5510
      */
5511
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5511
+    return apply_filters('geodir_export_posts', $results, $post_type);
5512 5512
 }
5513 5513
 
5514 5514
 /**
@@ -5526,24 +5526,24 @@  discard block
 block discarded – undo
5526 5526
  * @param string $post_type Post type.
5527 5527
  * @return string The SQL query.
5528 5528
  */
5529
-function geodir_imex_get_events_query( $query, $post_type ) {
5530
-    if ( $post_type == 'gd_event' ) {
5529
+function geodir_imex_get_events_query($query, $post_type) {
5530
+    if ($post_type == 'gd_event') {
5531 5531
         global $wpdb, $plugin_prefix;
5532 5532
         
5533
-        $table = $plugin_prefix . $post_type . '_detail';
5533
+        $table = $plugin_prefix.$post_type.'_detail';
5534 5534
         $schedule_table = EVENT_SCHEDULE;
5535 5535
         
5536 5536
         // Skip listing with statuses trash, auto-draft etc...
5537 5537
         $skip_statuses = geodir_imex_export_skip_statuses();
5538 5538
         $where_statuses = '';
5539
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5540
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5539
+        if (!empty($skip_statuses) && is_array($skip_statuses)) {
5540
+            $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5541 5541
         }
5542 5542
         
5543 5543
         /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5544
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5544
+        $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5545 5545
 
5546
-        $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 );
5546
+        $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);
5547 5547
     }
5548 5548
 
5549 5549
     return $query;
@@ -5567,35 +5567,35 @@  discard block
 block discarded – undo
5567 5567
  * @param  string $post_type Post type.
5568 5568
  * @return int Total terms count.
5569 5569
  */
5570
-function geodir_get_terms_count( $post_type ) {
5571
-    $args = array( 'hide_empty' => 0 );
5570
+function geodir_get_terms_count($post_type) {
5571
+    $args = array('hide_empty' => 0);
5572 5572
 
5573
-    remove_all_filters( 'get_terms' );
5573
+    remove_all_filters('get_terms');
5574 5574
 
5575
-    $taxonomy = $post_type . 'category';
5575
+    $taxonomy = $post_type.'category';
5576 5576
 
5577 5577
     // WPML
5578 5578
     $is_wpml = geodir_is_wpml();
5579 5579
     $active_lang = 'all';
5580
-    if ( $is_wpml ) {
5580
+    if ($is_wpml) {
5581 5581
         global $sitepress;
5582 5582
         $active_lang = $sitepress->get_current_language();
5583 5583
         
5584
-        if ( $active_lang != 'all' ) {
5585
-            $sitepress->switch_lang( 'all', true );
5584
+        if ($active_lang != 'all') {
5585
+            $sitepress->switch_lang('all', true);
5586 5586
         }
5587 5587
     }
5588 5588
     // WPML
5589 5589
             
5590
-    $count_terms = wp_count_terms( $taxonomy, $args );
5590
+    $count_terms = wp_count_terms($taxonomy, $args);
5591 5591
 
5592 5592
     // WPML
5593
-    if ( $is_wpml && $active_lang !== 'all' ) {
5593
+    if ($is_wpml && $active_lang !== 'all') {
5594 5594
         global $sitepress;
5595
-        $sitepress->switch_lang( $active_lang, true );
5595
+        $sitepress->switch_lang($active_lang, true);
5596 5596
     }
5597 5597
     // WPML
5598
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5598
+    $count_terms = !is_wp_error($count_terms) ? $count_terms : 0;
5599 5599
      
5600 5600
     return $count_terms;
5601 5601
 }
@@ -5612,23 +5612,23 @@  discard block
 block discarded – undo
5612 5612
  * @param int $page_no Page number. Default 0.
5613 5613
  * @return array Array of terms data.
5614 5614
  */
5615
-function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
5616
-	$args = array( 'hide_empty' => 0, 'orderby' => 'id' );
5615
+function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
5616
+	$args = array('hide_empty' => 0, 'orderby' => 'id');
5617 5617
 	
5618
-	remove_all_filters( 'get_terms' );
5618
+	remove_all_filters('get_terms');
5619 5619
 	
5620
-	$taxonomy = $post_type . 'category';
5620
+	$taxonomy = $post_type.'category';
5621 5621
 	
5622
-	if ( $per_page > 0 && $page_no > 0 ) {
5623
-		$args['offset'] = ( $page_no - 1 ) * $per_page;
5622
+	if ($per_page > 0 && $page_no > 0) {
5623
+		$args['offset'] = ($page_no - 1) * $per_page;
5624 5624
 		$args['number'] = $per_page;
5625 5625
 	}
5626 5626
 	
5627
-	$terms = get_terms( $taxonomy, $args );
5627
+	$terms = get_terms($taxonomy, $args);
5628 5628
 
5629 5629
 	$csv_rows = array();
5630 5630
 	
5631
-	if ( !empty( $terms ) ) {
5631
+	if (!empty($terms)) {
5632 5632
 		$csv_row = array();
5633 5633
 		$csv_row[] = 'cat_id';
5634 5634
 		$csv_row[] = 'cat_name';
@@ -5637,7 +5637,7 @@  discard block
 block discarded – undo
5637 5637
 		$csv_row[] = 'cat_parent';
5638 5638
 		$csv_row[] = 'cat_schema';
5639 5639
         // WPML
5640
-		$is_wpml = geodir_wpml_is_taxonomy_translated( $taxonomy );
5640
+		$is_wpml = geodir_wpml_is_taxonomy_translated($taxonomy);
5641 5641
 		if ($is_wpml) {
5642 5642
 			$csv_row[] = 'cat_language';
5643 5643
             $csv_row[] = 'cat_id_original';
@@ -5650,16 +5650,16 @@  discard block
 block discarded – undo
5650 5650
 		
5651 5651
 		$csv_rows[] = $csv_row;
5652 5652
 		
5653
-		foreach ( $terms as $term ) {
5654
-			$cat_icon = geodir_get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type );
5655
-			$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
5653
+		foreach ($terms as $term) {
5654
+			$cat_icon = geodir_get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type);
5655
+			$cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
5656 5656
 			
5657
-			$cat_image = geodir_get_default_catimage( $term->term_id, $post_type );
5658
-			$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; 
5657
+			$cat_image = geodir_get_default_catimage($term->term_id, $post_type);
5658
+			$cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; 
5659 5659
 			
5660 5660
 			$cat_parent = '';
5661
-			if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
5662
-				$parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy );
5661
+			if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
5662
+				$parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
5663 5663
 				$cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : '';
5664 5664
 			}
5665 5665
 			
@@ -5669,15 +5669,15 @@  discard block
 block discarded – undo
5669 5669
 			$csv_row[] = $term->slug;
5670 5670
 			$csv_row[] = $post_type;
5671 5671
 			$csv_row[] = $cat_parent;
5672
-			$csv_row[] = geodir_get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5672
+			$csv_row[] = geodir_get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type);
5673 5673
             // WPML
5674 5674
 			if ($is_wpml) {
5675
-				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5676
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5675
+				$csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy);
5676
+                $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy);
5677 5677
 			}
5678 5678
 			// WPML
5679 5679
 			$csv_row[] = $term->description;
5680
-			$csv_row[] = geodir_get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type );
5680
+			$csv_row[] = geodir_get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type);
5681 5681
 			$csv_row[] = $cat_image;
5682 5682
 			$csv_row[] = $cat_icon;
5683 5683
 			
@@ -5696,10 +5696,10 @@  discard block
 block discarded – undo
5696 5696
  * @param  bool $relative True for relative path & False for absolute path.
5697 5697
  * @return string Path to the cache directory.
5698 5698
  */
5699
-function geodir_path_import_export( $relative = true ) {
5699
+function geodir_path_import_export($relative = true) {
5700 5700
 	$upload_dir = wp_upload_dir();
5701 5701
 	
5702
-	return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache';
5702
+	return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache';
5703 5703
 }
5704 5704
 
5705 5705
 /**
@@ -5715,8 +5715,8 @@  discard block
 block discarded – undo
5715 5715
  * @param  bool $clear If true then it overwrite data otherwise add rows at the end of file.
5716 5716
  * @return bool true if success otherwise false.
5717 5717
  */
5718
-function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
5719
-	if ( empty( $csv_data ) ) {
5718
+function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
5719
+	if (empty($csv_data)) {
5720 5720
 		return false;
5721 5721
 	}
5722 5722
 	
@@ -5724,17 +5724,17 @@  discard block
 block discarded – undo
5724 5724
 	
5725 5725
 	$mode = $clear ? 'w+' : 'a+';
5726 5726
 	
5727
-	if ( function_exists( 'fputcsv' ) ) {
5728
-		$file = fopen( $file_path, $mode );
5729
-		foreach( $csv_data as $csv_row ) {
5727
+	if (function_exists('fputcsv')) {
5728
+		$file = fopen($file_path, $mode);
5729
+		foreach ($csv_data as $csv_row) {
5730 5730
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5731
-			$write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' );
5731
+			$write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"');
5732 5732
 		}
5733
-		fclose( $file );
5733
+		fclose($file);
5734 5734
 	} else {
5735
-		foreach( $csv_data as $csv_row ) {
5735
+		foreach ($csv_data as $csv_row) {
5736 5736
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5737
-			$wp_filesystem->put_contents( $file_path, $csv_row );
5737
+			$wp_filesystem->put_contents($file_path, $csv_row);
5738 5738
 		}
5739 5739
 	}
5740 5740
 		
@@ -5752,14 +5752,14 @@  discard block
 block discarded – undo
5752 5752
  * @param  string $file Full path to file.
5753 5753
  * @return int No of file rows.
5754 5754
  */
5755
-function geodir_import_export_line_count( $file ) {
5755
+function geodir_import_export_line_count($file) {
5756 5756
 	global $wp_filesystem;
5757 5757
 	
5758
-	if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
5759
-		$contents = $wp_filesystem->get_contents_array( $file );
5758
+	if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
5759
+		$contents = $wp_filesystem->get_contents_array($file);
5760 5760
 		
5761
-		if ( !empty( $contents ) && is_array( $contents ) ) {
5762
-			return count( $contents ) - 1;
5761
+		if (!empty($contents) && is_array($contents)) {
5762
+			return count($contents) - 1;
5763 5763
 		}
5764 5764
 	}
5765 5765
 	
@@ -5776,11 +5776,11 @@  discard block
 block discarded – undo
5776 5776
  * @param string $post_type The post type.
5777 5777
  * @return object Queried object.
5778 5778
  */
5779
-function geodir_imex_get_custom_fields( $post_type ) {
5779
+function geodir_imex_get_custom_fields($post_type) {
5780 5780
 	global $wpdb;
5781 5781
 	 
5782
-	$sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
5783
-	$rows = $wpdb->get_results( $sql );
5782
+	$sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
5783
+	$rows = $wpdb->get_results($sql);
5784 5784
 	 
5785 5785
 	return $rows;
5786 5786
 }
@@ -5796,10 +5796,10 @@  discard block
 block discarded – undo
5796 5796
  * @return array Event data array.
5797 5797
  */
5798 5798
 function geodir_imex_get_event_data($post, $gd_post_info) {
5799
-	$event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : '';
5799
+	$event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
5800 5800
 	$event_enddate = $event_date;
5801
-	$starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : '';
5802
-	$endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : '';
5801
+	$starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
5802
+	$endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
5803 5803
 	
5804 5804
 	$is_recurring_event = '';
5805 5805
 	$event_duration_days = '';
@@ -5816,15 +5816,15 @@  discard block
 block discarded – undo
5816 5816
 		
5817 5817
 	$recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array();
5818 5818
 	if (!empty($recurring_data)) {
5819
-		$event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date;
5820
-		$event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date;
5821
-		$starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime;
5822
-		$endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime;
5819
+		$event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
5820
+		$event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
5821
+		$starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
5822
+		$endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
5823 5823
 		$is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : '';
5824 5824
 		$different_times = !empty($recurring_data['different_times']) ? true : false;
5825 5825
 	
5826
-		$recurring_pkg = geodir_event_recurring_pkg( $gd_post_info );
5827
-		$is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true;
5826
+		$recurring_pkg = geodir_event_recurring_pkg($gd_post_info);
5827
+		$is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true;
5828 5828
 			
5829 5829
 		if ($recurring_pkg && $is_recurring) {
5830 5830
 			$recurring_dates = $event_date;
@@ -5834,13 +5834,13 @@  discard block
 block discarded – undo
5834 5834
 			$recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
5835 5835
 			
5836 5836
 			if (!empty($recurring_data['event_recurring_dates'])) {
5837
-				$event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
5837
+				$event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
5838 5838
 				
5839 5839
 				if (!empty($event_recurring_dates)) {
5840 5840
 					$recurring_dates = array();
5841 5841
 					
5842 5842
 					foreach ($event_recurring_dates as $date) {
5843
-						$recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) );
5843
+						$recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
5844 5844
 					}
5845 5845
 					
5846 5846
 					$recurring_dates = implode(",", $recurring_dates);
@@ -5856,7 +5856,7 @@  discard block
 block discarded – undo
5856 5856
 						$times = array();
5857 5857
 						
5858 5858
 						foreach ($recurring_data['starttimes'] as $time) {
5859
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5859
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5860 5860
 						}
5861 5861
 						
5862 5862
 						$event_starttimes = implode(",", $times);
@@ -5866,7 +5866,7 @@  discard block
 block discarded – undo
5866 5866
 						$times = array();
5867 5867
 						
5868 5868
 						foreach ($recurring_data['endtimes'] as $time) {
5869
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5869
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5870 5870
 						}
5871 5871
 						
5872 5872
 						$event_endtimes = implode(",", $times);
@@ -5878,8 +5878,8 @@  discard block
 block discarded – undo
5878 5878
 					}
5879 5879
 				}
5880 5880
 			} else {
5881
-				$event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1;
5882
-				$recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5881
+				$event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1;
5882
+				$recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5883 5883
 				
5884 5884
 				if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
5885 5885
 					$week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
@@ -5895,11 +5895,11 @@  discard block
 block discarded – undo
5895 5895
 				}
5896 5896
 				
5897 5897
 				$recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
5898
-				if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
5899
-					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : '';
5898
+				if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
5899
+					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
5900 5900
 					$max_recurring_count = empty($recurring_end_date) ? 1 : '';
5901 5901
 				} else {
5902
-					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1);
5902
+					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1);
5903 5903
 				}
5904 5904
 			}
5905 5905
 		}
@@ -5963,9 +5963,9 @@  discard block
 block discarded – undo
5963 5963
  * @return array Event data array.
5964 5964
  */
5965 5965
 function geodir_imex_process_event_data($gd_post) {
5966
-	$recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post );
5966
+	$recurring_pkg = geodir_event_recurring_pkg((object) $gd_post);
5967 5967
 
5968
-	$is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true;
5968
+	$is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true;
5969 5969
 	$event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_date($gd_post['event_date'], 'Y-m-d') : '';
5970 5970
 	$event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_date($gd_post['event_enddate'], 'Y-m-d') : $event_date;
5971 5971
 	$all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false;
@@ -6012,17 +6012,17 @@  discard block
 block discarded – undo
6012 6012
 				$event_recurring_dates = implode(",", $event_recurring_dates);
6013 6013
 			}
6014 6014
 		} else {
6015
-			$duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1;
6016
-			$repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1;
6017
-			$max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1;
6018
-			$repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_date($gd_post['recurring_end_date'], 'Y-m-d') : '';
6015
+			$duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1;
6016
+			$repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1;
6017
+			$max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1;
6018
+			$repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_date($gd_post['recurring_end_date'], 'Y-m-d') : '';
6019 6019
 			
6020 6020
 			$repeat_end_type = $repeat_end != '' ? 1 : 0;
6021 6021
 			$max_repeat = $repeat_end != '' ? '' : $max_repeat;
6022 6022
 			
6023 6023
 			$week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
6024 6024
 			
6025
-			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
6025
+			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
6026 6026
 			$repeat_days = array();
6027 6027
 			if (!empty($a_repeat_days)) {
6028 6028
 				foreach ($a_repeat_days as $repeat_day) {
@@ -6040,7 +6040,7 @@  discard block
 block discarded – undo
6040 6040
 			$repeat_weeks = array();
6041 6041
 			if (!empty($a_repeat_weeks)) {
6042 6042
 				foreach ($a_repeat_weeks as $repeat_week) {
6043
-					$repeat_weeks[] = (int)$repeat_week;
6043
+					$repeat_weeks[] = (int) $repeat_week;
6044 6044
 				}
6045 6045
 				
6046 6046
 				$repeat_weeks = array_unique($repeat_weeks);
@@ -6104,7 +6104,7 @@  discard block
 block discarded – undo
6104 6104
 
6105 6105
     $page_found = $wpdb->get_var(
6106 6106
         $wpdb->prepare(
6107
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6107
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;",
6108 6108
             array($slug)
6109 6109
         )
6110 6110
     );
@@ -6159,7 +6159,7 @@  discard block
 block discarded – undo
6159 6159
  */
6160 6160
 function geodir_admin_upgrade_notice() {
6161 6161
     $class = "error";
6162
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6162
+    $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
6163 6163
     echo"<div class=\"$class\"> <p>$message</p></div>";
6164 6164
 }
6165 6165
 
@@ -6171,7 +6171,7 @@  discard block
 block discarded – undo
6171 6171
  * @param (object) $r
6172 6172
  * @return (string) $output
6173 6173
  */
6174
-function geodire_admin_upgrade_notice( $plugin_data, $r )
6174
+function geodire_admin_upgrade_notice($plugin_data, $r)
6175 6175
 {
6176 6176
     // readme contents
6177 6177
     $args = array(
@@ -6179,7 +6179,7 @@  discard block
 block discarded – undo
6179 6179
         'redirection' => 5
6180 6180
     );
6181 6181
     $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6182
-    $data       = wp_remote_get( $url, $args );
6182
+    $data = wp_remote_get($url, $args);
6183 6183
 
6184 6184
     if (!is_wp_error($data) && $data['response']['code'] == 200) {
6185 6185
 
@@ -6194,20 +6194,20 @@  discard block
 block discarded – undo
6194 6194
 function geodir_in_plugin_update_message($content) {
6195 6195
     // Output Upgrade Notice
6196 6196
     $matches        = null;
6197
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6197
+    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis';
6198 6198
     $upgrade_notice = '';
6199
-    if ( preg_match( $regexp, $content, $matches ) ) {
6200
-        if(empty($matches)){return;}
6199
+    if (preg_match($regexp, $content, $matches)) {
6200
+        if (empty($matches)) {return; }
6201 6201
 
6202
-        $version = trim( $matches[1] );
6203
-        if($version && $version>GEODIRECTORY_VERSION){
6202
+        $version = trim($matches[1]);
6203
+        if ($version && $version > GEODIRECTORY_VERSION) {
6204 6204
 
6205 6205
 
6206
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6207
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6206
+        $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
6207
+        if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
6208 6208
             $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6209
-            foreach ( $notices as $index => $line ) {
6210
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6209
+            foreach ($notices as $index => $line) {
6210
+                $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
6211 6211
             }
6212 6212
             $upgrade_notice .= '</div> ';
6213 6213
         }
@@ -6231,7 +6231,7 @@  discard block
 block discarded – undo
6231 6231
 		$default_language = $sitepress->get_default_language();
6232 6232
 		if ($current_language != 'all' && $current_language != $default_language) {
6233 6233
 	?>
6234
-	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
6234
+	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
6235 6235
 	<?php
6236 6236
 		}
6237 6237
 	}
@@ -6246,7 +6246,7 @@  discard block
 block discarded – undo
6246 6246
  * @param array Listing statuses to be skipped.
6247 6247
  */
6248 6248
 function geodir_imex_export_skip_statuses() {
6249
-    $statuses = array( 'trash', 'auto-draft' );
6249
+    $statuses = array('trash', 'auto-draft');
6250 6250
     
6251 6251
     /**
6252 6252
      * Filter the statuses to skip during GD export listings.
@@ -6256,7 +6256,7 @@  discard block
 block discarded – undo
6256 6256
      *
6257 6257
      * @param array $statuses Listing statuses to be skipped.
6258 6258
      */
6259
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6259
+    $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
6260 6260
      
6261 6261
     return $statuses;
6262 6262
 }
@@ -6327,16 +6327,16 @@  discard block
 block discarded – undo
6327 6327
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6328 6328
     global $wpdb;
6329 6329
     
6330
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6330
+    $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
6331 6331
     
6332
-    if ( !empty( $filters ) ) {
6333
-        foreach ( $filters as $field => $value ) {
6332
+    if (!empty($filters)) {
6333
+        foreach ($filters as $field => $value) {
6334 6334
             switch ($field) {
6335 6335
                 case 'start_date':
6336
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6336
+                    $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'";
6337 6337
                 break;
6338 6338
                 case 'end_date':
6339
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6339
+                    $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'";
6340 6340
                 break;
6341 6341
             }
6342 6342
         }
@@ -6348,25 +6348,25 @@  discard block
 block discarded – undo
6348 6348
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6349 6349
 
6350 6350
 
6351
-function geodir_fix_for_primer_theme(){
6352
-    if(!defined( 'PRIMER_VERSION' )){return;}
6351
+function geodir_fix_for_primer_theme() {
6352
+    if (!defined('PRIMER_VERSION')) {return; }
6353 6353
     global $pagenow;
6354 6354
 
6355
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6355
+    if (('post.php' === $pagenow || 'post-new.php' === $pagenow) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']))) {
6356 6356
 
6357
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6357
+        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type($_GET['post']);
6358 6358
 
6359 6359
         $post_types = geodir_get_posttypes();
6360
-        if ($post_type && in_array($post_type, $post_types) ) {
6360
+        if ($post_type && in_array($post_type, $post_types)) {
6361 6361
             global $primer_customizer_layouts;
6362
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6362
+            remove_action('add_meta_boxes', array($primer_customizer_layouts, 'add_meta_box'), 10);
6363 6363
         }
6364 6364
     }
6365 6365
 
6366 6366
 }
6367 6367
 
6368
-if(is_admin()){
6369
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6368
+if (is_admin()) {
6369
+    add_action('add_meta_boxes', 'geodir_fix_for_primer_theme', 0);  
6370 6370
 }
6371 6371
 
6372 6372
 
@@ -6499,32 +6499,32 @@  discard block
 block discarded – undo
6499 6499
 
6500 6500
 function geodir_ga_activation_url() {
6501 6501
 
6502
-    return add_query_arg( array(
6502
+    return add_query_arg(array(
6503 6503
         'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6504 6504
         'scope'         => GEODIR_GA_SCOPE,
6505 6505
         'response_type' => 'code',
6506 6506
         'redirect_uri'  => GEODIR_GA_REDIRECT,
6507 6507
         'client_id'     => GEODIR_GA_CLIENTID,
6508
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6508
+    ), 'https://accounts.google.com/o/oauth2/auth');
6509 6509
 
6510 6510
     return $url;
6511 6511
 }
6512 6512
 
6513
-function geodir_gd_accounts(){
6513
+function geodir_gd_accounts() {
6514 6514
     $accounts = array();
6515
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6516
-    if($useAuth){
6515
+    $useAuth = (get_option('geodir_ga_auth_code') == '' ? false : true);
6516
+    if ($useAuth) {
6517 6517
         try {
6518 6518
             $accounts = geodir_ga_get_analytics_accounts();
6519 6519
         } catch (Exception $e) {
6520
-            geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) );
6520
+            geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
6521 6521
         }
6522 6522
         
6523
-        if(is_array($accounts)){
6524
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6525
-        }elseif(get_option('geodir_ga_account_id')){
6523
+        if (is_array($accounts)) {
6524
+            $accounts = array_merge(array(__('Select Account', 'geodirectory')), $accounts);
6525
+        }elseif (get_option('geodir_ga_account_id')) {
6526 6526
             $accounts = array();
6527
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6527
+            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required', 'geodirectory').' ('.get_option('geodir_ga_account_id').')';
6528 6528
         }
6529 6529
     }
6530 6530
     return $accounts;
@@ -6535,21 +6535,21 @@  discard block
 block discarded – undo
6535 6535
     global $gd_ga_errors;
6536 6536
     $accounts = array();
6537 6537
 
6538
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6538
+    if (get_option('geodir_ga_auth_token') === false) {update_option('geodir_ga_auth_token', ''); }
6539 6539
 
6540 6540
 
6541
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6541
+    if (get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])) {
6542 6542
       return get_option('geodir_gd_uids');
6543 6543
     }
6544 6544
 
6545 6545
     # Create a new Gdata call
6546
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6546
+    if (trim(get_option('geodir_ga_auth_code')) != '')
6547 6547
         $stats = new GDGoogleAnalyticsStats();
6548 6548
     else
6549 6549
         return false;
6550 6550
 
6551 6551
     # Check if Google sucessfully logged in
6552
-    if ( ! $stats->checkLogin() )
6552
+    if (!$stats->checkLogin())
6553 6553
         return false;
6554 6554
 
6555 6555
     # Get a list of accounts
@@ -6561,28 +6561,28 @@  discard block
 block discarded – undo
6561 6561
     }
6562 6562
 
6563 6563
 
6564
-    natcasesort ($accounts);
6564
+    natcasesort($accounts);
6565 6565
 
6566 6566
     # Return the account array if there are accounts
6567
-    if ( count($accounts) > 0 ){
6568
-        update_option('geodir_gd_uids',$accounts);
6567
+    if (count($accounts) > 0) {
6568
+        update_option('geodir_gd_uids', $accounts);
6569 6569
         return $accounts;
6570 6570
     }
6571 6571
     else
6572 6572
         return false;
6573 6573
 }
6574 6574
 
6575
-add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' );
6576
-function geodir_ga_deauthorize(){
6575
+add_action('wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize');
6576
+function geodir_ga_deauthorize() {
6577 6577
 
6578
-    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
6578
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'gd_ga_deauthorize')) {
6579 6579
 
6580
-        die( 'Security check' );
6580
+        die('Security check');
6581 6581
 
6582 6582
     } else {
6583
-        update_option('geodir_ga_auth_token','');
6584
-        update_option('geodir_ga_auth_code','');
6585
-        update_option('geodir_gd_uids','');
6583
+        update_option('geodir_ga_auth_token', '');
6584
+        update_option('geodir_ga_auth_code', '');
6585
+        update_option('geodir_gd_uids', '');
6586 6586
 
6587 6587
 
6588 6588
         echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
@@ -6615,22 +6615,22 @@  discard block
 block discarded – undo
6615 6615
  * @since 1.6.21
6616 6616
  * @return array
6617 6617
  */
6618
-function geodir_listing_image_size_arr(){
6618
+function geodir_listing_image_size_arr() {
6619 6619
 
6620 6620
     global $_wp_additional_image_sizes;
6621 6621
 
6622 6622
     $sizes = array();
6623 6623
 
6624
-    foreach ( get_intermediate_image_sizes() as $_size ) {
6625
-        if ( in_array( $_size, array('thumbnail', 'medium', 'medium_large', 'large') ) ) {
6626
-            $sizes[ $_size ]['width']  = get_option( "{$_size}_size_w" );
6627
-            $sizes[ $_size ]['height'] = get_option( "{$_size}_size_h" );
6628
-            $sizes[ $_size ]['crop']   = (bool) get_option( "{$_size}_crop" );
6629
-        } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
6630
-            $sizes[ $_size ] = array(
6631
-                'width'  => $_wp_additional_image_sizes[ $_size ]['width'],
6632
-                'height' => $_wp_additional_image_sizes[ $_size ]['height'],
6633
-                'crop'   => $_wp_additional_image_sizes[ $_size ]['crop'],
6624
+    foreach (get_intermediate_image_sizes() as $_size) {
6625
+        if (in_array($_size, array('thumbnail', 'medium', 'medium_large', 'large'))) {
6626
+            $sizes[$_size]['width']  = get_option("{$_size}_size_w");
6627
+            $sizes[$_size]['height'] = get_option("{$_size}_size_h");
6628
+            $sizes[$_size]['crop']   = (bool) get_option("{$_size}_crop");
6629
+        } elseif (isset($_wp_additional_image_sizes[$_size])) {
6630
+            $sizes[$_size] = array(
6631
+                'width'  => $_wp_additional_image_sizes[$_size]['width'],
6632
+                'height' => $_wp_additional_image_sizes[$_size]['height'],
6633
+                'crop'   => $_wp_additional_image_sizes[$_size]['crop'],
6634 6634
             );
6635 6635
         }
6636 6636
     }
@@ -6641,9 +6641,9 @@  discard block
 block discarded – undo
6641 6641
 
6642 6642
     $options['default'] = __('GD Default', 'geodirectory');
6643 6643
 
6644
-    if(!empty($sizes)){
6645
-        foreach($sizes as $key=>$val){
6646
-            $options[$key] = $key. ' ( '.$val['width'].' x '.$val['height']. ' )';
6644
+    if (!empty($sizes)) {
6645
+        foreach ($sizes as $key=>$val) {
6646
+            $options[$key] = $key.' ( '.$val['width'].' x '.$val['height'].' )';
6647 6647
         }
6648 6648
     }
6649 6649
 
Please login to merge, or discard this patch.
geodirectory-functions/listing_filters.php 2 patches
Indentation   +546 added lines, -546 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function geodir_session_start()
18 18
 {
19
-    if (!session_id()) session_start();
20
-    global $geodir_add_location_url;
19
+	if (!session_id()) session_start();
20
+	global $geodir_add_location_url;
21 21
 
22
-    $geodir_add_location_url = NULL;
22
+	$geodir_add_location_url = NULL;
23 23
 }
24 24
 
25 25
 /**
@@ -33,18 +33,18 @@  discard block
 block discarded – undo
33 33
  */
34 34
 function geodir_modified_query($query)
35 35
 {
36
-    if ($query->is_main_query() && (
37
-            (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
38
-            || geodir_is_page('listing')
39
-            || geodir_is_page('author')
40
-            || geodir_is_page('search')
41
-            || geodir_is_page('detail'))
42
-    ) {
43
-
44
-        $query->set('is_geodir_loop', true);
45
-    }
36
+	if ($query->is_main_query() && (
37
+			(geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
38
+			|| geodir_is_page('listing')
39
+			|| geodir_is_page('author')
40
+			|| geodir_is_page('search')
41
+			|| geodir_is_page('detail'))
42
+	) {
43
+
44
+		$query->set('is_geodir_loop', true);
45
+	}
46 46
 
47
-    return $query;
47
+	return $query;
48 48
 }
49 49
 
50 50
 /**
@@ -67,81 +67,81 @@  discard block
 block discarded – undo
67 67
  */
68 68
 function set_listing_request($query )
69 69
 {
70
-    global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
70
+	global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
71 71
 
72 72
 
73
-    // fix woocommerce shop products filtered by language for GD + WPML + Woocommerce
74
-    if (!geodir_is_geodir_page()) {
75
-        return;
76
-    }
73
+	// fix woocommerce shop products filtered by language for GD + WPML + Woocommerce
74
+	if (!geodir_is_geodir_page()) {
75
+		return;
76
+	}
77 77
 
78
-    /* remove all pre filters */
79
-    remove_all_filters('query');
80
-    remove_all_filters('posts_search');
81
-    remove_all_filters('posts_fields');
82
-    remove_all_filters('posts_join');
83
-    remove_all_filters('posts_orderby');
84
-    remove_all_filters('posts_where');
78
+	/* remove all pre filters */
79
+	remove_all_filters('query');
80
+	remove_all_filters('posts_search');
81
+	remove_all_filters('posts_fields');
82
+	remove_all_filters('posts_join');
83
+	remove_all_filters('posts_orderby');
84
+	remove_all_filters('posts_where');
85 85
 
86 86
 
87
-    if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')):
87
+	if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')):
88 88
 
89
-        if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = '';
90
-        //if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = '';
89
+		if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = '';
90
+		//if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = '';
91 91
 
92
-        if (isset($_REQUEST['sdist'])) {
93
-            ($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000;
94
-        } elseif (get_option('geodir_search_dist') != '') {
95
-            $dist = get_option('geodir_search_dist');
92
+		if (isset($_REQUEST['sdist'])) {
93
+			($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000;
94
+		} elseif (get_option('geodir_search_dist') != '') {
95
+			$dist = get_option('geodir_search_dist');
96 96
 
97
-        } else {
98
-            $dist = 25000;
99
-        } //  Distance
97
+		} else {
98
+			$dist = 25000;
99
+		} //  Distance
100 100
 
101
-        if (isset($_REQUEST['sgeo_lat'])) {
102
-            $mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
103
-        } else {
104
-            $mylat = (float)geodir_get_current_city_lat();
105
-        } //  Latitude
101
+		if (isset($_REQUEST['sgeo_lat'])) {
102
+			$mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
103
+		} else {
104
+			$mylat = (float)geodir_get_current_city_lat();
105
+		} //  Latitude
106 106
 
107
-        if (isset($_REQUEST['sgeo_lon'])) {
108
-            $mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
109
-        } else {
110
-            $mylon = (float)geodir_get_current_city_lng();
111
-        } //  Distance
107
+		if (isset($_REQUEST['sgeo_lon'])) {
108
+			$mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
109
+		} else {
110
+			$mylon = (float)geodir_get_current_city_lng();
111
+		} //  Distance
112 112
 
113
-        if (isset($_REQUEST['snear'])) {
114
-            $snear = trim(esc_attr($_REQUEST['snear']));
115
-        }
113
+		if (isset($_REQUEST['snear'])) {
114
+			$snear = trim(esc_attr($_REQUEST['snear']));
115
+		}
116 116
 
117
-        if (isset($_REQUEST['s'])) {
118
-            $s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s'])));
119
-        }
117
+		if (isset($_REQUEST['s'])) {
118
+			$s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s'])));
119
+		}
120 120
 
121
-        if ($snear == 'NEAR ME') {
122
-            $ip = $_SERVER['REMOTE_ADDR'];
123
-            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
124
-            $mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125
-            $mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126
-        }
121
+		if ($snear == 'NEAR ME') {
122
+			$ip = $_SERVER['REMOTE_ADDR'];
123
+			$addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
124
+			$mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125
+			$mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126
+		}
127 127
 
128 128
 
129
-        if (strstr($s, ',')) {
130
-            $s_AA = str_replace(" ", "", $s);
131
-            $s_A = explode(",", $s_AA);
132
-            $s_A = implode('","', $s_A);
133
-            $s_A = '"' . $s_A . '"';
134
-        } else {
135
-            $s_A = '"' . $s . '"';
136
-        }
129
+		if (strstr($s, ',')) {
130
+			$s_AA = str_replace(" ", "", $s);
131
+			$s_A = explode(",", $s_AA);
132
+			$s_A = implode('","', $s_A);
133
+			$s_A = '"' . $s_A . '"';
134
+		} else {
135
+			$s_A = '"' . $s . '"';
136
+		}
137 137
 
138
-        if (strstr($s, ' ')) {
139
-            $s_SA = explode(" ", $s);
140
-        } else {
141
-            $s_SA = '';
142
-        }
138
+		if (strstr($s, ' ')) {
139
+			$s_SA = explode(" ", $s);
140
+		} else {
141
+			$s_SA = '';
142
+		}
143 143
 
144
-    endif;
144
+	endif;
145 145
 
146 146
 
147 147
 
@@ -162,56 +162,56 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function geodir_listing_loop_filter($query)
164 164
 {
165
-    global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term;
165
+	global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term;
166 166
 
167
-    // fix wp_reset_query for popular post view widget
168
-    if (!geodir_is_geodir_page()) {
169
-        return;
170
-    }
167
+	// fix wp_reset_query for popular post view widget
168
+	if (!geodir_is_geodir_page()) {
169
+		return;
170
+	}
171 171
 
172
-    $geodir_post_type = geodir_get_current_posttype();
173
-
174
-    if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
175
-        $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
176
-
177
-        if (isset($wp_query->query[$taxonomies[0]])) {
178
-            $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
179
-            $request_term = end($request_term);
180
-            if (!term_exists($request_term)) {
181
-                $args = array('number' => '1',);
182
-                $terms_arr = get_terms($taxonomies[0], $args);
183
-                foreach ($terms_arr as $location_term) {
184
-                    $term_arr = $location_term;
185
-                    $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
186
-                }
187
-                $wp_query->queried_object_id = 1;
188
-                $wp_query->queried_object = $term_arr;
189
-                //print_r($wp_query) ;
190
-            }
191
-        }
172
+	$geodir_post_type = geodir_get_current_posttype();
173
+
174
+	if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
175
+		$taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
176
+
177
+		if (isset($wp_query->query[$taxonomies[0]])) {
178
+			$request_term = explode("/", $wp_query->query[$taxonomies[0]]);
179
+			$request_term = end($request_term);
180
+			if (!term_exists($request_term)) {
181
+				$args = array('number' => '1',);
182
+				$terms_arr = get_terms($taxonomies[0], $args);
183
+				foreach ($terms_arr as $location_term) {
184
+					$term_arr = $location_term;
185
+					$term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
186
+				}
187
+				$wp_query->queried_object_id = 1;
188
+				$wp_query->queried_object = $term_arr;
189
+				//print_r($wp_query) ;
190
+			}
191
+		}
192 192
 
193
-    }
194
-    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
195
-
196
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
197
-
198
-        add_filter('posts_fields', 'geodir_posts_fields', 1);
199
-        add_filter('posts_join', 'geodir_posts_join', 1);
200
-        geodir_post_where();
201
-        if (!is_admin())
202
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
203
-
204
-        // advanced filter for popular post view widget
205
-        global $wp_query;
206
-        if (!is_admin()) {
207
-            if (!empty($wp_query->query['with_pics_only'])) {
208
-                add_filter('posts_join', 'geodir_filter_widget_join', 1000);
209
-            }
210
-            add_filter('posts_where', 'geodir_filter_widget_where', 1000);
211
-        }
193
+	}
194
+	if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
212 195
 
213
-    }
214
-    return $query;
196
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
197
+
198
+		add_filter('posts_fields', 'geodir_posts_fields', 1);
199
+		add_filter('posts_join', 'geodir_posts_join', 1);
200
+		geodir_post_where();
201
+		if (!is_admin())
202
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
203
+
204
+		// advanced filter for popular post view widget
205
+		global $wp_query;
206
+		if (!is_admin()) {
207
+			if (!empty($wp_query->query['with_pics_only'])) {
208
+				add_filter('posts_join', 'geodir_filter_widget_join', 1000);
209
+			}
210
+			add_filter('posts_where', 'geodir_filter_widget_where', 1000);
211
+		}
212
+
213
+	}
214
+	return $query;
215 215
 }
216 216
 
217 217
 
@@ -230,67 +230,67 @@  discard block
 block discarded – undo
230 230
  * @return string Modified fields query string.
231 231
  */
232 232
 function geodir_posts_fields($fields) {
233
-    global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
233
+	global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
234 234
 
235
-    // Filter-Location-Manager to add location table.
236
-    $fields .= ", " . $table . ".* ";
235
+	// Filter-Location-Manager to add location table.
236
+	$fields .= ", " . $table . ".* ";
237 237
 
238 238
 	if ($snear != '' || $gd_session->get('all_near_me')) {
239
-        $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
239
+		$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
240 240
 
241 241
 		if ($gd_session->get('all_near_me')) {
242
-            $mylat = $gd_session->get('user_lat');
243
-            $mylon = $gd_session->get('user_lon');
244
-        }
245
-
246
-        $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247
-    }
248
-
249
-    global $s;
250
-    if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251
-        $keywords = explode(" ", $s);
252
-
253
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
-            foreach($keywords as $kkey=>$kword){
255
-                if(geodir_utf8_strlen($kword)<=$klimit){
256
-                    unset($keywords[$kkey]);
257
-                }
258
-            }
259
-        }
242
+			$mylat = $gd_session->get('user_lat');
243
+			$mylon = $gd_session->get('user_lon');
244
+		}
260 245
 
246
+		$fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247
+	}
261 248
 
262
-        if (count($keywords) > 1) {
263
-            $parts = array(
264
-                'AND' => 'gd_alltitlematch_part',
265
-                'OR' => 'gd_titlematch_part'
266
-            );
267
-            $gd_titlematch_part = "";
268
-            foreach ($parts as $key => $part) {
269
-                $gd_titlematch_part .= " CASE WHEN ";
270
-                $count = 0;
271
-                foreach ($keywords as $keyword) {
272
-                    $keyword = trim($keyword);
273
-                    $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
249
+	global $s;
250
+	if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251
+		$keywords = explode(" ", $s);
252
+
253
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
+			foreach($keywords as $kkey=>$kword){
255
+				if(geodir_utf8_strlen($kword)<=$klimit){
256
+					unset($keywords[$kkey]);
257
+				}
258
+			}
259
+		}
260
+
261
+
262
+		if (count($keywords) > 1) {
263
+			$parts = array(
264
+				'AND' => 'gd_alltitlematch_part',
265
+				'OR' => 'gd_titlematch_part'
266
+			);
267
+			$gd_titlematch_part = "";
268
+			foreach ($parts as $key => $part) {
269
+				$gd_titlematch_part .= " CASE WHEN ";
270
+				$count = 0;
271
+				foreach ($keywords as $keyword) {
272
+					$keyword = trim($keyword);
273
+					$keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
274 274
 					$count++;
275
-                    if ($count < count($keywords)) {
276
-                       // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
275
+					if ($count < count($keywords)) {
276
+					   // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
277 277
 						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " ";
278
-                    } else {
279
-                        //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
278
+					} else {
279
+						//$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
280 280
 						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) ";
281
-                    }
282
-                }
283
-                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
284
-            }
285
-        } else {
286
-            $gd_titlematch_part = "";
287
-        }
288
-        $s = stripslashes_deep( $s );
289
-        $s = wp_specialchars_decode($s,ENT_QUOTES);
281
+					}
282
+				}
283
+				$gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
284
+			}
285
+		} else {
286
+			$gd_titlematch_part = "";
287
+		}
288
+		$s = stripslashes_deep( $s );
289
+		$s = wp_specialchars_decode($s,ENT_QUOTES);
290 290
 		$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
291
-    }
291
+	}
292 292
 
293
-    return $fields;
293
+	return $fields;
294 294
 }
295 295
 
296 296
 
@@ -307,26 +307,26 @@  discard block
 block discarded – undo
307 307
  */
308 308
 function geodir_posts_join($join)
309 309
 {
310
-    global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix;
310
+	global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix;
311 311
 
312
-    ########### WPML ###########
312
+	########### WPML ###########
313 313
 
314
-    if ( geodir_wpml_is_post_type_translated( $geodir_post_type ) ) {
315
-        global $sitepress;
316
-        $lang_code = ICL_LANGUAGE_CODE;
317
-        $default_lang_code = $sitepress->get_default_language();
318
-        if ($lang_code) {
319
-            $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
320
-        }
314
+	if ( geodir_wpml_is_post_type_translated( $geodir_post_type ) ) {
315
+		global $sitepress;
316
+		$lang_code = ICL_LANGUAGE_CODE;
317
+		$default_lang_code = $sitepress->get_default_language();
318
+		if ($lang_code) {
319
+			$join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
320
+		}
321 321
 
322
-    }
323
-    ########### WPML ###########
322
+	}
323
+	########### WPML ###########
324 324
 
325
-    $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
326
-    //===old code start
327
-    //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
325
+	$join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
326
+	//===old code start
327
+	//$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
328 328
 
329
-    return $join;
329
+	return $join;
330 330
 }
331 331
 
332 332
 
@@ -344,15 +344,15 @@  discard block
 block discarded – undo
344 344
  */
345 345
 function geodir_posts_orderby($orderby)
346 346
 {
347
-    global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort;
347
+	global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort;
348 348
 
349
-    $sort_by = '';
350
-    $orderby = ' ';
349
+	$sort_by = '';
350
+	$orderby = ' ';
351 351
 
352
-    if (get_query_var('order_by'))
353
-        $sort_by = get_query_var('order_by');
352
+	if (get_query_var('order_by'))
353
+		$sort_by = get_query_var('order_by');
354 354
 
355
-    /*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
355
+	/*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
356 356
         $current_term = $wp_query->get_queried_object();
357 357
     }
358 358
 
@@ -366,133 +366,133 @@  discard block
 block discarded – undo
366 366
     }*/
367 367
 
368 368
 
369
-    if ($snear != '') {
370
-        $orderby .= " distance,";
371
-    }
369
+	if ($snear != '') {
370
+		$orderby .= " distance,";
371
+	}
372 372
 
373
-    if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query())
374
-        $sort_by = esc_attr($_REQUEST['sort_by']);
373
+	if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query())
374
+		$sort_by = esc_attr($_REQUEST['sort_by']);
375 375
 
376 376
 
377
-    if ($sort_by == '') {
378
-        $default_sort = geodir_get_posts_default_sort($geodir_post_type);
379
-        if (!empty($default_sort))
380
-            $sort_by = $default_sort;
381
-    }
377
+	if ($sort_by == '') {
378
+		$default_sort = geodir_get_posts_default_sort($geodir_post_type);
379
+		if (!empty($default_sort))
380
+			$sort_by = $default_sort;
381
+	}
382 382
 
383
-    /*
383
+	/*
384 384
     if search by term & no location then order always "relevance"
385 385
     if search by location then order always "nearest"
386 386
     */
387
-    if (is_main_query() && geodir_is_page('search')) {
388
-        $search_term = get_query_var('s');
387
+	if (is_main_query() && geodir_is_page('search')) {
388
+		$search_term = get_query_var('s');
389 389
 
390
-        if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
391
-            $sort_by = 'az';
392
-        }
390
+		if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
391
+			$sort_by = 'az';
392
+		}
393 393
 
394
-        if ($snear != '' &&  $sort_by!='farthest') {
395
-            $sort_by = 'nearest';
396
-        }
397
-    }
398
-
399
-    switch ($sort_by):
400
-        case 'newest':
401
-            $orderby = "$wpdb->posts.post_date desc, ";
402
-            break;
403
-        case 'oldest':
404
-            $orderby = "$wpdb->posts.post_date asc, ";
405
-            break;
406
-        case 'low_review':
407
-        case 'rating_count_asc':
408
-            $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
409
-            break;
410
-        case 'high_review':
411
-        case 'rating_count_desc':
412
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
413
-            break;
414
-        case 'low_rating':
415
-            $orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
416
-            break;
417
-        case 'high_rating':
418
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
419
-            break;
420
-        case 'featured':
421
-            $orderby = $table . ".is_featured asc, ";
422
-            break;
423
-        case 'nearest':
424
-            $orderby = " distance asc, ";
425
-            break;
426
-        case 'farthest':
427
-            $orderby = " distance desc, ";
428
-            break;
429
-        case 'random':
430
-            $orderby = " rand(), ";
431
-            break;
432
-        case 'az':
433
-            $orderby = "$wpdb->posts.post_title asc, ";
434
-            break;
435
-        // sort by rating
436
-        case 'overall_rating_desc':
437
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
438
-            break;
439
-        case 'overall_rating_asc':
440
-            $orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
441
-            break;
442
-        default:
443
-
444
-            break;
445
-    endswitch;
446
-
447
-    if ($sort_by != '' && geodir_cpt_has_rating_disabled($geodir_post_type)) {
448
-        if (in_array($sort_by, array('high_review', 'rating_count_desc', 'high_rating', 'overall_rating_desc'))) {
449
-            $orderby = "$wpdb->posts.comment_count DESC, ";
450
-            $sort_by = 'comment_count_desc';
451
-        } else if (in_array($sort_by, array('low_review', 'rating_count_asc', 'low_rating', 'overall_rating_asc'))) {
452
-            $orderby = "$wpdb->posts.comment_count ASC, ";
453
-            $sort_by = 'comment_count_asc';
454
-        }
455
-    }
394
+		if ($snear != '' &&  $sort_by!='farthest') {
395
+			$sort_by = 'nearest';
396
+		}
397
+	}
456 398
 
457
-    global $s;
399
+	switch ($sort_by):
400
+		case 'newest':
401
+			$orderby = "$wpdb->posts.post_date desc, ";
402
+			break;
403
+		case 'oldest':
404
+			$orderby = "$wpdb->posts.post_date asc, ";
405
+			break;
406
+		case 'low_review':
407
+		case 'rating_count_asc':
408
+			$orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
409
+			break;
410
+		case 'high_review':
411
+		case 'rating_count_desc':
412
+			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
413
+			break;
414
+		case 'low_rating':
415
+			$orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
416
+			break;
417
+		case 'high_rating':
418
+			$orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
419
+			break;
420
+		case 'featured':
421
+			$orderby = $table . ".is_featured asc, ";
422
+			break;
423
+		case 'nearest':
424
+			$orderby = " distance asc, ";
425
+			break;
426
+		case 'farthest':
427
+			$orderby = " distance desc, ";
428
+			break;
429
+		case 'random':
430
+			$orderby = " rand(), ";
431
+			break;
432
+		case 'az':
433
+			$orderby = "$wpdb->posts.post_title asc, ";
434
+			break;
435
+		// sort by rating
436
+		case 'overall_rating_desc':
437
+			$orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
438
+			break;
439
+		case 'overall_rating_asc':
440
+			$orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
441
+			break;
442
+		default:
443
+
444
+			break;
445
+	endswitch;
446
+
447
+	if ($sort_by != '' && geodir_cpt_has_rating_disabled($geodir_post_type)) {
448
+		if (in_array($sort_by, array('high_review', 'rating_count_desc', 'high_rating', 'overall_rating_desc'))) {
449
+			$orderby = "$wpdb->posts.comment_count DESC, ";
450
+			$sort_by = 'comment_count_desc';
451
+		} else if (in_array($sort_by, array('low_review', 'rating_count_asc', 'low_rating', 'overall_rating_asc'))) {
452
+			$orderby = "$wpdb->posts.comment_count ASC, ";
453
+			$sort_by = 'comment_count_asc';
454
+		}
455
+	}
458 456
 
459
-    if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460
-        $keywords = explode(" ", $s);
461
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
-            foreach($keywords as $kkey=>$kword){
463
-                if(geodir_utf8_strlen($kword)<=$klimit){
464
-                    unset($keywords[$kkey]);
465
-                }
466
-            }
467
-        }
468
-        if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469
-            if (count($keywords) > 1) {
470
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471
-            } else {
472
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473
-            }
474
-        } else {
475
-            if (count($keywords) > 1) {
476
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
477
-            } else {
478
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
479
-            }
480
-        }
481
-    }
457
+	global $s;
458
+
459
+	if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460
+		$keywords = explode(" ", $s);
461
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
+			foreach($keywords as $kkey=>$kword){
463
+				if(geodir_utf8_strlen($kword)<=$klimit){
464
+					unset($keywords[$kkey]);
465
+				}
466
+			}
467
+		}
468
+		if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469
+			if (count($keywords) > 1) {
470
+				$orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471
+			} else {
472
+				$orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473
+			}
474
+		} else {
475
+			if (count($keywords) > 1) {
476
+				$orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
477
+			} else {
478
+				$orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
479
+			}
480
+		}
481
+	}
482 482
 
483
-    /**
484
-     * Filter order by SQL.
485
-     *
486
-     * @since 1.0.0
487
-     * @param string $orderby The orderby query string.
488
-     * @param string $sort_by Sortby query string.
489
-     * @param string $table Listing table name.
490
-     */
491
-    $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
483
+	/**
484
+	 * Filter order by SQL.
485
+	 *
486
+	 * @since 1.0.0
487
+	 * @param string $orderby The orderby query string.
488
+	 * @param string $sort_by Sortby query string.
489
+	 * @param string $table Listing table name.
490
+	 */
491
+	$orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
492 492
 
493
-    $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
493
+	$orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
494 494
 
495
-    return $orderby;
495
+	return $orderby;
496 496
 }
497 497
 
498 498
 
@@ -510,53 +510,53 @@  discard block
 block discarded – undo
510 510
 function geodir_posts_order_by_custom_sort($orderby, $sort_by, $table)
511 511
 {
512 512
 
513
-    global $wpdb;
513
+	global $wpdb;
514 514
 
515
-    if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
515
+	if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
516 516
 
517
-        $sort_array = explode('_', $sort_by);
517
+		$sort_array = explode('_', $sort_by);
518 518
 
519
-        $sort_by_count = count($sort_array);
519
+		$sort_by_count = count($sort_array);
520 520
 
521
-        $order = $sort_array[$sort_by_count - 1];
521
+		$order = $sort_array[$sort_by_count - 1];
522 522
 
523
-        if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
523
+		if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
524 524
 
525
-            $sort_by = str_replace('_' . $order, '', $sort_by);
525
+			$sort_by = str_replace('_' . $order, '', $sort_by);
526 526
 
527
-            switch ($sort_by):
527
+			switch ($sort_by):
528 528
 
529
-                case 'post_date':
530
-                case 'comment_count':
529
+				case 'post_date':
530
+				case 'comment_count':
531 531
 
532
-                    $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
533
-                    break;
532
+					$orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
533
+					break;
534 534
 
535
-                case 'distance':
536
-                    $orderby = $sort_by . " " . $order . ", ";
537
-                    break;
535
+				case 'distance':
536
+					$orderby = $sort_by . " " . $order . ", ";
537
+					break;
538 538
 
539 539
 
540
-                // sort by rating
541
-                case 'overall_rating':
542
-                    $orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
540
+				// sort by rating
541
+				case 'overall_rating':
542
+					$orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
543 543
 
544
-                    break;
544
+					break;
545 545
 
546 546
 
547
-                default:
548
-                    if (geodir_column_exist($table, $sort_by)) {
547
+				default:
548
+					if (geodir_column_exist($table, $sort_by)) {
549 549
 						$orderby = $table . "." . $sort_by . " " . $order . ", ";
550 550
 					}
551
-                    break;
551
+					break;
552 552
 
553
-            endswitch;
553
+			endswitch;
554 554
 
555
-        }
555
+		}
556 556
 
557
-    }
557
+	}
558 558
 
559
-    return $orderby;
559
+	return $orderby;
560 560
 }
561 561
 
562 562
 /**
@@ -571,34 +571,34 @@  discard block
 block discarded – undo
571 571
 {
572 572
 
573 573
 
574
-    global $wpdb, $geodir_post_type, $table, $s, $snear;
574
+	global $wpdb, $geodir_post_type, $table, $s, $snear;
575 575
 
576
-    if (!is_admin()) {
576
+	if (!is_admin()) {
577 577
 
578
-        if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
579
-            add_filter('posts_where', 'geodir_edit_listing_where', 1);
578
+		if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
579
+			add_filter('posts_where', 'geodir_edit_listing_where', 1);
580 580
 
581
-        } elseif ((is_search() && $_REQUEST['geodir_search'])) {
581
+		} elseif ((is_search() && $_REQUEST['geodir_search'])) {
582 582
 
583
-            add_filter('posts_where', 'searching_filter_where', 1);
583
+			add_filter('posts_where', 'searching_filter_where', 1);
584 584
 
585
-            if ($snear != '')
586
-                add_filter('posts_where', 'searching_filter_where', 1);
585
+			if ($snear != '')
586
+				add_filter('posts_where', 'searching_filter_where', 1);
587 587
 
588
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
588
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
589 589
 
590
-        } elseif (geodir_is_page('author')) {
590
+		} elseif (geodir_is_page('author')) {
591 591
 
592
-            add_filter('posts_where', 'author_filter_where', 1);
592
+			add_filter('posts_where', 'author_filter_where', 1);
593 593
 
594
-        }
594
+		}
595 595
 
596
-        //if (!geodir_is_page('detail'))
597
-            add_filter('posts_where', 'geodir_default_where', 1);/**/
596
+		//if (!geodir_is_page('detail'))
597
+			add_filter('posts_where', 'geodir_default_where', 1);/**/
598 598
 
599
-        //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
599
+		//add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
600 600
 
601
-    }
601
+	}
602 602
 }
603 603
 
604 604
 /**
@@ -613,13 +613,13 @@  discard block
 block discarded – undo
613 613
  */
614 614
 function geodir_preview_post_cap($allcaps, $caps, $args)
615 615
 {
616
-    $user_id = get_current_user_id();
617
-    if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
616
+	$user_id = get_current_user_id();
617
+	if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
618 618
 
619
-        $allcaps['edit_posts'] = true;
620
-    }
621
-    //print_r($allcaps);
622
-    return $allcaps;
619
+		$allcaps['edit_posts'] = true;
620
+	}
621
+	//print_r($allcaps);
622
+	return $allcaps;
623 623
 }
624 624
 
625 625
 
@@ -634,9 +634,9 @@  discard block
 block discarded – undo
634 634
  */
635 635
 function geodir_edit_listing_where($where)
636 636
 {
637
-    global $wpdb;
638
-    $where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
639
-    return $where;
637
+	global $wpdb;
638
+	$where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
639
+	return $where;
640 640
 }
641 641
 
642 642
 
@@ -653,29 +653,29 @@  discard block
 block discarded – undo
653 653
  */
654 654
 function geodir_default_where($where)
655 655
 {
656
-    global $wp_query, $wpdb;
657
-
658
-    //print_r($wp_query);
659
-    ########### WPML ###########
660
-
661
-    if (function_exists('icl_object_id')) {
662
-        global $sitepress, $table_prefix;
663
-        $lang_code = ICL_LANGUAGE_CODE;
664
-        $default_lang_code = $sitepress->get_default_language();
665
-        $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666
-        //echo '##########'.$q_post_type;
667
-        if ($lang_code && $q_post_type && geodir_wpml_is_post_type_translated($q_post_type)) {
668
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
669
-            //$where .= " AND icl_t.language_code = '$lang_code' ";
670
-        }
656
+	global $wp_query, $wpdb;
671 657
 
672
-    }
673
-    ########### WPML ###########
658
+	//print_r($wp_query);
659
+	########### WPML ###########
674 660
 
661
+	if (function_exists('icl_object_id')) {
662
+		global $sitepress, $table_prefix;
663
+		$lang_code = ICL_LANGUAGE_CODE;
664
+		$default_lang_code = $sitepress->get_default_language();
665
+		$q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666
+		//echo '##########'.$q_post_type;
667
+		if ($lang_code && $q_post_type && geodir_wpml_is_post_type_translated($q_post_type)) {
668
+			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
669
+			//$where .= " AND icl_t.language_code = '$lang_code' ";
670
+		}
675 671
 
676
-    return $where = str_replace("0 = 1", "1=1", $where);
672
+	}
673
+	########### WPML ###########
674
+
675
+
676
+	return $where = str_replace("0 = 1", "1=1", $where);
677 677
 
678
-    /* ====== old code start ===
678
+	/* ====== old code start ===
679 679
     $where = str_replace("0 = 1", "1=1", $where);
680 680
     $country = get_query_var('gd_country');
681 681
     $region = get_query_var('gd_region');
@@ -716,108 +716,108 @@  discard block
 block discarded – undo
716 716
  * @return string Modified where query string.
717 717
  */
718 718
 function searching_filter_where($where) {
719
-    global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s_A, $s_SA, $search_term, $gd_session;
719
+	global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s_A, $s_SA, $search_term, $gd_session;
720 720
 
721
-    $search_term = 'OR';
722
-    $search_term = 'AND';
723
-    $geodir_custom_search = '';
724
-    $category_search_range = '';
721
+	$search_term = 'OR';
722
+	$search_term = 'AND';
723
+	$geodir_custom_search = '';
724
+	$category_search_range = '';
725 725
 
726
-    if (is_single() && get_query_var('post_type')) {
726
+	if (is_single() && get_query_var('post_type')) {
727 727
 		return $where;
728 728
 	}
729 729
 
730
-    if (is_tax()) {
730
+	if (is_tax()) {
731 731
 		return $where;
732 732
 	}
733 733
 
734 734
 	$s = trim($s);
735
-    $s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
-    $s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
737
-
738
-    $where = '';
739
-    $better_search_terms = '';
740
-    if (isset($_REQUEST['stype']))
741
-        $post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype']));
742
-    else
743
-        $post_types = 'gd_place';
744
-
745
-    if ($s != '') {
746
-        $keywords = explode(" ", $s);
747
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
-            foreach($keywords as $kkey=>$kword){
749
-                if(geodir_utf8_strlen($kword)<=$klimit){
750
-                    unset($keywords[$kkey]);
751
-                }
752
-            }
753
-        }
735
+	$s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
+	$s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
737
+
738
+	$where = '';
739
+	$better_search_terms = '';
740
+	if (isset($_REQUEST['stype']))
741
+		$post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype']));
742
+	else
743
+		$post_types = 'gd_place';
754 744
 
755
-        if (!empty($keywords)) {
756
-            foreach ($keywords as $keyword) {
757
-                $keyword = trim($keyword);
758
-                $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
759
-                if ($keyword != '') {
760
-                    /**
761
-                     * Filter the search query keywords SQL.
762
-                     *
763
-                     * @since 1.5.9
764
-                     * @package GeoDirectory
765
-                     * @param string $better_search_terms The query values, default: `' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'`.
766
-                     * @param array $keywords The array of keywords for the query.
767
-                     * @param string $keyword The single keyword being searched.
768
-                     */
745
+	if ($s != '') {
746
+		$keywords = explode(" ", $s);
747
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
+			foreach($keywords as $kkey=>$kword){
749
+				if(geodir_utf8_strlen($kword)<=$klimit){
750
+					unset($keywords[$kkey]);
751
+				}
752
+			}
753
+		}
754
+
755
+		if (!empty($keywords)) {
756
+			foreach ($keywords as $keyword) {
757
+				$keyword = trim($keyword);
758
+				$keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
759
+				if ($keyword != '') {
760
+					/**
761
+					 * Filter the search query keywords SQL.
762
+					 *
763
+					 * @since 1.5.9
764
+					 * @package GeoDirectory
765
+					 * @param string $better_search_terms The query values, default: `' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'`.
766
+					 * @param array $keywords The array of keywords for the query.
767
+					 * @param string $keyword The single keyword being searched.
768
+					 */
769 769
 					$better_search_terms .= apply_filters("geodir_search_better_search_terms",' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )',$keywords,$keyword);
770
-                }
771
-            }
772
-        }
773
-    }
770
+				}
771
+			}
772
+		}
773
+	}
774 774
 
775
-    /* get taxonomy */
776
-    $taxonomies = geodir_get_taxonomies($post_types, true);
777
-    if($taxonomies) {
778
-        $taxonomies = implode("','", $taxonomies);
779
-        $taxonomies = "'" . $taxonomies . "'";
780
-    }else{$taxonomies='';}
775
+	/* get taxonomy */
776
+	$taxonomies = geodir_get_taxonomies($post_types, true);
777
+	if($taxonomies) {
778
+		$taxonomies = implode("','", $taxonomies);
779
+		$taxonomies = "'" . $taxonomies . "'";
780
+	}else{$taxonomies='';}
781 781
 
782
-    $content_where = $terms_where = '';
782
+	$content_where = $terms_where = '';
783 783
 	if ($s != '') {
784
-        /**
785
-         * Filter the search query content where values.
786
-         *
787
-         * @since 1.5.0
788
-         * @package GeoDirectory
789
-         * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790
-         */
784
+		/**
785
+		 * Filter the search query content where values.
786
+		 *
787
+		 * @since 1.5.0
788
+		 * @package GeoDirectory
789
+		 * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790
+		 */
791 791
 		$content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
792
-        /**
793
-         * Filter the search query term values.
794
-         *
795
-         * @since 1.5.0
796
-         * @package GeoDirectory
797
-         * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798
-         */
799
-        $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
792
+		/**
793
+		 * Filter the search query term values.
794
+		 *
795
+		 * @since 1.5.0
796
+		 * @package GeoDirectory
797
+		 * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798
+		 */
799
+		$terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
800 800
 	}
801 801
 
802
-    if ($snear != '') {
802
+	if ($snear != '') {
803 803
 
804 804
 
805
-        if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
806
-            $dist = $gd_session->get('near_me_range');
807
-        }
808
-        $lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69);
809
-        $lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69);
810
-        $lat1 = $mylat - ($dist / 69);
811
-        $lat2 = $mylat + ($dist / 69);
805
+		if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
806
+			$dist = $gd_session->get('near_me_range');
807
+		}
808
+		$lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69);
809
+		$lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69);
810
+		$lat1 = $mylat - ($dist / 69);
811
+		$lat2 = $mylat + ($dist / 69);
812 812
 
813
-        $rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : '';
814
-        $rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : '';
815
-        $rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : '';
816
-        $rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : '';
813
+		$rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : '';
814
+		$rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : '';
815
+		$rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : '';
816
+		$rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : '';
817 817
 
818 818
 
819 819
 
820
-	    $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
820
+		$where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
821 821
 			                    $content_where 
822 822
 								OR ($wpdb->posts.ID IN( 
823 823
 										SELECT $wpdb->term_relationships.object_id as post_id 
@@ -834,13 +834,13 @@  discard block
 block discarded – undo
834 834
 						AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 )
835 835
 						AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) ";
836 836
 
837
-        if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
838
-            $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
839
-            $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
840
-        }
837
+		if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
838
+			$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
839
+			$where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
840
+		}
841 841
 
842
-    } else {
843
-        $where .= " AND (	( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
842
+	} else {
843
+		$where .= " AND (	( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
844 844
                             $content_where  
845 845
 							OR ( $wpdb->posts.ID IN(	
846 846
 									SELECT $wpdb->term_relationships.object_id as post_id                     
@@ -854,19 +854,19 @@  discard block
 block discarded – undo
854 854
 					) 
855 855
 				AND $wpdb->posts.post_type in ('$post_types')
856 856
 				AND ($wpdb->posts.post_status = 'publish') ";
857
-    }
857
+	}
858 858
 
859 859
 	########### WPML ###########
860
-    if ( geodir_wpml_is_post_type_translated( $post_types ) ) {
860
+	if ( geodir_wpml_is_post_type_translated( $post_types ) ) {
861 861
 		$lang_code = ICL_LANGUAGE_CODE;
862 862
 
863 863
 		if ($lang_code && $post_types) {
864
-            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
865
-        }
866
-    }
867
-    ########### WPML ###########
864
+			$where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
865
+		}
866
+	}
867
+	########### WPML ###########
868 868
 
869
-    return $where;
869
+	return $where;
870 870
 }
871 871
 
872 872
 
@@ -881,45 +881,45 @@  discard block
 block discarded – undo
881 881
  * @return string Modified where query string.
882 882
  */
883 883
 function author_filter_where($where) {
884
-    global $wpdb, $geodir_post_type, $table, $curr;
884
+	global $wpdb, $geodir_post_type, $table, $curr;
885 885
 
886
-    $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
887
-    $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
886
+	$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
887
+	$user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
888 888
 
889
-    if (isset($_REQUEST['stype'])) {
890
-        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
891
-    } else {
892
-        $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
893
-    }
889
+	if (isset($_REQUEST['stype'])) {
890
+		$where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
891
+	} else {
892
+		$where = " AND $wpdb->posts.post_type IN ('gd_place') ";
893
+	}
894 894
 
895
-    if ($user_id > 0) {
896
-        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
897
-            $user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true);
898
-            $user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
899
-            $where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
900
-        } else
901
-            $where .= " AND $wpdb->posts.post_author = $user_id";
902
-
903
-        if ($user_id == (int)get_current_user_id()) {
904
-            $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
905
-        } else {
906
-            $where .= " AND $wpdb->posts.post_status = 'publish' ";
907
-        }
908
-    } else {
909
-        $where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' ";
910
-    }
895
+	if ($user_id > 0) {
896
+		if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
897
+			$user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true);
898
+			$user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
899
+			$where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
900
+		} else
901
+			$where .= " AND $wpdb->posts.post_author = $user_id";
902
+
903
+		if ($user_id == (int)get_current_user_id()) {
904
+			$where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
905
+		} else {
906
+			$where .= " AND $wpdb->posts.post_status = 'publish' ";
907
+		}
908
+	} else {
909
+		$where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' ";
910
+	}
911 911
 
912
-    ########### WPML ###########
913
-    if (geodir_wpml_is_post_type_translated(sanitize_text_field($_REQUEST['stype']))) {
914
-        $lang_code = ICL_LANGUAGE_CODE;
915
-        if ($lang_code) {
916
-            $where .= " AND icl_t.language_code='" . $lang_code . "' ";
917
-        }
912
+	########### WPML ###########
913
+	if (geodir_wpml_is_post_type_translated(sanitize_text_field($_REQUEST['stype']))) {
914
+		$lang_code = ICL_LANGUAGE_CODE;
915
+		if ($lang_code) {
916
+			$where .= " AND icl_t.language_code='" . $lang_code . "' ";
917
+		}
918 918
 
919
-    }
920
-    ########### WPML ###########
919
+	}
920
+	########### WPML ###########
921 921
 
922
-    return $where;
922
+	return $where;
923 923
 }
924 924
 
925 925
 /**
@@ -934,11 +934,11 @@  discard block
 block discarded – undo
934 934
  */
935 935
 function geodir_filter_widget_join($join)
936 936
 {
937
-    global $wp_query, $table;
938
-    if (!empty($wp_query->query['with_pics_only'])) {
939
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
940
-    }
941
-    return $join;
937
+	global $wp_query, $table;
938
+	if (!empty($wp_query->query['with_pics_only'])) {
939
+		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
940
+	}
941
+	return $join;
942 942
 }
943 943
 
944 944
 /**
@@ -953,43 +953,43 @@  discard block
 block discarded – undo
953 953
  */
954 954
 function geodir_filter_widget_where($where)
955 955
 {
956
-    global $wp_query, $table;
957
-    if (!empty($wp_query->query['show_featured_only'])) {
958
-        $where .= " AND " . $table . ".is_featured = '1'";
959
-    }
960
-    if (!empty($wp_query->query['show_special_only'])) {
961
-        $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
962
-    }
963
-    if (!empty($wp_query->query['with_pics_only'])) {
964
-        $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
965
-    }
966
-    if (!empty($wp_query->query['with_videos_only'])) {
967
-        $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
968
-    }
969
-    return $where;
956
+	global $wp_query, $table;
957
+	if (!empty($wp_query->query['show_featured_only'])) {
958
+		$where .= " AND " . $table . ".is_featured = '1'";
959
+	}
960
+	if (!empty($wp_query->query['show_special_only'])) {
961
+		$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
962
+	}
963
+	if (!empty($wp_query->query['with_pics_only'])) {
964
+		$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
965
+	}
966
+	if (!empty($wp_query->query['with_videos_only'])) {
967
+		$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
968
+	}
969
+	return $where;
970 970
 }
971 971
 
972 972
 
973 973
 function geodir_related_posts_fields($fields) {
974
-    global $wp_query, $wpdb, $table, $post;
974
+	global $wp_query, $wpdb, $table, $post;
975 975
 
976
-    $fields .= ", " . $table . ".* ";
976
+	$fields .= ", " . $table . ".* ";
977 977
 
978
-    $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
978
+	$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
979 979
 
980
-    $mylat = $post->post_latitude;
981
-    $mylon = $post->post_longitude;
980
+	$mylat = $post->post_latitude;
981
+	$mylon = $post->post_longitude;
982 982
 
983
-    $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
984
-    return $fields;
983
+	$fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
984
+	return $fields;
985 985
 }
986 986
 function geodir_related_posts_fields_filter($query) {
987
-    if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
988
-        && isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
989
-        && isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
990
-    ) {
991
-        add_filter('posts_fields', 'geodir_related_posts_fields', 1);
992
-    }
987
+	if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
988
+		&& isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
989
+		&& isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
990
+	) {
991
+		add_filter('posts_fields', 'geodir_related_posts_fields', 1);
992
+	}
993 993
 }
994 994
 add_action('pre_get_posts', 'geodir_related_posts_fields_filter', 1);
995 995
 
@@ -1004,28 +1004,28 @@  discard block
 block discarded – undo
1004 1004
  * @return string|null If field exists in table returns order by clause else returns empty.
1005 1005
  */
1006 1006
 function geodir_prepare_custom_sorting( $sorting, $table ) {
1007
-    $orderby = '';
1007
+	$orderby = '';
1008 1008
     
1009
-    if ( empty( $sorting ) || empty( $table ) ) {
1010
-        return $orderby;
1011
-    }
1009
+	if ( empty( $sorting ) || empty( $table ) ) {
1010
+		return $orderby;
1011
+	}
1012 1012
     
1013
-    if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1014
-        $sorting_array = explode( '_', $sorting );
1013
+	if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1014
+		$sorting_array = explode( '_', $sorting );
1015 1015
         
1016
-        if ( ( $count = count( $sorting_array ) ) > 1 ) {
1017
-            $order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1018
-            array_pop( $sorting_array );
1016
+		if ( ( $count = count( $sorting_array ) ) > 1 ) {
1017
+			$order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1018
+			array_pop( $sorting_array );
1019 1019
             
1020
-            if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1021
-                $sort_by = implode( '_', $sorting_array );
1020
+			if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1021
+				$sort_by = implode( '_', $sorting_array );
1022 1022
                 
1023
-                if ( geodir_column_exist( $table, $sort_by ) ) {
1024
-                    $orderby = $table . "." . $sort_by . " " . $order;
1025
-                }
1026
-            }
1027
-        }
1028
-    }
1023
+				if ( geodir_column_exist( $table, $sort_by ) ) {
1024
+					$orderby = $table . "." . $sort_by . " " . $order;
1025
+				}
1026
+			}
1027
+		}
1028
+	}
1029 1029
 
1030
-    return $orderby;
1030
+	return $orderby;
1031 1031
 }
1032 1032
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +88 added lines, -88 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
  * @global string $s_A Extra parameters.
66 66
  * @global string $s_SA Extra parameters.
67 67
  */
68
-function set_listing_request($query )
68
+function set_listing_request($query)
69 69
 {
70 70
     global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
71 71
 
@@ -99,15 +99,15 @@  discard block
 block discarded – undo
99 99
         } //  Distance
100 100
 
101 101
         if (isset($_REQUEST['sgeo_lat'])) {
102
-            $mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
102
+            $mylat = (float) esc_attr($_REQUEST['sgeo_lat']);
103 103
         } else {
104
-            $mylat = (float)geodir_get_current_city_lat();
104
+            $mylat = (float) geodir_get_current_city_lat();
105 105
         } //  Latitude
106 106
 
107 107
         if (isset($_REQUEST['sgeo_lon'])) {
108
-            $mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
108
+            $mylon = (float) esc_attr($_REQUEST['sgeo_lon']);
109 109
         } else {
110
-            $mylon = (float)geodir_get_current_city_lng();
110
+            $mylon = (float) geodir_get_current_city_lng();
111 111
         } //  Distance
112 112
 
113 113
         if (isset($_REQUEST['snear'])) {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
         if ($snear == 'NEAR ME') {
122 122
             $ip = $_SERVER['REMOTE_ADDR'];
123
-            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
123
+            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$ip));
124 124
             $mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125 125
             $mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126 126
         }
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
             $s_AA = str_replace(" ", "", $s);
131 131
             $s_A = explode(",", $s_AA);
132 132
             $s_A = implode('","', $s_A);
133
-            $s_A = '"' . $s_A . '"';
133
+            $s_A = '"'.$s_A.'"';
134 134
         } else {
135
-            $s_A = '"' . $s . '"';
135
+            $s_A = '"'.$s.'"';
136 136
         }
137 137
 
138 138
         if (strstr($s, ' ')) {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
     if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
195 195
 
196
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
196
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
197 197
 
198 198
         add_filter('posts_fields', 'geodir_posts_fields', 1);
199 199
         add_filter('posts_join', 'geodir_posts_join', 1);
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
234 234
 
235 235
     // Filter-Location-Manager to add location table.
236
-    $fields .= ", " . $table . ".* ";
236
+    $fields .= ", ".$table.".* ";
237 237
 
238 238
 	if ($snear != '' || $gd_session->get('all_near_me')) {
239 239
         $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
@@ -243,16 +243,16 @@  discard block
 block discarded – undo
243 243
             $mylon = $gd_session->get('user_lon');
244 244
         }
245 245
 
246
-        $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
246
+        $fields .= " , (".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247 247
     }
248 248
 
249 249
     global $s;
250 250
     if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251 251
         $keywords = explode(" ", $s);
252 252
 
253
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
-            foreach($keywords as $kkey=>$kword){
255
-                if(geodir_utf8_strlen($kword)<=$klimit){
253
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
254
+            foreach ($keywords as $kkey=>$kword) {
255
+                if (geodir_utf8_strlen($kword) <= $klimit) {
256 256
                     unset($keywords[$kkey]);
257 257
                 }
258 258
             }
@@ -270,24 +270,24 @@  discard block
 block discarded – undo
270 270
                 $count = 0;
271 271
                 foreach ($keywords as $keyword) {
272 272
                     $keyword = trim($keyword);
273
-                    $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
273
+                    $keyword = wp_specialchars_decode($keyword, ENT_QUOTES);
274 274
 					$count++;
275 275
                     if ($count < count($keywords)) {
276 276
                        // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
277
-						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " ";
277
+						$gd_titlematch_part .= "( ".$wpdb->posts.".post_title LIKE '".$keyword."' OR ".$wpdb->posts.".post_title LIKE '".$keyword."%%' OR ".$wpdb->posts.".post_title LIKE '%% ".$keyword."%%' ) ".$key." ";
278 278
                     } else {
279 279
                         //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
280
-						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) ";
280
+						$gd_titlematch_part .= "( ".$wpdb->posts.".post_title LIKE '".$keyword."' OR ".$wpdb->posts.".post_title LIKE '".$keyword."%%' OR ".$wpdb->posts.".post_title LIKE '%% ".$keyword."%%' ) ";
281 281
                     }
282 282
                 }
283
-                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
283
+                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS ".$part.",";
284 284
             }
285 285
         } else {
286 286
             $gd_titlematch_part = "";
287 287
         }
288
-        $s = stripslashes_deep( $s );
289
-        $s = wp_specialchars_decode($s,ENT_QUOTES);
290
-		$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
288
+        $s = stripslashes_deep($s);
289
+        $s = wp_specialchars_decode($s, ENT_QUOTES);
290
+		$fields .= $wpdb->prepare(", CASE WHEN ".$table.".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN ".$wpdb->posts.".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle,".$gd_titlematch_part." CASE WHEN ( ".$wpdb->posts.".post_title LIKE %s OR ".$wpdb->posts.".post_title LIKE %s OR ".$wpdb->posts.".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s.'%', '% '.$s.'%', $s, $s.' %', '% '.$s.' %', '% '.$s));
291 291
     }
292 292
 
293 293
     return $fields;
@@ -311,18 +311,18 @@  discard block
 block discarded – undo
311 311
 
312 312
     ########### WPML ###########
313 313
 
314
-    if ( geodir_wpml_is_post_type_translated( $geodir_post_type ) ) {
314
+    if (geodir_wpml_is_post_type_translated($geodir_post_type)) {
315 315
         global $sitepress;
316 316
         $lang_code = ICL_LANGUAGE_CODE;
317 317
         $default_lang_code = $sitepress->get_default_language();
318 318
         if ($lang_code) {
319
-            $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
319
+            $join .= "JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
320 320
         }
321 321
 
322 322
     }
323 323
     ########### WPML ###########
324 324
 
325
-    $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
325
+    $join .= " INNER JOIN ".$table." ON (".$table.".post_id = $wpdb->posts.ID)  ";
326 326
     //===old code start
327 327
     //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
328 328
 
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
             $sort_by = 'az';
392 392
         }
393 393
 
394
-        if ($snear != '' &&  $sort_by!='farthest') {
394
+        if ($snear != '' && $sort_by != 'farthest') {
395 395
             $sort_by = 'nearest';
396 396
         }
397 397
     }
@@ -405,20 +405,20 @@  discard block
 block discarded – undo
405 405
             break;
406 406
         case 'low_review':
407 407
         case 'rating_count_asc':
408
-            $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
408
+            $orderby = $table.".rating_count ASC, ".$table.".overall_rating ASC, ";
409 409
             break;
410 410
         case 'high_review':
411 411
         case 'rating_count_desc':
412
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
412
+            $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
413 413
             break;
414 414
         case 'low_rating':
415
-            $orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
415
+            $orderby = "( ".$table.".overall_rating  ) ASC, ".$table.".rating_count ASC,  ";
416 416
             break;
417 417
         case 'high_rating':
418
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
418
+            $orderby = " ".$table.".overall_rating DESC, ".$table.".rating_count DESC, ";
419 419
             break;
420 420
         case 'featured':
421
-            $orderby = $table . ".is_featured asc, ";
421
+            $orderby = $table.".is_featured asc, ";
422 422
             break;
423 423
         case 'nearest':
424 424
             $orderby = " distance asc, ";
@@ -434,10 +434,10 @@  discard block
 block discarded – undo
434 434
             break;
435 435
         // sort by rating
436 436
         case 'overall_rating_desc':
437
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
437
+            $orderby = " ".$table.".overall_rating DESC, ".$table.".rating_count DESC, ";
438 438
             break;
439 439
         case 'overall_rating_asc':
440
-            $orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
440
+            $orderby = " ".$table.".overall_rating ASC, ".$table.".rating_count ASC, ";
441 441
             break;
442 442
         default:
443 443
 
@@ -458,24 +458,24 @@  discard block
 block discarded – undo
458 458
 
459 459
     if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460 460
         $keywords = explode(" ", $s);
461
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
-            foreach($keywords as $kkey=>$kword){
463
-                if(geodir_utf8_strlen($kword)<=$klimit){
461
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
462
+            foreach ($keywords as $kkey=>$kword) {
463
+                if (geodir_utf8_strlen($kword) <= $klimit) {
464 464
                     unset($keywords[$kkey]);
465 465
                 }
466 466
             }
467 467
         }
468 468
         if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469 469
             if (count($keywords) > 1) {
470
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
470
+                $orderby = $orderby." ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471 471
             } else {
472
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
472
+                $orderby = $orderby." ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473 473
             }
474 474
         } else {
475 475
             if (count($keywords) > 1) {
476
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
476
+                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ".$orderby;
477 477
             } else {
478
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
478
+                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ".$orderby;
479 479
             }
480 480
         }
481 481
     }
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
      */
491 491
     $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
492 492
 
493
-    $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
493
+    $orderby .= $table.".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
494 494
 
495 495
     return $orderby;
496 496
 }
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
     global $wpdb;
514 514
 
515
-    if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
515
+    if ($sort_by != '' && (!is_search() || (isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear'] == '' && ($_REQUEST['s'] == '' || $_REQUEST['s'] == ' ')))) {
516 516
 
517 517
         $sort_array = explode('_', $sort_by);
518 518
 
@@ -522,31 +522,31 @@  discard block
 block discarded – undo
522 522
 
523 523
         if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
524 524
 
525
-            $sort_by = str_replace('_' . $order, '', $sort_by);
525
+            $sort_by = str_replace('_'.$order, '', $sort_by);
526 526
 
527 527
             switch ($sort_by):
528 528
 
529 529
                 case 'post_date':
530 530
                 case 'comment_count':
531 531
 
532
-                    $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
532
+                    $orderby = "$wpdb->posts.".$sort_by." ".$order.", ".$table.".overall_rating ".$order.", ";
533 533
                     break;
534 534
 
535 535
                 case 'distance':
536
-                    $orderby = $sort_by . " " . $order . ", ";
536
+                    $orderby = $sort_by." ".$order.", ";
537 537
                     break;
538 538
 
539 539
 
540 540
                 // sort by rating
541 541
                 case 'overall_rating':
542
-                    $orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
542
+                    $orderby = " ".$table.".".$sort_by."  ".$order.", ".$table.".rating_count ".$order.", ";
543 543
 
544 544
                     break;
545 545
 
546 546
 
547 547
                 default:
548 548
                     if (geodir_column_exist($table, $sort_by)) {
549
-						$orderby = $table . "." . $sort_by . " " . $order . ", ";
549
+						$orderby = $table.".".$sort_by." ".$order.", ";
550 550
 					}
551 551
                     break;
552 552
 
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
         }
595 595
 
596 596
         //if (!geodir_is_page('detail'))
597
-            add_filter('posts_where', 'geodir_default_where', 1);/**/
597
+            add_filter('posts_where', 'geodir_default_where', 1); /**/
598 598
 
599 599
         //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
600 600
 
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
         $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666 666
         //echo '##########'.$q_post_type;
667 667
         if ($lang_code && $q_post_type && geodir_wpml_is_post_type_translated($q_post_type)) {
668
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
668
+            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_".$q_post_type."') ";
669 669
             //$where .= " AND icl_t.language_code = '$lang_code' ";
670 670
         }
671 671
 
@@ -732,8 +732,8 @@  discard block
 block discarded – undo
732 732
 	}
733 733
 
734 734
 	$s = trim($s);
735
-    $s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
-    $s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
735
+    $s = wp_specialchars_decode($s, ENT_QUOTES);
736
+    $s_A = wp_specialchars_decode($s_A, ENT_QUOTES);
737 737
 
738 738
     $where = '';
739 739
     $better_search_terms = '';
@@ -744,9 +744,9 @@  discard block
 block discarded – undo
744 744
 
745 745
     if ($s != '') {
746 746
         $keywords = explode(" ", $s);
747
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
-            foreach($keywords as $kkey=>$kword){
749
-                if(geodir_utf8_strlen($kword)<=$klimit){
747
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
748
+            foreach ($keywords as $kkey=>$kword) {
749
+                if (geodir_utf8_strlen($kword) <= $klimit) {
750 750
                     unset($keywords[$kkey]);
751 751
                 }
752 752
             }
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
         if (!empty($keywords)) {
756 756
             foreach ($keywords as $keyword) {
757 757
                 $keyword = trim($keyword);
758
-                $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
758
+                $keyword = wp_specialchars_decode($keyword, ENT_QUOTES);
759 759
                 if ($keyword != '') {
760 760
                     /**
761 761
                      * Filter the search query keywords SQL.
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
                      * @param array $keywords The array of keywords for the query.
767 767
                      * @param string $keyword The single keyword being searched.
768 768
                      */
769
-					$better_search_terms .= apply_filters("geodir_search_better_search_terms",' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )',$keywords,$keyword);
769
+					$better_search_terms .= apply_filters("geodir_search_better_search_terms", ' OR ( '.$wpdb->posts.'.post_title LIKE "'.$keyword.'" OR '.$wpdb->posts.'.post_title LIKE "'.$keyword.'%" OR '.$wpdb->posts.'.post_title LIKE "% '.$keyword.'%" )', $keywords, $keyword);
770 770
                 }
771 771
             }
772 772
         }
@@ -774,10 +774,10 @@  discard block
 block discarded – undo
774 774
 
775 775
     /* get taxonomy */
776 776
     $taxonomies = geodir_get_taxonomies($post_types, true);
777
-    if($taxonomies) {
777
+    if ($taxonomies) {
778 778
         $taxonomies = implode("','", $taxonomies);
779
-        $taxonomies = "'" . $taxonomies . "'";
780
-    }else{$taxonomies='';}
779
+        $taxonomies = "'".$taxonomies."'";
780
+    } else {$taxonomies = ''; }
781 781
 
782 782
     $content_where = $terms_where = '';
783 783
 	if ($s != '') {
@@ -788,7 +788,7 @@  discard block
 block discarded – undo
788 788
          * @package GeoDirectory
789 789
          * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790 790
          */
791
-		$content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
791
+		$content_where = apply_filters("geodir_search_content_where", " OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
792 792
         /**
793 793
          * Filter the search query term values.
794 794
          *
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
          * @package GeoDirectory
797 797
          * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798 798
          */
799
-        $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
799
+        $terms_where = apply_filters("geodir_search_terms_where", " AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
800 800
 	}
801 801
 
802 802
     if ($snear != '') {
@@ -831,12 +831,12 @@  discard block
 block discarded – undo
831 831
 							)
832 832
 						AND $wpdb->posts.post_type in ('{$post_types}')
833 833
 						AND ($wpdb->posts.post_status = 'publish')
834
-						AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 )
835
-						AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) ";
834
+						AND ( ".$table.".post_latitude between $rlat1 and $rlat2 )
835
+						AND ( ".$table.".post_longitude between $rlon1 and $rlon2 ) ";
836 836
 
837 837
         if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
838 838
             $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
839
-            $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
839
+            $where .= " AND CONVERT((".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= ".$dist;
840 840
         }
841 841
 
842 842
     } else {
@@ -857,11 +857,11 @@  discard block
 block discarded – undo
857 857
     }
858 858
 
859 859
 	########### WPML ###########
860
-    if ( geodir_wpml_is_post_type_translated( $post_types ) ) {
860
+    if (geodir_wpml_is_post_type_translated($post_types)) {
861 861
 		$lang_code = ICL_LANGUAGE_CODE;
862 862
 
863 863
 		if ($lang_code && $post_types) {
864
-            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
864
+            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_".$post_types."') ";
865 865
         }
866 866
     }
867 867
     ########### WPML ###########
@@ -884,10 +884,10 @@  discard block
 block discarded – undo
884 884
     global $wpdb, $geodir_post_type, $table, $curr;
885 885
 
886 886
     $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
887
-    $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
887
+    $user_id = !empty($curauth->ID) ? (int) $curauth->ID : 0;
888 888
 
889 889
     if (isset($_REQUEST['stype'])) {
890
-        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
890
+        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ", $_REQUEST['stype']);
891 891
     } else {
892 892
         $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
893 893
     }
@@ -900,7 +900,7 @@  discard block
 block discarded – undo
900 900
         } else
901 901
             $where .= " AND $wpdb->posts.post_author = $user_id";
902 902
 
903
-        if ($user_id == (int)get_current_user_id()) {
903
+        if ($user_id == (int) get_current_user_id()) {
904 904
             $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
905 905
         } else {
906 906
             $where .= " AND $wpdb->posts.post_status = 'publish' ";
@@ -913,7 +913,7 @@  discard block
 block discarded – undo
913 913
     if (geodir_wpml_is_post_type_translated(sanitize_text_field($_REQUEST['stype']))) {
914 914
         $lang_code = ICL_LANGUAGE_CODE;
915 915
         if ($lang_code) {
916
-            $where .= " AND icl_t.language_code='" . $lang_code . "' ";
916
+            $where .= " AND icl_t.language_code='".$lang_code."' ";
917 917
         }
918 918
 
919 919
     }
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
 {
937 937
     global $wp_query, $table;
938 938
     if (!empty($wp_query->query['with_pics_only'])) {
939
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
939
+        $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
940 940
     }
941 941
     return $join;
942 942
 }
@@ -955,16 +955,16 @@  discard block
 block discarded – undo
955 955
 {
956 956
     global $wp_query, $table;
957 957
     if (!empty($wp_query->query['show_featured_only'])) {
958
-        $where .= " AND " . $table . ".is_featured = '1'";
958
+        $where .= " AND ".$table.".is_featured = '1'";
959 959
     }
960 960
     if (!empty($wp_query->query['show_special_only'])) {
961
-        $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
961
+        $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
962 962
     }
963 963
     if (!empty($wp_query->query['with_pics_only'])) {
964
-        $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
964
+        $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL GROUP BY ".$table.".post_id";
965 965
     }
966 966
     if (!empty($wp_query->query['with_videos_only'])) {
967
-        $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
967
+        $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
968 968
     }
969 969
     return $where;
970 970
 }
@@ -973,18 +973,18 @@  discard block
 block discarded – undo
973 973
 function geodir_related_posts_fields($fields) {
974 974
     global $wp_query, $wpdb, $table, $post;
975 975
 
976
-    $fields .= ", " . $table . ".* ";
976
+    $fields .= ", ".$table.".* ";
977 977
 
978 978
     $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
979 979
 
980 980
     $mylat = $post->post_latitude;
981 981
     $mylon = $post->post_longitude;
982 982
 
983
-    $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
983
+    $fields .= " , (".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) )))as distance ";
984 984
     return $fields;
985 985
 }
986 986
 function geodir_related_posts_fields_filter($query) {
987
-    if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
987
+    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
988 988
         && isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
989 989
         && isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
990 990
     ) {
@@ -1003,25 +1003,25 @@  discard block
 block discarded – undo
1003 1003
  * @param string $table Listing table name.
1004 1004
  * @return string|null If field exists in table returns order by clause else returns empty.
1005 1005
  */
1006
-function geodir_prepare_custom_sorting( $sorting, $table ) {
1006
+function geodir_prepare_custom_sorting($sorting, $table) {
1007 1007
     $orderby = '';
1008 1008
     
1009
-    if ( empty( $sorting ) || empty( $table ) ) {
1009
+    if (empty($sorting) || empty($table)) {
1010 1010
         return $orderby;
1011 1011
     }
1012 1012
     
1013
-    if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1014
-        $sorting_array = explode( '_', $sorting );
1013
+    if (strpos(strtoupper($sorting), '_ASC') !== false || strpos(strtoupper($sorting), '_DESC') !== false) {
1014
+        $sorting_array = explode('_', $sorting);
1015 1015
         
1016
-        if ( ( $count = count( $sorting_array ) ) > 1 ) {
1017
-            $order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1018
-            array_pop( $sorting_array );
1016
+        if (($count = count($sorting_array)) > 1) {
1017
+            $order = !empty($sorting_array[$count - 1]) ? strtoupper($sorting_array[$count - 1]) : '';
1018
+            array_pop($sorting_array);
1019 1019
             
1020
-            if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1021
-                $sort_by = implode( '_', $sorting_array );
1020
+            if (!empty($sorting_array) && ($order == 'ASC' || $order == 'DESC')) {
1021
+                $sort_by = implode('_', $sorting_array);
1022 1022
                 
1023
-                if ( geodir_column_exist( $table, $sort_by ) ) {
1024
-                    $orderby = $table . "." . $sort_by . " " . $order;
1023
+                if (geodir_column_exist($table, $sort_by)) {
1024
+                    $orderby = $table.".".$sort_by." ".$order;
1025 1025
                 }
1026 1026
             }
1027 1027
         }
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
-    }
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 39
 
40
-    return $value;
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
-    }
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 146
 
147
-    return $out;
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
-    }
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 168
 
169
-    return $post_type_found;
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
-    }
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 457
 
458
-    return $layout_choice;
458
+	return $layout_choice;
459 459
 }
460 460
 
461 461
 /**
@@ -472,34 +472,34 @@  discard block
 block discarded – undo
472 472
  */
473 473
 function gdsc_validate_sort_choice($sort_choice, $post_type = '')
474 474
 {
475
-    global $plugin_prefix;
476
-
477
-    $sorts = array(
478
-        'az',
479
-        'latest',
480
-        'featured',
481
-        'high_review',
482
-        'high_rating',
483
-        'random',
484
-    );
485
-
486
-    if (in_array($sort_choice, $sorts)) {
487
-        return $sort_choice;
488
-    }
475
+	global $plugin_prefix;
476
+
477
+	$sorts = array(
478
+		'az',
479
+		'latest',
480
+		'featured',
481
+		'high_review',
482
+		'high_rating',
483
+		'random',
484
+	);
485
+
486
+	if (in_array($sort_choice, $sorts)) {
487
+		return $sort_choice;
488
+	}
489 489
 
490
-    if (!empty($post_type)) {
491
-        $table = $plugin_prefix . $post_type . '_detail';
490
+	if (!empty($post_type)) {
491
+		$table = $plugin_prefix . $post_type . '_detail';
492 492
         
493
-        if (!geodir_prepare_custom_sorting($sort_choice, $table)) {
494
-            $sort_choice = '';
495
-        }
496
-    }
493
+		if (!geodir_prepare_custom_sorting($sort_choice, $table)) {
494
+			$sort_choice = '';
495
+		}
496
+	}
497 497
 
498
-    if (empty($post_type) || empty($sort_choice)) {
499
-        $sort_choice = 'latest';
500
-    }
498
+	if (empty($post_type) || empty($sort_choice)) {
499
+		$sort_choice = 'latest';
500
+	}
501 501
 
502
-    return $sort_choice;
502
+	return $sort_choice;
503 503
 }
504 504
 
505 505
 /**
@@ -512,22 +512,22 @@  discard block
 block discarded – undo
512 512
  */
513 513
 function gdsc_validate_listing_width($width_choice)
514 514
 {
515
-    if (!(empty($width_choice))) {
516
-        $width_choice = absint($width_choice);
517
-    } else {
518
-        return '';
519
-    }
515
+	if (!(empty($width_choice))) {
516
+		$width_choice = absint($width_choice);
517
+	} else {
518
+		return '';
519
+	}
520 520
 
521
-    if (100 < $width_choice) {
522
-        $width_choice = 100;
523
-    }
521
+	if (100 < $width_choice) {
522
+		$width_choice = 100;
523
+	}
524 524
 
525
-    // If listing_width is too narrow, it won't work, arbitrarily set to 10% here
526
-    if (10 > $width_choice) {
527
-        $width_choice = 10;
528
-    }
525
+	// If listing_width is too narrow, it won't work, arbitrarily set to 10% here
526
+	if (10 > $width_choice) {
527
+		$width_choice = 10;
528
+	}
529 529
 
530
-    return $width_choice;
530
+	return $width_choice;
531 531
 }
532 532
 
533 533
 /**
@@ -540,18 +540,18 @@  discard block
 block discarded – undo
540 540
  */
541 541
 function gdsc_validate_list_filter_choice($filter_choice)
542 542
 {
543
-    $filters = array(
544
-        'all',
545
-        'today',
546
-        'upcoming',
547
-        'past',
548
-    );
549
-
550
-    if (!(in_array($filter_choice, $filters))) {
551
-        $filter_choice = 'all';
552
-    }
543
+	$filters = array(
544
+		'all',
545
+		'today',
546
+		'upcoming',
547
+		'past',
548
+	);
549
+
550
+	if (!(in_array($filter_choice, $filters))) {
551
+		$filter_choice = 'all';
552
+	}
553 553
 
554
-    return $filter_choice;
554
+	return $filter_choice;
555 555
 }
556 556
 
557 557
 /**
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
  * @return string Listings HTML content.
574 574
  */
575 575
 function geodir_sc_gd_listings_output($args = array()) {
576
-    $title				 = !empty($args['title']) ? __($args['title'], 'geodirectory') : '';
576
+	$title				 = !empty($args['title']) ? __($args['title'], 'geodirectory') : '';
577 577
 	$post_type 			 = !empty($args['post_type']) ? $args['post_type'] : 'gd_place';
578 578
 	$category 			 = !empty($args['category']) ? $args['category'] : '0';
579 579
 	$post_number		 = !empty($args['post_number']) ? $args['post_number'] : 10;
@@ -583,17 +583,17 @@  discard block
 block discarded – undo
583 583
 	$layout 			 = !empty($args['layout']) ? $args['layout'] : 'gridview_onehalf';
584 584
 	$with_pagination 	 = !empty($args['with_pagination']) ? true : false;
585 585
 	$event_type 	 	 = !empty($args['event_type']) ? $args['event_type'] : '';
586
-    $shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
587
-    $tags                = !empty($args['tags']) ? $args['tags'] : array();
588
-    /**
589
-     * Filter the content text displayed when no listings found.
590
-     *
591
-     * @since 1.6.0
592
-     *
593
-     * @param string $shortcode_content The shortcode content text.
594
-     * @param array $args Array of arguements to filter listings.
595
-     */
596
-    $shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
586
+	$shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
587
+	$tags                = !empty($args['tags']) ? $args['tags'] : array();
588
+	/**
589
+	 * Filter the content text displayed when no listings found.
590
+	 *
591
+	 * @since 1.6.0
592
+	 *
593
+	 * @param string $shortcode_content The shortcode content text.
594
+	 * @param array $args Array of arguements to filter listings.
595
+	 */
596
+	$shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
597 597
 		
598 598
 	$top_pagination 	 = $with_pagination && !empty($args['top_pagination']) ? true : false;
599 599
 	$bottom_pagination 	 = $with_pagination && !empty($args['bottom_pagination']) ? true : false;
@@ -605,92 +605,92 @@  discard block
 block discarded – undo
605 605
 	$pageno 	 		 = $geodir_ajax && !empty($args['pageno']) ? $args['pageno'] : 1;
606 606
 	
607 607
 	$query_args = array(
608
-        'posts_per_page' => $post_number,
609
-        'is_geodir_loop' => true,
610
-        'gd_location' => $add_location_filter,
611
-        'post_type' => $post_type,
612
-        'order_by' => $list_sort,
608
+		'posts_per_page' => $post_number,
609
+		'is_geodir_loop' => true,
610
+		'gd_location' => $add_location_filter,
611
+		'post_type' => $post_type,
612
+		'order_by' => $list_sort,
613 613
 		'pageno' => $pageno
614
-    );
614
+	);
615 615
 
616
-    if ($character_count >= 0) {
617
-        $query_args['excerpt_length'] = $character_count;
618
-    }
616
+	if ($character_count >= 0) {
617
+		$query_args['excerpt_length'] = $character_count;
618
+	}
619 619
     
620
-    if (!empty($args['post_author'])) {
621
-        $query_args['post_author'] = $args['post_author'];
622
-    }
620
+	if (!empty($args['post_author'])) {
621
+		$query_args['post_author'] = $args['post_author'];
622
+	}
623 623
 
624
-    if (!empty($args['show_featured_only'])) {
625
-        $query_args['show_featured_only'] = 1;
626
-    }
624
+	if (!empty($args['show_featured_only'])) {
625
+		$query_args['show_featured_only'] = 1;
626
+	}
627 627
 
628
-    if (!empty($args['show_special_only'])) {
629
-        $query_args['show_special_only'] = 1;
630
-    }
628
+	if (!empty($args['show_special_only'])) {
629
+		$query_args['show_special_only'] = 1;
630
+	}
631 631
 
632
-    if (!empty($args['with_pics_only'])) {
633
-        $query_args['with_pics_only'] = 0;
634
-        $query_args['featured_image_only'] = 1;
635
-    }
632
+	if (!empty($args['with_pics_only'])) {
633
+		$query_args['with_pics_only'] = 0;
634
+		$query_args['featured_image_only'] = 1;
635
+	}
636 636
 
637
-    if (!empty($args['with_videos_only'])) {
638
-        $query_args['with_videos_only'] = 1;
639
-    }
637
+	if (!empty($args['with_videos_only'])) {
638
+		$query_args['with_videos_only'] = 1;
639
+	}
640 640
     
641
-    if (!empty($args['show_favorites_only'])) {
642
-        $query_args['show_favorites_only'] = 1;
643
-        $query_args['favorites_by_user'] = !empty($args['favorites_by_user']) ? $args['favorites_by_user'] : 0;
644
-    }
645
-    $with_no_results = !empty($args['without_no_results']) ? false : true;
641
+	if (!empty($args['show_favorites_only'])) {
642
+		$query_args['show_favorites_only'] = 1;
643
+		$query_args['favorites_by_user'] = !empty($args['favorites_by_user']) ? $args['favorites_by_user'] : 0;
644
+	}
645
+	$with_no_results = !empty($args['without_no_results']) ? false : true;
646 646
 
647
-    if (!empty($category) && isset($category[0]) && $category[0] != '0') {
648
-        $category_taxonomy = geodir_get_taxonomies($post_type);
647
+	if (!empty($category) && isset($category[0]) && $category[0] != '0') {
648
+		$category_taxonomy = geodir_get_taxonomies($post_type);
649 649
 
650
-        ######### WPML #########
651
-        if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
652
-            $category = gd_lang_object_ids($category, $category_taxonomy[0]);
653
-        }
654
-        ######### WPML #########
650
+		######### WPML #########
651
+		if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
652
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
653
+		}
654
+		######### WPML #########
655 655
 
656
-        $tax_query = array(
657
-            'taxonomy' => $category_taxonomy[0],
658
-            'field' => 'id',
659
-            'terms' => $category
660
-        );
656
+		$tax_query = array(
657
+			'taxonomy' => $category_taxonomy[0],
658
+			'field' => 'id',
659
+			'terms' => $category
660
+		);
661 661
 
662
-        $query_args['tax_query'] = array($tax_query);
663
-    }
662
+		$query_args['tax_query'] = array($tax_query);
663
+	}
664 664
     
665
-    if (!empty($tags)) {
666
-        // Clean tags
667
-        if (!is_array($tags)) {
668
-            $comma = _x(',', 'tag delimiter');
669
-            if ( ',' !== $comma ) {
670
-                $tags = str_replace($comma, ',', $tags);
671
-            }
672
-            $tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
673
-            $tags = array_map('trim', $tags);
674
-        }
665
+	if (!empty($tags)) {
666
+		// Clean tags
667
+		if (!is_array($tags)) {
668
+			$comma = _x(',', 'tag delimiter');
669
+			if ( ',' !== $comma ) {
670
+				$tags = str_replace($comma, ',', $tags);
671
+			}
672
+			$tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
673
+			$tags = array_map('trim', $tags);
674
+		}
675 675
         
676
-        if (!empty($tags)) {
677
-            $tag_query = array(
678
-                'taxonomy' => $post_type . '_tags',
679
-                'field' => 'name',
680
-                'terms' => $tags
681
-            );
682
-
683
-            if (!empty($query_args['tax_query'])) {
684
-                $query_args['tax_query'][] = $tag_query;
685
-            } else {
686
-                $query_args['tax_query'] = array($tag_query);
687
-            }
688
-        }
689
-    }
676
+		if (!empty($tags)) {
677
+			$tag_query = array(
678
+				'taxonomy' => $post_type . '_tags',
679
+				'field' => 'name',
680
+				'terms' => $tags
681
+			);
682
+
683
+			if (!empty($query_args['tax_query'])) {
684
+				$query_args['tax_query'][] = $tag_query;
685
+			} else {
686
+				$query_args['tax_query'] = array($tag_query);
687
+			}
688
+		}
689
+	}
690 690
 
691
-    global $gridview_columns_widget, $geodir_is_widget_listing;
691
+	global $gridview_columns_widget, $geodir_is_widget_listing;
692 692
 
693
-    if ($post_type == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
693
+	if ($post_type == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
694 694
 		global $geodir_event_widget_listview;
695 695
 		$geodir_event_widget_listview = true;
696 696
 		
@@ -705,16 +705,16 @@  discard block
 block discarded – undo
705 705
 		$widget_listings = $total_posts > 0 ? geodir_get_widget_listings($query_args) : array();
706 706
 	}
707 707
 	$current_gridview_columns_widget = $gridview_columns_widget;
708
-    $identifier = ' gd-wgt-pagi-' . mt_rand();
709
-    ob_start();
708
+	$identifier = ' gd-wgt-pagi-' . mt_rand();
709
+	ob_start();
710 710
 	if (!empty($widget_listings) || $with_no_results) {
711 711
 		if (!$geodir_ajax) {
712
-        /**
713
-         * Called before the shortcode [gd_listings] content is output.
714
-         *
715
-         * @since 1.0.0
716
-         */
717
-        do_action('geodir_before_sc_gd_listings');
712
+		/**
713
+		 * Called before the shortcode [gd_listings] content is output.
714
+		 *
715
+		 * @since 1.0.0
716
+		 */
717
+		do_action('geodir_before_sc_gd_listings');
718 718
 		?>
719 719
         <div class="geodir_locations geodir_location_listing geodir-sc-gd-listings <?php echo $identifier;?>">
720 720
             <?php if ($title != '') { ?>
@@ -725,63 +725,63 @@  discard block
 block discarded – undo
725 725
             <div class="gd-sc-loader">
726 726
                 <div class="gd-sc-content">
727 727
             <?php }
728
-            if (!(empty($widget_listings) && !empty($shortcode_content))) {
729
-                if (strstr($layout, 'gridview')) {
730
-                    $listing_view_exp = explode('_', $layout);
731
-                    $gridview_columns_widget = $layout;
732
-                    $layout = $listing_view_exp[0];
733
-                } else {
734
-                    $gridview_columns_widget = '';
735
-                }
736
-
737
-                /**
738
-                 * Filter the widget listing listview template.
739
-                 *
740
-                 * @since 1.0.0
741
-                 *
742
-                 * @param string The template file to display listing.
743
-                 */
744
-                $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
728
+			if (!(empty($widget_listings) && !empty($shortcode_content))) {
729
+				if (strstr($layout, 'gridview')) {
730
+					$listing_view_exp = explode('_', $layout);
731
+					$gridview_columns_widget = $layout;
732
+					$layout = $listing_view_exp[0];
733
+				} else {
734
+					$gridview_columns_widget = '';
735
+				}
736
+
737
+				/**
738
+				 * Filter the widget listing listview template.
739
+				 *
740
+				 * @since 1.0.0
741
+				 *
742
+				 * @param string The template file to display listing.
743
+				 */
744
+				$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
745 745
                             
746
-                global $post, $map_jason, $map_canvas_arr, $gd_session;
747
-
748
-                $current_post = $post;
749
-                $current_map_jason = $map_jason;
750
-                $current_map_canvas_arr = $map_canvas_arr;
751
-                $geodir_is_widget_listing = true;
752
-                $gd_session->un_set('gd_listing_view');
753
-
754
-                if ($with_pagination && $top_pagination) {				
755
-                    echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
756
-                }
757
-
758
-                /**
759
-                 * Includes listing listview template.
760
-                 *
761
-                 * @since 1.0.0
762
-                 */
763
-                include($template);
746
+				global $post, $map_jason, $map_canvas_arr, $gd_session;
747
+
748
+				$current_post = $post;
749
+				$current_map_jason = $map_jason;
750
+				$current_map_canvas_arr = $map_canvas_arr;
751
+				$geodir_is_widget_listing = true;
752
+				$gd_session->un_set('gd_listing_view');
753
+
754
+				if ($with_pagination && $top_pagination) {				
755
+					echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
756
+				}
757
+
758
+				/**
759
+				 * Includes listing listview template.
760
+				 *
761
+				 * @since 1.0.0
762
+				 */
763
+				include($template);
764 764
                 
765
-                if ($with_pagination && $bottom_pagination) {				
766
-                    echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
767
-                }
768
-
769
-                $geodir_is_widget_listing = false;
770
-
771
-                $GLOBALS['post'] = $current_post;
772
-                if (!empty($current_post)) {
773
-                    setup_postdata($current_post);
774
-                }
775
-                $map_jason = $current_map_jason;
776
-                $map_canvas_arr = $current_map_canvas_arr;
777
-                global $gridview_columns_widget;
778
-                $gridview_columns_widget = $current_gridview_columns_widget;
779
-            } else {
780
-                echo $shortcode_content;
781
-            }
765
+				if ($with_pagination && $bottom_pagination) {				
766
+					echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
767
+				}
768
+
769
+				$geodir_is_widget_listing = false;
770
+
771
+				$GLOBALS['post'] = $current_post;
772
+				if (!empty($current_post)) {
773
+					setup_postdata($current_post);
774
+				}
775
+				$map_jason = $current_map_jason;
776
+				$map_canvas_arr = $current_map_canvas_arr;
777
+				global $gridview_columns_widget;
778
+				$gridview_columns_widget = $current_gridview_columns_widget;
779
+			} else {
780
+				echo $shortcode_content;
781
+			}
782 782
 			?>
783 783
 			<?php
784
-            if (!$geodir_ajax) { 
784
+			if (!$geodir_ajax) { 
785 785
 			?>
786 786
             </div><p class="geodir-sclisting-loading" style="display:none;"><i class="fa fa-cog fa-spin"></i></p></div>
787 787
 <script type="text/javascript">
@@ -819,10 +819,10 @@  discard block
 block discarded – undo
819 819
             loading.hide();
820 820
             jQuery(items).html(response);
821 821
             <?php
822
-              /**
823
-               * if lazyload images enabled then refresh them once ajax page changed.
824
-               */
825
-              if (get_option('geodir_lazy_load', 1)) { ?>
822
+			  /**
823
+			   * if lazyload images enabled then refresh them once ajax page changed.
824
+			   */
825
+			  if (get_option('geodir_lazy_load', 1)) { ?>
826 826
               geodir_init_lazy_load();
827 827
               <?php } ?>
828 828
         }
@@ -832,11 +832,11 @@  discard block
 block discarded – undo
832 832
 </div>
833 833
 		<?php } ?>
834 834
     <?php
835
-    }
835
+	}
836 836
 	$output = ob_get_contents();
837
-    ob_end_clean();
837
+	ob_end_clean();
838 838
 
839
-    return trim($output);
839
+	return trim($output);
840 840
 }
841 841
 
842 842
 /**
@@ -863,15 +863,15 @@  discard block
 block discarded – undo
863 863
  * @return string Listings pagination HTML content.
864 864
  */
865 865
 function geodir_sc_listings_pagination($total_posts, $posts_per_page, $pageno, $before = '', $after = '', $prelabel = '', $nxtlabel = '', $pages_to_show = 5, $always_show = false) {
866
-    if (empty($prelabel)) {
867
-        $prelabel = '<strong>&laquo;</strong>';
868
-    }
866
+	if (empty($prelabel)) {
867
+		$prelabel = '<strong>&laquo;</strong>';
868
+	}
869 869
 
870
-    if (empty($nxtlabel)) {
871
-        $nxtlabel = '<strong>&raquo;</strong>';
872
-    }
870
+	if (empty($nxtlabel)) {
871
+		$nxtlabel = '<strong>&raquo;</strong>';
872
+	}
873 873
 
874
-    $half_pages_to_show = round($pages_to_show / 2);
874
+	$half_pages_to_show = round($pages_to_show / 2);
875 875
 
876 876
 	$numposts = $total_posts;
877 877
 
@@ -904,7 +904,7 @@  discard block
 block discarded – undo
904 904
 		}
905 905
 		
906 906
 		if (($pageno - 1) > 0) {
907
-            echo '<a class="gd-page-sc-prev gd-wgt-page" data-page="' . (int)($pageno - 1) . '" href="javascript:void(0);">' . $prelabel . '</a>&nbsp;';
907
+			echo '<a class="gd-page-sc-prev gd-wgt-page" data-page="' . (int)($pageno - 1) . '" href="javascript:void(0);">' . $prelabel . '</a>&nbsp;';
908 908
 		}
909 909
 		
910 910
 		for ($i = $pageno - $half_pages_to_show; $i <= $pageno + $half_pages_to_show; $i++) {
@@ -927,9 +927,9 @@  discard block
 block discarded – undo
927 927
 		echo "</div> $after </div>";
928 928
 	}
929 929
 	$output = ob_get_contents();
930
-    ob_end_clean();
930
+	ob_end_clean();
931 931
 
932
-    return trim($output);
932
+	return trim($output);
933 933
 }
934 934
 
935 935
 /**
@@ -940,10 +940,10 @@  discard block
 block discarded – undo
940 940
  * @return string Listings HTML content.
941 941
  */
942 942
 function geodir_sclistings_callback() {
943
-    check_ajax_referer('geodir-sclistings-nonce', 'geodir_sclistings_nonce');
944
-    //set variables
945
-    $scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
946
-    $pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
943
+	check_ajax_referer('geodir-sclistings-nonce', 'geodir_sclistings_nonce');
944
+	//set variables
945
+	$scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
946
+	$pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
947 947
 	
948 948
 	$shortcode_atts = !empty($scatts) ? (array)json_decode(stripslashes_deep($scatts)) : NULL;
949 949
 	
@@ -955,7 +955,7 @@  discard block
 block discarded – undo
955 955
 	} else {
956 956
 		echo 0;
957 957
 	}
958
-    wp_die();
958
+	wp_die();
959 959
 }
960 960
 add_action('wp_ajax_geodir_sclistings', 'geodir_sclistings_callback');
961 961
 add_action('wp_ajax_nopriv_geodir_sclistings', 'geodir_sclistings_callback');
962 962
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/custom_functions.php 2 patches
Indentation   +312 added lines, -312 removed lines patch added patch discarded remove patch
@@ -2372,10 +2372,10 @@  discard block
 block discarded – undo
2372 2372
 	?>
2373 2373
 	<input class="search_text" name="s"
2374 2374
 	       value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
2375
-		       echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2376
-	       } else {
2377
-		       echo $default_search_for_text;
2378
-	       } ?>" type="text"
2375
+			   echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2376
+		   } else {
2377
+			   echo $default_search_for_text;
2378
+		   } ?>" type="text"
2379 2379
 	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
2380 2380
 	       onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
2381 2381
 	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);">
@@ -2502,11 +2502,11 @@  discard block
 block discarded – undo
2502 2502
  * @return True if WPML is active else False.
2503 2503
  */
2504 2504
 function geodir_is_wpml() {
2505
-    if (function_exists('icl_object_id')) {
2506
-        return true;
2507
-    }
2505
+	if (function_exists('icl_object_id')) {
2506
+		return true;
2507
+	}
2508 2508
 
2509
-    return false;
2509
+	return false;
2510 2510
 }
2511 2511
 
2512 2512
 /**
@@ -2521,9 +2521,9 @@  discard block
 block discarded – undo
2521 2521
  * @return Language code.
2522 2522
  */
2523 2523
 function geodir_get_language_for_element($element_id, $element_type) {
2524
-    global $sitepress;
2524
+	global $sitepress;
2525 2525
 
2526
-    return $sitepress->get_language_for_element($element_id, $element_type);
2526
+	return $sitepress->get_language_for_element($element_id, $element_type);
2527 2527
 }
2528 2528
 
2529 2529
 /**
@@ -2540,31 +2540,31 @@  discard block
 block discarded – undo
2540 2540
  *                         Added to fix duplicate translation for front end.
2541 2541
  */
2542 2542
 function geodir_icl_make_duplicate($master_post_id, $lang, $postarr, $tr_post_id, $after_save = false) {
2543
-    global $sitepress;
2543
+	global $sitepress;
2544 2544
     
2545
-    $post_type = get_post_type($master_post_id);
2546
-    $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2547
-    if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2548
-        $icl_ajx_action = true;
2549
-    }
2545
+	$post_type = get_post_type($master_post_id);
2546
+	$icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2547
+	if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2548
+		$icl_ajx_action = true;
2549
+	}
2550 2550
     
2551
-    if (in_array($post_type, geodir_get_posttypes())) {
2552
-        if ($icl_ajx_action || $after_save) {
2553
-            // Duplicate post details
2554
-            geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang);
2551
+	if (in_array($post_type, geodir_get_posttypes())) {
2552
+		if ($icl_ajx_action || $after_save) {
2553
+			// Duplicate post details
2554
+			geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang);
2555 2555
             
2556
-            // Duplicate taxonomies
2557
-            geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang);
2556
+			// Duplicate taxonomies
2557
+			geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang);
2558 2558
             
2559
-            // Duplicate post images
2560
-            geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang);
2561
-        }
2559
+			// Duplicate post images
2560
+			geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang);
2561
+		}
2562 2562
         
2563
-        // Sync post reviews
2564
-        if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2565
-            geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang);
2566
-        }
2567
-    }
2563
+		// Sync post reviews
2564
+		if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2565
+			geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang);
2566
+		}
2567
+	}
2568 2568
 }
2569 2569
 add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 );
2570 2570
 
@@ -2578,18 +2578,18 @@  discard block
 block discarded – undo
2578 2578
  * @param array $request_info The post details in an array.
2579 2579
  */
2580 2580
 function geodir_wpml_duplicate_listing($post_id, $request_info) {
2581
-    global $sitepress;
2581
+	global $sitepress;
2582 2582
     
2583
-    $icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2584
-    if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2585
-        $icl_ajx_action = true;
2586
-    }
2583
+	$icl_ajx_action = !empty($_REQUEST['icl_ajx_action']) && $_REQUEST['icl_ajx_action'] == 'make_duplicates' ? true : false;
2584
+	if (!empty($_REQUEST['action']) && $_REQUEST['action'] == 'wpml_duplicate_dashboard' && !empty($_REQUEST['duplicate_post_ids'])) {
2585
+		$icl_ajx_action = true;
2586
+	}
2587 2587
     
2588
-    if (!$icl_ajx_action && in_array(get_post_type($post_id), geodir_get_posttypes()) && $post_duplicates = $sitepress->get_duplicates($post_id)) {
2589
-        foreach ($post_duplicates as $lang => $dup_post_id) {
2590
-            geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true);
2591
-        }
2592
-    }
2588
+	if (!$icl_ajx_action && in_array(get_post_type($post_id), geodir_get_posttypes()) && $post_duplicates = $sitepress->get_duplicates($post_id)) {
2589
+		foreach ($post_duplicates as $lang => $dup_post_id) {
2590
+			geodir_icl_make_duplicate($post_id, $lang, $request_info, $dup_post_id, true);
2591
+		}
2592
+	}
2593 2593
 }
2594 2594
 
2595 2595
 /**
@@ -2605,17 +2605,17 @@  discard block
 block discarded – undo
2605 2605
  * @return bool True for success, False for fail.
2606 2606
  */
2607 2607
 function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) {
2608
-    global $wpdb;
2608
+	global $wpdb;
2609 2609
 
2610
-    $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2610
+	$reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2611 2611
 
2612
-    if (!empty($reviews)) {
2613
-        foreach ($reviews as $review) {
2614
-            geodir_wpml_duplicate_post_review($review['comment_id'], $master_post_id, $tr_post_id, $lang);
2615
-        }
2616
-    }
2612
+	if (!empty($reviews)) {
2613
+		foreach ($reviews as $review) {
2614
+			geodir_wpml_duplicate_post_review($review['comment_id'], $master_post_id, $tr_post_id, $lang);
2615
+		}
2616
+	}
2617 2617
 
2618
-    return false;
2618
+	return false;
2619 2619
 }
2620 2620
 
2621 2621
 /**
@@ -2632,22 +2632,22 @@  discard block
 block discarded – undo
2632 2632
  * @return bool True for success, False for fail.
2633 2633
  */
2634 2634
 function geodir_icl_duplicate_post_details($master_post_id, $tr_post_id, $lang) {
2635
-    global $wpdb, $plugin_prefix;
2635
+	global $wpdb, $plugin_prefix;
2636 2636
 
2637
-    $post_type = get_post_type($master_post_id);
2638
-    $post_table = $plugin_prefix . $post_type . '_detail';
2637
+	$post_type = get_post_type($master_post_id);
2638
+	$post_table = $plugin_prefix . $post_type . '_detail';
2639 2639
 
2640
-    $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
2641
-    $data = (array)$wpdb->get_row($query);
2640
+	$query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
2641
+	$data = (array)$wpdb->get_row($query);
2642 2642
 
2643
-    if ( !empty( $data ) ) {
2644
-        $data['post_id'] = $tr_post_id;
2645
-        unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']);
2646
-        $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
2647
-        return true;
2648
-    }
2643
+	if ( !empty( $data ) ) {
2644
+		$data['post_id'] = $tr_post_id;
2645
+		unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']);
2646
+		$wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
2647
+		return true;
2648
+	}
2649 2649
 
2650
-    return false;
2650
+	return false;
2651 2651
 }
2652 2652
 
2653 2653
 /**
@@ -2664,40 +2664,40 @@  discard block
 block discarded – undo
2664 2664
  * @return bool True for success, False for fail.
2665 2665
  */
2666 2666
 function geodir_icl_duplicate_taxonomies($master_post_id, $tr_post_id, $lang) {
2667
-    global $sitepress, $wpdb;
2668
-    $post_type = get_post_type($master_post_id);
2667
+	global $sitepress, $wpdb;
2668
+	$post_type = get_post_type($master_post_id);
2669 2669
 
2670
-    remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
2670
+	remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
2671 2671
 
2672
-    $taxonomies = get_object_taxonomies($post_type);
2673
-    foreach ($taxonomies as $taxonomy) {
2674
-        $terms = get_the_terms($master_post_id, $taxonomy);
2675
-        $terms_array = array();
2672
+	$taxonomies = get_object_taxonomies($post_type);
2673
+	foreach ($taxonomies as $taxonomy) {
2674
+		$terms = get_the_terms($master_post_id, $taxonomy);
2675
+		$terms_array = array();
2676 2676
         
2677
-        if ($terms) {
2678
-            foreach ($terms as $term) {
2679
-                $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
2677
+		if ($terms) {
2678
+			foreach ($terms as $term) {
2679
+				$tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
2680 2680
                 
2681
-                if (!is_null($tr_id)){
2682
-                    // not using get_term - unfiltered get_term
2683
-                    $translated_term = $wpdb->get_row($wpdb->prepare("
2681
+				if (!is_null($tr_id)){
2682
+					// not using get_term - unfiltered get_term
2683
+					$translated_term = $wpdb->get_row($wpdb->prepare("
2684 2684
                         SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
2685 2685
 
2686
-                    $terms_array[] = $translated_term->term_id;
2687
-                }
2688
-            }
2686
+					$terms_array[] = $translated_term->term_id;
2687
+				}
2688
+			}
2689 2689
 
2690
-            if (!is_taxonomy_hierarchical($taxonomy)){
2691
-                $terms_array = array_unique( array_map( 'intval', $terms_array ) );
2692
-            }
2690
+			if (!is_taxonomy_hierarchical($taxonomy)){
2691
+				$terms_array = array_unique( array_map( 'intval', $terms_array ) );
2692
+			}
2693 2693
 
2694
-            wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
2694
+			wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
2695 2695
             
2696
-            if ($taxonomy == $post_type . 'category') {
2697
-                geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
2698
-            }
2699
-        }
2700
-    }
2696
+			if ($taxonomy == $post_type . 'category') {
2697
+				geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
2698
+			}
2699
+		}
2700
+	}
2701 2701
 }
2702 2702
 
2703 2703
 /**
@@ -2713,29 +2713,29 @@  discard block
 block discarded – undo
2713 2713
  * @return bool True for success, False for fail.
2714 2714
  */
2715 2715
 function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
2716
-    global $wpdb;
2716
+	global $wpdb;
2717 2717
 
2718
-    $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2719
-    $wpdb->query($query);
2718
+	$query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2719
+	$wpdb->query($query);
2720 2720
 
2721
-    $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2722
-    $post_images = $wpdb->get_results($query);
2721
+	$query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2722
+	$post_images = $wpdb->get_results($query);
2723 2723
 
2724
-    if ( !empty( $post_images ) ) {
2725
-        foreach ( $post_images as $post_image) {
2726
-            $image_data = (array)$post_image;
2727
-            unset($image_data['ID']);
2728
-            $image_data['post_id'] = $tr_post_id;
2724
+	if ( !empty( $post_images ) ) {
2725
+		foreach ( $post_images as $post_image) {
2726
+			$image_data = (array)$post_image;
2727
+			unset($image_data['ID']);
2728
+			$image_data['post_id'] = $tr_post_id;
2729 2729
             
2730
-            $wpdb->insert(GEODIR_ATTACHMENT_TABLE, $image_data);
2730
+			$wpdb->insert(GEODIR_ATTACHMENT_TABLE, $image_data);
2731 2731
             
2732
-            geodir_set_wp_featured_image($tr_post_id);
2733
-        }
2732
+			geodir_set_wp_featured_image($tr_post_id);
2733
+		}
2734 2734
         
2735
-        return true;
2736
-    }
2735
+		return true;
2736
+	}
2737 2737
 
2738
-    return false;
2738
+	return false;
2739 2739
 }
2740 2740
 
2741 2741
 
@@ -2754,73 +2754,73 @@  discard block
 block discarded – undo
2754 2754
  * @return bool True for success, False for fail.
2755 2755
  */
2756 2756
 function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) {
2757
-    global $wpdb, $plugin_prefix, $sitepress;
2758
-
2759
-    $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2760
-
2761
-    if (empty($review)) {
2762
-        return false;
2763
-    }
2764
-    if ($review['post_id'] != $master_post_id) {
2765
-        $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2766
-        geodir_update_postrating($master_post_id, $post_type);
2767
-    }
2768
-
2769
-    $tr_comment_id = geodir_wpml_duplicate_comment_exists($tr_post_id, $master_comment_id);
2770
-
2771
-    if (empty($tr_comment_id)) {
2772
-        return false;
2773
-    }
2774
-
2775
-    $post_type = get_post_type($master_post_id);
2776
-    $post_table = $plugin_prefix . $post_type . '_detail';
2777
-
2778
-    $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
2779
-    if (empty($translated_post)) {
2780
-        return false;
2781
-    }
2782
-
2783
-    $review['comment_id'] = $tr_comment_id;
2784
-    $review['post_id'] = $tr_post_id;
2785
-    $review['post_title'] = $translated_post['post_title'];
2786
-    $review['post_city'] = $translated_post['post_city'];
2787
-    $review['post_region'] = $translated_post['post_region'];
2788
-    $review['post_country'] = $translated_post['post_country'];
2789
-    $review['post_latitude'] = $translated_post['post_latitude'];
2790
-    $review['post_longitude'] = $translated_post['post_longitude'];
2791
-
2792
-    if (isset($review['id'])) {
2793
-        unset($review['id']);
2794
-    }
2795
-
2796
-    $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2797
-
2798
-    if ($tr_review_id) { // update review
2799
-        $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
2800
-    } else { // insert review
2801
-        $wpdb->insert(GEODIR_REVIEW_TABLE, $review);
2802
-        $tr_review_id = $wpdb->insert_id;
2803
-    }
2804
-
2805
-    if ($tr_post_id) {
2806
-        geodir_update_postrating($tr_post_id, $post_type);
2757
+	global $wpdb, $plugin_prefix, $sitepress;
2758
+
2759
+	$review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2760
+
2761
+	if (empty($review)) {
2762
+		return false;
2763
+	}
2764
+	if ($review['post_id'] != $master_post_id) {
2765
+		$wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2766
+		geodir_update_postrating($master_post_id, $post_type);
2767
+	}
2768
+
2769
+	$tr_comment_id = geodir_wpml_duplicate_comment_exists($tr_post_id, $master_comment_id);
2770
+
2771
+	if (empty($tr_comment_id)) {
2772
+		return false;
2773
+	}
2774
+
2775
+	$post_type = get_post_type($master_post_id);
2776
+	$post_table = $plugin_prefix . $post_type . '_detail';
2777
+
2778
+	$translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
2779
+	if (empty($translated_post)) {
2780
+		return false;
2781
+	}
2782
+
2783
+	$review['comment_id'] = $tr_comment_id;
2784
+	$review['post_id'] = $tr_post_id;
2785
+	$review['post_title'] = $translated_post['post_title'];
2786
+	$review['post_city'] = $translated_post['post_city'];
2787
+	$review['post_region'] = $translated_post['post_region'];
2788
+	$review['post_country'] = $translated_post['post_country'];
2789
+	$review['post_latitude'] = $translated_post['post_latitude'];
2790
+	$review['post_longitude'] = $translated_post['post_longitude'];
2791
+
2792
+	if (isset($review['id'])) {
2793
+		unset($review['id']);
2794
+	}
2795
+
2796
+	$tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2797
+
2798
+	if ($tr_review_id) { // update review
2799
+		$wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
2800
+	} else { // insert review
2801
+		$wpdb->insert(GEODIR_REVIEW_TABLE, $review);
2802
+		$tr_review_id = $wpdb->insert_id;
2803
+	}
2804
+
2805
+	if ($tr_post_id) {
2806
+		geodir_update_postrating($tr_post_id, $post_type);
2807 2807
         
2808
-        if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
2809
-            $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
2810
-            $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2811
-
2812
-            if (!empty($likes)) {
2813
-                foreach ($likes as $like) {
2814
-                    unset($like['like_id']);
2815
-                    $like['comment_id'] = $tr_comment_id;
2808
+		if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
2809
+			$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
2810
+			$likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2811
+
2812
+			if (!empty($likes)) {
2813
+				foreach ($likes as $like) {
2814
+					unset($like['like_id']);
2815
+					$like['comment_id'] = $tr_comment_id;
2816 2816
                     
2817
-                    $wpdb->insert(GEODIR_COMMENTS_REVIEWS_TABLE, $like);
2818
-                }
2819
-            }
2820
-        }
2821
-    }
2817
+					$wpdb->insert(GEODIR_COMMENTS_REVIEWS_TABLE, $like);
2818
+				}
2819
+			}
2820
+		}
2821
+	}
2822 2822
 
2823
-    return $tr_review_id;
2823
+	return $tr_review_id;
2824 2824
 }
2825 2825
 
2826 2826
 /**
@@ -2835,36 +2835,36 @@  discard block
 block discarded – undo
2835 2835
  * @param int $comment_id The Comment ID.
2836 2836
  */
2837 2837
 function gepdir_wpml_sync_comment($comment_id) {
2838
-    global $wpdb, $sitepress, $gd_wpml_posttypes;
2839
-
2840
-    if (empty($gd_post_types)) {
2841
-        $gd_wpml_posttypes = geodir_get_posttypes();
2842
-    }
2843
-
2844
-    $comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_ID=%d", $comment_id), ARRAY_A);
2845
-    if (empty($comment)) {
2846
-        return;
2847
-    }
2848
-
2849
-    $post_id = $comment['comment_post_ID'];
2850
-    $post_type = $post_id ? get_post_type($post_id) : NULL;
2851
-
2852
-    if (!($post_type && in_array($post_type, $gd_wpml_posttypes))) {
2853
-        return;
2854
-    }
2855
-
2856
-    $post_duplicates = $sitepress->get_duplicates($post_id);
2857
-    if (empty($post_duplicates)) {
2858
-        return;
2859
-    }
2860
-
2861
-    foreach ($post_duplicates as $lang => $dup_post_id) {
2862
-        if (empty($comment['comment_parent'])) {
2863
-            geodir_wpml_duplicate_post_review($comment_id, $post_id, $dup_post_id, $lang);
2864
-        }
2865
-    }
2838
+	global $wpdb, $sitepress, $gd_wpml_posttypes;
2839
+
2840
+	if (empty($gd_post_types)) {
2841
+		$gd_wpml_posttypes = geodir_get_posttypes();
2842
+	}
2843
+
2844
+	$comment = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->comments} WHERE comment_ID=%d", $comment_id), ARRAY_A);
2845
+	if (empty($comment)) {
2846
+		return;
2847
+	}
2848
+
2849
+	$post_id = $comment['comment_post_ID'];
2850
+	$post_type = $post_id ? get_post_type($post_id) : NULL;
2851
+
2852
+	if (!($post_type && in_array($post_type, $gd_wpml_posttypes))) {
2853
+		return;
2854
+	}
2855
+
2856
+	$post_duplicates = $sitepress->get_duplicates($post_id);
2857
+	if (empty($post_duplicates)) {
2858
+		return;
2859
+	}
2860
+
2861
+	foreach ($post_duplicates as $lang => $dup_post_id) {
2862
+		if (empty($comment['comment_parent'])) {
2863
+			geodir_wpml_duplicate_post_review($comment_id, $post_id, $dup_post_id, $lang);
2864
+		}
2865
+	}
2866 2866
     
2867
-    return true;
2867
+	return true;
2868 2868
 }
2869 2869
 
2870 2870
 /**
@@ -2879,11 +2879,11 @@  discard block
 block discarded – undo
2879 2879
  * @return int The duplicate comment ID.
2880 2880
  */
2881 2881
 function geodir_wpml_duplicate_comment_exists($dup_post_id, $original_cid) {
2882
-    global $wpdb;
2882
+	global $wpdb;
2883 2883
 
2884
-    $duplicate = $wpdb->get_var(
2885
-        $wpdb->prepare(
2886
-            "   SELECT comm.comment_ID
2884
+	$duplicate = $wpdb->get_var(
2885
+		$wpdb->prepare(
2886
+			"   SELECT comm.comment_ID
2887 2887
                 FROM {$wpdb->comments} comm
2888 2888
                 JOIN {$wpdb->commentmeta} cm
2889 2889
                     ON comm.comment_ID = cm.comment_id
@@ -2891,12 +2891,12 @@  discard block
 block discarded – undo
2891 2891
                     AND cm.meta_key = '_icl_duplicate_of'
2892 2892
                     AND cm.meta_value = %d
2893 2893
                 LIMIT 1",
2894
-            $dup_post_id,
2895
-            $original_cid
2896
-        )
2897
-    );
2894
+			$dup_post_id,
2895
+			$original_cid
2896
+		)
2897
+	);
2898 2898
 
2899
-    return $duplicate;
2899
+	return $duplicate;
2900 2900
 }
2901 2901
 
2902 2902
 /**
@@ -2968,7 +2968,7 @@  discard block
 block discarded – undo
2968 2968
  * @return bool True if Yoast SEO disabled on GD pages.
2969 2969
  */
2970 2970
 function geodir_disable_yoast_seo_metas() {
2971
-    return (bool)get_option( 'geodir_disable_yoast_meta' );
2971
+	return (bool)get_option( 'geodir_disable_yoast_meta' );
2972 2972
 }
2973 2973
 
2974 2974
 /**
@@ -2980,39 +2980,39 @@  discard block
 block discarded – undo
2980 2980
  * @return bool True if allowed.
2981 2981
  */
2982 2982
 function geodir_wpml_allowed_to_duplicate( $post_id ) {
2983
-    $allowed = false;
2983
+	$allowed = false;
2984 2984
     
2985
-    if ( !geodir_is_wpml() || empty( $post_id ) ) {
2986
-        return $allowed;
2987
-    }
2985
+	if ( !geodir_is_wpml() || empty( $post_id ) ) {
2986
+		return $allowed;
2987
+	}
2988 2988
     
2989
-    $user_id = (int)get_current_user_id();
2989
+	$user_id = (int)get_current_user_id();
2990 2990
     
2991
-    if ( empty( $user_id ) ) {
2992
-        return $allowed;
2993
-    }
2991
+	if ( empty( $user_id ) ) {
2992
+		return $allowed;
2993
+	}
2994 2994
     
2995
-    $post_type = get_post_type( $post_id );
2996
-    if ( !geodir_wpml_is_post_type_translated( $post_type ) || get_post_meta( $post_id, '_icl_lang_duplicate_of', true ) ) {
2997
-        return $allowed;
2998
-    }
2995
+	$post_type = get_post_type( $post_id );
2996
+	if ( !geodir_wpml_is_post_type_translated( $post_type ) || get_post_meta( $post_id, '_icl_lang_duplicate_of', true ) ) {
2997
+		return $allowed;
2998
+	}
2999 2999
     
3000
-    if ( geodir_listing_belong_to_current_user( $post_id ) ) {
3001
-        $allowed = true;
3002
-    }
3000
+	if ( geodir_listing_belong_to_current_user( $post_id ) ) {
3001
+		$allowed = true;
3002
+	}
3003 3003
     
3004
-    $disable_cpts = get_option( 'geodir_wpml_disable_duplicate' );
3005
-    if ( $allowed && !empty( $disable_cpts ) && in_array( $post_type, $disable_cpts ) ) {
3006
-        $allowed = false;
3007
-    }
3004
+	$disable_cpts = get_option( 'geodir_wpml_disable_duplicate' );
3005
+	if ( $allowed && !empty( $disable_cpts ) && in_array( $post_type, $disable_cpts ) ) {
3006
+		$allowed = false;
3007
+	}
3008 3008
     
3009
-    /**
3010
-     * Filter the user allowed to duplicate listing or not for WPML.
3011
-     *
3012
-     * @param bool $allowed True if allowed.
3013
-     * @param int $post_id The post ID.
3014
-     */
3015
-    return apply_filters( 'geodir_wpml_allowed_to_duplicate', $allowed, $post_id );
3009
+	/**
3010
+	 * Filter the user allowed to duplicate listing or not for WPML.
3011
+	 *
3012
+	 * @param bool $allowed True if allowed.
3013
+	 * @param int $post_id The post ID.
3014
+	 */
3015
+	return apply_filters( 'geodir_wpml_allowed_to_duplicate', $allowed, $post_id );
3016 3016
 }
3017 3017
 
3018 3018
 /**
@@ -3028,71 +3028,71 @@  discard block
 block discarded – undo
3028 3028
  * @return string Filtered html of the geodir_edit_post_link() function.
3029 3029
  */
3030 3030
 function geodir_wpml_frontend_duplicate_listing( $content_html ) {
3031
-    global $post, $preview, $sitepress;
3031
+	global $post, $preview, $sitepress;
3032 3032
     
3033
-    if ( !empty( $post->ID ) && !$preview && geodir_is_page( 'detail' ) && geodir_wpml_allowed_to_duplicate( $post->ID ) ) {
3034
-        $post_id = $post->ID;
3035
-        $element_type = 'post_' . get_post_type( $post_id );
3036
-        $original_post_id = $sitepress->get_original_element_id( $post_id, $element_type );
3033
+	if ( !empty( $post->ID ) && !$preview && geodir_is_page( 'detail' ) && geodir_wpml_allowed_to_duplicate( $post->ID ) ) {
3034
+		$post_id = $post->ID;
3035
+		$element_type = 'post_' . get_post_type( $post_id );
3036
+		$original_post_id = $sitepress->get_original_element_id( $post_id, $element_type );
3037 3037
         
3038
-        if ( $original_post_id == $post_id ) {
3039
-            $wpml_languages = $sitepress->get_active_languages();
3040
-            $post_language = $sitepress->get_language_for_element( $post_id, $element_type );
3038
+		if ( $original_post_id == $post_id ) {
3039
+			$wpml_languages = $sitepress->get_active_languages();
3040
+			$post_language = $sitepress->get_language_for_element( $post_id, $element_type );
3041 3041
             
3042
-            if ( !empty( $wpml_languages ) && isset( $wpml_languages[ $post_language ] ) ) {
3043
-                unset( $wpml_languages[ $post_language ] );
3044
-            }
3042
+			if ( !empty( $wpml_languages ) && isset( $wpml_languages[ $post_language ] ) ) {
3043
+				unset( $wpml_languages[ $post_language ] );
3044
+			}
3045 3045
             
3046
-            if ( !empty( $wpml_languages ) ) {
3047
-                $trid  = $sitepress->get_element_trid( $post_id, $element_type );
3048
-                $element_translations = $sitepress->get_element_translations( $trid, $element_type );
3049
-                $duplicates = $sitepress->get_duplicates( $post_id );
3046
+			if ( !empty( $wpml_languages ) ) {
3047
+				$trid  = $sitepress->get_element_trid( $post_id, $element_type );
3048
+				$element_translations = $sitepress->get_element_translations( $trid, $element_type );
3049
+				$duplicates = $sitepress->get_duplicates( $post_id );
3050 3050
                 
3051
-                $wpml_content = '<div class="geodir-company_info gd-detail-duplicate"><h3 class="widget-title">' . __( 'Translate Listing', 'geodirectory' ) . '</h3>';
3052
-                $wpml_content .= '<table class="gd-duplicate-table" style="width:100%;margin:0"><tbody>';
3053
-                $wpml_content .= '<tr style="border-bottom:solid 1px #efefef"><th style="padding:0 2px 2px 2px">' . __( 'Language', 'geodirectory' ) . '</th><th style="width:25px;"></th><th style="width:5em;text-align:center">' . __( 'Translate', 'geodirectory' ) . '</th></tr>';
3051
+				$wpml_content = '<div class="geodir-company_info gd-detail-duplicate"><h3 class="widget-title">' . __( 'Translate Listing', 'geodirectory' ) . '</h3>';
3052
+				$wpml_content .= '<table class="gd-duplicate-table" style="width:100%;margin:0"><tbody>';
3053
+				$wpml_content .= '<tr style="border-bottom:solid 1px #efefef"><th style="padding:0 2px 2px 2px">' . __( 'Language', 'geodirectory' ) . '</th><th style="width:25px;"></th><th style="width:5em;text-align:center">' . __( 'Translate', 'geodirectory' ) . '</th></tr>';
3054 3054
                 
3055
-                $needs_translation = false;
3055
+				$needs_translation = false;
3056 3056
                 
3057
-                foreach ( $wpml_languages as $lang_code => $lang ) {
3058
-                    $duplicates_text = '';
3059
-                    $translated = false;
3057
+				foreach ( $wpml_languages as $lang_code => $lang ) {
3058
+					$duplicates_text = '';
3059
+					$translated = false;
3060 3060
                     
3061
-                    if ( !empty( $element_translations ) && isset( $element_translations[$lang_code] ) ) {
3062
-                        $translated = true;
3061
+					if ( !empty( $element_translations ) && isset( $element_translations[$lang_code] ) ) {
3062
+						$translated = true;
3063 3063
                         
3064
-                        if ( !empty( $duplicates ) && isset( $duplicates[$lang_code] ) ) {
3065
-                            $duplicates_text = ' ' . __( '(duplicate)', 'geodirectory' );
3066
-                        }
3067
-                    } else {
3068
-                        $needs_translation = true;
3069
-                    }
3064
+						if ( !empty( $duplicates ) && isset( $duplicates[$lang_code] ) ) {
3065
+							$duplicates_text = ' ' . __( '(duplicate)', 'geodirectory' );
3066
+						}
3067
+					} else {
3068
+						$needs_translation = true;
3069
+					}
3070 3070
                     
3071
-                    $wpml_content .= '<tr><td style="padding:4px">' . $lang['english_name'] . $duplicates_text . '</td><td>&nbsp;</td><td style="text-align:center;">';
3071
+					$wpml_content .= '<tr><td style="padding:4px">' . $lang['english_name'] . $duplicates_text . '</td><td>&nbsp;</td><td style="text-align:center;">';
3072 3072
                     
3073
-                    if ( $translated ) {
3074
-                        $wpml_content .= '<i class="fa fa-check" style="color:orange"></i>';
3075
-                    } else {
3076
-                        $wpml_content .= '<input name="gd_icl_dup[]" value="' . $lang_code . '" title="' . esc_attr__( 'Create duplicate', 'geodirectory' ) . '" type="checkbox">';
3077
-                    }
3073
+					if ( $translated ) {
3074
+						$wpml_content .= '<i class="fa fa-check" style="color:orange"></i>';
3075
+					} else {
3076
+						$wpml_content .= '<input name="gd_icl_dup[]" value="' . $lang_code . '" title="' . esc_attr__( 'Create duplicate', 'geodirectory' ) . '" type="checkbox">';
3077
+					}
3078 3078
                     
3079
-                    $wpml_content .= '</td></tr>';
3080
-                }
3079
+					$wpml_content .= '</td></tr>';
3080
+				}
3081 3081
                 
3082
-                if ( $needs_translation ) {
3083
-                    $nonce = wp_create_nonce( 'geodir_duplicate_nonce' );
3084
-                    $wpml_content .= '<tr><td>&nbsp;</td><td style="vertical-align:middle;padding-top:13px"><i style="display:none" class="fa fa-spin fa-refresh"></i></td><td style="padding:15px 3px 3px 3px;text-align:right"><button data-nonce="' . esc_attr( $nonce ) . '" data-post-id="' . $post_id . '" id="gd_make_duplicates" class="button-secondary">' . __( 'Duplicate', 'geodirectory' ) . '</button></td></tr>';
3085
-                }
3082
+				if ( $needs_translation ) {
3083
+					$nonce = wp_create_nonce( 'geodir_duplicate_nonce' );
3084
+					$wpml_content .= '<tr><td>&nbsp;</td><td style="vertical-align:middle;padding-top:13px"><i style="display:none" class="fa fa-spin fa-refresh"></i></td><td style="padding:15px 3px 3px 3px;text-align:right"><button data-nonce="' . esc_attr( $nonce ) . '" data-post-id="' . $post_id . '" id="gd_make_duplicates" class="button-secondary">' . __( 'Duplicate', 'geodirectory' ) . '</button></td></tr>';
3085
+				}
3086 3086
                 
3087
-                $wpml_content .= '</tbody></table>';
3088
-                $wpml_content .= '</div>';
3087
+				$wpml_content .= '</tbody></table>';
3088
+				$wpml_content .= '</div>';
3089 3089
                 
3090
-                $content_html .= $wpml_content;
3091
-            }
3092
-        }
3093
-    }
3090
+				$content_html .= $wpml_content;
3091
+			}
3092
+		}
3093
+	}
3094 3094
     
3095
-    return $content_html;
3095
+	return $content_html;
3096 3096
 }
3097 3097
 
3098 3098
 /**
@@ -3104,28 +3104,28 @@  discard block
 block discarded – undo
3104 3104
  * @return array Filtered GD design settings array..
3105 3105
  */
3106 3106
 function geodir_wpml_duplicate_settings( $settings = array() ) {
3107
-    $new_settings = array();
3107
+	$new_settings = array();
3108 3108
     
3109
-    foreach ( $settings as $key => $setting ) {
3109
+	foreach ( $settings as $key => $setting ) {
3110 3110
         
3111
-        if ( isset( $setting['type'] ) && $setting['type'] == 'sectionend' && $setting['id'] == 'detail_page_settings' ) {
3112
-            $new_settings[] = array(
3113
-                'name' => __('Disable WPML duplicate translation', 'geodirectory'),
3114
-                'desc' => __('Select post types to disable front end WPML duplicate translation. For selected post types the WPML duplicate option will be disabled from listing detail page sidebar.', 'geodirectory'),
3115
-                'tip' => '',
3116
-                'id' => 'geodir_wpml_disable_duplicate',
3117
-                'css' => 'min-width:300px;',
3118
-                'std' => '',
3119
-                'type' => 'multiselect',
3120
-                'placeholder_text' => __('Select post types', 'geodirectory'),
3121
-                'class' => 'chosen_select',
3122
-                'options' => array_unique(geodir_post_type_setting_fun())
3123
-            );
3124
-        }
3125
-        $new_settings[] = $setting;
3126
-    }
3111
+		if ( isset( $setting['type'] ) && $setting['type'] == 'sectionend' && $setting['id'] == 'detail_page_settings' ) {
3112
+			$new_settings[] = array(
3113
+				'name' => __('Disable WPML duplicate translation', 'geodirectory'),
3114
+				'desc' => __('Select post types to disable front end WPML duplicate translation. For selected post types the WPML duplicate option will be disabled from listing detail page sidebar.', 'geodirectory'),
3115
+				'tip' => '',
3116
+				'id' => 'geodir_wpml_disable_duplicate',
3117
+				'css' => 'min-width:300px;',
3118
+				'std' => '',
3119
+				'type' => 'multiselect',
3120
+				'placeholder_text' => __('Select post types', 'geodirectory'),
3121
+				'class' => 'chosen_select',
3122
+				'options' => array_unique(geodir_post_type_setting_fun())
3123
+			);
3124
+		}
3125
+		$new_settings[] = $setting;
3126
+	}
3127 3127
     
3128
-    return $new_settings;
3128
+	return $new_settings;
3129 3129
 }
3130 3130
 
3131 3131
 /**
@@ -3137,15 +3137,15 @@  discard block
 block discarded – undo
3137 3137
  * @return bool true if the taxonomy is currently set to being translatable in WPML.
3138 3138
  */
3139 3139
 function geodir_wpml_is_taxonomy_translated( $taxonomy ) {
3140
-    if ( empty( $taxonomy ) || !geodir_is_wpml() || !function_exists( 'is_taxonomy_translated' ) ) {
3141
-        return false;
3142
-    }
3140
+	if ( empty( $taxonomy ) || !geodir_is_wpml() || !function_exists( 'is_taxonomy_translated' ) ) {
3141
+		return false;
3142
+	}
3143 3143
     
3144
-    if ( is_taxonomy_translated( $taxonomy ) ) {
3145
-        return true;
3146
-    }
3144
+	if ( is_taxonomy_translated( $taxonomy ) ) {
3145
+		return true;
3146
+	}
3147 3147
     
3148
-    return false;
3148
+	return false;
3149 3149
 }
3150 3150
 
3151 3151
 /**
@@ -3157,13 +3157,13 @@  discard block
 block discarded – undo
3157 3157
  * @return bool true if the post_type is currently set to being translatable in WPML.
3158 3158
  */
3159 3159
 function geodir_wpml_is_post_type_translated( $post_type ) {
3160
-    if ( empty( $post_type ) || !geodir_is_wpml() || !function_exists( 'is_post_type_translated' ) ) {
3161
-        return false;
3162
-    }
3160
+	if ( empty( $post_type ) || !geodir_is_wpml() || !function_exists( 'is_post_type_translated' ) ) {
3161
+		return false;
3162
+	}
3163 3163
     
3164
-    if ( is_post_type_translated( $post_type ) ) {
3165
-        return true;
3166
-    }
3164
+	if ( is_post_type_translated( $post_type ) ) {
3165
+		return true;
3166
+	}
3167 3167
     
3168
-    return false;
3168
+	return false;
3169 3169
 }
3170 3170
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +712 added lines, -712 removed lines patch added patch discarded remove patch
@@ -52,31 +52,31 @@  discard block
 block discarded – undo
52 52
 				jQuery(listSel).children('li').switchClass('gridview_onehalf gridview_onethird gridview_onefourth', 'gridview_onefifth', 600);
53 53
 			}
54 54
 
55
-			jQuery.post("<?php echo geodir_get_ajax_url();?>&gd_listing_view=" + val, function (data) {
55
+			jQuery.post("<?php echo geodir_get_ajax_url(); ?>&gd_listing_view=" + val, function (data) {
56 56
 				//alert(data );
57 57
 			});
58 58
 		}
59 59
 	</script>
60 60
 	<div class="geodir-list-view-select">
61 61
 		<select name="gd_list_view" id="gd_list_view" onchange="geodir_list_view_select(this);">
62
-			<?php $listing_view = (int) $gd_session->get( 'gd_listing_view' ); ?>
63
-			<option value=""><?php _e( 'View:', 'geodirectory' ); ?></option>
62
+			<?php $listing_view = (int) $gd_session->get('gd_listing_view'); ?>
63
+			<option value=""><?php _e('View:', 'geodirectory'); ?></option>
64 64
 			<option
65
-				value="1" <?php selected( 1, $listing_view ); ?>><?php _e( 'View: List', 'geodirectory' ); ?></option>
65
+				value="1" <?php selected(1, $listing_view); ?>><?php _e('View: List', 'geodirectory'); ?></option>
66 66
 			<option
67
-				value="2" <?php selected( 2, $listing_view ); ?>><?php _e( 'View: Grid 2', 'geodirectory' ); ?></option>
67
+				value="2" <?php selected(2, $listing_view); ?>><?php _e('View: Grid 2', 'geodirectory'); ?></option>
68 68
 			<option
69
-				value="3" <?php selected( 3, $listing_view ); ?>><?php _e( 'View: Grid 3', 'geodirectory' ); ?></option>
69
+				value="3" <?php selected(3, $listing_view); ?>><?php _e('View: Grid 3', 'geodirectory'); ?></option>
70 70
 			<option
71
-				value="4" <?php selected( 4, $listing_view ); ?>><?php _e( 'View: Grid 4', 'geodirectory' ); ?></option>
71
+				value="4" <?php selected(4, $listing_view); ?>><?php _e('View: Grid 4', 'geodirectory'); ?></option>
72 72
 			<option
73
-				value="5" <?php selected( 5, $listing_view ); ?>><?php _e( 'View: Grid 5', 'geodirectory' ); ?></option>
73
+				value="5" <?php selected(5, $listing_view); ?>><?php _e('View: Grid 5', 'geodirectory'); ?></option>
74 74
 		</select>
75 75
 	</div>
76 76
 	<?php
77 77
 }
78 78
 
79
-add_action( 'geodir_before_listing', 'geodir_list_view_select', 100 );
79
+add_action('geodir_before_listing', 'geodir_list_view_select', 100);
80 80
 
81 81
 /**
82 82
  * Limit the listing excerpt.
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
  * @global object $post          The current post object.
92 92
  * @return string The modified excerpt.
93 93
  */
94
-function geodir_max_excerpt( $charlength ) {
94
+function geodir_max_excerpt($charlength) {
95 95
 	global $post;
96
-	if ( $charlength == '0' ) {
96
+	if ($charlength == '0') {
97 97
 		return;
98 98
 	}
99 99
 	$out = '';
@@ -101,46 +101,46 @@  discard block
 block discarded – undo
101 101
 	$temp_post = $post;
102 102
 	$excerpt   = get_the_excerpt();
103 103
 
104
-	$charlength ++;
105
-	$excerpt_more = function_exists( 'geodirf_excerpt_more' ) ? geodirf_excerpt_more( '' ) : geodir_excerpt_more( '' );
106
-	if ( geodir_utf8_strlen( $excerpt ) > $charlength ) {
107
-		if ( geodir_utf8_strlen( $excerpt_more ) > 0 && geodir_utf8_strpos( $excerpt, $excerpt_more ) !== false ) {
108
-			$excut = - ( geodir_utf8_strlen( $excerpt_more ) );
109
-			$subex = geodir_utf8_substr( $excerpt, 0, $excut );
110
-			if ( $charlength > 0 && geodir_utf8_strlen( $subex ) > $charlength ) {
111
-				$subex = geodir_utf8_substr( $subex, 0, $charlength );
104
+	$charlength++;
105
+	$excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
106
+	if (geodir_utf8_strlen($excerpt) > $charlength) {
107
+		if (geodir_utf8_strlen($excerpt_more) > 0 && geodir_utf8_strpos($excerpt, $excerpt_more) !== false) {
108
+			$excut = - (geodir_utf8_strlen($excerpt_more));
109
+			$subex = geodir_utf8_substr($excerpt, 0, $excut);
110
+			if ($charlength > 0 && geodir_utf8_strlen($subex) > $charlength) {
111
+				$subex = geodir_utf8_substr($subex, 0, $charlength);
112 112
 			}
113 113
 			$out .= $subex;
114 114
 		} else {
115
-			$subex   = geodir_utf8_substr( $excerpt, 0, $charlength - 5 );
116
-			$exwords = explode( ' ', $subex );
117
-			$excut   = - ( geodir_utf8_strlen( $exwords[ count( $exwords ) - 1 ] ) );
118
-			if ( $excut < 0 ) {
119
-				$out .= geodir_utf8_substr( $subex, 0, $excut );
115
+			$subex   = geodir_utf8_substr($excerpt, 0, $charlength - 5);
116
+			$exwords = explode(' ', $subex);
117
+			$excut   = - (geodir_utf8_strlen($exwords[count($exwords) - 1]));
118
+			if ($excut < 0) {
119
+				$out .= geodir_utf8_substr($subex, 0, $excut);
120 120
 			} else {
121 121
 				$out .= $subex;
122 122
 			}
123 123
 		}
124
-		$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
124
+		$out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">';
125 125
 		/**
126 126
 		 * Filter excerpt read more text.
127 127
 		 *
128 128
 		 * @since 1.0.0
129 129
 		 */
130
-		$out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
130
+		$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
131 131
 		$out .= '</a>';
132 132
 
133 133
 	} else {
134
-		if ( geodir_utf8_strlen( $excerpt_more ) > 0 && geodir_utf8_strpos( $excerpt, $excerpt_more ) !== false ) {
135
-			$excut = - ( geodir_utf8_strlen( $excerpt_more ) );
136
-			$out .= geodir_utf8_substr( $excerpt, 0, $excut );
137
-			$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
134
+		if (geodir_utf8_strlen($excerpt_more) > 0 && geodir_utf8_strpos($excerpt, $excerpt_more) !== false) {
135
+			$excut = - (geodir_utf8_strlen($excerpt_more));
136
+			$out .= geodir_utf8_substr($excerpt, 0, $excut);
137
+			$out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">';
138 138
 			/**
139 139
 			 * Filter excerpt read more text.
140 140
 			 *
141 141
 			 * @since 1.0.0
142 142
 			 */
143
-			$out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
143
+			$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
144 144
 			$out .= '</a>';
145 145
 		} else {
146 146
 			$out .= $excerpt;
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
  *
164 164
  * @return object Returns filtered package info as an object.
165 165
  */
166
-function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) {
166
+function geodir_post_package_info($package_info, $post = '', $post_type = '') {
167 167
 	$package_info['pid']              = 0;
168 168
 	$package_info['days']             = 0;
169 169
 	$package_info['amount']           = 0;
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	 * @param object|string $post  The post object.
193 193
 	 * @param string $post_type    The post type.
194 194
 	 */
195
-	return (object) apply_filters( 'geodir_post_package_info', $package_info, $post, $post_type );
195
+	return (object) apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
196 196
 
197 197
 }
198 198
 
@@ -220,11 +220,11 @@  discard block
 block discarded – undo
220 220
  *
221 221
  * }
222 222
  */
223
-function geodir_send_inquiry( $request ) {
223
+function geodir_send_inquiry($request) {
224 224
 	global $wpdb;
225 225
 
226 226
 	// strip slashes from text
227
-	$request = ! empty( $request ) ? stripslashes_deep( $request ) : $request;
227
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
228 228
 
229 229
 	$yourname      = $request['inq_name'];
230 230
 	$youremail     = $request['inq_email'];
@@ -235,26 +235,26 @@  discard block
 block discarded – undo
235 235
 	$author_id  = '';
236 236
 	$post_title = '';
237 237
 
238
-	if ( $request['pid'] ) {
238
+	if ($request['pid']) {
239 239
 
240 240
 		$productinfosql = $wpdb->prepare(
241 241
 			"select ID,post_author,post_title from $wpdb->posts where ID =%d",
242
-			array( $request['pid'] )
242
+			array($request['pid'])
243 243
 		);
244
-		$productinfo    = $wpdb->get_row( $productinfosql );
244
+		$productinfo = $wpdb->get_row($productinfosql);
245 245
 
246 246
 		$author_id  = $productinfo->post_author;
247 247
 		$post_title = $productinfo->post_title;
248 248
 	}
249 249
 
250
-	$post_title = '<a href="' . get_permalink( $pid ) . '">' . $post_title . '</a>';
250
+	$post_title = '<a href="'.get_permalink($pid).'">'.$post_title.'</a>';
251 251
 
252
-	$user_info = get_userdata( $author_id );
253
-	$to_email  = geodir_get_post_meta( $pid, 'geodir_email', true );
254
-	$to_name   = geodir_get_client_name( $author_id );
252
+	$user_info = get_userdata($author_id);
253
+	$to_email  = geodir_get_post_meta($pid, 'geodir_email', true);
254
+	$to_name   = geodir_get_client_name($author_id);
255 255
 
256
-	if ( $to_email == '' ) {
257
-		$to_email = get_option( 'admin_email' );
256
+	if ($to_email == '') {
257
+		$to_email = get_option('admin_email');
258 258
 	}
259 259
 
260 260
 	/**
@@ -275,10 +275,10 @@  discard block
 block discarded – undo
275 275
 	 * }
276 276
 	 * @param string $type     The form type, default: `Enquiry`.
277 277
 	 */
278
-	do_action( 'geodir_after_send_enquiry', $request, 'Enquiry' );
278
+	do_action('geodir_after_send_enquiry', $request, 'Enquiry');
279 279
 
280 280
 	$client_message = $frnd_comments;
281
-	$client_message .= '<br>' . __( 'From :', 'geodirectory' ) . ' ' . $yourname . '<br>' . __( 'Phone :', 'geodirectory' ) . ' ' . $inq_phone . '<br>' . __( 'Email :', 'geodirectory' ) . ' ' . $youremail . '<br><br>' . __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . trailingslashit( home_url() ) . '">' . get_option( 'blogname' ) . '</a></b>.';
281
+	$client_message .= '<br>'.__('From :', 'geodirectory').' '.$yourname.'<br>'.__('Phone :', 'geodirectory').' '.$inq_phone.'<br>'.__('Email :', 'geodirectory').' '.$youremail.'<br><br>'.__('Sent from', 'geodirectory').' - <b><a href="'.trailingslashit(home_url()).'">'.get_option('blogname').'</a></b>.';
282 282
 	/**
283 283
 	 * Filter client message text.
284 284
 	 *
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 	 *
287 287
 	 * @param string $client_message Client message text.
288 288
 	 */
289
-	$client_message = apply_filters( 'geodir_inquiry_email_msg', $client_message );
289
+	$client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
290 290
 
291 291
 	/**
292 292
 	 * Called before the send enquiry email is sent.
@@ -305,12 +305,12 @@  discard block
 block discarded – undo
305 305
 	 *
306 306
 	 * }
307 307
 	 */
308
-	do_action( 'geodir_before_send_enquiry_email', $request );
309
-	if ( $to_email ) {
308
+	do_action('geodir_before_send_enquiry_email', $request);
309
+	if ($to_email) {
310 310
 		// strip slashes message
311
-		$client_message = stripslashes_deep( $client_message );
311
+		$client_message = stripslashes_deep($client_message);
312 312
 
313
-		geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid'] );//To client email
313
+		geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']); //To client email
314 314
 	}
315 315
 
316 316
 	/**
@@ -330,12 +330,12 @@  discard block
 block discarded – undo
330 330
 	 *
331 331
 	 * }
332 332
 	 */
333
-	do_action( 'geodir_after_send_enquiry_email', $request );
334
-	$url = get_permalink( $pid );
335
-	if ( strstr( $url, '?' ) ) {
336
-		$url = $url . "&send_inquiry=success";
333
+	do_action('geodir_after_send_enquiry_email', $request);
334
+	$url = get_permalink($pid);
335
+	if (strstr($url, '?')) {
336
+		$url = $url."&send_inquiry=success";
337 337
 	} else {
338
-		$url = $url . "?send_inquiry=success";
338
+		$url = $url."?send_inquiry=success";
339 339
 	}
340 340
 	/**
341 341
 	 * Filter redirect url after the send enquiry email is sent.
@@ -344,8 +344,8 @@  discard block
 block discarded – undo
344 344
 	 *
345 345
 	 * @param string $url Redirect url.
346 346
 	 */
347
-	$url = apply_filters( 'geodir_send_enquiry_after_submit_redirect', $url );
348
-	wp_redirect( $url );
347
+	$url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
348
+	wp_redirect($url);
349 349
 	gd_die();
350 350
 
351 351
 }
@@ -374,11 +374,11 @@  discard block
 block discarded – undo
374 374
  * }
375 375
  * @global object $wpdb        WordPress Database object.
376 376
  */
377
-function geodir_send_friend( $request ) {
377
+function geodir_send_friend($request) {
378 378
 	global $wpdb;
379 379
 
380 380
 	// strip slashes from text
381
-	$request = ! empty( $request ) ? stripslashes_deep( $request ) : $request;
381
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
382 382
 
383 383
 	$yourname      = $request['yourname'];
384 384
 	$youremail     = $request['youremail'];
@@ -387,13 +387,13 @@  discard block
 block discarded – undo
387 387
 	$pid           = $request['pid'];
388 388
 	$to_email      = $request['to_email'];
389 389
 	$to_name       = $request['to_name'];
390
-	if ( $request['pid'] ) {
390
+	if ($request['pid']) {
391 391
 		$productinfosql = $wpdb->prepare(
392 392
 			"select ID,post_title from $wpdb->posts where ID =%d",
393
-			array( $request['pid'] )
393
+			array($request['pid'])
394 394
 		);
395
-		$productinfo    = $wpdb->get_results( $productinfosql );
396
-		foreach ( $productinfo as $productinfoObj ) {
395
+		$productinfo = $wpdb->get_results($productinfosql);
396
+		foreach ($productinfo as $productinfoObj) {
397 397
 			$post_title = $productinfoObj->post_title;
398 398
 		}
399 399
 	}
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
 	 *
418 418
 	 * }
419 419
 	 */
420
-	do_action( 'geodir_before_send_to_friend_email', $request );
421
-	geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid'] );//To client email
420
+	do_action('geodir_before_send_to_friend_email', $request);
421
+	geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']); //To client email
422 422
 
423 423
 	/**
424 424
 	 * Called after the send to friend email is sent.
@@ -439,13 +439,13 @@  discard block
 block discarded – undo
439 439
 	 *
440 440
 	 * }
441 441
 	 */
442
-	do_action( 'geodir_after_send_to_friend_email', $request );
442
+	do_action('geodir_after_send_to_friend_email', $request);
443 443
 
444
-	$url = get_permalink( $pid );
445
-	if ( strstr( $url, '?' ) ) {
446
-		$url = $url . "&sendtofrnd=success";
444
+	$url = get_permalink($pid);
445
+	if (strstr($url, '?')) {
446
+		$url = $url."&sendtofrnd=success";
447 447
 	} else {
448
-		$url = $url . "?sendtofrnd=success";
448
+		$url = $url."?sendtofrnd=success";
449 449
 	}
450 450
 	/**
451 451
 	 * Filter redirect url after the send to friend email is sent.
@@ -454,8 +454,8 @@  discard block
 block discarded – undo
454 454
 	 *
455 455
 	 * @param string $url Redirect url.
456 456
 	 */
457
-	$url = apply_filters( 'geodir_send_to_friend_after_submit_redirect', $url );
458
-	wp_redirect( $url );
457
+	$url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
458
+	wp_redirect($url);
459 459
 	gd_die();
460 460
 }
461 461
 
@@ -469,8 +469,8 @@  discard block
 block discarded – undo
469 469
  *
470 470
  * @param string $hash_key
471 471
  */
472
-function geodir_before_tab_content( $hash_key ) {
473
-	switch ( $hash_key ) {
472
+function geodir_before_tab_content($hash_key) {
473
+	switch ($hash_key) {
474 474
 		case 'post_info' :
475 475
 			echo '<div class="geodir-company_info field-group">';
476 476
 			break;
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 			 *
481 481
 			 * @since 1.0.0
482 482
 			 */
483
-			echo ' <div id="' . apply_filters( 'geodir_post_gallery_id', 'geodir-post-gallery' ) . '" class="clearfix" >';
483
+			echo ' <div id="'.apply_filters('geodir_post_gallery_id', 'geodir-post-gallery').'" class="clearfix" >';
484 484
 			break;
485 485
 		case 'reviews' :
486 486
 			echo '<div id="reviews-wrap" class="clearfix"> ';
@@ -504,8 +504,8 @@  discard block
 block discarded – undo
504 504
  *
505 505
  * @param string $hash_key
506 506
  */
507
-function geodir_after_tab_content( $hash_key ) {
508
-	switch ( $hash_key ) {
507
+function geodir_after_tab_content($hash_key) {
508
+	switch ($hash_key) {
509 509
 		case 'post_info' :
510 510
 			echo '</div>';
511 511
 			break;
@@ -536,25 +536,25 @@  discard block
 block discarded – undo
536 536
  * @global object $wpdb     WordPress Database object.
537 537
  * @return bool|null|string Returns default sort results, when the post type is valid. Otherwise returns false.
538 538
  */
539
-function geodir_get_posts_default_sort( $post_type ) {
539
+function geodir_get_posts_default_sort($post_type) {
540 540
 
541 541
 	global $wpdb;
542 542
 
543
-	if ( $post_type != '' ) {
543
+	if ($post_type != '') {
544 544
 
545 545
 		$all_postypes = geodir_get_posttypes();
546 546
 
547
-		if ( ! in_array( $post_type, $all_postypes ) ) {
547
+		if (!in_array($post_type, $all_postypes)) {
548 548
 			return false;
549 549
 		}
550 550
 
551
-		$sort_field_info = $wpdb->get_var( $wpdb->prepare( "select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where	post_type= %s and is_active=%d and is_default=%d", array(
551
+		$sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where	post_type= %s and is_active=%d and is_default=%d", array(
552 552
 			$post_type,
553 553
 			1,
554 554
 			1
555
-		) ) );
555
+		)));
556 556
 
557
-		if ( ! empty( $sort_field_info ) ) {
557
+		if (!empty($sort_field_info)) {
558 558
 			return $sort_field_info;
559 559
 		}
560 560
 
@@ -574,20 +574,20 @@  discard block
 block discarded – undo
574 574
  * @global object $wpdb     WordPress Database object.
575 575
  * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false.
576 576
  */
577
-function geodir_get_sort_options( $post_type ) {
577
+function geodir_get_sort_options($post_type) {
578 578
 	global $wpdb;
579 579
 
580
-	if ( $post_type != '' ) {
580
+	if ($post_type != '') {
581 581
 		$all_postypes = geodir_get_posttypes();
582 582
 
583
-		if ( ! in_array( $post_type, $all_postypes ) ) {
583
+		if (!in_array($post_type, $all_postypes)) {
584 584
 			return false;
585 585
 		}
586 586
 
587
-		$sort_field_info = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
587
+		$sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
588 588
 			$post_type,
589 589
 			1
590
-		) ) );
590
+		)));
591 591
 
592 592
 		/**
593 593
 		 * Filter post sort options.
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 		 * @param array $sort_field_info Unfiltered sort field array.
598 598
 		 * @param string $post_type      Post type.
599 599
 		 */
600
-		return apply_filters( 'geodir_get_sort_options', $sort_field_info, $post_type );
600
+		return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
601 601
 	}
602 602
 
603 603
 }
@@ -618,63 +618,63 @@  discard block
 block discarded – undo
618 618
 	 *
619 619
 	 * @since 1.4.4
620 620
 	 */
621
-	if ( is_search() ) {
621
+	if (is_search()) {
622 622
 		return;
623 623
 	}
624 624
 
625 625
 	$sort_by = '';
626 626
 
627
-	if ( isset( $_REQUEST['sort_by'] ) ) {
627
+	if (isset($_REQUEST['sort_by'])) {
628 628
 		$sort_by = $_REQUEST['sort_by'];
629 629
 	}
630 630
 
631 631
 	$gd_post_type = geodir_get_current_posttype();
632 632
 
633
-	$sort_options = geodir_get_sort_options( $gd_post_type );
633
+	$sort_options = geodir_get_sort_options($gd_post_type);
634 634
 
635 635
 
636 636
 	$sort_field_options = '';
637 637
 
638
-	if ( ! empty( $sort_options ) ) {
639
-		foreach ( $sort_options as $sort ) {
640
-			$sort = stripslashes_deep( $sort ); // strip slashes
638
+	if (!empty($sort_options)) {
639
+		foreach ($sort_options as $sort) {
640
+			$sort = stripslashes_deep($sort); // strip slashes
641 641
 
642
-			$label = __( $sort->site_title, 'geodirectory' );
642
+			$label = __($sort->site_title, 'geodirectory');
643 643
 
644
-			if ( $sort->field_type == 'random' ) {
644
+			if ($sort->field_type == 'random') {
645 645
 				$key = $sort->field_type;
646
-				( $sort_by == $key || ( $sort->is_default == '1' && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
647
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
646
+				($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
647
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
648 648
 			}
649 649
 
650
-			if ( $sort->htmlvar_name == 'comment_count' ) {
650
+			if ($sort->htmlvar_name == 'comment_count') {
651 651
 				$sort->htmlvar_name = 'rating_count';
652 652
 			}
653 653
 
654
-			if ( $sort->sort_asc ) {
655
-				$key   = $sort->htmlvar_name . '_asc';
654
+			if ($sort->sort_asc) {
655
+				$key   = $sort->htmlvar_name.'_asc';
656 656
 				$label = $sort->site_title;
657
-				if ( $sort->asc_title ) {
657
+				if ($sort->asc_title) {
658 658
 					$label = $sort->asc_title;
659 659
 				}
660
-				( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
661
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
660
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
661
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
662 662
 			}
663 663
 
664
-			if ( $sort->sort_desc ) {
665
-				$key   = $sort->htmlvar_name . '_desc';
664
+			if ($sort->sort_desc) {
665
+				$key   = $sort->htmlvar_name.'_desc';
666 666
 				$label = $sort->site_title;
667
-				if ( $sort->desc_title ) {
667
+				if ($sort->desc_title) {
668 668
 					$label = $sort->desc_title;
669 669
 				}
670
-				( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
671
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
670
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
671
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
672 672
 			}
673 673
 
674 674
 		}
675 675
 	}
676 676
 
677
-	if ( $sort_field_options != '' ) {
677
+	if ($sort_field_options != '') {
678 678
 
679 679
 		?>
680 680
 
@@ -683,9 +683,9 @@  discard block
 block discarded – undo
683 683
 			<select name="sort_by" id="sort_by" onchange="javascript:window.location=this.value;">
684 684
 
685 685
 				<option
686
-					value="<?php echo esc_url( add_query_arg( 'sort_by', '' ) ); ?>" <?php if ( $sort_by == '' ) {
686
+					value="<?php echo esc_url(add_query_arg('sort_by', '')); ?>" <?php if ($sort_by == '') {
687 687
 					echo 'selected="selected"';
688
-				} ?>><?php _e( 'Sort By', 'geodirectory' ); ?></option><?php
688
+				} ?>><?php _e('Sort By', 'geodirectory'); ?></option><?php
689 689
 
690 690
 				echo $sort_field_options; ?>
691 691
 
@@ -713,9 +713,9 @@  discard block
 block discarded – undo
713 713
  *
714 714
  * @return string Returns the section title.
715 715
  */
716
-function geodir_advance_customfields_heading( $title, $field_type ) {
716
+function geodir_advance_customfields_heading($title, $field_type) {
717 717
 
718
-	if ( in_array( $field_type, array( 'multiselect', 'textarea', 'taxonomy' ) ) ) {
718
+	if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
719 719
 		$title = '';
720 720
 	}
721 721
 
@@ -737,19 +737,19 @@  discard block
 block discarded – undo
737 737
  * @global object $gd_session       GeoDirectory Session object.
738 738
  * @return string Returns related posts html.
739 739
  */
740
-function geodir_related_posts_display( $request ) {
741
-	if ( ! empty( $request ) ) {
742
-		$before_title = ( isset( $request['before_title'] ) && ! empty( $request['before_title'] ) ) ? $request['before_title'] : '';
743
-		$after_title  = ( isset( $request['after_title'] ) && ! empty( $request['after_title'] ) ) ? $request['after_title'] : '';
744
-
745
-		$title               = ( isset( $request['title'] ) && ! empty( $request['title'] ) ) ? $request['title'] : __( 'Related Listings', 'geodirectory' );
746
-		$post_number         = ( isset( $request['post_number'] ) && ! empty( $request['post_number'] ) ) ? $request['post_number'] : '5';
747
-		$relate_to           = ( isset( $request['relate_to'] ) && ! empty( $request['relate_to'] ) ) ? $request['relate_to'] : 'category';
748
-		$layout              = ( isset( $request['layout'] ) && ! empty( $request['layout'] ) ) ? $request['layout'] : 'gridview_onehalf';
749
-		$add_location_filter = ( isset( $request['add_location_filter'] ) && ! empty( $request['add_location_filter'] ) ) ? $request['add_location_filter'] : '0';
750
-		$listing_width       = ( isset( $request['listing_width'] ) && ! empty( $request['listing_width'] ) ) ? $request['listing_width'] : '';
751
-		$list_sort           = ( isset( $request['list_sort'] ) && ! empty( $request['list_sort'] ) ) ? $request['list_sort'] : 'latest';
752
-		$character_count     = ( isset( $request['character_count'] ) && ! empty( $request['character_count'] ) ) ? $request['character_count'] : '';
740
+function geodir_related_posts_display($request) {
741
+	if (!empty($request)) {
742
+		$before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : '';
743
+		$after_title  = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : '';
744
+
745
+		$title               = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
746
+		$post_number         = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5';
747
+		$relate_to           = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category';
748
+		$layout              = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf';
749
+		$add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0';
750
+		$listing_width       = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : '';
751
+		$list_sort           = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest';
752
+		$character_count     = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : '';
753 753
 
754 754
 		global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon;
755 755
 		$related_parent_lat   = !empty($post->post_latitude) ? $post->post_latitude : '';
@@ -757,10 +757,10 @@  discard block
 block discarded – undo
757 757
 		$arr_detail_page_tabs = geodir_detail_page_tabs_list();
758 758
 
759 759
 		$related_listing_array = array();
760
-		if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
761
-			$related_listing_array = get_option( 'geodir_add_related_listing_posttypes' );
760
+		if (get_option('geodir_add_related_listing_posttypes')) {
761
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
762 762
 		}
763
-		if ( isset($post->post_type) && in_array( $post->post_type, $related_listing_array ) ) {
763
+		if (isset($post->post_type) && in_array($post->post_type, $related_listing_array)) {
764 764
 			$arr_detail_page_tabs['related_listing']['is_display'] = true;
765 765
 		}
766 766
 
@@ -772,90 +772,90 @@  discard block
 block discarded – undo
772 772
 		$tax_field         = 'id';
773 773
 		$category          = array();
774 774
 
775
-		if ( isset( $_REQUEST['backandedit'] ) ) {
776
-			$post      = (object) $gd_session->get( 'listing' );
775
+		if (isset($_REQUEST['backandedit'])) {
776
+			$post      = (object) $gd_session->get('listing');
777 777
 			$post_type = $post->listing_type;
778
-			if ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
778
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
779 779
 				$post_id = $_REQUEST['pid'];
780 780
 			}
781
-		} elseif ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
782
-			$post      = geodir_get_post_info( $_REQUEST['pid'] );
781
+		} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
782
+			$post      = geodir_get_post_info($_REQUEST['pid']);
783 783
 			$post_type = $post->post_type;
784 784
 			$post_id   = $_REQUEST['pid'];
785
-		} elseif ( isset( $post->post_type ) && $post->post_type != '' ) {
785
+		} elseif (isset($post->post_type) && $post->post_type != '') {
786 786
 			$post_type = $post->post_type;
787 787
 			$post_id   = $post->ID;
788 788
 		}
789 789
 
790
-		if ( $relate_to == 'category' ) {
790
+		if ($relate_to == 'category') {
791 791
 
792
-			$category_taxonomy = $post_type . $relate_to;
793
-			if ( isset( $post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '' ) {
794
-				$category = explode( ',', trim( $post->{$category_taxonomy}, ',' ) );
792
+			$category_taxonomy = $post_type.$relate_to;
793
+			if (isset($post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '') {
794
+				$category = explode(',', trim($post->{$category_taxonomy}, ','));
795 795
 			}
796 796
 
797
-		} elseif ( $relate_to == 'tags' ) {
797
+		} elseif ($relate_to == 'tags') {
798 798
 
799
-			$category_taxonomy = $post_type . '_' . $relate_to;
800
-			if ( $post->post_tags != '' ) {
801
-				$category = explode( ',', trim( $post->post_tags, ',' ) );
799
+			$category_taxonomy = $post_type.'_'.$relate_to;
800
+			if ($post->post_tags != '') {
801
+				$category = explode(',', trim($post->post_tags, ','));
802 802
 			}
803 803
 			$tax_field = 'name';
804 804
 		}
805 805
 
806 806
 		/* --- return false in invalid request --- */
807
-		if ( empty( $category ) ) {
807
+		if (empty($category)) {
808 808
 			return false;
809 809
 		}
810 810
 
811 811
 		$all_postypes = geodir_get_posttypes();
812 812
 
813
-		if ( ! in_array( $post_type, $all_postypes ) ) {
813
+		if (!in_array($post_type, $all_postypes)) {
814 814
 			return false;
815 815
 		}
816 816
 
817 817
 		/* --- return false in invalid request --- */
818 818
 
819 819
 		$location_url = '';
820
-		if ( $add_location_filter != '0' ) {
820
+		if ($add_location_filter != '0') {
821 821
 			$location_url             = array();
822
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
822
+			$geodir_show_location_url = get_option('geodir_show_location_url');
823 823
 
824
-			$gd_city = get_query_var( 'gd_city' );
824
+			$gd_city = get_query_var('gd_city');
825 825
 
826
-			if ( $gd_city ) {
827
-				$gd_country = get_query_var( 'gd_country' );
828
-				$gd_region  = get_query_var( 'gd_region' );
826
+			if ($gd_city) {
827
+				$gd_country = get_query_var('gd_country');
828
+				$gd_region  = get_query_var('gd_region');
829 829
 			} else {
830 830
 				$location = geodir_get_default_location();
831 831
 
832
-				$gd_country = isset( $location->country_slug ) ? $location->country_slug : '';
833
-				$gd_region  = isset( $location->region_slug ) ? $location->region_slug : '';
834
-				$gd_city    = isset( $location->city_slug ) ? $location->city_slug : '';
832
+				$gd_country = isset($location->country_slug) ? $location->country_slug : '';
833
+				$gd_region  = isset($location->region_slug) ? $location->region_slug : '';
834
+				$gd_city    = isset($location->city_slug) ? $location->city_slug : '';
835 835
 			}
836 836
 
837
-			if ( $geodir_show_location_url == 'all' ) {
837
+			if ($geodir_show_location_url == 'all') {
838 838
 				$location_url[] = $gd_country;
839 839
 				$location_url[] = $gd_region;
840
-			} else if ( $geodir_show_location_url == 'country_city' ) {
840
+			} else if ($geodir_show_location_url == 'country_city') {
841 841
 				$location_url[] = $gd_country;
842
-			} else if ( $geodir_show_location_url == 'region_city' ) {
842
+			} else if ($geodir_show_location_url == 'region_city') {
843 843
 				$location_url[] = $gd_region;
844 844
 			}
845 845
 
846 846
 			$location_url[] = $gd_city;
847 847
 
848
-			$location_url = implode( '/', $location_url );
848
+			$location_url = implode('/', $location_url);
849 849
 		}
850 850
 
851 851
 
852
-		if ( ! empty( $category ) ) {
852
+		if (!empty($category)) {
853 853
 			global $geodir_add_location_url;
854 854
 			$geodir_add_location_url = '0';
855
-			if ( $add_location_filter != '0' ) {
855
+			if ($add_location_filter != '0') {
856 856
 				$geodir_add_location_url = '1';
857 857
 			}
858
-			$viewall_url             = get_term_link( (int) $category[0], $post_type . $category_taxonomy );
858
+			$viewall_url             = get_term_link((int) $category[0], $post_type.$category_taxonomy);
859 859
 			$geodir_add_location_url = null;
860 860
 		}
861 861
 		ob_start();
@@ -865,24 +865,24 @@  discard block
 block discarded – undo
865 865
 		<div class="geodir_locations geodir_location_listing">
866 866
 
867 867
 			<?php
868
-			if ( isset( $request['is_widget'] ) && $request['is_widget'] == '1' ) {
868
+			if (isset($request['is_widget']) && $request['is_widget'] == '1') {
869 869
 				/** geodir_before_title filter Documented in geodirectory_widgets.php */
870
-				$before_title = isset( $before_title ) ? $before_title : apply_filters( 'geodir_before_title', '<h3 class="widget-title">' );
870
+				$before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
871 871
 				/** geodir_after_title filter Documented in geodirectory_widgets.php */
872
-				$after_title = isset( $after_title ) ? $after_title : apply_filters( 'geodir_after_title', '</h3>' );
872
+				$after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
873 873
 				?>
874 874
 				<div class="location_list_heading clearfix">
875
-					<?php echo $before_title . $title . $after_title; ?>
875
+					<?php echo $before_title.$title.$after_title; ?>
876 876
 				</div>
877 877
 				<?php
878 878
 			}
879 879
 			$query_args = array(
880 880
 				'posts_per_page'   => $post_number,
881 881
 				'is_geodir_loop'   => true,
882
-				'gd_location'      => ( $add_location_filter ) ? true : false,
882
+				'gd_location'      => ($add_location_filter) ? true : false,
883 883
 				'post_type'        => $post_type,
884 884
 				'order_by'         => $list_sort,
885
-				'post__not_in'     => array( $post_id ),
885
+				'post__not_in'     => array($post_id),
886 886
 				'excerpt_length'   => $character_count,
887 887
 				'related_listings' => $is_display
888 888
 			);
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
 				'terms'    => $category
894 894
 			);
895 895
 
896
-			$query_args['tax_query'] = array( $tax_query );
896
+			$query_args['tax_query'] = array($tax_query);
897 897
 
898 898
 			global $gridview_columns, $post;
899 899
 
@@ -905,21 +905,21 @@  discard block
 block discarded – undo
905 905
 			 * @param array $query_args The query array.
906 906
 			 * @param array $request Related posts request array.
907 907
 			 */
908
-			$query_args = apply_filters( 'geodir_related_posts_widget_query_args', $query_args, $request );
908
+			$query_args = apply_filters('geodir_related_posts_widget_query_args', $query_args, $request);
909 909
 
910
-			query_posts( $query_args );
910
+			query_posts($query_args);
911 911
 
912
-			if ( strstr( $layout, 'gridview' ) ) {
913
-				$listing_view_exp = explode( '_', $layout );
912
+			if (strstr($layout, 'gridview')) {
913
+				$listing_view_exp = explode('_', $layout);
914 914
 				$gridview_columns = $layout;
915 915
 				$layout           = $listing_view_exp[0];
916
-			} else if ( $layout == 'list' ) {
916
+			} else if ($layout == 'list') {
917 917
 				$gridview_columns = '';
918 918
 			}
919 919
 			$related_posts = true;
920 920
 
921 921
 			$related_nearest = false;
922
-			if ( $list_sort == 'nearest' ) {
922
+			if ($list_sort == 'nearest') {
923 923
 				$related_nearest = true;
924 924
 			}
925 925
 
@@ -929,14 +929,14 @@  discard block
 block discarded – undo
929 929
 			 *
930 930
 			 * @since 1.0.0
931 931
 			 */
932
-			$template = apply_filters( "geodir_template_part-related-listing-listview", geodir_locate_template( 'listing-listview' ) );
932
+			$template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
933 933
 
934 934
 			/**
935 935
 			 * Includes related listing listview template.
936 936
 			 *
937 937
 			 * @since 1.0.0
938 938
 			 */
939
-			include( $template );
939
+			include($template);
940 940
 
941 941
 			wp_reset_query();
942 942
 			$post            = $origi_post;
@@ -964,12 +964,12 @@  discard block
 block discarded – undo
964 964
 function geodir_category_count_script() {
965 965
 	global $geodir_post_category_str;
966 966
 
967
-	if ( ! empty( $geodir_post_category_str ) ) {
968
-		$geodir_post_category_str = serialize( $geodir_post_category_str );
967
+	if (!empty($geodir_post_category_str)) {
968
+		$geodir_post_category_str = serialize($geodir_post_category_str);
969 969
 	}
970 970
 
971
-	$all_var['post_category_array'] = html_entity_decode( (string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8' );
972
-	$script                         = "var post_category_array = " . json_encode( $all_var ) . ';';
971
+	$all_var['post_category_array'] = html_entity_decode((string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8');
972
+	$script                         = "var post_category_array = ".json_encode($all_var).';';
973 973
 	echo '<script>';
974 974
 	echo $script;
975 975
 	echo '</script>';
@@ -984,8 +984,8 @@  discard block
 block discarded – undo
984 984
  * @return string Returns the default language.
985 985
  */
986 986
 function geodir_get_map_default_language() {
987
-	$geodir_default_map_language = get_option( 'geodir_default_map_language' );
988
-	if ( empty( $geodir_default_map_language ) ) {
987
+	$geodir_default_map_language = get_option('geodir_default_map_language');
988
+	if (empty($geodir_default_map_language)) {
989 989
 		$geodir_default_map_language = 'en';
990 990
 	}
991 991
 
@@ -996,7 +996,7 @@  discard block
 block discarded – undo
996 996
 	 *
997 997
 	 * @param string $geodir_default_map_language Default map language.
998 998
 	 */
999
-	return apply_filters( 'geodir_default_map_language', $geodir_default_map_language );
999
+	return apply_filters('geodir_default_map_language', $geodir_default_map_language);
1000 1000
 }
1001 1001
 
1002 1002
 /**
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
  * @return string Returns the api key.
1008 1008
  */
1009 1009
 function geodir_get_map_api_key() {
1010
-	$key = get_option( 'geodir_google_api_key' );
1010
+	$key = get_option('geodir_google_api_key');
1011 1011
 
1012 1012
 	/**
1013 1013
 	 * Filter Google maps api key.
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
 	 *
1017 1017
 	 * @param string $key Google maps api key.
1018 1018
 	 */
1019
-	return apply_filters( 'geodir_google_api_key', $key );
1019
+	return apply_filters('geodir_google_api_key', $key);
1020 1020
 }
1021 1021
 
1022 1022
 
@@ -1036,20 +1036,20 @@  discard block
 block discarded – undo
1036 1036
 	global $wp, $post, $wp_query, $wpdb, $geodir_addon_list;
1037 1037
 
1038 1038
 	$is_geodir_page = geodir_is_geodir_page();
1039
-	if ( ! $is_geodir_page ) {
1039
+	if (!$is_geodir_page) {
1040 1040
 		return;
1041 1041
 	}// if non GD page, bail
1042 1042
 
1043 1043
 	$use_gd_meta = true;
1044
-	if ( ( class_exists( 'WPSEO_Frontend' ) || class_exists( 'All_in_One_SEO_Pack' ) ) && !geodir_disable_yoast_seo_metas() ) {
1044
+	if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
1045 1045
 		$use_gd_meta = false;
1046 1046
 
1047
-		if ( geodir_is_page( 'search' ) ) {
1047
+		if (geodir_is_page('search')) {
1048 1048
 			$use_gd_meta = true;
1049 1049
 		}
1050 1050
 	}
1051 1051
 
1052
-	if ( ! $use_gd_meta ) {
1052
+	if (!$use_gd_meta) {
1053 1053
 		return;
1054 1054
 	}// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active.
1055 1055
 
@@ -1057,68 +1057,68 @@  discard block
 block discarded – undo
1057 1057
 
1058 1058
 	$all_postypes = geodir_get_posttypes();
1059 1059
 
1060
-	$geodir_taxonomies = geodir_get_taxonomies( '', true );
1060
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1061 1061
 
1062 1062
 	$meta_desc = '';
1063 1063
 	$meta_key  = '';
1064
-	if ( isset( $current_term->ID ) && $current_term->ID == geodir_location_page_id() ) {
1064
+	if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
1065 1065
 		/**
1066 1066
 		 * Filter SEO meta location description.
1067 1067
 		 *
1068 1068
 		 * @since 1.0.0
1069 1069
 		 */
1070
-		$meta_desc = apply_filters( 'geodir_seo_meta_location_description', '' );
1070
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', '');
1071 1071
 		$meta_desc .= '';
1072 1072
 	}
1073
-	if ( have_posts() && is_single() OR is_page() ) {
1074
-		while ( have_posts() ) {
1073
+	if (have_posts() && is_single() OR is_page()) {
1074
+		while (have_posts()) {
1075 1075
 			the_post();
1076 1076
 
1077
-			if ( has_excerpt() ) {
1078
-				$out_excerpt = strip_tags( strip_shortcodes( get_the_excerpt() ) );
1079
-				if ( empty( $out_excerpt ) ) {
1080
-					$out_excerpt = strip_tags( do_shortcode( get_the_excerpt() ) );
1077
+			if (has_excerpt()) {
1078
+				$out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt()));
1079
+				if (empty($out_excerpt)) {
1080
+					$out_excerpt = strip_tags(do_shortcode(get_the_excerpt()));
1081 1081
 				}
1082
-				$out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $out_excerpt );
1082
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
1083 1083
 			} else {
1084
-				$out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $post->post_content );
1085
-				$out_excerpt = strip_tags( strip_shortcodes( $out_excerpt ) );
1086
-				if ( empty( $out_excerpt ) ) {
1087
-					$out_excerpt = strip_tags( do_shortcode( $out_excerpt ) ); // parse short code from content
1084
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
1085
+				$out_excerpt = strip_tags(strip_shortcodes($out_excerpt));
1086
+				if (empty($out_excerpt)) {
1087
+					$out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content
1088 1088
 				}
1089
-				$out_excerpt = trim( wp_trim_words( $out_excerpt, 35, '' ), '.!?,;:-' );
1089
+				$out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-');
1090 1090
 			}
1091 1091
 
1092 1092
 			$meta_desc .= $out_excerpt;
1093 1093
 		}
1094
-	} elseif ( ( is_category() || is_tag() ) && isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
1095
-		if ( is_category() ) {
1096
-			$meta_desc .= __( "Posts related to Category:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_cat_title( "", false ) );
1097
-		} elseif ( is_tag() ) {
1098
-			$meta_desc .= __( "Posts related to Tag:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_tag_title( "", false ) );
1094
+	} elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1095
+		if (is_category()) {
1096
+			$meta_desc .= __("Posts related to Category:", 'geodirectory')." ".geodir_utf8_ucfirst(single_cat_title("", false));
1097
+		} elseif (is_tag()) {
1098
+			$meta_desc .= __("Posts related to Tag:", 'geodirectory')." ".geodir_utf8_ucfirst(single_tag_title("", false));
1099 1099
 		}
1100
-	} elseif ( isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
1101
-		$meta_desc .= isset( $current_term->description ) ? $current_term->description : '';
1100
+	} elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1101
+		$meta_desc .= isset($current_term->description) ? $current_term->description : '';
1102 1102
 	}
1103 1103
 
1104 1104
 
1105 1105
 	$geodir_post_type       = geodir_get_current_posttype();
1106
-	$geodir_post_type_info  = get_post_type_object( $geodir_post_type );
1107
-	$geodir_is_page_listing = geodir_is_page( 'listing' ) ? true : false;
1108
-
1109
-	$category_taxonomy = geodir_get_taxonomies( $geodir_post_type );
1110
-	$tag_taxonomy      = geodir_get_taxonomies( $geodir_post_type, true );
1111
-
1112
-	$geodir_is_category = isset( $category_taxonomy[0] ) && get_query_var( $category_taxonomy[0] ) ? get_query_var( $category_taxonomy[0] ) : false;
1113
-	$geodir_is_tag      = isset( $tag_taxonomy[0] ) && get_query_var( $tag_taxonomy[0] ) ? true : false;
1114
-
1115
-	$geodir_is_search        = geodir_is_page( 'search' ) ? true : false;
1116
-	$geodir_is_location      = geodir_is_page( 'location' ) ? true : false;
1117
-	$geodir_location_manager = isset( $geodir_addon_list['geodir_location_manager'] ) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1118
-	$godir_location_terms    = geodir_get_current_location_terms( 'query_vars' );
1119
-	$gd_city                 = $geodir_location_manager && isset( $godir_location_terms['gd_city'] ) ? $godir_location_terms['gd_city'] : null;
1120
-	$gd_region               = $geodir_location_manager && isset( $godir_location_terms['gd_region'] ) ? $godir_location_terms['gd_region'] : null;
1121
-	$gd_country              = $geodir_location_manager && isset( $godir_location_terms['gd_country'] ) ? $godir_location_terms['gd_country'] : null;
1106
+	$geodir_post_type_info  = get_post_type_object($geodir_post_type);
1107
+	$geodir_is_page_listing = geodir_is_page('listing') ? true : false;
1108
+
1109
+	$category_taxonomy = geodir_get_taxonomies($geodir_post_type);
1110
+	$tag_taxonomy      = geodir_get_taxonomies($geodir_post_type, true);
1111
+
1112
+	$geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false;
1113
+	$geodir_is_tag      = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false;
1114
+
1115
+	$geodir_is_search        = geodir_is_page('search') ? true : false;
1116
+	$geodir_is_location      = geodir_is_page('location') ? true : false;
1117
+	$geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1118
+	$godir_location_terms    = geodir_get_current_location_terms('query_vars');
1119
+	$gd_city                 = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : null;
1120
+	$gd_region               = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : null;
1121
+	$gd_country              = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : null;
1122 1122
 	/**
1123 1123
 	 * Filter the Everywhere text in location description.
1124 1124
 	 *
@@ -1126,108 +1126,108 @@  discard block
 block discarded – undo
1126 1126
 	 * 
1127 1127
 	 * @param string $replace_location Everywhere text.
1128 1128
 	 */
1129
-	$replace_location        = apply_filters( 'geodir_location_description_everywhere_text', __( 'Everywhere', 'geodirectory' ) );
1129
+	$replace_location        = apply_filters('geodir_location_description_everywhere_text', __('Everywhere', 'geodirectory'));
1130 1130
 	$location_id             = null;
1131
-	if ( $geodir_location_manager ) {
1132
-		$sql           = $wpdb->prepare( "SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array( $gd_city ) );
1133
-		$location_id   = (int) $wpdb->get_var( $sql );
1131
+	if ($geodir_location_manager) {
1132
+		$sql           = $wpdb->prepare("SELECT location_id FROM ".POST_LOCATION_TABLE." WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
1133
+		$location_id   = (int) $wpdb->get_var($sql);
1134 1134
 		$location_type = geodir_what_is_current_location();
1135
-		if ( $location_type == 'city' ) {
1136
-			$replace_location = geodir_get_current_location( array( 'what' => 'city', 'echo' => false ) );
1137
-		} elseif ( $location_type == 'region' ) {
1138
-			$replace_location = geodir_get_current_location( array( 'what' => 'region', 'echo' => false ) );
1139
-		} elseif ( $location_type == 'country' ) {
1140
-			$replace_location = geodir_get_current_location( array( 'what' => 'country', 'echo' => false ) );
1141
-			$replace_location = __( $replace_location, 'geodirectory' );
1135
+		if ($location_type == 'city') {
1136
+			$replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
1137
+		} elseif ($location_type == 'region') {
1138
+			$replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
1139
+		} elseif ($location_type == 'country') {
1140
+			$replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
1141
+			$replace_location = __($replace_location, 'geodirectory');
1142 1142
 		}
1143
-		$country          = get_query_var( 'gd_country' );
1144
-		$region           = get_query_var( 'gd_region' );
1145
-		$city             = get_query_var( 'gd_city' );
1143
+		$country          = get_query_var('gd_country');
1144
+		$region           = get_query_var('gd_region');
1145
+		$city             = get_query_var('gd_city');
1146 1146
 		$current_location = '';
1147
-		if ( $country != '' ) {
1148
-			$current_location = get_actual_location_name( 'country', $country, true );
1147
+		if ($country != '') {
1148
+			$current_location = get_actual_location_name('country', $country, true);
1149 1149
 		}
1150
-		if ( $region != '' ) {
1151
-			$current_location = get_actual_location_name( 'region', $region );
1150
+		if ($region != '') {
1151
+			$current_location = get_actual_location_name('region', $region);
1152 1152
 		}
1153
-		if ( $city != '' ) {
1154
-			$current_location = get_actual_location_name( 'city', $city );
1153
+		if ($city != '') {
1154
+			$current_location = get_actual_location_name('city', $city);
1155 1155
 		}
1156 1156
 		$replace_location = $current_location != '' ? $current_location : $replace_location;
1157 1157
 	}
1158 1158
 
1159 1159
 	$geodir_meta_keys = '';
1160 1160
 	$geodir_meta_desc = '';
1161
-	if ( $is_geodir_page && ! empty( $geodir_post_type_info ) ) {
1162
-		if ( $geodir_is_page_listing || $geodir_is_search || geodir_is_page( 'add-listing' ) ) {
1163
-			$geodir_meta_keys = isset( $geodir_post_type_info->seo['meta_keyword'] ) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1161
+	if ($is_geodir_page && !empty($geodir_post_type_info)) {
1162
+		if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
1163
+			$geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1164 1164
 
1165
-			$geodir_meta_desc = isset( $geodir_post_type_info->description ) ? $geodir_post_type_info->description : $geodir_meta_desc;
1166
-			$geodir_meta_desc = isset( $geodir_post_type_info->seo['meta_description'] ) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1165
+			$geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc;
1166
+			$geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1167 1167
 
1168
-			if ( $geodir_is_category ) {
1169
-				$category = $geodir_is_category ? get_term_by( 'slug', $geodir_is_category, $category_taxonomy[0] ) : null;
1170
-				if ( isset( $category->term_id ) && ! empty( $category->term_id ) ) {
1168
+			if ($geodir_is_category) {
1169
+				$category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : null;
1170
+				if (isset($category->term_id) && !empty($category->term_id)) {
1171 1171
 					$category_id   = $category->term_id;
1172
-					$category_desc = trim( $category->description ) != '' ? trim( $category->description ) : geodir_get_tax_meta( $category_id, 'ct_cat_top_desc', false, $geodir_post_type );
1173
-					if ( $location_id ) {
1174
-						$option_name    = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id;
1175
-						$cat_loc_option = get_option( $option_name );
1176
-
1177
-						$gd_cat_loc_default = ! empty( $cat_loc_option ) && isset( $cat_loc_option['gd_cat_loc_default'] ) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1178
-						if ( ! $gd_cat_loc_default ) {
1179
-							$option_name   = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id;
1180
-							$option        = get_option( $option_name );
1181
-							$category_desc = isset( $option['gd_cat_loc_desc'] ) && trim( $option['gd_cat_loc_desc'] ) != '' ? trim( $option['gd_cat_loc_desc'] ) : $category_desc;
1172
+					$category_desc = trim($category->description) != '' ? trim($category->description) : geodir_get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type);
1173
+					if ($location_id) {
1174
+						$option_name    = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id;
1175
+						$cat_loc_option = get_option($option_name);
1176
+
1177
+						$gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1178
+						if (!$gd_cat_loc_default) {
1179
+							$option_name   = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id.'_'.$location_id;
1180
+							$option        = get_option($option_name);
1181
+							$category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc;
1182 1182
 						}
1183 1183
 					}
1184
-					$geodir_meta_desc = __( "Posts related to Category:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_cat_title( "", false ) ) . '. ' . $category_desc;
1184
+					$geodir_meta_desc = __("Posts related to Category:", 'geodirectory')." ".geodir_utf8_ucfirst(single_cat_title("", false)).'. '.$category_desc;
1185 1185
 				}
1186
-			} else if ( $geodir_is_tag ) {
1187
-				$geodir_meta_desc = __( "Posts related to Tag:", 'geodirectory' ) . " " . geodir_utf8_ucfirst( single_tag_title( "", false ) ) . '. ' . $geodir_meta_desc;
1186
+			} else if ($geodir_is_tag) {
1187
+				$geodir_meta_desc = __("Posts related to Tag:", 'geodirectory')." ".geodir_utf8_ucfirst(single_tag_title("", false)).'. '.$geodir_meta_desc;
1188 1188
 			}
1189 1189
 		}
1190 1190
 	}
1191 1191
 
1192 1192
 
1193 1193
 	$gd_page = '';
1194
-	if ( geodir_is_page( 'home' ) ) {
1194
+	if (geodir_is_page('home')) {
1195 1195
 		$gd_page   = 'home';
1196
-		$meta_desc = ( get_option( 'geodir_meta_desc_homepage' ) ) ? get_option( 'geodir_meta_desc_homepage' ) : $meta_desc;
1197
-	} elseif ( geodir_is_page( 'detail' ) ) {
1196
+		$meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
1197
+	} elseif (geodir_is_page('detail')) {
1198 1198
 		$gd_page   = 'detail';
1199
-		$meta_desc = ( get_option( 'geodir_meta_desc_detail' ) ) ? get_option( 'geodir_meta_desc_detail' ) : $meta_desc;
1200
-	} elseif ( geodir_is_page( 'pt' ) ) {
1199
+		$meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
1200
+	} elseif (geodir_is_page('pt')) {
1201 1201
 		$gd_page   = 'pt';
1202
-		$meta_desc = ( get_option( 'geodir_meta_desc_pt' ) ) ? get_option( 'geodir_meta_desc_pt' ) : $meta_desc;
1203
-	} elseif ( geodir_is_page( 'listing' ) ) {
1202
+		$meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
1203
+	} elseif (geodir_is_page('listing')) {
1204 1204
 		$gd_page   = 'listing';
1205
-		$meta_desc = ( get_option( 'geodir_meta_desc_listing' ) ) ? get_option( 'geodir_meta_desc_listing' ) : $meta_desc;
1206
-	} elseif ( geodir_is_page( 'location' ) ) {
1205
+		$meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
1206
+	} elseif (geodir_is_page('location')) {
1207 1207
 		$gd_page   = 'location';
1208
-		$meta_desc = ( get_option( 'geodir_meta_desc_location' ) ) ? get_option( 'geodir_meta_desc_location' ) : $meta_desc;
1209
-		$meta_desc = apply_filters( 'geodir_seo_meta_location_description', $meta_desc );
1208
+		$meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
1209
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
1210 1210
 
1211
-	} elseif ( geodir_is_page( 'search' ) ) {
1211
+	} elseif (geodir_is_page('search')) {
1212 1212
 		$gd_page   = 'search';
1213
-		$meta_desc = ( get_option( 'geodir_meta_desc_search' ) ) ? get_option( 'geodir_meta_desc_search' ) : $meta_desc;
1214
-	} elseif ( geodir_is_page( 'add-listing' ) ) {
1213
+		$meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
1214
+	} elseif (geodir_is_page('add-listing')) {
1215 1215
 		$gd_page   = 'add-listing';
1216
-		$meta_desc = ( get_option( 'geodir_meta_desc_add-listing' ) ) ? get_option( 'geodir_meta_desc_add-listing' ) : $meta_desc;
1217
-	} elseif ( geodir_is_page( 'author' ) ) {
1216
+		$meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
1217
+	} elseif (geodir_is_page('author')) {
1218 1218
 		$gd_page   = 'author';
1219
-		$meta_desc = ( get_option( 'geodir_meta_desc_author' ) ) ? get_option( 'geodir_meta_desc_author' ) : $meta_desc;
1220
-	} elseif ( geodir_is_page( 'login' ) ) {
1219
+		$meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
1220
+	} elseif (geodir_is_page('login')) {
1221 1221
 		$gd_page   = 'login';
1222
-		$meta_desc = ( get_option( 'geodir_meta_desc_login' ) ) ? get_option( 'geodir_meta_desc_login' ) : $meta_desc;
1223
-	} elseif ( geodir_is_page( 'listing-success' ) ) {
1222
+		$meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
1223
+	} elseif (geodir_is_page('listing-success')) {
1224 1224
 		$gd_page   = 'listing-success';
1225
-		$meta_desc = ( get_option( 'geodir_meta_desc_listing-success' ) ) ? get_option( 'geodir_meta_desc_listing-success' ) : $meta_desc;
1225
+		$meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
1226 1226
 	}
1227 1227
 
1228 1228
 
1229
-	if ( $meta_desc ) {
1230
-		$meta_desc = stripslashes_deep( $meta_desc );
1229
+	if ($meta_desc) {
1230
+		$meta_desc = stripslashes_deep($meta_desc);
1231 1231
 		/**
1232 1232
 		 * Filter page description to replace variables.
1233 1233
 		 *
@@ -1236,7 +1236,7 @@  discard block
 block discarded – undo
1236 1236
 		 * @param string $title   The page description including variables.
1237 1237
 		 * @param string $gd_page The GeoDirectory page type if any.
1238 1238
 		 */
1239
-		$meta_desc = apply_filters( 'geodir_seo_meta_description_pre', __( $meta_desc, 'geodirectory' ), $gd_page, '' );
1239
+		$meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'), $gd_page, '');
1240 1240
 
1241 1241
 		/**
1242 1242
 		 * Filter SEO meta description.
@@ -1245,49 +1245,49 @@  discard block
 block discarded – undo
1245 1245
 		 *
1246 1246
 		 * @param string $meta_desc Meta description content.
1247 1247
 		 */
1248
-		echo apply_filters( 'geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc );
1248
+		echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="'.$meta_desc.'" />', $meta_desc);
1249 1249
 	}
1250 1250
 
1251 1251
 	// meta keywords
1252
-	if ( isset( $post->post_type ) && in_array( $post->post_type, $all_postypes ) ) {
1253
-		$place_tags = wp_get_post_terms( $post->ID, $post->post_type . '_tags', array( "fields" => "names" ) );
1254
-		$place_cats = wp_get_post_terms( $post->ID, $post->post_type . 'category', array( "fields" => "names" ) );
1252
+	if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
1253
+		$place_tags = wp_get_post_terms($post->ID, $post->post_type.'_tags', array("fields" => "names"));
1254
+		$place_cats = wp_get_post_terms($post->ID, $post->post_type.'category', array("fields" => "names"));
1255 1255
 
1256
-		$meta_key .= implode( ", ", array_merge( (array) $place_cats, (array) $place_tags ) );
1256
+		$meta_key .= implode(", ", array_merge((array) $place_cats, (array) $place_tags));
1257 1257
 	} else {
1258 1258
 		$posttags = get_the_tags();
1259
-		if ( $posttags ) {
1260
-			foreach ( $posttags as $tag ) {
1261
-				$meta_key .= $tag->name . ' ';
1259
+		if ($posttags) {
1260
+			foreach ($posttags as $tag) {
1261
+				$meta_key .= $tag->name.' ';
1262 1262
 			}
1263 1263
 		} else {
1264
-			$tags = get_tags( array( 'orderby' => 'count', 'order' => 'DESC' ) );
1264
+			$tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
1265 1265
 			$xt   = 1;
1266 1266
 
1267
-			foreach ( $tags as $tag ) {
1268
-				if ( $xt <= 20 ) {
1269
-					$meta_key .= $tag->name . ", ";
1267
+			foreach ($tags as $tag) {
1268
+				if ($xt <= 20) {
1269
+					$meta_key .= $tag->name.", ";
1270 1270
 				}
1271 1271
 
1272
-				$xt ++;
1272
+				$xt++;
1273 1273
 			}
1274 1274
 		}
1275 1275
 	}
1276 1276
 
1277
-	$meta_key         = $meta_key != '' ? rtrim( trim( $meta_key ), "," ) : $meta_key;
1278
-	$geodir_meta_keys = $geodir_meta_keys != '' ? ( $meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys ) : $meta_key;
1279
-	if ( $geodir_meta_keys != '' ) {
1280
-		$geodir_meta_keys = strip_tags( $geodir_meta_keys );
1281
-		$geodir_meta_keys = esc_html( $geodir_meta_keys );
1282
-		$geodir_meta_keys = geodir_strtolower( $geodir_meta_keys );
1283
-		$geodir_meta_keys = wp_html_excerpt( $geodir_meta_keys, 1000, '' );
1284
-		$geodir_meta_keys = str_replace( '%location%', $replace_location, $geodir_meta_keys );
1277
+	$meta_key         = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key;
1278
+	$geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key.', '.$geodir_meta_keys : $geodir_meta_keys) : $meta_key;
1279
+	if ($geodir_meta_keys != '') {
1280
+		$geodir_meta_keys = strip_tags($geodir_meta_keys);
1281
+		$geodir_meta_keys = esc_html($geodir_meta_keys);
1282
+		$geodir_meta_keys = geodir_strtolower($geodir_meta_keys);
1283
+		$geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, '');
1284
+		$geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
1285 1285
 
1286
-		$meta_key = rtrim( trim( $geodir_meta_keys ), "," );
1286
+		$meta_key = rtrim(trim($geodir_meta_keys), ",");
1287 1287
 	}
1288 1288
 
1289
-	if ( $meta_key ) {
1290
-		$meta_key = stripslashes_deep( $meta_key );
1289
+	if ($meta_key) {
1290
+		$meta_key = stripslashes_deep($meta_key);
1291 1291
 		/**
1292 1292
 		 * Filter SEO meta keywords.
1293 1293
 		 *
@@ -1295,7 +1295,7 @@  discard block
 block discarded – undo
1295 1295
 		 *
1296 1296
 		 * @param string $meta_desc Meta keywords.
1297 1297
 		 */
1298
-		echo apply_filters( 'geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key );
1298
+		echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="'.$meta_key.'" />', $meta_key);
1299 1299
 	}
1300 1300
 
1301 1301
 }
@@ -1315,8 +1315,8 @@  discard block
 block discarded – undo
1315 1315
 
1316 1316
 	$geodir_detail_page_tabs_array = geodir_detail_page_tabs_array();
1317 1317
 
1318
-	foreach ( $geodir_detail_page_tabs_array as $key => $tabs_obj ) {
1319
-		$geodir_detail_page_tabs_key_value_array[ $key ] = $tabs_obj['heading_text'];
1318
+	foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
1319
+		$geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text'];
1320 1320
 	}
1321 1321
 
1322 1322
 	return $geodir_detail_page_tabs_key_value_array;
@@ -1338,57 +1338,57 @@  discard block
 block discarded – undo
1338 1338
 	 * @since 1.0.0
1339 1339
 	 */
1340 1340
 	$arr_tabs['post_profile'] = array(
1341
-		'heading_text'  => __( 'Profile', 'geodirectory' ),
1341
+		'heading_text'  => __('Profile', 'geodirectory'),
1342 1342
 		'is_active_tab' => true,
1343
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_profile' ),
1343
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
1344 1344
 		'tab_content'   => ''
1345 1345
 	);
1346
-	$arr_tabs['post_info']    = array(
1347
-		'heading_text'  => __( 'More Info', 'geodirectory' ),
1346
+	$arr_tabs['post_info'] = array(
1347
+		'heading_text'  => __('More Info', 'geodirectory'),
1348 1348
 		'is_active_tab' => false,
1349
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_info' ),
1349
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
1350 1350
 		'tab_content'   => ''
1351 1351
 	);
1352 1352
 
1353 1353
 	$arr_tabs['post_images'] = array(
1354
-		'heading_text'  => __( 'Photos', 'geodirectory' ),
1354
+		'heading_text'  => __('Photos', 'geodirectory'),
1355 1355
 		'is_active_tab' => false,
1356
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_images' ),
1356
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
1357 1357
 		'tab_content'   => ''
1358 1358
 	);
1359 1359
 
1360 1360
 	$arr_tabs['post_video'] = array(
1361
-		'heading_text'  => __( 'Video', 'geodirectory' ),
1361
+		'heading_text'  => __('Video', 'geodirectory'),
1362 1362
 		'is_active_tab' => false,
1363
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_video' ),
1363
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
1364 1364
 		'tab_content'   => ''
1365 1365
 	);
1366 1366
 
1367 1367
 	$arr_tabs['special_offers'] = array(
1368
-		'heading_text'  => __( 'Special Offers', 'geodirectory' ),
1368
+		'heading_text'  => __('Special Offers', 'geodirectory'),
1369 1369
 		'is_active_tab' => false,
1370
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'special_offers' ),
1370
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
1371 1371
 		'tab_content'   => ''
1372 1372
 	);
1373 1373
 
1374 1374
 	$arr_tabs['post_map'] = array(
1375
-		'heading_text'  => __( 'Map', 'geodirectory' ),
1375
+		'heading_text'  => __('Map', 'geodirectory'),
1376 1376
 		'is_active_tab' => false,
1377
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_map' ),
1377
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
1378 1378
 		'tab_content'   => ''
1379 1379
 	);
1380 1380
 
1381 1381
 	$arr_tabs['reviews'] = array(
1382
-		'heading_text'  => __( 'Reviews', 'geodirectory' ),
1382
+		'heading_text'  => __('Reviews', 'geodirectory'),
1383 1383
 		'is_active_tab' => false,
1384
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'reviews' ),
1384
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
1385 1385
 		'tab_content'   => 'review display'
1386 1386
 	);
1387 1387
 
1388 1388
 	$arr_tabs['related_listing'] = array(
1389
-		'heading_text'  => __( 'Related Listing', 'geodirectory' ),
1389
+		'heading_text'  => __('Related Listing', 'geodirectory'),
1390 1390
 		'is_active_tab' => false,
1391
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'related_listing' ),
1391
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
1392 1392
 		'tab_content'   => ''
1393 1393
 	);
1394 1394
 
@@ -1397,7 +1397,7 @@  discard block
 block discarded – undo
1397 1397
 	 *
1398 1398
 	 * @since 1.0.0
1399 1399
 	 */
1400
-	return apply_filters( 'geodir_detail_page_tab_list_extend', $arr_tabs );
1400
+	return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
1401 1401
 
1402 1402
 
1403 1403
 }
@@ -1411,13 +1411,13 @@  discard block
 block discarded – undo
1411 1411
  * @return mixed|array Tabs array.
1412 1412
  */
1413 1413
 function geodir_detail_page_tabs_list() {
1414
-	$tabs_excluded = get_option( 'geodir_detail_page_tabs_excluded' );
1414
+	$tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
1415 1415
 	$tabs_array    = geodir_detail_page_tabs_array();
1416 1416
 
1417
-	if ( ! empty( $tabs_excluded ) ) {
1418
-		foreach ( $tabs_excluded as $tab ) {
1419
-			if ( array_key_exists( $tab, $tabs_array ) ) {
1420
-				unset( $tabs_array[ $tab ] );
1417
+	if (!empty($tabs_excluded)) {
1418
+		foreach ($tabs_excluded as $tab) {
1419
+			if (array_key_exists($tab, $tabs_array)) {
1420
+				unset($tabs_array[$tab]);
1421 1421
 			}
1422 1422
 		}
1423 1423
 	}
@@ -1441,58 +1441,58 @@  discard block
 block discarded – undo
1441 1441
 function geodir_show_detail_page_tabs() {
1442 1442
 	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields, $preview;
1443 1443
 
1444
-	$post_id            = ! empty( $post ) && isset( $post->ID ) ? (int) $post->ID : 0;
1445
-	$request_post_id    = ! empty( $_REQUEST['p'] ) ? (int) $_REQUEST['p'] : 0;
1446
-	$is_backend_preview = ( is_single() && ! empty( $_REQUEST['post_type'] ) && ! empty( $_REQUEST['preview'] ) && ! empty( $_REQUEST['p'] ) ) && is_super_admin() ? true : false; // skip if preview from backend
1444
+	$post_id            = !empty($post) && isset($post->ID) ? (int) $post->ID : 0;
1445
+	$request_post_id    = !empty($_REQUEST['p']) ? (int) $_REQUEST['p'] : 0;
1446
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1447 1447
 
1448
-	if ( $is_backend_preview && ! $post_id > 0 && $request_post_id > 0 ) {
1449
-		$post = geodir_get_post_info( $request_post_id );
1450
-		setup_postdata( $post );
1448
+	if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
1449
+		$post = geodir_get_post_info($request_post_id);
1450
+		setup_postdata($post);
1451 1451
 	}
1452 1452
 
1453
-	$geodir_post_detail_fields = geodir_show_listing_info( 'moreinfo' );
1453
+	$geodir_post_detail_fields = geodir_show_listing_info('moreinfo');
1454 1454
 
1455 1455
 
1456
-	if ( geodir_is_page( 'detail' ) ) {
1457
-		$video                 = geodir_get_video( $post->ID );
1458
-		$special_offers        = geodir_get_special_offers( $post->ID );
1456
+	if (geodir_is_page('detail')) {
1457
+		$video                 = geodir_get_video($post->ID);
1458
+		$special_offers        = geodir_get_special_offers($post->ID);
1459 1459
 		$related_listing_array = array();
1460
-		if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
1461
-			$related_listing_array = get_option( 'geodir_add_related_listing_posttypes' );
1460
+		if (get_option('geodir_add_related_listing_posttypes')) {
1461
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
1462 1462
 		}
1463 1463
 
1464 1464
 
1465
-		$excluded_tabs = get_option( 'geodir_detail_page_tabs_excluded' );
1466
-		if ( ! $excluded_tabs ) {
1465
+		$excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
1466
+		if (!$excluded_tabs) {
1467 1467
 			$excluded_tabs = array();
1468 1468
 		}
1469 1469
 
1470 1470
 		$related_listing = '';
1471
-		if ( in_array( $post->post_type, $related_listing_array ) && ! in_array( 'related_listing', $excluded_tabs ) ) {
1471
+		if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
1472 1472
 			$request = array(
1473
-				'post_number'         => get_option( 'geodir_related_post_count' ),
1474
-				'relate_to'           => get_option( 'geodir_related_post_relate_to' ),
1475
-				'layout'              => get_option( 'geodir_related_post_listing_view' ),
1476
-				'add_location_filter' => get_option( 'geodir_related_post_location_filter' ),
1477
-				'list_sort'           => get_option( 'geodir_related_post_sortby' ),
1478
-				'character_count'     => get_option( 'geodir_related_post_excerpt' )
1473
+				'post_number'         => get_option('geodir_related_post_count'),
1474
+				'relate_to'           => get_option('geodir_related_post_relate_to'),
1475
+				'layout'              => get_option('geodir_related_post_listing_view'),
1476
+				'add_location_filter' => get_option('geodir_related_post_location_filter'),
1477
+				'list_sort'           => get_option('geodir_related_post_sortby'),
1478
+				'character_count'     => get_option('geodir_related_post_excerpt')
1479 1479
 			);
1480 1480
 
1481
-			if ( $post->post_type == 'gd_event' && defined( 'GDEVENTS_VERSION' ) ) {
1482
-				$related_listing = geodir_get_detail_page_related_events( $request );
1481
+			if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
1482
+				$related_listing = geodir_get_detail_page_related_events($request);
1483 1483
 			} else {
1484
-				$related_listing = geodir_related_posts_display( $request );
1484
+				$related_listing = geodir_related_posts_display($request);
1485 1485
 			}
1486 1486
 
1487 1487
 		}
1488 1488
 
1489
-		$post_images = geodir_get_images( $post->ID, 'thumbnail' );
1489
+		$post_images = geodir_get_images($post->ID, 'thumbnail');
1490 1490
 		$thumb_image = '';
1491
-		if ( ! empty( $post_images ) ) {
1492
-			foreach ( $post_images as $image ) {
1493
-				$caption = ( ! empty( $image->caption ) ) ? $image->caption : '';
1494
-				$thumb_image .= '<a href="' . $image->src . '" title="' . $caption . '">';
1495
-				$thumb_image .= geodir_show_image( $image, 'thumbnail', true, false );
1491
+		if (!empty($post_images)) {
1492
+			foreach ($post_images as $image) {
1493
+				$caption = (!empty($image->caption)) ? $image->caption : '';
1494
+				$thumb_image .= '<a href="'.$image->src.'" title="'.$caption.'">';
1495
+				$thumb_image .= geodir_show_image($image, 'thumbnail', true, false);
1496 1496
 				$thumb_image .= '</a>';
1497 1497
 			}
1498 1498
 		}
@@ -1501,11 +1501,11 @@  discard block
 block discarded – undo
1501 1501
 		$map_args['map_canvas_name'] = 'detail_page_map_canvas';
1502 1502
 		$map_args['width']           = '600';
1503 1503
 		$map_args['height']          = '300';
1504
-		if ( $post->post_mapzoom ) {
1505
-			$map_args['zoom'] = '' . $post->post_mapzoom . '';
1504
+		if ($post->post_mapzoom) {
1505
+			$map_args['zoom'] = ''.$post->post_mapzoom.'';
1506 1506
 		}
1507 1507
 		$map_args['autozoom']                 = false;
1508
-		$map_args['scrollwheel']              = ( get_option( 'geodir_add_listing_mouse_scroll' ) ) ? 0 : 1;
1508
+		$map_args['scrollwheel']              = (get_option('geodir_add_listing_mouse_scroll')) ? 0 : 1;
1509 1509
 		$map_args['child_collapse']           = '0';
1510 1510
 		$map_args['enable_cat_filters']       = false;
1511 1511
 		$map_args['enable_text_search']       = false;
@@ -1514,43 +1514,43 @@  discard block
 block discarded – undo
1514 1514
 		$map_args['enable_jason_on_load']     = true;
1515 1515
 		$map_args['enable_map_direction']     = true;
1516 1516
 		$map_args['map_class_name']           = 'geodir-map-detail-page';
1517
-		$map_args['maptype']                  = ( ! empty( $post->post_mapview ) ) ? $post->post_mapview : 'ROADMAP';
1518
-	} else if ( geodir_is_page( 'preview' ) ) {
1519
-		$video          = isset( $post->geodir_video ) ? $post->geodir_video : '';
1520
-		$special_offers = isset( $post->geodir_special_offers ) ? $post->geodir_special_offers : '';
1517
+		$map_args['maptype']                  = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP';
1518
+	} else if (geodir_is_page('preview')) {
1519
+		$video          = isset($post->geodir_video) ? $post->geodir_video : '';
1520
+		$special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : '';
1521 1521
 
1522
-		if ( isset( $post->post_images ) ) {
1523
-			$post->post_images = trim( $post->post_images, "," );
1522
+		if (isset($post->post_images)) {
1523
+			$post->post_images = trim($post->post_images, ",");
1524 1524
 		}
1525 1525
 
1526
-		if ( isset( $post->post_images ) && ! empty( $post->post_images ) ) {
1527
-			$post_images = explode( ",", $post->post_images );
1526
+		if (isset($post->post_images) && !empty($post->post_images)) {
1527
+			$post_images = explode(",", $post->post_images);
1528 1528
 		}
1529 1529
 
1530 1530
 		$thumb_image = '';
1531
-		if ( ! empty( $post_images ) ) {
1532
-			foreach ( $post_images as $image ) {
1533
-				if ( $image != '' ) {
1534
-					$thumb_image .= '<a href="' . $image . '">';
1535
-					$thumb_image .= geodir_show_image( array( 'src' => $image ), 'thumbnail', true, false );
1531
+		if (!empty($post_images)) {
1532
+			foreach ($post_images as $image) {
1533
+				if ($image != '') {
1534
+					$thumb_image .= '<a href="'.$image.'">';
1535
+					$thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
1536 1536
 					$thumb_image .= '</a>';
1537 1537
 				}
1538 1538
 			}
1539 1539
 		}
1540 1540
 
1541 1541
 		global $map_jason;
1542
-		$marker_json      = $post->marker_json != '' ? json_decode( $post->marker_json, true ) : array();
1543
-		$marker_icon      = ( ! empty( $marker_json ) && ! empty( $marker_json['i'] ) ) ? $marker_json['i'] : '';
1544
-		$icon_size        = geodir_get_marker_size( $marker_icon );
1542
+		$marker_json      = $post->marker_json != '' ? json_decode($post->marker_json, true) : array();
1543
+		$marker_icon      = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : '';
1544
+		$icon_size        = geodir_get_marker_size($marker_icon);
1545 1545
 		$marker_json['w'] = $icon_size['w'];
1546 1546
 		$marker_json['h'] = $icon_size['h'];
1547
-		$map_jason[]      = json_encode( $marker_json );
1547
+		$map_jason[]      = json_encode($marker_json);
1548 1548
 
1549
-		$address_latitude  = isset( $post->post_latitude ) ? $post->post_latitude : '';
1550
-		$address_longitude = isset( $post->post_longitude ) ? $post->post_longitude : '';
1551
-		$mapview           = isset( $post->post_mapview ) ? $post->post_mapview : '';
1552
-		$mapzoom           = isset( $post->post_mapzoom ) ? $post->post_mapzoom : '';
1553
-		if ( ! $mapzoom ) {
1549
+		$address_latitude  = isset($post->post_latitude) ? $post->post_latitude : '';
1550
+		$address_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
1551
+		$mapview           = isset($post->post_mapview) ? $post->post_mapview : '';
1552
+		$mapzoom           = isset($post->post_mapzoom) ? $post->post_mapzoom : '';
1553
+		if (!$mapzoom) {
1554 1554
 			$mapzoom = 12;
1555 1555
 		}
1556 1556
 
@@ -1573,37 +1573,37 @@  discard block
 block discarded – undo
1573 1573
 		$map_args['map_class_name']           = 'geodir-map-preview-page';
1574 1574
 	}
1575 1575
 
1576
-	$arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user
1576
+	$arr_detail_page_tabs = geodir_detail_page_tabs_list(); // get this sooner so we can get the active tab for the user
1577 1577
 
1578 1578
 	$active_tab       = '';
1579 1579
 	$active_tab_name  = '';
1580 1580
 	$default_tab      = '';
1581 1581
 	$default_tab_name = '';
1582
-	foreach ( $arr_detail_page_tabs as $tab_index => $tabs ) {
1583
-		if ( isset( $tabs['is_active_tab'] ) && $tabs['is_active_tab'] && ! empty( $tabs['is_display'] ) && isset( $tabs['heading_text'] ) && $tabs['heading_text'] ) {
1582
+	foreach ($arr_detail_page_tabs as $tab_index => $tabs) {
1583
+		if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
1584 1584
 			$active_tab      = $tab_index;
1585
-			$active_tab_name = __( $tabs['heading_text'], 'geodirectory' );
1585
+			$active_tab_name = __($tabs['heading_text'], 'geodirectory');
1586 1586
 		}
1587 1587
 
1588
-		if ( $default_tab === '' && ! empty( $tabs['is_display'] ) && ! empty( $tabs['heading_text'] ) ) {
1588
+		if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
1589 1589
 			$default_tab      = $tab_index;
1590
-			$default_tab_name = __( $tabs['heading_text'], 'geodirectory' );
1590
+			$default_tab_name = __($tabs['heading_text'], 'geodirectory');
1591 1591
 		}
1592 1592
 	}
1593 1593
 
1594
-	if ( $active_tab === '' && $default_tab !== '' ) { // Make first tab as a active tab if not any tab is active.
1595
-		if ( isset( $arr_detail_page_tabs[ $active_tab ] ) && isset( $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] ) ) {
1596
-			$arr_detail_page_tabs[ $active_tab ]['is_active_tab'] = false;
1594
+	if ($active_tab === '' && $default_tab !== '') { // Make first tab as a active tab if not any tab is active.
1595
+		if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
1596
+			$arr_detail_page_tabs[$active_tab]['is_active_tab'] = false;
1597 1597
 		}
1598 1598
 
1599
-		$arr_detail_page_tabs[ $default_tab ]['is_active_tab'] = true;
1599
+		$arr_detail_page_tabs[$default_tab]['is_active_tab'] = true;
1600 1600
 		$active_tab                                            = $default_tab;
1601 1601
 		$active_tab_name                                       = $default_tab_name;
1602 1602
 	}
1603
-	$tab_list = ( get_option( 'geodir_disable_tabs', false ) ) ? true : false;
1603
+	$tab_list = (get_option('geodir_disable_tabs', false)) ? true : false;
1604 1604
 	?>
1605 1605
 	<div class="geodir-tabs" id="gd-tabs" style="position:relative;">
1606
-		<?php if ( ! $tab_list ){ ?>
1606
+		<?php if (!$tab_list) { ?>
1607 1607
 		<div id="geodir-tab-mobile-menu">
1608 1608
 			<i class="fa fa-bars"></i>
1609 1609
 			<span class="geodir-mobile-active-tab"><?php echo $active_tab_name; ?></span>
@@ -1618,26 +1618,26 @@  discard block
 block discarded – undo
1618 1618
 			 * @since 1.0.0
1619 1619
 			 * @see   'geodir_after_tab_list'
1620 1620
 			 */
1621
-			do_action( 'geodir_before_tab_list' ); ?>
1621
+			do_action('geodir_before_tab_list'); ?>
1622 1622
 			<?php
1623 1623
 
1624
-			foreach ( $arr_detail_page_tabs as $tab_index => $detail_page_tab ) {
1625
-				if ( $detail_page_tab['is_display'] ) {
1624
+			foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
1625
+				if ($detail_page_tab['is_display']) {
1626 1626
 
1627
-					if ( ! $tab_list ) {
1627
+					if (!$tab_list) {
1628 1628
 						?>
1629 1629
 						<dt></dt> <!-- added to comply with validation -->
1630
-						<dd <?php if ( $detail_page_tab['is_active_tab'] ){ ?>class="geodir-tab-active"<?php } ?> ><a
1630
+						<dd <?php if ($detail_page_tab['is_active_tab']) { ?>class="geodir-tab-active"<?php } ?> ><a
1631 1631
 								data-tab="#<?php echo $tab_index; ?>"
1632
-								data-status="enable"><?php _e( $detail_page_tab['heading_text'], 'geodirectory' ); ?></a>
1632
+								data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a>
1633 1633
 						</dd>
1634 1634
 						<?php
1635 1635
 					}
1636 1636
 					ob_start() // start tab content buffering
1637 1637
 					?>
1638 1638
 					<li id="<?php echo $tab_index; ?>Tab">
1639
-						<?php if ( $tab_list ) {
1640
-							$tab_title = '<span class="gd-tab-list-title" ><a href="#' . $tab_index . '">' . __( $detail_page_tab['heading_text'], 'geodirectory' ) . '</a></span><hr />';
1639
+						<?php if ($tab_list) {
1640
+							$tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'], 'geodirectory').'</a></span><hr />';
1641 1641
 							/**
1642 1642
 							 * Filter the tab list title html.
1643 1643
 							 *
@@ -1647,7 +1647,7 @@  discard block
 block discarded – undo
1647 1647
 							 * @param string $tab_index      The tab index type.
1648 1648
 							 * @param array $detail_page_tab The array of values including title text.
1649 1649
 							 */
1650
-							echo apply_filters( 'geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab );
1650
+							echo apply_filters('geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab);
1651 1651
 						} ?>
1652 1652
 						<div id="<?php echo $tab_index; ?>" class="hash-offset"></div>
1653 1653
 						<?php
@@ -1658,7 +1658,7 @@  discard block
 block discarded – undo
1658 1658
 						 *
1659 1659
 						 * @param string $tab_index The tab name ID.
1660 1660
 						 */
1661
-						do_action( 'geodir_before_tab_content', $tab_index );
1661
+						do_action('geodir_before_tab_content', $tab_index);
1662 1662
 
1663 1663
 						/**
1664 1664
 						 * Called before the details tab content is output per tab.
@@ -1668,21 +1668,21 @@  discard block
 block discarded – undo
1668 1668
 						 * @since 1.0.0
1669 1669
 						 * @todo  do we need this if we have the hook above? 'geodir_before_tab_content'
1670 1670
 						 */
1671
-						do_action( 'geodir_before_' . $tab_index . '_tab_content' );
1671
+						do_action('geodir_before_'.$tab_index.'_tab_content');
1672 1672
 						/// write a code to generate content of each tab
1673
-						switch ( $tab_index ) {
1673
+						switch ($tab_index) {
1674 1674
 							case 'post_profile':
1675 1675
 								/**
1676 1676
 								 * Called before the listing description content on the details page tab.
1677 1677
 								 *
1678 1678
 								 * @since 1.0.0
1679 1679
 								 */
1680
-								do_action( 'geodir_before_description_on_listing_detail' );
1681
-								if ( geodir_is_page( 'detail' ) ) {
1680
+								do_action('geodir_before_description_on_listing_detail');
1681
+								if (geodir_is_page('detail')) {
1682 1682
 									the_content();
1683 1683
 								} else {
1684 1684
 									/** This action is documented in geodirectory_template_actions.php */
1685
-									echo apply_filters( 'the_content', stripslashes( $post->post_desc ) );
1685
+									echo apply_filters('the_content', stripslashes($post->post_desc));
1686 1686
 								}
1687 1687
 
1688 1688
 								/**
@@ -1690,7 +1690,7 @@  discard block
 block discarded – undo
1690 1690
 								 *
1691 1691
 								 * @since 1.0.0
1692 1692
 								 */
1693
-								do_action( 'geodir_after_description_on_listing_detail' );
1693
+								do_action('geodir_after_description_on_listing_detail');
1694 1694
 								break;
1695 1695
 							case 'post_info':
1696 1696
 								echo $geodir_post_detail_fields;
@@ -1700,32 +1700,32 @@  discard block
 block discarded – undo
1700 1700
 								break;
1701 1701
 							case 'post_video':
1702 1702
 								// some browsers hide $_POST data if used for embeds so we replace with a placeholder
1703
-								if ( $preview ) {
1704
-									if ( $video ) {
1705
-										echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />" . __( 'Video Preview Placeholder', 'geodirectory' ) . "</p></span>";
1703
+								if ($preview) {
1704
+									if ($video) {
1705
+										echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />".__('Video Preview Placeholder', 'geodirectory')."</p></span>";
1706 1706
 									}
1707 1707
 								} else {
1708 1708
 
1709 1709
 									// stop payment manager filtering content length
1710
-									$filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1711
-									if ( false !== $filter_priority ) {
1712
-										remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1710
+									$filter_priority = has_filter('the_content', 'geodir_payments_the_content');
1711
+									if (false !== $filter_priority) {
1712
+										remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1713 1713
 									}
1714 1714
 
1715 1715
 									/** This action is documented in geodirectory_template_actions.php */
1716
-									echo apply_filters( 'the_content', stripslashes( $video ) );// we apply the_content filter so oembed works also;
1716
+									echo apply_filters('the_content', stripslashes($video)); // we apply the_content filter so oembed works also;
1717 1717
 
1718
-									if ( false !== $filter_priority ) {
1719
-										add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1718
+									if (false !== $filter_priority) {
1719
+										add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1720 1720
 									}
1721 1721
 								}
1722 1722
 								break;
1723 1723
 							case 'special_offers':
1724
-								echo apply_filters( 'gd_special_offers_content', wpautop( stripslashes( $special_offers ) ) );
1724
+								echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
1725 1725
 
1726 1726
 								break;
1727 1727
 							case 'post_map':
1728
-								geodir_draw_map( $map_args );
1728
+								geodir_draw_map($map_args);
1729 1729
 								break;
1730 1730
 							case 'reviews':
1731 1731
 								comments_template();
@@ -1734,7 +1734,7 @@  discard block
 block discarded – undo
1734 1734
 								echo $related_listing;
1735 1735
 								break;
1736 1736
 							default: {
1737
-								if ( ( isset( $post->{$tab_index} ) || ( ! isset( $post->{$tab_index} ) && ( strpos( $tab_index, 'gd_tab_' ) !== false || $tab_index == 'link_business' ) ) ) && ! empty( $detail_page_tab['tab_content'] ) ) {
1737
+								if ((isset($post->{$tab_index} ) || (!isset($post->{$tab_index} ) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
1738 1738
 									echo $detail_page_tab['tab_content'];
1739 1739
 								}
1740 1740
 							}
@@ -1746,7 +1746,7 @@  discard block
 block discarded – undo
1746 1746
 						 *
1747 1747
 						 * @since 1.0.0
1748 1748
 						 */
1749
-						do_action( 'geodir_after_tab_content', $tab_index );
1749
+						do_action('geodir_after_tab_content', $tab_index);
1750 1750
 
1751 1751
 						/**
1752 1752
 						 * Called after the details tab content is output per tab.
@@ -1756,7 +1756,7 @@  discard block
 block discarded – undo
1756 1756
 						 * @since 1.0.0
1757 1757
 						 * @todo  do we need this if we have the hook above? 'geodir_after_tab_content'
1758 1758
 						 */
1759
-						do_action( 'geodir_after_' . $tab_index . '_tab_content' );
1759
+						do_action('geodir_after_'.$tab_index.'_tab_content');
1760 1760
 						?> </li>
1761 1761
 					<?php
1762 1762
 					/**
@@ -1764,7 +1764,7 @@  discard block
 block discarded – undo
1764 1764
 					 *
1765 1765
 					 * @since 1.0.0
1766 1766
 					 */
1767
-					$arr_detail_page_tabs[ $tab_index ]['tab_content'] = apply_filters( "geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean() );
1767
+					$arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_".$detail_page_tab['tab_content']."_tab_content", ob_get_clean());
1768 1768
 				} // end of if for is_display
1769 1769
 			}// end of foreach
1770 1770
 
@@ -1774,14 +1774,14 @@  discard block
 block discarded – undo
1774 1774
 			 * @since 1.0.0
1775 1775
 			 * @see   'geodir_before_tab_list'
1776 1776
 			 */
1777
-			do_action( 'geodir_after_tab_list' );
1777
+			do_action('geodir_after_tab_list');
1778 1778
 			?>
1779
-			<?php if ( ! $tab_list ){ ?></dl><?php } ?>
1780
-		<ul class="geodir-tabs-content entry-content <?php if ( $tab_list ) { ?>geodir-tabs-list<?php } ?>"
1779
+			<?php if (!$tab_list) { ?></dl><?php } ?>
1780
+		<ul class="geodir-tabs-content entry-content <?php if ($tab_list) { ?>geodir-tabs-list<?php } ?>"
1781 1781
 		    style="position:relative;">
1782 1782
 			<?php
1783
-			foreach ( $arr_detail_page_tabs as $detail_page_tab ) {
1784
-				if ( $detail_page_tab['is_display'] && ! empty( $detail_page_tab['tab_content'] ) ) {
1783
+			foreach ($arr_detail_page_tabs as $detail_page_tab) {
1784
+				if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
1785 1785
 					echo $detail_page_tab['tab_content'];
1786 1786
 				}// end of if
1787 1787
 			}// end of foreach
@@ -1791,11 +1791,11 @@  discard block
 block discarded – undo
1791 1791
 			 *
1792 1792
 			 * @since 1.0.0
1793 1793
 			 */
1794
-			do_action( 'geodir_add_tab_content' ); ?>
1794
+			do_action('geodir_add_tab_content'); ?>
1795 1795
 		</ul>
1796 1796
 		<!--gd-tabs-content ul end-->
1797 1797
 	</div>
1798
-	<?php if ( ! $tab_list ) { ?>
1798
+	<?php if (!$tab_list) { ?>
1799 1799
 		<script>
1800 1800
 			if (window.location.hash && window.location.hash.indexOf('&') === -1 && jQuery(window.location.hash + 'Tab').length) {
1801 1801
 				hashVal = window.location.hash;
@@ -1827,31 +1827,31 @@  discard block
 block discarded – undo
1827 1827
  *
1828 1828
  * @return mixed Image file.
1829 1829
  */
1830
-function geodir_exif( $file ) {
1831
-	if ( empty( $file ) || ! is_array( $file ) ) {
1830
+function geodir_exif($file) {
1831
+	if (empty($file) || !is_array($file)) {
1832 1832
 		return $file;
1833 1833
 	}
1834 1834
 
1835
-	$file_path = ! empty( $file['tmp_name'] ) ? sanitize_text_field( $file['tmp_name'] ) : '';
1836
-	if ( ! ( $file_path && file_exists( $file_path ) ) ) {
1835
+	$file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : '';
1836
+	if (!($file_path && file_exists($file_path))) {
1837 1837
 		return $file;
1838 1838
 	}
1839 1839
 	$file['file'] = $file_path;
1840 1840
 
1841
-	if ( ! file_is_valid_image( $file_path ) ) {
1841
+	if (!file_is_valid_image($file_path)) {
1842 1842
 		return $file; // Bail if file is not an image.
1843 1843
 	}
1844 1844
 
1845
-	if ( ! function_exists( 'wp_get_image_editor' ) ) {
1845
+	if (!function_exists('wp_get_image_editor')) {
1846 1846
 		return $file;
1847 1847
 	}
1848 1848
 
1849 1849
 	$mime_type = $file['type'];
1850 1850
 	$exif      = array();
1851
-	if ( $mime_type == 'image/jpeg' && function_exists( 'exif_read_data' ) ) {
1851
+	if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
1852 1852
 		try {
1853
-			$exif = exif_read_data( $file_path );
1854
-		} catch ( Exception $e ) {
1853
+			$exif = exif_read_data($file_path);
1854
+		} catch (Exception $e) {
1855 1855
 			$exif = array();
1856 1856
 		}
1857 1857
 	}
@@ -1860,13 +1860,13 @@  discard block
 block discarded – undo
1860 1860
 	$flip        = false;
1861 1861
 	$modify      = false;
1862 1862
 	$orientation = 0;
1863
-	if ( ! empty( $exif ) && isset( $exif['Orientation'] ) ) {
1864
-		switch ( (int) $exif['Orientation'] ) {
1863
+	if (!empty($exif) && isset($exif['Orientation'])) {
1864
+		switch ((int) $exif['Orientation']) {
1865 1865
 			case 1:
1866 1866
 				// do nothing
1867 1867
 				break;
1868 1868
 			case 2:
1869
-				$flip   = array( false, true );
1869
+				$flip   = array(false, true);
1870 1870
 				$modify = true;
1871 1871
 				break;
1872 1872
 			case 3:
@@ -1875,13 +1875,13 @@  discard block
 block discarded – undo
1875 1875
 				$modify      = true;
1876 1876
 				break;
1877 1877
 			case 4:
1878
-				$flip   = array( true, false );
1878
+				$flip   = array(true, false);
1879 1879
 				$modify = true;
1880 1880
 				break;
1881 1881
 			case 5:
1882 1882
 				$orientation = - 90;
1883 1883
 				$rotate      = true;
1884
-				$flip        = array( false, true );
1884
+				$flip        = array(false, true);
1885 1885
 				$modify      = true;
1886 1886
 				break;
1887 1887
 			case 6:
@@ -1892,7 +1892,7 @@  discard block
 block discarded – undo
1892 1892
 			case 7:
1893 1893
 				$orientation = - 270;
1894 1894
 				$rotate      = true;
1895
-				$flip        = array( false, true );
1895
+				$flip        = array(false, true);
1896 1896
 				$modify      = true;
1897 1897
 				break;
1898 1898
 			case 8:
@@ -1918,31 +1918,31 @@  discard block
 block discarded – undo
1918 1918
 	 * @param int|null $quality Image Compression quality between 1-100% scale. Default null.
1919 1919
 	 * @param string $quality   Image mime type.
1920 1920
 	 */
1921
-	$quality = apply_filters( 'geodir_image_upload_set_quality', $quality, $mime_type );
1922
-	if ( $quality !== null ) {
1921
+	$quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
1922
+	if ($quality !== null) {
1923 1923
 		$modify = true;
1924 1924
 	}
1925 1925
 
1926
-	if ( ! $modify ) {
1926
+	if (!$modify) {
1927 1927
 		return $file; // no change
1928 1928
 	}
1929 1929
 
1930
-	$image = wp_get_image_editor( $file_path );
1931
-	if ( ! is_wp_error( $image ) ) {
1932
-		if ( $rotate ) {
1933
-			$image->rotate( $orientation );
1930
+	$image = wp_get_image_editor($file_path);
1931
+	if (!is_wp_error($image)) {
1932
+		if ($rotate) {
1933
+			$image->rotate($orientation);
1934 1934
 		}
1935 1935
 
1936
-		if ( ! empty( $flip ) ) {
1937
-			$image->flip( $flip[0], $flip[1] );
1936
+		if (!empty($flip)) {
1937
+			$image->flip($flip[0], $flip[1]);
1938 1938
 		}
1939 1939
 
1940
-		if ( $quality !== null ) {
1941
-			$image->set_quality( (int) $quality );
1940
+		if ($quality !== null) {
1941
+			$image->set_quality((int) $quality);
1942 1942
 		}
1943 1943
 
1944
-		$result = $image->save( $file_path );
1945
-		if ( ! is_wp_error( $result ) ) {
1944
+		$result = $image->save($file_path);
1945
+		if (!is_wp_error($result)) {
1946 1946
 			$file['file']     = $result['path'];
1947 1947
 			$file['tmp_name'] = $result['path'];
1948 1948
 		}
@@ -1970,7 +1970,7 @@  discard block
 block discarded – undo
1970 1970
  *
1971 1971
  * @return string Returns the recent reviews html.
1972 1972
  */
1973
-function geodir_get_recent_reviews( $g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false ) {
1973
+function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
1974 1974
 	global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session, $table_prefix;
1975 1975
 	$tablecomments = $wpdb->comments;
1976 1976
 	$tableposts    = $wpdb->posts;
@@ -1980,17 +1980,17 @@  discard block
 block discarded – undo
1980 1980
 	$region_filter  = '';
1981 1981
 	$country_filter = '';
1982 1982
 
1983
-	if ( $gd_session->get( 'gd_multi_location' ) ) {
1984
-		if ( $gd_ses_country = $gd_session->get( 'gd_country' ) ) {
1985
-			$country_filter = $wpdb->prepare( " AND r.post_country=%s ", str_replace( "-", " ", $gd_ses_country ) );
1983
+	if ($gd_session->get('gd_multi_location')) {
1984
+		if ($gd_ses_country = $gd_session->get('gd_country')) {
1985
+			$country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
1986 1986
 		}
1987 1987
 
1988
-		if ( $gd_ses_region = $gd_session->get( 'gd_region' ) ) {
1989
-			$region_filter = $wpdb->prepare( " AND r.post_region=%s ", str_replace( "-", " ", $gd_ses_region ) );
1988
+		if ($gd_ses_region = $gd_session->get('gd_region')) {
1989
+			$region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
1990 1990
 		}
1991 1991
 
1992
-		if ( $gd_ses_city = $gd_session->get( 'gd_city' ) ) {
1993
-			$city_filter = $wpdb->prepare( " AND r.post_city=%s ", str_replace( "-", " ", $gd_ses_city ) );
1992
+		if ($gd_ses_city = $gd_session->get('gd_city')) {
1993
+			$city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
1994 1994
 		}
1995 1995
 	}
1996 1996
 	
@@ -2001,84 +2001,84 @@  discard block
 block discarded – undo
2001 2001
 		$lang_code = ICL_LANGUAGE_CODE;
2002 2002
 		
2003 2003
 		if ($lang_code) {
2004
-			$join .= " JOIN " . $table_prefix . "icl_translations AS icltr2 ON icltr2.element_id = c.comment_post_ID AND p.ID = icltr2.element_id AND CONCAT('post_', p.post_type) = icltr2.element_type LEFT JOIN " . $table_prefix . "icl_translations AS icltr_comment ON icltr_comment.element_id = c.comment_ID AND icltr_comment.element_type = 'comment'";
2005
-			$where .= " AND icltr2.language_code = '" . $lang_code . "' AND (icltr_comment.language_code IS NULL OR icltr_comment.language_code = icltr2.language_code)";
2004
+			$join .= " JOIN ".$table_prefix."icl_translations AS icltr2 ON icltr2.element_id = c.comment_post_ID AND p.ID = icltr2.element_id AND CONCAT('post_', p.post_type) = icltr2.element_type LEFT JOIN ".$table_prefix."icl_translations AS icltr_comment ON icltr_comment.element_id = c.comment_ID AND icltr_comment.element_type = 'comment'";
2005
+			$where .= " AND icltr2.language_code = '".$lang_code."' AND (icltr_comment.language_code IS NULL OR icltr_comment.language_code = icltr2.language_code)";
2006 2006
 		}
2007 2007
 	}
2008 2008
 	
2009
-	$request = "SELECT r.id AS ID, r.post_type, r.comment_id AS comment_ID, r.post_date AS comment_date, r.overall_rating, r.user_id, r.post_id FROM " . GEODIR_REVIEW_TABLE . " AS r JOIN " . $wpdb->comments . " AS c ON c.comment_ID = r.comment_id JOIN " . $wpdb->posts . " AS p ON p.ID = c.comment_post_ID " . $join . " WHERE c.comment_parent = 0 AND c.comment_approved = 1 AND r.status = 1 AND r.overall_rating >= 1 AND p.post_status = 'publish' " . $where . " ORDER BY r.post_date DESC, r.id DESC LIMIT 5";
2009
+	$request = "SELECT r.id AS ID, r.post_type, r.comment_id AS comment_ID, r.post_date AS comment_date, r.overall_rating, r.user_id, r.post_id FROM ".GEODIR_REVIEW_TABLE." AS r JOIN ".$wpdb->comments." AS c ON c.comment_ID = r.comment_id JOIN ".$wpdb->posts." AS p ON p.ID = c.comment_post_ID ".$join." WHERE c.comment_parent = 0 AND c.comment_approved = 1 AND r.status = 1 AND r.overall_rating >= 1 AND p.post_status = 'publish' ".$where." ORDER BY r.post_date DESC, r.id DESC LIMIT 5";
2010 2010
 	
2011
-	$comments = $wpdb->get_results( $request );
2011
+	$comments = $wpdb->get_results($request);
2012 2012
 	
2013
-	foreach ( $comments as $comment ) {
2013
+	foreach ($comments as $comment) {
2014 2014
 		// Set the extra comment info needed.
2015
-		$comment_extra = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID" );
2015
+		$comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
2016 2016
 		$comment->comment_content      = $comment_extra->comment_content;
2017 2017
 		$comment->comment_author       = $comment_extra->comment_author;
2018 2018
 		$comment->comment_author_email = $comment_extra->comment_author_email;
2019 2019
 
2020 2020
 		$comment_id      = '';
2021 2021
 		$comment_id      = $comment->comment_ID;
2022
-		$comment_content = strip_tags( $comment->comment_content );
2022
+		$comment_content = strip_tags($comment->comment_content);
2023 2023
 
2024
-		$comment_content = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content );
2024
+		$comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
2025 2025
 
2026
-		$permalink            = get_permalink( $comment->ID ) . "#comment-" . $comment->comment_ID;
2026
+		$permalink            = get_permalink($comment->ID)."#comment-".$comment->comment_ID;
2027 2027
 		$comment_author_email = $comment->comment_author_email;
2028 2028
 		$comment_post_ID      = $comment->post_id;
2029 2029
 
2030
-		$post_title        = get_the_title( $comment_post_ID );
2031
-		$permalink         = get_permalink( $comment_post_ID );
2032
-		$comment_permalink = $permalink . "#comment-" . $comment->comment_ID;
2033
-		$read_more         = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __( 'Read more', 'geodirectory' ) . '</a>';
2030
+		$post_title        = get_the_title($comment_post_ID);
2031
+		$permalink         = get_permalink($comment_post_ID);
2032
+		$comment_permalink = $permalink."#comment-".$comment->comment_ID;
2033
+		$read_more         = '<a class="comment_excerpt" href="'.$comment_permalink.'">'.__('Read more', 'geodirectory').'</a>';
2034 2034
 
2035
-		$comment_content_length = strlen( $comment_content );
2036
-		if ( $comment_content_length > $comment_lenth ) {
2037
-			$comment_excerpt = geodir_utf8_substr( $comment_content, 0, $comment_lenth ) . '... ' . $read_more;
2035
+		$comment_content_length = strlen($comment_content);
2036
+		if ($comment_content_length > $comment_lenth) {
2037
+			$comment_excerpt = geodir_utf8_substr($comment_content, 0, $comment_lenth).'... '.$read_more;
2038 2038
 		} else {
2039 2039
 			$comment_excerpt = $comment_content;
2040 2040
 		}
2041 2041
 
2042
-		if ( $comment->user_id ) {
2043
-			$user_profile_url = get_author_posts_url( $comment->user_id );
2042
+		if ($comment->user_id) {
2043
+			$user_profile_url = get_author_posts_url($comment->user_id);
2044 2044
 		} else {
2045 2045
 			$user_profile_url = '';
2046 2046
 		}
2047 2047
 
2048
-		if ( $comment_id ) {
2048
+		if ($comment_id) {
2049 2049
 			$comments_echo .= '<li class="clearfix">';
2050
-			$comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">";
2051
-			if ( function_exists( 'get_avatar' ) ) {
2052
-				if ( ! isset( $comment->comment_type ) ) {
2053
-					if ( $user_profile_url ) {
2054
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2050
+			$comments_echo .= "<span class=\"li".$comment_id." geodir_reviewer_image\">";
2051
+			if (function_exists('get_avatar')) {
2052
+				if (!isset($comment->comment_type)) {
2053
+					if ($user_profile_url) {
2054
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2055 2055
 					}
2056
-					$comments_echo .= get_avatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2057
-					if ( $user_profile_url ) {
2056
+					$comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2057
+					if ($user_profile_url) {
2058 2058
 						$comments_echo .= '</a>';
2059 2059
 					}
2060
-				} elseif ( ( isset( $comment->comment_type ) && $comment->comment_type == 'trackback' ) || ( isset( $comment->comment_type ) && $comment->comment_type == 'pingback' ) ) {
2061
-					if ( $user_profile_url ) {
2062
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2060
+				} elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
2061
+					if ($user_profile_url) {
2062
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2063 2063
 					}
2064
-					$comments_echo .= get_avatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2064
+					$comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2065 2065
 				}
2066
-			} elseif ( function_exists( 'gravatar' ) ) {
2067
-				if ( $user_profile_url ) {
2068
-					$comments_echo .= '<a href="' . $user_profile_url . '">';
2066
+			} elseif (function_exists('gravatar')) {
2067
+				if ($user_profile_url) {
2068
+					$comments_echo .= '<a href="'.$user_profile_url.'">';
2069 2069
 				}
2070 2070
 				$comments_echo .= "<img src=\"";
2071
-				if ( '' == $comment->comment_type ) {
2072
-					$comments_echo .= gravatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2073
-					if ( $user_profile_url ) {
2071
+				if ('' == $comment->comment_type) {
2072
+					$comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2073
+					if ($user_profile_url) {
2074 2074
 						$comments_echo .= '</a>';
2075 2075
 					}
2076
-				} elseif ( ( 'trackback' == $comment->comment_type ) || ( 'pingback' == $comment->comment_type ) ) {
2077
-					if ( $user_profile_url ) {
2078
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2076
+				} elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
2077
+					if ($user_profile_url) {
2078
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2079 2079
 					}
2080
-					$comments_echo .= gravatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2081
-					if ( $user_profile_url ) {
2080
+					$comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2081
+					if ($user_profile_url) {
2082 2082
 						$comments_echo .= '</a>';
2083 2083
 					}
2084 2084
 				}
@@ -2088,17 +2088,17 @@  discard block
 block discarded – undo
2088 2088
 			$comments_echo .= "</span>\n";
2089 2089
 
2090 2090
 			$comments_echo .= '<span class="geodir_reviewer_content">';
2091
-			if ( $comment->user_id ) {
2092
-				$comments_echo .= '<a href="' . get_author_posts_url( $comment->user_id ) . '">';
2091
+			if ($comment->user_id) {
2092
+				$comments_echo .= '<a href="'.get_author_posts_url($comment->user_id).'">';
2093 2093
 			}
2094
-			$comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> ';
2095
-			if ( $comment->user_id ) {
2094
+			$comments_echo .= '<span class="geodir_reviewer_author">'.$comment->comment_author.'</span> ';
2095
+			if ($comment->user_id) {
2096 2096
 				$comments_echo .= '</a>';
2097 2097
 			}
2098
-			$comments_echo .= '<span class="geodir_reviewer_reviewed">' . __( 'reviewed', 'geodirectory' ) . '</span> ';
2099
-			$comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>';
2100
-			$comments_echo .= geodir_get_rating_stars( $comment->overall_rating, $comment_post_ID );
2101
-			$comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . '';
2098
+			$comments_echo .= '<span class="geodir_reviewer_reviewed">'.__('reviewed', 'geodirectory').'</span> ';
2099
+			$comments_echo .= '<a href="'.$permalink.'" class="geodir_reviewer_title">'.$post_title.'</a>';
2100
+			$comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID);
2101
+			$comments_echo .= '<p class="geodir_reviewer_text">'.$comment_excerpt.'';
2102 2102
 			//echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
2103 2103
 			$comments_echo .= '</p>';
2104 2104
 
@@ -2118,25 +2118,25 @@  discard block
 block discarded – undo
2118 2118
  * @return array Returns post categories as an array.
2119 2119
  */
2120 2120
 function geodir_home_map_cats_key_value_array() {
2121
-	$post_types = geodir_get_posttypes( 'object' );
2121
+	$post_types = geodir_get_posttypes('object');
2122 2122
 
2123 2123
 	$return = array();
2124
-	if ( ! empty( $post_types ) ) {
2125
-		foreach ( $post_types as $key => $post_type ) {
2126
-			$cpt_name       = __( $post_type->labels->singular_name, 'geodirectory' );
2127
-			$post_type_name = sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name );
2128
-			$taxonomies     = geodir_get_taxonomies( $key );
2129
-			$cat_taxonomy   = ! empty( $taxonomies[0] ) ? $taxonomies[0] : null;
2130
-			$cat_terms      = $cat_taxonomy ? get_terms( $cat_taxonomy ) : null;
2131
-
2132
-			if ( ! empty( $cat_terms ) ) {
2133
-				$return[ 'optgroup_start-' . $key ] = $post_type_name;
2134
-
2135
-				foreach ( $cat_terms as $cat_term ) {
2136
-					$return[ $key . '_' . $cat_term->term_id ] = $cat_term->name;
2124
+	if (!empty($post_types)) {
2125
+		foreach ($post_types as $key => $post_type) {
2126
+			$cpt_name       = __($post_type->labels->singular_name, 'geodirectory');
2127
+			$post_type_name = sprintf(__('%s Categories', 'geodirectory'), $cpt_name);
2128
+			$taxonomies     = geodir_get_taxonomies($key);
2129
+			$cat_taxonomy   = !empty($taxonomies[0]) ? $taxonomies[0] : null;
2130
+			$cat_terms      = $cat_taxonomy ? get_terms($cat_taxonomy) : null;
2131
+
2132
+			if (!empty($cat_terms)) {
2133
+				$return['optgroup_start-'.$key] = $post_type_name;
2134
+
2135
+				foreach ($cat_terms as $cat_term) {
2136
+					$return[$key.'_'.$cat_term->term_id] = $cat_term->name;
2137 2137
 				}
2138 2138
 
2139
-				$return[ 'optgroup_end-' . $key ] = $post_type_name;
2139
+				$return['optgroup_end-'.$key] = $post_type_name;
2140 2140
 			}
2141 2141
 		}
2142 2142
 	}
@@ -2152,14 +2152,14 @@  discard block
 block discarded – undo
2152 2152
  * @package GeoDirectory
2153 2153
  */
2154 2154
 function geodir_twitter_tweet_button() {
2155
-	if ( isset( $_GET['gde'] ) ) {
2156
-		$link = '?url=' . urlencode( geodir_curPageURL() );
2155
+	if (isset($_GET['gde'])) {
2156
+		$link = '?url='.urlencode(geodir_curPageURL());
2157 2157
 	} else {
2158 2158
 		$link = '';
2159 2159
 	}
2160 2160
 	?>
2161 2161
 	<a href="http://twitter.com/share<?php echo $link; ?>"
2162
-	   class="twitter-share-button"><?php _e( 'Tweet', 'geodirectory' ); ?></a>
2162
+	   class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
2163 2163
 	<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
2164 2164
 	<?php
2165 2165
 }
@@ -2176,10 +2176,10 @@  discard block
 block discarded – undo
2176 2176
 function geodir_fb_like_button() {
2177 2177
 	global $post;
2178 2178
 	?>
2179
-	<iframe <?php if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) ) {
2179
+	<iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
2180 2180
 		echo 'allowtransparency="true"';
2181 2181
 	} ?> class="facebook"
2182
-	     src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode( get_permalink( $post->ID ) ); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2182
+	     src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2183 2183
 	     style="border:none; overflow:hidden; width:100px; height:20px"></iframe>
2184 2184
 	<?php
2185 2185
 }
@@ -2210,7 +2210,7 @@  discard block
 block discarded – undo
2210 2210
 
2211 2211
 
2212 2212
 function geodir_listing_bounce_map_pin_on_hover() {
2213
-	if ( get_option( 'geodir_listing_hover_bounce_map_pin', true ) ) {
2213
+	if (get_option('geodir_listing_hover_bounce_map_pin', true)) {
2214 2214
 		?>
2215 2215
 		<script>
2216 2216
 			jQuery(function ($) {
@@ -2233,44 +2233,44 @@  discard block
 block discarded – undo
2233 2233
 	}
2234 2234
 }
2235 2235
 
2236
-add_action( 'geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10 );
2236
+add_action('geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10);
2237 2237
 
2238
-add_action( 'geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1 );
2239
-function geodir_output_favourite_html_listings( $post_id ) {
2240
-	geodir_favourite_html( '', $post_id );
2238
+add_action('geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1);
2239
+function geodir_output_favourite_html_listings($post_id) {
2240
+	geodir_favourite_html('', $post_id);
2241 2241
 }
2242 2242
 
2243
-add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2 );
2244
-function geodir_output_pinpoint_html_listings( $post_id, $post = array() ) {
2243
+add_action('geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2);
2244
+function geodir_output_pinpoint_html_listings($post_id, $post = array()) {
2245 2245
 	global $wp_query;
2246 2246
 
2247 2247
 	$show_pin_point = $wp_query->is_main_query();
2248 2248
 
2249
-	if ( ! empty( $post ) && ! empty( $show_pin_point ) && is_active_widget( false, "", "geodir_map_v3_listing_map" ) ) {
2250
-		$term_icon_url = geodir_get_tax_meta( $post->default_category, 'ct_cat_icon', false, $post->post_type );
2251
-		$marker_icon   = isset( $term_icon_url['src'] ) ? $term_icon_url['src'] : get_option( 'geodir_default_marker_icon' );
2249
+	if (!empty($post) && !empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
2250
+		$term_icon_url = geodir_get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type);
2251
+		$marker_icon   = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
2252 2252
 		?>
2253 2253
 		<span class="geodir-pinpoint"
2254
-		      style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters( 'geodir_listing_listview_pinpoint_inner_content', '', 'listing' ); ?></span>
2254
+		      style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters('geodir_listing_listview_pinpoint_inner_content', '', 'listing'); ?></span>
2255 2255
 		<a class="geodir-pinpoint-link" href="javascript:void(0)"
2256 2256
 		   onclick="if(typeof openMarker=='function'){openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"
2257 2257
 		   onmouseover="if(typeof animate_marker=='function'){animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"
2258
-		   onmouseout="if(typeof stop_marker_animation=='function'){stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"><?php _e( 'Pinpoint', 'geodirectory' ); ?></a>
2258
+		   onmouseout="if(typeof stop_marker_animation=='function'){stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')}"><?php _e('Pinpoint', 'geodirectory'); ?></a>
2259 2259
 		<?php
2260 2260
 	}
2261 2261
 }
2262 2262
 
2263 2263
 function geodir_search_form_submit_button() {
2264 2264
 
2265
-	$new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true;
2265
+	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2266 2266
 
2267
-	if ( $new_style ) {
2267
+	if ($new_style) {
2268 2268
 		$default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>';
2269
-	}else{
2269
+	} else {
2270 2270
 		$default_search_button_label = 'Search';
2271 2271
 	}
2272
-	if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) {
2273
-		$default_search_button_label = __( get_option( 'geodir_search_button_label' ), 'geodirectory' );
2272
+	if (get_option('geodir_search_button_label') && get_option('geodir_search_button_label') != 'Search') {
2273
+		$default_search_button_label = __(get_option('geodir_search_button_label'), 'geodirectory');
2274 2274
 	}
2275 2275
 
2276 2276
 	/**
@@ -2282,78 +2282,78 @@  discard block
 block discarded – undo
2282 2282
 	 *
2283 2283
 	 * @param string $default_search_button_label The current search button text.
2284 2284
 	 */
2285
-	$default_search_button_label = apply_filters( 'geodir_search_default_search_button_text', $default_search_button_label );
2285
+	$default_search_button_label = apply_filters('geodir_search_default_search_button_text', $default_search_button_label);
2286 2286
 
2287 2287
 	$fa_class = '';
2288
-	if ( strpos( $default_search_button_label, '&#' ) !== false ) {
2288
+	if (strpos($default_search_button_label, '&#') !== false) {
2289 2289
 		$fa_class = 'fa';
2290 2290
 	}
2291 2291
 
2292 2292
 
2293
-	if ( $new_style ) {
2293
+	if ($new_style) {
2294 2294
 	?>
2295
-		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button>
2296
-<?php }else{?>
2297
-		<input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>"
2295
+		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e($default_search_button_label, 'geodirectory'); ?></button>
2296
+<?php } else {?>
2297
+		<input type="button" value="<?php esc_attr_e($default_search_button_label); ?>"
2298 2298
 	       class="geodir_submit_search <?php echo $fa_class; ?>"/>
2299 2299
 	<?php }
2300 2300
 }
2301 2301
 
2302
-add_action( 'geodir_before_search_button', 'geodir_search_form_submit_button', 5000 );
2302
+add_action('geodir_before_search_button', 'geodir_search_form_submit_button', 5000);
2303 2303
 
2304 2304
 function geodir_search_form_post_type_input() {
2305 2305
 	global $geodir_search_post_type;
2306
-	$post_types     = apply_filters( 'geodir_search_form_post_types', geodir_get_posttypes( 'object' ) );
2306
+	$post_types     = apply_filters('geodir_search_form_post_types', geodir_get_posttypes('object'));
2307 2307
 	$curr_post_type = $geodir_search_post_type;
2308 2308
 
2309
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2309
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2310 2310
 
2311
-		foreach ( $post_types as $post_type => $info ){
2311
+		foreach ($post_types as $post_type => $info) {
2312 2312
 			global $wpdb;
2313
-			$has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
2314
-			if ( ! $has_posts ) {
2313
+			$has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
2314
+			if (!$has_posts) {
2315 2315
 				unset($post_types->{$post_type});
2316 2316
 			}
2317 2317
 		}
2318 2318
 
2319
-		if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2319
+		if (!empty($post_types) && count((array) $post_types) > 1) {
2320 2320
 
2321
-			$new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true;
2322
-			if ( $new_style ) {
2321
+			$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2322
+			if ($new_style) {
2323 2323
 				echo "<div class='gd-search-input-wrapper gd-search-field-cpt'>";
2324 2324
 			}
2325 2325
 			?>
2326 2326
 			<select name="stype" class="search_by_post">
2327
-				<?php foreach ( $post_types as $post_type => $info ):
2327
+				<?php foreach ($post_types as $post_type => $info):
2328 2328
 					global $wpdb;
2329 2329
 					?>
2330 2330
 
2331
-					<option data-label="<?php echo get_post_type_archive_link( $post_type ); ?>"
2332
-					        value="<?php echo $post_type; ?>" <?php if ( isset( $_REQUEST['stype'] ) ) {
2333
-						if ( $post_type == $_REQUEST['stype'] ) {
2331
+					<option data-label="<?php echo get_post_type_archive_link($post_type); ?>"
2332
+					        value="<?php echo $post_type; ?>" <?php if (isset($_REQUEST['stype'])) {
2333
+						if ($post_type == $_REQUEST['stype']) {
2334 2334
 							echo 'selected="selected"';
2335 2335
 						}
2336
-					} elseif ( $curr_post_type == $post_type ) {
2336
+					} elseif ($curr_post_type == $post_type) {
2337 2337
 						echo 'selected="selected"';
2338
-					} ?>><?php _e( geodir_utf8_ucfirst( $info->labels->name ), 'geodirectory' ); ?></option>
2338
+					} ?>><?php _e(geodir_utf8_ucfirst($info->labels->name), 'geodirectory'); ?></option>
2339 2339
 
2340 2340
 				<?php endforeach; ?>
2341 2341
 			</select>
2342 2342
 			<?php
2343
-			if ( $new_style ) {
2343
+			if ($new_style) {
2344 2344
 				echo "</div>";
2345 2345
 			}
2346
-		}else{
2347
-			if(! empty( $post_types )){
2348
-				$pt_arr = (array)$post_types;
2349
-				echo '<input type="hidden" name="stype" value="' . key( $pt_arr  ) . '"  />';
2350
-			}else{
2346
+		} else {
2347
+			if (!empty($post_types)) {
2348
+				$pt_arr = (array) $post_types;
2349
+				echo '<input type="hidden" name="stype" value="'.key($pt_arr).'"  />';
2350
+			} else {
2351 2351
 				echo '<input type="hidden" name="stype" value="gd_place"  />';
2352 2352
 			}
2353 2353
 
2354 2354
 		}
2355 2355
 
2356
-	}elseif ( ! empty( $post_types ) ) {
2356
+	}elseif (!empty($post_types)) {
2357 2357
 		echo '<input type="hidden" name="stype" value="gd_place"  />';
2358 2358
 	}
2359 2359
 }
@@ -2361,26 +2361,26 @@  discard block
 block discarded – undo
2361 2361
 function geodir_search_form_search_input() {
2362 2362
 
2363 2363
 	$default_search_for_text = SEARCH_FOR_TEXT;
2364
-	if ( get_option( 'geodir_search_field_default_text' ) ) {
2365
-		$default_search_for_text = __( get_option( 'geodir_search_field_default_text' ), 'geodirectory' );
2364
+	if (get_option('geodir_search_field_default_text')) {
2365
+		$default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
2366 2366
 	}
2367 2367
 
2368 2368
 	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2369
-	if($new_style){
2369
+	if ($new_style) {
2370 2370
 		echo "<div class='gd-search-input-wrapper gd-search-field-search'>";
2371 2371
 	}
2372 2372
 	?>
2373 2373
 	<input class="search_text" name="s"
2374
-	       value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
2375
-		       echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2374
+	       value="<?php if (isset($_REQUEST['s']) && trim($_REQUEST['s']) != '') {
2375
+		       echo esc_attr(stripslashes_deep($_REQUEST['s']));
2376 2376
 	       } else {
2377 2377
 		       echo $default_search_for_text;
2378 2378
 	       } ?>" type="text"
2379
-	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
2380
-	       onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
2379
+	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql($default_search_for_text); ?>';}"
2380
+	       onfocus="if (this.value == '<?php echo esc_sql($default_search_for_text); ?>') {this.value = '';}"
2381 2381
 	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);">
2382 2382
 	<?php
2383
-	if($new_style){
2383
+	if ($new_style) {
2384 2384
 		echo "</div>";
2385 2385
 	}
2386 2386
 }
@@ -2388,12 +2388,12 @@  discard block
 block discarded – undo
2388 2388
 function geodir_search_form_near_input() {
2389 2389
 
2390 2390
 	$default_near_text = NEAR_TEXT;
2391
-	if ( get_option( 'geodir_near_field_default_text' ) ) {
2392
-		$default_near_text = __( get_option( 'geodir_near_field_default_text' ), 'geodirectory' );
2391
+	if (get_option('geodir_near_field_default_text')) {
2392
+		$default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
2393 2393
 	}
2394 2394
 
2395
-	if ( isset( $_REQUEST['snear'] ) && $_REQUEST['snear'] != '' ) {
2396
-		$near = esc_attr( stripslashes_deep( $_REQUEST['snear'] ) );
2395
+	if (isset($_REQUEST['snear']) && $_REQUEST['snear'] != '') {
2396
+		$near = esc_attr(stripslashes_deep($_REQUEST['snear']));
2397 2397
 	} else {
2398 2398
 		$near = $default_near_text;
2399 2399
 	}
@@ -2407,7 +2407,7 @@  discard block
 block discarded – undo
2407 2407
 	 * @since 1.6.9
2408 2408
 	 * @param string $curr_post_type The current post type.
2409 2409
 	 */
2410
-	$near_input_extra = apply_filters('geodir_near_input_extra','',$curr_post_type);
2410
+	$near_input_extra = apply_filters('geodir_near_input_extra', '', $curr_post_type);
2411 2411
 
2412 2412
 
2413 2413
 	/**
@@ -2420,7 +2420,7 @@  discard block
 block discarded – undo
2420 2420
 	 * @param string $near              The current near value.
2421 2421
 	 * @param string $default_near_text The default near value.
2422 2422
 	 */
2423
-	$near = apply_filters( 'geodir_search_near_text', $near, $default_near_text );
2423
+	$near = apply_filters('geodir_search_near_text', $near, $default_near_text);
2424 2424
 	/**
2425 2425
 	 * Filter the default "Near" text value for the search form.
2426 2426
 	 *
@@ -2431,7 +2431,7 @@  discard block
 block discarded – undo
2431 2431
 	 * @param string $near              The current near value.
2432 2432
 	 * @param string $default_near_text The default near value.
2433 2433
 	 */
2434
-	$default_near_text = apply_filters( 'geodir_search_default_near_text', $default_near_text, $near );
2434
+	$default_near_text = apply_filters('geodir_search_default_near_text', $default_near_text, $near);
2435 2435
 	/**
2436 2436
 	 * Filter the class for the near search input.
2437 2437
 	 *
@@ -2439,10 +2439,10 @@  discard block
 block discarded – undo
2439 2439
 	 *
2440 2440
 	 * @param string $class The class for the HTML near input, default is blank.
2441 2441
 	 */
2442
-	$near_class = apply_filters( 'geodir_search_near_class', '' );
2442
+	$near_class = apply_filters('geodir_search_near_class', '');
2443 2443
 
2444 2444
 	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2445
-	if($new_style){
2445
+	if ($new_style) {
2446 2446
 		echo "<div class='gd-search-input-wrapper gd-search-field-near' $near_input_extra>";
2447 2447
 		
2448 2448
 		do_action('geodir_before_near_input');
@@ -2450,30 +2450,30 @@  discard block
 block discarded – undo
2450 2450
 
2451 2451
 	?>
2452 2452
 	<input name="snear" class="snear <?php echo $near_class; ?>" type="text" value="<?php echo $near; ?>"
2453
-	       onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql( $near ); ?>' != '' ? '<?php echo esc_sql( $near ); ?>' : '<?php echo $default_near_text; ?>');}"
2454
-	       onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql( $near ); ?>') {this.value = '';}"
2455
-	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra;?>/>
2453
+	       onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql($near); ?>' != '' ? '<?php echo esc_sql($near); ?>' : '<?php echo $default_near_text; ?>');}"
2454
+	       onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql($near); ?>') {this.value = '';}"
2455
+	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra; ?>/>
2456 2456
 	<?php
2457
-	if($new_style){
2457
+	if ($new_style) {
2458 2458
 		do_action('geodir_after_near_input');
2459 2459
 
2460 2460
 		echo "</div>";
2461 2461
 	}
2462 2462
 }
2463 2463
 
2464
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 );
2465
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 );
2466
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 );
2464
+add_action('geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10);
2465
+add_action('geodir_search_form_inputs', 'geodir_search_form_search_input', 20);
2466
+add_action('geodir_search_form_inputs', 'geodir_search_form_near_input', 30);
2467 2467
 
2468
-function geodir_get_search_post_type($pt=''){
2468
+function geodir_get_search_post_type($pt = '') {
2469 2469
 	global $geodir_search_post_type;
2470 2470
 
2471
-	if($pt!=''){return $geodir_search_post_type = $pt;}
2472
-	if(!empty($geodir_search_post_type)){ return $geodir_search_post_type;}
2471
+	if ($pt != '') {return $geodir_search_post_type = $pt; }
2472
+	if (!empty($geodir_search_post_type)) { return $geodir_search_post_type; }
2473 2473
 
2474 2474
 	$geodir_search_post_type = geodir_get_current_posttype();
2475 2475
 
2476
-	if(!$geodir_search_post_type) {
2476
+	if (!$geodir_search_post_type) {
2477 2477
 		$geodir_search_post_type = geodir_get_default_posttype();
2478 2478
 	}
2479 2479
 
@@ -2481,7 +2481,7 @@  discard block
 block discarded – undo
2481 2481
 	return $geodir_search_post_type;
2482 2482
 }
2483 2483
 
2484
-function geodir_search_form(){
2484
+function geodir_search_form() {
2485 2485
 
2486 2486
 	geodir_get_search_post_type();
2487 2487
 
@@ -2491,8 +2491,8 @@  discard block
 block discarded – undo
2491 2491
 	die();
2492 2492
 }
2493 2493
 
2494
-add_action( 'wp_ajax_geodir_search_form', 'geodir_search_form' );
2495
-add_action( 'wp_ajax_nopriv_geodir_search_form', 'geodir_search_form' );
2494
+add_action('wp_ajax_geodir_search_form', 'geodir_search_form');
2495
+add_action('wp_ajax_nopriv_geodir_search_form', 'geodir_search_form');
2496 2496
 
2497 2497
 /**
2498 2498
  * Check wpml active or not.
@@ -2566,7 +2566,7 @@  discard block
 block discarded – undo
2566 2566
         }
2567 2567
     }
2568 2568
 }
2569
-add_filter( 'icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4 );
2569
+add_filter('icl_make_duplicate', 'geodir_icl_make_duplicate', 11, 4);
2570 2570
 
2571 2571
 /**
2572 2572
  * Duplicate post listing manually after listing saved.
@@ -2607,7 +2607,7 @@  discard block
 block discarded – undo
2607 2607
 function geodir_wpml_duplicate_post_reviews($master_post_id, $tr_post_id, $lang) {
2608 2608
     global $wpdb;
2609 2609
 
2610
-    $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM " . GEODIR_REVIEW_TABLE . " WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2610
+    $reviews = $wpdb->get_results($wpdb->prepare("SELECT comment_id FROM ".GEODIR_REVIEW_TABLE." WHERE post_id=%d ORDER BY id ASC", $master_post_id), ARRAY_A);
2611 2611
 
2612 2612
     if (!empty($reviews)) {
2613 2613
         foreach ($reviews as $review) {
@@ -2635,14 +2635,14 @@  discard block
 block discarded – undo
2635 2635
     global $wpdb, $plugin_prefix;
2636 2636
 
2637 2637
     $post_type = get_post_type($master_post_id);
2638
-    $post_table = $plugin_prefix . $post_type . '_detail';
2638
+    $post_table = $plugin_prefix.$post_type.'_detail';
2639 2639
 
2640
-    $query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
2641
-    $data = (array)$wpdb->get_row($query);
2640
+    $query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id));
2641
+    $data = (array) $wpdb->get_row($query);
2642 2642
 
2643
-    if ( !empty( $data ) ) {
2643
+    if (!empty($data)) {
2644 2644
         $data['post_id'] = $tr_post_id;
2645
-        unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category']);
2645
+        unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category']);
2646 2646
         $wpdb->update($post_table, $data, array('post_id' => $tr_post_id));
2647 2647
         return true;
2648 2648
     }
@@ -2667,7 +2667,7 @@  discard block
 block discarded – undo
2667 2667
     global $sitepress, $wpdb;
2668 2668
     $post_type = get_post_type($master_post_id);
2669 2669
 
2670
-    remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
2670
+    remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language
2671 2671
 
2672 2672
     $taxonomies = get_object_taxonomies($post_type);
2673 2673
     foreach ($taxonomies as $taxonomy) {
@@ -2676,9 +2676,9 @@  discard block
 block discarded – undo
2676 2676
         
2677 2677
         if ($terms) {
2678 2678
             foreach ($terms as $term) {
2679
-                $tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
2679
+                $tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang);
2680 2680
                 
2681
-                if (!is_null($tr_id)){
2681
+                if (!is_null($tr_id)) {
2682 2682
                     // not using get_term - unfiltered get_term
2683 2683
                     $translated_term = $wpdb->get_row($wpdb->prepare("
2684 2684
                         SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
@@ -2687,14 +2687,14 @@  discard block
 block discarded – undo
2687 2687
                 }
2688 2688
             }
2689 2689
 
2690
-            if (!is_taxonomy_hierarchical($taxonomy)){
2691
-                $terms_array = array_unique( array_map( 'intval', $terms_array ) );
2690
+            if (!is_taxonomy_hierarchical($taxonomy)) {
2691
+                $terms_array = array_unique(array_map('intval', $terms_array));
2692 2692
             }
2693 2693
 
2694 2694
             wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
2695 2695
             
2696
-            if ($taxonomy == $post_type . 'category') {
2697
-                geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
2696
+            if ($taxonomy == $post_type.'category') {
2697
+                geodir_set_postcat_structure($tr_post_id, $post_type.'category');
2698 2698
             }
2699 2699
         }
2700 2700
     }
@@ -2715,15 +2715,15 @@  discard block
 block discarded – undo
2715 2715
 function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
2716 2716
     global $wpdb;
2717 2717
 
2718
-    $query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2718
+    $query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
2719 2719
     $wpdb->query($query);
2720 2720
 
2721
-    $query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2721
+    $query = $wpdb->prepare("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
2722 2722
     $post_images = $wpdb->get_results($query);
2723 2723
 
2724
-    if ( !empty( $post_images ) ) {
2725
-        foreach ( $post_images as $post_image) {
2726
-            $image_data = (array)$post_image;
2724
+    if (!empty($post_images)) {
2725
+        foreach ($post_images as $post_image) {
2726
+            $image_data = (array) $post_image;
2727 2727
             unset($image_data['ID']);
2728 2728
             $image_data['post_id'] = $tr_post_id;
2729 2729
             
@@ -2756,13 +2756,13 @@  discard block
 block discarded – undo
2756 2756
 function geodir_wpml_duplicate_post_review($master_comment_id, $master_post_id, $tr_post_id, $lang) {
2757 2757
     global $wpdb, $plugin_prefix, $sitepress;
2758 2758
 
2759
-    $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2759
+    $review = $wpdb->get_row($wpdb->prepare("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d ORDER BY id ASC", $master_comment_id), ARRAY_A);
2760 2760
 
2761 2761
     if (empty($review)) {
2762 2762
         return false;
2763 2763
     }
2764 2764
     if ($review['post_id'] != $master_post_id) {
2765
-        $wpdb->query($wpdb->prepare("UPDATE " . GEODIR_REVIEW_TABLE . " SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2765
+        $wpdb->query($wpdb->prepare("UPDATE ".GEODIR_REVIEW_TABLE." SET post_id=%d WHERE comment_id=%d", $master_post_id, $master_comment_id));
2766 2766
         geodir_update_postrating($master_post_id, $post_type);
2767 2767
     }
2768 2768
 
@@ -2773,9 +2773,9 @@  discard block
 block discarded – undo
2773 2773
     }
2774 2774
 
2775 2775
     $post_type = get_post_type($master_post_id);
2776
-    $post_table = $plugin_prefix . $post_type . '_detail';
2776
+    $post_table = $plugin_prefix.$post_type.'_detail';
2777 2777
 
2778
-    $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM " . $post_table . " WHERE post_id = %d", $tr_post_id), ARRAY_A);
2778
+    $translated_post = $wpdb->get_row($wpdb->prepare("SELECT post_title, post_latitude, post_longitude, post_city, post_region, post_country FROM ".$post_table." WHERE post_id = %d", $tr_post_id), ARRAY_A);
2779 2779
     if (empty($translated_post)) {
2780 2780
         return false;
2781 2781
     }
@@ -2793,7 +2793,7 @@  discard block
 block discarded – undo
2793 2793
         unset($review['id']);
2794 2794
     }
2795 2795
 
2796
-    $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2796
+    $tr_review_id = $wpdb->get_var($wpdb->prepare("SELECT id FROM ".GEODIR_REVIEW_TABLE." WHERE comment_id=%d AND post_id=%d ORDER BY id ASC", $tr_comment_id, $tr_post_id));
2797 2797
 
2798 2798
     if ($tr_review_id) { // update review
2799 2799
         $wpdb->update(GEODIR_REVIEW_TABLE, $review, array('id' => $tr_review_id));
@@ -2806,8 +2806,8 @@  discard block
 block discarded – undo
2806 2806
         geodir_update_postrating($tr_post_id, $post_type);
2807 2807
         
2808 2808
         if (defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_review') && $sitepress->get_setting('sync_comments_on_duplicates')) {
2809
-            $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id = %d", array($tr_comment_id)));
2810
-            $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_COMMENTS_REVIEWS_TABLE . " WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2809
+            $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id = %d", array($tr_comment_id)));
2810
+            $likes = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_COMMENTS_REVIEWS_TABLE." WHERE comment_id=%d ORDER BY like_date ASC", $master_comment_id, $tr_post_id), ARRAY_A);
2811 2811
 
2812 2812
             if (!empty($likes)) {
2813 2813
                 foreach ($likes as $like) {
@@ -2909,7 +2909,7 @@  discard block
 block discarded – undo
2909 2909
  * @return bool True if review star disabled, otherwise false.
2910 2910
  */ 
2911 2911
 function geodir_rating_disabled_post_types() {
2912
-	$post_types = get_option( 'geodir_disable_rating_cpt' );
2912
+	$post_types = get_option('geodir_disable_rating_cpt');
2913 2913
 	
2914 2914
 	/**
2915 2915
 	 * Filter the post types array which have rating disabled.
@@ -2918,7 +2918,7 @@  discard block
 block discarded – undo
2918 2918
 	 *
2919 2919
 	 * @param array $post_types Array of post types which have rating starts disabled.
2920 2920
 	 */
2921
-	return apply_filters( 'geodir_rating_disabled_post_types', $post_types );
2921
+	return apply_filters('geodir_rating_disabled_post_types', $post_types);
2922 2922
 }
2923 2923
 
2924 2924
 /**
@@ -2930,30 +2930,30 @@  discard block
 block discarded – undo
2930 2930
  * @param bool $taxonomy Whether $post_type is taxonomy or not.
2931 2931
  * @return bool True if review star disabled, otherwise false.
2932 2932
  */ 
2933
-function geodir_cpt_has_rating_disabled( $post_type = '', $taxonomy = false ) {
2933
+function geodir_cpt_has_rating_disabled($post_type = '', $taxonomy = false) {
2934 2934
 	$post_types = geodir_rating_disabled_post_types();
2935 2935
 	
2936
-	if ( empty( $post_types ) ) {
2936
+	if (empty($post_types)) {
2937 2937
 		return false;
2938 2938
 	}
2939 2939
 	
2940
-	if ( is_int( $post_type ) ) {
2941
-		$post_type = get_post_type( $post_type );
2940
+	if (is_int($post_type)) {
2941
+		$post_type = get_post_type($post_type);
2942 2942
 	}
2943 2943
 	
2944
-	if ( $taxonomy && !empty( $post_types ) ) {
2944
+	if ($taxonomy && !empty($post_types)) {
2945 2945
 		$posttypes = array();
2946 2946
 		
2947
-		foreach ( $post_types as $posttype ) {
2948
-			$posttypes[] = $posttype . 'category';
2949
-			$posttypes[] = $posttype . '_tags';
2947
+		foreach ($post_types as $posttype) {
2948
+			$posttypes[] = $posttype.'category';
2949
+			$posttypes[] = $posttype.'_tags';
2950 2950
 		}
2951 2951
 		
2952 2952
 		$post_types = $posttypes;
2953 2953
 	}
2954 2954
 
2955 2955
 	$return = false;
2956
-	if ( $post_type != '' && !empty( $post_types ) && in_array( $post_type, $post_types ) ) {
2956
+	if ($post_type != '' && !empty($post_types) && in_array($post_type, $post_types)) {
2957 2957
 		$return = true;
2958 2958
 	}
2959 2959
 
@@ -2968,7 +2968,7 @@  discard block
 block discarded – undo
2968 2968
  * @return bool True if Yoast SEO disabled on GD pages.
2969 2969
  */
2970 2970
 function geodir_disable_yoast_seo_metas() {
2971
-    return (bool)get_option( 'geodir_disable_yoast_meta' );
2971
+    return (bool) get_option('geodir_disable_yoast_meta');
2972 2972
 }
2973 2973
 
2974 2974
 /**
@@ -2979,30 +2979,30 @@  discard block
 block discarded – undo
2979 2979
  * @param int $post_id The post ID.
2980 2980
  * @return bool True if allowed.
2981 2981
  */
2982
-function geodir_wpml_allowed_to_duplicate( $post_id ) {
2982
+function geodir_wpml_allowed_to_duplicate($post_id) {
2983 2983
     $allowed = false;
2984 2984
     
2985
-    if ( !geodir_is_wpml() || empty( $post_id ) ) {
2985
+    if (!geodir_is_wpml() || empty($post_id)) {
2986 2986
         return $allowed;
2987 2987
     }
2988 2988
     
2989
-    $user_id = (int)get_current_user_id();
2989
+    $user_id = (int) get_current_user_id();
2990 2990
     
2991
-    if ( empty( $user_id ) ) {
2991
+    if (empty($user_id)) {
2992 2992
         return $allowed;
2993 2993
     }
2994 2994
     
2995
-    $post_type = get_post_type( $post_id );
2996
-    if ( !geodir_wpml_is_post_type_translated( $post_type ) || get_post_meta( $post_id, '_icl_lang_duplicate_of', true ) ) {
2995
+    $post_type = get_post_type($post_id);
2996
+    if (!geodir_wpml_is_post_type_translated($post_type) || get_post_meta($post_id, '_icl_lang_duplicate_of', true)) {
2997 2997
         return $allowed;
2998 2998
     }
2999 2999
     
3000
-    if ( geodir_listing_belong_to_current_user( $post_id ) ) {
3000
+    if (geodir_listing_belong_to_current_user($post_id)) {
3001 3001
         $allowed = true;
3002 3002
     }
3003 3003
     
3004
-    $disable_cpts = get_option( 'geodir_wpml_disable_duplicate' );
3005
-    if ( $allowed && !empty( $disable_cpts ) && in_array( $post_type, $disable_cpts ) ) {
3004
+    $disable_cpts = get_option('geodir_wpml_disable_duplicate');
3005
+    if ($allowed && !empty($disable_cpts) && in_array($post_type, $disable_cpts)) {
3006 3006
         $allowed = false;
3007 3007
     }
3008 3008
     
@@ -3012,7 +3012,7 @@  discard block
 block discarded – undo
3012 3012
      * @param bool $allowed True if allowed.
3013 3013
      * @param int $post_id The post ID.
3014 3014
      */
3015
-    return apply_filters( 'geodir_wpml_allowed_to_duplicate', $allowed, $post_id );
3015
+    return apply_filters('geodir_wpml_allowed_to_duplicate', $allowed, $post_id);
3016 3016
 }
3017 3017
 
3018 3018
 /**
@@ -3027,61 +3027,61 @@  discard block
 block discarded – undo
3027 3027
  * @param string $content_html The output html of the geodir_edit_post_link() function.
3028 3028
  * @return string Filtered html of the geodir_edit_post_link() function.
3029 3029
  */
3030
-function geodir_wpml_frontend_duplicate_listing( $content_html ) {
3030
+function geodir_wpml_frontend_duplicate_listing($content_html) {
3031 3031
     global $post, $preview, $sitepress;
3032 3032
     
3033
-    if ( !empty( $post->ID ) && !$preview && geodir_is_page( 'detail' ) && geodir_wpml_allowed_to_duplicate( $post->ID ) ) {
3033
+    if (!empty($post->ID) && !$preview && geodir_is_page('detail') && geodir_wpml_allowed_to_duplicate($post->ID)) {
3034 3034
         $post_id = $post->ID;
3035
-        $element_type = 'post_' . get_post_type( $post_id );
3036
-        $original_post_id = $sitepress->get_original_element_id( $post_id, $element_type );
3035
+        $element_type = 'post_'.get_post_type($post_id);
3036
+        $original_post_id = $sitepress->get_original_element_id($post_id, $element_type);
3037 3037
         
3038
-        if ( $original_post_id == $post_id ) {
3038
+        if ($original_post_id == $post_id) {
3039 3039
             $wpml_languages = $sitepress->get_active_languages();
3040
-            $post_language = $sitepress->get_language_for_element( $post_id, $element_type );
3040
+            $post_language = $sitepress->get_language_for_element($post_id, $element_type);
3041 3041
             
3042
-            if ( !empty( $wpml_languages ) && isset( $wpml_languages[ $post_language ] ) ) {
3043
-                unset( $wpml_languages[ $post_language ] );
3042
+            if (!empty($wpml_languages) && isset($wpml_languages[$post_language])) {
3043
+                unset($wpml_languages[$post_language]);
3044 3044
             }
3045 3045
             
3046
-            if ( !empty( $wpml_languages ) ) {
3047
-                $trid  = $sitepress->get_element_trid( $post_id, $element_type );
3048
-                $element_translations = $sitepress->get_element_translations( $trid, $element_type );
3049
-                $duplicates = $sitepress->get_duplicates( $post_id );
3046
+            if (!empty($wpml_languages)) {
3047
+                $trid = $sitepress->get_element_trid($post_id, $element_type);
3048
+                $element_translations = $sitepress->get_element_translations($trid, $element_type);
3049
+                $duplicates = $sitepress->get_duplicates($post_id);
3050 3050
                 
3051
-                $wpml_content = '<div class="geodir-company_info gd-detail-duplicate"><h3 class="widget-title">' . __( 'Translate Listing', 'geodirectory' ) . '</h3>';
3051
+                $wpml_content = '<div class="geodir-company_info gd-detail-duplicate"><h3 class="widget-title">'.__('Translate Listing', 'geodirectory').'</h3>';
3052 3052
                 $wpml_content .= '<table class="gd-duplicate-table" style="width:100%;margin:0"><tbody>';
3053
-                $wpml_content .= '<tr style="border-bottom:solid 1px #efefef"><th style="padding:0 2px 2px 2px">' . __( 'Language', 'geodirectory' ) . '</th><th style="width:25px;"></th><th style="width:5em;text-align:center">' . __( 'Translate', 'geodirectory' ) . '</th></tr>';
3053
+                $wpml_content .= '<tr style="border-bottom:solid 1px #efefef"><th style="padding:0 2px 2px 2px">'.__('Language', 'geodirectory').'</th><th style="width:25px;"></th><th style="width:5em;text-align:center">'.__('Translate', 'geodirectory').'</th></tr>';
3054 3054
                 
3055 3055
                 $needs_translation = false;
3056 3056
                 
3057
-                foreach ( $wpml_languages as $lang_code => $lang ) {
3057
+                foreach ($wpml_languages as $lang_code => $lang) {
3058 3058
                     $duplicates_text = '';
3059 3059
                     $translated = false;
3060 3060
                     
3061
-                    if ( !empty( $element_translations ) && isset( $element_translations[$lang_code] ) ) {
3061
+                    if (!empty($element_translations) && isset($element_translations[$lang_code])) {
3062 3062
                         $translated = true;
3063 3063
                         
3064
-                        if ( !empty( $duplicates ) && isset( $duplicates[$lang_code] ) ) {
3065
-                            $duplicates_text = ' ' . __( '(duplicate)', 'geodirectory' );
3064
+                        if (!empty($duplicates) && isset($duplicates[$lang_code])) {
3065
+                            $duplicates_text = ' '.__('(duplicate)', 'geodirectory');
3066 3066
                         }
3067 3067
                     } else {
3068 3068
                         $needs_translation = true;
3069 3069
                     }
3070 3070
                     
3071
-                    $wpml_content .= '<tr><td style="padding:4px">' . $lang['english_name'] . $duplicates_text . '</td><td>&nbsp;</td><td style="text-align:center;">';
3071
+                    $wpml_content .= '<tr><td style="padding:4px">'.$lang['english_name'].$duplicates_text.'</td><td>&nbsp;</td><td style="text-align:center;">';
3072 3072
                     
3073
-                    if ( $translated ) {
3073
+                    if ($translated) {
3074 3074
                         $wpml_content .= '<i class="fa fa-check" style="color:orange"></i>';
3075 3075
                     } else {
3076
-                        $wpml_content .= '<input name="gd_icl_dup[]" value="' . $lang_code . '" title="' . esc_attr__( 'Create duplicate', 'geodirectory' ) . '" type="checkbox">';
3076
+                        $wpml_content .= '<input name="gd_icl_dup[]" value="'.$lang_code.'" title="'.esc_attr__('Create duplicate', 'geodirectory').'" type="checkbox">';
3077 3077
                     }
3078 3078
                     
3079 3079
                     $wpml_content .= '</td></tr>';
3080 3080
                 }
3081 3081
                 
3082
-                if ( $needs_translation ) {
3083
-                    $nonce = wp_create_nonce( 'geodir_duplicate_nonce' );
3084
-                    $wpml_content .= '<tr><td>&nbsp;</td><td style="vertical-align:middle;padding-top:13px"><i style="display:none" class="fa fa-spin fa-refresh"></i></td><td style="padding:15px 3px 3px 3px;text-align:right"><button data-nonce="' . esc_attr( $nonce ) . '" data-post-id="' . $post_id . '" id="gd_make_duplicates" class="button-secondary">' . __( 'Duplicate', 'geodirectory' ) . '</button></td></tr>';
3082
+                if ($needs_translation) {
3083
+                    $nonce = wp_create_nonce('geodir_duplicate_nonce');
3084
+                    $wpml_content .= '<tr><td>&nbsp;</td><td style="vertical-align:middle;padding-top:13px"><i style="display:none" class="fa fa-spin fa-refresh"></i></td><td style="padding:15px 3px 3px 3px;text-align:right"><button data-nonce="'.esc_attr($nonce).'" data-post-id="'.$post_id.'" id="gd_make_duplicates" class="button-secondary">'.__('Duplicate', 'geodirectory').'</button></td></tr>';
3085 3085
                 }
3086 3086
                 
3087 3087
                 $wpml_content .= '</tbody></table>';
@@ -3103,12 +3103,12 @@  discard block
 block discarded – undo
3103 3103
  * @param array $settings GD design settings array.
3104 3104
  * @return array Filtered GD design settings array..
3105 3105
  */
3106
-function geodir_wpml_duplicate_settings( $settings = array() ) {
3106
+function geodir_wpml_duplicate_settings($settings = array()) {
3107 3107
     $new_settings = array();
3108 3108
     
3109
-    foreach ( $settings as $key => $setting ) {
3109
+    foreach ($settings as $key => $setting) {
3110 3110
         
3111
-        if ( isset( $setting['type'] ) && $setting['type'] == 'sectionend' && $setting['id'] == 'detail_page_settings' ) {
3111
+        if (isset($setting['type']) && $setting['type'] == 'sectionend' && $setting['id'] == 'detail_page_settings') {
3112 3112
             $new_settings[] = array(
3113 3113
                 'name' => __('Disable WPML duplicate translation', 'geodirectory'),
3114 3114
                 'desc' => __('Select post types to disable front end WPML duplicate translation. For selected post types the WPML duplicate option will be disabled from listing detail page sidebar.', 'geodirectory'),
@@ -3136,12 +3136,12 @@  discard block
 block discarded – undo
3136 3136
  * @param string $taxonomy name/slug of a taxonomy.
3137 3137
  * @return bool true if the taxonomy is currently set to being translatable in WPML.
3138 3138
  */
3139
-function geodir_wpml_is_taxonomy_translated( $taxonomy ) {
3140
-    if ( empty( $taxonomy ) || !geodir_is_wpml() || !function_exists( 'is_taxonomy_translated' ) ) {
3139
+function geodir_wpml_is_taxonomy_translated($taxonomy) {
3140
+    if (empty($taxonomy) || !geodir_is_wpml() || !function_exists('is_taxonomy_translated')) {
3141 3141
         return false;
3142 3142
     }
3143 3143
     
3144
-    if ( is_taxonomy_translated( $taxonomy ) ) {
3144
+    if (is_taxonomy_translated($taxonomy)) {
3145 3145
         return true;
3146 3146
     }
3147 3147
     
@@ -3156,12 +3156,12 @@  discard block
 block discarded – undo
3156 3156
  * @param string $post_type name/slug of a post_type.
3157 3157
  * @return bool true if the post_type is currently set to being translatable in WPML.
3158 3158
  */
3159
-function geodir_wpml_is_post_type_translated( $post_type ) {
3160
-    if ( empty( $post_type ) || !geodir_is_wpml() || !function_exists( 'is_post_type_translated' ) ) {
3159
+function geodir_wpml_is_post_type_translated($post_type) {
3160
+    if (empty($post_type) || !geodir_is_wpml() || !function_exists('is_post_type_translated')) {
3161 3161
         return false;
3162 3162
     }
3163 3163
     
3164
-    if ( is_post_type_translated( $post_type ) ) {
3164
+    if (is_post_type_translated($post_type)) {
3165 3165
         return true;
3166 3166
     }
3167 3167
     
Please login to merge, or discard this patch.
geodirectory-functions/taxonomy_functions.php 2 patches
Indentation   +1252 added lines, -1252 removed lines patch added patch discarded remove patch
@@ -33,265 +33,265 @@  discard block
 block discarded – undo
33 33
  */
34 34
 function geodir_add_nav_menu_items()
35 35
 {
36
-    $items = '';
37
-    // apply filter to add more navigations // -Filter-Location-Manager
38
-
39
-    if (get_option('geodir_show_listing_nav')) {
40
-
41
-        $menu_class = '';
42
-        if (geodir_is_page('listing'))
43
-            $menu_class = 'current-menu-item';
44
-
45
-
46
-        //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION
47
-        $post_types = geodir_get_posttypes('object');
48
-        $show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
49
-        if (!empty($post_types)) {
50
-            foreach ($post_types as $post_type => $args) {
51
-                if (!empty($show_post_type_main_nav)) {
52
-                    if (in_array($post_type, $show_post_type_main_nav)) {
53
-                        if (get_post_type_archive_link($post_type)) {
54
-                            $menu_class = '';
55
-                            if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
56
-                                $menu_class = 'current-menu-item';
57
-                            /**
58
-                             * Filter the menu li class.
59
-                             *
60
-                             * @since 1.0.0
61
-                             * @param string $menu_class The menu HTML class.
62
-                             */
63
-                            $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
64
-                            /**
65
-                             * Filter the menu a class.
66
-                             *
67
-                             * @since 1.0.0
68
-                             */
69
-                            $a_class = apply_filters('geodir_menu_a_class', '');
70
-                            $items .= '<li class="' . $li_class . '">
36
+	$items = '';
37
+	// apply filter to add more navigations // -Filter-Location-Manager
38
+
39
+	if (get_option('geodir_show_listing_nav')) {
40
+
41
+		$menu_class = '';
42
+		if (geodir_is_page('listing'))
43
+			$menu_class = 'current-menu-item';
44
+
45
+
46
+		//SHOW LISTING OF POST TYPE IN MAIN NAVIGATION
47
+		$post_types = geodir_get_posttypes('object');
48
+		$show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
49
+		if (!empty($post_types)) {
50
+			foreach ($post_types as $post_type => $args) {
51
+				if (!empty($show_post_type_main_nav)) {
52
+					if (in_array($post_type, $show_post_type_main_nav)) {
53
+						if (get_post_type_archive_link($post_type)) {
54
+							$menu_class = '';
55
+							if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
56
+								$menu_class = 'current-menu-item';
57
+							/**
58
+							 * Filter the menu li class.
59
+							 *
60
+							 * @since 1.0.0
61
+							 * @param string $menu_class The menu HTML class.
62
+							 */
63
+							$li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
64
+							/**
65
+							 * Filter the menu a class.
66
+							 *
67
+							 * @since 1.0.0
68
+							 */
69
+							$a_class = apply_filters('geodir_menu_a_class', '');
70
+							$items .= '<li class="' . $li_class . '">
71 71
 									<a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '">
72 72
 										' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . '
73 73
 									</a>
74 74
 								</li>';
75
-                        }
76
-                    }
77
-                }
78
-            }
79
-        }
80
-        //END LISTING OF POST TYPE IN MAIN NAVIGATION
81
-
82
-        $view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
83
-        $is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false;
84
-        if ($is_listing_sub_meny_exists) {
85
-            /**
86
-             * Filter the menu li class.
87
-             *
88
-             * @since 1.0.0
89
-             * @param string $menu_class The menu HTML class.
90
-             */
91
-            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
92
-            /**
93
-             * Filter the sub menu li class.
94
-             *
95
-             * @since 1.0.0
96
-             * @param string $menu_class The menu HTML class.
97
-             */
98
-            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
99
-            /**
100
-             * Filter the sub menu ul class.
101
-             *
102
-             * @since 1.0.0
103
-             */
104
-            $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
105
-            /**
106
-             * Filter the menu a class.
107
-             *
108
-             * @since 1.0.0
109
-             */
110
-            $a_class = apply_filters('geodir_menu_a_class', '');
111
-            /**
112
-             * Filter the sub menu a class.
113
-             *
114
-             * @since 1.0.0
115
-             */
116
-            $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
117
-            $items .= '<li class="' . $li_class . '">
75
+						}
76
+					}
77
+				}
78
+			}
79
+		}
80
+		//END LISTING OF POST TYPE IN MAIN NAVIGATION
81
+
82
+		$view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
83
+		$is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false;
84
+		if ($is_listing_sub_meny_exists) {
85
+			/**
86
+			 * Filter the menu li class.
87
+			 *
88
+			 * @since 1.0.0
89
+			 * @param string $menu_class The menu HTML class.
90
+			 */
91
+			$li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
92
+			/**
93
+			 * Filter the sub menu li class.
94
+			 *
95
+			 * @since 1.0.0
96
+			 * @param string $menu_class The menu HTML class.
97
+			 */
98
+			$sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
99
+			/**
100
+			 * Filter the sub menu ul class.
101
+			 *
102
+			 * @since 1.0.0
103
+			 */
104
+			$sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
105
+			/**
106
+			 * Filter the menu a class.
107
+			 *
108
+			 * @since 1.0.0
109
+			 */
110
+			$a_class = apply_filters('geodir_menu_a_class', '');
111
+			/**
112
+			 * Filter the sub menu a class.
113
+			 *
114
+			 * @since 1.0.0
115
+			 */
116
+			$sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
117
+			$items .= '<li class="' . $li_class . '">
118 118
 					<a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
119 119
 					<ul class="' . $sub_ul_class . '">';
120
-            $post_types = geodir_get_posttypes('object');
120
+			$post_types = geodir_get_posttypes('object');
121 121
 
122
-            $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
122
+			$show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
123 123
 
124
-            if (!empty($post_types)) {
125
-                global $geodir_add_location_url;
126
-                $geodir_add_location_url = true;
127
-                foreach ($post_types as $post_type => $args) {
128
-                    if (!empty($show_listing_post_types)) {
129
-                        if (in_array($post_type, $show_listing_post_types)) {
130
-                            if (get_post_type_archive_link($post_type)) {
124
+			if (!empty($post_types)) {
125
+				global $geodir_add_location_url;
126
+				$geodir_add_location_url = true;
127
+				foreach ($post_types as $post_type => $args) {
128
+					if (!empty($show_listing_post_types)) {
129
+						if (in_array($post_type, $show_listing_post_types)) {
130
+							if (get_post_type_archive_link($post_type)) {
131 131
 
132
-                                $menu_class = '';
133
-                                if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
134
-                                    $menu_class = 'current-menu-item';
132
+								$menu_class = '';
133
+								if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
134
+									$menu_class = 'current-menu-item';
135 135
 
136
-                                $items .= '<li class="' . $sub_li_class . '">
136
+								$items .= '<li class="' . $sub_li_class . '">
137 137
 														<a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '">
138 138
 															' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . '
139 139
 														</a>
140 140
 													</li>';
141
-                            }
142
-                        }
143
-                    }
144
-                }
145
-                $geodir_add_location_url = NULL;
146
-            }
141
+							}
142
+						}
143
+					}
144
+				}
145
+				$geodir_add_location_url = NULL;
146
+			}
147 147
 
148
-            $items .= '	</ul> ';
149
-            /**
150
-             * Filter called after the sub menu closing ul tag for dynamic added menu items.
151
-             *
152
-             * @since 1.5.9
153
-             */
154
-            $items .= apply_filters('geodir_menu_after_sub_ul','');
155
-            $items .= '</li>';
156
-        }
157
-    }
158
-
159
-    if (get_option('geodir_show_addlisting_nav')) {
160
-
161
-        $menu_class = '';
162
-        if (geodir_is_page('add-listing'))
163
-            $menu_class = 'current-menu-item';
164
-
165
-        //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
166
-        $post_types = geodir_get_posttypes('object');
167
-        $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
168
-        $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
169
-
170
-        if (!empty($post_types)) {
171
-            foreach ($post_types as $post_type => $args) {
172
-                if (!empty($geodir_allow_posttype_frontend)) {
173
-                    if (in_array($post_type, $geodir_allow_posttype_frontend)) {
174
-                        if (!empty($show_add_listing_post_types_main_nav)) {
175
-                            if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
176
-                                if (geodir_get_addlisting_link($post_type)) {
177
-
178
-                                    $menu_class = '';
179
-                                    if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
180
-                                        $menu_class = 'current-menu-item';
181
-                                    /**
182
-                                     * Filter the menu li class.
183
-                                     *
184
-                                     * @since 1.0.0
185
-                                     * @param string $menu_class The menu HTML class.
186
-                                     */
187
-                                    $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
188
-                                    /**
189
-                                     * Filter the menu a class.
190
-                                     *
191
-                                     * @since 1.0.0
192
-                                     */
193
-                                    $a_class = apply_filters('geodir_menu_a_class', '');
194
-                                    $cpt_name = __($args->labels->singular_name, 'geodirectory');
195
-                                    $items .= '<li class="' . $li_class . '">
148
+			$items .= '	</ul> ';
149
+			/**
150
+			 * Filter called after the sub menu closing ul tag for dynamic added menu items.
151
+			 *
152
+			 * @since 1.5.9
153
+			 */
154
+			$items .= apply_filters('geodir_menu_after_sub_ul','');
155
+			$items .= '</li>';
156
+		}
157
+	}
158
+
159
+	if (get_option('geodir_show_addlisting_nav')) {
160
+
161
+		$menu_class = '';
162
+		if (geodir_is_page('add-listing'))
163
+			$menu_class = 'current-menu-item';
164
+
165
+		//SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
166
+		$post_types = geodir_get_posttypes('object');
167
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
168
+		$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
169
+
170
+		if (!empty($post_types)) {
171
+			foreach ($post_types as $post_type => $args) {
172
+				if (!empty($geodir_allow_posttype_frontend)) {
173
+					if (in_array($post_type, $geodir_allow_posttype_frontend)) {
174
+						if (!empty($show_add_listing_post_types_main_nav)) {
175
+							if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
176
+								if (geodir_get_addlisting_link($post_type)) {
177
+
178
+									$menu_class = '';
179
+									if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
180
+										$menu_class = 'current-menu-item';
181
+									/**
182
+									 * Filter the menu li class.
183
+									 *
184
+									 * @since 1.0.0
185
+									 * @param string $menu_class The menu HTML class.
186
+									 */
187
+									$li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
188
+									/**
189
+									 * Filter the menu a class.
190
+									 *
191
+									 * @since 1.0.0
192
+									 */
193
+									$a_class = apply_filters('geodir_menu_a_class', '');
194
+									$cpt_name = __($args->labels->singular_name, 'geodirectory');
195
+									$items .= '<li class="' . $li_class . '">
196 196
 											<a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '">
197 197
 												' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
198 198
 											</a>
199 199
 										</li>';
200
-                                }
201
-                            }
202
-                        }
203
-                    }
204
-                }
205
-            }
206
-        }
207
-        //END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
208
-    }
209
-
210
-    $view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
211
-    $is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false;
212
-    if ($is_add_listing_sub_meny_exists) {
213
-
214
-        if (get_option('geodir_show_addlisting_nav')) {
215
-            /**
216
-             * Filter the menu li class.
217
-             *
218
-             * @since 1.0.0
219
-             * @param string $menu_class The menu HTML class.
220
-             */
221
-            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
222
-            /**
223
-             * Filter the sub menu li class.
224
-             *
225
-             * @since 1.0.0
226
-             * @param string $menu_class The menu HTML class.
227
-             */
228
-            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
229
-            /**
230
-             * Filter the sub menu ul class.
231
-             *
232
-             * @since 1.0.0
233
-             */
234
-            $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
235
-            /**
236
-             * Filter the menu a class.
237
-             *
238
-             * @since 1.0.0
239
-             */
240
-            $a_class = apply_filters('geodir_menu_a_class', '');
241
-            /**
242
-             * Filter the sub menu a class.
243
-             *
244
-             * @since 1.0.0
245
-             */
246
-            $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
247
-            $items .= '<li  class="' . $li_class . '">
200
+								}
201
+							}
202
+						}
203
+					}
204
+				}
205
+			}
206
+		}
207
+		//END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
208
+	}
209
+
210
+	$view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
211
+	$is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false;
212
+	if ($is_add_listing_sub_meny_exists) {
213
+
214
+		if (get_option('geodir_show_addlisting_nav')) {
215
+			/**
216
+			 * Filter the menu li class.
217
+			 *
218
+			 * @since 1.0.0
219
+			 * @param string $menu_class The menu HTML class.
220
+			 */
221
+			$li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
222
+			/**
223
+			 * Filter the sub menu li class.
224
+			 *
225
+			 * @since 1.0.0
226
+			 * @param string $menu_class The menu HTML class.
227
+			 */
228
+			$sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
229
+			/**
230
+			 * Filter the sub menu ul class.
231
+			 *
232
+			 * @since 1.0.0
233
+			 */
234
+			$sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
235
+			/**
236
+			 * Filter the menu a class.
237
+			 *
238
+			 * @since 1.0.0
239
+			 */
240
+			$a_class = apply_filters('geodir_menu_a_class', '');
241
+			/**
242
+			 * Filter the sub menu a class.
243
+			 *
244
+			 * @since 1.0.0
245
+			 */
246
+			$sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
247
+			$items .= '<li  class="' . $li_class . '">
248 248
 					<a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
249 249
 					<ul class="' . $sub_ul_class . '">';
250 250
 
251
-            $post_types = geodir_get_posttypes('object');
252
-
253
-            $show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
254
-
255
-            if (!empty($post_types)) {
256
-                foreach ($post_types as $post_type => $args) {
257
-                    if (!empty($geodir_allow_posttype_frontend)) {
258
-                        if (in_array($post_type, $geodir_allow_posttype_frontend)) {
259
-                            if (!empty($show_add_listing_post_types)) {
260
-                                if (in_array($post_type, $show_add_listing_post_types)) {
261
-                                    if (geodir_get_addlisting_link($post_type)) {
262
-
263
-                                        $menu_class = '';
264
-                                        if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
265
-                                            $menu_class = 'current-menu-item';
266
-                                        /**
267
-                                         * Filter the menu li class.
268
-                                         *
269
-                                         * @since 1.0.0
270
-                                         * @param string $menu_class The menu HTML class.
271
-                                         */
272
-                                        $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
273
-                                        $cpt_name = __($args->labels->singular_name, 'geodirectory');
274
-                                        $items .= '<li class="' . $sub_li_class . '">
251
+			$post_types = geodir_get_posttypes('object');
252
+
253
+			$show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
254
+
255
+			if (!empty($post_types)) {
256
+				foreach ($post_types as $post_type => $args) {
257
+					if (!empty($geodir_allow_posttype_frontend)) {
258
+						if (in_array($post_type, $geodir_allow_posttype_frontend)) {
259
+							if (!empty($show_add_listing_post_types)) {
260
+								if (in_array($post_type, $show_add_listing_post_types)) {
261
+									if (geodir_get_addlisting_link($post_type)) {
262
+
263
+										$menu_class = '';
264
+										if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
265
+											$menu_class = 'current-menu-item';
266
+										/**
267
+										 * Filter the menu li class.
268
+										 *
269
+										 * @since 1.0.0
270
+										 * @param string $menu_class The menu HTML class.
271
+										 */
272
+										$li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
273
+										$cpt_name = __($args->labels->singular_name, 'geodirectory');
274
+										$items .= '<li class="' . $sub_li_class . '">
275 275
 														<a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '">
276 276
 															' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
277 277
 														</a>
278 278
 													</li>';
279
-                                    }
280
-                                }
281
-                            }
282
-                        }
283
-                    }
284
-                }
285
-            }
279
+									}
280
+								}
281
+							}
282
+						}
283
+					}
284
+				}
285
+			}
286 286
 
287
-            $items .= '	</ul> ';
288
-            $items .= apply_filters('geodir_menu_after_sub_ul','');
289
-            $items .= '</li>';
287
+			$items .= '	</ul> ';
288
+			$items .= apply_filters('geodir_menu_after_sub_ul','');
289
+			$items .= '</li>';
290 290
 
291
-        }
292
-    }
293
-    // apply filter to add more navigations // -Filter-Location-Manager
294
-    return $items;
291
+		}
292
+	}
293
+	// apply filter to add more navigations // -Filter-Location-Manager
294
+	return $items;
295 295
 }
296 296
 
297 297
 
@@ -309,20 +309,20 @@  discard block
 block discarded – undo
309 309
  */
310 310
 function geodir_pagemenu_items($menu, $args)
311 311
 {
312
-    $locations = get_nav_menu_locations();
313
-    $geodir_theme_location = get_option('geodir_theme_location_nav');
314
-    $geodir_theme_location_nav = array();
315
-    if (empty($locations) && empty($geodir_theme_location)) {
316
-        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
317
-        $geodir_theme_location_nav[] = $args['theme_location'];
318
-        update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
319
-    }
320
-    //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet.
312
+	$locations = get_nav_menu_locations();
313
+	$geodir_theme_location = get_option('geodir_theme_location_nav');
314
+	$geodir_theme_location_nav = array();
315
+	if (empty($locations) && empty($geodir_theme_location)) {
316
+		$menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
317
+		$geodir_theme_location_nav[] = $args['theme_location'];
318
+		update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
319
+	}
320
+	//else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet.
321 321
 //		$menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
322
-    else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location))
323
-        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
322
+	else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location))
323
+		$menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
324 324
 
325
-    return $menu;
325
+	return $menu;
326 326
 
327 327
 }
328 328
 
@@ -342,18 +342,18 @@  discard block
 block discarded – undo
342 342
 function geodir_menu_items($items, $args)
343 343
 {
344 344
 
345
-    $location = $args->theme_location;
345
+	$location = $args->theme_location;
346 346
 
347
-    $geodir_theme_location = get_option('geodir_theme_location_nav');
347
+	$geodir_theme_location = get_option('geodir_theme_location_nav');
348 348
 
349
-    if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
349
+	if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
350 350
 
351
-        $items = $items . geodir_add_nav_menu_items();
352
-        return $items;
351
+		$items = $items . geodir_add_nav_menu_items();
352
+		return $items;
353 353
 
354
-    } else {
355
-        return $items;
356
-    }
354
+	} else {
355
+		return $items;
356
+	}
357 357
 }
358 358
 
359 359
 /**
@@ -368,25 +368,25 @@  discard block
 block discarded – undo
368 368
  */
369 369
 function geodir_get_category_all_array()
370 370
 {
371
-    global $wpdb;
372
-    $return_array = array();
373
-
374
-    $taxonomies = geodir_get_taxonomies();
375
-    $taxonomies = implode("','", $taxonomies);
376
-    $taxonomies = "'" . $taxonomies . "'";
377
-
378
-    $pn_categories = $wpdb->get_results(
379
-        $wpdb->prepare(
380
-            "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy,  $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name",
381
-            array($wpdb->terms . term_id)
382
-        )
383
-    );
384
-
385
-    foreach ($pn_categories as $pn_categories_obj) {
386
-        $return_array[] = array("id" => $pn_categories_obj->cat_ID,
387
-            "title" => $pn_categories_obj->name,);
388
-    }
389
-    return $return_array;
371
+	global $wpdb;
372
+	$return_array = array();
373
+
374
+	$taxonomies = geodir_get_taxonomies();
375
+	$taxonomies = implode("','", $taxonomies);
376
+	$taxonomies = "'" . $taxonomies . "'";
377
+
378
+	$pn_categories = $wpdb->get_results(
379
+		$wpdb->prepare(
380
+			"SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy,  $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name",
381
+			array($wpdb->terms . term_id)
382
+		)
383
+	);
384
+
385
+	foreach ($pn_categories as $pn_categories_obj) {
386
+		$return_array[] = array("id" => $pn_categories_obj->cat_ID,
387
+			"title" => $pn_categories_obj->name,);
388
+	}
389
+	return $return_array;
390 390
 }
391 391
 
392 392
 
@@ -402,49 +402,49 @@  discard block
 block discarded – undo
402 402
  * @return string The post type.
403 403
  */
404 404
 function geodir_get_current_posttype() {
405
-    global $wp_query, $post, $geodir_post_type;
405
+	global $wp_query, $post, $geodir_post_type;
406 406
 
407
-    $geodir_post_type = get_query_var('post_type');
407
+	$geodir_post_type = get_query_var('post_type');
408 408
 
409
-    if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
410
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
411
-            $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
412
-        elseif (isset($_REQUEST['listing_type']))
413
-            $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
414
-    }
409
+	if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
410
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
411
+			$geodir_post_type = get_post_type((int)$_REQUEST['pid']);
412
+		elseif (isset($_REQUEST['listing_type']))
413
+			$geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
414
+	}
415 415
 
416
-    if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
417
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
416
+	if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
417
+		$geodir_post_type = sanitize_text_field($_REQUEST['stype']);
418 418
 
419
-    if (is_tax())
420
-        $geodir_post_type = geodir_get_taxonomy_posttype();
419
+	if (is_tax())
420
+		$geodir_post_type = geodir_get_taxonomy_posttype();
421 421
 
422
-    // Retrive post type for map marker html ajax request on preview page.
423
-    if (empty($geodir_post_type) && defined('DOING_AJAX') && !empty($post)) {
424
-        if (!empty($post->post_type)) {
425
-            $geodir_post_type = $post->post_type;
426
-        } else if (!empty($post->listing_type)) {
427
-            $geodir_post_type = $post->listing_type;
428
-        }
429
-    }
422
+	// Retrive post type for map marker html ajax request on preview page.
423
+	if (empty($geodir_post_type) && defined('DOING_AJAX') && !empty($post)) {
424
+		if (!empty($post->post_type)) {
425
+			$geodir_post_type = $post->post_type;
426
+		} else if (!empty($post->listing_type)) {
427
+			$geodir_post_type = $post->listing_type;
428
+		}
429
+	}
430 430
 
431
-    $all_postypes = geodir_get_posttypes();
432
-    $all_postypes = stripslashes_deep($all_postypes);
431
+	$all_postypes = geodir_get_posttypes();
432
+	$all_postypes = stripslashes_deep($all_postypes);
433 433
 
434
-    if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
435
-        $geodir_post_type = '';
434
+	if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
435
+		$geodir_post_type = '';
436 436
 
437
-    if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
438
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
439
-    }
437
+	if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
438
+		$geodir_post_type = sanitize_text_field($_REQUEST['stype']);
439
+	}
440 440
 
441 441
 
442
-    /**
443
-     * Filter the default CPT return.
444
-     *
445
-     * @since 1.6.9
446
-     */
447
-    return apply_filters('geodir_get_current_posttype',$geodir_post_type);
442
+	/**
443
+	 * Filter the default CPT return.
444
+	 *
445
+	 * @since 1.6.9
446
+	 */
447
+	return apply_filters('geodir_get_current_posttype',$geodir_post_type);
448 448
 }
449 449
 
450 450
 /**
@@ -458,22 +458,22 @@  discard block
 block discarded – undo
458 458
  */
459 459
 function geodir_get_default_posttype()
460 460
 {
461
-    $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
462
-
463
-    $stype = false;
464
-    foreach ( $post_types as $post_type => $info ) {
465
-        global $wpdb;
466
-        $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
467
-        if ( $has_posts ) {
468
-            $stype = $post_type; break;
469
-        }
470
-    }
471
-
472
-    if(!$stype){
473
-        $stype = 'gd_place';
474
-    }
475
-
476
-    return $stype;
461
+	$post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
462
+
463
+	$stype = false;
464
+	foreach ( $post_types as $post_type => $info ) {
465
+		global $wpdb;
466
+		$has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
467
+		if ( $has_posts ) {
468
+			$stype = $post_type; break;
469
+		}
470
+	}
471
+
472
+	if(!$stype){
473
+		$stype = 'gd_place';
474
+	}
475
+
476
+	return $stype;
477 477
 }
478 478
 
479 479
 /**
@@ -487,21 +487,21 @@  discard block
 block discarded – undo
487 487
  */
488 488
 function geodir_get_posttypes($output = 'names')
489 489
 {
490
-    $post_types = array();
491
-    $post_types = get_option('geodir_post_types');
492
-    $post_types = stripslashes_deep($post_types);
493
-    if (!empty($post_types)) {
494
-        switch ($output):
495
-            case 'object':
496
-            case 'Object':
497
-                $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
498
-                break;
499
-            case 'array':
500
-            case 'Array':
501
-                $post_types = (array)$post_types;
502
-                break;
490
+	$post_types = array();
491
+	$post_types = get_option('geodir_post_types');
492
+	$post_types = stripslashes_deep($post_types);
493
+	if (!empty($post_types)) {
494
+		switch ($output):
495
+			case 'object':
496
+			case 'Object':
497
+				$post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
498
+				break;
499
+			case 'array':
500
+			case 'Array':
501
+				$post_types = (array)$post_types;
502
+				break;
503 503
 			case 'options':
504
-                $post_types = (array)$post_types;
504
+				$post_types = (array)$post_types;
505 505
 				
506 506
 				$options = array();
507 507
 				if (!empty($post_types)) {
@@ -510,17 +510,17 @@  discard block
 block discarded – undo
510 510
 					}
511 511
 				}
512 512
 				$post_types = $options;
513
-                break;
514
-            default:
515
-                $post_types = array_keys($post_types);
516
-                break;
517
-        endswitch;
518
-    }
519
-
520
-    if (!empty($post_types))
521
-        return $post_types;
522
-    else
523
-        return array();
513
+				break;
514
+			default:
515
+				$post_types = array_keys($post_types);
516
+				break;
517
+		endswitch;
518
+	}
519
+
520
+	if (!empty($post_types))
521
+		return $post_types;
522
+	else
523
+		return array();
524 524
 }
525 525
 
526 526
 /**
@@ -533,108 +533,108 @@  discard block
 block discarded – undo
533 533
  */
534 534
 function geodir_get_posttype_info($post_type = '')
535 535
 {
536
-    $post_types = array();
537
-    $post_types = get_option('geodir_post_types');
538
-    $post_types = stripslashes_deep($post_types);
539
-    if (!empty($post_types) && $post_type != '') {
540
-        return $post_types[$post_type];
541
-    } else
542
-        return false;
536
+	$post_types = array();
537
+	$post_types = get_option('geodir_post_types');
538
+	$post_types = stripslashes_deep($post_types);
539
+	if (!empty($post_types) && $post_type != '') {
540
+		return $post_types[$post_type];
541
+	} else
542
+		return false;
543 543
 }
544 544
 
545 545
 if (!function_exists('geodir_get_taxonomies')) {
546
-    /**
547
-     * Get all custom taxonomies.
548
-     *
549
-     * @since 1.0.0
550
-     * @package GeoDirectory
551
-     * @param string $post_type The post type.
552
-     * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
553
-     * @return array|bool Taxonomies on success. false on failure.
554
-     */
555
-    function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false)
556
-    {
546
+	/**
547
+	 * Get all custom taxonomies.
548
+	 *
549
+	 * @since 1.0.0
550
+	 * @package GeoDirectory
551
+	 * @param string $post_type The post type.
552
+	 * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
553
+	 * @return array|bool Taxonomies on success. false on failure.
554
+	 */
555
+	function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false)
556
+	{
557 557
 
558
-        $taxonomies = array();
559
-        $gd_taxonomies = array();
558
+		$taxonomies = array();
559
+		$gd_taxonomies = array();
560 560
 
561
-        if ($taxonomies = get_option('geodir_taxonomies')) {
561
+		if ($taxonomies = get_option('geodir_taxonomies')) {
562 562
 
563 563
 
564
-            $gd_taxonomies = array_keys($taxonomies);
564
+			$gd_taxonomies = array_keys($taxonomies);
565 565
 
566 566
 
567
-            if ($post_type != '')
568
-                $gd_taxonomies = array();
567
+			if ($post_type != '')
568
+				$gd_taxonomies = array();
569 569
 
570
-            $i = 0;
571
-            foreach ($taxonomies as $taxonomy => $args) {
570
+			$i = 0;
571
+			foreach ($taxonomies as $taxonomy => $args) {
572 572
 
573
-                if ($post_type != '' && $args['object_type'] == $post_type)
574
-                    $gd_taxonomies[] = $taxonomy;
573
+				if ($post_type != '' && $args['object_type'] == $post_type)
574
+					$gd_taxonomies[] = $taxonomy;
575 575
 
576
-                if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
577
-                    if (array_search($taxonomy, $gd_taxonomies) !== false)
578
-                        unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
579
-                }
576
+				if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
577
+					if (array_search($taxonomy, $gd_taxonomies) !== false)
578
+						unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
579
+				}
580 580
 
581
-            }
581
+			}
582
+
583
+			$gd_taxonomies = array_values($gd_taxonomies);
584
+		}
582 585
 
583
-            $gd_taxonomies = array_values($gd_taxonomies);
584
-        }
585
-
586
-        /**
587
-         * Filter the taxonomies.
588
-         *
589
-         * @since 1.0.0
590
-         * @param array $gd_taxonomies The taxonomy array.
591
-         */
592
-        $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
593
-
594
-        if (!empty($taxonomies)) {
595
-            return $taxonomies;
596
-        } else {
597
-            return false;
598
-        }
599
-    }
586
+		/**
587
+		 * Filter the taxonomies.
588
+		 *
589
+		 * @since 1.0.0
590
+		 * @param array $gd_taxonomies The taxonomy array.
591
+		 */
592
+		$taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
593
+
594
+		if (!empty($taxonomies)) {
595
+			return $taxonomies;
596
+		} else {
597
+			return false;
598
+		}
599
+	}
600 600
 }
601 601
 
602 602
 if (!function_exists(' geodir_get_categories_dl')) {
603
-    /**
604
-     * Get categories dropdown HTML.
605
-     *
606
-     * @since 1.0.0
607
-     * @package GeoDirectory
608
-     * @param string $post_type The post type.
609
-     * @param string $selected The selected value.
610
-     * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
611
-     * @param bool $echo Prints the HTML when set to true. Default: true.
612
-     * @return void|string Dropdown HTML.
613
-     */
614
-    function  geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true)
615
-    {
616
-
617
-        $html = '';
618
-        $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies);
619
-
620
-        $categories = get_terms($taxonomies);
621
-
622
-        $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
623
-
624
-        foreach ($categories as $category_obj) {
625
-            $select_opt = '';
626
-            if ($selected == $category_obj->term_id) {
627
-                $select_opt = 'selected="selected"';
628
-            }
629
-            $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
630
-                . geodir_utf8_ucfirst($category_obj->name) . '</option>';
631
-        }
632
-
633
-        if ($echo)
634
-            echo $html;
635
-        else
636
-            return $html;
637
-    }
603
+	/**
604
+	 * Get categories dropdown HTML.
605
+	 *
606
+	 * @since 1.0.0
607
+	 * @package GeoDirectory
608
+	 * @param string $post_type The post type.
609
+	 * @param string $selected The selected value.
610
+	 * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
611
+	 * @param bool $echo Prints the HTML when set to true. Default: true.
612
+	 * @return void|string Dropdown HTML.
613
+	 */
614
+	function  geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true)
615
+	{
616
+
617
+		$html = '';
618
+		$taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies);
619
+
620
+		$categories = get_terms($taxonomies);
621
+
622
+		$html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
623
+
624
+		foreach ($categories as $category_obj) {
625
+			$select_opt = '';
626
+			if ($selected == $category_obj->term_id) {
627
+				$select_opt = 'selected="selected"';
628
+			}
629
+			$html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
630
+				. geodir_utf8_ucfirst($category_obj->name) . '</option>';
631
+		}
632
+
633
+		if ($echo)
634
+			echo $html;
635
+		else
636
+			return $html;
637
+	}
638 638
 }
639 639
 
640 640
 
@@ -649,28 +649,28 @@  discard block
 block discarded – undo
649 649
 function geodir_get_listing_slug($object_type = '')
650 650
 {
651 651
 
652
-    $listing_slug = '';
652
+	$listing_slug = '';
653 653
 
654
-    $post_types = get_option('geodir_post_types');
655
-    $taxonomies = get_option('geodir_taxonomies');
654
+	$post_types = get_option('geodir_post_types');
655
+	$taxonomies = get_option('geodir_taxonomies');
656 656
 
657 657
 
658
-    if ($object_type != '') {
659
-        if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
658
+	if ($object_type != '') {
659
+		if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
660 660
 
661
-            $object_info = $post_types[$object_type];
662
-            $listing_slug = $object_info['listing_slug'];
663
-        } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
664
-            $object_info = $taxonomies[$object_type];
665
-            $listing_slug = $object_info['listing_slug'];
666
-        }
661
+			$object_info = $post_types[$object_type];
662
+			$listing_slug = $object_info['listing_slug'];
663
+		} elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
664
+			$object_info = $taxonomies[$object_type];
665
+			$listing_slug = $object_info['listing_slug'];
666
+		}
667 667
 
668
-    }
668
+	}
669 669
 
670
-    if (!empty($listing_slug))
671
-        return $listing_slug;
672
-    else
673
-        return false;
670
+	if (!empty($listing_slug))
671
+		return $listing_slug;
672
+	else
673
+		return false;
674 674
 }
675 675
 
676 676
 
@@ -685,212 +685,212 @@  discard block
 block discarded – undo
685 685
  */
686 686
 function geodir_get_taxonomy_posttype($taxonomy = '')
687 687
 {
688
-    global $wp_query;
689
-
690
-    $post_type = array();
691
-    $taxonomies = array();
692
-
693
-    if (!empty($taxonomy)) {
694
-        $taxonomies[] = $taxonomy;
695
-    } elseif (isset($wp_query->tax_query->queries)) {
696
-        $tax_arr = $wp_query->tax_query->queries;
697
-        //if tax query has 'relation' set then it will break wp_list_pluck so we remove it
698
-        if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
699
-        $taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
700
-    }
701
-
702
-    if (!empty($taxonomies)) {
703
-        foreach (geodir_get_posttypes() as $pt) {
704
-            $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
705
-            if (array_intersect($taxonomies, $object_taxonomies))
706
-                $post_type[] = $pt;
707
-        }
708
-    }
709
-
710
-    if (!empty($post_type))
711
-        return $post_type[0];
712
-    else
713
-        return false;
688
+	global $wp_query;
689
+
690
+	$post_type = array();
691
+	$taxonomies = array();
692
+
693
+	if (!empty($taxonomy)) {
694
+		$taxonomies[] = $taxonomy;
695
+	} elseif (isset($wp_query->tax_query->queries)) {
696
+		$tax_arr = $wp_query->tax_query->queries;
697
+		//if tax query has 'relation' set then it will break wp_list_pluck so we remove it
698
+		if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
699
+		$taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
700
+	}
701
+
702
+	if (!empty($taxonomies)) {
703
+		foreach (geodir_get_posttypes() as $pt) {
704
+			$object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
705
+			if (array_intersect($taxonomies, $object_taxonomies))
706
+				$post_type[] = $pt;
707
+		}
708
+	}
709
+
710
+	if (!empty($post_type))
711
+		return $post_type[0];
712
+	else
713
+		return false;
714 714
 }
715 715
 
716 716
 if (!function_exists('geodir_custom_taxonomy_walker')) {
717
-    /**
718
-     * Custom taxonomy walker function.
719
-     *
720
-     * @since 1.0.0
721
-     * @package GeoDirectory
722
-     * @param string $cat_taxonomy The taxonomy name.
723
-     * @param int $cat_parent The parent term ID.
724
-     * @param bool $hide_empty Hide empty taxonomies? Default: false.
725
-     * @param int $pading CSS padding in pixels.
726
-     * @return string|void taxonomy HTML.
727
-     */
728
-    function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0)
729
-    {
730
-        global $cat_display, $post_cat, $exclude_cats;
731
-
732
-        $search_terms = trim($post_cat, ",");
733
-
734
-        $search_terms = explode(",", $search_terms);
735
-
736
-        $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
737
-
738
-        $display = '';
739
-        $onchange = '';
740
-        $term_check = '';
741
-        $main_list_class = '';
742
-        $out = '';
743
-        //If there are terms, start displaying
744
-        if (count($cat_terms) > 0) {
745
-            //Displaying as a list
746
-            $p = $pading * 20;
747
-            $pading++;
748
-
749
-
750
-            if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
751
-                if ($cat_parent == 0) {
752
-                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
753
-                    $main_list_class = 'class="main_list_selecter"';
754
-                } else {
755
-                    //$display = 'display:none';
756
-                    $list_class = 'sub_list gd-sub-cats-list';
757
-                }
758
-            }
717
+	/**
718
+	 * Custom taxonomy walker function.
719
+	 *
720
+	 * @since 1.0.0
721
+	 * @package GeoDirectory
722
+	 * @param string $cat_taxonomy The taxonomy name.
723
+	 * @param int $cat_parent The parent term ID.
724
+	 * @param bool $hide_empty Hide empty taxonomies? Default: false.
725
+	 * @param int $pading CSS padding in pixels.
726
+	 * @return string|void taxonomy HTML.
727
+	 */
728
+	function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0)
729
+	{
730
+		global $cat_display, $post_cat, $exclude_cats;
731
+
732
+		$search_terms = trim($post_cat, ",");
733
+
734
+		$search_terms = explode(",", $search_terms);
735
+
736
+		$cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
737
+
738
+		$display = '';
739
+		$onchange = '';
740
+		$term_check = '';
741
+		$main_list_class = '';
742
+		$out = '';
743
+		//If there are terms, start displaying
744
+		if (count($cat_terms) > 0) {
745
+			//Displaying as a list
746
+			$p = $pading * 20;
747
+			$pading++;
748
+
749
+
750
+			if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
751
+				if ($cat_parent == 0) {
752
+					$list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
753
+					$main_list_class = 'class="main_list_selecter"';
754
+				} else {
755
+					//$display = 'display:none';
756
+					$list_class = 'sub_list gd-sub-cats-list';
757
+				}
758
+			}
759 759
 
760
-            if ($cat_display == 'checkbox' || $cat_display == 'radio') {
761
-                $p = 0;
762
-                $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
763
-            }
760
+			if ($cat_display == 'checkbox' || $cat_display == 'radio') {
761
+				$p = 0;
762
+				$out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
763
+			}
764 764
 
765
-            foreach ($cat_terms as $cat_term) {
765
+			foreach ($cat_terms as $cat_term) {
766 766
 
767
-                $checked = '';
767
+				$checked = '';
768 768
 
769
-                if (in_array($cat_term->term_id, $search_terms)) {
770
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
771
-                        $checked = 'selected="selected"';
772
-                    else
773
-                        $checked = 'checked="checked"';
774
-                }
769
+				if (in_array($cat_term->term_id, $search_terms)) {
770
+					if ($cat_display == 'select' || $cat_display == 'multiselect')
771
+						$checked = 'selected="selected"';
772
+					else
773
+						$checked = 'checked="checked"';
774
+				}
775 775
 
776
-                if ($cat_display == 'radio')
777
-                    $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>';
778
-                elseif ($cat_display == 'select' || $cat_display == 'multiselect')
779
-                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</option>';
776
+				if ($cat_display == 'radio')
777
+					$out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>';
778
+				elseif ($cat_display == 'select' || $cat_display == 'multiselect')
779
+					$out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</option>';
780 780
 
781
-                else {
782
-                    $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>';
783
-                }
781
+				else {
782
+					$out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>';
783
+				}
784 784
 
785
-                // Call recurson to print sub cats
786
-                $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading);
785
+				// Call recurson to print sub cats
786
+				$out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading);
787 787
 
788
-            }
788
+			}
789 789
 
790
-            if ($cat_display == 'checkbox' || $cat_display == 'radio')
791
-                $out .= '</div>';
790
+			if ($cat_display == 'checkbox' || $cat_display == 'radio')
791
+				$out .= '</div>';
792 792
 
793
-            return $out;
794
-        }
795
-        return;
796
-    }
793
+			return $out;
794
+		}
795
+		return;
796
+	}
797 797
 }
798 798
 
799 799
 if (!function_exists('geodir_custom_taxonomy_walker2')) {
800
-    /**
801
-     * Custom taxonomy walker function.
802
-     *
803
-     * @since 1.0.0
804
-     * @package GeoDirectory
805
-     * @global object $post WordPress Post object.
806
-     * @global object $gd_session GeoDirectory Session object.
807
-     * @param string $cat_taxonomy The taxonomy name.
808
-     * @param string $cat_limit Number of categories to display.
809
-     */
810
-    function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '')
811
-    {
812
-        $post_category = '';
813
-        $post_category_str = '';
814
-        global $exclude_cats, $gd_session;
815
-
816
-        $cat_exclude = '';
817
-        if (is_array($exclude_cats) && !empty($exclude_cats))
818
-            $cat_exclude = serialize($exclude_cats);
819
-
820
-        if (isset($_REQUEST['backandedit'])) {
821
-            $post = (object)$gd_session->get('listing');
822
-
823
-            if (!is_array($post->post_category[$cat_taxonomy]))
824
-                $post_category = $post->post_category[$cat_taxonomy];
825
-
826
-            $post_categories = $post->post_category_str;
827
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
828
-                $post_category_str = $post_categories[$cat_taxonomy];
829
-
830
-        } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
831
-            global $post;
832
-
833
-            $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true);
834
-            if (empty($post_category) && isset($post->{$cat_taxonomy})) {
835
-                $post_category = $post->{$cat_taxonomy};
836
-            }
800
+	/**
801
+	 * Custom taxonomy walker function.
802
+	 *
803
+	 * @since 1.0.0
804
+	 * @package GeoDirectory
805
+	 * @global object $post WordPress Post object.
806
+	 * @global object $gd_session GeoDirectory Session object.
807
+	 * @param string $cat_taxonomy The taxonomy name.
808
+	 * @param string $cat_limit Number of categories to display.
809
+	 */
810
+	function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '')
811
+	{
812
+		$post_category = '';
813
+		$post_category_str = '';
814
+		global $exclude_cats, $gd_session;
815
+
816
+		$cat_exclude = '';
817
+		if (is_array($exclude_cats) && !empty($exclude_cats))
818
+			$cat_exclude = serialize($exclude_cats);
819
+
820
+		if (isset($_REQUEST['backandedit'])) {
821
+			$post = (object)$gd_session->get('listing');
822
+
823
+			if (!is_array($post->post_category[$cat_taxonomy]))
824
+				$post_category = $post->post_category[$cat_taxonomy];
825
+
826
+			$post_categories = $post->post_category_str;
827
+			if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
828
+				$post_category_str = $post_categories[$cat_taxonomy];
829
+
830
+		} elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
831
+			global $post;
832
+
833
+			$post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true);
834
+			if (empty($post_category) && isset($post->{$cat_taxonomy})) {
835
+				$post_category = $post->{$cat_taxonomy};
836
+			}
837 837
 
838
-            $post_categories = get_post_meta($post->ID, 'post_categories', true);
838
+			$post_categories = get_post_meta($post->ID, 'post_categories', true);
839 839
 
840
-            if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
841
-                foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
842
-                    if (is_numeric($cat_part)) {
843
-                        $cat_part_arr[] = $cat_part;
844
-                    }
845
-                }
846
-                if (is_array($cat_part_arr)) {
847
-                    $post_category = implode(',', $cat_part_arr);
848
-                }
849
-            }
840
+			if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
841
+				foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
842
+					if (is_numeric($cat_part)) {
843
+						$cat_part_arr[] = $cat_part;
844
+					}
845
+				}
846
+				if (is_array($cat_part_arr)) {
847
+					$post_category = implode(',', $cat_part_arr);
848
+				}
849
+			}
850 850
 
851
-            if (!empty($post_category)) {
852
-                $cat1 = array_filter(explode(',', $post_category));
853
-                $post_category = ',' . implode(',', $cat1) . ',';
851
+			if (!empty($post_category)) {
852
+				$cat1 = array_filter(explode(',', $post_category));
853
+				$post_category = ',' . implode(',', $cat1) . ',';
854 854
 
855
-            }
855
+			}
856 856
 
857
-            if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
857
+			if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
858 858
 
859
-                $post_category_upd = explode(',', $post_category);
860
-                $post_category_change = '';
861
-                foreach ($post_category_upd as $cat) {
859
+				$post_category_upd = explode(',', $post_category);
860
+				$post_category_change = '';
861
+				foreach ($post_category_upd as $cat) {
862 862
 
863
-                    if (!in_array($cat, $exclude_cats) && $cat != '') {
864
-                        $post_category_change .= ',' . $cat;
865
-                    }
866
-                }
867
-                $post_category = $post_category_change;
868
-            }
863
+					if (!in_array($cat, $exclude_cats) && $cat != '') {
864
+						$post_category_change .= ',' . $cat;
865
+					}
866
+				}
867
+				$post_category = $post_category_change;
868
+			}
869 869
 
870 870
 
871
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
872
-                $post_category_str = $post_categories[$cat_taxonomy];
873
-            }
874
-        }
871
+			if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
872
+				$post_category_str = $post_categories[$cat_taxonomy];
873
+			}
874
+		}
875 875
 
876
-        echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
876
+		echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
877 877
 
878
-        echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
878
+		echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
879 879
 
880
-        echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
880
+		echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
881 881
 
882 882
 
883
-        ?>
883
+		?>
884 884
         <div class="cat_sublist">
885 885
             <?php
886 886
 
887
-            $post_id = isset($post->ID) ? $post->ID : '';
887
+			$post_id = isset($post->ID) ? $post->ID : '';
888 888
 
889
-            if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
889
+			if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
890 890
 
891
-                geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories);
892
-            }
893
-            ?>
891
+				geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories);
892
+			}
893
+			?>
894 894
         </div>
895 895
         <script type="text/javascript">
896 896
 
@@ -1013,22 +1013,22 @@  discard block
 block discarded – undo
1013 1013
 
1014 1014
         </script>
1015 1015
         <?php
1016
-        if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1017
-            $post_cat_str = $post_categories[$cat_taxonomy];
1018
-            $post_cat_array = explode("#", $post_cat_str);
1019
-            if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1020
-                $style = "display:none;";
1021
-        }
1022
-        ?>
1016
+		if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1017
+			$post_cat_str = $post_categories[$cat_taxonomy];
1018
+			$post_cat_array = explode("#", $post_cat_str);
1019
+			if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1020
+				$style = "display:none;";
1021
+		}
1022
+		?>
1023 1023
         <div class="main_cat_list" style=" <?php if (isset($style)) {
1024
-            echo $style;
1025
-        }?> ">
1024
+			echo $style;
1025
+		}?> ">
1026 1026
             <?php geodir_get_catlist($cat_taxonomy, 0);  // print main categories list
1027
-            ?>
1027
+			?>
1028 1028
         </div>
1029 1029
     <?php
1030 1030
 
1031
-    }
1031
+	}
1032 1032
 }
1033 1033
 
1034 1034
 /**
@@ -1045,23 +1045,23 @@  discard block
 block discarded – undo
1045 1045
  */
1046 1046
 function geodir_addpost_categories_html($request_taxonomy, $parrent, $selected = false, $main_selected = true, $default = false, $exclude = '')
1047 1047
 {
1048
-    global $exclude_cats;
1048
+	global $exclude_cats;
1049 1049
 
1050
-    if ($exclude != '') {
1051
-        $exclude_cats = maybe_unserialize(base64_decode($exclude));
1050
+	if ($exclude != '') {
1051
+		$exclude_cats = maybe_unserialize(base64_decode($exclude));
1052 1052
 
1053
-        if(is_array( $exclude_cats)){
1054
-            $exclude_cats = array_map( 'intval', $exclude_cats );
1055
-        }else{
1056
-            $exclude_cats = intval($exclude_cats);
1057
-        }
1053
+		if(is_array( $exclude_cats)){
1054
+			$exclude_cats = array_map( 'intval', $exclude_cats );
1055
+		}else{
1056
+			$exclude_cats = intval($exclude_cats);
1057
+		}
1058 1058
 
1059
-    }
1059
+	}
1060 1060
 
1061
-    if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) ||
1062
-        (!is_array($exclude_cats) || empty($exclude_cats))
1063
-    ) {
1064
-        ?>
1061
+	if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) ||
1062
+		(!is_array($exclude_cats) || empty($exclude_cats))
1063
+	) {
1064
+		?>
1065 1065
 
1066 1066
         <?php $main_cat = get_term($parrent, $request_taxonomy); ?>
1067 1067
 
@@ -1090,8 +1090,8 @@  discard block
 block discarded – undo
1090 1090
 
1091 1091
             <br/>
1092 1092
             <?php
1093
-            $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
1094
-            if (!empty($cat_terms)) { ?>
1093
+			$cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
1094
+			if (!empty($cat_terms)) { ?>
1095 1095
                 <span> <?php printf(__('Add listing in category', 'geodirectory')); ?></span>
1096 1096
                 <?php geodir_get_catlist($request_taxonomy, $parrent, $selected) ?>
1097 1097
             <?php } ?>
@@ -1113,53 +1113,53 @@  discard block
 block discarded – undo
1113 1113
 function geodir_editpost_categories_html($request_taxonomy, $request_postid, $post_categories)
1114 1114
 {
1115 1115
 
1116
-    if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
1117
-        $post_cat_str = $post_categories[$request_taxonomy];
1118
-        $post_cat_array = explode("#", $post_cat_str);
1119
-        if (is_array($post_cat_array)) {
1120
-            $post_cat_array = array_unique( $post_cat_array );
1116
+	if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
1117
+		$post_cat_str = $post_categories[$request_taxonomy];
1118
+		$post_cat_array = explode("#", $post_cat_str);
1119
+		if (is_array($post_cat_array)) {
1120
+			$post_cat_array = array_unique( $post_cat_array );
1121 1121
 
1122 1122
 			foreach ($post_cat_array as $post_cat_html) {
1123 1123
 
1124
-                $post_cat_info = explode(":", $post_cat_html);
1125
-                $post_maincat_str = $post_cat_info[0];
1124
+				$post_cat_info = explode(":", $post_cat_html);
1125
+				$post_maincat_str = $post_cat_info[0];
1126 1126
 
1127
-                if (!empty($post_maincat_str)) {
1128
-                    $post_maincat_info = explode(",", $post_maincat_str);
1129
-                    $post_maincat_id = $post_maincat_info[0];
1130
-                    ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1131
-                    (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1132
-                }
1133
-                $post_sub_catid = '';
1134
-                if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1135
-                    $post_sub_catid = (int)$post_cat_info[1];
1136
-                }
1127
+				if (!empty($post_maincat_str)) {
1128
+					$post_maincat_info = explode(",", $post_maincat_str);
1129
+					$post_maincat_id = $post_maincat_info[0];
1130
+					($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1131
+					(end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1132
+				}
1133
+				$post_sub_catid = '';
1134
+				if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1135
+					$post_sub_catid = (int)$post_cat_info[1];
1136
+				}
1137 1137
 
1138
-                geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1138
+				geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1139 1139
 
1140
-            }
1141
-        } else {
1140
+			}
1141
+		} else {
1142 1142
 
1143
-            $post_cat_info = explode(":", $post_cat_str);
1144
-            $post_maincat_str = $post_cat_info[0];
1143
+			$post_cat_info = explode(":", $post_cat_str);
1144
+			$post_maincat_str = $post_cat_info[0];
1145 1145
 
1146
-            $post_sub_catid = '';
1146
+			$post_sub_catid = '';
1147 1147
 
1148
-            if (!empty($post_maincat_str)) {
1149
-                $post_maincat_info = explode(",", $post_maincat_str);
1150
-                $post_maincat_id = $post_maincat_info[0];
1151
-                ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1152
-                (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1153
-            }
1148
+			if (!empty($post_maincat_str)) {
1149
+				$post_maincat_info = explode(",", $post_maincat_str);
1150
+				$post_maincat_id = $post_maincat_info[0];
1151
+				($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1152
+				(end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1153
+			}
1154 1154
 
1155
-            if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1156
-                $post_sub_catid = (int)$post_cat_info[1];
1157
-            }
1155
+			if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1156
+				$post_sub_catid = (int)$post_cat_info[1];
1157
+			}
1158 1158
 
1159
-            geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1159
+			geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1160 1160
 
1161
-        }
1162
-    }
1161
+		}
1162
+	}
1163 1163
 }
1164 1164
 
1165 1165
 /**
@@ -1173,35 +1173,35 @@  discard block
 block discarded – undo
1173 1173
  */
1174 1174
 function geodir_get_catlist($cat_taxonomy, $parrent = 0, $selected = false)
1175 1175
 {
1176
-    global $exclude_cats;
1176
+	global $exclude_cats;
1177 1177
 
1178
-    $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
1178
+	$cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
1179 1179
 
1180
-    if (!empty($cat_terms)) {
1181
-        $onchange = '';
1182
-        $onchange = ' onchange="show_subcatlist(this.value, this)" ';
1180
+	if (!empty($cat_terms)) {
1181
+		$onchange = '';
1182
+		$onchange = ' onchange="show_subcatlist(this.value, this)" ';
1183 1183
 
1184
-        $option_selected = '';
1185
-        if (!$selected)
1186
-            $option_slected = ' selected="selected" ';
1184
+		$option_selected = '';
1185
+		if (!$selected)
1186
+			$option_slected = ' selected="selected" ';
1187 1187
 
1188
-        echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1188
+		echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1189 1189
 
1190
-        echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1190
+		echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1191 1191
 
1192
-        foreach ($cat_terms as $cat_term) {
1193
-            $option_selected = '';
1194
-            if ($selected == $cat_term->term_id)
1195
-                $option_selected = ' selected="selected" ';
1192
+		foreach ($cat_terms as $cat_term) {
1193
+			$option_selected = '';
1194
+			if ($selected == $cat_term->term_id)
1195
+				$option_selected = ' selected="selected" ';
1196 1196
 
1197
-            // Count child terms
1198
-            $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1199
-            $has_child = !empty( $child_terms ) ? 't' : 'f';
1197
+			// Count child terms
1198
+			$child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1199
+			$has_child = !empty( $child_terms ) ? 't' : 'f';
1200 1200
 
1201
-            echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . geodir_utf8_ucfirst($cat_term->name) . '</option>';
1202
-        }
1203
-        echo '</select>';
1204
-    }
1201
+			echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . geodir_utf8_ucfirst($cat_term->name) . '</option>';
1202
+		}
1203
+		echo '</select>';
1204
+	}
1205 1205
 }
1206 1206
 
1207 1207
 /**
@@ -1217,28 +1217,28 @@  discard block
 block discarded – undo
1217 1217
  */
1218 1218
 function geodir_custom_update_messages($messages)
1219 1219
 {
1220
-    global $post, $post_ID;
1221
-
1222
-    $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
1223
-
1224
-    foreach ($post_types as $post_type => $post_object) {
1225
-
1226
-        $messages[$post_type] = array(
1227
-            0 => '', // Unused. Messages start at index 1.
1228
-            1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1229
-            2 => __('Custom field updated.', 'geodirectory'),
1230
-            3 => __('Custom field deleted.', 'geodirectory'),
1231
-            4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1232
-            5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
1233
-            6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1234
-            7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1235
-            8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1236
-            9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1237
-            10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1238
-        );
1239
-    }
1240
-
1241
-    return $messages;
1220
+	global $post, $post_ID;
1221
+
1222
+	$post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
1223
+
1224
+	foreach ($post_types as $post_type => $post_object) {
1225
+
1226
+		$messages[$post_type] = array(
1227
+			0 => '', // Unused. Messages start at index 1.
1228
+			1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1229
+			2 => __('Custom field updated.', 'geodirectory'),
1230
+			3 => __('Custom field deleted.', 'geodirectory'),
1231
+			4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1232
+			5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
1233
+			6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1234
+			7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1235
+			8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1236
+			9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1237
+			10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
1238
+		);
1239
+	}
1240
+
1241
+	return $messages;
1242 1242
 }
1243 1243
 
1244 1244
 
@@ -1253,182 +1253,182 @@  discard block
 block discarded – undo
1253 1253
 function geodir_register_defaults()
1254 1254
 {
1255 1255
 
1256
-    global $wpdb;
1257
-
1258
-    $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1259
-
1260
-    if (!$listing_slug = get_option('geodir_listing_prefix'))
1261
-        $listing_slug = 'places';
1262
-
1263
-    /**
1264
-     * Taxonomies
1265
-     **/
1266
-    //if ( ! taxonomy_exists('gd_place_tags') )
1267
-    {
1268
-
1269
-        $gd_placetags = array();
1270
-        $gd_placetags['object_type'] = 'gd_place';
1271
-        $gd_placetags['listing_slug'] = $listing_slug . '/tags';
1272
-        $gd_placetags['args'] = array(
1273
-            'public' => true,
1274
-            'hierarchical' => false,
1275
-            'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1276
-            'query_var' => true,
1277
-
1278
-            'labels' => array(
1279
-                'name' => __('Place Tags', 'geodirectory'),
1280
-                'singular_name' => __('Place Tag', 'geodirectory'),
1281
-                'search_items' => __('Search Place Tags', 'geodirectory'),
1282
-                'popular_items' => __('Popular Place Tags', 'geodirectory'),
1283
-                'all_items' => __('All Place Tags', 'geodirectory'),
1284
-                'edit_item' => __('Edit Place Tag', 'geodirectory'),
1285
-                'update_item' => __('Update Place Tag', 'geodirectory'),
1286
-                'add_new_item' => __('Add New Place Tag', 'geodirectory'),
1287
-                'new_item_name' => __('New Place Tag Name', 'geodirectory'),
1288
-                'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
1289
-                'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
1290
-                'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
1291
-            ),
1292
-        );
1293
-
1294
-
1295
-        $geodir_taxonomies = get_option('geodir_taxonomies');
1296
-        $geodir_taxonomies['gd_place_tags'] = $gd_placetags;
1297
-        update_option('geodir_taxonomies', $geodir_taxonomies);
1298
-
1299
-
1300
-        // Update post types and delete tmp options
1301
-        flush_rewrite_rules();
1302
-
1303
-    }
1304
-
1305
-    //if ( ! taxonomy_exists('gd_placecategory') )
1306
-    {
1307
-
1308
-        $gd_placecategory = array();
1309
-        $gd_placecategory['object_type'] = 'gd_place';
1310
-        $gd_placecategory['listing_slug'] = $listing_slug;
1311
-        $gd_placecategory['args'] = array(
1312
-            'public' => true,
1313
-            'hierarchical' => true,
1314
-            'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
1315
-            'query_var' => true,
1316
-            'labels' => array(
1317
-                'name' => __('Place Categories', 'geodirectory'),
1318
-                'singular_name' => __('Place Category', 'geodirectory'),
1319
-                'search_items' => __('Search Place Categories', 'geodirectory'),
1320
-                'popular_items' => __('Popular Place Categories', 'geodirectory'),
1321
-                'all_items' => __('All Place Categories', 'geodirectory'),
1322
-                'edit_item' => __('Edit Place Category', 'geodirectory'),
1323
-                'update_item' => __('Update Place Category', 'geodirectory'),
1324
-                'add_new_item' => __('Add New Place Category', 'geodirectory'),
1325
-                'new_item_name' => __('New Place Category', 'geodirectory'),
1326
-                'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
1327
-            ),
1328
-        );
1329
-
1330
-
1331
-        $geodir_taxonomies = get_option('geodir_taxonomies');
1332
-        $geodir_taxonomies['gd_placecategory'] = $gd_placecategory;
1333
-        update_option('geodir_taxonomies', $geodir_taxonomies);
1334
-
1335
-
1336
-        flush_rewrite_rules();
1337
-    }
1338
-
1339
-    /**
1340
-     * Post Types
1341
-     **/
1342
-
1343
-    //if ( ! post_type_exists('gd_place') )
1344
-    {
1345
-
1346
-        $labels = array(
1347
-            'name' => __('Places', 'geodirectory'),
1348
-            'singular_name' => __('Place', 'geodirectory'),
1349
-            'add_new' => __('Add New', 'geodirectory'),
1350
-            'add_new_item' => __('Add New Place', 'geodirectory'),
1351
-            'edit_item' => __('Edit Place', 'geodirectory'),
1352
-            'new_item' => __('New Place', 'geodirectory'),
1353
-            'view_item' => __('View Place', 'geodirectory'),
1354
-            'search_items' => __('Search Places', 'geodirectory'),
1355
-            'not_found' => __('No Place Found', 'geodirectory'),
1356
-            'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
1357
-
1358
-        $place_default = array(
1359
-            'labels' => $labels,
1360
-            'can_export' => true,
1361
-            'capability_type' => 'post',
1362
-            'description' => 'Place post type.',
1363
-            'has_archive' => $listing_slug,
1364
-            'hierarchical' => false,
1365
-            'map_meta_cap' => true,
1366
-            'menu_icon' => $menu_icon,
1367
-            'public' => true,
1368
-            'query_var' => true,
1369
-            'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1370
-            'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1371
-            'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1372
-
1373
-        //Update custom post types
1374
-        $geodir_post_types = get_option('geodir_post_types');
1375
-        $geodir_post_types['gd_place'] = $place_default;
1376
-        update_option('geodir_post_types', $geodir_post_types);
1377
-
1378
-        // Update post types and delete tmp options
1379
-        flush_rewrite_rules();
1380
-    }
1381
-
1382
-
1383
-    geodir_register_taxonomies();
1384
-    geodir_register_post_types();
1385
-
1386
-    //die;
1256
+	global $wpdb;
1257
+
1258
+	$menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1259
+
1260
+	if (!$listing_slug = get_option('geodir_listing_prefix'))
1261
+		$listing_slug = 'places';
1262
+
1263
+	/**
1264
+	 * Taxonomies
1265
+	 **/
1266
+	//if ( ! taxonomy_exists('gd_place_tags') )
1267
+	{
1268
+
1269
+		$gd_placetags = array();
1270
+		$gd_placetags['object_type'] = 'gd_place';
1271
+		$gd_placetags['listing_slug'] = $listing_slug . '/tags';
1272
+		$gd_placetags['args'] = array(
1273
+			'public' => true,
1274
+			'hierarchical' => false,
1275
+			'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1276
+			'query_var' => true,
1277
+
1278
+			'labels' => array(
1279
+				'name' => __('Place Tags', 'geodirectory'),
1280
+				'singular_name' => __('Place Tag', 'geodirectory'),
1281
+				'search_items' => __('Search Place Tags', 'geodirectory'),
1282
+				'popular_items' => __('Popular Place Tags', 'geodirectory'),
1283
+				'all_items' => __('All Place Tags', 'geodirectory'),
1284
+				'edit_item' => __('Edit Place Tag', 'geodirectory'),
1285
+				'update_item' => __('Update Place Tag', 'geodirectory'),
1286
+				'add_new_item' => __('Add New Place Tag', 'geodirectory'),
1287
+				'new_item_name' => __('New Place Tag Name', 'geodirectory'),
1288
+				'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
1289
+				'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
1290
+				'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
1291
+			),
1292
+		);
1293
+
1294
+
1295
+		$geodir_taxonomies = get_option('geodir_taxonomies');
1296
+		$geodir_taxonomies['gd_place_tags'] = $gd_placetags;
1297
+		update_option('geodir_taxonomies', $geodir_taxonomies);
1298
+
1299
+
1300
+		// Update post types and delete tmp options
1301
+		flush_rewrite_rules();
1302
+
1303
+	}
1304
+
1305
+	//if ( ! taxonomy_exists('gd_placecategory') )
1306
+	{
1307
+
1308
+		$gd_placecategory = array();
1309
+		$gd_placecategory['object_type'] = 'gd_place';
1310
+		$gd_placecategory['listing_slug'] = $listing_slug;
1311
+		$gd_placecategory['args'] = array(
1312
+			'public' => true,
1313
+			'hierarchical' => true,
1314
+			'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
1315
+			'query_var' => true,
1316
+			'labels' => array(
1317
+				'name' => __('Place Categories', 'geodirectory'),
1318
+				'singular_name' => __('Place Category', 'geodirectory'),
1319
+				'search_items' => __('Search Place Categories', 'geodirectory'),
1320
+				'popular_items' => __('Popular Place Categories', 'geodirectory'),
1321
+				'all_items' => __('All Place Categories', 'geodirectory'),
1322
+				'edit_item' => __('Edit Place Category', 'geodirectory'),
1323
+				'update_item' => __('Update Place Category', 'geodirectory'),
1324
+				'add_new_item' => __('Add New Place Category', 'geodirectory'),
1325
+				'new_item_name' => __('New Place Category', 'geodirectory'),
1326
+				'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
1327
+			),
1328
+		);
1329
+
1330
+
1331
+		$geodir_taxonomies = get_option('geodir_taxonomies');
1332
+		$geodir_taxonomies['gd_placecategory'] = $gd_placecategory;
1333
+		update_option('geodir_taxonomies', $geodir_taxonomies);
1334
+
1335
+
1336
+		flush_rewrite_rules();
1337
+	}
1338
+
1339
+	/**
1340
+	 * Post Types
1341
+	 **/
1342
+
1343
+	//if ( ! post_type_exists('gd_place') )
1344
+	{
1345
+
1346
+		$labels = array(
1347
+			'name' => __('Places', 'geodirectory'),
1348
+			'singular_name' => __('Place', 'geodirectory'),
1349
+			'add_new' => __('Add New', 'geodirectory'),
1350
+			'add_new_item' => __('Add New Place', 'geodirectory'),
1351
+			'edit_item' => __('Edit Place', 'geodirectory'),
1352
+			'new_item' => __('New Place', 'geodirectory'),
1353
+			'view_item' => __('View Place', 'geodirectory'),
1354
+			'search_items' => __('Search Places', 'geodirectory'),
1355
+			'not_found' => __('No Place Found', 'geodirectory'),
1356
+			'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
1357
+
1358
+		$place_default = array(
1359
+			'labels' => $labels,
1360
+			'can_export' => true,
1361
+			'capability_type' => 'post',
1362
+			'description' => 'Place post type.',
1363
+			'has_archive' => $listing_slug,
1364
+			'hierarchical' => false,
1365
+			'map_meta_cap' => true,
1366
+			'menu_icon' => $menu_icon,
1367
+			'public' => true,
1368
+			'query_var' => true,
1369
+			'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1370
+			'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1371
+			'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1372
+
1373
+		//Update custom post types
1374
+		$geodir_post_types = get_option('geodir_post_types');
1375
+		$geodir_post_types['gd_place'] = $place_default;
1376
+		update_option('geodir_post_types', $geodir_post_types);
1377
+
1378
+		// Update post types and delete tmp options
1379
+		flush_rewrite_rules();
1380
+	}
1381
+
1382
+
1383
+	geodir_register_taxonomies();
1384
+	geodir_register_post_types();
1385
+
1386
+	//die;
1387 1387
 
1388 1388
 }
1389 1389
 
1390 1390
 $gd_wpml_get_languages = "";
1391 1391
 function gd_wpml_get_lang_from_url($url) {
1392
-    global $sitepress, $gd_wpml_get_languages;
1392
+	global $sitepress, $gd_wpml_get_languages;
1393 1393
     
1394
-    if (geodir_is_wpml()) {
1395
-        return $sitepress->get_language_from_url($url);
1396
-    }
1394
+	if (geodir_is_wpml()) {
1395
+		return $sitepress->get_language_from_url($url);
1396
+	}
1397 1397
     
1398
-    if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {
1399
-        return $_REQUEST['lang'];
1400
-    }
1398
+	if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {
1399
+		return $_REQUEST['lang'];
1400
+	}
1401 1401
 
1402
-    $url = str_replace(array("http://","https://"),"",$url);
1402
+	$url = str_replace(array("http://","https://"),"",$url);
1403 1403
 
1404
-    // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1405
-    $site_url = str_replace(array("http://","https://"),"",site_url());
1404
+	// site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1405
+	$site_url = str_replace(array("http://","https://"),"",site_url());
1406 1406
 
1407
-    $url = str_replace($site_url,"",$url);
1407
+	$url = str_replace($site_url,"",$url);
1408 1408
 
1409
-    $segments = explode('/', trim($url, '/'));
1409
+	$segments = explode('/', trim($url, '/'));
1410 1410
 
1411
-    if ($gd_wpml_get_languages) {
1412
-        $langs = $gd_wpml_get_languages;
1413
-    } else {
1414
-        $gd_wpml_get_languages = $sitepress->get_active_languages();
1415
-    }
1411
+	if ($gd_wpml_get_languages) {
1412
+		$langs = $gd_wpml_get_languages;
1413
+	} else {
1414
+		$gd_wpml_get_languages = $sitepress->get_active_languages();
1415
+	}
1416 1416
 
1417
-    if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
1418
-        return $segments[0];
1419
-    }
1417
+	if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
1418
+		return $segments[0];
1419
+	}
1420 1420
 
1421
-    return false;
1421
+	return false;
1422 1422
 }
1423 1423
 
1424 1424
 function gd_wpml_slug_translation_turned_on($post_type) {
1425 1425
 
1426
-    global $sitepress;
1427
-    $settings = $sitepress->get_settings();
1428
-    return isset($settings['posts_slug_translation']['types'][$post_type])
1429
-    && $settings['posts_slug_translation']['types'][$post_type]
1430
-    && isset($settings['posts_slug_translation']['on'])
1431
-    && $settings['posts_slug_translation']['on'];
1426
+	global $sitepress;
1427
+	$settings = $sitepress->get_settings();
1428
+	return isset($settings['posts_slug_translation']['types'][$post_type])
1429
+	&& $settings['posts_slug_translation']['types'][$post_type]
1430
+	&& isset($settings['posts_slug_translation']['on'])
1431
+	&& $settings['posts_slug_translation']['on'];
1432 1432
 }
1433 1433
 
1434 1434
 
@@ -1455,158 +1455,158 @@  discard block
 block discarded – undo
1455 1455
  */
1456 1456
 function geodir_listing_permalink_structure($post_link, $post_obj, $leavename, $sample)
1457 1457
 {
1458
-    //echo $post_link."<br />".$sample ;
1458
+	//echo $post_link."<br />".$sample ;
1459 1459
 
1460 1460
 
1461
-    global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache;
1462
-    if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
1463
-    } elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
1464
-        return $post_link;
1465
-    } else {
1466
-        $orig_post = $post;
1467
-        $post = $post_obj;
1468
-    }
1461
+	global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache;
1462
+	if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
1463
+	} elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
1464
+		return $post_link;
1465
+	} else {
1466
+		$orig_post = $post;
1467
+		$post = $post_obj;
1468
+	}
1469 1469
 
1470
-    if (in_array($post->post_type, geodir_get_posttypes())) {
1470
+	if (in_array($post->post_type, geodir_get_posttypes())) {
1471 1471
 
1472
-        // if we dont have a GD post then try to grab it
1473
-        if(!isset($post->default_category)){
1474
-            $gd_post = geodir_get_post_info($post->ID);
1475
-            if(!empty($gd_post)){
1476
-                $post = $gd_post;
1477
-            }
1478
-        }
1472
+		// if we dont have a GD post then try to grab it
1473
+		if(!isset($post->default_category)){
1474
+			$gd_post = geodir_get_post_info($post->ID);
1475
+			if(!empty($gd_post)){
1476
+				$post = $gd_post;
1477
+			}
1478
+		}
1479 1479
 
1480 1480
 
1481
-        $post_types = get_option('geodir_post_types');
1482
-        $slug = $post_types[$post->post_type]['rewrite']['slug'];
1481
+		$post_types = get_option('geodir_post_types');
1482
+		$slug = $post_types[$post->post_type]['rewrite']['slug'];
1483 1483
 
1484
-        // Alter the CPT slug if WPML is set to do so
1485
-        if(geodir_wpml_is_post_type_translated($post->post_type)){
1486
-            if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1484
+		// Alter the CPT slug if WPML is set to do so
1485
+		if(geodir_wpml_is_post_type_translated($post->post_type)){
1486
+			if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1487 1487
 
1488
-                $org_slug = $slug;
1489
-                $slug = apply_filters( 'wpml_translate_single_string',
1490
-                    $slug,
1491
-                    'WordPress',
1492
-                    'URL slug: ' . $slug,
1493
-                    $language_code);
1488
+				$org_slug = $slug;
1489
+				$slug = apply_filters( 'wpml_translate_single_string',
1490
+					$slug,
1491
+					'WordPress',
1492
+					'URL slug: ' . $slug,
1493
+					$language_code);
1494 1494
 
1495
-                if(!$slug){$slug = $org_slug;}
1495
+				if(!$slug){$slug = $org_slug;}
1496 1496
 
1497
-            }
1498
-        }
1497
+			}
1498
+		}
1499 1499
 
1500
-        if (function_exists('geodir_location_geo_home_link')) {
1501
-            remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
1502
-        }
1500
+		if (function_exists('geodir_location_geo_home_link')) {
1501
+			remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
1502
+		}
1503 1503
         
1504
-        // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz.
1505
-        $site_url = trailingslashit(get_bloginfo('url'));
1504
+		// Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz.
1505
+		$site_url = trailingslashit(get_bloginfo('url'));
1506 1506
         
1507
-        if (function_exists('geodir_location_geo_home_link')) {
1508
-            add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
1509
-        }
1510
-
1511
-        $fix_url = strpos($post_link, $site_url) === 0 ? true : false;
1512
-        if ($fix_url) {
1513
-            $post_link = str_replace($site_url, '', $post_link);
1514
-        }
1515
-
1516
-        $post_link = trailingslashit(
1517
-            preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1518
-        );
1519
-
1520
-        if ($fix_url) {
1521
-            $post_link = $site_url . $post_link;
1522
-        }
1523
-
1524
-        if (isset($comment_post_cache[$post->ID])) {
1525
-            $post = $comment_post_cache[$post->ID];
1526
-        }
1527
-        if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
1528
-            $post_id = $post->ID;
1529
-            if (isset($orig_post)) {
1530
-                $post = $orig_post;
1531
-            }
1532
-            return $gd_permalink_cache[$post_id];
1533
-        }
1507
+		if (function_exists('geodir_location_geo_home_link')) {
1508
+			add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
1509
+		}
1534 1510
 
1535
-        if (!isset($post->post_locations)) {
1536
-            $post_type = $post->post_type;
1537
-            $ID = $post->ID;
1538
-            $post2 = $wpdb->get_row(
1539
-                $wpdb->prepare(
1540
-                    "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1541
-                    array($post->ID)
1542
-                )
1543
-            );
1511
+		$fix_url = strpos($post_link, $site_url) === 0 ? true : false;
1512
+		if ($fix_url) {
1513
+			$post_link = str_replace($site_url, '', $post_link);
1514
+		}
1544 1515
 
1545
-            $post = (object)array_merge((array)$post, (array)$post2);
1516
+		$post_link = trailingslashit(
1517
+			preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1518
+		);
1546 1519
 
1547
-            $comment_post_cache[$post->ID] = $post;
1548
-        }
1520
+		if ($fix_url) {
1521
+			$post_link = $site_url . $post_link;
1522
+		}
1549 1523
 
1524
+		if (isset($comment_post_cache[$post->ID])) {
1525
+			$post = $comment_post_cache[$post->ID];
1526
+		}
1527
+		if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
1528
+			$post_id = $post->ID;
1529
+			if (isset($orig_post)) {
1530
+				$post = $orig_post;
1531
+			}
1532
+			return $gd_permalink_cache[$post_id];
1533
+		}
1550 1534
 
1535
+		if (!isset($post->post_locations)) {
1536
+			$post_type = $post->post_type;
1537
+			$ID = $post->ID;
1538
+			$post2 = $wpdb->get_row(
1539
+				$wpdb->prepare(
1540
+					"SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1541
+					array($post->ID)
1542
+				)
1543
+			);
1551 1544
 
1552
-        if (false !== strpos($post_link, '%gd_taxonomy%')) {
1545
+			$post = (object)array_merge((array)$post, (array)$post2);
1553 1546
 
1554
-            if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1555
-                $location_request = '';
1547
+			$comment_post_cache[$post->ID] = $post;
1548
+		}
1556 1549
 
1557 1550
 
1558
-                if (!empty($post->post_locations)) {
1559
-                    $geodir_arr_locations = explode(',', $post->post_locations);
1560
-                    if (count($geodir_arr_locations) == 3) {
1561
-                        $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1562
-                        $post->city_slug = str_replace(']', '', $post->city_slug);
1563
-                        $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1564
-                        $post->region_slug = str_replace(']', '', $post->region_slug);
1565
-                        $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1566
-                        $post->country_slug = str_replace(']', '', $post->country_slug);
1567 1551
 
1568
-                        $post_location = (object)array('country_slug' => $post->country_slug,
1569
-                            'region_slug' => $post->region_slug,
1570
-                            'city_slug' => $post->city_slug
1571
-                        );
1552
+		if (false !== strpos($post_link, '%gd_taxonomy%')) {
1572 1553
 
1573
-                    } else
1574
-                        $post_location = geodir_get_location();
1554
+			if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1555
+				$location_request = '';
1575 1556
 
1576 1557
 
1577
-                } else {
1558
+				if (!empty($post->post_locations)) {
1559
+					$geodir_arr_locations = explode(',', $post->post_locations);
1560
+					if (count($geodir_arr_locations) == 3) {
1561
+						$post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1562
+						$post->city_slug = str_replace(']', '', $post->city_slug);
1563
+						$post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1564
+						$post->region_slug = str_replace(']', '', $post->region_slug);
1565
+						$post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1566
+						$post->country_slug = str_replace(']', '', $post->country_slug);
1578 1567
 
1579
-                    $post_location_sql = $wpdb->get_results(
1580
-                        $wpdb->prepare(
1581
-                            "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1582
-                            array($post->ID)
1583
-                        )
1584
-                    );
1585
-
1586
-                    if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
1587
-
1588
-                        $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
1589
-                        if (count($geodir_arr_locations) == 3) {
1590
-                            $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1591
-                            $post->city_slug = str_replace(']', '', $post->city_slug);
1592
-                            $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1593
-                            $post->region_slug = str_replace(']', '', $post->region_slug);
1594
-                            $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1595
-                            $post->country_slug = str_replace(']', '', $post->country_slug);
1596
-
1597
-                            $post_location = (object)array('country_slug' => $post->country_slug,
1598
-                                'region_slug' => $post->region_slug,
1599
-                                'city_slug' => $post->city_slug
1600
-                            );
1568
+						$post_location = (object)array('country_slug' => $post->country_slug,
1569
+							'region_slug' => $post->region_slug,
1570
+							'city_slug' => $post->city_slug
1571
+						);
1572
+
1573
+					} else
1574
+						$post_location = geodir_get_location();
1601 1575
 
1602
-                        }
1603
-                    } else
1604
-                        $post_location = geodir_get_location();
1605
-                }
1606 1576
 
1577
+				} else {
1607 1578
 
1608
-                if (!empty($post_location)) {
1609
-                    $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : '';
1579
+					$post_location_sql = $wpdb->get_results(
1580
+						$wpdb->prepare(
1581
+							"SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1582
+							array($post->ID)
1583
+						)
1584
+					);
1585
+
1586
+					if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
1587
+
1588
+						$geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
1589
+						if (count($geodir_arr_locations) == 3) {
1590
+							$post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1591
+							$post->city_slug = str_replace(']', '', $post->city_slug);
1592
+							$post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1593
+							$post->region_slug = str_replace(']', '', $post->region_slug);
1594
+							$post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1595
+							$post->country_slug = str_replace(']', '', $post->country_slug);
1596
+
1597
+							$post_location = (object)array('country_slug' => $post->country_slug,
1598
+								'region_slug' => $post->region_slug,
1599
+								'city_slug' => $post->city_slug
1600
+							);
1601
+
1602
+						}
1603
+					} else
1604
+						$post_location = geodir_get_location();
1605
+				}
1606
+
1607
+
1608
+				if (!empty($post_location)) {
1609
+					$country_slug = isset($post_location->country_slug) ? $post_location->country_slug : '';
1610 1610
 					$region_slug = isset($post_location->region_slug) ? $post_location->region_slug : '';
1611 1611
 					$city_slug = isset($post_location->city_slug) ? $post_location->city_slug : '';
1612 1612
 					
@@ -1624,89 +1624,89 @@  discard block
 block discarded – undo
1624 1624
 					$location_slug[] = $city_slug;
1625 1625
 					
1626 1626
 					$location_request .= implode('/', $location_slug) . '/';
1627
-                }
1628
-            }
1627
+				}
1628
+			}
1629 1629
 
1630
-            if (get_option('geodir_add_categories_url')) {
1630
+			if (get_option('geodir_add_categories_url')) {
1631 1631
 
1632
-                $term_request = '';
1633
-                $taxonomies = geodir_get_taxonomies($post->post_type);
1632
+				$term_request = '';
1633
+				$taxonomies = geodir_get_taxonomies($post->post_type);
1634 1634
 
1635
-                $taxonomies = end($taxonomies);
1635
+				$taxonomies = end($taxonomies);
1636 1636
 
1637
-                if (!empty($post->default_category)) {
1638
-                    $post_terms = $post->default_category;
1639
-                } else {
1640
-                    $post_terms = '';
1641
-
1642
-                    if(isset($_POST['post_default_category']) && $_POST['post_default_category']){
1643
-                        $post_terms = absint($_POST['post_default_category']);
1644
-                    }elseif(isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
1645
-                        $post_terms = is_array($_POST['post_category'][$taxonomies]) ? $_POST['post_category'][$taxonomies] : explode(",", trim($_POST['post_category'][$taxonomies], ","));
1646
-                        $post_terms = !empty($post_terms) ? absint($post_terms[0]) : 0;
1647
-                    }elseif (isset($post->{$taxonomies})) {
1648
-                        $post_terms = explode(",", trim($post->{$taxonomies}, ","));
1649
-                        $post_terms = $post_terms[0];
1650
-                    }
1637
+				if (!empty($post->default_category)) {
1638
+					$post_terms = $post->default_category;
1639
+				} else {
1640
+					$post_terms = '';
1641
+
1642
+					if(isset($_POST['post_default_category']) && $_POST['post_default_category']){
1643
+						$post_terms = absint($_POST['post_default_category']);
1644
+					}elseif(isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
1645
+						$post_terms = is_array($_POST['post_category'][$taxonomies]) ? $_POST['post_category'][$taxonomies] : explode(",", trim($_POST['post_category'][$taxonomies], ","));
1646
+						$post_terms = !empty($post_terms) ? absint($post_terms[0]) : 0;
1647
+					}elseif (isset($post->{$taxonomies})) {
1648
+						$post_terms = explode(",", trim($post->{$taxonomies}, ","));
1649
+						$post_terms = $post_terms[0];
1650
+					}
1651 1651
 
1652
-                    if (!$post_terms)
1653
-                        $post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1652
+					if (!$post_terms)
1653
+						$post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1654 1654
 
1655
-                    if (!$post_terms) {
1656
-                        $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
1655
+					if (!$post_terms) {
1656
+						$post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
1657 1657
 
1658
-                        if ($post_terms) {
1659
-                            $post_terms = explode(",", trim($post_terms, ","));
1660
-                            $post_terms = $post_terms[0];
1661
-                        }
1662
-                    }
1663
-                }
1658
+						if ($post_terms) {
1659
+							$post_terms = explode(",", trim($post_terms, ","));
1660
+							$post_terms = $post_terms[0];
1661
+						}
1662
+					}
1663
+				}
1664 1664
 
1665
-                $term = get_term_by('id', $post_terms, $taxonomies);
1665
+				$term = get_term_by('id', $post_terms, $taxonomies);
1666 1666
 
1667
-                if (!empty($term))
1668
-                    $term_request = $term->slug;
1669
-                //$term_request = $term->slug.'/';
1670
-            }
1667
+				if (!empty($term))
1668
+					$term_request = $term->slug;
1669
+				//$term_request = $term->slug.'/';
1670
+			}
1671 1671
 
1672
-            $request_term = '';
1673
-            $listingurl_separator = '';
1674
-            //$detailurl_separator = get_option('geodir_detailurl_separator');
1675
-            $detailurl_separator = '';
1676
-            if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
1677
-                $request_term = $location_request;
1678
-                //$listingurl_separator = get_option('geodir_listingurl_separator');
1679
-                //$request_term .= $listingurl_separator.'/'.$term_request;
1680
-                $request_term .= $term_request;
1672
+			$request_term = '';
1673
+			$listingurl_separator = '';
1674
+			//$detailurl_separator = get_option('geodir_detailurl_separator');
1675
+			$detailurl_separator = '';
1676
+			if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
1677
+				$request_term = $location_request;
1678
+				//$listingurl_separator = get_option('geodir_listingurl_separator');
1679
+				//$request_term .= $listingurl_separator.'/'.$term_request;
1680
+				$request_term .= $term_request;
1681 1681
 
1682
-            } else {
1683
-                if (isset($location_request) && $location_request != '') $request_term = $location_request;
1682
+			} else {
1683
+				if (isset($location_request) && $location_request != '') $request_term = $location_request;
1684 1684
 
1685
-                if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1686
-            }
1687
-            $request_term = trim($request_term, '/');
1685
+				if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1686
+			}
1687
+			$request_term = trim($request_term, '/');
1688 1688
             
1689
-            // Fix with WPML the location terms added twice when CPT slug is translated.
1690
-            if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
1691
-                $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1692
-            }
1689
+			// Fix with WPML the location terms added twice when CPT slug is translated.
1690
+			if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
1691
+				$post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1692
+			}
1693 1693
             
1694
-            if (!empty($request_term))
1695
-                $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1696
-            else
1697
-                $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1698
-            //echo $post_link ;
1699
-        }
1700
-        // temp cache the permalink
1701
-        if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
1702
-            $gd_permalink_cache[$post->ID] = $post_link;
1703
-        }
1704
-    }
1705
-    if (isset($orig_post)) {
1706
-        $post = $orig_post;
1707
-    }
1708
-
1709
-    return $post_link;
1694
+			if (!empty($request_term))
1695
+				$post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1696
+			else
1697
+				$post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1698
+			//echo $post_link ;
1699
+		}
1700
+		// temp cache the permalink
1701
+		if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
1702
+			$gd_permalink_cache[$post->ID] = $post_link;
1703
+		}
1704
+	}
1705
+	if (isset($orig_post)) {
1706
+		$post = $orig_post;
1707
+	}
1708
+
1709
+	return $post_link;
1710 1710
 }
1711 1711
 
1712 1712
 /**
@@ -1722,99 +1722,99 @@  discard block
 block discarded – undo
1722 1722
  * @return string The term link.
1723 1723
  */
1724 1724
 function geodir_term_link($termlink, $term, $taxonomy) {
1725
-    $geodir_taxonomies = geodir_get_taxonomies('', true);
1725
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1726 1726
 
1727
-    if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
1728
-        global $geodir_add_location_url, $gd_session;
1729
-        $include_location = false;
1730
-        $request_term = array();
1731
-        $add_location_url = get_option('geodir_add_location_url');
1732
-        $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
1727
+	if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
1728
+		global $geodir_add_location_url, $gd_session;
1729
+		$include_location = false;
1730
+		$request_term = array();
1731
+		$add_location_url = get_option('geodir_add_location_url');
1732
+		$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
1733 1733
 
1734
-        $listing_slug = geodir_get_listing_slug($taxonomy);
1734
+		$listing_slug = geodir_get_listing_slug($taxonomy);
1735 1735
 
1736
-        if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
1737
-            if ($geodir_add_location_url && $add_location_url) {
1738
-                $include_location = true;
1739
-            }
1740
-        } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
1741
-            $include_location = true;
1742
-        } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
1743
-            $include_location = true;
1744
-        }
1745
-
1746
-        if ($include_location) {
1747
-            global $post;
1736
+		if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
1737
+			if ($geodir_add_location_url && $add_location_url) {
1738
+				$include_location = true;
1739
+			}
1740
+		} elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
1741
+			$include_location = true;
1742
+		} elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
1743
+			$include_location = true;
1744
+		}
1745
+
1746
+		if ($include_location) {
1747
+			global $post;
1748 1748
             
1749
-            $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1749
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1750 1750
             
1751
-            if (geodir_is_page('detail') && isset($post->country_slug)) {
1752
-                $location_terms = array(
1753
-                    'gd_country' => $post->country_slug,
1754
-                    'gd_region' => $post->region_slug,
1755
-                    'gd_city' => $post->city_slug
1756
-                );
1751
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1752
+				$location_terms = array(
1753
+					'gd_country' => $post->country_slug,
1754
+					'gd_region' => $post->region_slug,
1755
+					'gd_city' => $post->city_slug
1756
+				);
1757 1757
                 
1758
-                if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1759
-                    $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1760
-                }
1761
-            } else {
1762
-                $location_terms = geodir_get_current_location_terms('query_vars');
1763
-            }
1758
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1759
+					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1760
+				}
1761
+			} else {
1762
+				$location_terms = geodir_get_current_location_terms('query_vars');
1763
+			}
1764 1764
 
1765
-            $geodir_show_location_url = get_option('geodir_show_location_url');
1766
-            $location_terms = geodir_remove_location_terms($location_terms);
1765
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1766
+			$location_terms = geodir_remove_location_terms($location_terms);
1767 1767
 
1768
-            if (!empty($location_terms)) {
1769
-                $url_separator = '';
1768
+			if (!empty($location_terms)) {
1769
+				$url_separator = '';
1770 1770
 
1771
-                if (get_option('permalink_structure') != '') {
1772
-                    $old_listing_slug = '/' . $listing_slug . '/';
1773
-                    $request_term = implode("/", $location_terms);
1774
-                    $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1771
+				if (get_option('permalink_structure') != '') {
1772
+					$old_listing_slug = '/' . $listing_slug . '/';
1773
+					$request_term = implode("/", $location_terms);
1774
+					$new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1775 1775
 
1776
-                    $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1777
-                } else {
1778
-                    $termlink = geodir_getlink($termlink, $request_term);
1779
-                }
1780
-            }
1781
-        }
1776
+					$termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1777
+				} else {
1778
+					$termlink = geodir_getlink($termlink, $request_term);
1779
+				}
1780
+			}
1781
+		}
1782 1782
 
1783
-        // Alter the CPT slug is WPML is set to do so
1784
-        /* we can replace this with the below function
1783
+		// Alter the CPT slug is WPML is set to do so
1784
+		/* we can replace this with the below function
1785 1785
         if(function_exists('icl_object_id')){
1786 1786
             global $sitepress;
1787 1787
             $post_type = str_replace("category","",$taxonomy);
1788 1788
             $termlink = $sitepress->post_type_archive_link_filter( $termlink, $post_type);
1789 1789
         }*/
1790 1790
 
1791
-        // Alter the CPT slug if WPML is set to do so
1792
-        if (function_exists('icl_object_id')) {
1793
-            $post_types = get_option('geodir_post_types');
1794
-            $post_type = str_replace("category","",$taxonomy);
1795
-            $post_type = str_replace("_tags","",$post_type);
1796
-            $slug = $post_types[$post_type]['rewrite']['slug'];
1797
-            if (geodir_wpml_is_post_type_translated($post_type) && gd_wpml_slug_translation_turned_on($post_type)) {
1798
-                global $sitepress;
1799
-                $default_lang = $sitepress->get_default_language();
1800
-                $language_code = gd_wpml_get_lang_from_url($termlink);
1801
-                if (!$language_code ) {
1802
-                    $language_code  = $default_lang;
1803
-                }
1791
+		// Alter the CPT slug if WPML is set to do so
1792
+		if (function_exists('icl_object_id')) {
1793
+			$post_types = get_option('geodir_post_types');
1794
+			$post_type = str_replace("category","",$taxonomy);
1795
+			$post_type = str_replace("_tags","",$post_type);
1796
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1797
+			if (geodir_wpml_is_post_type_translated($post_type) && gd_wpml_slug_translation_turned_on($post_type)) {
1798
+				global $sitepress;
1799
+				$default_lang = $sitepress->get_default_language();
1800
+				$language_code = gd_wpml_get_lang_from_url($termlink);
1801
+				if (!$language_code ) {
1802
+					$language_code  = $default_lang;
1803
+				}
1804 1804
 
1805
-                $org_slug = $slug;
1806
-                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1805
+				$org_slug = $slug;
1806
+				$slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1807 1807
 
1808
-                if (!$slug) {
1809
-                    $slug = $org_slug;
1810
-                }
1808
+				if (!$slug) {
1809
+					$slug = $org_slug;
1810
+				}
1811 1811
 
1812
-                $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1813
-            }
1814
-        }
1815
-    }
1812
+				$termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1813
+			}
1814
+		}
1815
+	}
1816 1816
     
1817
-    return $termlink;
1817
+	return $termlink;
1818 1818
 }
1819 1819
 
1820 1820
 /**
@@ -1840,14 +1840,14 @@  discard block
 block discarded – undo
1840 1840
 	if (in_array($post_type, geodir_get_posttypes())) {
1841 1841
 		if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
1842 1842
 			if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1843
-                $location_terms = array(
1844
-                    'gd_country' => $post->country_slug,
1845
-                    'gd_region' => $post->region_slug,
1846
-                    'gd_city' => $post->city_slug
1847
-                );
1848
-            } else {
1849
-                $location_terms = geodir_get_current_location_terms('query_vars');
1850
-            }
1843
+				$location_terms = array(
1844
+					'gd_country' => $post->country_slug,
1845
+					'gd_region' => $post->region_slug,
1846
+					'gd_city' => $post->city_slug
1847
+				);
1848
+			} else {
1849
+				$location_terms = geodir_get_current_location_terms('query_vars');
1850
+			}
1851 1851
 			
1852 1852
 			$location_terms = geodir_remove_location_terms($location_terms);
1853 1853
 			
@@ -1879,17 +1879,17 @@  discard block
 block discarded – undo
1879 1879
  * @return void|string Label.
1880 1880
  */
1881 1881
 function get_post_type_singular_label($post_type, $echo = false, $translate = false) {
1882
-    $obj_post_type = get_post_type_object($post_type);
1883
-    if (!is_object($obj_post_type)) {
1884
-        return;
1885
-    }
1882
+	$obj_post_type = get_post_type_object($post_type);
1883
+	if (!is_object($obj_post_type)) {
1884
+		return;
1885
+	}
1886 1886
     
1887
-    $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1887
+	$label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1888 1888
     
1889
-    if ($echo)
1890
-        echo $label;
1891
-    else
1892
-        return $label;
1889
+	if ($echo)
1890
+		echo $label;
1891
+	else
1892
+		return $label;
1893 1893
 }
1894 1894
 
1895 1895
 /**
@@ -1904,19 +1904,19 @@  discard block
 block discarded – undo
1904 1904
  * @return void|string Label.
1905 1905
  */
1906 1906
 function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
1907
-    $all_postypes = geodir_get_posttypes();
1907
+	$all_postypes = geodir_get_posttypes();
1908 1908
 
1909
-    if (!in_array($post_type, $all_postypes))
1910
-        return false;
1909
+	if (!in_array($post_type, $all_postypes))
1910
+		return false;
1911 1911
 
1912
-    $obj_post_type = get_post_type_object($post_type);
1912
+	$obj_post_type = get_post_type_object($post_type);
1913 1913
     
1914
-    $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1914
+	$label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1915 1915
     
1916
-    if ($echo)
1917
-        echo $label;
1918
-    else
1919
-        return $label;
1916
+	if ($echo)
1917
+		echo $label;
1918
+	else
1919
+		return $label;
1920 1920
 }
1921 1921
 
1922 1922
 /**
@@ -1934,51 +1934,51 @@  discard block
 block discarded – undo
1934 1934
  */
1935 1935
 function geodir_term_exists($term, $taxonomy = '', $parent = 0)
1936 1936
 {
1937
-    global $wpdb;
1938
-
1939
-    $select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1940
-    $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE ";
1941
-
1942
-    if (is_int($term)) {
1943
-        if (0 == $term)
1944
-            return 0;
1945
-        $where = 't.term_id = %d';
1946
-        if (!empty($taxonomy))
1947
-            return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1948
-        else
1949
-            return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1950
-    }
1937
+	global $wpdb;
1938
+
1939
+	$select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1940
+	$tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE ";
1941
+
1942
+	if (is_int($term)) {
1943
+		if (0 == $term)
1944
+			return 0;
1945
+		$where = 't.term_id = %d';
1946
+		if (!empty($taxonomy))
1947
+			return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1948
+		else
1949
+			return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1950
+	}
1951 1951
 
1952
-    $term = trim(wp_unslash($term));
1952
+	$term = trim(wp_unslash($term));
1953 1953
 
1954
-    if ('' === $slug = sanitize_title($term))
1955
-        return 0;
1954
+	if ('' === $slug = sanitize_title($term))
1955
+		return 0;
1956 1956
 
1957
-    $where = 't.slug = %s';
1957
+	$where = 't.slug = %s';
1958 1958
 
1959
-    $where_fields = array($slug);
1960
-    if (!empty($taxonomy)) {
1961
-        $parent = (int)$parent;
1962
-        if ($parent > 0) {
1963
-            $where_fields[] = $parent;
1964
-            $else_where_fields[] = $parent;
1965
-            $where .= ' AND tt.parent = %d';
1959
+	$where_fields = array($slug);
1960
+	if (!empty($taxonomy)) {
1961
+		$parent = (int)$parent;
1962
+		if ($parent > 0) {
1963
+			$where_fields[] = $parent;
1964
+			$else_where_fields[] = $parent;
1965
+			$where .= ' AND tt.parent = %d';
1966 1966
 
1967
-        }
1967
+		}
1968 1968
 
1969
-        $where_fields[] = $taxonomy;
1969
+		$where_fields[] = $taxonomy;
1970 1970
 
1971 1971
 
1972
-        if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
1973
-            return $result;
1972
+		if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
1973
+			return $result;
1974 1974
 
1975
-        return false;
1976
-    }
1975
+		return false;
1976
+	}
1977 1977
 
1978
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1979
-        return $result;
1978
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1979
+		return $result;
1980 1980
 
1981
-    return false;
1981
+	return false;
1982 1982
 }
1983 1983
 
1984 1984
 /**
@@ -1990,7 +1990,7 @@  discard block
 block discarded – undo
1990 1990
 function geodir_get_term_icon_rebuild()
1991 1991
 {
1992 1992
 
1993
-    update_option('gd_term_icons', '');
1993
+	update_option('gd_term_icons', '');
1994 1994
 
1995 1995
 }
1996 1996
 
@@ -2008,61 +2008,61 @@  discard block
 block discarded – undo
2008 2008
  */
2009 2009
 function geodir_get_term_icon($term_id = false, $rebuild = false)
2010 2010
 {
2011
-    global $wpdb;
2012
-    if (!$rebuild) {
2013
-        $terms_icons = get_option('gd_term_icons');
2014
-    } else {
2015
-        $terms_icons = array();
2016
-    }
2017
-
2018
-    if (empty($terms_icons)) {
2019
-        $terms_icons = array();
2020
-        $default_icon_url = get_option('geodir_default_marker_icon');
2021
-        $taxonomy = geodir_get_taxonomies();
2022
-        $post_types = geodir_get_posttypes();
2023
-        $tax_arr = array();
2024
-        foreach ($post_types as $post_type) {
2025
-            $tax_arr[] = "'" . $post_type . "category'";
2026
-        }
2027
-        $tax_c = implode(',', $tax_arr);
2028
-        $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2029
-        //$terms = get_terms( $taxonomy );
2030
-
2031
-        if($terms) {
2032
-            foreach ($terms as $term) {
2033
-                $post_type = str_replace("category", "", $term->taxonomy);
2034
-                $a_terms[$post_type][] = $term;
2011
+	global $wpdb;
2012
+	if (!$rebuild) {
2013
+		$terms_icons = get_option('gd_term_icons');
2014
+	} else {
2015
+		$terms_icons = array();
2016
+	}
2035 2017
 
2036
-            }
2037
-        }
2018
+	if (empty($terms_icons)) {
2019
+		$terms_icons = array();
2020
+		$default_icon_url = get_option('geodir_default_marker_icon');
2021
+		$taxonomy = geodir_get_taxonomies();
2022
+		$post_types = geodir_get_posttypes();
2023
+		$tax_arr = array();
2024
+		foreach ($post_types as $post_type) {
2025
+			$tax_arr[] = "'" . $post_type . "category'";
2026
+		}
2027
+		$tax_c = implode(',', $tax_arr);
2028
+		$terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2029
+		//$terms = get_terms( $taxonomy );
2038 2030
 
2039
-        if($a_terms) {
2040
-            foreach ($a_terms as $pt => $t2) {
2031
+		if($terms) {
2032
+			foreach ($terms as $term) {
2033
+				$post_type = str_replace("category", "", $term->taxonomy);
2034
+				$a_terms[$post_type][] = $term;
2041 2035
 
2042
-                foreach ($t2 as $term) {
2043
-                    $term_icon = geodir_get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt);
2044
-                    if ($term_icon) {
2045
-                        $term_icon_url = $term_icon["src"];
2046
-                    } else {
2047
-                        $term_icon_url = $default_icon_url;
2048
-                    }
2049
-                    $terms_icons[$term->term_id] = $term_icon_url;
2050
-                }
2051
-            }
2052
-        }
2036
+			}
2037
+		}
2053 2038
 
2054
-        update_option('gd_term_icons', $terms_icons);
2055
-    }
2039
+		if($a_terms) {
2040
+			foreach ($a_terms as $pt => $t2) {
2056 2041
 
2057
-    if ($term_id && isset($terms_icons[$term_id])) {
2058
-        return $terms_icons[$term_id];
2059
-    } elseif ($term_id && !isset($terms_icons[$term_id])) {
2060
-        return get_option('geodir_default_marker_icon');
2061
-    }
2042
+				foreach ($t2 as $term) {
2043
+					$term_icon = geodir_get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt);
2044
+					if ($term_icon) {
2045
+						$term_icon_url = $term_icon["src"];
2046
+					} else {
2047
+						$term_icon_url = $default_icon_url;
2048
+					}
2049
+					$terms_icons[$term->term_id] = $term_icon_url;
2050
+				}
2051
+			}
2052
+		}
2053
+
2054
+		update_option('gd_term_icons', $terms_icons);
2055
+	}
2062 2056
 
2063
-    if (is_ssl()) {
2064
-        $terms_icons = str_replace("http:","https:",$terms_icons );
2065
-    }
2057
+	if ($term_id && isset($terms_icons[$term_id])) {
2058
+		return $terms_icons[$term_id];
2059
+	} elseif ($term_id && !isset($terms_icons[$term_id])) {
2060
+		return get_option('geodir_default_marker_icon');
2061
+	}
2062
+
2063
+	if (is_ssl()) {
2064
+		$terms_icons = str_replace("http:","https:",$terms_icons );
2065
+	}
2066 2066
 
2067
-    return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
2067
+	return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
2068 2068
 }
2069 2069
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +128 added lines, -128 removed lines patch added patch discarded remove patch
@@ -60,16 +60,16 @@  discard block
 block discarded – undo
60 60
                              * @since 1.0.0
61 61
                              * @param string $menu_class The menu HTML class.
62 62
                              */
63
-                            $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
63
+                            $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
64 64
                             /**
65 65
                              * Filter the menu a class.
66 66
                              *
67 67
                              * @since 1.0.0
68 68
                              */
69 69
                             $a_class = apply_filters('geodir_menu_a_class', '');
70
-                            $items .= '<li class="' . $li_class . '">
71
-									<a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '">
72
-										' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . '
70
+                            $items .= '<li class="'.$li_class.'">
71
+									<a href="' . get_post_type_archive_link($post_type).'" class="'.$a_class.'">
72
+										' . __(geodir_utf8_ucfirst($args->labels->name), 'geodirectory').'
73 73
 									</a>
74 74
 								</li>';
75 75
                         }
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
              * @since 1.0.0
89 89
              * @param string $menu_class The menu HTML class.
90 90
              */
91
-            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
91
+            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings '.$menu_class);
92 92
             /**
93 93
              * Filter the sub menu li class.
94 94
              *
95 95
              * @since 1.0.0
96 96
              * @param string $menu_class The menu HTML class.
97 97
              */
98
-            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
98
+            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item '.$menu_class);
99 99
             /**
100 100
              * Filter the sub menu ul class.
101 101
              *
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
              * @since 1.0.0
115 115
              */
116 116
             $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
117
-            $items .= '<li class="' . $li_class . '">
118
-					<a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
119
-					<ul class="' . $sub_ul_class . '">';
117
+            $items .= '<li class="'.$li_class.'">
118
+					<a href="#" class="' . $a_class.'">'.__('Listing', 'geodirectory').'</a>
119
+					<ul class="' . $sub_ul_class.'">';
120 120
             $post_types = geodir_get_posttypes('object');
121 121
 
122 122
             $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
@@ -133,9 +133,9 @@  discard block
 block discarded – undo
133 133
                                 if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
134 134
                                     $menu_class = 'current-menu-item';
135 135
 
136
-                                $items .= '<li class="' . $sub_li_class . '">
137
-														<a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '">
138
-															' . __(geodir_utf8_ucfirst($args->labels->name),'geodirectory') . '
136
+                                $items .= '<li class="'.$sub_li_class.'">
137
+														<a href="' . get_post_type_archive_link($post_type).'" class="'.$sub_a_class.'">
138
+															' . __(geodir_utf8_ucfirst($args->labels->name), 'geodirectory').'
139 139
 														</a>
140 140
 													</li>';
141 141
                             }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
              *
152 152
              * @since 1.5.9
153 153
              */
154
-            $items .= apply_filters('geodir_menu_after_sub_ul','');
154
+            $items .= apply_filters('geodir_menu_after_sub_ul', '');
155 155
             $items .= '</li>';
156 156
         }
157 157
     }
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
                                      * @since 1.0.0
185 185
                                      * @param string $menu_class The menu HTML class.
186 186
                                      */
187
-                                    $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
187
+                                    $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
188 188
                                     /**
189 189
                                      * Filter the menu a class.
190 190
                                      *
@@ -192,9 +192,9 @@  discard block
 block discarded – undo
192 192
                                      */
193 193
                                     $a_class = apply_filters('geodir_menu_a_class', '');
194 194
                                     $cpt_name = __($args->labels->singular_name, 'geodirectory');
195
-                                    $items .= '<li class="' . $li_class . '">
196
-											<a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '">
197
-												' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
195
+                                    $items .= '<li class="'.$li_class.'">
196
+											<a href="' . geodir_get_addlisting_link($post_type).'" class="'.$a_class.'">
197
+												' . sprintf(__('Add %s', 'geodirectory'), $cpt_name).'
198 198
 											</a>
199 199
 										</li>';
200 200
                                 }
@@ -218,14 +218,14 @@  discard block
 block discarded – undo
218 218
              * @since 1.0.0
219 219
              * @param string $menu_class The menu HTML class.
220 220
              */
221
-            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
221
+            $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing '.$menu_class);
222 222
             /**
223 223
              * Filter the sub menu li class.
224 224
              *
225 225
              * @since 1.0.0
226 226
              * @param string $menu_class The menu HTML class.
227 227
              */
228
-            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
228
+            $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item '.$menu_class);
229 229
             /**
230 230
              * Filter the sub menu ul class.
231 231
              *
@@ -244,9 +244,9 @@  discard block
 block discarded – undo
244 244
              * @since 1.0.0
245 245
              */
246 246
             $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
247
-            $items .= '<li  class="' . $li_class . '">
248
-					<a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
249
-					<ul class="' . $sub_ul_class . '">';
247
+            $items .= '<li  class="'.$li_class.'">
248
+					<a href="#" class="' . $a_class.'">'.__('Add Listing', 'geodirectory').'</a>
249
+					<ul class="' . $sub_ul_class.'">';
250 250
 
251 251
             $post_types = geodir_get_posttypes('object');
252 252
 
@@ -269,11 +269,11 @@  discard block
 block discarded – undo
269 269
                                          * @since 1.0.0
270 270
                                          * @param string $menu_class The menu HTML class.
271 271
                                          */
272
-                                        $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
272
+                                        $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
273 273
                                         $cpt_name = __($args->labels->singular_name, 'geodirectory');
274
-                                        $items .= '<li class="' . $sub_li_class . '">
275
-														<a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '">
276
-															' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
274
+                                        $items .= '<li class="'.$sub_li_class.'">
275
+														<a href="' . geodir_get_addlisting_link($post_type).'" class="'.$sub_a_class.'">
276
+															' . sprintf(__('Add %s', 'geodirectory'), $cpt_name).'
277 277
 														</a>
278 278
 													</li>';
279 279
                                     }
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
             }
286 286
 
287 287
             $items .= '	</ul> ';
288
-            $items .= apply_filters('geodir_menu_after_sub_ul','');
288
+            $items .= apply_filters('geodir_menu_after_sub_ul', '');
289 289
             $items .= '</li>';
290 290
 
291 291
         }
@@ -313,14 +313,14 @@  discard block
 block discarded – undo
313 313
     $geodir_theme_location = get_option('geodir_theme_location_nav');
314 314
     $geodir_theme_location_nav = array();
315 315
     if (empty($locations) && empty($geodir_theme_location)) {
316
-        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
316
+        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items()."</ul></div>", $menu);
317 317
         $geodir_theme_location_nav[] = $args['theme_location'];
318 318
         update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
319 319
     }
320 320
     //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet.
321 321
 //		$menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
322 322
     else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location))
323
-        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
323
+        $menu = str_replace("</ul></div>", geodir_add_nav_menu_items()."</ul></div>", $menu);
324 324
 
325 325
     return $menu;
326 326
 
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 
349 349
     if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
350 350
 
351
-        $items = $items . geodir_add_nav_menu_items();
351
+        $items = $items.geodir_add_nav_menu_items();
352 352
         return $items;
353 353
 
354 354
     } else {
@@ -373,12 +373,12 @@  discard block
 block discarded – undo
373 373
 
374 374
     $taxonomies = geodir_get_taxonomies();
375 375
     $taxonomies = implode("','", $taxonomies);
376
-    $taxonomies = "'" . $taxonomies . "'";
376
+    $taxonomies = "'".$taxonomies."'";
377 377
 
378 378
     $pn_categories = $wpdb->get_results(
379 379
         $wpdb->prepare(
380 380
             "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy,  $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name",
381
-            array($wpdb->terms . term_id)
381
+            array($wpdb->terms.term_id)
382 382
         )
383 383
     );
384 384
 
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
 
409 409
     if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
410 410
         if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
411
-            $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
411
+            $geodir_post_type = get_post_type((int) $_REQUEST['pid']);
412 412
         elseif (isset($_REQUEST['listing_type']))
413 413
             $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
414 414
     }
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
     if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
435 435
         $geodir_post_type = '';
436 436
 
437
-    if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
437
+    if (defined('DOING_AJAX') && isset($_REQUEST['stype'])) {
438 438
         $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
439 439
     }
440 440
 
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
      *
445 445
      * @since 1.6.9
446 446
      */
447
-    return apply_filters('geodir_get_current_posttype',$geodir_post_type);
447
+    return apply_filters('geodir_get_current_posttype', $geodir_post_type);
448 448
 }
449 449
 
450 450
 /**
@@ -458,18 +458,18 @@  discard block
 block discarded – undo
458 458
  */
459 459
 function geodir_get_default_posttype()
460 460
 {
461
-    $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
461
+    $post_types = apply_filters('geodir_get_default_posttype', geodir_get_posttypes('object'));
462 462
 
463 463
     $stype = false;
464
-    foreach ( $post_types as $post_type => $info ) {
464
+    foreach ($post_types as $post_type => $info) {
465 465
         global $wpdb;
466
-        $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
467
-        if ( $has_posts ) {
466
+        $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
467
+        if ($has_posts) {
468 468
             $stype = $post_type; break;
469 469
         }
470 470
     }
471 471
 
472
-    if(!$stype){
472
+    if (!$stype) {
473 473
         $stype = 'gd_place';
474 474
     }
475 475
 
@@ -494,14 +494,14 @@  discard block
 block discarded – undo
494 494
         switch ($output):
495 495
             case 'object':
496 496
             case 'Object':
497
-                $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
497
+                $post_types = json_decode(json_encode($post_types), FALSE); //(object)$post_types;
498 498
                 break;
499 499
             case 'array':
500 500
             case 'Array':
501
-                $post_types = (array)$post_types;
501
+                $post_types = (array) $post_types;
502 502
                 break;
503 503
 			case 'options':
504
-                $post_types = (array)$post_types;
504
+                $post_types = (array) $post_types;
505 505
 				
506 506
 				$options = array();
507 507
 				if (!empty($post_types)) {
@@ -619,15 +619,15 @@  discard block
 block discarded – undo
619 619
 
620 620
         $categories = get_terms($taxonomies);
621 621
 
622
-        $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
622
+        $html .= '<option value="0">'.__('All', 'geodirectory').'</option>';
623 623
 
624 624
         foreach ($categories as $category_obj) {
625 625
             $select_opt = '';
626 626
             if ($selected == $category_obj->term_id) {
627 627
                 $select_opt = 'selected="selected"';
628 628
             }
629
-            $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
630
-                . geodir_utf8_ucfirst($category_obj->name) . '</option>';
629
+            $html .= '<option '.$select_opt.' value="'.$category_obj->term_id.'">'
630
+                . geodir_utf8_ucfirst($category_obj->name).'</option>';
631 631
         }
632 632
 
633 633
         if ($echo)
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
     } elseif (isset($wp_query->tax_query->queries)) {
696 696
         $tax_arr = $wp_query->tax_query->queries;
697 697
         //if tax query has 'relation' set then it will break wp_list_pluck so we remove it
698
-        if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
698
+        if (isset($tax_arr['relation'])) {unset($tax_arr['relation']); }
699 699
         $taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
700 700
     }
701 701
 
@@ -749,7 +749,7 @@  discard block
 block discarded – undo
749 749
 
750 750
             if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
751 751
                 if ($cat_parent == 0) {
752
-                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
752
+                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-'.$cat_display;
753 753
                     $main_list_class = 'class="main_list_selecter"';
754 754
                 } else {
755 755
                     //$display = 'display:none';
@@ -759,7 +759,7 @@  discard block
 block discarded – undo
759 759
 
760 760
             if ($cat_display == 'checkbox' || $cat_display == 'radio') {
761 761
                 $p = 0;
762
-                $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
762
+                $out = '<div class="'.$list_class.' gd-cat-row-'.$cat_parent.'" style="margin-left:'.$p.'px;'.$display.';">';
763 763
             }
764 764
 
765 765
             foreach ($cat_terms as $cat_term) {
@@ -774,12 +774,12 @@  discard block
 block discarded – undo
774 774
                 }
775 775
 
776 776
                 if ($cat_display == 'radio')
777
-                    $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>';
777
+                    $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category['.$cat_term->taxonomy.'][]" '.$main_list_class.' alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.geodir_utf8_ucfirst($cat_term->name).'</span>';
778 778
                 elseif ($cat_display == 'select' || $cat_display == 'multiselect')
779
-                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</option>';
779
+                    $out .= '<option '.$main_list_class.' style="margin-left:'.$p.'px;" alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' >'.$term_check.geodir_utf8_ucfirst($cat_term->name).'</option>';
780 780
 
781 781
                 else {
782
-                    $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . geodir_utf8_ucfirst($cat_term->name) . '</span>';
782
+                    $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category['.$cat_term->taxonomy.'][]" '.$main_list_class.' alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.geodir_utf8_ucfirst($cat_term->name).'</span>';
783 783
                 }
784 784
 
785 785
                 // Call recurson to print sub cats
@@ -818,7 +818,7 @@  discard block
 block discarded – undo
818 818
             $cat_exclude = serialize($exclude_cats);
819 819
 
820 820
         if (isset($_REQUEST['backandedit'])) {
821
-            $post = (object)$gd_session->get('listing');
821
+            $post = (object) $gd_session->get('listing');
822 822
 
823 823
             if (!is_array($post->post_category[$cat_taxonomy]))
824 824
                 $post_category = $post->post_category[$cat_taxonomy];
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
 
851 851
             if (!empty($post_category)) {
852 852
                 $cat1 = array_filter(explode(',', $post_category));
853
-                $post_category = ',' . implode(',', $cat1) . ',';
853
+                $post_category = ','.implode(',', $cat1).',';
854 854
 
855 855
             }
856 856
 
@@ -861,7 +861,7 @@  discard block
 block discarded – undo
861 861
                 foreach ($post_category_upd as $cat) {
862 862
 
863 863
                     if (!in_array($cat, $exclude_cats) && $cat != '') {
864
-                        $post_category_change .= ',' . $cat;
864
+                        $post_category_change .= ','.$cat;
865 865
                     }
866 866
                 }
867 867
                 $post_category = $post_category_change;
@@ -873,11 +873,11 @@  discard block
 block discarded – undo
873 873
             }
874 874
         }
875 875
 
876
-        echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
876
+        echo '<input type="hidden" id="cat_limit" value="'.$cat_limit.'" name="cat_limit['.$cat_taxonomy.']"  />';
877 877
 
878
-        echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
878
+        echo '<input type="hidden" id="post_category" value="'.$post_category.'" name="post_category['.$cat_taxonomy.']"  />';
879 879
 
880
-        echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
880
+        echo '<input type="hidden" id="post_category_str" value="'.$post_category_str.'" name="post_category_str['.$cat_taxonomy.']"  />';
881 881
 
882 882
 
883 883
         ?>
@@ -896,14 +896,14 @@  discard block
 block discarded – undo
896 896
 
897 897
             function show_subcatlist(main_cat, catObj) {
898 898
                 if (main_cat != '') {
899
-					var url = '<?php echo geodir_get_ajax_url();?>';
900
-                    var cat_taxonomy = '<?php echo $cat_taxonomy;?>';
901
-                    var cat_exclude = '<?php echo base64_encode($cat_exclude);?>';
899
+					var url = '<?php echo geodir_get_ajax_url(); ?>';
900
+                    var cat_taxonomy = '<?php echo $cat_taxonomy; ?>';
901
+                    var cat_exclude = '<?php echo base64_encode($cat_exclude); ?>';
902 902
                     var cat_limit = jQuery('#' + cat_taxonomy).find('#cat_limit').val();
903
-					<?php if ((int)$cat_limit > 0) { ?>
903
+					<?php if ((int) $cat_limit > 0) { ?>
904 904
 					var selected = parseInt(jQuery('#' + cat_taxonomy).find('.cat_sublist > div.post_catlist_item').length);
905 905
 					if (cat_limit != '' && selected > 0 && selected >= cat_limit && cat_limit != 0) {
906
-						alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int)$cat_limit));?>");
906
+						alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int) $cat_limit)); ?>");
907 907
 						return false;
908 908
 					}
909 909
 					<?php } ?>
@@ -942,7 +942,7 @@  discard block
 block discarded – undo
942 942
             }
943 943
 
944 944
             function update_listing_cat(el) {
945
-                var cat_taxonomy = '<?php echo $cat_taxonomy;?>';
945
+                var cat_taxonomy = '<?php echo $cat_taxonomy; ?>';
946 946
                 var cat_ids = '';
947 947
                 var main_cat = '';
948 948
                 var sub_cat = '';
@@ -1023,7 +1023,7 @@  discard block
 block discarded – undo
1023 1023
         <div class="main_cat_list" style=" <?php if (isset($style)) {
1024 1024
             echo $style;
1025 1025
         }?> ">
1026
-            <?php geodir_get_catlist($cat_taxonomy, 0);  // print main categories list
1026
+            <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list
1027 1027
             ?>
1028 1028
         </div>
1029 1029
     <?php
@@ -1050,9 +1050,9 @@  discard block
 block discarded – undo
1050 1050
     if ($exclude != '') {
1051 1051
         $exclude_cats = maybe_unserialize(base64_decode($exclude));
1052 1052
 
1053
-        if(is_array( $exclude_cats)){
1054
-            $exclude_cats = array_map( 'intval', $exclude_cats );
1055
-        }else{
1053
+        if (is_array($exclude_cats)) {
1054
+            $exclude_cats = array_map('intval', $exclude_cats);
1055
+        } else {
1056 1056
             $exclude_cats = intval($exclude_cats);
1057 1057
         }
1058 1058
 
@@ -1066,25 +1066,25 @@  discard block
 block discarded – undo
1066 1066
         <?php $main_cat = get_term($parrent, $request_taxonomy); ?>
1067 1067
 
1068 1068
         <div class="post_catlist_item" style="border:1px solid #CCCCCC; margin:5px auto; padding:5px;">
1069
-            <img alt="move icon" src="<?php echo geodir_plugin_url() . '/geodirectory-assets/images/move.png';?>"
1069
+            <img alt="move icon" src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png'; ?>"
1070 1070
                  onclick="jQuery(this).closest('div').remove();update_listing_cat(this);" align="right"/>
1071 1071
             <?php /* ?>
1072 1072
 		<img src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png';?>" onclick="jQuery(this).closest('div').remove();show_subcatlist();" align="right" /> 
1073 1073
 		<?php */ ?>
1074 1074
 
1075
-            <input type="checkbox" value="<?php echo $main_cat->term_id;?>" class="listing_main_cat"
1075
+            <input type="checkbox" value="<?php echo $main_cat->term_id; ?>" class="listing_main_cat"
1076 1076
                    onchange="if(jQuery(this).is(':checked')){jQuery(this).closest('div').find('.post_default_category').prop('checked',false).show();}else{jQuery(this).closest('div').find('.post_default_category').prop('checked',false).hide();};update_listing_cat()"
1077 1077
                    checked="checked" disabled="disabled"/>
1078 1078
        <span> 
1079
-        <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
1079
+        <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
1080 1080
         </span>
1081 1081
             <br/>
1082 1082
 
1083 1083
             <div class="post_default_category">
1084
-                <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id;?>"
1085
-                       onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" ';?>   />
1084
+                <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id; ?>"
1085
+                       onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" '; ?>   />
1086 1086
         <span> 
1087
-        <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
1087
+        <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
1088 1088
         </span>
1089 1089
             </div>
1090 1090
 
@@ -1117,7 +1117,7 @@  discard block
 block discarded – undo
1117 1117
         $post_cat_str = $post_categories[$request_taxonomy];
1118 1118
         $post_cat_array = explode("#", $post_cat_str);
1119 1119
         if (is_array($post_cat_array)) {
1120
-            $post_cat_array = array_unique( $post_cat_array );
1120
+            $post_cat_array = array_unique($post_cat_array);
1121 1121
 
1122 1122
 			foreach ($post_cat_array as $post_cat_html) {
1123 1123
 
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
                 }
1133 1133
                 $post_sub_catid = '';
1134 1134
                 if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1135
-                    $post_sub_catid = (int)$post_cat_info[1];
1135
+                    $post_sub_catid = (int) $post_cat_info[1];
1136 1136
                 }
1137 1137
 
1138 1138
                 geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
@@ -1153,7 +1153,7 @@  discard block
 block discarded – undo
1153 1153
             }
1154 1154
 
1155 1155
             if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1156
-                $post_sub_catid = (int)$post_cat_info[1];
1156
+                $post_sub_catid = (int) $post_cat_info[1];
1157 1157
             }
1158 1158
 
1159 1159
             geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
@@ -1185,9 +1185,9 @@  discard block
 block discarded – undo
1185 1185
         if (!$selected)
1186 1186
             $option_slected = ' selected="selected" ';
1187 1187
 
1188
-        echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1188
+        echo '<select field_type="select" id="'.sanitize_text_field($cat_taxonomy).'" class="chosen_select" '.$onchange.' option-ajaxChosen="false" >';
1189 1189
 
1190
-        echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1190
+        echo '<option value="" '.$option_selected.' >'.__('Select Category', 'geodirectory').'</option>';
1191 1191
 
1192 1192
         foreach ($cat_terms as $cat_term) {
1193 1193
             $option_selected = '';
@@ -1195,10 +1195,10 @@  discard block
 block discarded – undo
1195 1195
                 $option_selected = ' selected="selected" ';
1196 1196
 
1197 1197
             // Count child terms
1198
-            $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1199
-            $has_child = !empty( $child_terms ) ? 't' : 'f';
1198
+            $child_terms = get_terms($cat_taxonomy, array('parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1));
1199
+            $has_child = !empty($child_terms) ? 't' : 'f';
1200 1200
 
1201
-            echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . geodir_utf8_ucfirst($cat_term->name) . '</option>';
1201
+            echo '<option  '.$option_selected.' alt="'.$cat_term->taxonomy.'" title="'.geodir_utf8_ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" _hc="'.$has_child.'" >'.geodir_utf8_ucfirst($cat_term->name).'</option>';
1202 1202
         }
1203 1203
         echo '</select>';
1204 1204
     }
@@ -1229,7 +1229,7 @@  discard block
 block discarded – undo
1229 1229
             2 => __('Custom field updated.', 'geodirectory'),
1230 1230
             3 => __('Custom field deleted.', 'geodirectory'),
1231 1231
             4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1232
-            5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
1232
+            5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int) $_GET['revision'], false)) : false,
1233 1233
             6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
1234 1234
             7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1235 1235
             8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
@@ -1255,7 +1255,7 @@  discard block
 block discarded – undo
1255 1255
 
1256 1256
     global $wpdb;
1257 1257
 
1258
-    $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1258
+    $menu_icon = geodir_plugin_url().'/geodirectory-assets/images/favicon.ico';
1259 1259
 
1260 1260
     if (!$listing_slug = get_option('geodir_listing_prefix'))
1261 1261
         $listing_slug = 'places';
@@ -1268,11 +1268,11 @@  discard block
 block discarded – undo
1268 1268
 
1269 1269
         $gd_placetags = array();
1270 1270
         $gd_placetags['object_type'] = 'gd_place';
1271
-        $gd_placetags['listing_slug'] = $listing_slug . '/tags';
1271
+        $gd_placetags['listing_slug'] = $listing_slug.'/tags';
1272 1272
         $gd_placetags['args'] = array(
1273 1273
             'public' => true,
1274 1274
             'hierarchical' => false,
1275
-            'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1275
+            'rewrite' => array('slug' => $listing_slug.'/tags', 'with_front' => false, 'hierarchical' => true),
1276 1276
             'query_var' => true,
1277 1277
 
1278 1278
             'labels' => array(
@@ -1366,7 +1366,7 @@  discard block
 block discarded – undo
1366 1366
             'menu_icon' => $menu_icon,
1367 1367
             'public' => true,
1368 1368
             'query_var' => true,
1369
-            'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1369
+            'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1370 1370
             'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1371 1371
             'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1372 1372
 
@@ -1399,12 +1399,12 @@  discard block
 block discarded – undo
1399 1399
         return $_REQUEST['lang'];
1400 1400
     }
1401 1401
 
1402
-    $url = str_replace(array("http://","https://"),"",$url);
1402
+    $url = str_replace(array("http://", "https://"), "", $url);
1403 1403
 
1404 1404
     // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1405
-    $site_url = str_replace(array("http://","https://"),"",site_url());
1405
+    $site_url = str_replace(array("http://", "https://"), "", site_url());
1406 1406
 
1407
-    $url = str_replace($site_url,"",$url);
1407
+    $url = str_replace($site_url, "", $url);
1408 1408
 
1409 1409
     $segments = explode('/', trim($url, '/'));
1410 1410
 
@@ -1470,9 +1470,9 @@  discard block
 block discarded – undo
1470 1470
     if (in_array($post->post_type, geodir_get_posttypes())) {
1471 1471
 
1472 1472
         // if we dont have a GD post then try to grab it
1473
-        if(!isset($post->default_category)){
1473
+        if (!isset($post->default_category)) {
1474 1474
             $gd_post = geodir_get_post_info($post->ID);
1475
-            if(!empty($gd_post)){
1475
+            if (!empty($gd_post)) {
1476 1476
                 $post = $gd_post;
1477 1477
             }
1478 1478
         }
@@ -1482,17 +1482,17 @@  discard block
 block discarded – undo
1482 1482
         $slug = $post_types[$post->post_type]['rewrite']['slug'];
1483 1483
 
1484 1484
         // Alter the CPT slug if WPML is set to do so
1485
-        if(geodir_wpml_is_post_type_translated($post->post_type)){
1486
-            if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1485
+        if (geodir_wpml_is_post_type_translated($post->post_type)) {
1486
+            if (gd_wpml_slug_translation_turned_on($post->post_type) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1487 1487
 
1488 1488
                 $org_slug = $slug;
1489
-                $slug = apply_filters( 'wpml_translate_single_string',
1489
+                $slug = apply_filters('wpml_translate_single_string',
1490 1490
                     $slug,
1491 1491
                     'WordPress',
1492
-                    'URL slug: ' . $slug,
1492
+                    'URL slug: '.$slug,
1493 1493
                     $language_code);
1494 1494
 
1495
-                if(!$slug){$slug = $org_slug;}
1495
+                if (!$slug) {$slug = $org_slug; }
1496 1496
 
1497 1497
             }
1498 1498
         }
@@ -1514,11 +1514,11 @@  discard block
 block discarded – undo
1514 1514
         }
1515 1515
 
1516 1516
         $post_link = trailingslashit(
1517
-            preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1517
+            preg_replace("/".preg_quote($slug, "/")."/", $slug."/%gd_taxonomy%", $post_link, 1)
1518 1518
         );
1519 1519
 
1520 1520
         if ($fix_url) {
1521
-            $post_link = $site_url . $post_link;
1521
+            $post_link = $site_url.$post_link;
1522 1522
         }
1523 1523
 
1524 1524
         if (isset($comment_post_cache[$post->ID])) {
@@ -1537,12 +1537,12 @@  discard block
 block discarded – undo
1537 1537
             $ID = $post->ID;
1538 1538
             $post2 = $wpdb->get_row(
1539 1539
                 $wpdb->prepare(
1540
-                    "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1540
+                    "SELECT * from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ",
1541 1541
                     array($post->ID)
1542 1542
                 )
1543 1543
             );
1544 1544
 
1545
-            $post = (object)array_merge((array)$post, (array)$post2);
1545
+            $post = (object) array_merge((array) $post, (array) $post2);
1546 1546
 
1547 1547
             $comment_post_cache[$post->ID] = $post;
1548 1548
         }
@@ -1551,7 +1551,7 @@  discard block
 block discarded – undo
1551 1551
 
1552 1552
         if (false !== strpos($post_link, '%gd_taxonomy%')) {
1553 1553
 
1554
-            if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1554
+            if (apply_filters("geodir_add_location_url_to_url", get_option('geodir_add_location_url'), $post->post_type, $post)) {
1555 1555
                 $location_request = '';
1556 1556
 
1557 1557
 
@@ -1565,7 +1565,7 @@  discard block
 block discarded – undo
1565 1565
                         $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1566 1566
                         $post->country_slug = str_replace(']', '', $post->country_slug);
1567 1567
 
1568
-                        $post_location = (object)array('country_slug' => $post->country_slug,
1568
+                        $post_location = (object) array('country_slug' => $post->country_slug,
1569 1569
                             'region_slug' => $post->region_slug,
1570 1570
                             'city_slug' => $post->city_slug
1571 1571
                         );
@@ -1578,7 +1578,7 @@  discard block
 block discarded – undo
1578 1578
 
1579 1579
                     $post_location_sql = $wpdb->get_results(
1580 1580
                         $wpdb->prepare(
1581
-                            "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1581
+                            "SELECT post_locations from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ",
1582 1582
                             array($post->ID)
1583 1583
                         )
1584 1584
                     );
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
                             $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1595 1595
                             $post->country_slug = str_replace(']', '', $post->country_slug);
1596 1596
 
1597
-                            $post_location = (object)array('country_slug' => $post->country_slug,
1597
+                            $post_location = (object) array('country_slug' => $post->country_slug,
1598 1598
                                 'region_slug' => $post->region_slug,
1599 1599
                                 'city_slug' => $post->city_slug
1600 1600
                             );
@@ -1623,7 +1623,7 @@  discard block
 block discarded – undo
1623 1623
 					}
1624 1624
 					$location_slug[] = $city_slug;
1625 1625
 					
1626
-					$location_request .= implode('/', $location_slug) . '/';
1626
+					$location_request .= implode('/', $location_slug).'/';
1627 1627
                 }
1628 1628
             }
1629 1629
 
@@ -1639,9 +1639,9 @@  discard block
 block discarded – undo
1639 1639
                 } else {
1640 1640
                     $post_terms = '';
1641 1641
 
1642
-                    if(isset($_POST['post_default_category']) && $_POST['post_default_category']){
1642
+                    if (isset($_POST['post_default_category']) && $_POST['post_default_category']) {
1643 1643
                         $post_terms = absint($_POST['post_default_category']);
1644
-                    }elseif(isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
1644
+                    }elseif (isset($_POST['post_category'][$taxonomies]) && $_POST['post_category'][$taxonomies]) {
1645 1645
                         $post_terms = is_array($_POST['post_category'][$taxonomies]) ? $_POST['post_category'][$taxonomies] : explode(",", trim($_POST['post_category'][$taxonomies], ","));
1646 1646
                         $post_terms = !empty($post_terms) ? absint($post_terms[0]) : 0;
1647 1647
                     }elseif (isset($post->{$taxonomies})) {
@@ -1687,14 +1687,14 @@  discard block
 block discarded – undo
1687 1687
             $request_term = trim($request_term, '/');
1688 1688
             
1689 1689
             // Fix with WPML the location terms added twice when CPT slug is translated.
1690
-            if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
1690
+            if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/'.$request_term.$detailurl_separator) !== false) {
1691 1691
                 $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1692 1692
             }
1693 1693
             
1694 1694
             if (!empty($request_term))
1695
-                $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1695
+                $post_link = str_replace('%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
1696 1696
             else
1697
-                $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1697
+                $post_link = str_replace('/%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
1698 1698
             //echo $post_link ;
1699 1699
         }
1700 1700
         // temp cache the permalink
@@ -1769,9 +1769,9 @@  discard block
 block discarded – undo
1769 1769
                 $url_separator = '';
1770 1770
 
1771 1771
                 if (get_option('permalink_structure') != '') {
1772
-                    $old_listing_slug = '/' . $listing_slug . '/';
1772
+                    $old_listing_slug = '/'.$listing_slug.'/';
1773 1773
                     $request_term = implode("/", $location_terms);
1774
-                    $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1774
+                    $new_listing_slug = '/'.$listing_slug.'/'.$request_term.'/';
1775 1775
 
1776 1776
                     $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1777 1777
                 } else {
@@ -1791,25 +1791,25 @@  discard block
 block discarded – undo
1791 1791
         // Alter the CPT slug if WPML is set to do so
1792 1792
         if (function_exists('icl_object_id')) {
1793 1793
             $post_types = get_option('geodir_post_types');
1794
-            $post_type = str_replace("category","",$taxonomy);
1795
-            $post_type = str_replace("_tags","",$post_type);
1794
+            $post_type = str_replace("category", "", $taxonomy);
1795
+            $post_type = str_replace("_tags", "", $post_type);
1796 1796
             $slug = $post_types[$post_type]['rewrite']['slug'];
1797 1797
             if (geodir_wpml_is_post_type_translated($post_type) && gd_wpml_slug_translation_turned_on($post_type)) {
1798 1798
                 global $sitepress;
1799 1799
                 $default_lang = $sitepress->get_default_language();
1800 1800
                 $language_code = gd_wpml_get_lang_from_url($termlink);
1801
-                if (!$language_code ) {
1802
-                    $language_code  = $default_lang;
1801
+                if (!$language_code) {
1802
+                    $language_code = $default_lang;
1803 1803
                 }
1804 1804
 
1805 1805
                 $org_slug = $slug;
1806
-                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1806
+                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: '.$slug, $language_code);
1807 1807
 
1808 1808
                 if (!$slug) {
1809 1809
                     $slug = $org_slug;
1810 1810
                 }
1811 1811
 
1812
-                $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1812
+                $termlink = trailingslashit(preg_replace("/".preg_quote($org_slug, "/")."/", $slug, $termlink, 1));
1813 1813
             }
1814 1814
         }
1815 1815
     }
@@ -1839,7 +1839,7 @@  discard block
 block discarded – undo
1839 1839
 	
1840 1840
 	if (in_array($post_type, geodir_get_posttypes())) {
1841 1841
 		if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
1842
-			if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1842
+			if (geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1843 1843
                 $location_terms = array(
1844 1844
                     'gd_country' => $post->country_slug,
1845 1845
                     'gd_region' => $post->region_slug,
@@ -1856,7 +1856,7 @@  discard block
 block discarded – undo
1856 1856
 					$location_terms = implode("/", $location_terms);
1857 1857
 					$location_terms = rtrim($location_terms, '/');
1858 1858
 					
1859
-					$link .= urldecode($location_terms) . '/';
1859
+					$link .= urldecode($location_terms).'/';
1860 1860
 				} else {
1861 1861
 					$link = geodir_getlink($link, $location_terms);
1862 1862
 				}
@@ -1944,9 +1944,9 @@  discard block
 block discarded – undo
1944 1944
             return 0;
1945 1945
         $where = 't.term_id = %d';
1946 1946
         if (!empty($taxonomy))
1947
-            return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1947
+            return $wpdb->get_row($wpdb->prepare($tax_select.$where." AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1948 1948
         else
1949
-            return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1949
+            return $wpdb->get_var($wpdb->prepare($select.$where, $term));
1950 1950
     }
1951 1951
 
1952 1952
     $term = trim(wp_unslash($term));
@@ -1958,7 +1958,7 @@  discard block
 block discarded – undo
1958 1958
 
1959 1959
     $where_fields = array($slug);
1960 1960
     if (!empty($taxonomy)) {
1961
-        $parent = (int)$parent;
1961
+        $parent = (int) $parent;
1962 1962
         if ($parent > 0) {
1963 1963
             $where_fields[] = $parent;
1964 1964
             $else_where_fields[] = $parent;
@@ -2022,13 +2022,13 @@  discard block
 block discarded – undo
2022 2022
         $post_types = geodir_get_posttypes();
2023 2023
         $tax_arr = array();
2024 2024
         foreach ($post_types as $post_type) {
2025
-            $tax_arr[] = "'" . $post_type . "category'";
2025
+            $tax_arr[] = "'".$post_type."category'";
2026 2026
         }
2027 2027
         $tax_c = implode(',', $tax_arr);
2028 2028
         $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2029 2029
         //$terms = get_terms( $taxonomy );
2030 2030
 
2031
-        if($terms) {
2031
+        if ($terms) {
2032 2032
             foreach ($terms as $term) {
2033 2033
                 $post_type = str_replace("category", "", $term->taxonomy);
2034 2034
                 $a_terms[$post_type][] = $term;
@@ -2036,7 +2036,7 @@  discard block
 block discarded – undo
2036 2036
             }
2037 2037
         }
2038 2038
 
2039
-        if($a_terms) {
2039
+        if ($a_terms) {
2040 2040
             foreach ($a_terms as $pt => $t2) {
2041 2041
 
2042 2042
                 foreach ($t2 as $term) {
@@ -2061,7 +2061,7 @@  discard block
 block discarded – undo
2061 2061
     }
2062 2062
 
2063 2063
     if (is_ssl()) {
2064
-        $terms_icons = str_replace("http:","https:",$terms_icons );
2064
+        $terms_icons = str_replace("http:", "https:", $terms_icons);
2065 2065
     }
2066 2066
 
2067 2067
     return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
Please login to merge, or discard this patch.
geodirectory-functions/map-functions/map_functions.php 2 patches
Indentation   +238 added lines, -238 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@  discard block
 block discarded – undo
15 15
  */
16 16
 function  geodir_init_map_jason()
17 17
 {
18
-    global $map_jason;
19
-    $map_jason = array();
18
+	global $map_jason;
19
+	$map_jason = array();
20 20
 }
21 21
 
22 22
 /**
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
  */
29 29
 function geodir_init_map_canvas_array()
30 30
 {
31
-    global $map_canvas_arr;
32
-    $map_canvas_arr = array();
31
+	global $map_canvas_arr;
32
+	$map_canvas_arr = array();
33 33
 }
34 34
 
35 35
 
@@ -50,63 +50,63 @@  discard block
 block discarded – undo
50 50
  */
51 51
 function create_marker_jason_of_posts($post)
52 52
 {
53
-    global $wpdb, $map_jason, $add_post_in_marker_array, $geodir_cat_icons, $gd_marker_sizes;
53
+	global $wpdb, $map_jason, $add_post_in_marker_array, $geodir_cat_icons, $gd_marker_sizes;
54 54
 
55
-    if (!empty($post) && isset($post->ID) && $post->ID > 0 && (is_main_query() || $add_post_in_marker_array) && $post->marker_json != '') {
55
+	if (!empty($post) && isset($post->ID) && $post->ID > 0 && (is_main_query() || $add_post_in_marker_array) && $post->marker_json != '') {
56 56
 
57
-        if(isset($map_jason[$post->ID])){return null;}
57
+		if(isset($map_jason[$post->ID])){return null;}
58 58
 
59
-        $srcharr = array("'", "/", "-", '"', '\\');
60
-        $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
59
+		$srcharr = array("'", "/", "-", '"', '\\');
60
+		$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
61 61
 
62 62
 
63
-        $geodir_cat_icons = geodir_get_term_icon();
64
-        $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$post->default_category]) ? $geodir_cat_icons[$post->default_category] : '';
63
+		$geodir_cat_icons = geodir_get_term_icon();
64
+		$icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$post->default_category]) ? $geodir_cat_icons[$post->default_category] : '';
65 65
 
66
-        $post_title = $post->post_title;
67
-        $title = str_replace($srcharr, $replarr, $post_title);
66
+		$post_title = $post->post_title;
67
+		$title = str_replace($srcharr, $replarr, $post_title);
68 68
 
69
-        if (is_ssl()) {
70
-            $icon = str_replace("http:","https:",$icon );
71
-        }
69
+		if (is_ssl()) {
70
+			$icon = str_replace("http:","https:",$icon );
71
+		}
72 72
         
73
-        if ($icon != '') {
74
-            $gd_marker_sizes = empty($gd_marker_sizes) ? array() : $gd_marker_sizes;
73
+		if ($icon != '') {
74
+			$gd_marker_sizes = empty($gd_marker_sizes) ? array() : $gd_marker_sizes;
75 75
             
76
-            if (isset($gd_marker_sizes[$icon])) {
77
-                $icon_size = $gd_marker_sizes[$icon];
78
-            } else {
79
-                $icon_size = geodir_get_marker_size($icon);
80
-                $gd_marker_sizes[$icon] = $icon_size;
81
-            }               
82
-        } else {
83
-            $icon_size = array('w' => 36, 'h' => 45);
84
-        }
85
-
86
-        $post_json = '{"id":"' . $post->ID
87
-                     . '","t": "' . $title
88
-                     . '","lt": "' . $post->post_latitude
89
-                     . '","ln": "' . $post->post_longitude
90
-                     . '","mk_id":"' . $post->ID . '_' . $post->default_category
91
-                     . '","i":"' . $icon
92
-                     . '","w":"' . $icon_size['w']
93
-                     . '","h":"' . $icon_size['h'] . '"}';
94
-
95
-        /**
96
-         * Filter the json data when creating output for post json marker..
97
-         *
98
-         * @since 1.5.7
99
-         * @param string $post_json JSON representation of the post marker info.
100
-         * @param object $post The post object.
101
-         */
102
-        $post_map_json = apply_filters('geodir_create_marker_jason_of_posts',$post_json, $post);
103
-
104
-        // only assign it if it has a value
105
-        if($post_map_json){
106
-            $map_jason[$post->ID] = $post_map_json;
107
-        }
108
-
109
-    }
76
+			if (isset($gd_marker_sizes[$icon])) {
77
+				$icon_size = $gd_marker_sizes[$icon];
78
+			} else {
79
+				$icon_size = geodir_get_marker_size($icon);
80
+				$gd_marker_sizes[$icon] = $icon_size;
81
+			}               
82
+		} else {
83
+			$icon_size = array('w' => 36, 'h' => 45);
84
+		}
85
+
86
+		$post_json = '{"id":"' . $post->ID
87
+					 . '","t": "' . $title
88
+					 . '","lt": "' . $post->post_latitude
89
+					 . '","ln": "' . $post->post_longitude
90
+					 . '","mk_id":"' . $post->ID . '_' . $post->default_category
91
+					 . '","i":"' . $icon
92
+					 . '","w":"' . $icon_size['w']
93
+					 . '","h":"' . $icon_size['h'] . '"}';
94
+
95
+		/**
96
+		 * Filter the json data when creating output for post json marker..
97
+		 *
98
+		 * @since 1.5.7
99
+		 * @param string $post_json JSON representation of the post marker info.
100
+		 * @param object $post The post object.
101
+		 */
102
+		$post_map_json = apply_filters('geodir_create_marker_jason_of_posts',$post_json, $post);
103
+
104
+		// only assign it if it has a value
105
+		if($post_map_json){
106
+			$map_jason[$post->ID] = $post_map_json;
107
+		}
108
+
109
+	}
110 110
 }
111 111
 
112 112
 /**
@@ -119,67 +119,67 @@  discard block
 block discarded – undo
119 119
  */
120 120
 function send_marker_jason_to_js()
121 121
 {
122
-    global $map_jason, $map_canvas_arr;
123
-
124
-    if (is_array($map_canvas_arr) && !empty($map_canvas_arr)) {
125
-        foreach ($map_canvas_arr as $canvas => $jason) {
126
-            if (is_array($map_jason) && !empty($map_jason)) {
127
-
128
-                // on details page only show the main marker on the map
129
-                if(geodir_is_page('detail')){
130
-                    global $post;
131
-                    if(isset($map_jason[$post->ID])){
132
-                        $map_jason = array($map_jason[$post->ID]);
133
-                    }
134
-                }
135
-                $canvas_jason = $canvas . "_jason";
136
-                $map_canvas_arr[$canvas] = array_unique($map_jason);
137
-                unset($cat_content_info);
138
-                $cat_content_info[] = implode(',', $map_canvas_arr[$canvas]);
139
-                $totalcount = count(array_unique($map_jason));
140
-                if (!empty($cat_content_info)) {
141
-                    $json_content = substr(implode(',', $cat_content_info), 1);
142
-                    $json_content = htmlentities($json_content, ENT_QUOTES, get_option('blog_charset')); // Quotes in csv title import break maps - FIXED by kiran on 2nd March, 2016
143
-                    $json_content = wp_specialchars_decode($json_content); // Fixed #post-320722 on 2016-12-08
144
-                    $canvas_jason = '[{"totalcount":"' . $totalcount . '",' . $json_content . ']';
145
-                } else {
146
-                    $canvas_jason = '[{"totalcount":"0"}]';
147
-                }
148
-                $map_canvas_jason_args = array($canvas . '_jason' => $canvas_jason);
149
-
150
-                /**
151
-                 * Filter the send_marker_jason_to_js() function map canvas json args.
152
-                 *
153
-                 * You can use this filter to modify map canvas json args.
154
-                 *
155
-                 * @since 1.0.0
156
-                 * @package GeoDirectory
157
-                 * @param string $canvas Map canvas array key.
158
-                 * @param array $map_canvas_jason_args Map canvas args.
159
-                 */
160
-                $map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_' . $canvas, $map_canvas_jason_args);
161
-
162
-                wp_localize_script('geodir-map-widget', $canvas . '_jason_args', $map_canvas_jason_args);
163
-            } else {
164
-                $canvas_jason = '[{"totalcount":"0"}]';
165
-                $map_canvas_jason_args = array($canvas . '_jason' => $canvas_jason);
166
-
167
-                /**
168
-                 * Filter the send_marker_jason_to_js() function map canvas json args.
169
-                 *
170
-                 * You can use this filter to modify map canvas json args.
171
-                 *
172
-                 * @since 1.0.0
173
-                 * @package GeoDirectory
174
-                 * @param string $canvas Map canvas array key.
175
-                 * @param array $map_canvas_jason_args Map canvas args.
176
-                 */
177
-                $map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_' . $canvas, $map_canvas_jason_args);
178
-                wp_localize_script('geodir-map-widget', $canvas . '_jason_args', $map_canvas_jason_args);
179
-            }
180
-        }
181
-
182
-    }
122
+	global $map_jason, $map_canvas_arr;
123
+
124
+	if (is_array($map_canvas_arr) && !empty($map_canvas_arr)) {
125
+		foreach ($map_canvas_arr as $canvas => $jason) {
126
+			if (is_array($map_jason) && !empty($map_jason)) {
127
+
128
+				// on details page only show the main marker on the map
129
+				if(geodir_is_page('detail')){
130
+					global $post;
131
+					if(isset($map_jason[$post->ID])){
132
+						$map_jason = array($map_jason[$post->ID]);
133
+					}
134
+				}
135
+				$canvas_jason = $canvas . "_jason";
136
+				$map_canvas_arr[$canvas] = array_unique($map_jason);
137
+				unset($cat_content_info);
138
+				$cat_content_info[] = implode(',', $map_canvas_arr[$canvas]);
139
+				$totalcount = count(array_unique($map_jason));
140
+				if (!empty($cat_content_info)) {
141
+					$json_content = substr(implode(',', $cat_content_info), 1);
142
+					$json_content = htmlentities($json_content, ENT_QUOTES, get_option('blog_charset')); // Quotes in csv title import break maps - FIXED by kiran on 2nd March, 2016
143
+					$json_content = wp_specialchars_decode($json_content); // Fixed #post-320722 on 2016-12-08
144
+					$canvas_jason = '[{"totalcount":"' . $totalcount . '",' . $json_content . ']';
145
+				} else {
146
+					$canvas_jason = '[{"totalcount":"0"}]';
147
+				}
148
+				$map_canvas_jason_args = array($canvas . '_jason' => $canvas_jason);
149
+
150
+				/**
151
+				 * Filter the send_marker_jason_to_js() function map canvas json args.
152
+				 *
153
+				 * You can use this filter to modify map canvas json args.
154
+				 *
155
+				 * @since 1.0.0
156
+				 * @package GeoDirectory
157
+				 * @param string $canvas Map canvas array key.
158
+				 * @param array $map_canvas_jason_args Map canvas args.
159
+				 */
160
+				$map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_' . $canvas, $map_canvas_jason_args);
161
+
162
+				wp_localize_script('geodir-map-widget', $canvas . '_jason_args', $map_canvas_jason_args);
163
+			} else {
164
+				$canvas_jason = '[{"totalcount":"0"}]';
165
+				$map_canvas_jason_args = array($canvas . '_jason' => $canvas_jason);
166
+
167
+				/**
168
+				 * Filter the send_marker_jason_to_js() function map canvas json args.
169
+				 *
170
+				 * You can use this filter to modify map canvas json args.
171
+				 *
172
+				 * @since 1.0.0
173
+				 * @package GeoDirectory
174
+				 * @param string $canvas Map canvas array key.
175
+				 * @param array $map_canvas_jason_args Map canvas args.
176
+				 */
177
+				$map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_' . $canvas, $map_canvas_jason_args);
178
+				wp_localize_script('geodir-map-widget', $canvas . '_jason_args', $map_canvas_jason_args);
179
+			}
180
+		}
181
+
182
+	}
183 183
 }
184 184
 
185 185
 /**
@@ -202,99 +202,99 @@  discard block
 block discarded – undo
202 202
  */
203 203
 function home_map_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = true, $pading = 0, $map_canvas_name = '', $child_collapse, $is_home_map = false)
204 204
 {
205
-    global $cat_count, $geodir_cat_icons, $gd_session;
205
+	global $cat_count, $geodir_cat_icons, $gd_session;
206 206
 
207
-    $exclude_categories = get_option('geodir_exclude_cat_on_map');
208
-    $exclude_categories_new = get_option('geodir_exclude_cat_on_map_upgrade');
207
+	$exclude_categories = get_option('geodir_exclude_cat_on_map');
208
+	$exclude_categories_new = get_option('geodir_exclude_cat_on_map_upgrade');
209 209
 
210
-    // check if exclude categories saved before fix of categories identical names
211
-    if ($exclude_categories_new) {
212
-        $gd_cat_taxonomy = isset($cat_taxonomy[0]) ? $cat_taxonomy[0] : '';
213
-        $exclude_categories = !empty($exclude_categories[$gd_cat_taxonomy]) && is_array($exclude_categories[$gd_cat_taxonomy]) ? array_unique($exclude_categories[$gd_cat_taxonomy]) : array();
214
-    }
210
+	// check if exclude categories saved before fix of categories identical names
211
+	if ($exclude_categories_new) {
212
+		$gd_cat_taxonomy = isset($cat_taxonomy[0]) ? $cat_taxonomy[0] : '';
213
+		$exclude_categories = !empty($exclude_categories[$gd_cat_taxonomy]) && is_array($exclude_categories[$gd_cat_taxonomy]) ? array_unique($exclude_categories[$gd_cat_taxonomy]) : array();
214
+	}
215 215
 
216
-    $exclude_cat_str = implode(',', $exclude_categories);
216
+	$exclude_cat_str = implode(',', $exclude_categories);
217 217
 
218
-    if ($exclude_cat_str == '') {
219
-        $exclude_cat_str = '0';
220
-    }
218
+	if ($exclude_cat_str == '') {
219
+		$exclude_cat_str = '0';
220
+	}
221 221
 
222
-    $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'exclude' => $exclude_cat_str, 'hide_empty ' => $hide_empty));
222
+	$cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'exclude' => $exclude_cat_str, 'hide_empty ' => $hide_empty));
223 223
 
224
-    if ($hide_empty) {
225
-        $cat_terms = geodir_filter_empty_terms($cat_terms);
226
-    }
224
+	if ($hide_empty) {
225
+		$cat_terms = geodir_filter_empty_terms($cat_terms);
226
+	}
227 227
 
228
-    $main_list_class = '';
229
-    //If there are terms, start displaying
230
-    if (count($cat_terms) > 0) {
231
-        //Displaying as a list
232
-        $p = $pading * 15;
233
-        $pading++;
228
+	$main_list_class = '';
229
+	//If there are terms, start displaying
230
+	if (count($cat_terms) > 0) {
231
+		//Displaying as a list
232
+		$p = $pading * 15;
233
+		$pading++;
234 234
 
235
-        if ($cat_parent == 0) {
236
-            $list_class = 'main_list';
237
-            $display = '';
238
-        } else {
239
-            $list_class = 'sub_list';
240
-            $display = !$child_collapse ? '' : 'display:none';
241
-        }
235
+		if ($cat_parent == 0) {
236
+			$list_class = 'main_list';
237
+			$display = '';
238
+		} else {
239
+			$list_class = 'sub_list';
240
+			$display = !$child_collapse ? '' : 'display:none';
241
+		}
242 242
 
243
-        $out = '<ul class="treeview ' . $list_class . '" style="margin-left:' . $p . 'px;' . $display . ';">';
243
+		$out = '<ul class="treeview ' . $list_class . '" style="margin-left:' . $p . 'px;' . $display . ';">';
244 244
 
245
-        $geodir_cat_icons = geodir_get_term_icon();
245
+		$geodir_cat_icons = geodir_get_term_icon();
246 246
 
247
-        $geodir_default_map_search_pt = (get_option('geodir_default_map_search_pt')) ? get_option('geodir_default_map_search_pt') :  'gd_place';
248
-        if ($is_home_map && $homemap_catlist_ptype = $gd_session->get('homemap_catlist_ptype')) {
249
-            $geodir_default_map_search_pt = $homemap_catlist_ptype;
250
-        }
251
-        $post_type = isset($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : $geodir_default_map_search_pt);
247
+		$geodir_default_map_search_pt = (get_option('geodir_default_map_search_pt')) ? get_option('geodir_default_map_search_pt') :  'gd_place';
248
+		if ($is_home_map && $homemap_catlist_ptype = $gd_session->get('homemap_catlist_ptype')) {
249
+			$geodir_default_map_search_pt = $homemap_catlist_ptype;
250
+		}
251
+		$post_type = isset($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : $geodir_default_map_search_pt);
252 252
         
253
-        foreach ($cat_terms as $cat_term):
254
-            $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$cat_term->term_id]) ? $geodir_cat_icons[$cat_term->term_id] : '';
255
-
256
-            if (!in_array($cat_term->term_id, $exclude_categories)):
257
-                //Secret sauce.  Function calls itself to display child elements, if any
258
-                $checked = 'checked="checked"';
259
-
260
-                // Untick the category by default on home map
261
-                if ($is_home_map && $geodir_home_map_untick = get_option('geodir_home_map_untick')) {
262
-                    if (geodir_wpml_is_taxonomy_translated($post_type . 'category')) { // if WPML
263
-                        global $sitepress;
264
-                        $default_lang = $sitepress->get_default_language();
265
-                        $term_id = icl_object_id($cat_term->term_id, $post_type.'category', true, $default_lang);
266
-                    }else{
267
-                        $term_id = $cat_term->term_id;
268
-                    }
269
-                    if (!empty($geodir_home_map_untick) && in_array($post_type . '_' . $term_id, $geodir_home_map_untick)) {
270
-                        $checked = '';
271
-                    }
272
-                }
273
-
274
-                $term_check = '<input type="checkbox" ' . $checked . ' id="' .$map_canvas_name.'_tick_cat_'. $cat_term->term_id . '" class="group_selector ' . $main_list_class . '"';
275
-                $term_check .= ' name="' . $map_canvas_name . '_cat[]" ';
276
-                $term_check .= '  title="' . esc_attr(geodir_utf8_ucfirst($cat_term->name)) . '" value="' . $cat_term->term_id . '" onclick="javascript:build_map_ajax_search_param(\'' . $map_canvas_name . '\',false, this)">';
277
-                $term_img = '<img height="15" width="15" alt="' . $cat_term->taxonomy . '" src="' . $icon . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '"/>';
278
-                $out .= '<li>' . $term_check . '<label for="' . $map_canvas_name.'_tick_cat_'. $cat_term->term_id . '">' . $term_img . geodir_utf8_ucfirst($cat_term->name) . '</label><i class="fa fa-long-arrow-down"></i>';
279
-
280
-            endif;
281
-
282
-
283
-            // get sub category by recursion
284
-            $out .= home_map_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading, $map_canvas_name, $child_collapse, $is_home_map);
285
-
286
-            $out .= '</li>';
287
-
288
-        endforeach;
289
-
290
-        $out .= '</ul>';
291
-
292
-        return $out;
293
-    } else {
294
-        if ($cat_parent == 0)
295
-            return _e('No category', 'geodirectory');
296
-    }
297
-    return;
253
+		foreach ($cat_terms as $cat_term):
254
+			$icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$cat_term->term_id]) ? $geodir_cat_icons[$cat_term->term_id] : '';
255
+
256
+			if (!in_array($cat_term->term_id, $exclude_categories)):
257
+				//Secret sauce.  Function calls itself to display child elements, if any
258
+				$checked = 'checked="checked"';
259
+
260
+				// Untick the category by default on home map
261
+				if ($is_home_map && $geodir_home_map_untick = get_option('geodir_home_map_untick')) {
262
+					if (geodir_wpml_is_taxonomy_translated($post_type . 'category')) { // if WPML
263
+						global $sitepress;
264
+						$default_lang = $sitepress->get_default_language();
265
+						$term_id = icl_object_id($cat_term->term_id, $post_type.'category', true, $default_lang);
266
+					}else{
267
+						$term_id = $cat_term->term_id;
268
+					}
269
+					if (!empty($geodir_home_map_untick) && in_array($post_type . '_' . $term_id, $geodir_home_map_untick)) {
270
+						$checked = '';
271
+					}
272
+				}
273
+
274
+				$term_check = '<input type="checkbox" ' . $checked . ' id="' .$map_canvas_name.'_tick_cat_'. $cat_term->term_id . '" class="group_selector ' . $main_list_class . '"';
275
+				$term_check .= ' name="' . $map_canvas_name . '_cat[]" ';
276
+				$term_check .= '  title="' . esc_attr(geodir_utf8_ucfirst($cat_term->name)) . '" value="' . $cat_term->term_id . '" onclick="javascript:build_map_ajax_search_param(\'' . $map_canvas_name . '\',false, this)">';
277
+				$term_img = '<img height="15" width="15" alt="' . $cat_term->taxonomy . '" src="' . $icon . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '"/>';
278
+				$out .= '<li>' . $term_check . '<label for="' . $map_canvas_name.'_tick_cat_'. $cat_term->term_id . '">' . $term_img . geodir_utf8_ucfirst($cat_term->name) . '</label><i class="fa fa-long-arrow-down"></i>';
279
+
280
+			endif;
281
+
282
+
283
+			// get sub category by recursion
284
+			$out .= home_map_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading, $map_canvas_name, $child_collapse, $is_home_map);
285
+
286
+			$out .= '</li>';
287
+
288
+		endforeach;
289
+
290
+		$out .= '</ul>';
291
+
292
+		return $out;
293
+	} else {
294
+		if ($cat_parent == 0)
295
+			return _e('No category', 'geodirectory');
296
+	}
297
+	return;
298 298
 }
299 299
 
300 300
 /**
@@ -306,19 +306,19 @@  discard block
 block discarded – undo
306 306
  * @return string The map API provider name.
307 307
  */
308 308
 function geodir_map_name() {
309
-    $geodir_map_name = get_option('geodir_load_map', 'google');
309
+	$geodir_map_name = get_option('geodir_load_map', 'google');
310 310
     
311
-    if (!in_array($geodir_map_name, array('none', 'auto', 'google', 'osm'))) {
312
-        $geodir_map_name = 'auto';
313
-    }
314
-
315
-    /**
316
-     * Filter the map JS API provider name.
317
-     *
318
-     * @since 1.6.1
319
-     * @param string $geodir_map_name The map API provider name.
320
-     */
321
-    return apply_filters('geodir_map_name', $geodir_map_name);
311
+	if (!in_array($geodir_map_name, array('none', 'auto', 'google', 'osm'))) {
312
+		$geodir_map_name = 'auto';
313
+	}
314
+
315
+	/**
316
+	 * Filter the map JS API provider name.
317
+	 *
318
+	 * @since 1.6.1
319
+	 * @param string $geodir_map_name The map API provider name.
320
+	 */
321
+	return apply_filters('geodir_map_name', $geodir_map_name);
322 322
 }
323 323
 
324 324
 /**
@@ -334,48 +334,48 @@  discard block
 block discarded – undo
334 334
  * @return array The icon size.
335 335
  */
336 336
 function geodir_get_marker_size($icon, $default_size = array('w' => 36, 'h' => 45)) {
337
-    global $gd_marker_sizes;
337
+	global $gd_marker_sizes;
338 338
     
339
-    if (empty($gd_marker_sizes)) {
340
-        $gd_marker_sizes = array();
341
-    }
339
+	if (empty($gd_marker_sizes)) {
340
+		$gd_marker_sizes = array();
341
+	}
342 342
       
343
-    if (!empty($gd_marker_sizes[$icon])) {
344
-        return $gd_marker_sizes[$icon];
345
-    }
343
+	if (!empty($gd_marker_sizes[$icon])) {
344
+		return $gd_marker_sizes[$icon];
345
+	}
346 346
     
347
-    if (empty($icon)) {
348
-        $gd_marker_sizes[$icon] = $default_size;
347
+	if (empty($icon)) {
348
+		$gd_marker_sizes[$icon] = $default_size;
349 349
         
350
-        return $default_size;
351
-    }
350
+		return $default_size;
351
+	}
352 352
     
353
-    $icon_url = $icon;
353
+	$icon_url = $icon;
354 354
     
355
-    $uploads = wp_upload_dir(); // Array of key => value pairs
355
+	$uploads = wp_upload_dir(); // Array of key => value pairs
356 356
       
357
-    if (!path_is_absolute($icon)) {
358
-        $icon = str_replace($uploads['baseurl'], $uploads['basedir'], $icon);
359
-    }
357
+	if (!path_is_absolute($icon)) {
358
+		$icon = str_replace($uploads['baseurl'], $uploads['basedir'], $icon);
359
+	}
360 360
     
361
-    if (!path_is_absolute($icon) && strpos($icon, WP_CONTENT_URL) !== false) {
362
-        $icon = str_replace(WP_CONTENT_URL, WP_CONTENT_DIR, $icon);
363
-    }
361
+	if (!path_is_absolute($icon) && strpos($icon, WP_CONTENT_URL) !== false) {
362
+		$icon = str_replace(WP_CONTENT_URL, WP_CONTENT_DIR, $icon);
363
+	}
364 364
     
365
-    $sizes = array();
366
-    if (is_file($icon) && file_exists($icon)) {
367
-        $size = getimagesize(trim($icon));
365
+	$sizes = array();
366
+	if (is_file($icon) && file_exists($icon)) {
367
+		$size = getimagesize(trim($icon));
368 368
         
369
-        if (!empty($size[0]) && !empty($size[1])) {
370
-            $sizes = array('w' => $size[0], 'h' => $size[1]);
371
-        }
372
-    }
369
+		if (!empty($size[0]) && !empty($size[1])) {
370
+			$sizes = array('w' => $size[0], 'h' => $size[1]);
371
+		}
372
+	}
373 373
     
374
-    $sizes = !empty($sizes) ? $sizes : $default_size;
374
+	$sizes = !empty($sizes) ? $sizes : $default_size;
375 375
     
376
-    $gd_marker_sizes[$icon_url] = $sizes;
376
+	$gd_marker_sizes[$icon_url] = $sizes;
377 377
     
378
-    return $sizes;
378
+	return $sizes;
379 379
 }
380 380
 
381 381
 add_action('wp_footer', 'geodir_map_load_script', 10);
@@ -387,8 +387,8 @@  discard block
 block discarded – undo
387 387
  * @package GeoDirectory
388 388
  */
389 389
 function geodir_map_load_script() {
390
-    if (in_array(geodir_map_name(), array('auto', 'google')) && wp_script_is( 'geodirectory-googlemap-script', 'done')) {
391
-        $plugin_url = geodir_plugin_url();
390
+	if (in_array(geodir_map_name(), array('auto', 'google')) && wp_script_is( 'geodirectory-googlemap-script', 'done')) {
391
+		$plugin_url = geodir_plugin_url();
392 392
 ?>
393 393
 <script type="text/javascript">
394 394
 if (!(window.google && typeof google.maps !== 'undefined')) {
@@ -403,5 +403,5 @@  discard block
 block discarded – undo
403 403
 }
404 404
 </script>
405 405
 <?php
406
-    }
406
+	}
407 407
 }
408 408
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     if (!empty($post) && isset($post->ID) && $post->ID > 0 && (is_main_query() || $add_post_in_marker_array) && $post->marker_json != '') {
56 56
 
57
-        if(isset($map_jason[$post->ID])){return null;}
57
+        if (isset($map_jason[$post->ID])) {return null; }
58 58
 
59 59
         $srcharr = array("'", "/", "-", '"', '\\');
60 60
         $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $title = str_replace($srcharr, $replarr, $post_title);
68 68
 
69 69
         if (is_ssl()) {
70
-            $icon = str_replace("http:","https:",$icon );
70
+            $icon = str_replace("http:", "https:", $icon);
71 71
         }
72 72
         
73 73
         if ($icon != '') {
@@ -83,14 +83,14 @@  discard block
 block discarded – undo
83 83
             $icon_size = array('w' => 36, 'h' => 45);
84 84
         }
85 85
 
86
-        $post_json = '{"id":"' . $post->ID
87
-                     . '","t": "' . $title
88
-                     . '","lt": "' . $post->post_latitude
89
-                     . '","ln": "' . $post->post_longitude
90
-                     . '","mk_id":"' . $post->ID . '_' . $post->default_category
91
-                     . '","i":"' . $icon
92
-                     . '","w":"' . $icon_size['w']
93
-                     . '","h":"' . $icon_size['h'] . '"}';
86
+        $post_json = '{"id":"'.$post->ID
87
+                     . '","t": "'.$title
88
+                     . '","lt": "'.$post->post_latitude
89
+                     . '","ln": "'.$post->post_longitude
90
+                     . '","mk_id":"'.$post->ID.'_'.$post->default_category
91
+                     . '","i":"'.$icon
92
+                     . '","w":"'.$icon_size['w']
93
+                     . '","h":"'.$icon_size['h'].'"}';
94 94
 
95 95
         /**
96 96
          * Filter the json data when creating output for post json marker..
@@ -99,10 +99,10 @@  discard block
 block discarded – undo
99 99
          * @param string $post_json JSON representation of the post marker info.
100 100
          * @param object $post The post object.
101 101
          */
102
-        $post_map_json = apply_filters('geodir_create_marker_jason_of_posts',$post_json, $post);
102
+        $post_map_json = apply_filters('geodir_create_marker_jason_of_posts', $post_json, $post);
103 103
 
104 104
         // only assign it if it has a value
105
-        if($post_map_json){
105
+        if ($post_map_json) {
106 106
             $map_jason[$post->ID] = $post_map_json;
107 107
         }
108 108
 
@@ -126,13 +126,13 @@  discard block
 block discarded – undo
126 126
             if (is_array($map_jason) && !empty($map_jason)) {
127 127
 
128 128
                 // on details page only show the main marker on the map
129
-                if(geodir_is_page('detail')){
129
+                if (geodir_is_page('detail')) {
130 130
                     global $post;
131
-                    if(isset($map_jason[$post->ID])){
131
+                    if (isset($map_jason[$post->ID])) {
132 132
                         $map_jason = array($map_jason[$post->ID]);
133 133
                     }
134 134
                 }
135
-                $canvas_jason = $canvas . "_jason";
135
+                $canvas_jason = $canvas."_jason";
136 136
                 $map_canvas_arr[$canvas] = array_unique($map_jason);
137 137
                 unset($cat_content_info);
138 138
                 $cat_content_info[] = implode(',', $map_canvas_arr[$canvas]);
@@ -141,11 +141,11 @@  discard block
 block discarded – undo
141 141
                     $json_content = substr(implode(',', $cat_content_info), 1);
142 142
                     $json_content = htmlentities($json_content, ENT_QUOTES, get_option('blog_charset')); // Quotes in csv title import break maps - FIXED by kiran on 2nd March, 2016
143 143
                     $json_content = wp_specialchars_decode($json_content); // Fixed #post-320722 on 2016-12-08
144
-                    $canvas_jason = '[{"totalcount":"' . $totalcount . '",' . $json_content . ']';
144
+                    $canvas_jason = '[{"totalcount":"'.$totalcount.'",'.$json_content.']';
145 145
                 } else {
146 146
                     $canvas_jason = '[{"totalcount":"0"}]';
147 147
                 }
148
-                $map_canvas_jason_args = array($canvas . '_jason' => $canvas_jason);
148
+                $map_canvas_jason_args = array($canvas.'_jason' => $canvas_jason);
149 149
 
150 150
                 /**
151 151
                  * Filter the send_marker_jason_to_js() function map canvas json args.
@@ -157,12 +157,12 @@  discard block
 block discarded – undo
157 157
                  * @param string $canvas Map canvas array key.
158 158
                  * @param array $map_canvas_jason_args Map canvas args.
159 159
                  */
160
-                $map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_' . $canvas, $map_canvas_jason_args);
160
+                $map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_'.$canvas, $map_canvas_jason_args);
161 161
 
162
-                wp_localize_script('geodir-map-widget', $canvas . '_jason_args', $map_canvas_jason_args);
162
+                wp_localize_script('geodir-map-widget', $canvas.'_jason_args', $map_canvas_jason_args);
163 163
             } else {
164 164
                 $canvas_jason = '[{"totalcount":"0"}]';
165
-                $map_canvas_jason_args = array($canvas . '_jason' => $canvas_jason);
165
+                $map_canvas_jason_args = array($canvas.'_jason' => $canvas_jason);
166 166
 
167 167
                 /**
168 168
                  * Filter the send_marker_jason_to_js() function map canvas json args.
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
                  * @param string $canvas Map canvas array key.
175 175
                  * @param array $map_canvas_jason_args Map canvas args.
176 176
                  */
177
-                $map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_' . $canvas, $map_canvas_jason_args);
178
-                wp_localize_script('geodir-map-widget', $canvas . '_jason_args', $map_canvas_jason_args);
177
+                $map_canvas_jason_args = apply_filters('geodir_map_canvas_jason_'.$canvas, $map_canvas_jason_args);
178
+                wp_localize_script('geodir-map-widget', $canvas.'_jason_args', $map_canvas_jason_args);
179 179
             }
180 180
         }
181 181
 
@@ -240,11 +240,11 @@  discard block
 block discarded – undo
240 240
             $display = !$child_collapse ? '' : 'display:none';
241 241
         }
242 242
 
243
-        $out = '<ul class="treeview ' . $list_class . '" style="margin-left:' . $p . 'px;' . $display . ';">';
243
+        $out = '<ul class="treeview '.$list_class.'" style="margin-left:'.$p.'px;'.$display.';">';
244 244
 
245 245
         $geodir_cat_icons = geodir_get_term_icon();
246 246
 
247
-        $geodir_default_map_search_pt = (get_option('geodir_default_map_search_pt')) ? get_option('geodir_default_map_search_pt') :  'gd_place';
247
+        $geodir_default_map_search_pt = (get_option('geodir_default_map_search_pt')) ? get_option('geodir_default_map_search_pt') : 'gd_place';
248 248
         if ($is_home_map && $homemap_catlist_ptype = $gd_session->get('homemap_catlist_ptype')) {
249 249
             $geodir_default_map_search_pt = $homemap_catlist_ptype;
250 250
         }
@@ -259,23 +259,23 @@  discard block
 block discarded – undo
259 259
 
260 260
                 // Untick the category by default on home map
261 261
                 if ($is_home_map && $geodir_home_map_untick = get_option('geodir_home_map_untick')) {
262
-                    if (geodir_wpml_is_taxonomy_translated($post_type . 'category')) { // if WPML
262
+                    if (geodir_wpml_is_taxonomy_translated($post_type.'category')) { // if WPML
263 263
                         global $sitepress;
264 264
                         $default_lang = $sitepress->get_default_language();
265 265
                         $term_id = icl_object_id($cat_term->term_id, $post_type.'category', true, $default_lang);
266
-                    }else{
266
+                    } else {
267 267
                         $term_id = $cat_term->term_id;
268 268
                     }
269
-                    if (!empty($geodir_home_map_untick) && in_array($post_type . '_' . $term_id, $geodir_home_map_untick)) {
269
+                    if (!empty($geodir_home_map_untick) && in_array($post_type.'_'.$term_id, $geodir_home_map_untick)) {
270 270
                         $checked = '';
271 271
                     }
272 272
                 }
273 273
 
274
-                $term_check = '<input type="checkbox" ' . $checked . ' id="' .$map_canvas_name.'_tick_cat_'. $cat_term->term_id . '" class="group_selector ' . $main_list_class . '"';
275
-                $term_check .= ' name="' . $map_canvas_name . '_cat[]" ';
276
-                $term_check .= '  title="' . esc_attr(geodir_utf8_ucfirst($cat_term->name)) . '" value="' . $cat_term->term_id . '" onclick="javascript:build_map_ajax_search_param(\'' . $map_canvas_name . '\',false, this)">';
277
-                $term_img = '<img height="15" width="15" alt="' . $cat_term->taxonomy . '" src="' . $icon . '" title="' . geodir_utf8_ucfirst($cat_term->name) . '"/>';
278
-                $out .= '<li>' . $term_check . '<label for="' . $map_canvas_name.'_tick_cat_'. $cat_term->term_id . '">' . $term_img . geodir_utf8_ucfirst($cat_term->name) . '</label><i class="fa fa-long-arrow-down"></i>';
274
+                $term_check = '<input type="checkbox" '.$checked.' id="'.$map_canvas_name.'_tick_cat_'.$cat_term->term_id.'" class="group_selector '.$main_list_class.'"';
275
+                $term_check .= ' name="'.$map_canvas_name.'_cat[]" ';
276
+                $term_check .= '  title="'.esc_attr(geodir_utf8_ucfirst($cat_term->name)).'" value="'.$cat_term->term_id.'" onclick="javascript:build_map_ajax_search_param(\''.$map_canvas_name.'\',false, this)">';
277
+                $term_img = '<img height="15" width="15" alt="'.$cat_term->taxonomy.'" src="'.$icon.'" title="'.geodir_utf8_ucfirst($cat_term->name).'"/>';
278
+                $out .= '<li>'.$term_check.'<label for="'.$map_canvas_name.'_tick_cat_'.$cat_term->term_id.'">'.$term_img.geodir_utf8_ucfirst($cat_term->name).'</label><i class="fa fa-long-arrow-down"></i>';
279 279
 
280 280
             endif;
281 281
 
@@ -387,19 +387,19 @@  discard block
 block discarded – undo
387 387
  * @package GeoDirectory
388 388
  */
389 389
 function geodir_map_load_script() {
390
-    if (in_array(geodir_map_name(), array('auto', 'google')) && wp_script_is( 'geodirectory-googlemap-script', 'done')) {
390
+    if (in_array(geodir_map_name(), array('auto', 'google')) && wp_script_is('geodirectory-googlemap-script', 'done')) {
391 391
         $plugin_url = geodir_plugin_url();
392 392
 ?>
393 393
 <script type="text/javascript">
394 394
 if (!(window.google && typeof google.maps !== 'undefined')) {
395
-    var css = document.createElement("link");css.setAttribute("rel","stylesheet");css.setAttribute("type","text/css");css.setAttribute("media","all");css.setAttribute("id","geodirectory-leaflet-style-css");css.setAttribute("href","<?php echo $plugin_url;?>/geodirectory-assets/leaflet/leaflet.css?ver=<?php echo GEODIRECTORY_VERSION;?>");
395
+    var css = document.createElement("link");css.setAttribute("rel","stylesheet");css.setAttribute("type","text/css");css.setAttribute("media","all");css.setAttribute("id","geodirectory-leaflet-style-css");css.setAttribute("href","<?php echo $plugin_url; ?>/geodirectory-assets/leaflet/leaflet.css?ver=<?php echo GEODIRECTORY_VERSION; ?>");
396 396
     document.getElementsByTagName("head")[0].appendChild(css);
397
-    var css = document.createElement("link");css.setAttribute("rel","stylesheet");css.setAttribute("type","text/css");css.setAttribute("media","all");css.setAttribute("id","geodirectory-leaflet-routing-style");css.setAttribute("href","<?php echo $plugin_url;?>/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css?ver=<?php echo GEODIRECTORY_VERSION;?>");
397
+    var css = document.createElement("link");css.setAttribute("rel","stylesheet");css.setAttribute("type","text/css");css.setAttribute("media","all");css.setAttribute("id","geodirectory-leaflet-routing-style");css.setAttribute("href","<?php echo $plugin_url; ?>/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css?ver=<?php echo GEODIRECTORY_VERSION; ?>");
398 398
     document.getElementsByTagName("head")[0].appendChild(css);
399
-    document.write('<' + 'script id="geodirectory-leaflet-script" src="<?php echo $plugin_url;?>/geodirectory-assets/leaflet/leaflet.min.js?ver=<?php echo GEODIRECTORY_VERSION;?>" type="text/javascript"><' + '/script>');
400
-    document.write('<' + 'script id="geodirectory-leaflet-geo-script" src="<?php echo $plugin_url;?>/geodirectory-assets/leaflet/osm.geocode.min.js?ver=<?php echo GEODIRECTORY_VERSION;?>" type="text/javascript"><' + '/script>');
401
-    document.write('<' + 'script id="geodirectory-leaflet-routing-script" src="<?php echo $plugin_url;?>/geodirectory-assets/leaflet/routing/leaflet-routing-machine.min.js?ver=<?php echo GEODIRECTORY_VERSION;?>" type="text/javascript"><' + '/script>');
402
-    document.write('<' + 'script id="geodirectory-o-overlappingmarker-script" src="<?php echo $plugin_url;?>/geodirectory-assets/jawj/oms-leaflet.min.js?ver=<?php echo GEODIRECTORY_VERSION;?>" type="text/javascript"><' + '/script>');
399
+    document.write('<' + 'script id="geodirectory-leaflet-script" src="<?php echo $plugin_url; ?>/geodirectory-assets/leaflet/leaflet.min.js?ver=<?php echo GEODIRECTORY_VERSION; ?>" type="text/javascript"><' + '/script>');
400
+    document.write('<' + 'script id="geodirectory-leaflet-geo-script" src="<?php echo $plugin_url; ?>/geodirectory-assets/leaflet/osm.geocode.min.js?ver=<?php echo GEODIRECTORY_VERSION; ?>" type="text/javascript"><' + '/script>');
401
+    document.write('<' + 'script id="geodirectory-leaflet-routing-script" src="<?php echo $plugin_url; ?>/geodirectory-assets/leaflet/routing/leaflet-routing-machine.min.js?ver=<?php echo GEODIRECTORY_VERSION; ?>" type="text/javascript"><' + '/script>');
402
+    document.write('<' + 'script id="geodirectory-o-overlappingmarker-script" src="<?php echo $plugin_url; ?>/geodirectory-assets/jawj/oms-leaflet.min.js?ver=<?php echo GEODIRECTORY_VERSION; ?>" type="text/javascript"><' + '/script>');
403 403
 }
404 404
 </script>
405 405
 <?php
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 1 patch
Spacing   +1297 added lines, -1297 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 /**
11 11
  * Get All Plugin functions from WordPress
12 12
  */
13
-include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
13
+include_once(ABSPATH.'wp-admin/includes/plugin.php');
14 14
 
15 15
 /*-----------------------------------------------------------------------------------*/
16 16
 /* Helper functions */
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
  * @return string example url eg: http://wpgeo.directory/wp-content/plugins/geodirectory
28 28
  */
29 29
 function geodir_plugin_url() {
30
-	return plugins_url( '', dirname( __FILE__ ) );
30
+	return plugins_url('', dirname(__FILE__));
31 31
 	/*
32 32
 	if ( is_ssl() ) :
33 33
 		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
48 48
  */
49 49
 function geodir_plugin_path() {
50
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
51
-		return dirname( dirname( __FILE__ ) );
50
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
51
+		return dirname(dirname(__FILE__));
52 52
 	} else {
53
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
53
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
54 54
 	}
55 55
 }
56 56
 
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
  * @return bool true or false.
66 66
  * @todo    check if this is faster than normal WP check and remove if not.
67 67
  */
68
-function geodir_is_plugin_active( $plugin ) {
69
-	$active_plugins = get_option( 'active_plugins' );
70
-	foreach ( $active_plugins as $key => $active_plugin ) {
71
-		if ( strstr( $active_plugin, $plugin ) ) {
68
+function geodir_is_plugin_active($plugin) {
69
+	$active_plugins = get_option('active_plugins');
70
+	foreach ($active_plugins as $key => $active_plugin) {
71
+		if (strstr($active_plugin, $plugin)) {
72 72
 			return true;
73 73
 		}
74 74
 	}
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
  *
91 91
  * @return bool|int|string the formatted date.
92 92
  */
93
-function geodir_get_formated_date( $date ) {
94
-	return mysql2date( get_option( 'date_format' ), $date );
93
+function geodir_get_formated_date($date) {
94
+	return mysql2date(get_option('date_format'), $date);
95 95
 }
96 96
 
97 97
 /**
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
  *
108 108
  * @return bool|int|string the formatted time.
109 109
  */
110
-function geodir_get_formated_time( $time ) {
111
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
110
+function geodir_get_formated_time($time) {
111
+	return mysql2date(get_option('time_format'), $time, $translate = true);
112 112
 }
113 113
 
114 114
 
@@ -126,35 +126,35 @@  discard block
 block discarded – undo
126 126
  *
127 127
  * @return string Formatted link.
128 128
  */
129
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
130
-	if ( $use_existing_arguments ) {
129
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
130
+	if ($use_existing_arguments) {
131 131
 		$params = $params + $_GET;
132 132
 	}
133
-	if ( ! $params ) {
133
+	if (!$params) {
134 134
 		return $url;
135 135
 	}
136 136
 	$link = $url;
137
-	if ( strpos( $link, '?' ) === false ) {
137
+	if (strpos($link, '?') === false) {
138 138
 		$link .= '?';
139 139
 	} //If there is no '?' add one at the end
140
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
140
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
141 141
 		$link .= '&amp;';
142 142
 	} //If there is no '&' at the END, add one.
143
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
143
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
144 144
 		$link .= '&';
145 145
 	} //If there is no '&' at the END, add one.
146 146
 
147 147
 	$params_arr = array();
148
-	foreach ( $params as $key => $value ) {
149
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
150
-			foreach ( $value as $val ) {
151
-				$params_arr[] = $key . '[]=' . urlencode( $val );
148
+	foreach ($params as $key => $value) {
149
+		if (gettype($value) == 'array') { //Handle array data properly
150
+			foreach ($value as $val) {
151
+				$params_arr[] = $key.'[]='.urlencode($val);
152 152
 			}
153 153
 		} else {
154
-			$params_arr[] = $key . '=' . urlencode( $value );
154
+			$params_arr[] = $key.'='.urlencode($value);
155 155
 		}
156 156
 	}
157
-	$link .= implode( '&', $params_arr );
157
+	$link .= implode('&', $params_arr);
158 158
 
159 159
 	return $link;
160 160
 }
@@ -171,18 +171,18 @@  discard block
 block discarded – undo
171 171
  *
172 172
  * @return string Listing page url if valid. Otherwise home url will be returned.
173 173
  */
174
-function geodir_get_addlisting_link( $post_type = '' ) {
174
+function geodir_get_addlisting_link($post_type = '') {
175 175
 	global $wpdb;
176 176
 
177 177
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
178 178
 	$check_pkg = 1;
179
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
179
+	if (post_type_exists($post_type) && $check_pkg) {
180 180
 
181
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
181
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
182 182
 
183
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
183
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
184 184
 	} else {
185
-		return get_bloginfo( 'url' );
185
+		return get_bloginfo('url');
186 186
 	}
187 187
 }
188 188
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
211 211
 		// To build the entire URI we need to prepend the protocol, and the http host
212 212
 		// to the URI string.
213
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
213
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
214 214
 	} else {
215 215
 		/*
216 216
 		 * Since we do not have REQUEST_URI to work with, we will assume we are
@@ -219,11 +219,11 @@  discard block
 block discarded – undo
219 219
 		 *
220 220
 		 * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
221 221
 		 */
222
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
222
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
223 223
 		
224 224
 		// If the query string exists append it to the URI string
225 225
 		if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
226
-			$pageURL .= '?' . $_SERVER['QUERY_STRING'];
226
+			$pageURL .= '?'.$_SERVER['QUERY_STRING'];
227 227
 		}
228 228
 	}
229 229
 	
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 *
235 235
 	 * @param string $pageURL The URL of the current page.
236 236
 	 */
237
-	return apply_filters( 'geodir_curPageURL', $pageURL );
237
+	return apply_filters('geodir_curPageURL', $pageURL);
238 238
 }
239 239
 
240 240
 /**
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
  *
250 250
  * @return string Cleaned variable.
251 251
  */
252
-function geodir_clean( $string ) {
252
+function geodir_clean($string) {
253 253
 
254
-	$string = trim( strip_tags( stripslashes( $string ) ) );
255
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
256
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
257
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
254
+	$string = trim(strip_tags(stripslashes($string)));
255
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
256
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
257
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
258 258
 
259 259
 	return $string;
260 260
 }
@@ -268,13 +268,13 @@  discard block
 block discarded – undo
268 268
  */
269 269
 function geodir_get_weekday() {
270 270
 	return array(
271
-		__( 'Sunday', 'geodirectory' ),
272
-		__( 'Monday', 'geodirectory' ),
273
-		__( 'Tuesday', 'geodirectory' ),
274
-		__( 'Wednesday', 'geodirectory' ),
275
-		__( 'Thursday', 'geodirectory' ),
276
-		__( 'Friday', 'geodirectory' ),
277
-		__( 'Saturday', 'geodirectory' )
271
+		__('Sunday', 'geodirectory'),
272
+		__('Monday', 'geodirectory'),
273
+		__('Tuesday', 'geodirectory'),
274
+		__('Wednesday', 'geodirectory'),
275
+		__('Thursday', 'geodirectory'),
276
+		__('Friday', 'geodirectory'),
277
+		__('Saturday', 'geodirectory')
278 278
 	);
279 279
 }
280 280
 
@@ -287,11 +287,11 @@  discard block
 block discarded – undo
287 287
  */
288 288
 function geodir_get_weeks() {
289 289
 	return array(
290
-		__( 'First', 'geodirectory' ),
291
-		__( 'Second', 'geodirectory' ),
292
-		__( 'Third', 'geodirectory' ),
293
-		__( 'Fourth', 'geodirectory' ),
294
-		__( 'Last', 'geodirectory' )
290
+		__('First', 'geodirectory'),
291
+		__('Second', 'geodirectory'),
292
+		__('Third', 'geodirectory'),
293
+		__('Fourth', 'geodirectory'),
294
+		__('Last', 'geodirectory')
295 295
 	);
296 296
 }
297 297
 
@@ -310,112 +310,112 @@  discard block
 block discarded – undo
310 310
  *
311 311
  * @return bool If valid returns true. Otherwise false.
312 312
  */
313
-function geodir_is_page( $gdpage = '' ) {
313
+function geodir_is_page($gdpage = '') {
314 314
 
315 315
 	global $wp_query, $post, $wp;
316 316
 	//if(!is_admin()):
317 317
 
318
-	switch ( $gdpage ):
318
+	switch ($gdpage):
319 319
 		case 'add-listing':
320 320
 
321
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
321
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
322 322
 				return true;
323
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
323
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
324 324
 				return true;
325 325
 			}
326 326
 
327 327
 			break;
328 328
 		case 'preview':
329
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
330
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
329
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
330
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
331 331
 			) {
332 332
 				return true;
333 333
 			}
334 334
 			break;
335 335
 		case 'listing-success':
336
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
336
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
337 337
 				return true;
338 338
 			}
339 339
 			break;
340 340
 		case 'detail':
341
-			$post_type = get_query_var( 'post_type' );
342
-			if ( is_array( $post_type ) ) {
343
-				$post_type = reset( $post_type );
341
+			$post_type = get_query_var('post_type');
342
+			if (is_array($post_type)) {
343
+				$post_type = reset($post_type);
344 344
 			}
345
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
345
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
346 346
 				return true;
347 347
 			}
348 348
 			break;
349 349
 		case 'pt':
350
-			$post_type = get_query_var( 'post_type' );
351
-			if ( is_array( $post_type ) ) {
352
-				$post_type = reset( $post_type );
350
+			$post_type = get_query_var('post_type');
351
+			if (is_array($post_type)) {
352
+				$post_type = reset($post_type);
353 353
 			}
354
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
354
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
355 355
 				return true;
356 356
 			}
357 357
 
358 358
 			break;
359 359
 		case 'listing':
360
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
360
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
361 361
 				global $current_term, $taxonomy, $term;
362 362
 
363 363
 				return true;
364 364
 			}
365
-			$post_type = get_query_var( 'post_type' );
366
-			if ( is_array( $post_type ) ) {
367
-				$post_type = reset( $post_type );
365
+			$post_type = get_query_var('post_type');
366
+			if (is_array($post_type)) {
367
+				$post_type = reset($post_type);
368 368
 			}
369
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
369
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
370 370
 				return true;
371 371
 			}
372 372
 
373 373
 			break;
374 374
 		case 'home':
375 375
 
376
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
376
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
377 377
 				return true;
378 378
 			}
379 379
 
380 380
 			break;
381 381
 		case 'location':
382
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
382
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
383 383
 				return true;
384 384
 			}
385 385
 			break;
386 386
 		case 'author':
387
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
387
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
388 388
 				return true;
389 389
 			}
390 390
 
391
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
392
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
391
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
392
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
393 393
 					return true;
394 394
 				}
395 395
 			}
396 396
 			break;
397 397
 		case 'search':
398
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
398
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
399 399
 				return true;
400 400
 			}
401 401
 			break;
402 402
 		case 'info':
403
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
403
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
404 404
 				return true;
405 405
 			}
406 406
 			break;
407 407
 		case 'login':
408
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
408
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
409 409
 				return true;
410 410
 			}
411 411
 			break;
412 412
 		case 'checkout':
413
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
413
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
414 414
 				return true;
415 415
 			}
416 416
 			break;
417 417
 		case 'invoices':
418
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
418
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
419 419
 				return true;
420 420
 			}
421 421
 			break;
@@ -440,25 +440,25 @@  discard block
 block discarded – undo
440 440
  *
441 441
  * @param object $wp WordPress object.
442 442
  */
443
-function geodir_set_is_geodir_page( $wp ) {
444
-	if ( ! is_admin() ) {
443
+function geodir_set_is_geodir_page($wp) {
444
+	if (!is_admin()) {
445 445
 		//$wp->query_vars['gd_is_geodir_page'] = false;
446 446
 		//print_r()
447
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
447
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
448 448
 				'preview',
449 449
 				'page',
450 450
 				'paged',
451 451
 				'cpage'
452
-			) )
452
+			))
453 453
 		) {
454
-			if ( geodir_is_page( 'home' ) ) {
454
+			if (geodir_is_page('home')) {
455 455
 				$wp->query_vars['gd_is_geodir_page'] = true;
456 456
 			}
457 457
 
458 458
 
459 459
 		}
460 460
 
461
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
461
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
462 462
 			if (
463 463
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
464 464
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -467,26 +467,26 @@  discard block
 block discarded – undo
467 467
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
468 468
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
469 469
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
470
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
471
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
470
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
471
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
472 472
 			) {
473 473
 				$wp->query_vars['gd_is_geodir_page'] = true;
474 474
 			}
475 475
 		}
476 476
 
477
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
478
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
477
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
478
+			$page = get_page_by_path($wp->query_vars['pagename']);
479 479
 
480
-			if ( ! empty( $page ) && (
480
+			if (!empty($page) && (
481 481
 					$page->ID == geodir_add_listing_page_id()
482 482
 					|| $page->ID == geodir_preview_page_id()
483 483
 					|| $page->ID == geodir_success_page_id()
484 484
 					|| $page->ID == geodir_location_page_id()
485
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
486
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
487
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
488
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
489
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
485
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
486
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
487
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
488
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
489
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
490 490
 				)
491 491
 			) {
492 492
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -494,20 +494,20 @@  discard block
 block discarded – undo
494 494
 		}
495 495
 
496 496
 
497
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
497
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
498 498
 			$requested_post_type = $wp->query_vars['post_type'];
499 499
 			// check if this post type is geodirectory post types
500 500
 			$post_type_array = geodir_get_posttypes();
501
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
501
+			if (in_array($requested_post_type, $post_type_array)) {
502 502
 				$wp->query_vars['gd_is_geodir_page'] = true;
503 503
 			}
504 504
 		}
505 505
 
506
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
507
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
508
-			if ( ! empty( $geodir_taxonomis ) ) {
509
-				foreach ( $geodir_taxonomis as $taxonomy ) {
510
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
506
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
507
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
508
+			if (!empty($geodir_taxonomis)) {
509
+				foreach ($geodir_taxonomis as $taxonomy) {
510
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
511 511
 						$wp->query_vars['gd_is_geodir_page'] = true;
512 512
 						break;
513 513
 					}
@@ -516,20 +516,20 @@  discard block
 block discarded – undo
516 516
 
517 517
 		}
518 518
 
519
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
519
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
520 520
 			$wp->query_vars['gd_is_geodir_page'] = true;
521 521
 		}
522 522
 
523 523
 
524
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
524
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
525 525
 			$wp->query_vars['gd_is_geodir_page'] = true;
526 526
 		}
527 527
 
528 528
 
529 529
 //check if homepage
530
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
531
-		     && ! isset( $wp->query_vars['page_id'] )
532
-		     && ! isset( $wp->query_vars['pagename'] )
530
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
531
+		     && !isset($wp->query_vars['page_id'])
532
+		     && !isset($wp->query_vars['pagename'])
533 533
 		     && is_page_geodir_home()
534 534
 		) {
535 535
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -553,14 +553,14 @@  discard block
 block discarded – undo
553 553
  */
554 554
 function geodir_is_geodir_page() {
555 555
 	global $wp;
556
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
556
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
557 557
 		return true;
558 558
 	} else {
559 559
 		return false;
560 560
 	}
561 561
 }
562 562
 
563
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
563
+if (!function_exists('geodir_get_imagesize')) {
564 564
 	/**
565 565
 	 * Get image size using the size key .
566 566
 	 *
@@ -571,13 +571,13 @@  discard block
 block discarded – undo
571 571
 	 *
572 572
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
573 573
 	 */
574
-	function geodir_get_imagesize( $size = '' ) {
574
+	function geodir_get_imagesize($size = '') {
575 575
 
576 576
 		$imagesizes = array(
577
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
578
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
579
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
580
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
577
+			'list-thumb'   => array('w' => 283, 'h' => 188),
578
+			'thumbnail'    => array('w' => 125, 'h' => 125),
579
+			'widget-thumb' => array('w' => 50, 'h' => 50),
580
+			'slider-thumb' => array('w' => 100, 'h' => 100)
581 581
 		);
582 582
 
583 583
 		/**
@@ -587,9 +587,9 @@  discard block
 block discarded – undo
587 587
 		 *
588 588
 		 * @param array $imagesizes Image size array.
589 589
 		 */
590
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
590
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
591 591
 
592
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
592
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
593 593
 			/**
594 594
 			 * Filters image size of the passed key.
595 595
 			 *
@@ -597,11 +597,11 @@  discard block
 block discarded – undo
597 597
 			 *
598 598
 			 * @param array $imagesizes [$size] Image size array of the passed key.
599 599
 			 */
600
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
600
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
601 601
 
602
-		} elseif ( ! empty( $size ) ) {
602
+		} elseif (!empty($size)) {
603 603
 
604
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
604
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
605 605
 
606 606
 		}
607 607
 
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
 */
626 626
 
627 627
 
628
-if ( ! function_exists( 'createRandomString' ) ) {
628
+if (!function_exists('createRandomString')) {
629 629
 	/**
630 630
 	 * Creates random string.
631 631
 	 *
@@ -635,21 +635,21 @@  discard block
 block discarded – undo
635 635
 	 */
636 636
 	function createRandomString() {
637 637
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
638
-		srand( (double) microtime() * 1000000 );
638
+		srand((double) microtime() * 1000000);
639 639
 		$i       = 0;
640 640
 		$rstring = '';
641
-		while ( $i <= 25 ) {
641
+		while ($i <= 25) {
642 642
 			$num     = rand() % 33;
643
-			$tmp     = substr( $chars, $num, 1 );
644
-			$rstring = $rstring . $tmp;
645
-			$i ++;
643
+			$tmp     = substr($chars, $num, 1);
644
+			$rstring = $rstring.$tmp;
645
+			$i++;
646 646
 		}
647 647
 
648 648
 		return $rstring;
649 649
 	}
650 650
 }
651 651
 
652
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
652
+if (!function_exists('geodir_getDistanceRadius')) {
653 653
 	/**
654 654
 	 * Calculates the distance radius.
655 655
 	 *
@@ -660,9 +660,9 @@  discard block
 block discarded – undo
660 660
 	 *
661 661
 	 * @return float The mean radius.
662 662
 	 */
663
-	function geodir_getDistanceRadius( $uom = 'km' ) {
663
+	function geodir_getDistanceRadius($uom = 'km') {
664 664
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
665
-		switch ( geodir_strtolower( $uom ) ):
665
+		switch (geodir_strtolower($uom)):
666 666
 			case 'km'    :
667 667
 				$earthMeanRadius = 6371.009; // km
668 668
 				break;
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
 }
695 695
 
696 696
 
697
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
697
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
698 698
 	/**
699 699
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
700 700
 	 *
@@ -707,17 +707,17 @@  discard block
 block discarded – undo
707 707
 	 *
708 708
 	 * @return float The distance.
709 709
 	 */
710
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
710
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
711 711
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
712 712
 
713
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
713
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
714 714
 
715
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
716
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
717
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
718
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
719
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
720
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
715
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
716
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
717
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
718
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
719
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
720
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
721 721
 		$distance       = $earthMeanRadius * $c;
722 722
 
723 723
 		return $distance;
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
 }
727 727
 
728 728
 
729
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
729
+if (!function_exists('geodir_sendEmail')) {
730 730
 	/**
731 731
 	 * The main function that send transactional emails using the args provided.
732 732
 	 *
@@ -745,95 +745,95 @@  discard block
 block discarded – undo
745 745
 	 * @param string $post_id       The post ID.
746 746
 	 * @param string $user_id       The user ID.
747 747
 	 */
748
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
748
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
749 749
 		$login_details = '';
750 750
 
751 751
 		// strip slashes from subject & message text
752
-		$to_subject = stripslashes_deep( $to_subject );
753
-		$to_message = stripslashes_deep( $to_message );
752
+		$to_subject = stripslashes_deep($to_subject);
753
+		$to_message = stripslashes_deep($to_message);
754 754
 
755
-		if ( $message_type == 'send_friend' ) {
756
-			$subject = get_option( 'geodir_email_friend_subject' );
757
-			$message = get_option( 'geodir_email_friend_content' );
758
-		} elseif ( $message_type == 'send_enquiry' ) {
759
-			$subject = get_option( 'geodir_email_enquiry_subject' );
760
-			$message = get_option( 'geodir_email_enquiry_content' );
755
+		if ($message_type == 'send_friend') {
756
+			$subject = get_option('geodir_email_friend_subject');
757
+			$message = get_option('geodir_email_friend_content');
758
+		} elseif ($message_type == 'send_enquiry') {
759
+			$subject = get_option('geodir_email_enquiry_subject');
760
+			$message = get_option('geodir_email_enquiry_content');
761 761
 
762 762
 			// change to name in some cases
763
-			$post_author = get_post_field( 'post_author', $post_id );
764
-			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
765
-				$toEmailName = __('Business Owner','geodirectory');
766
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
767
-				$toEmailName = __('Business Owner','geodirectory');
763
+			$post_author = get_post_field('post_author', $post_id);
764
+			if (is_super_admin($post_author)) {// if admin probably not the post author so change name
765
+				$toEmailName = __('Business Owner', 'geodirectory');
766
+			}elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
767
+				$toEmailName = __('Business Owner', 'geodirectory');
768 768
 			}
769 769
 
770 770
 
771
-		} elseif ( $message_type == 'forgot_password' ) {
772
-			$subject       = get_option( 'geodir_forgot_password_subject' );
773
-			$message       = get_option( 'geodir_forgot_password_content' );
771
+		} elseif ($message_type == 'forgot_password') {
772
+			$subject       = get_option('geodir_forgot_password_subject');
773
+			$message       = get_option('geodir_forgot_password_content');
774 774
 			$login_details = $to_message;
775
-		} elseif ( $message_type == 'registration' ) {
776
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
777
-			$message       = get_option( 'geodir_registration_success_email_content' );
775
+		} elseif ($message_type == 'registration') {
776
+			$subject       = get_option('geodir_registration_success_email_subject');
777
+			$message       = get_option('geodir_registration_success_email_content');
778 778
 			$login_details = $to_message;
779
-		} elseif ( $message_type == 'post_submit' ) {
780
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
781
-			$message = get_option( 'geodir_post_submited_success_email_content' );
782
-		} elseif ( $message_type == 'listing_published' ) {
783
-			$subject = get_option( 'geodir_post_published_email_subject' );
784
-			$message = get_option( 'geodir_post_published_email_content' );
785
-		} elseif ( $message_type == 'listing_edited' ) {
786
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
787
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
779
+		} elseif ($message_type == 'post_submit') {
780
+			$subject = get_option('geodir_post_submited_success_email_subject');
781
+			$message = get_option('geodir_post_submited_success_email_content');
782
+		} elseif ($message_type == 'listing_published') {
783
+			$subject = get_option('geodir_post_published_email_subject');
784
+			$message = get_option('geodir_post_published_email_content');
785
+		} elseif ($message_type == 'listing_edited') {
786
+			$subject = get_option('geodir_post_edited_email_subject_admin');
787
+			$message = get_option('geodir_post_edited_email_content_admin');
788 788
 		}
789 789
 
790
-		if ( ! empty( $subject ) ) {
791
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
790
+		if (!empty($subject)) {
791
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
792 792
 		}
793 793
 
794
-		if ( ! empty( $message ) ) {
795
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
794
+		if (!empty($message)) {
795
+			$message = __(stripslashes_deep($message), 'geodirectory');
796 796
 		}
797 797
 
798
-		$to_message        = nl2br( $to_message );
799
-		$sitefromEmail     = get_option( 'site_email' );
798
+		$to_message        = nl2br($to_message);
799
+		$sitefromEmail     = get_option('site_email');
800 800
 		$sitefromEmailName = get_site_emailName();
801
-		$productlink       = get_permalink( $post_id );
801
+		$productlink       = get_permalink($post_id);
802 802
 
803 803
 		$user_login = '';
804
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
804
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
805 805
 			$user_login = $user_info->user_login;
806 806
 		}
807 807
 
808 808
 		$posted_date = '';
809 809
 		$listingLink = '';
810 810
 
811
-		$post_info = get_post( $post_id );
811
+		$post_info = get_post($post_id);
812 812
 
813
-		if ( $post_info ) {
813
+		if ($post_info) {
814 814
 			$posted_date = $post_info->post_date;
815
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
815
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
816 816
 		}
817 817
 		$siteurl       = home_url();
818
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
818
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
819 819
 		$loginurl      = geodir_login_url();
820
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
820
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
821 821
         
822
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
823
-		$post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL;
824
-		$post_author_name = geodir_get_client_name( $post_author_id );
825
-		$post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : '';
826
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
827
-
828
-		if ( $fromEmail == '' ) {
829
-			$fromEmail = get_option( 'site_email' );
822
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
823
+		$post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL;
824
+		$post_author_name = geodir_get_client_name($post_author_id);
825
+		$post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : '';
826
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
827
+
828
+		if ($fromEmail == '') {
829
+			$fromEmail = get_option('site_email');
830 830
 		}
831 831
 
832
-		if ( $fromEmailName == '' ) {
833
-			$fromEmailName = get_option( 'site_email_name' );
832
+		if ($fromEmailName == '') {
833
+			$fromEmailName = get_option('site_email_name');
834 834
 		}
835 835
 
836
-		$search_array  = array(
836
+		$search_array = array(
837 837
 			'[#listing_link#]',
838 838
 			'[#site_name_url#]',
839 839
 			'[#post_id#]',
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 			$post_author_email,
876 876
 			$current_date,
877 877
 		);
878
-		$message       = str_replace( $search_array, $replace_array, $message );
878
+		$message       = str_replace($search_array, $replace_array, $message);
879 879
 
880 880
 		$search_array  = array(
881 881
 			'[#listing_link#]',
@@ -913,12 +913,12 @@  discard block
 block discarded – undo
913 913
 			$post_author_email,
914 914
 			$current_date
915 915
 		);
916
-		$subject       = str_replace( $search_array, $replace_array, $subject );
916
+		$subject = str_replace($search_array, $replace_array, $subject);
917 917
 
918
-		$headers =  array();
918
+		$headers = array();
919 919
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
920
-		$headers[] = "Reply-To: " . $fromEmail;
921
-		$headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>';
920
+		$headers[] = "Reply-To: ".$fromEmail;
921
+		$headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>';
922 922
 
923 923
 		$to = $toEmail;
924 924
 
@@ -940,7 +940,7 @@  discard block
 block discarded – undo
940 940
 		 * @param string $post_id       The post ID.
941 941
 		 * @param string $user_id       The user ID.
942 942
 		 */
943
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
943
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
944 944
 		/**
945 945
 		 * Filter the client email subject.
946 946
 		 *
@@ -959,7 +959,7 @@  discard block
 block discarded – undo
959 959
 		 * @param string $post_id       The post ID.
960 960
 		 * @param string $user_id       The user ID.
961 961
 		 */
962
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
962
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
963 963
 		/**
964 964
 		 * Filter the client email message.
965 965
 		 *
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
 		 * @param string $post_id       The post ID.
979 979
 		 * @param string $user_id       The user ID.
980 980
 		 */
981
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
981
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
982 982
 		/**
983 983
 		 * Filter the client email headers.
984 984
 		 *
@@ -997,39 +997,39 @@  discard block
 block discarded – undo
997 997
 		 * @param string $post_id       The post ID.
998 998
 		 * @param string $user_id       The user ID.
999 999
 		 */
1000
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1000
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1001 1001
 
1002
-		$sent = wp_mail( $to, $subject, $message, $headers );
1002
+		$sent = wp_mail($to, $subject, $message, $headers);
1003 1003
 
1004
-		if ( ! $sent ) {
1005
-			if ( is_array( $to ) ) {
1006
-				$to = implode( ',', $to );
1004
+		if (!$sent) {
1005
+			if (is_array($to)) {
1006
+				$to = implode(',', $to);
1007 1007
 			}
1008 1008
 			$log_message = sprintf(
1009
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1009
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1010 1010
 				$message_type,
1011
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1011
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1012 1012
 				$to,
1013 1013
 				$subject
1014 1014
 			);
1015
-			geodir_error_log( $log_message );
1015
+			geodir_error_log($log_message);
1016 1016
 		}
1017 1017
 
1018 1018
 		///////// ADMIN BCC EMIALS
1019
-		$adminEmail = get_bloginfo( 'admin_email' );
1019
+		$adminEmail = get_bloginfo('admin_email');
1020 1020
 		$to         = $adminEmail;
1021 1021
 
1022 1022
 		$admin_bcc = false;
1023
-		if ( $message_type == 'registration' ) {
1024
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1025
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1026
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1023
+		if ($message_type == 'registration') {
1024
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1025
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1026
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1027 1027
 		}
1028
-		if ( $message_type == 'post_submit' ) {
1029
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1030
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1028
+		if ($message_type == 'post_submit') {
1029
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1030
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1031 1031
 
1032
-			$search_array  = array(
1032
+			$search_array = array(
1033 1033
 				'[#listing_link#]',
1034 1034
 				'[#site_name_url#]',
1035 1035
 				'[#post_id#]',
@@ -1065,7 +1065,7 @@  discard block
 block discarded – undo
1065 1065
 				$user_login,
1066 1066
 				$post_author_email,
1067 1067
 			);
1068
-			$message       = str_replace( $search_array, $replace_array, $message );
1068
+			$message       = str_replace($search_array, $replace_array, $message);
1069 1069
 
1070 1070
 			$search_array  = array(
1071 1071
 				'[#listing_link#]',
@@ -1097,26 +1097,26 @@  discard block
 block discarded – undo
1097 1097
 				$user_login,
1098 1098
 				$post_author_email,
1099 1099
 			);
1100
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1100
+			$subject = str_replace($search_array, $replace_array, $subject);
1101 1101
 
1102 1102
 			$subject .= ' - ADMIN BCC COPY';
1103 1103
 			$admin_bcc = true;
1104 1104
 
1105
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1105
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1106 1106
 			$subject .= ' - ADMIN BCC COPY';
1107 1107
 			$admin_bcc = true;
1108
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1108
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1109 1109
 			$subject .= ' - ADMIN BCC COPY';
1110 1110
 			$admin_bcc = true;
1111
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1111
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1112 1112
 			$subject .= ' - ADMIN BCC COPY';
1113 1113
 			$admin_bcc = true;
1114
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1114
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1115 1115
 			$subject .= ' - ADMIN BCC COPY';
1116 1116
 			$admin_bcc = true;
1117 1117
 		}
1118 1118
 
1119
-		if ( $admin_bcc === true ) {
1119
+		if ($admin_bcc === true) {
1120 1120
 
1121 1121
 			/**
1122 1122
 			 * Filter the client email subject.
@@ -1136,7 +1136,7 @@  discard block
 block discarded – undo
1136 1136
 			 * @param string $post_id       The post ID.
1137 1137
 			 * @param string $user_id       The user ID.
1138 1138
 			 */
1139
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1139
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1140 1140
 			/**
1141 1141
 			 * Filter the client email message.
1142 1142
 			 *
@@ -1155,23 +1155,23 @@  discard block
 block discarded – undo
1155 1155
 			 * @param string $post_id       The post ID.
1156 1156
 			 * @param string $user_id       The user ID.
1157 1157
 			 */
1158
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1158
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1159 1159
 
1160 1160
 
1161
-			$sent = wp_mail( $to, $subject, $message, $headers );
1161
+			$sent = wp_mail($to, $subject, $message, $headers);
1162 1162
 
1163
-			if ( ! $sent ) {
1164
-				if ( is_array( $to ) ) {
1165
-					$to = implode( ',', $to );
1163
+			if (!$sent) {
1164
+				if (is_array($to)) {
1165
+					$to = implode(',', $to);
1166 1166
 				}
1167 1167
 				$log_message = sprintf(
1168
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1168
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1169 1169
 					$message_type,
1170
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1170
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1171 1171
 					$to,
1172 1172
 					$subject
1173 1173
 				);
1174
-				geodir_error_log( $log_message );
1174
+				geodir_error_log($log_message);
1175 1175
 			}
1176 1176
 		}
1177 1177
 
@@ -1187,51 +1187,51 @@  discard block
 block discarded – undo
1187 1187
  */
1188 1188
 function geodir_taxonomy_breadcrumb() {
1189 1189
 
1190
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1190
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1191 1191
 	$parent = $term->parent;
1192 1192
 
1193
-	while ( $parent ):
1193
+	while ($parent):
1194 1194
 		$parents[]  = $parent;
1195
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1195
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1196 1196
 		$parent     = $new_parent->parent;
1197 1197
 	endwhile;
1198 1198
 
1199
-	if ( ! empty( $parents ) ):
1200
-		$parents = array_reverse( $parents );
1199
+	if (!empty($parents)):
1200
+		$parents = array_reverse($parents);
1201 1201
 
1202
-		foreach ( $parents as $parent ):
1203
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1204
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1205
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1202
+		foreach ($parents as $parent):
1203
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1204
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1205
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1206 1206
 		endforeach;
1207 1207
 
1208 1208
 	endif;
1209 1209
 
1210
-	echo '<li> > ' . $term->name . '</li>';
1210
+	echo '<li> > '.$term->name.'</li>';
1211 1211
 }
1212 1212
 
1213
-function geodir_wpml_post_type_archive_link($link, $post_type){
1213
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1214 1214
 	if (function_exists('icl_object_id')) {
1215
-		$post_types   = get_option( 'geodir_post_types' );
1215
+		$post_types = get_option('geodir_post_types');
1216 1216
 		
1217
-		if ( isset( $post_types[ $post_type ] ) ) {
1218
-			$slug = $post_types[ $post_type ]['rewrite']['slug'];
1217
+		if (isset($post_types[$post_type])) {
1218
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1219 1219
 
1220 1220
 			// Alter the CPT slug if WPML is set to do so
1221
-			if ( geodir_wpml_is_post_type_translated( $post_type ) ) {
1222
-				if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1221
+			if (geodir_wpml_is_post_type_translated($post_type)) {
1222
+				if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1223 1223
 
1224 1224
 					$org_slug = $slug;
1225
-					$slug     = apply_filters( 'wpml_translate_single_string',
1225
+					$slug     = apply_filters('wpml_translate_single_string',
1226 1226
 						$slug,
1227 1227
 						'WordPress',
1228
-						'URL slug: ' . $slug,
1229
-						$language_code );
1228
+						'URL slug: '.$slug,
1229
+						$language_code);
1230 1230
                     
1231
-					if ( ! $slug ) {
1231
+					if (!$slug) {
1232 1232
 						$slug = $org_slug;
1233 1233
 					} else {
1234
-						$link = str_replace( $org_slug, $slug, $link );
1234
+						$link = str_replace($org_slug, $slug, $link);
1235 1235
 					}
1236 1236
 				}
1237 1237
 			}
@@ -1240,7 +1240,7 @@  discard block
 block discarded – undo
1240 1240
 
1241 1241
 	return $link;
1242 1242
 }
1243
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1243
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1244 1244
 
1245 1245
 /**
1246 1246
  * Main function that generates breadcrumb for all pages.
@@ -1261,9 +1261,9 @@  discard block
 block discarded – undo
1261 1261
 	 *
1262 1262
 	 * @since 1.0.0
1263 1263
 	 */
1264
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1264
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1265 1265
 
1266
-	if ( ! geodir_is_page( 'home' ) ) {
1266
+	if (!geodir_is_page('home')) {
1267 1267
 		$breadcrumb    = '';
1268 1268
 		$url_categoris = '';
1269 1269
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1272,167 +1272,167 @@  discard block
 block discarded – undo
1272 1272
 		 *
1273 1273
 		 * @since 1.0.0
1274 1274
 		 */
1275
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1275
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1276 1276
 
1277 1277
 		$gd_post_type   = geodir_get_current_posttype();
1278
-		$post_type_info = get_post_type_object( $gd_post_type );
1278
+		$post_type_info = get_post_type_object($gd_post_type);
1279 1279
 
1280
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1280
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1281 1281
 
1282
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1282
+		$listing_link = get_post_type_archive_link($gd_post_type);
1283 1283
 
1284
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1285
-		$listing_link = rtrim( $listing_link, '/' );
1284
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1285
+		$listing_link = rtrim($listing_link, '/');
1286 1286
 		$listing_link .= '/';
1287 1287
 
1288 1288
 		$post_type_for_location_link = $listing_link;
1289
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1289
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1290 1290
 
1291 1291
 		global $wp, $gd_session;
1292 1292
 		$location_link = $post_type_for_location_link;
1293 1293
 
1294
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1294
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1295 1295
 			global $post;
1296
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1297
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1296
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1297
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1298 1298
 
1299
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1299
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1300 1300
 				$location_terms = array(
1301 1301
 					'gd_country' => $post->country_slug,
1302 1302
 					'gd_region'  => $post->region_slug,
1303 1303
 					'gd_city'    => $post->city_slug
1304 1304
 				);
1305 1305
 
1306
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1306
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1307 1307
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1308 1308
 				}
1309 1309
 			}
1310 1310
 
1311
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1311
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1312 1312
 
1313 1313
 			$hide_url_part = array();
1314
-			if ( $location_manager ) {
1315
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1316
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1317
-
1318
-				if ( $hide_region_part && $hide_country_part ) {
1319
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1320
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1321
-					$hide_url_part = array( 'gd_region' );
1322
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1323
-					$hide_url_part = array( 'gd_country' );
1314
+			if ($location_manager) {
1315
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1316
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1317
+
1318
+				if ($hide_region_part && $hide_country_part) {
1319
+					$hide_url_part = array('gd_country', 'gd_region');
1320
+				} else if ($hide_region_part && !$hide_country_part) {
1321
+					$hide_url_part = array('gd_region');
1322
+				} else if (!$hide_region_part && $hide_country_part) {
1323
+					$hide_url_part = array('gd_country');
1324 1324
 				}
1325 1325
 			}
1326 1326
 
1327 1327
 			$hide_text_part = array();
1328
-			if ( $geodir_show_location_url == 'country_city' ) {
1329
-				$hide_text_part = array( 'gd_region' );
1328
+			if ($geodir_show_location_url == 'country_city') {
1329
+				$hide_text_part = array('gd_region');
1330 1330
 
1331
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1332
-					unset( $location_terms['gd_region'] );
1331
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1332
+					unset($location_terms['gd_region']);
1333 1333
 				}
1334
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1335
-				$hide_text_part = array( 'gd_country' );
1334
+			} else if ($geodir_show_location_url == 'region_city') {
1335
+				$hide_text_part = array('gd_country');
1336 1336
 
1337
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1338
-					unset( $location_terms['gd_country'] );
1337
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1338
+					unset($location_terms['gd_country']);
1339 1339
 				}
1340
-			} else if ( $geodir_show_location_url == 'city' ) {
1341
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1340
+			} else if ($geodir_show_location_url == 'city') {
1341
+				$hide_text_part = array('gd_country', 'gd_region');
1342 1342
 
1343
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1344
-					unset( $location_terms['gd_country'] );
1343
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1344
+					unset($location_terms['gd_country']);
1345 1345
 				}
1346
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1347
-					unset( $location_terms['gd_region'] );
1346
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1347
+					unset($location_terms['gd_region']);
1348 1348
 				}
1349 1349
 			}
1350 1350
 
1351 1351
 			$is_location_last = '';
1352 1352
 			$is_taxonomy_last = '';
1353 1353
 			$breadcrumb .= '<li>';
1354
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1355
-				$gd_taxonomy = $gd_post_type . 'category';
1356
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1357
-				$gd_taxonomy = $gd_post_type . '_tags';
1354
+			if (get_query_var($gd_post_type.'category')) {
1355
+				$gd_taxonomy = $gd_post_type.'category';
1356
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1357
+				$gd_taxonomy = $gd_post_type.'_tags';
1358 1358
 			}
1359 1359
 
1360
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1361
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1360
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1361
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1362 1362
 				$is_location_last = false;
1363 1363
 			} else {
1364 1364
 				$is_location_last = true;
1365 1365
 			}
1366 1366
 
1367
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1367
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1368 1368
 				$is_taxonomy_last = true;
1369 1369
 			} else {
1370 1370
 				$is_taxonomy_last = false;
1371 1371
 			}
1372 1372
 
1373
-			if ( ! empty( $location_terms ) ) {
1374
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1373
+			if (!empty($location_terms)) {
1374
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1375 1375
 
1376
-				foreach ( $location_terms as $key => $location_term ) {
1377
-					if ( $location_term != '' ) {
1378
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1376
+				foreach ($location_terms as $key => $location_term) {
1377
+					if ($location_term != '') {
1378
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1379 1379
 							continue;
1380 1380
 						}
1381 1381
 
1382
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1383
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1384
-						$gd_location_link_text = geodir_utf8_ucfirst( $gd_location_link_text );
1382
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1383
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1384
+						$gd_location_link_text = geodir_utf8_ucfirst($gd_location_link_text);
1385 1385
 
1386 1386
 						$location_term_actual_country = '';
1387 1387
 						$location_term_actual_region  = '';
1388 1388
 						$location_term_actual_city    = '';
1389 1389
 						$location_term_actual_neighbourhood = '';
1390
-						if ( $geodir_get_locations ) {
1391
-							if ( $key == 'gd_country' ) {
1392
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1393
-							} else if ( $key == 'gd_region' ) {
1394
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1395
-							} else if ( $key == 'gd_city' ) {
1396
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1397
-							} else if ( $key == 'gd_neighbourhood' ) {
1398
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1390
+						if ($geodir_get_locations) {
1391
+							if ($key == 'gd_country') {
1392
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1393
+							} else if ($key == 'gd_region') {
1394
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1395
+							} else if ($key == 'gd_city') {
1396
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1397
+							} else if ($key == 'gd_neighbourhood') {
1398
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1399 1399
 							}
1400 1400
 						} else {
1401 1401
 							$location_info = geodir_get_location();
1402 1402
 
1403
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1404
-								if ( $key == 'gd_country' ) {
1405
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1406
-								} else if ( $key == 'gd_region' ) {
1407
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1408
-								} else if ( $key == 'gd_city' ) {
1409
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1403
+							if (!empty($location_info) && isset($location_info->location_id)) {
1404
+								if ($key == 'gd_country') {
1405
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1406
+								} else if ($key == 'gd_region') {
1407
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1408
+								} else if ($key == 'gd_city') {
1409
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1410 1410
 								}
1411 1411
 							}
1412 1412
 						}
1413 1413
 
1414
-						if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1415
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1416
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1417
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1418
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1419
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1420
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1421
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1414
+						if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1415
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1416
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1417
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1418
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1419
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1420
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1421
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1422 1422
 						} else {
1423
-							if ( get_option( 'permalink_structure' ) != '' ) {
1424
-								$location_link .= $location_term . '/';
1423
+							if (get_option('permalink_structure') != '') {
1424
+								$location_link .= $location_term.'/';
1425 1425
 							} else {
1426
-								$location_link .= "&$key=" . $location_term;
1426
+								$location_link .= "&$key=".$location_term;
1427 1427
 							}
1428 1428
 
1429
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1429
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1430 1430
 								$gd_location_link_text = $location_term_actual_country;
1431
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1431
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1432 1432
 								$gd_location_link_text = $location_term_actual_region;
1433
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1433
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1434 1434
 								$gd_location_link_text = $location_term_actual_city;
1435
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1435
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1436 1436
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1437 1437
 							}
1438 1438
 
@@ -1442,77 +1442,77 @@  discard block
 block discarded – undo
1442 1442
                             }
1443 1443
                             */
1444 1444
 
1445
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1445
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1446 1446
 						}
1447 1447
 					}
1448 1448
 				}
1449 1449
 			}
1450 1450
 
1451
-			if ( ! empty( $gd_taxonomy ) ) {
1451
+			if (!empty($gd_taxonomy)) {
1452 1452
 				$term_index = 1;
1453 1453
 
1454 1454
 				//if(get_option('geodir_add_categories_url'))
1455 1455
 				{
1456
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1457
-						$cat_link = $listing_link . 'tags/';
1456
+					if (get_query_var($gd_post_type.'_tags')) {
1457
+						$cat_link = $listing_link.'tags/';
1458 1458
 					} else {
1459 1459
 						$cat_link = $listing_link;
1460 1460
 					}
1461 1461
 
1462
-					foreach ( $location_terms as $key => $location_term ) {
1463
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1462
+					foreach ($location_terms as $key => $location_term) {
1463
+						if ($location_manager && in_array($key, $hide_url_part)) {
1464 1464
 							continue;
1465 1465
 						}
1466 1466
 
1467
-						if ( $location_term != '' ) {
1468
-							if ( get_option( 'permalink_structure' ) != '' ) {
1469
-								$cat_link .= $location_term . '/';
1467
+						if ($location_term != '') {
1468
+							if (get_option('permalink_structure') != '') {
1469
+								$cat_link .= $location_term.'/';
1470 1470
 							}
1471 1471
 						}
1472 1472
 					}
1473 1473
 
1474
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1475
-					foreach ( $term_array as $term ) {
1476
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1477
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1474
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1475
+					foreach ($term_array as $term) {
1476
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1477
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1478 1478
 
1479 1479
 						// get term actual name
1480
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1481
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1482
-							$term_link_text = urldecode( $term_info['name'] );
1480
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1481
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1482
+							$term_link_text = urldecode($term_info['name']);
1483 1483
 						} else {
1484 1484
 							continue;
1485 1485
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1486 1486
 						}
1487 1487
 
1488
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1489
-							$breadcrumb .= $separator . $term_link_text;
1488
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1489
+							$breadcrumb .= $separator.$term_link_text;
1490 1490
 						} else {
1491
-							$cat_link .= $term . '/';
1492
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1491
+							$cat_link .= $term.'/';
1492
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1493 1493
 						}
1494
-						$term_index ++;
1494
+						$term_index++;
1495 1495
 					}
1496 1496
 				}
1497 1497
 
1498 1498
 
1499 1499
 			}
1500 1500
 
1501
-			if ( geodir_is_page( 'detail' ) ) {
1502
-				$breadcrumb .= $separator . get_the_title();
1501
+			if (geodir_is_page('detail')) {
1502
+				$breadcrumb .= $separator.get_the_title();
1503 1503
 			}
1504 1504
 
1505 1505
 			$breadcrumb .= '</li>';
1506 1506
 
1507 1507
 
1508
-		} elseif ( geodir_is_page( 'author' ) ) {
1508
+		} elseif (geodir_is_page('author')) {
1509 1509
 			$dashboard_post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : $gd_post_type;
1510 1510
 			$user_id             = get_current_user_id();
1511
-			$author_link         = get_author_posts_url( $user_id );
1512
-			$default_author_link = geodir_getlink( $author_link, array(
1511
+			$author_link         = get_author_posts_url($user_id);
1512
+			$default_author_link = geodir_getlink($author_link, array(
1513 1513
 				'geodir_dashbord' => 'true',
1514 1514
 				'stype'           => $dashboard_post_type
1515
-			), false );
1515
+			), false);
1516 1516
 
1517 1517
 			/**
1518 1518
 			 * Filter author page link.
@@ -1522,16 +1522,16 @@  discard block
 block discarded – undo
1522 1522
 			 * @param string $default_author_link Default author link.
1523 1523
 			 * @param int $user_id                Author ID.
1524 1524
 			 */
1525
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1525
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1526 1526
 
1527 1527
 			$breadcrumb .= '<li>';
1528
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1528
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1529 1529
 
1530
-			if ( isset( $_REQUEST['list'] ) ) {
1531
-				$author_link = geodir_getlink( $author_link, array(
1530
+			if (isset($_REQUEST['list'])) {
1531
+				$author_link = geodir_getlink($author_link, array(
1532 1532
 					'geodir_dashbord' => 'true',
1533 1533
 					'stype'           => $_REQUEST['stype']
1534
-				), false );
1534
+				), false);
1535 1535
 
1536 1536
 				/**
1537 1537
 				 * Filter author page link.
@@ -1542,61 +1542,61 @@  discard block
 block discarded – undo
1542 1542
 				 * @param int $user_id        Author ID.
1543 1543
 				 * @param string $_REQUEST    ['stype'] Post type.
1544 1544
 				 */
1545
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1545
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1546 1546
 
1547
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1548
-				$breadcrumb .= $separator . geodir_utf8_ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1547
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1548
+				$breadcrumb .= $separator.geodir_utf8_ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1549 1549
 			} else {
1550
-				$breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' );
1550
+				$breadcrumb .= $separator.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory');
1551 1551
 			}
1552 1552
 
1553 1553
 			$breadcrumb .= '</li>';
1554
-		} elseif ( is_category() || is_single() ) {
1554
+		} elseif (is_category() || is_single()) {
1555 1555
 			$category = get_the_category();
1556
-			if ( is_category() ) {
1557
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1556
+			if (is_category()) {
1557
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1558 1558
 			}
1559
-			if ( is_single() ) {
1560
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1561
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1559
+			if (is_single()) {
1560
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1561
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1562 1562
 			}
1563 1563
 			/* End of my version ##################################################### */
1564
-		} else if ( is_page() ) {
1564
+		} else if (is_page()) {
1565 1565
 			$page_title = get_the_title();
1566 1566
 
1567
-			if ( geodir_is_page( 'location' ) ) {
1567
+			if (geodir_is_page('location')) {
1568 1568
 				$location_page_id = geodir_location_page_id();
1569
-				$loc_post         = get_post( $location_page_id );
1569
+				$loc_post         = get_post($location_page_id);
1570 1570
 				$post_name        = $loc_post->post_name;
1571
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1572
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1571
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1572
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1573 1573
 			}
1574 1574
 
1575
-			$breadcrumb .= '<li>' . $separator;
1576
-			$breadcrumb .= stripslashes_deep( $page_title );
1575
+			$breadcrumb .= '<li>'.$separator;
1576
+			$breadcrumb .= stripslashes_deep($page_title);
1577 1577
 			$breadcrumb .= '</li>';
1578
-		} else if ( is_tag() ) {
1579
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1580
-		} else if ( is_day() ) {
1581
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1582
-			the_time( 'F jS, Y' );
1578
+		} else if (is_tag()) {
1579
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1580
+		} else if (is_day()) {
1581
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1582
+			the_time('F jS, Y');
1583 1583
 			$breadcrumb .= '</li>';
1584
-		} else if ( is_month() ) {
1585
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1586
-			the_time( 'F, Y' );
1584
+		} else if (is_month()) {
1585
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1586
+			the_time('F, Y');
1587 1587
 			$breadcrumb .= '</li>';
1588
-		} else if ( is_year() ) {
1589
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1590
-			the_time( 'Y' );
1588
+		} else if (is_year()) {
1589
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1590
+			the_time('Y');
1591 1591
 			$breadcrumb .= '</li>';
1592
-		} else if ( is_author() ) {
1593
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1592
+		} else if (is_author()) {
1593
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1594 1594
 			$breadcrumb .= '</li>';
1595
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1596
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1595
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1596
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1597 1597
 			$breadcrumb .= '</li>';
1598
-		} else if ( is_search() ) {
1599
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1598
+		} else if (is_search()) {
1599
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1600 1600
 			$breadcrumb .= '</li>';
1601 1601
 		}
1602 1602
 		$breadcrumb .= '</ul></div>';
@@ -1609,13 +1609,13 @@  discard block
 block discarded – undo
1609 1609
 		 * @param string $breadcrumb Breadcrumb HTML.
1610 1610
 		 * @param string $separator  Breadcrumb separator.
1611 1611
 		 */
1612
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1612
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1613 1613
 	}
1614 1614
 }
1615 1615
 
1616 1616
 
1617
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1618
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1617
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1618
+if (!function_exists('geodir_allow_wpadmin')) {
1619 1619
 	/**
1620 1620
 	 * Allow only admins to access wp-admin.
1621 1621
 	 *
@@ -1627,12 +1627,12 @@  discard block
 block discarded – undo
1627 1627
 	 */
1628 1628
 	function geodir_allow_wpadmin() {
1629 1629
 		global $wpdb;
1630
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1630
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1631 1631
 		{
1632
-			if ( current_user_can( 'administrator' ) ) {
1632
+			if (current_user_can('administrator')) {
1633 1633
 			} else {
1634 1634
 
1635
-				wp_redirect( home_url() );
1635
+				wp_redirect(home_url());
1636 1636
 				exit;
1637 1637
 			}
1638 1638
 
@@ -1651,23 +1651,23 @@  discard block
 block discarded – undo
1651 1651
  *
1652 1652
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1653 1653
  */
1654
-function fetch_remote_file( $url ) {
1654
+function fetch_remote_file($url) {
1655 1655
 	// extract the file name and extension from the url
1656
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1657
-	$file_name = basename( $url );
1658
-	if ( strpos( $file_name, '?' ) !== false ) {
1659
-		list( $file_name ) = explode( '?', $file_name );
1656
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1657
+	$file_name = basename($url);
1658
+	if (strpos($file_name, '?') !== false) {
1659
+		list($file_name) = explode('?', $file_name);
1660 1660
 	}
1661 1661
 	$dummy        = false;
1662 1662
 	$add_to_cache = false;
1663 1663
 	$key          = null;
1664
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1664
+	if (strpos($url, '/dummy/') !== false) {
1665 1665
 		$dummy = true;
1666
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1667
-		$value = get_transient( 'cached_dummy_images' );
1668
-		if ( $value ) {
1669
-			if ( isset( $value[ $key ] ) ) {
1670
-				return $value[ $key ];
1666
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1667
+		$value = get_transient('cached_dummy_images');
1668
+		if ($value) {
1669
+			if (isset($value[$key])) {
1670
+				return $value[$key];
1671 1671
 			} else {
1672 1672
 				$add_to_cache = true;
1673 1673
 			}
@@ -1678,58 +1678,58 @@  discard block
 block discarded – undo
1678 1678
 
1679 1679
 	// get placeholder file in the upload dir with a unique, sanitized filename
1680 1680
 
1681
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1681
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1682 1682
 
1683
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1684
-	if ( $upload['error'] ) {
1685
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1683
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1684
+	if ($upload['error']) {
1685
+		return new WP_Error('upload_dir_error', $upload['error']);
1686 1686
 	}
1687 1687
 
1688 1688
 
1689
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1689
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1690 1690
 
1691 1691
 	// fetch the remote url and write it to the placeholder file
1692
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1692
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1693 1693
 
1694 1694
 	$log_message = '';
1695
-	if ( is_wp_error( $headers ) ) {
1696
-		echo 'file: ' . $url;
1695
+	if (is_wp_error($headers)) {
1696
+		echo 'file: '.$url;
1697 1697
 
1698
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1698
+		return new WP_Error('import_file_error', $headers->get_error_message());
1699 1699
 	}
1700 1700
 
1701
-	$filesize = filesize( $upload['file'] );
1701
+	$filesize = filesize($upload['file']);
1702 1702
 	// request failed
1703
-	if ( ! $headers ) {
1704
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1703
+	if (!$headers) {
1704
+		$log_message = __('Remote server did not respond', 'geodirectory');
1705 1705
 	} // make sure the fetch was successful
1706
-	elseif ( $headers['response']['code'] != '200' ) {
1707
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1708
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1709
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1710
-	} elseif ( 0 == $filesize ) {
1711
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1712
-	}
1713
-
1714
-	if ( $log_message ) {
1715
-		$del = unlink( $upload['file'] );
1716
-		if ( ! $del ) {
1717
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1706
+	elseif ($headers['response']['code'] != '200') {
1707
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1708
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1709
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1710
+	} elseif (0 == $filesize) {
1711
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1712
+	}
1713
+
1714
+	if ($log_message) {
1715
+		$del = unlink($upload['file']);
1716
+		if (!$del) {
1717
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1718 1718
 		}
1719 1719
 
1720
-		return new WP_Error( 'import_file_error', $log_message );
1720
+		return new WP_Error('import_file_error', $log_message);
1721 1721
 	}
1722 1722
 
1723
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1724
-		$images = get_transient( 'cached_dummy_images' );
1725
-		if ( is_array( $images ) ) {
1726
-			$images[ $key ] = $upload;
1723
+	if ($dummy && $add_to_cache && is_array($upload)) {
1724
+		$images = get_transient('cached_dummy_images');
1725
+		if (is_array($images)) {
1726
+			$images[$key] = $upload;
1727 1727
 		} else {
1728
-			$images = array( $key => $upload );
1728
+			$images = array($key => $upload);
1729 1729
 		}
1730 1730
 
1731 1731
 		//setting the cache using the WP Transient API
1732
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1732
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1733 1733
 	}
1734 1734
 
1735 1735
 	return $upload;
@@ -1743,12 +1743,12 @@  discard block
 block discarded – undo
1743 1743
  * @return string|void Max upload size.
1744 1744
  */
1745 1745
 function geodir_max_upload_size() {
1746
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1746
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1747 1747
 
1748
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1749
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1748
+	if ($max_filesize > 0 && $max_filesize < 1) {
1749
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1750 1750
 	} else {
1751
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1751
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1752 1752
 	}
1753 1753
 
1754 1754
 	/**
@@ -1758,7 +1758,7 @@  discard block
 block discarded – undo
1758 1758
 	 *
1759 1759
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1760 1760
 	 */
1761
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1761
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1762 1762
 }
1763 1763
 
1764 1764
 /**
@@ -1771,8 +1771,8 @@  discard block
 block discarded – undo
1771 1771
  * @return bool If dummy folder exists returns true, else false.
1772 1772
  */
1773 1773
 function geodir_dummy_folder_exists() {
1774
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1775
-	if ( ! is_dir( $path ) ) {
1774
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1775
+	if (!is_dir($path)) {
1776 1776
 		return false;
1777 1777
 	} else {
1778 1778
 		return true;
@@ -1791,17 +1791,17 @@  discard block
 block discarded – undo
1791 1791
  *
1792 1792
  * @return object Author info.
1793 1793
  */
1794
-function geodir_get_author_info( $aid ) {
1794
+function geodir_get_author_info($aid) {
1795 1795
 	global $wpdb;
1796 1796
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1797
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1798
-	$info    = $wpdb->get_results( $infosql );
1799
-	if ( $info ) {
1797
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1798
+	$info    = $wpdb->get_results($infosql);
1799
+	if ($info) {
1800 1800
 		return $info[0];
1801 1801
 	}
1802 1802
 }
1803 1803
 
1804
-if ( ! function_exists( 'adminEmail' ) ) {
1804
+if (!function_exists('adminEmail')) {
1805 1805
 	/**
1806 1806
 	 * Send emails to client on post submission, renew etc.
1807 1807
 	 *
@@ -1814,67 +1814,67 @@  discard block
 block discarded – undo
1814 1814
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1815 1815
 	 * @param string $custom_1     Custom data to be sent.
1816 1816
 	 */
1817
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1817
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1818 1818
 		global $wpdb;
1819
-		if ( $message_type == 'expiration' ) {
1820
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1821
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1822
-		} elseif ( $message_type == 'post_submited' ) {
1823
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1824
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1825
-		} elseif ( $message_type == 'renew' ) {
1826
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1827
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1828
-		} elseif ( $message_type == 'upgrade' ) {
1829
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1830
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1831
-		} elseif ( $message_type == 'claim_approved' ) {
1832
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1833
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1834
-		} elseif ( $message_type == 'claim_rejected' ) {
1835
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1836
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1837
-		} elseif ( $message_type == 'claim_requested' ) {
1838
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1839
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1840
-		} elseif ( $message_type == 'auto_claim' ) {
1841
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1842
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1843
-		} elseif ( $message_type == 'payment_success' ) {
1844
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1845
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1846
-		} elseif ( $message_type == 'payment_fail' ) {
1847
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1848
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1819
+		if ($message_type == 'expiration') {
1820
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1821
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1822
+		} elseif ($message_type == 'post_submited') {
1823
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1824
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1825
+		} elseif ($message_type == 'renew') {
1826
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1827
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1828
+		} elseif ($message_type == 'upgrade') {
1829
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1830
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1831
+		} elseif ($message_type == 'claim_approved') {
1832
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1833
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1834
+		} elseif ($message_type == 'claim_rejected') {
1835
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1836
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1837
+		} elseif ($message_type == 'claim_requested') {
1838
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1839
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1840
+		} elseif ($message_type == 'auto_claim') {
1841
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1842
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1843
+		} elseif ($message_type == 'payment_success') {
1844
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1845
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1846
+		} elseif ($message_type == 'payment_fail') {
1847
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1848
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1849 1849
 		}
1850 1850
 		$transaction_details = $custom_1;
1851
-		$fromEmail           = get_option( 'site_email' );
1851
+		$fromEmail           = get_option('site_email');
1852 1852
 		$fromEmailName       = get_site_emailName();
1853 1853
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1854
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1854
+		$pkg_limit            = get_property_price_info_listing($page_id);
1855 1855
 		$alivedays            = $pkg_limit['days'];
1856
-		$productlink          = get_permalink( $page_id );
1857
-		$post_info            = get_post( $page_id );
1858
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1859
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1856
+		$productlink          = get_permalink($page_id);
1857
+		$post_info            = get_post($page_id);
1858
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1859
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1860 1860
 		$loginurl             = geodir_login_url();
1861
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1861
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1862 1862
 		$siteurl              = home_url();
1863
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1864
-		$user_info            = get_userdata( $user_id );
1863
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1864
+		$user_info            = get_userdata($user_id);
1865 1865
 		$user_email           = $user_info->user_email;
1866
-		$display_name         = geodir_get_client_name( $user_id );
1866
+		$display_name         = geodir_get_client_name($user_id);
1867 1867
 		$user_login           = $user_info->user_login;
1868
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1869
-		if ( $number_of_grace_days == '' ) {
1868
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1869
+		if ($number_of_grace_days == '') {
1870 1870
 			$number_of_grace_days = 1;
1871 1871
 		}
1872
-		if ( $post_info->post_type == 'event' ) {
1872
+		if ($post_info->post_type == 'event') {
1873 1873
 			$post_type = 'event';
1874 1874
 		} else {
1875 1875
 			$post_type = 'listing';
1876 1876
 		}
1877
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1877
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1878 1878
 		$search_array   = array(
1879 1879
 			'[#client_name#]',
1880 1880
 			'[#listing_link#]',
@@ -1890,7 +1890,7 @@  discard block
 block discarded – undo
1890 1890
 			'[#site_name#]',
1891 1891
 			'[#transaction_details#]'
1892 1892
 		);
1893
-		$replace_array  = array(
1893
+		$replace_array = array(
1894 1894
 			$display_name,
1895 1895
 			$listingLink,
1896 1896
 			$post_date,
@@ -1905,13 +1905,13 @@  discard block
 block discarded – undo
1905 1905
 			$fromEmailName,
1906 1906
 			$transaction_details
1907 1907
 		);
1908
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1909
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1908
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1909
+		$subject        = str_replace($search_array, $replace_array, $subject);
1910 1910
 		
1911 1911
 		
1912
-		$headers  = array();
1912
+		$headers = array();
1913 1913
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1914
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1914
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1915 1915
 
1916 1916
 		$to      = $fromEmail;
1917 1917
 		$message = $client_message;
@@ -1929,7 +1929,7 @@  discard block
 block discarded – undo
1929 1929
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1930 1930
 		 * @param string $custom_1     Custom data to be sent.
1931 1931
 		 */
1932
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1932
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1933 1933
 		/**
1934 1934
 		 * Filter the admin email subject.
1935 1935
 		 *
@@ -1942,7 +1942,7 @@  discard block
 block discarded – undo
1942 1942
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1943 1943
 		 * @param string $custom_1     Custom data to be sent.
1944 1944
 		 */
1945
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1945
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1946 1946
 		/**
1947 1947
 		 * Filter the admin email message.
1948 1948
 		 *
@@ -1955,7 +1955,7 @@  discard block
 block discarded – undo
1955 1955
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1956 1956
 		 * @param string $custom_1     Custom data to be sent.
1957 1957
 		 */
1958
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1958
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1959 1959
 		/**
1960 1960
 		 * Filter the admin email headers.
1961 1961
 		 *
@@ -1968,22 +1968,22 @@  discard block
 block discarded – undo
1968 1968
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1969 1969
 		 * @param string $custom_1     Custom data to be sent.
1970 1970
 		 */
1971
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1971
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1972 1972
 
1973 1973
 
1974
-		$sent = wp_mail( $to, $subject, $message, $headers );
1975
-		if ( ! $sent ) {
1976
-			if ( is_array( $to ) ) {
1977
-				$to = implode( ',', $to );
1974
+		$sent = wp_mail($to, $subject, $message, $headers);
1975
+		if (!$sent) {
1976
+			if (is_array($to)) {
1977
+				$to = implode(',', $to);
1978 1978
 			}
1979 1979
 			$log_message = sprintf(
1980
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1980
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1981 1981
 				$message_type,
1982
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1982
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1983 1983
 				$to,
1984 1984
 				$subject
1985 1985
 			);
1986
-			geodir_error_log( $log_message );
1986
+			geodir_error_log($log_message);
1987 1987
 		}
1988 1988
 	}
1989 1989
 }
@@ -2003,12 +2003,12 @@  discard block
 block discarded – undo
2003 2003
  *
2004 2004
  * @return array Category IDs.
2005 2005
  */
2006
-function gd_lang_object_ids( $ids_array, $type ) {
2007
-	if ( function_exists( 'icl_object_id' ) ) {
2006
+function gd_lang_object_ids($ids_array, $type) {
2007
+	if (function_exists('icl_object_id')) {
2008 2008
 		$res = array();
2009
-		foreach ( $ids_array as $id ) {
2010
-			$xlat = icl_object_id( $id, $type, false );
2011
-			if ( ! is_null( $xlat ) ) {
2009
+		foreach ($ids_array as $id) {
2010
+			$xlat = icl_object_id($id, $type, false);
2011
+			if (!is_null($xlat)) {
2012 2012
 				$res[] = $xlat;
2013 2013
 			}
2014 2014
 		}
@@ -2032,20 +2032,20 @@  discard block
 block discarded – undo
2032 2032
  *
2033 2033
  * @return array Modified Body CSS classes.
2034 2034
  */
2035
-function geodir_custom_posts_body_class( $classes ) {
2035
+function geodir_custom_posts_body_class($classes) {
2036 2036
 	global $wpdb, $wp;
2037
-	$post_types = geodir_get_posttypes( 'object' );
2038
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2037
+	$post_types = geodir_get_posttypes('object');
2038
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2039 2039
 		$classes[] = 'geodir_custom_posts';
2040 2040
 	}
2041 2041
 
2042 2042
 	// fix body class for signup page
2043
-	if ( geodir_is_page( 'login' ) ) {
2043
+	if (geodir_is_page('login')) {
2044 2044
 		$new_classes   = array();
2045 2045
 		$new_classes[] = 'signup page-geodir-signup';
2046
-		if ( ! empty( $classes ) ) {
2047
-			foreach ( $classes as $class ) {
2048
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2046
+		if (!empty($classes)) {
2047
+			foreach ($classes as $class) {
2048
+				if ($class && $class != 'home' && $class != 'blog') {
2049 2049
 					$new_classes[] = $class;
2050 2050
 				}
2051 2051
 			}
@@ -2053,14 +2053,14 @@  discard block
 block discarded – undo
2053 2053
 		$classes = $new_classes;
2054 2054
 	}
2055 2055
 
2056
-	if ( geodir_is_geodir_page() ) {
2056
+	if (geodir_is_geodir_page()) {
2057 2057
 		$classes[] = 'geodir-page';
2058 2058
 	}
2059 2059
 
2060 2060
 	return $classes;
2061 2061
 }
2062 2062
 
2063
-add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search
2063
+add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
2064 2064
 
2065 2065
 
2066 2066
 /**
@@ -2076,7 +2076,7 @@  discard block
 block discarded – undo
2076 2076
 	 *
2077 2077
 	 * @since 1.0.0
2078 2078
 	 */
2079
-	return apply_filters( 'geodir_map_zoom_level', array(
2079
+	return apply_filters('geodir_map_zoom_level', array(
2080 2080
 		1,
2081 2081
 		2,
2082 2082
 		3,
@@ -2096,7 +2096,7 @@  discard block
 block discarded – undo
2096 2096
 		17,
2097 2097
 		18,
2098 2098
 		19
2099
-	) );
2099
+	));
2100 2100
 
2101 2101
 }
2102 2102
 
@@ -2109,12 +2109,12 @@  discard block
 block discarded – undo
2109 2109
  *
2110 2110
  * @param string $geodir_option_name Option key.
2111 2111
  */
2112
-function geodir_option_version_backup( $geodir_option_name ) {
2112
+function geodir_option_version_backup($geodir_option_name) {
2113 2113
 	$version_date  = time();
2114
-	$geodir_option = get_option( $geodir_option_name );
2114
+	$geodir_option = get_option($geodir_option_name);
2115 2115
 
2116
-	if ( ! empty( $geodir_option ) ) {
2117
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2116
+	if (!empty($geodir_option)) {
2117
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2118 2118
 	}
2119 2119
 }
2120 2120
 
@@ -2128,10 +2128,10 @@  discard block
 block discarded – undo
2128 2128
  *
2129 2129
  * @return int Page ID.
2130 2130
  */
2131
-function get_page_id_geodir_add_listing_page( $page_id ) {
2132
-	if ( geodir_wpml_multilingual_status() ) {
2131
+function get_page_id_geodir_add_listing_page($page_id) {
2132
+	if (geodir_wpml_multilingual_status()) {
2133 2133
 		$post_type = 'post_page';
2134
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2134
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2135 2135
 	}
2136 2136
 
2137 2137
 	return $page_id;
@@ -2145,7 +2145,7 @@  discard block
 block discarded – undo
2145 2145
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2146 2146
  */
2147 2147
 function geodir_wpml_multilingual_status() {
2148
-	if ( function_exists( 'icl_object_id' ) ) {
2148
+	if (function_exists('icl_object_id')) {
2149 2149
 		return true;
2150 2150
 	}
2151 2151
 
@@ -2163,19 +2163,19 @@  discard block
 block discarded – undo
2163 2163
  *
2164 2164
  * @return int Element ID when exists. Else the page id.
2165 2165
  */
2166
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2166
+function geodir_get_wpml_element_id($page_id, $post_type) {
2167 2167
 	global $sitepress;
2168
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2169
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2168
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2169
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2170 2170
 
2171
-		if ( $trid > 0 ) {
2172
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2171
+		if ($trid > 0) {
2172
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2173 2173
 
2174 2174
 			$lang = $sitepress->get_current_language();
2175 2175
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2176 2176
 
2177
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2178
-				$page_id = $translations[ $lang ]->element_id;
2177
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2178
+				$page_id = $translations[$lang]->element_id;
2179 2179
 			}
2180 2180
 		}
2181 2181
 	}
@@ -2192,15 +2192,15 @@  discard block
 block discarded – undo
2192 2192
  */
2193 2193
 function geodir_wpml_check_element_id() {
2194 2194
 	global $sitepress;
2195
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2195
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2196 2196
 		$el_type      = 'post_page';
2197
-		$el_id        = get_option( 'geodir_add_listing_page' );
2197
+		$el_id        = get_option('geodir_add_listing_page');
2198 2198
 		$default_lang = $sitepress->get_default_language();
2199
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2199
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2200 2200
 
2201
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2202
-			if ( ! $el_details->source_language_code ) {
2203
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2201
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2202
+			if (!$el_details->source_language_code) {
2203
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2204 2204
 				$sitepress->icl_translations_cache->clear();
2205 2205
 			}
2206 2206
 		}
@@ -2220,44 +2220,44 @@  discard block
 block discarded – undo
2220 2220
  *
2221 2221
  * @return string Orderby SQL.
2222 2222
  */
2223
-function geodir_widget_listings_get_order( $query_args ) {
2223
+function geodir_widget_listings_get_order($query_args) {
2224 2224
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2225 2225
 
2226 2226
 	$query_args = $gd_query_args_widgets;
2227
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2228
-		return $wpdb->posts . ".post_date DESC, ";
2227
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2228
+		return $wpdb->posts.".post_date DESC, ";
2229 2229
 	}
2230 2230
 
2231
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2232
-	$table     = $plugin_prefix . $post_type . '_detail';
2231
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2232
+	$table     = $plugin_prefix.$post_type.'_detail';
2233 2233
 
2234
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2234
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2235 2235
 
2236
-	switch ( $sort_by ) {
2236
+	switch ($sort_by) {
2237 2237
 		case 'latest':
2238 2238
 		case 'newest':
2239
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2239
+			$orderby = $wpdb->posts.".post_date DESC, ";
2240 2240
 			break;
2241 2241
 		case 'featured':
2242
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2242
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2243 2243
 			break;
2244 2244
 		case 'az':
2245
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2245
+			$orderby = $wpdb->posts.".post_title ASC, ";
2246 2246
 			break;
2247 2247
 		case 'high_review':
2248
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2248
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2249 2249
 			break;
2250 2250
 		case 'high_rating':
2251
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2251
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2252 2252
 			break;
2253 2253
 		case 'random':
2254 2254
 			$orderby = "RAND(), ";
2255 2255
 			break;
2256 2256
 		default:
2257
-			if ( $custom_orderby = geodir_prepare_custom_sorting( $sort_by, $table ) ) {
2258
-				$orderby = $custom_orderby . ", ";
2257
+			if ($custom_orderby = geodir_prepare_custom_sorting($sort_by, $table)) {
2258
+				$orderby = $custom_orderby.", ";
2259 2259
 			} else {
2260
-				$orderby = $wpdb->posts . ".post_title ASC, ";
2260
+				$orderby = $wpdb->posts.".post_title ASC, ";
2261 2261
 			}
2262 2262
 			break;
2263 2263
 	}
@@ -2282,16 +2282,16 @@  discard block
 block discarded – undo
2282 2282
  *
2283 2283
  * @return mixed Result object.
2284 2284
  */
2285
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2285
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2286 2286
 	global $wpdb, $plugin_prefix, $table_prefix;
2287 2287
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2288 2288
 	$gd_query_args_widgets            = $query_args;
2289 2289
 
2290
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2291
-	$table     = $plugin_prefix . $post_type . '_detail';
2292
-	$supports_wpml = geodir_wpml_is_post_type_translated( $post_type );
2290
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2291
+	$table     = $plugin_prefix.$post_type.'_detail';
2292
+	$supports_wpml = geodir_wpml_is_post_type_translated($post_type);
2293 2293
 
2294
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2294
+	$fields = $wpdb->posts.".*, ".$table.".*";
2295 2295
 	/**
2296 2296
 	 * Filter widget listing fields string part that is being used for query.
2297 2297
 	 *
@@ -2301,17 +2301,17 @@  discard block
 block discarded – undo
2301 2301
 	 * @param string $table     Table name.
2302 2302
 	 * @param string $post_type Post type.
2303 2303
 	 */
2304
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2304
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2305 2305
 
2306
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2306
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2307 2307
 
2308 2308
 	########### WPML ###########
2309 2309
 
2310
-	if ( $supports_wpml ) {
2310
+	if ($supports_wpml) {
2311 2311
 		global $sitepress;
2312 2312
 		$lang_code = ICL_LANGUAGE_CODE;
2313
-		if ( $lang_code ) {
2314
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2313
+		if ($lang_code) {
2314
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2315 2315
 		}
2316 2316
 	}
2317 2317
 
@@ -2325,15 +2325,15 @@  discard block
 block discarded – undo
2325 2325
 	 * @param string $join      Join clause string.
2326 2326
 	 * @param string $post_type Post type.
2327 2327
 	 */
2328
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2328
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2329 2329
 
2330
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2330
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2331 2331
 
2332
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2332
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2333 2333
 
2334 2334
 	########### WPML ###########
2335
-	if ( $supports_wpml ) {
2336
-		if ( $lang_code ) {
2335
+	if ($supports_wpml) {
2336
+		if ($lang_code) {
2337 2337
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2338 2338
 		}
2339 2339
 	}
@@ -2346,8 +2346,8 @@  discard block
 block discarded – undo
2346 2346
 	 * @param string $where     Where clause string.
2347 2347
 	 * @param string $post_type Post type.
2348 2348
 	 */
2349
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2350
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2349
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2350
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2351 2351
 
2352 2352
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without
2353 2353
 	/**
@@ -2358,15 +2358,15 @@  discard block
 block discarded – undo
2358 2358
 	 * @param string $groupby   Group by clause string.
2359 2359
 	 * @param string $post_type Post type.
2360 2360
 	 */
2361
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2361
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2362 2362
 
2363
-	if ( $count_only ) {
2364
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2365
-			" . $join . "
2363
+	if ($count_only) {
2364
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2365
+			" . $join."
2366 2366
 			" . $where;
2367
-		$rows = (int) $wpdb->get_var( $sql );
2367
+		$rows = (int) $wpdb->get_var($sql);
2368 2368
 	} else {
2369
-		$orderby = geodir_widget_listings_get_order( $query_args );
2369
+		$orderby = geodir_widget_listings_get_order($query_args);
2370 2370
 		/**
2371 2371
 		 * Filter widget listing orderby clause string part that is being used for query.
2372 2372
 		 *
@@ -2376,33 +2376,33 @@  discard block
 block discarded – undo
2376 2376
 		 * @param string $table     Table name.
2377 2377
 		 * @param string $post_type Post type.
2378 2378
 		 */
2379
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2379
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2380 2380
 		
2381 2381
 		$second_orderby = array();
2382
-		if ( strpos( $orderby, strtolower( $table . ".is_featured" )  ) === false ) {
2383
-			$second_orderby[] = $table . ".is_featured ASC";
2382
+		if (strpos($orderby, strtolower($table.".is_featured")) === false) {
2383
+			$second_orderby[] = $table.".is_featured ASC";
2384 2384
 		}
2385 2385
 		
2386
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_date" )  ) === false ) {
2387
-			$second_orderby[] = $wpdb->posts . ".post_date DESC";
2386
+		if (strpos($orderby, strtolower($wpdb->posts.".post_date")) === false) {
2387
+			$second_orderby[] = $wpdb->posts.".post_date DESC";
2388 2388
 		}
2389 2389
 		
2390
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_title" )  ) === false ) {
2391
-			$second_orderby[] = $wpdb->posts . ".post_title ASC";
2390
+		if (strpos($orderby, strtolower($wpdb->posts.".post_title")) === false) {
2391
+			$second_orderby[] = $wpdb->posts.".post_title ASC";
2392 2392
 		}
2393 2393
 		
2394
-		if ( !empty( $second_orderby ) ) {
2395
-			$orderby .= implode( ', ', $second_orderby );
2394
+		if (!empty($second_orderby)) {
2395
+			$orderby .= implode(', ', $second_orderby);
2396 2396
 		}
2397 2397
 		
2398
-		if ( !empty( $orderby ) ) {
2399
-			$orderby = trim( $orderby );
2400
-			$orderby = rtrim( $orderby, "," );
2398
+		if (!empty($orderby)) {
2399
+			$orderby = trim($orderby);
2400
+			$orderby = rtrim($orderby, ",");
2401 2401
 		}
2402 2402
 		
2403
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2403
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2404 2404
 
2405
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2405
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2406 2406
 		/**
2407 2407
 		 * Filter widget listing limit that is being used for query.
2408 2408
 		 *
@@ -2411,27 +2411,27 @@  discard block
 block discarded – undo
2411 2411
 		 * @param int $limit        Query results limit.
2412 2412
 		 * @param string $post_type Post type.
2413 2413
 		 */
2414
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2414
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2415 2415
 
2416
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2417
-		if ( ! $page ) {
2416
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2417
+		if (!$page) {
2418 2418
 			$page = 1;
2419 2419
 		}
2420 2420
 
2421
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2421
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2422 2422
 
2423 2423
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2424
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2425
-			" . $join . "
2426
-			" . $where . "
2427
-			" . $groupby . "
2428
-			" . $orderby . "
2424
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2425
+			" . $join."
2426
+			" . $where."
2427
+			" . $groupby."
2428
+			" . $orderby."
2429 2429
 			" . $limit;
2430
-		$rows = $wpdb->get_results( $sql );
2430
+		$rows = $wpdb->get_results($sql);
2431 2431
 	}
2432 2432
 
2433
-	unset( $GLOBALS['gd_query_args_widgets'] );
2434
-	unset( $gd_query_args_widgets );
2433
+	unset($GLOBALS['gd_query_args_widgets']);
2434
+	unset($gd_query_args_widgets);
2435 2435
 
2436 2436
 	return $rows;
2437 2437
 }
@@ -2448,11 +2448,11 @@  discard block
 block discarded – undo
2448 2448
  *
2449 2449
  * @return string Modified fields SQL.
2450 2450
  */
2451
-function geodir_function_widget_listings_fields( $fields ) {
2451
+function geodir_function_widget_listings_fields($fields) {
2452 2452
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2453 2453
 
2454 2454
 	$query_args = $gd_query_args_widgets;
2455
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2455
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2456 2456
 		return $fields;
2457 2457
 	}
2458 2458
 
@@ -2471,24 +2471,24 @@  discard block
 block discarded – undo
2471 2471
  *
2472 2472
  * @return string Modified join clause SQL.
2473 2473
  */
2474
-function geodir_function_widget_listings_join( $join ) {
2474
+function geodir_function_widget_listings_join($join) {
2475 2475
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2476 2476
 
2477 2477
 	$query_args = $gd_query_args_widgets;
2478
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2478
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2479 2479
 		return $join;
2480 2480
 	}
2481 2481
 
2482
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2483
-	$table     = $plugin_prefix . $post_type . '_detail';
2482
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2483
+	$table     = $plugin_prefix.$post_type.'_detail';
2484 2484
 
2485
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2486
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2485
+	if (!empty($query_args['with_pics_only'])) {
2486
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2487 2487
 	}
2488 2488
 
2489
-	if ( ! empty( $query_args['tax_query'] ) ) {
2490
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2491
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2489
+	if (!empty($query_args['tax_query'])) {
2490
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2491
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2492 2492
 			$join .= $tax_queries['join'];
2493 2493
 		}
2494 2494
 	}
@@ -2509,60 +2509,60 @@  discard block
 block discarded – undo
2509 2509
  *
2510 2510
  * @return string Modified where clause SQL.
2511 2511
  */
2512
-function geodir_function_widget_listings_where( $where ) {
2512
+function geodir_function_widget_listings_where($where) {
2513 2513
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2514 2514
 
2515 2515
 	$query_args = $gd_query_args_widgets;
2516
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2516
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2517 2517
 		return $where;
2518 2518
 	}
2519
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2520
-	$table     = $plugin_prefix . $post_type . '_detail';
2519
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2520
+	$table     = $plugin_prefix.$post_type.'_detail';
2521 2521
 
2522
-	if ( ! empty( $query_args ) ) {
2523
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2524
-			$where = geodir_default_location_where( $where, $table );
2522
+	if (!empty($query_args)) {
2523
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2524
+			$where = geodir_default_location_where($where, $table);
2525 2525
 		}
2526 2526
 
2527
-		if ( ! empty( $query_args['post_author'] ) ) {
2528
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2527
+		if (!empty($query_args['post_author'])) {
2528
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2529 2529
 		}
2530 2530
 
2531
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2532
-			$where .= " AND " . $table . ".is_featured = '1'";
2531
+		if (!empty($query_args['show_featured_only'])) {
2532
+			$where .= " AND ".$table.".is_featured = '1'";
2533 2533
 		}
2534 2534
 
2535
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2536
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2535
+		if (!empty($query_args['show_special_only'])) {
2536
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2537 2537
 		}
2538 2538
 
2539
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2540
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2539
+		if (!empty($query_args['with_pics_only'])) {
2540
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2541 2541
 		}
2542 2542
 
2543
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2544
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2543
+		if (!empty($query_args['featured_image_only'])) {
2544
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2545 2545
 		}
2546 2546
 
2547
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2548
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2547
+		if (!empty($query_args['with_videos_only'])) {
2548
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2549 2549
 		}
2550 2550
         
2551
-		if ( ! empty( $query_args['show_favorites_only'] ) ) {
2551
+		if (!empty($query_args['show_favorites_only'])) {
2552 2552
 			$user_favorites = '-1';
2553 2553
 			
2554
-			if ( !empty( $query_args['favorites_by_user'] ) ) {
2555
-				$user_favorites = get_user_meta( (int)$query_args['favorites_by_user'], 'gd_user_favourite_post', true );
2554
+			if (!empty($query_args['favorites_by_user'])) {
2555
+				$user_favorites = get_user_meta((int) $query_args['favorites_by_user'], 'gd_user_favourite_post', true);
2556 2556
 				$user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
2557 2557
 			}
2558 2558
 			
2559
-			$where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
2559
+			$where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
2560 2560
 		}
2561 2561
 
2562
-		if ( ! empty( $query_args['tax_query'] ) ) {
2563
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2562
+		if (!empty($query_args['tax_query'])) {
2563
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2564 2564
 
2565
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2565
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2566 2566
 				$where .= $tax_queries['where'];
2567 2567
 			}
2568 2568
 		}
@@ -2583,11 +2583,11 @@  discard block
 block discarded – undo
2583 2583
  *
2584 2584
  * @return string Modified orderby clause SQL.
2585 2585
  */
2586
-function geodir_function_widget_listings_orderby( $orderby ) {
2586
+function geodir_function_widget_listings_orderby($orderby) {
2587 2587
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2588 2588
 
2589 2589
 	$query_args = $gd_query_args_widgets;
2590
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2590
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2591 2591
 		return $orderby;
2592 2592
 	}
2593 2593
 
@@ -2606,15 +2606,15 @@  discard block
 block discarded – undo
2606 2606
  *
2607 2607
  * @return int Query limit.
2608 2608
  */
2609
-function geodir_function_widget_listings_limit( $limit ) {
2609
+function geodir_function_widget_listings_limit($limit) {
2610 2610
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2611 2611
 
2612 2612
 	$query_args = $gd_query_args_widgets;
2613
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2613
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2614 2614
 		return $limit;
2615 2615
 	}
2616 2616
 
2617
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2617
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2618 2618
 		$limit = (int) $query_args['posts_per_page'];
2619 2619
 	}
2620 2620
 
@@ -2632,12 +2632,12 @@  discard block
 block discarded – undo
2632 2632
  *
2633 2633
  * @return int Large size width.
2634 2634
  */
2635
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2636
-	$large_size_w = get_option( 'large_size_w' );
2635
+function geodir_media_image_large_width($default = 800, $params = '') {
2636
+	$large_size_w = get_option('large_size_w');
2637 2637
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2638
-	$large_size_w = absint( $large_size_w );
2638
+	$large_size_w = absint($large_size_w);
2639 2639
 
2640
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2640
+	if (!get_option('geodir_use_wp_media_large_size')) {
2641 2641
 		$large_size_w = 800;
2642 2642
 	}
2643 2643
 
@@ -2650,7 +2650,7 @@  discard block
 block discarded – undo
2650 2650
 	 * @param int $default         Default width.
2651 2651
 	 * @param string|array $params Image parameters.
2652 2652
 	 */
2653
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2653
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2654 2654
 
2655 2655
 	return $large_size_w;
2656 2656
 }
@@ -2666,12 +2666,12 @@  discard block
 block discarded – undo
2666 2666
  *
2667 2667
  * @return int Large size height.
2668 2668
  */
2669
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2670
-	$large_size_h = get_option( 'large_size_h' );
2669
+function geodir_media_image_large_height($default = 800, $params = '') {
2670
+	$large_size_h = get_option('large_size_h');
2671 2671
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2672
-	$large_size_h = absint( $large_size_h );
2672
+	$large_size_h = absint($large_size_h);
2673 2673
 
2674
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2674
+	if (!get_option('geodir_use_wp_media_large_size')) {
2675 2675
 		$large_size_h = 800;
2676 2676
 	}
2677 2677
 
@@ -2684,7 +2684,7 @@  discard block
 block discarded – undo
2684 2684
 	 * @param int $default         Default height.
2685 2685
 	 * @param string|array $params Image parameters.
2686 2686
 	 */
2687
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2687
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2688 2688
 
2689 2689
 	return $large_size_h;
2690 2690
 }
@@ -2701,8 +2701,8 @@  discard block
 block discarded – undo
2701 2701
  *
2702 2702
  * @return string Sanitized name.
2703 2703
  */
2704
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2705
-	if ( $name == '' ) {
2704
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2705
+	if ($name == '') {
2706 2706
 		return null;
2707 2707
 	}
2708 2708
 
@@ -2711,13 +2711,13 @@  discard block
 block discarded – undo
2711 2711
 	$type = $type == 'gd_city' ? 'city' : $type;
2712 2712
 
2713 2713
 	$return = $name;
2714
-	if ( function_exists( 'get_actual_location_name' ) ) {
2715
-		$return = get_actual_location_name( $type, $name, $translate );
2714
+	if (function_exists('get_actual_location_name')) {
2715
+		$return = get_actual_location_name($type, $name, $translate);
2716 2716
 	} else {
2717
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2718
-		$return = preg_replace( '/[_-]/', ' ', $return );
2719
-		$return = geodir_ucwords( $return );
2720
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2717
+		$return = preg_replace('/-(\d+)$/', '', $return);
2718
+		$return = preg_replace('/[_-]/', ' ', $return);
2719
+		$return = geodir_ucwords($return);
2720
+		$return = $translate ? __($return, 'geodirectory') : $return;
2721 2721
 	}
2722 2722
 
2723 2723
 	return $return;
@@ -2735,26 +2735,26 @@  discard block
 block discarded – undo
2735 2735
  *
2736 2736
  * @param int $number Comments number.
2737 2737
  */
2738
-function geodir_comments_number( $number ) {
2738
+function geodir_comments_number($number) {
2739 2739
 	global $post;
2740 2740
 	
2741
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2741
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2742 2742
 		$number = get_comments_number();
2743 2743
 		
2744
-		if ( $number > 1 ) {
2745
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2746
-		} elseif ( $number == 0 || $number == '' ) {
2747
-			$output = __( 'No Comments', 'geodirectory' );
2744
+		if ($number > 1) {
2745
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2746
+		} elseif ($number == 0 || $number == '') {
2747
+			$output = __('No Comments', 'geodirectory');
2748 2748
 		} else { // must be one
2749
-			$output = __( '1 Comment', 'geodirectory' );
2749
+			$output = __('1 Comment', 'geodirectory');
2750 2750
 		}
2751 2751
 	} else {    
2752
-		if ( $number > 1 ) {
2753
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2754
-		} elseif ( $number == 0 || $number == '' ) {
2755
-			$output = __( 'No Reviews', 'geodirectory' );
2752
+		if ($number > 1) {
2753
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2754
+		} elseif ($number == 0 || $number == '') {
2755
+			$output = __('No Reviews', 'geodirectory');
2756 2756
 		} else { // must be one
2757
-			$output = __( '1 Review', 'geodirectory' );
2757
+			$output = __('1 Review', 'geodirectory');
2758 2758
 		}
2759 2759
 	}
2760 2760
 	
@@ -2771,18 +2771,18 @@  discard block
 block discarded – undo
2771 2771
  */
2772 2772
 function is_page_geodir_home() {
2773 2773
 	global $wpdb;
2774
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2775
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2776
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2774
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2775
+	if (function_exists('geodir_location_geo_home_link')) {
2776
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2777 2777
 	}
2778
-	$home_url = home_url( '', 'http' );
2779
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2780
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2778
+	$home_url = home_url('', 'http');
2779
+	if (function_exists('geodir_location_geo_home_link')) {
2780
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2781 2781
 	}
2782
-	$home_url = str_replace( "www.", "", $home_url );
2783
-	if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
2782
+	$home_url = str_replace("www.", "", $home_url);
2783
+	if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
2784 2784
 		return true;
2785
-	} elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
2785
+	} elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
2786 2786
 		return true;
2787 2787
 	} else {
2788 2788
 		return false;
@@ -2802,18 +2802,18 @@  discard block
 block discarded – undo
2802 2802
  *
2803 2803
  * @return string The canonical URL.
2804 2804
  */
2805
-function geodir_wpseo_homepage_canonical( $url ) {
2805
+function geodir_wpseo_homepage_canonical($url) {
2806 2806
 	global $post;
2807 2807
 
2808
-	if ( is_page_geodir_home() ) {
2808
+	if (is_page_geodir_home()) {
2809 2809
 		return home_url();
2810 2810
 	}
2811 2811
 
2812 2812
 	return $url;
2813 2813
 }
2814 2814
 
2815
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2816
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2815
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2816
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2817 2817
 
2818 2818
 /**
2819 2819
  * Add extra fields to google maps script call.
@@ -2826,20 +2826,20 @@  discard block
 block discarded – undo
2826 2826
  *
2827 2827
  * @return string Modified extra string.
2828 2828
  */
2829
-function geodir_googlemap_script_extra_details_page( $extra ) {
2829
+function geodir_googlemap_script_extra_details_page($extra) {
2830 2830
 	global $post;
2831 2831
 	$add_google_places_api = false;
2832
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2832
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2833 2833
 		$add_google_places_api = true;
2834 2834
 	}
2835
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2835
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2836 2836
 		$extra .= "&amp;libraries=places";
2837 2837
 	}
2838 2838
 
2839 2839
 	return $extra;
2840 2840
 }
2841 2841
 
2842
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2842
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2843 2843
 
2844 2844
 
2845 2845
 /**
@@ -2858,119 +2858,119 @@  discard block
 block discarded – undo
2858 2858
  *                                          after_widget.
2859 2859
  * @param array|string $instance            The settings for the particular instance of the widget.
2860 2860
  */
2861
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2861
+function geodir_popular_post_category_output($args = '', $instance = '') {
2862 2862
 	// prints the widget
2863 2863
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2864
-	extract( $args, EXTR_SKIP );
2864
+	extract($args, EXTR_SKIP);
2865 2865
 
2866 2866
 	echo $before_widget;
2867 2867
 
2868 2868
 	/** This filter is documented in geodirectory_widgets.php */
2869
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2869
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2870 2870
 
2871 2871
 	$gd_post_type = geodir_get_current_posttype();
2872 2872
 
2873
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2873
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2874 2874
 	if (!isset($category_restrict)) {
2875 2875
 		$category_restrict = false;
2876 2876
 	}
2877
-	if ( ! empty( $gd_post_type ) ) {
2877
+	if (!empty($gd_post_type)) {
2878 2878
 		$default_post_type = $gd_post_type;
2879
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2879
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2880 2880
 		$default_post_type = $instance['default_post_type'];
2881 2881
 	} else {
2882 2882
 		$all_gd_post_type  = geodir_get_posttypes();
2883
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2883
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2884 2884
 	}
2885
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2885
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2886 2886
 
2887 2887
 	$taxonomy = array();
2888
-	if ( ! empty( $gd_post_type ) ) {
2889
-		$taxonomy[] = $gd_post_type . "category";
2888
+	if (!empty($gd_post_type)) {
2889
+		$taxonomy[] = $gd_post_type."category";
2890 2890
 	} else {
2891
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2891
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2892 2892
 	}
2893 2893
 
2894 2894
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2895 2895
 
2896
-	$term_args = array( 'taxonomy' => $taxonomy );
2897
-	if ( $parent_only ) {
2896
+	$term_args = array('taxonomy' => $taxonomy);
2897
+	if ($parent_only) {
2898 2898
 		$term_args['parent'] = 0;
2899 2899
 	}
2900 2900
 
2901
-	$terms   = get_terms( $term_args );
2901
+	$terms   = get_terms($term_args);
2902 2902
 	$a_terms = array();
2903 2903
 	$b_terms = array();
2904 2904
 
2905
-	foreach ( $terms as $term ) {
2906
-		if ( $term->count > 0 ) {
2907
-			$a_terms[ $term->taxonomy ][] = $term;
2905
+	foreach ($terms as $term) {
2906
+		if ($term->count > 0) {
2907
+			$a_terms[$term->taxonomy][] = $term;
2908 2908
 		}
2909 2909
 	}
2910 2910
 
2911
-	if ( ! empty( $a_terms ) ) {
2911
+	if (!empty($a_terms)) {
2912 2912
 		// Sort CPT taxonomies in categories widget.
2913
-		if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
2913
+		if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
2914 2914
 			$gd_post_types = geodir_get_posttypes();
2915 2915
 			$sort_taxonomies = array();
2916 2916
 			
2917
-			foreach ( $gd_post_types as $gd_post_type ) {
2918
-				$taxonomy_name = $gd_post_type . 'category';
2917
+			foreach ($gd_post_types as $gd_post_type) {
2918
+				$taxonomy_name = $gd_post_type.'category';
2919 2919
 				
2920
-				if ( !empty( $a_terms[$taxonomy_name] ) ) {
2920
+				if (!empty($a_terms[$taxonomy_name])) {
2921 2921
 					$sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name];
2922 2922
 				}
2923 2923
 			}
2924
-			$a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms;
2924
+			$a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms;
2925 2925
 		}
2926 2926
 		
2927
-		foreach ( $a_terms as $b_key => $b_val ) {
2928
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2927
+		foreach ($a_terms as $b_key => $b_val) {
2928
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2929 2929
 		}
2930 2930
 
2931
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2931
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2932 2932
 
2933 2933
 		$tax_change_output = '';
2934
-		if ( count( $b_terms ) > 1 ) {
2935
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2936
-			foreach ( $b_terms as $key => $val ) {
2937
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2938
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2939
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2934
+		if (count($b_terms) > 1) {
2935
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2936
+			foreach ($b_terms as $key => $val) {
2937
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2938
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2939
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2940 2940
 			}
2941 2941
 			$tax_change_output .= "</select>";
2942 2942
 		}
2943 2943
 
2944
-		if ( ! empty( $b_terms ) ) {
2945
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2946
-			global $cat_count;//make global so we can change via function
2944
+		if (!empty($b_terms)) {
2945
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2946
+			global $cat_count; //make global so we can change via function
2947 2947
 			$cat_count = 0;
2948 2948
 			?>
2949 2949
 			<div class="geodir-category-list-in clearfix">
2950 2950
 				<div class="geodir-cat-list clearfix">
2951 2951
 					<?php
2952
-					echo $before_title . __( $title ) . $after_title;
2952
+					echo $before_title.__($title).$after_title;
2953 2953
 
2954 2954
 					echo $tax_change_output;
2955 2955
 
2956 2956
 					echo '<ul class="geodir-popular-cat-list">';
2957 2957
 
2958
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2958
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2959 2959
 
2960 2960
 					echo '</ul>';
2961 2961
 					?>
2962 2962
 				</div>
2963 2963
 				<?php
2964 2964
 				$hide = '';
2965
-				if ( $cat_count < $category_limit ) {
2965
+				if ($cat_count < $category_limit) {
2966 2966
 					$hide = 'style="display:none;"';
2967 2967
 				}
2968 2968
 				echo "<div class='geodir-cat-list-more' $hide >";
2969
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2970
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2969
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2970
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2971 2971
 				echo "</div>";
2972 2972
 				/* add scripts */
2973
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2973
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2974 2974
 				?>
2975 2975
 			</div>
2976 2976
 			<?php
@@ -2990,28 +2990,28 @@  discard block
 block discarded – undo
2990 2990
  * @param int $category_limit               Number of categories to display by default.
2991 2991
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
2992 2992
  */
2993
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2993
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2994 2994
 	global $geodir_post_category_str, $cat_count;
2995 2995
 	$term_icons = geodir_get_term_icon();
2996 2996
 
2997 2997
 	$geodir_post_category_str = array();
2998 2998
 
2999 2999
 
3000
-	foreach ( $terms as $cat ) {
3001
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
3002
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
3000
+	foreach ($terms as $cat) {
3001
+		$post_type     = str_replace("category", "", $cat->taxonomy);
3002
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
3003 3003
 
3004
-		$cat_count ++;
3004
+		$cat_count++;
3005 3005
 
3006
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
3006
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
3007 3007
 
3008
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3009
-		if($category_restrict && $cat_count > $category_limit ){
3008
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3009
+		if ($category_restrict && $cat_count > $category_limit) {
3010 3010
 			continue;
3011 3011
 		}
3012 3012
 		$total_post = $cat->count;
3013 3013
 
3014
-		$term_link = get_term_link( $cat, $cat->taxonomy );
3014
+		$term_link = get_term_link($cat, $cat->taxonomy);
3015 3015
 		/**
3016 3016
 		 * Filer the category term link.
3017 3017
 		 *
@@ -3021,11 +3021,11 @@  discard block
 block discarded – undo
3021 3021
 		 * @param int $cat          ->term_id The term id.
3022 3022
 		 * @param string $post_type Wordpress post type.
3023 3023
 		 */
3024
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
3024
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
3025 3025
 
3026
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
3027
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
3028
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
3026
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
3027
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
3028
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
3029 3029
 		echo '</a></li>';
3030 3030
 	}
3031 3031
 }
@@ -3040,14 +3040,14 @@  discard block
 block discarded – undo
3040 3040
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3041 3041
  * @param array|string $instance The settings for the particular instance of the widget.
3042 3042
  */
3043
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3043
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3044 3044
 	// prints the widget
3045
-	extract( $args, EXTR_SKIP );
3045
+	extract($args, EXTR_SKIP);
3046 3046
 
3047 3047
 	echo $before_widget;
3048 3048
 
3049 3049
 	/** This filter is documented in geodirectory_widgets.php */
3050
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3050
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3051 3051
 	/**
3052 3052
 	 * Filter the widget post type.
3053 3053
 	 *
@@ -3055,7 +3055,7 @@  discard block
 block discarded – undo
3055 3055
 	 *
3056 3056
 	 * @param string $instance ['post_type'] Post type of listing.
3057 3057
 	 */
3058
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3058
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3059 3059
 	/**
3060 3060
 	 * Filter the widget's term.
3061 3061
 	 *
@@ -3063,7 +3063,7 @@  discard block
 block discarded – undo
3063 3063
 	 *
3064 3064
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3065 3065
 	 */
3066
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3066
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3067 3067
 	/**
3068 3068
 	 * Filter widget's "add_location_filter" value.
3069 3069
 	 *
@@ -3071,7 +3071,7 @@  discard block
 block discarded – undo
3071 3071
 	 *
3072 3072
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3073 3073
 	 */
3074
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3074
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3075 3075
 	/**
3076 3076
 	 * Filter the widget listings limit.
3077 3077
 	 *
@@ -3079,7 +3079,7 @@  discard block
 block discarded – undo
3079 3079
 	 *
3080 3080
 	 * @param string $instance ['post_number'] Number of listings to display.
3081 3081
 	 */
3082
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3082
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3083 3083
 	/**
3084 3084
 	 * Filter the widget listings limit shown at one time.
3085 3085
 	 *
@@ -3087,7 +3087,7 @@  discard block
 block discarded – undo
3087 3087
 	 *
3088 3088
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3089 3089
 	 */
3090
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3090
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3091 3091
 	/**
3092 3092
 	 * Filter the widget slide width.
3093 3093
 	 *
@@ -3095,7 +3095,7 @@  discard block
 block discarded – undo
3095 3095
 	 *
3096 3096
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3097 3097
 	 */
3098
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3098
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3099 3099
 	/**
3100 3100
 	 * Filter widget's "show title" value.
3101 3101
 	 *
@@ -3103,7 +3103,7 @@  discard block
 block discarded – undo
3103 3103
 	 *
3104 3104
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3105 3105
 	 */
3106
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3106
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3107 3107
 	/**
3108 3108
 	 * Filter widget's "slideshow" value.
3109 3109
 	 *
@@ -3111,7 +3111,7 @@  discard block
 block discarded – undo
3111 3111
 	 *
3112 3112
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3113 3113
 	 */
3114
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3114
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3115 3115
 	/**
3116 3116
 	 * Filter widget's "animationLoop" value.
3117 3117
 	 *
@@ -3119,7 +3119,7 @@  discard block
 block discarded – undo
3119 3119
 	 *
3120 3120
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3121 3121
 	 */
3122
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3122
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3123 3123
 	/**
3124 3124
 	 * Filter widget's "directionNav" value.
3125 3125
 	 *
@@ -3127,7 +3127,7 @@  discard block
 block discarded – undo
3127 3127
 	 *
3128 3128
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3129 3129
 	 */
3130
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3130
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3131 3131
 	/**
3132 3132
 	 * Filter widget's "slideshowSpeed" value.
3133 3133
 	 *
@@ -3135,7 +3135,7 @@  discard block
 block discarded – undo
3135 3135
 	 *
3136 3136
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3137 3137
 	 */
3138
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3138
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3139 3139
 	/**
3140 3140
 	 * Filter widget's "animationSpeed" value.
3141 3141
 	 *
@@ -3143,7 +3143,7 @@  discard block
 block discarded – undo
3143 3143
 	 *
3144 3144
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3145 3145
 	 */
3146
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3146
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3147 3147
 	/**
3148 3148
 	 * Filter widget's "animation" value.
3149 3149
 	 *
@@ -3151,7 +3151,7 @@  discard block
 block discarded – undo
3151 3151
 	 *
3152 3152
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3153 3153
 	 */
3154
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3154
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3155 3155
 	/**
3156 3156
 	 * Filter widget's "list_sort" type.
3157 3157
 	 *
@@ -3159,10 +3159,10 @@  discard block
 block discarded – undo
3159 3159
 	 *
3160 3160
 	 * @param string $instance ['list_sort'] Listing sort by type.
3161 3161
 	 */
3162
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3163
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3162
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3163
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3164 3164
 
3165
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3165
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3166 3166
 	?>
3167 3167
 		<script type="text/javascript">
3168 3168
 		jQuery(window).load(function () {
@@ -3181,7 +3181,7 @@  discard block
 block discarded – undo
3181 3181
 				itemWidth: 75,
3182 3182
 				itemMargin: 5,
3183 3183
 				asNavFor: '#geodir_widget_slider',
3184
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3184
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3185 3185
 				start: function (slider) {
3186 3186
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3187 3187
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3189,19 +3189,19 @@  discard block
 block discarded – undo
3189 3189
 			});
3190 3190
 			
3191 3191
 			jQuery('#geodir_widget_slider').flexslider({
3192
-				animation: "<?php echo $animation;?>",
3192
+				animation: "<?php echo $animation; ?>",
3193 3193
 				selector: ".geodir-slides > li",
3194 3194
 				namespace: "geodir-",
3195 3195
 				controlNav: true,
3196
-				animationLoop: <?php echo $animationLoop;?>,
3197
-				slideshow: <?php echo $slideshow;?>,
3198
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3199
-				animationSpeed: <?php echo $animationSpeed;?>,
3200
-				directionNav: <?php echo $directionNav;?>,
3201
-				maxItems: <?php echo $max_show;?>,
3196
+				animationLoop: <?php echo $animationLoop; ?>,
3197
+				slideshow: <?php echo $slideshow; ?>,
3198
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3199
+				animationSpeed: <?php echo $animationSpeed; ?>,
3200
+				directionNav: <?php echo $directionNav; ?>,
3201
+				maxItems: <?php echo $max_show; ?>,
3202 3202
 				move: 1,
3203
-				<?php if ( $slide_width ) {
3204
-				echo "itemWidth: " . $slide_width . ",";
3203
+				<?php if ($slide_width) {
3204
+				echo "itemWidth: ".$slide_width.",";
3205 3205
 			}?>
3206 3206
 				sync: "#geodir_widget_carousel",
3207 3207
 				start: function (slider) {
@@ -3212,7 +3212,7 @@  discard block
 block discarded – undo
3212 3212
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3213 3213
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3214 3214
 				},
3215
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3215
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3216 3216
 			});
3217 3217
 		});
3218 3218
 	</script>
@@ -3225,62 +3225,62 @@  discard block
 block discarded – undo
3225 3225
 		'order_by'       => $list_sort
3226 3226
 	);
3227 3227
 
3228
-	if ( $show_featured_only ) {
3228
+	if ($show_featured_only) {
3229 3229
 		$query_args['show_featured_only'] = 1;
3230 3230
 	}
3231 3231
 
3232
-	if ( $category != 0 || $category != '' ) {
3233
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3232
+	if ($category != 0 || $category != '') {
3233
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3234 3234
 		$tax_query         = array(
3235 3235
 			'taxonomy' => $category_taxonomy[0],
3236 3236
 			'field'    => 'id',
3237 3237
 			'terms'    => $category
3238 3238
 		);
3239 3239
 
3240
-		$query_args['tax_query'] = array( $tax_query );
3240
+		$query_args['tax_query'] = array($tax_query);
3241 3241
 	}
3242 3242
 
3243 3243
 	// we want listings with featured image only
3244 3244
 	$query_args['featured_image_only'] = 1;
3245 3245
 
3246
-	if ( $post_type == 'gd_event' ) {
3246
+	if ($post_type == 'gd_event') {
3247 3247
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3248 3248
 	}// show only upcoming events
3249 3249
 
3250
-	$widget_listings = geodir_get_widget_listings( $query_args );
3251
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3252
-		if ( $title ) {
3253
-			echo $before_title . $title . $after_title;
3250
+	$widget_listings = geodir_get_widget_listings($query_args);
3251
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3252
+		if ($title) {
3253
+			echo $before_title.$title.$after_title;
3254 3254
 		}
3255 3255
 
3256 3256
 		global $post;
3257 3257
 
3258
-		$current_post = $post;// keep current post info
3258
+		$current_post = $post; // keep current post info
3259 3259
 
3260 3260
 		$widget_main_slides = '';
3261 3261
 		$nav_slides         = '';
3262 3262
 		$widget_slides      = 0;
3263 3263
 
3264
-		foreach ( $widget_listings as $widget_listing ) {
3264
+		foreach ($widget_listings as $widget_listing) {
3265 3265
 			global $gd_widget_listing_type;
3266 3266
 			$post         = $widget_listing;
3267
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3267
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3268 3268
 
3269
-			if ( ! empty( $widget_image ) ) {
3270
-				if ( $widget_image->height >= 200 ) {
3269
+			if (!empty($widget_image)) {
3270
+				if ($widget_image->height >= 200) {
3271 3271
 					$widget_spacer_height = 0;
3272 3272
 				} else {
3273
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3273
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3274 3274
 				}
3275 3275
 
3276
-				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />';
3276
+				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />';
3277 3277
 
3278 3278
 				$title = '';
3279
-				if ( $show_title ) {
3280
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3279
+				if ($show_title) {
3280
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3281 3281
 					$post_id        = $post->ID;
3282
-					$post_permalink = get_permalink( $post->ID );
3283
-					$post_title     = get_the_title( $post->ID );
3282
+					$post_permalink = get_permalink($post->ID);
3283
+					$post_title     = get_the_title($post->ID);
3284 3284
 					/**
3285 3285
 					 * Filter the listing slider widget title.
3286 3286
 					 *
@@ -3291,12 +3291,12 @@  discard block
 block discarded – undo
3291 3291
 					 * @param string $post_permalink The post permalink url.
3292 3292
 					 * @param string $post_title     The post title text.
3293 3293
 					 */
3294
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3294
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3295 3295
 				}
3296 3296
 
3297
-				$widget_main_slides .= $title . '<a href="' . get_permalink( $post->ID ) . '"><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></a></li>';
3298
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3299
-				$widget_slides ++;
3297
+				$widget_main_slides .= $title.'<a href="'.get_permalink($post->ID).'"><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></a></li>';
3298
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3299
+				$widget_slides++;
3300 3300
 			}
3301 3301
 		}
3302 3302
 		?>
@@ -3305,7 +3305,7 @@  discard block
 block discarded – undo
3305 3305
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3306 3306
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3307 3307
 			</div>
3308
-			<?php if ( $widget_slides > 1 ) { ?>
3308
+			<?php if ($widget_slides > 1) { ?>
3309 3309
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3310 3310
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3311 3311
 				</div>
@@ -3313,7 +3313,7 @@  discard block
 block discarded – undo
3313 3313
 		</div>
3314 3314
 		<?php
3315 3315
 		$GLOBALS['post'] = $current_post;
3316
-		setup_postdata( $current_post );
3316
+		setup_postdata($current_post);
3317 3317
 	}
3318 3318
 	echo $after_widget;
3319 3319
 }
@@ -3329,50 +3329,50 @@  discard block
 block discarded – undo
3329 3329
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3330 3330
  * @param array|string $instance The settings for the particular instance of the widget.
3331 3331
  */
3332
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3332
+function geodir_loginwidget_output($args = '', $instance = '') {
3333 3333
 	//print_r($args);
3334 3334
 	//print_r($instance);
3335 3335
 	// prints the widget
3336
-	extract( $args, EXTR_SKIP );
3336
+	extract($args, EXTR_SKIP);
3337 3337
 
3338 3338
 	/** This filter is documented in geodirectory_widgets.php */
3339
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3339
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3340 3340
 
3341 3341
 	echo $before_widget;
3342
-	echo $before_title . $title . $after_title;
3342
+	echo $before_title.$title.$after_title;
3343 3343
 
3344 3344
 //	global $gd_session;
3345 3345
 //	print_r($gd_session);
3346 3346
 //	print_r($_SESSION);
3347 3347
 
3348
-	if ( is_user_logged_in() ) {
3348
+	if (is_user_logged_in()) {
3349 3349
 		global $current_user;
3350 3350
 
3351
-		$author_link = get_author_posts_url( $current_user->data->ID );
3352
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3351
+		$author_link = get_author_posts_url($current_user->data->ID);
3352
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3353 3353
 
3354 3354
 		echo '<ul class="geodir-loginbox-list">';
3355 3355
 		ob_start();
3356 3356
 		?>
3357 3357
 		<li><a class="signin"
3358
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3358
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3359 3359
 		<?php
3360
-		$post_types                           = geodir_get_posttypes( 'object' );
3361
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3362
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3360
+		$post_types                           = geodir_get_posttypes('object');
3361
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3362
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3363 3363
 
3364
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3364
+		if (!empty($show_add_listing_post_types_main_nav)) {
3365 3365
 			$addlisting_links = '';
3366
-			foreach ( $post_types as $key => $postobj ) {
3366
+			foreach ($post_types as $key => $postobj) {
3367 3367
 
3368
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3368
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3369 3369
 
3370
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3370
+					if ($add_link = geodir_get_addlisting_link($key)) {
3371 3371
 
3372 3372
 						$name = $postobj->labels->name;
3373 3373
 
3374 3374
 						$selected = '';
3375
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3375
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3376 3376
 							$selected = 'selected="selected"';
3377 3377
 						}
3378 3378
 
@@ -3385,23 +3385,23 @@  discard block
 block discarded – undo
3385 3385
 						 * @param string $key       Add listing array key.
3386 3386
 						 * @param int $current_user ->ID Current user ID.
3387 3387
 						 */
3388
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3389
-						$name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID );
3388
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3389
+						$name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
3390 3390
 
3391
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3391
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3392 3392
 
3393 3393
 					}
3394 3394
 				}
3395 3395
 
3396 3396
 			}
3397 3397
 
3398
-			if ( $addlisting_links != '' ) { ?>
3398
+			if ($addlisting_links != '') { ?>
3399 3399
 
3400 3400
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3401 3401
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3402
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3402
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3403 3403
 						<option value="" disabled="disabled" selected="selected"
3404
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3404
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3405 3405
 						<?php echo $addlisting_links; ?>
3406 3406
 					</select></li> <?php
3407 3407
 
@@ -3409,24 +3409,24 @@  discard block
 block discarded – undo
3409 3409
 
3410 3410
 		}
3411 3411
 		// My Favourites in Dashboard
3412
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3412
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3413 3413
 		$user_favourite                    = geodir_user_favourite_listing_count();
3414 3414
 
3415
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3415
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3416 3416
 			$favourite_links = '';
3417 3417
 
3418
-			foreach ( $post_types as $key => $postobj ) {
3419
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3418
+			foreach ($post_types as $key => $postobj) {
3419
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3420 3420
 					$name           = $postobj->labels->name;
3421 3421
 					$fav_author_link = apply_filters('gd_dash_fav_author_link', $author_link, $current_user->data->ID);
3422
-					$post_type_link = geodir_getlink( $fav_author_link, array(
3422
+					$post_type_link = geodir_getlink($fav_author_link, array(
3423 3423
 						'stype' => $key,
3424 3424
 						'list'  => 'favourite'
3425
-					), false );
3425
+					), false);
3426 3426
 
3427 3427
 					$selected = '';
3428 3428
 
3429
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3429
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3430 3430
 						$selected = 'selected="selected"';
3431 3431
 					}
3432 3432
 					/**
@@ -3438,20 +3438,20 @@  discard block
 block discarded – undo
3438 3438
 					 * @param string $key            Favorite listing array key.
3439 3439
 					 * @param int $current_user      ->ID Current user ID.
3440 3440
 					 */
3441
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3441
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3442 3442
 
3443
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3443
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3444 3444
 				}
3445 3445
 			}
3446 3446
 
3447
-			if ( $favourite_links != '' ) {
3447
+			if ($favourite_links != '') {
3448 3448
 				?>
3449 3449
 				<li>
3450 3450
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3451 3451
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3452
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3452
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3453 3453
 						<option value="" disabled="disabled" selected="selected"
3454
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3454
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3455 3455
 						<?php echo $favourite_links; ?>
3456 3456
 					</select>
3457 3457
 				</li>
@@ -3460,20 +3460,20 @@  discard block
 block discarded – undo
3460 3460
 		}
3461 3461
 
3462 3462
 
3463
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3463
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3464 3464
 		$user_listing                     = geodir_user_post_listing_count();
3465 3465
 
3466
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3466
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3467 3467
 			$listing_links = '';
3468 3468
 
3469
-			foreach ( $post_types as $key => $postobj ) {
3470
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3469
+			foreach ($post_types as $key => $postobj) {
3470
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3471 3471
 					$name         = $postobj->labels->name;
3472 3472
 					$listing_author_link = apply_filters('gd_dash_listing_author_link', $author_link, $current_user->data->ID);
3473
-					$listing_link = geodir_getlink( $listing_author_link, array( 'stype' => $key ), false );
3473
+					$listing_link = geodir_getlink($listing_author_link, array('stype' => $key), false);
3474 3474
 
3475 3475
 					$selected = '';
3476
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3476
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3477 3477
 						$selected = 'selected="selected"';
3478 3478
 					}
3479 3479
 
@@ -3486,20 +3486,20 @@  discard block
 block discarded – undo
3486 3486
 					 * @param string $key          My listing array key.
3487 3487
 					 * @param int $current_user    ->ID Current user ID.
3488 3488
 					 */
3489
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3489
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3490 3490
 
3491
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3491
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3492 3492
 				}
3493 3493
 			}
3494 3494
 
3495
-			if ( $listing_links != '' ) {
3495
+			if ($listing_links != '') {
3496 3496
 				?>
3497 3497
 				<li>
3498 3498
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3499 3499
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3500
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3500
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3501 3501
 						<option value="" disabled="disabled" selected="selected"
3502
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3502
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3503 3503
 						<?php echo $listing_links; ?>
3504 3504
 					</select>
3505 3505
 				</li>
@@ -3515,7 +3515,7 @@  discard block
 block discarded – undo
3515 3515
 		 *
3516 3516
 		 * @param string $dashboard_link Dashboard links HTML.
3517 3517
 		 */
3518
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3518
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3519 3519
 		echo '</ul>';
3520 3520
 
3521 3521
 		/**
@@ -3523,7 +3523,7 @@  discard block
 block discarded – undo
3523 3523
 		 *
3524 3524
 		 * @since 1.6.6
3525 3525
 		 */
3526
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3526
+		do_action('geodir_after_loginwidget_form_logged_in');
3527 3527
 
3528 3528
 
3529 3529
 	} else {
@@ -3538,18 +3538,18 @@  discard block
 block discarded – undo
3538 3538
 		<form name="loginform" class="loginform1"
3539 3539
 		      action="<?php echo geodir_login_url(); ?>"
3540 3540
 		      method="post">
3541
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3541
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3542 3542
 			                                    type="text" class="textfield user_login1"/> <span
3543 3543
 					class="user_loginInfo"></span></div>
3544
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3544
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3545 3545
 			                                    name="pwd" type="password"
3546 3546
 			                                    class="textfield user_pass1 input-text"/><span
3547 3547
 					class="user_passInfo"></span></div>
3548 3548
 
3549
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3549
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3550 3550
 			<input type="hidden" name="testcookie" value="1"/>
3551 3551
 
3552
-				<?php do_action( 'login_form' ); ?>
3552
+				<?php do_action('login_form'); ?>
3553 3553
 
3554 3554
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3555 3555
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3561,11 +3561,11 @@  discard block
 block discarded – undo
3561 3561
 					 *
3562 3562
 					 * @since 1.0.0
3563 3563
 					 */
3564
-					$is_enable_signup = get_option( 'users_can_register' );
3564
+					$is_enable_signup = get_option('users_can_register');
3565 3565
 					
3566
-					if ( $is_enable_signup ) {
3566
+					if ($is_enable_signup) {
3567 3567
 					?>
3568
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3568
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3569 3569
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3570 3570
 
3571 3571
 					<?php
@@ -3576,7 +3576,7 @@  discard block
 block discarded – undo
3576 3576
 					 * @since 1.0.0
3577 3577
 					 */
3578 3578
 					?>
3579
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3579
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3580 3580
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3581 3581
 		</form>
3582 3582
 		<?php
@@ -3585,7 +3585,7 @@  discard block
 block discarded – undo
3585 3585
 		 *
3586 3586
 		 * @since 1.6.6
3587 3587
 		 */
3588
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3588
+		do_action('geodir_after_loginwidget_form_logged_out');
3589 3589
 	}
3590 3590
 
3591 3591
 	echo $after_widget;
@@ -3607,14 +3607,14 @@  discard block
 block discarded – undo
3607 3607
  *                                         after_widget.
3608 3608
  * @param array|string $instance           The settings for the particular instance of the widget.
3609 3609
  */
3610
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3610
+function geodir_popular_postview_output($args = '', $instance = '') {
3611 3611
 	global $gd_session;
3612 3612
 
3613 3613
 	// prints the widget
3614
-	extract( $args, EXTR_SKIP );
3614
+	extract($args, EXTR_SKIP);
3615 3615
 
3616 3616
 	/** This filter is documented in geodirectory_widgets.php */
3617
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3617
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3618 3618
 	/**
3619 3619
 	 * Filter the widget post type.
3620 3620
 	 *
@@ -3622,7 +3622,7 @@  discard block
 block discarded – undo
3622 3622
 	 *
3623 3623
 	 * @param string $instance ['post_type'] Post type of listing.
3624 3624
 	 */
3625
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3625
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3626 3626
 	/**
3627 3627
 	 * Filter the widget's term.
3628 3628
 	 *
@@ -3630,7 +3630,7 @@  discard block
 block discarded – undo
3630 3630
 	 *
3631 3631
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3632 3632
 	 */
3633
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3633
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3634 3634
 	/**
3635 3635
 	 * Filter the widget listings limit.
3636 3636
 	 *
@@ -3638,7 +3638,7 @@  discard block
 block discarded – undo
3638 3638
 	 *
3639 3639
 	 * @param string $instance ['post_number'] Number of listings to display.
3640 3640
 	 */
3641
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3641
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3642 3642
 	/**
3643 3643
 	 * Filter widget's "layout" type.
3644 3644
 	 *
@@ -3646,7 +3646,7 @@  discard block
 block discarded – undo
3646 3646
 	 *
3647 3647
 	 * @param string $instance ['layout'] Widget layout type.
3648 3648
 	 */
3649
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3649
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3650 3650
 	/**
3651 3651
 	 * Filter widget's "add_location_filter" value.
3652 3652
 	 *
@@ -3654,7 +3654,7 @@  discard block
 block discarded – undo
3654 3654
 	 *
3655 3655
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3656 3656
 	 */
3657
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3657
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3658 3658
 	/**
3659 3659
 	 * Filter widget's listing width.
3660 3660
 	 *
@@ -3662,7 +3662,7 @@  discard block
 block discarded – undo
3662 3662
 	 *
3663 3663
 	 * @param string $instance ['listing_width'] Listing width.
3664 3664
 	 */
3665
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3665
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3666 3666
 	/**
3667 3667
 	 * Filter widget's "list_sort" type.
3668 3668
 	 *
@@ -3670,36 +3670,36 @@  discard block
 block discarded – undo
3670 3670
 	 *
3671 3671
 	 * @param string $instance ['list_sort'] Listing sort by type.
3672 3672
 	 */
3673
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3674
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3673
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3674
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3675 3675
 
3676 3676
 	// set post type to current viewing post type
3677
-	if ( $use_viewing_post_type ) {
3677
+	if ($use_viewing_post_type) {
3678 3678
 		$current_post_type = geodir_get_current_posttype();
3679
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3679
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3680 3680
 			$post_type = $current_post_type;
3681 3681
 			$category  = array(); // old post type category will not work for current changed post type
3682 3682
 		}
3683 3683
 	}
3684 3684
 	// replace widget title dynamically
3685
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3686
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3685
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3686
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3687 3687
 
3688
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3689
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3688
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3689
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3690 3690
     
3691 3691
 	$categories = $category;
3692
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3693
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3692
+	if (!empty($category) && $category[0] != '0') {
3693
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3694 3694
 		
3695 3695
 		######### WPML #########
3696
-		if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
3697
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3696
+		if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
3697
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3698 3698
 		}
3699 3699
 		######### WPML #########
3700 3700
 	}
3701 3701
 
3702
-	if ( isset( $instance['character_count'] ) ) {
3702
+	if (isset($instance['character_count'])) {
3703 3703
 		/**
3704 3704
 		 * Filter the widget's excerpt character count.
3705 3705
 		 *
@@ -3707,37 +3707,37 @@  discard block
 block discarded – undo
3707 3707
 		 *
3708 3708
 		 * @param int $instance ['character_count'] Excerpt character count.
3709 3709
 		 */
3710
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3710
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3711 3711
 	} else {
3712 3712
 		$character_count = '';
3713 3713
 	}
3714 3714
 
3715
-	if ( empty( $title ) || $title == 'All' ) {
3716
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3715
+	if (empty($title) || $title == 'All') {
3716
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3717 3717
 	}
3718 3718
 
3719 3719
 	$location_url = array();
3720
-	$city         = get_query_var( 'gd_city' );
3721
-	if ( ! empty( $city ) ) {
3722
-		$country = get_query_var( 'gd_country' );
3723
-		$region  = get_query_var( 'gd_region' );
3720
+	$city         = get_query_var('gd_city');
3721
+	if (!empty($city)) {
3722
+		$country = get_query_var('gd_country');
3723
+		$region  = get_query_var('gd_region');
3724 3724
 
3725
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3725
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3726 3726
 
3727
-		if ( $geodir_show_location_url == 'all' ) {
3728
-			if ( $country != '' ) {
3727
+		if ($geodir_show_location_url == 'all') {
3728
+			if ($country != '') {
3729 3729
 				$location_url[] = $country;
3730 3730
 			}
3731 3731
 
3732
-			if ( $region != '' ) {
3732
+			if ($region != '') {
3733 3733
 				$location_url[] = $region;
3734 3734
 			}
3735
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3736
-			if ( $country != '' ) {
3735
+		} else if ($geodir_show_location_url == 'country_city') {
3736
+			if ($country != '') {
3737 3737
 				$location_url[] = $country;
3738 3738
 			}
3739
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3740
-			if ( $region != '' ) {
3739
+		} else if ($geodir_show_location_url == 'region_city') {
3740
+			if ($region != '') {
3741 3741
 				$location_url[] = $region;
3742 3742
 			}
3743 3743
 		}
@@ -3745,37 +3745,37 @@  discard block
 block discarded – undo
3745 3745
 		$location_url[] = $city;
3746 3746
 	}
3747 3747
 
3748
-	$location_url  = implode( '/', $location_url );
3748
+	$location_url  = implode('/', $location_url);
3749 3749
 	$skip_location = false;
3750
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3750
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3751 3751
 		$skip_location = true;
3752
-		$gd_session->un_set( 'gd_multi_location' );
3752
+		$gd_session->un_set('gd_multi_location');
3753 3753
 	}
3754 3754
 
3755
-	if ( get_option( 'permalink_structure' ) ) {
3756
-		$viewall_url = get_post_type_archive_link( $post_type );
3755
+	if (get_option('permalink_structure')) {
3756
+		$viewall_url = get_post_type_archive_link($post_type);
3757 3757
 	} else {
3758
-		$viewall_url = get_post_type_archive_link( $post_type );
3758
+		$viewall_url = get_post_type_archive_link($post_type);
3759 3759
 	}
3760 3760
 
3761
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3761
+	if (!empty($category) && $category[0] != '0') {
3762 3762
 		global $geodir_add_location_url;
3763 3763
 
3764 3764
 		$geodir_add_location_url = '0';
3765 3765
 
3766
-		if ( $add_location_filter != '0' ) {
3766
+		if ($add_location_filter != '0') {
3767 3767
 			$geodir_add_location_url = '1';
3768 3768
 		}
3769 3769
 
3770
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3770
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3771 3771
 
3772 3772
 		$geodir_add_location_url = null;
3773 3773
 	}
3774
-	if ( $skip_location ) {
3775
-		$gd_session->set( 'gd_multi_location', 1 );
3774
+	if ($skip_location) {
3775
+		$gd_session->set('gd_multi_location', 1);
3776 3776
 	}
3777 3777
 
3778
-	if ( is_wp_error( $viewall_url ) ) {
3778
+	if (is_wp_error($viewall_url)) {
3779 3779
 		$viewall_url = '';
3780 3780
 	}
3781 3781
 
@@ -3787,43 +3787,43 @@  discard block
 block discarded – undo
3787 3787
 		'order_by'       => $list_sort
3788 3788
 	);
3789 3789
 
3790
-	if ( $character_count ) {
3790
+	if ($character_count) {
3791 3791
 		$query_args['excerpt_length'] = $character_count;
3792 3792
 	}
3793 3793
 
3794
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3794
+	if (!empty($instance['show_featured_only'])) {
3795 3795
 		$query_args['show_featured_only'] = 1;
3796 3796
 	}
3797 3797
 
3798
-	if ( ! empty( $instance['show_special_only'] ) ) {
3798
+	if (!empty($instance['show_special_only'])) {
3799 3799
 		$query_args['show_special_only'] = 1;
3800 3800
 	}
3801 3801
 
3802
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3802
+	if (!empty($instance['with_pics_only'])) {
3803 3803
 		$query_args['with_pics_only']      = 0;
3804 3804
 		$query_args['featured_image_only'] = 1;
3805 3805
 	}
3806 3806
 
3807
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3807
+	if (!empty($instance['with_videos_only'])) {
3808 3808
 		$query_args['with_videos_only'] = 1;
3809 3809
 	}
3810
-	$hide_if_empty = ! empty( $instance['hide_if_empty'] ) ? true : false;
3810
+	$hide_if_empty = !empty($instance['hide_if_empty']) ? true : false;
3811 3811
 
3812
-	if ( ! empty( $categories ) && $categories[0] != '0' && !empty( $category_taxonomy ) ) {
3812
+	if (!empty($categories) && $categories[0] != '0' && !empty($category_taxonomy)) {
3813 3813
 		$tax_query = array(
3814 3814
 			'taxonomy' => $category_taxonomy[0],
3815 3815
 			'field'    => 'id',
3816 3816
 			'terms'    => $category
3817 3817
 		);
3818 3818
 
3819
-		$query_args['tax_query'] = array( $tax_query );
3819
+		$query_args['tax_query'] = array($tax_query);
3820 3820
 	}
3821 3821
 
3822 3822
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3823 3823
 
3824
-	$widget_listings = geodir_get_widget_listings( $query_args );
3824
+	$widget_listings = geodir_get_widget_listings($query_args);
3825 3825
     
3826
-	if ( $hide_if_empty && empty( $widget_listings ) ) {
3826
+	if ($hide_if_empty && empty($widget_listings)) {
3827 3827
 		return;
3828 3828
 	}
3829 3829
     
@@ -3838,11 +3838,11 @@  discard block
 block discarded – undo
3838 3838
 		 *
3839 3839
 		 * @since 1.0.0
3840 3840
 		 */
3841
-		do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3841
+		do_action('geodir_before_view_all_link_in_widget'); ?>
3842 3842
 		<div class="geodir_list_heading clearfix">
3843
-			<?php echo $before_title . $title . $after_title; ?>
3843
+			<?php echo $before_title.$title.$after_title; ?>
3844 3844
 			<a href="<?php echo $viewall_url; ?>"
3845
-			   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3845
+			   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3846 3846
 		</div>
3847 3847
 		<?php
3848 3848
 		/**
@@ -3850,10 +3850,10 @@  discard block
 block discarded – undo
3850 3850
 		 *
3851 3851
 		 * @since 1.0.0
3852 3852
 		 */
3853
-		do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3853
+		do_action('geodir_after_view_all_link_in_widget'); ?>
3854 3854
 		<?php
3855
-		if ( strstr( $layout, 'gridview' ) ) {
3856
-			$listing_view_exp        = explode( '_', $layout );
3855
+		if (strstr($layout, 'gridview')) {
3856
+			$listing_view_exp        = explode('_', $layout);
3857 3857
 			$gridview_columns_widget = $layout;
3858 3858
 			$layout                  = $listing_view_exp[0];
3859 3859
 		} else {
@@ -3864,8 +3864,8 @@  discard block
 block discarded – undo
3864 3864
 		 *
3865 3865
 		 * @since 1.0.0
3866 3866
 		 */
3867
-		$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3868
-		if ( ! isset( $character_count ) ) {
3867
+		$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3868
+		if (!isset($character_count)) {
3869 3869
 			/**
3870 3870
 			 * Filter the widget's excerpt character count.
3871 3871
 			 *
@@ -3873,7 +3873,7 @@  discard block
 block discarded – undo
3873 3873
 			 *
3874 3874
 			 * @param int $instance ['character_count'] Excerpt character count.
3875 3875
 			 */
3876
-			$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3876
+			$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3877 3877
 		}
3878 3878
 
3879 3879
 		global $post, $map_jason, $map_canvas_arr;
@@ -3888,13 +3888,13 @@  discard block
 block discarded – undo
3888 3888
 		 *
3889 3889
 		 * @since 1.0.0
3890 3890
 		 */
3891
-		include( $template );
3891
+		include($template);
3892 3892
 
3893 3893
 		$geodir_is_widget_listing = false;
3894 3894
 
3895 3895
 		$GLOBALS['post'] = $current_post;
3896
-		if ( ! empty( $current_post ) ) {
3897
-			setup_postdata( $current_post );
3896
+		if (!empty($current_post)) {
3897
+			setup_postdata($current_post);
3898 3898
 		}
3899 3899
 		$map_jason      = $current_map_jason;
3900 3900
 		$map_canvas_arr = $current_map_canvas_arr;
@@ -3923,12 +3923,12 @@  discard block
 block discarded – undo
3923 3923
  *
3924 3924
  * @return int Reviews count.
3925 3925
  */
3926
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3926
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3927 3927
 	global $wpdb, $plugin_prefix;
3928 3928
 
3929
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3929
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3930 3930
 
3931
-	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
3931
+	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
3932 3932
 
3933 3933
 	/**
3934 3934
 	 * Filter count review sql query.
@@ -3940,9 +3940,9 @@  discard block
 block discarded – undo
3940 3940
 	 * @param int $taxonomy     The taxonomy Id.
3941 3941
 	 * @param string $post_type The post type.
3942 3942
 	 */
3943
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3943
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3944 3944
 
3945
-	$count = $wpdb->get_var( $sql );
3945
+	$count = $wpdb->get_var($sql);
3946 3946
 
3947 3947
 	return $count;
3948 3948
 }
@@ -3960,7 +3960,7 @@  discard block
 block discarded – undo
3960 3960
  *
3961 3961
  * @return array Term array data.
3962 3962
  */
3963
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3963
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3964 3964
 	/**
3965 3965
 	 * Filter review count option data.
3966 3966
 	 *
@@ -3970,78 +3970,78 @@  discard block
 block discarded – undo
3970 3970
 	 * @param bool $force_update Force update option value?. Default.false.
3971 3971
 	 * @param int $post_ID       The post id to update if any.
3972 3972
 	 */
3973
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3974
-	if ( ! empty( $option_data ) ) {
3973
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3974
+	if (!empty($option_data)) {
3975 3975
 		return $option_data;
3976 3976
 	}
3977 3977
 
3978
-	$option_data = get_option( 'geodir_global_review_count' );
3978
+	$option_data = get_option('geodir_global_review_count');
3979 3979
 
3980
-	if ( ! $option_data || $force_update ) {
3981
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3980
+	if (!$option_data || $force_update) {
3981
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3982 3982
 			global $gd_session;
3983 3983
 			$term_array = (array) $option_data;
3984
-			$post_type  = get_post_type( $post_ID );
3985
-			$taxonomy   = $post_type . 'category';
3986
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3987
-
3988
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3989
-				foreach ( $terms as $term_id ) {
3990
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3991
-					$children               = get_term_children( $term_id, $taxonomy );
3992
-					$term_array[ $term_id ] = $count;
3984
+			$post_type  = get_post_type($post_ID);
3985
+			$taxonomy   = $post_type.'category';
3986
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3987
+
3988
+			if (!empty($terms) && !is_wp_error($terms)) {
3989
+				foreach ($terms as $term_id) {
3990
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3991
+					$children               = get_term_children($term_id, $taxonomy);
3992
+					$term_array[$term_id] = $count;
3993 3993
 				}
3994 3994
 			}
3995 3995
 
3996
-			$session_listing = $gd_session->get( 'listing' );
3996
+			$session_listing = $gd_session->get('listing');
3997 3997
 
3998 3998
 			$terms = array();
3999
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
4000
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
4001
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
4002
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3999
+			if (isset($_POST['post_category'][$taxonomy])) {
4000
+				$terms = (array) $_POST['post_category'][$taxonomy];
4001
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
4002
+				$terms = (array) $session_listing['post_category'][$taxonomy];
4003 4003
 			}
4004 4004
 
4005
-			if ( ! empty( $terms ) ) {
4006
-				foreach ( $terms as $term_id ) {
4007
-					if ( $term_id > 0 ) {
4008
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4009
-						$children               = get_term_children( $term_id, $taxonomy );
4010
-						$term_array[ $term_id ] = $count;
4005
+			if (!empty($terms)) {
4006
+				foreach ($terms as $term_id) {
4007
+					if ($term_id > 0) {
4008
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4009
+						$children               = get_term_children($term_id, $taxonomy);
4010
+						$term_array[$term_id] = $count;
4011 4011
 					}
4012 4012
 				}
4013 4013
 			}
4014 4014
 		} else { // Update reviews count for all post categories.
4015 4015
 			$term_array = array();
4016 4016
 			$post_types = geodir_get_posttypes();
4017
-			foreach ( $post_types as $post_type ) {
4017
+			foreach ($post_types as $post_type) {
4018 4018
 
4019
-				$taxonomy = geodir_get_taxonomies( $post_type );
4019
+				$taxonomy = geodir_get_taxonomies($post_type);
4020 4020
 				$taxonomy = $taxonomy[0];
4021 4021
 
4022 4022
 				$args = array(
4023 4023
 					'hide_empty' => false
4024 4024
 				);
4025 4025
 
4026
-				$terms = get_terms( $taxonomy, $args );
4026
+				$terms = get_terms($taxonomy, $args);
4027 4027
 
4028
-				foreach ( $terms as $term ) {
4029
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
4030
-					$children = get_term_children( $term->term_id, $taxonomy );
4028
+				foreach ($terms as $term) {
4029
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
4030
+					$children = get_term_children($term->term_id, $taxonomy);
4031 4031
 					/*if ( is_array( $children ) ) {
4032 4032
                         foreach ( $children as $child_id ) {
4033 4033
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
4034 4034
                             $count = $count + $child_count;
4035 4035
                         }
4036 4036
                     }*/
4037
-					$term_array[ $term->term_id ] = $count;
4037
+					$term_array[$term->term_id] = $count;
4038 4038
 				}
4039 4039
 			}
4040 4040
 		}
4041 4041
 
4042
-		update_option( 'geodir_global_review_count', $term_array );
4042
+		update_option('geodir_global_review_count', $term_array);
4043 4043
 		//clear cache
4044
-		wp_cache_delete( 'geodir_global_review_count' );
4044
+		wp_cache_delete('geodir_global_review_count');
4045 4045
 
4046 4046
 		return $term_array;
4047 4047
 	} else {
@@ -4057,39 +4057,39 @@  discard block
 block discarded – undo
4057 4057
  * @package GeoDirectory
4058 4058
  * @return bool
4059 4059
  */
4060
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4061
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4060
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4061
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4062 4062
 		return; // do not run if importing listings
4063 4063
 	}
4064 4064
 
4065
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4065
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4066 4066
 		return;
4067 4067
 	}
4068 4068
 
4069 4069
 	$post_ID = 0;
4070
-	if ( ! empty( $post ) ) {
4071
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4070
+	if (!empty($post)) {
4071
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4072 4072
 			return;
4073 4073
 		}
4074 4074
 
4075
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4075
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4076 4076
 			return;
4077 4077
 		}
4078 4078
 
4079
-		if ( ! empty( $post->ID ) ) {
4079
+		if (!empty($post->ID)) {
4080 4080
 			$post_ID = $post->ID;
4081 4081
 		}
4082 4082
 	}
4083 4083
 
4084
-	if ( $new_status != $old_status ) {
4085
-		geodir_count_reviews_by_terms( true, $post_ID );
4084
+	if ($new_status != $old_status) {
4085
+		geodir_count_reviews_by_terms(true, $post_ID);
4086 4086
 	}
4087 4087
 
4088 4088
 	return true;
4089 4089
 }
4090 4090
 
4091
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4092
-	geodir_count_reviews_by_terms( true, $post_id );
4091
+function geodir_term_review_count_force_update_single_post($post_id) {
4092
+	geodir_count_reviews_by_terms(true, $post_id);
4093 4093
 }
4094 4094
 
4095 4095
 /*-----------------------------------------------------------------------------------*/
@@ -4106,11 +4106,11 @@  discard block
 block discarded – undo
4106 4106
  *
4107 4107
  * @return int Post count.
4108 4108
  */
4109
-function geodir_count_posts_by_term( $data, $term ) {
4109
+function geodir_count_posts_by_term($data, $term) {
4110 4110
 
4111
-	if ( $data ) {
4112
-		if ( isset( $data[ $term->term_id ] ) ) {
4113
-			return $data[ $term->term_id ];
4111
+	if ($data) {
4112
+		if (isset($data[$term->term_id])) {
4113
+			return $data[$term->term_id];
4114 4114
 		} else {
4115 4115
 			return 0;
4116 4116
 		}
@@ -4127,8 +4127,8 @@  discard block
 block discarded – undo
4127 4127
  * param array $terms An array of term objects.
4128 4128
  * @return array Sorted terms array.
4129 4129
  */
4130
-function geodir_sort_terms_by_count( $terms ) {
4131
-	usort( $terms, "geodir_sort_by_count_obj" );
4130
+function geodir_sort_terms_by_count($terms) {
4131
+	usort($terms, "geodir_sort_by_count_obj");
4132 4132
 
4133 4133
 	return $terms;
4134 4134
 }
@@ -4143,8 +4143,8 @@  discard block
 block discarded – undo
4143 4143
  *
4144 4144
  * @return array Sorted terms array.
4145 4145
  */
4146
-function geodir_sort_terms_by_review_count( $terms ) {
4147
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4146
+function geodir_sort_terms_by_review_count($terms) {
4147
+	usort($terms, "geodir_sort_by_review_count_obj");
4148 4148
 
4149 4149
 	return $terms;
4150 4150
 }
@@ -4160,12 +4160,12 @@  discard block
 block discarded – undo
4160 4160
  *
4161 4161
  * @return array Sorted terms array.
4162 4162
  */
4163
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4164
-	if ( $sort == 'count' ) {
4165
-		return geodir_sort_terms_by_count( $terms );
4163
+function geodir_sort_terms($terms, $sort = 'count') {
4164
+	if ($sort == 'count') {
4165
+		return geodir_sort_terms_by_count($terms);
4166 4166
 	}
4167
-	if ( $sort == 'review_count' ) {
4168
-		return geodir_sort_terms_by_review_count( $terms );
4167
+	if ($sort == 'review_count') {
4168
+		return geodir_sort_terms_by_review_count($terms);
4169 4169
 	}
4170 4170
 }
4171 4171
 
@@ -4183,7 +4183,7 @@  discard block
 block discarded – undo
4183 4183
  *
4184 4184
  * @return bool
4185 4185
  */
4186
-function geodir_sort_by_count( $a, $b ) {
4186
+function geodir_sort_by_count($a, $b) {
4187 4187
 	return $a['count'] < $b['count'];
4188 4188
 }
4189 4189
 
@@ -4198,7 +4198,7 @@  discard block
 block discarded – undo
4198 4198
  *
4199 4199
  * @return bool
4200 4200
  */
4201
-function geodir_sort_by_count_obj( $a, $b ) {
4201
+function geodir_sort_by_count_obj($a, $b) {
4202 4202
 	return $a->count < $b->count;
4203 4203
 }
4204 4204
 
@@ -4213,7 +4213,7 @@  discard block
 block discarded – undo
4213 4213
  *
4214 4214
  * @return bool
4215 4215
  */
4216
-function geodir_sort_by_review_count_obj( $a, $b ) {
4216
+function geodir_sort_by_review_count_obj($a, $b) {
4217 4217
 	return $a->review_count < $b->review_count;
4218 4218
 }
4219 4219
 
@@ -4230,35 +4230,35 @@  discard block
 block discarded – undo
4230 4230
 	 * @since   1.4.2
4231 4231
 	 * @package GeoDirectory
4232 4232
 	 */
4233
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4233
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4234 4234
 
4235
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4236
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4235
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4236
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4237 4237
 
4238 4238
 	/**
4239 4239
 	 * Define language constants.
4240 4240
 	 *
4241 4241
 	 * @since 1.0.0
4242 4242
 	 */
4243
-	require_once( geodir_plugin_path() . '/language.php' );
4243
+	require_once(geodir_plugin_path().'/language.php');
4244 4244
 
4245
-	$language_file = geodir_plugin_path() . '/db-language.php';
4245
+	$language_file = geodir_plugin_path().'/db-language.php';
4246 4246
 
4247 4247
 	// Load language string file if not created yet
4248
-	if ( ! file_exists( $language_file ) ) {
4248
+	if (!file_exists($language_file)) {
4249 4249
 		geodirectory_load_db_language();
4250 4250
 	}
4251 4251
 
4252
-	if ( file_exists( $language_file ) ) {
4252
+	if (file_exists($language_file)) {
4253 4253
 		/**
4254 4254
 		 * Language strings from database.
4255 4255
 		 *
4256 4256
 		 * @since 1.4.2
4257 4257
 		 */
4258 4258
 		try {
4259
-			require_once( $language_file );
4260
-		} catch ( Exception $e ) {
4261
-			error_log( 'Language Error: ' . $e->getMessage() );
4259
+			require_once($language_file);
4260
+		} catch (Exception $e) {
4261
+			error_log('Language Error: '.$e->getMessage());
4262 4262
 		}
4263 4263
 	}
4264 4264
 }
@@ -4275,19 +4275,19 @@  discard block
 block discarded – undo
4275 4275
  */
4276 4276
 function geodirectory_load_db_language() {
4277 4277
 	global $wp_filesystem;
4278
-	if ( empty( $wp_filesystem ) ) {
4279
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4278
+	if (empty($wp_filesystem)) {
4279
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4280 4280
 		WP_Filesystem();
4281 4281
 		global $wp_filesystem;
4282 4282
 	}
4283 4283
 
4284
-	$language_file = geodir_plugin_path() . '/db-language.php';
4284
+	$language_file = geodir_plugin_path().'/db-language.php';
4285 4285
 
4286
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4286
+	if (is_file($language_file) && !is_writable($language_file)) {
4287 4287
 		return false;
4288 4288
 	} // Not possible to create.
4289 4289
 
4290
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4290
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4291 4291
 		return false;
4292 4292
 	} // Not possible to create.
4293 4293
 
@@ -4301,9 +4301,9 @@  discard block
 block discarded – undo
4301 4301
 	 *
4302 4302
 	 * @param array $contents_strings Array of strings.
4303 4303
 	 */
4304
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4304
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4305 4305
 
4306
-	$contents_strings = array_unique( $contents_strings );
4306
+	$contents_strings = array_unique($contents_strings);
4307 4307
 
4308 4308
 	$contents_head   = array();
4309 4309
 	$contents_head[] = "<?php";
@@ -4320,21 +4320,21 @@  discard block
 block discarded – undo
4320 4320
 	$contents_foot[] = "";
4321 4321
 	$contents_foot[] = "";
4322 4322
 
4323
-	$contents = implode( PHP_EOL, $contents_head );
4323
+	$contents = implode(PHP_EOL, $contents_head);
4324 4324
 
4325
-	if ( ! empty( $contents_strings ) ) {
4326
-		foreach ( $contents_strings as $string ) {
4327
-			if ( is_scalar( $string ) && $string != '' ) {
4328
-				$string = str_replace( "'", "\'", $string );
4329
-				geodir_wpml_register_string( $string );
4330
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4325
+	if (!empty($contents_strings)) {
4326
+		foreach ($contents_strings as $string) {
4327
+			if (is_scalar($string) && $string != '') {
4328
+				$string = str_replace("'", "\'", $string);
4329
+				geodir_wpml_register_string($string);
4330
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4331 4331
 			}
4332 4332
 		}
4333 4333
 	}
4334 4334
 
4335
-	$contents .= implode( PHP_EOL, $contents_foot );
4335
+	$contents .= implode(PHP_EOL, $contents_foot);
4336 4336
 
4337
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4337
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4338 4338
 		return false;
4339 4339
 	} // Failure; could not write file.
4340 4340
 
@@ -4355,49 +4355,49 @@  discard block
 block discarded – undo
4355 4355
  *
4356 4356
  * @return array Translation texts.
4357 4357
  */
4358
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4358
+function geodir_load_custom_field_translation($translation_texts = array()) {
4359 4359
 	global $wpdb;
4360 4360
 
4361 4361
 	// Custom fields table
4362
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4363
-	$rows = $wpdb->get_results( $sql );
4362
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4363
+	$rows = $wpdb->get_results($sql);
4364 4364
 
4365
-	if ( ! empty( $rows ) ) {
4366
-		foreach ( $rows as $row ) {
4367
-			if ( ! empty( $row->admin_title ) ) {
4368
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4365
+	if (!empty($rows)) {
4366
+		foreach ($rows as $row) {
4367
+			if (!empty($row->admin_title)) {
4368
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4369 4369
 			}
4370 4370
 
4371
-			if ( ! empty( $row->admin_desc ) ) {
4372
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4371
+			if (!empty($row->admin_desc)) {
4372
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4373 4373
 			}
4374 4374
 
4375
-			if ( ! empty( $row->site_title ) ) {
4376
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4375
+			if (!empty($row->site_title)) {
4376
+				$translation_texts[] = stripslashes_deep($row->site_title);
4377 4377
 			}
4378 4378
 
4379
-			if ( ! empty( $row->clabels ) ) {
4380
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4379
+			if (!empty($row->clabels)) {
4380
+				$translation_texts[] = stripslashes_deep($row->clabels);
4381 4381
 			}
4382 4382
 
4383
-			if ( ! empty( $row->required_msg ) ) {
4384
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4383
+			if (!empty($row->required_msg)) {
4384
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4385 4385
 			}
4386 4386
             
4387
-			if ( ! empty( $row->validation_msg ) ) {
4388
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4387
+			if (!empty($row->validation_msg)) {
4388
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4389 4389
 			}
4390 4390
 
4391
-			if ( ! empty( $row->default_value ) ) {
4392
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4391
+			if (!empty($row->default_value)) {
4392
+				$translation_texts[] = stripslashes_deep($row->default_value);
4393 4393
 			}
4394 4394
 
4395
-			if ( ! empty( $row->option_values ) ) {
4396
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4395
+			if (!empty($row->option_values)) {
4396
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4397 4397
 
4398
-				if ( ! empty( $option_values ) ) {
4399
-					foreach ( $option_values as $option_value ) {
4400
-						if ( ! empty( $option_value['label'] ) ) {
4398
+				if (!empty($option_values)) {
4399
+					foreach ($option_values as $option_value) {
4400
+						if (!empty($option_value['label'])) {
4401 4401
 							$translation_texts[] = $option_value['label'];
4402 4402
 						}
4403 4403
 					}
@@ -4407,56 +4407,56 @@  discard block
 block discarded – undo
4407 4407
 	}
4408 4408
 
4409 4409
 	// Custom sorting fields table
4410
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4411
-	$rows = $wpdb->get_results( $sql );
4410
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4411
+	$rows = $wpdb->get_results($sql);
4412 4412
 
4413
-	if ( ! empty( $rows ) ) {
4414
-		foreach ( $rows as $row ) {
4415
-			if ( ! empty( $row->site_title ) ) {
4416
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4413
+	if (!empty($rows)) {
4414
+		foreach ($rows as $row) {
4415
+			if (!empty($row->site_title)) {
4416
+				$translation_texts[] = stripslashes_deep($row->site_title);
4417 4417
 			}
4418 4418
 
4419
-			if ( ! empty( $row->asc_title ) ) {
4420
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4419
+			if (!empty($row->asc_title)) {
4420
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4421 4421
 			}
4422 4422
 
4423
-			if ( ! empty( $row->desc_title ) ) {
4424
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4423
+			if (!empty($row->desc_title)) {
4424
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4425 4425
 			}
4426 4426
 		}
4427 4427
 	}
4428 4428
 
4429 4429
 	// Advance search filter fields table
4430
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4431
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4432
-		$rows = $wpdb->get_results( $sql );
4433
-
4434
-		if ( ! empty( $rows ) ) {
4435
-			foreach ( $rows as $row ) {
4436
-				if ( ! empty( $row->field_site_name ) ) {
4437
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4430
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4431
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4432
+		$rows = $wpdb->get_results($sql);
4433
+
4434
+		if (!empty($rows)) {
4435
+			foreach ($rows as $row) {
4436
+				if (!empty($row->field_site_name)) {
4437
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4438 4438
 				}
4439 4439
 
4440
-				if ( ! empty( $row->front_search_title ) ) {
4441
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4440
+				if (!empty($row->front_search_title)) {
4441
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4442 4442
 				}
4443 4443
 
4444
-				if ( ! empty( $row->first_search_text ) ) {
4445
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4444
+				if (!empty($row->first_search_text)) {
4445
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4446 4446
 				}
4447 4447
 
4448
-				if ( ! empty( $row->last_search_text ) ) {
4449
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4448
+				if (!empty($row->last_search_text)) {
4449
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4450 4450
 				}
4451 4451
 
4452
-				if ( ! empty( $row->field_desc ) ) {
4453
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4452
+				if (!empty($row->field_desc)) {
4453
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4454 4454
 				}
4455 4455
 			}
4456 4456
 		}
4457 4457
 	}
4458 4458
 
4459
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4459
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4460 4460
 
4461 4461
 	return $translation_texts;
4462 4462
 }
@@ -4478,7 +4478,7 @@  discard block
 block discarded – undo
4478 4478
 	 *
4479 4479
 	 * @param array $geodir_allowed_mime_types and file extensions.
4480 4480
 	 */
4481
-	return apply_filters( 'geodir_allowed_mime_types', array(
4481
+	return apply_filters('geodir_allowed_mime_types', array(
4482 4482
 			'Image'       => array( // Image formats.
4483 4483
 				'jpg'  => 'image/jpeg',
4484 4484
 				'jpe'  => 'image/jpeg',
@@ -4547,18 +4547,18 @@  discard block
 block discarded – undo
4547 4547
  *
4548 4548
  * @return string User display name.
4549 4549
  */
4550
-function geodir_get_client_name( $user_id ) {
4550
+function geodir_get_client_name($user_id) {
4551 4551
 	$client_name = '';
4552 4552
 
4553
-	$user_data = get_userdata( $user_id );
4553
+	$user_data = get_userdata($user_id);
4554 4554
 
4555
-	if ( ! empty( $user_data ) ) {
4556
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4557
-			$client_name = trim( $user_data->display_name );
4558
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4559
-			$client_name = trim( $user_data->user_nicename );
4555
+	if (!empty($user_data)) {
4556
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4557
+			$client_name = trim($user_data->display_name);
4558
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4559
+			$client_name = trim($user_data->user_nicename);
4560 4560
 		} else {
4561
-			$client_name = trim( $user_data->user_login );
4561
+			$client_name = trim($user_data->user_login);
4562 4562
 		}
4563 4563
 	}
4564 4564
 
@@ -4566,17 +4566,17 @@  discard block
 block discarded – undo
4566 4566
 }
4567 4567
 
4568 4568
 
4569
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4569
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4570 4570
 /*
4571 4571
  * Add location variables to wpseo replacements.
4572 4572
  *
4573 4573
  * @since 1.5.4
4574 4574
  */
4575
-function geodir_wpseo_replacements( $vars ) {
4575
+function geodir_wpseo_replacements($vars) {
4576 4576
 
4577 4577
 	// location variables
4578 4578
 	$gd_post_type   = geodir_get_current_posttype();
4579
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4579
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4580 4580
 	/**
4581 4581
 	 * Filter the title variables location variables array
4582 4582
 	 *
@@ -4586,7 +4586,7 @@  discard block
 block discarded – undo
4586 4586
 	 * @param array $location_array The array of location variables.
4587 4587
 	 * @param array $vars           The page title variables.
4588 4588
 	 */
4589
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4589
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4590 4590
 
4591 4591
 
4592 4592
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4601,13 +4601,13 @@  discard block
 block discarded – undo
4601 4601
 	 * @param string $vars          The title with variables.
4602 4602
 	 * @param array $location_array The array of location variables.
4603 4603
 	 */
4604
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4604
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4605 4605
 }
4606 4606
 
4607 4607
 
4608
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4609
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4610
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4608
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4609
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4610
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4611 4611
 
4612 4612
 /**
4613 4613
  * Filter the title variables.
@@ -4649,14 +4649,14 @@  discard block
 block discarded – undo
4649 4649
  *
4650 4650
  * @return string Title after filtered variables.
4651 4651
  */
4652
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4652
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4653 4653
 	global $wp, $post;
4654 4654
 
4655
-	if ( ! $gd_page || ! $title ) {
4655
+	if (!$gd_page || !$title) {
4656 4656
 		return $title; // if no a GD page then bail.
4657 4657
 	}
4658 4658
 
4659
-	if ( $sep == '' ) {
4659
+	if ($sep == '') {
4660 4660
 		/**
4661 4661
 		 * Filter the page title separator.
4662 4662
 		 *
@@ -4665,100 +4665,100 @@  discard block
 block discarded – undo
4665 4665
 		 *
4666 4666
 		 * @param string $sep The separator, default: `|`.
4667 4667
 		 */
4668
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4668
+		$sep = apply_filters('geodir_page_title_separator', '|');
4669 4669
 	}
4670 4670
 
4671
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4672
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4671
+	if (strpos($title, '%%title%%') !== false) {
4672
+		$title = str_replace("%%title%%", $post->post_title, $title);
4673 4673
 	}
4674 4674
 
4675
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4676
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4675
+	if (strpos($title, '%%sitename%%') !== false) {
4676
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4677 4677
 	}
4678 4678
 
4679
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4680
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4679
+	if (strpos($title, '%%sitedesc%%') !== false) {
4680
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4681 4681
 	}
4682 4682
 
4683
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4684
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4683
+	if (strpos($title, '%%excerpt%%') !== false) {
4684
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4685 4685
 	}
4686 4686
 
4687
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4688
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4689
-	} else if ( $gd_page == 'add-listing' ) {
4690
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4691
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4692
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4687
+	if ($gd_page == 'search' || $gd_page == 'author') {
4688
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4689
+	} else if ($gd_page == 'add-listing') {
4690
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4691
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4692
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4693 4693
 		$post_type = $post->post_type;
4694 4694
 	} else {
4695
-		$post_type = get_query_var( 'post_type' );
4695
+		$post_type = get_query_var('post_type');
4696 4696
 	}
4697 4697
 
4698
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4698
+	if (strpos($title, '%%pt_single%%') !== false) {
4699 4699
 		$singular_name = '';
4700
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4701
-			$singular_name = __( $singular_name, 'geodirectory' );
4700
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4701
+			$singular_name = __($singular_name, 'geodirectory');
4702 4702
 		}
4703 4703
 
4704
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4704
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4705 4705
 	}
4706 4706
 
4707
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4707
+	if (strpos($title, '%%pt_plural%%') !== false) {
4708 4708
 		$plural_name = '';
4709
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4710
-			$plural_name = __( $plural_name, 'geodirectory' );
4709
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4710
+			$plural_name = __($plural_name, 'geodirectory');
4711 4711
 		}
4712 4712
 
4713
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4713
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4714 4714
 	}
4715 4715
 
4716
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4716
+	if (strpos($title, '%%category%%') !== false) {
4717 4717
 		$cat_name = '';
4718 4718
 
4719
-		if ( $gd_page == 'detail' ) {
4720
-			if ( $post->default_category ) {
4721
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4722
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4719
+		if ($gd_page == 'detail') {
4720
+			if ($post->default_category) {
4721
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4722
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4723 4723
 			}
4724
-		} else if ( $gd_page == 'listing' ) {
4724
+		} else if ($gd_page == 'listing') {
4725 4725
 			$queried_object = get_queried_object();
4726
-			if ( isset( $queried_object->name ) ) {
4726
+			if (isset($queried_object->name)) {
4727 4727
 				$cat_name = $queried_object->name;
4728 4728
 			}
4729 4729
 		}
4730
-		$title = str_replace( "%%category%%", $cat_name, $title );
4730
+		$title = str_replace("%%category%%", $cat_name, $title);
4731 4731
 	}
4732 4732
 
4733
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4733
+	if (strpos($title, '%%tag%%') !== false) {
4734 4734
 		$cat_name = '';
4735 4735
 
4736
-		if ( $gd_page == 'detail' ) {
4737
-			if ( $post->default_category ) {
4738
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4739
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4736
+		if ($gd_page == 'detail') {
4737
+			if ($post->default_category) {
4738
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4739
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4740 4740
 			}
4741
-		} else if ( $gd_page == 'listing' ) {
4741
+		} else if ($gd_page == 'listing') {
4742 4742
 			$queried_object = get_queried_object();
4743
-			if ( isset( $queried_object->name ) ) {
4743
+			if (isset($queried_object->name)) {
4744 4744
 				$cat_name = $queried_object->name;
4745 4745
 			}
4746 4746
 		}
4747
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4747
+		$title = str_replace("%%tag%%", $cat_name, $title);
4748 4748
 	}
4749 4749
 
4750
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4751
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4752
-		$title = str_replace( "%%id%%", $ID, $title );
4750
+	if (strpos($title, '%%id%%') !== false) {
4751
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4752
+		$title = str_replace("%%id%%", $ID, $title);
4753 4753
 	}
4754 4754
 
4755
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4756
-		$title = str_replace( "%%sep%%", $sep, $title );
4755
+	if (strpos($title, '%%sep%%') !== false) {
4756
+		$title = str_replace("%%sep%%", $sep, $title);
4757 4757
 	}
4758 4758
 
4759 4759
 	// location variables
4760 4760
 	$gd_post_type   = geodir_get_current_posttype();
4761
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4761
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4762 4762
 	
4763 4763
 	/**
4764 4764
 	 * Filter the title variables location variables array
@@ -4771,20 +4771,20 @@  discard block
 block discarded – undo
4771 4771
 	 * @param string $gd_page       The page being filtered.
4772 4772
 	 * @param string $sep           The separator, default: `|`.
4773 4773
 	 */
4774
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4774
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4775 4775
 	
4776
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4777
-		if ( get_query_var( 'gd_country_full' ) ) {
4778
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4776
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4777
+		if (get_query_var('gd_country_full')) {
4778
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4779 4779
 		}
4780
-		if ( get_query_var( 'gd_region_full' ) ) {
4781
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4780
+		if (get_query_var('gd_region_full')) {
4781
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4782 4782
 		}
4783
-		if ( get_query_var( 'gd_city_full' ) ) {
4784
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4783
+		if (get_query_var('gd_city_full')) {
4784
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4785 4785
 		}
4786
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4787
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4786
+		if (get_query_var('gd_neighbourhood_full')) {
4787
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4788 4788
 		}
4789 4789
 	}
4790 4790
 	
@@ -4799,57 +4799,57 @@  discard block
 block discarded – undo
4799 4799
 	 * @param string $gd_page       The page being filtered.
4800 4800
 	 * @param string $sep           The separator, default: `|`.
4801 4801
 	 */
4802
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4802
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4803 4803
 	
4804
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4804
+	if (strpos($title, '%%search_term%%') !== false) {
4805 4805
 		$search_term = '';
4806
-		if ( isset( $_REQUEST['s'] ) ) {
4807
-			$search_term = esc_attr( $_REQUEST['s'] );
4806
+		if (isset($_REQUEST['s'])) {
4807
+			$search_term = esc_attr($_REQUEST['s']);
4808 4808
 		}
4809
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4809
+		$title = str_replace("%%search_term%%", $search_term, $title);
4810 4810
 	}
4811 4811
 
4812
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4812
+	if (strpos($title, '%%search_near%%') !== false) {
4813 4813
 		$search_term = '';
4814
-		if ( isset( $_REQUEST['snear'] ) ) {
4815
-			$search_term = esc_attr( $_REQUEST['snear'] );
4814
+		if (isset($_REQUEST['snear'])) {
4815
+			$search_term = esc_attr($_REQUEST['snear']);
4816 4816
 		}
4817
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4817
+		$title = str_replace("%%search_near%%", $search_term, $title);
4818 4818
 	}
4819 4819
 
4820
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4821
-		if ( is_author() ) {
4822
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4820
+	if (strpos($title, '%%name%%') !== false) {
4821
+		if (is_author()) {
4822
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4823 4823
 			$author_name = $curauth->display_name;
4824 4824
 		} else {
4825 4825
 			$author_name = get_the_author();
4826 4826
 		}
4827
-		if ( ! $author_name || $author_name === '' ) {
4827
+		if (!$author_name || $author_name === '') {
4828 4828
 			$queried_object = get_queried_object();
4829 4829
 
4830
-			if ( isset( $queried_object->data->user_nicename ) ) {
4830
+			if (isset($queried_object->data->user_nicename)) {
4831 4831
 				$author_name = $queried_object->data->display_name;
4832 4832
 			}
4833 4833
 		}
4834
-		$title = str_replace( "%%name%%", $author_name, $title );
4834
+		$title = str_replace("%%name%%", $author_name, $title);
4835 4835
 	}
4836 4836
 
4837
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4838
-		$page  = geodir_title_meta_page( $sep );
4839
-		$title = str_replace( "%%page%%", $page, $title );
4837
+	if (strpos($title, '%%page%%') !== false) {
4838
+		$page  = geodir_title_meta_page($sep);
4839
+		$title = str_replace("%%page%%", $page, $title);
4840 4840
 	}
4841
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4841
+	if (strpos($title, '%%pagenumber%%') !== false) {
4842 4842
 		$pagenumber = geodir_title_meta_pagenumber();
4843
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4843
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4844 4844
 	}
4845
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4845
+	if (strpos($title, '%%pagetotal%%') !== false) {
4846 4846
 		$pagetotal = geodir_title_meta_pagetotal();
4847
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4847
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4848 4848
 	}
4849 4849
 
4850
-	$title = wptexturize( $title );
4851
-	$title = convert_chars( $title );
4852
-	$title = esc_html( $title );
4850
+	$title = wptexturize($title);
4851
+	$title = convert_chars($title);
4852
+	$title = esc_html($title);
4853 4853
 
4854 4854
 	/**
4855 4855
 	 * Filter the title variables after standard ones have been filtered.
@@ -4863,7 +4863,7 @@  discard block
 block discarded – undo
4863 4863
 	 * @param string $sep           The separator, default: `|`.
4864 4864
 	 */
4865 4865
 
4866
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4866
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4867 4867
 }
4868 4868
 
4869 4869
 /**
@@ -4876,82 +4876,82 @@  discard block
 block discarded – undo
4876 4876
  *
4877 4877
  * @return array Translation texts.
4878 4878
  */
4879
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4880
-	$gd_post_types = geodir_get_posttypes( 'array' );
4879
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4880
+	$gd_post_types = geodir_get_posttypes('array');
4881 4881
 
4882
-	if ( ! empty( $gd_post_types ) ) {
4883
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4884
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4885
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4886
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4882
+	if (!empty($gd_post_types)) {
4883
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4884
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4885
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4886
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4887 4887
 
4888
-			if ( ! empty( $labels ) ) {
4889
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4888
+			if (!empty($labels)) {
4889
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4890 4890
 					$translation_texts[] = $labels['name'];
4891 4891
 				}
4892
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4892
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4893 4893
 					$translation_texts[] = $labels['singular_name'];
4894 4894
 				}
4895
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4895
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4896 4896
 					$translation_texts[] = $labels['add_new'];
4897 4897
 				}
4898
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4898
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4899 4899
 					$translation_texts[] = $labels['add_new_item'];
4900 4900
 				}
4901
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4901
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4902 4902
 					$translation_texts[] = $labels['edit_item'];
4903 4903
 				}
4904
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4904
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4905 4905
 					$translation_texts[] = $labels['new_item'];
4906 4906
 				}
4907
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4907
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4908 4908
 					$translation_texts[] = $labels['view_item'];
4909 4909
 				}
4910
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4910
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4911 4911
 					$translation_texts[] = $labels['search_items'];
4912 4912
 				}
4913
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4913
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4914 4914
 					$translation_texts[] = $labels['not_found'];
4915 4915
 				}
4916
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4916
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4917 4917
 					$translation_texts[] = $labels['not_found_in_trash'];
4918 4918
 				}
4919
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4919
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4920 4920
 					$translation_texts[] = $labels['label_post_profile'];
4921 4921
 				}
4922
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4922
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4923 4923
 					$translation_texts[] = $labels['label_post_info'];
4924 4924
 				}
4925
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4925
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4926 4926
 					$translation_texts[] = $labels['label_post_images'];
4927 4927
 				}
4928
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4928
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4929 4929
 					$translation_texts[] = $labels['label_post_map'];
4930 4930
 				}
4931
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4931
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4932 4932
 					$translation_texts[] = $labels['label_reviews'];
4933 4933
 				}
4934
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4934
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4935 4935
 					$translation_texts[] = $labels['label_related_listing'];
4936 4936
 				}
4937 4937
 			}
4938 4938
 
4939
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4940
-				$translation_texts[] = normalize_whitespace( $description );
4939
+			if ($description != '' && !in_array($description, $translation_texts)) {
4940
+				$translation_texts[] = normalize_whitespace($description);
4941 4941
 			}
4942 4942
 
4943
-			if ( ! empty( $seo ) ) {
4944
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4945
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4943
+			if (!empty($seo)) {
4944
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4945
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4946 4946
 				}
4947 4947
 
4948
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4949
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4948
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4949
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4950 4950
 				}
4951 4951
 			}
4952 4952
 		}
4953 4953
 	}
4954
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4954
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4955 4955
 
4956 4956
 	return $translation_texts;
4957 4957
 }
@@ -4966,27 +4966,27 @@  discard block
 block discarded – undo
4966 4966
  *
4967 4967
  * @return array Location terms.
4968 4968
  */
4969
-function geodir_remove_location_terms( $location_terms = array() ) {
4970
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4969
+function geodir_remove_location_terms($location_terms = array()) {
4970
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4971 4971
 
4972
-	if ( ! empty( $location_terms ) && $location_manager ) {
4973
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4974
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4972
+	if (!empty($location_terms) && $location_manager) {
4973
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4974
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4975 4975
 
4976
-		if ( $hide_region_part && $hide_country_part ) {
4977
-			if ( isset( $location_terms['gd_country'] ) ) {
4978
-				unset( $location_terms['gd_country'] );
4976
+		if ($hide_region_part && $hide_country_part) {
4977
+			if (isset($location_terms['gd_country'])) {
4978
+				unset($location_terms['gd_country']);
4979 4979
 			}
4980
-			if ( isset( $location_terms['gd_region'] ) ) {
4981
-				unset( $location_terms['gd_region'] );
4980
+			if (isset($location_terms['gd_region'])) {
4981
+				unset($location_terms['gd_region']);
4982 4982
 			}
4983
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4984
-			if ( isset( $location_terms['gd_region'] ) ) {
4985
-				unset( $location_terms['gd_region'] );
4983
+		} else if ($hide_region_part && !$hide_country_part) {
4984
+			if (isset($location_terms['gd_region'])) {
4985
+				unset($location_terms['gd_region']);
4986 4986
 			}
4987
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4988
-			if ( isset( $location_terms['gd_country'] ) ) {
4989
-				unset( $location_terms['gd_country'] );
4987
+		} else if (!$hide_region_part && $hide_country_part) {
4988
+			if (isset($location_terms['gd_country'])) {
4989
+				unset($location_terms['gd_country']);
4990 4990
 			}
4991 4991
 		}
4992 4992
 	}
@@ -4997,7 +4997,7 @@  discard block
 block discarded – undo
4997 4997
 	 * @since 1.6.22
4998 4998
 	 * @param array $location_terms The array of location terms.
4999 4999
 	 */
5000
-	return apply_filters('geodir_remove_location_terms',$location_terms);
5000
+	return apply_filters('geodir_remove_location_terms', $location_terms);
5001 5001
 }
5002 5002
 
5003 5003
 /**
@@ -5013,40 +5013,40 @@  discard block
 block discarded – undo
5013 5013
  * @param WP_Post $post Post object.
5014 5014
  * @param bool $update  Whether this is an existing listing being updated or not.
5015 5015
  */
5016
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
5016
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
5017 5017
 	global $gd_notified_edited;
5018 5018
 	
5019
-	if ( ! $update ) {
5019
+	if (!$update) {
5020 5020
 		return;
5021 5021
 	}
5022 5022
 
5023
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5024
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5023
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5024
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5025 5025
 	$inline_save = $action == 'inline-save' ? true : false;
5026 5026
 
5027
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5027
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5028 5028
 		return;
5029 5029
 	}
5030 5030
 
5031
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5031
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5032 5032
 		return;
5033 5033
 	}
5034 5034
 
5035 5035
 	$user_id = (int) get_current_user_id();
5036 5036
 
5037
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5038
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5037
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5038
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5039 5039
 
5040
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_notified_edited[$post_ID] ) ) {
5041
-			if ( !empty( $gd_notified_edited ) ) {
5040
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_notified_edited[$post_ID])) {
5041
+			if (!empty($gd_notified_edited)) {
5042 5042
 				$gd_notified_edited = array();
5043 5043
 			}
5044 5044
 			$gd_notified_edited[$post_ID] = true;
5045 5045
 			
5046
-			$from_email   = get_option( 'site_email' );
5046
+			$from_email   = get_option('site_email');
5047 5047
 			$from_name    = get_site_emailName();
5048
-			$to_email     = get_option( 'admin_email' );
5049
-			$to_name      = get_option( 'name' );
5048
+			$to_email     = get_option('admin_email');
5049
+			$to_name      = get_option('name');
5050 5050
 			$message_type = 'listing_edited';
5051 5051
 
5052 5052
 			$notify_edited = true;
@@ -5058,9 +5058,9 @@  discard block
 block discarded – undo
5058 5058
 			 * @param bool $notify_edited Notify on listing edited by author?
5059 5059
 			 * @param object $post        The current post object.
5060 5060
 			 */
5061
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
5061
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
5062 5062
 
5063
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5063
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5064 5064
 		}
5065 5065
 	}
5066 5066
 }
@@ -5075,14 +5075,14 @@  discard block
 block discarded – undo
5075 5075
  *
5076 5076
  * @return string|null The current page start & end numbering.
5077 5077
  */
5078
-function geodir_title_meta_page( $sep ) {
5078
+function geodir_title_meta_page($sep) {
5079 5079
 	$replacement = null;
5080 5080
 
5081
-	$max = geodir_title_meta_pagenumbering( 'max' );
5082
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5081
+	$max = geodir_title_meta_pagenumbering('max');
5082
+	$nr  = geodir_title_meta_pagenumbering('nr');
5083 5083
 
5084
-	if ( $max > 1 && $nr > 1 ) {
5085
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5084
+	if ($max > 1 && $nr > 1) {
5085
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5086 5086
 	}
5087 5087
 
5088 5088
 	return $replacement;
@@ -5099,8 +5099,8 @@  discard block
 block discarded – undo
5099 5099
 function geodir_title_meta_pagenumber() {
5100 5100
 	$replacement = null;
5101 5101
 
5102
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5103
-	if ( isset( $nr ) && $nr > 0 ) {
5102
+	$nr = geodir_title_meta_pagenumbering('nr');
5103
+	if (isset($nr) && $nr > 0) {
5104 5104
 		$replacement = (string) $nr;
5105 5105
 	}
5106 5106
 
@@ -5118,8 +5118,8 @@  discard block
 block discarded – undo
5118 5118
 function geodir_title_meta_pagetotal() {
5119 5119
 	$replacement = null;
5120 5120
 
5121
-	$max = geodir_title_meta_pagenumbering( 'max' );
5122
-	if ( isset( $max ) && $max > 0 ) {
5121
+	$max = geodir_title_meta_pagenumbering('max');
5122
+	if (isset($max) && $max > 0) {
5123 5123
 		$replacement = (string) $max;
5124 5124
 	}
5125 5125
 
@@ -5139,36 +5139,36 @@  discard block
 block discarded – undo
5139 5139
  *
5140 5140
  * @return int|null The current page numbering.
5141 5141
  */
5142
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5142
+function geodir_title_meta_pagenumbering($request = 'nr') {
5143 5143
 	global $wp_query, $post;
5144 5144
 	$max_num_pages = null;
5145 5145
 	$page_number   = null;
5146 5146
 
5147 5147
 	$max_num_pages = 1;
5148 5148
 
5149
-	if ( ! is_singular() ) {
5150
-		$page_number = get_query_var( 'paged' );
5151
-		if ( $page_number === 0 || $page_number === '' ) {
5149
+	if (!is_singular()) {
5150
+		$page_number = get_query_var('paged');
5151
+		if ($page_number === 0 || $page_number === '') {
5152 5152
 			$page_number = 1;
5153 5153
 		}
5154 5154
 
5155
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5155
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5156 5156
 			$max_num_pages = $wp_query->max_num_pages;
5157 5157
 		}
5158 5158
 	} else {
5159
-		$page_number = get_query_var( 'page' );
5160
-		if ( $page_number === 0 || $page_number === '' ) {
5159
+		$page_number = get_query_var('page');
5160
+		if ($page_number === 0 || $page_number === '') {
5161 5161
 			$page_number = 1;
5162 5162
 		}
5163 5163
 
5164
-		if ( isset( $post->post_content ) ) {
5165
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5164
+		if (isset($post->post_content)) {
5165
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5166 5166
 		}
5167 5167
 	}
5168 5168
 
5169 5169
 	$return = null;
5170 5170
 
5171
-	switch ( $request ) {
5171
+	switch ($request) {
5172 5172
 		case 'nr':
5173 5173
 			$return = $page_number;
5174 5174
 			break;
@@ -5189,14 +5189,14 @@  discard block
 block discarded – undo
5189 5189
  *
5190 5190
  * @return array Terms.
5191 5191
  */
5192
-function geodir_filter_empty_terms( $terms ) {
5193
-	if ( empty( $terms ) ) {
5192
+function geodir_filter_empty_terms($terms) {
5193
+	if (empty($terms)) {
5194 5194
 		return $terms;
5195 5195
 	}
5196 5196
 
5197 5197
 	$return = array();
5198
-	foreach ( $terms as $term ) {
5199
-		if ( isset( $term->count ) && $term->count > 0 ) {
5198
+	foreach ($terms as $term) {
5199
+		if (isset($term->count) && $term->count > 0) {
5200 5200
 			$return[] = $term;
5201 5201
 		} else {
5202 5202
 			/**
@@ -5207,7 +5207,7 @@  discard block
 block discarded – undo
5207 5207
 			 * @param array $return The array of terms to return.
5208 5208
 			 * @param object $term  The term object.
5209 5209
 			 */
5210
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5210
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5211 5211
 		}
5212 5212
 	}
5213 5213
 
@@ -5224,15 +5224,15 @@  discard block
 block discarded – undo
5224 5224
  *
5225 5225
  * @return array
5226 5226
  */
5227
-function geodir_remove_hentry( $class ) {
5228
-	if ( geodir_is_page( 'detail' ) ) {
5229
-		$class = array_diff( $class, array( 'hentry' ) );
5227
+function geodir_remove_hentry($class) {
5228
+	if (geodir_is_page('detail')) {
5229
+		$class = array_diff($class, array('hentry'));
5230 5230
 	}
5231 5231
 
5232 5232
 	return $class;
5233 5233
 }
5234 5234
 
5235
-add_filter( 'post_class', 'geodir_remove_hentry' );
5235
+add_filter('post_class', 'geodir_remove_hentry');
5236 5236
 
5237 5237
 /**
5238 5238
  * Registers a individual text string for WPML translation.
@@ -5244,8 +5244,8 @@  discard block
 block discarded – undo
5244 5244
  * @param string $domain The plugin domain. Default geodirectory.
5245 5245
  * @param string $name The name of the string which helps to know what's being translated.
5246 5246
  */
5247
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5248
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5247
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5248
+    do_action('wpml_register_single_string', $domain, $name, $string);
5249 5249
 }
5250 5250
 
5251 5251
 /**
@@ -5260,6 +5260,6 @@  discard block
 block discarded – undo
5260 5260
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5261 5261
  * @return string The translated string.
5262 5262
  */
5263
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5264
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5263
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5264
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5265 5265
 }
5266 5266
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/template_functions.php 2 patches
Indentation   +372 added lines, -372 removed lines patch added patch discarded remove patch
@@ -19,132 +19,132 @@  discard block
 block discarded – undo
19 19
  */
20 20
 function geodir_locate_template($template = '')
21 21
 {
22
-    global $post_type, $wp, $post;
23
-    $fields = array();
24
-
25
-    switch ($template):
26
-        case 'signup':
27
-            return $template = locate_template(array("geodirectory/geodir-signup.php"));
28
-            break;
29
-        case 'add-listing':
30
-            $gd_post_types = geodir_get_posttypes();
22
+	global $post_type, $wp, $post;
23
+	$fields = array();
24
+
25
+	switch ($template):
26
+		case 'signup':
27
+			return $template = locate_template(array("geodirectory/geodir-signup.php"));
28
+			break;
29
+		case 'add-listing':
30
+			$gd_post_types = geodir_get_posttypes();
31 31
             
32
-            if (!(!empty($post_type) && in_array($post_type, $gd_post_types))) {
33
-                $post_type = '';
34
-            }
32
+			if (!(!empty($post_type) && in_array($post_type, $gd_post_types))) {
33
+				$post_type = '';
34
+			}
35 35
             
36
-            $sc_post_type = '';
37
-            if (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
38
-                $listing_page_id = $post->ID;
36
+			$sc_post_type = '';
37
+			if (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
38
+				$listing_page_id = $post->ID;
39 39
                 
40
-                $regex_pattern = get_shortcode_regex();
41
-                preg_match('/'.$regex_pattern.'/s', $post->post_content, $regex_matches);
40
+				$regex_pattern = get_shortcode_regex();
41
+				preg_match('/'.$regex_pattern.'/s', $post->post_content, $regex_matches);
42 42
                 
43
-                if (!empty($regex_matches) && isset($regex_matches[2]) == 'gd_add_listing' && isset($regex_matches[3])) {
44
-                    $shortcode_atts = shortcode_parse_atts($regex_matches[3]);
45
-                    $sc_post_type = !empty($shortcode_atts) && isset($shortcode_atts['listing_type']) && !empty($shortcode_atts['listing_type']) ? $shortcode_atts['listing_type'] : '';
46
-                }
47
-            } else {
48
-                $listing_page_id = geodir_add_listing_page_id();
49
-            }
43
+				if (!empty($regex_matches) && isset($regex_matches[2]) == 'gd_add_listing' && isset($regex_matches[3])) {
44
+					$shortcode_atts = shortcode_parse_atts($regex_matches[3]);
45
+					$sc_post_type = !empty($shortcode_atts) && isset($shortcode_atts['listing_type']) && !empty($shortcode_atts['listing_type']) ? $shortcode_atts['listing_type'] : '';
46
+				}
47
+			} else {
48
+				$listing_page_id = geodir_add_listing_page_id();
49
+			}
50 50
             
51
-            $is_wpml = function_exists('icl_object_id') ? true : false;
51
+			$is_wpml = function_exists('icl_object_id') ? true : false;
52 52
 
53
-            if ($listing_page_id != '' && (is_page($listing_page_id) || ($is_wpml && !empty($wp->query_vars['page_id']))) && isset($_REQUEST['listing_type'])
54
-                && in_array($_REQUEST['listing_type'], $gd_post_types)) {
55
-                $post_type = sanitize_text_field($_REQUEST['listing_type']);
56
-            }
53
+			if ($listing_page_id != '' && (is_page($listing_page_id) || ($is_wpml && !empty($wp->query_vars['page_id']))) && isset($_REQUEST['listing_type'])
54
+				&& in_array($_REQUEST['listing_type'], $gd_post_types)) {
55
+				$post_type = sanitize_text_field($_REQUEST['listing_type']);
56
+			}
57 57
             
58
-            if (empty($post_type) && !isset($_REQUEST['pid'])) {
59
-                $pagename = $wp->query_vars['pagename'];
58
+			if (empty($post_type) && !isset($_REQUEST['pid'])) {
59
+				$pagename = $wp->query_vars['pagename'];
60 60
                 
61
-                if (!empty($gd_post_types)) {
62
-                    $post_type = $gd_post_types[0];
63
-                }
61
+				if (!empty($gd_post_types)) {
62
+					$post_type = $gd_post_types[0];
63
+				}
64 64
                 
65
-                if ($sc_post_type != '') {
66
-                    $post_type = $sc_post_type;
67
-                }
65
+				if ($sc_post_type != '') {
66
+					$post_type = $sc_post_type;
67
+				}
68 68
                 
69
-                if (empty($post_type) && !empty($gd_post_types)) {
70
-                    $post_type = $gd_post_types[0];
71
-                }
69
+				if (empty($post_type) && !empty($gd_post_types)) {
70
+					$post_type = $gd_post_types[0];
71
+				}
72 72
                 
73
-                if ($is_wpml && !empty($wp->query_vars['page_id'])) {
74
-                    wp_redirect(geodir_getlink(get_permalink($wp->query_vars['page_id']), array('listing_type' => $post_type)));
75
-                } else {
76
-                    wp_redirect(trailingslashit(get_site_url()) . $pagename . '/?listing_type=' . $post_type);
77
-                }
78
-                gd_die();
79
-            }
80
-            return $template = locate_template(array("geodirectory/add-{$post_type}.php", "geodirectory/add-listing.php"));
81
-            break;
82
-        case 'success':
83
-            $success_page_id = geodir_success_page_id();
84
-            if ($success_page_id != '' && is_page($success_page_id) && isset($_REQUEST['listing_type'])
85
-                && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
86
-            )
87
-                $post_type = sanitize_text_field($_REQUEST['listing_type']);
88
-            return $template = locate_template(array("geodirectory/{$post_type}-success.php", "geodirectory/listing-success.php"));
89
-            break;
90
-        case 'detail':
91
-        case 'preview':
92
-            if (in_array(get_post_type(), geodir_get_posttypes()))
93
-                $post_type = get_post_type();
94
-            return $template = locate_template(array("geodirectory/single-{$post_type}.php", "geodirectory/listing-detail.php"));
95
-            break;
96
-        case 'listing':
97
-            $templates = array();
98
-            if (is_post_type_archive() && in_array(get_post_type(), geodir_get_posttypes())) {
99
-                $post_type = get_post_type();
100
-                $templates[] = "geodirectory/archive-$post_type.php";
101
-            }
102
-
103
-
104
-            if (is_tax() && geodir_get_taxonomy_posttype()) {
105
-                $query_obj = get_queried_object();
106
-                $curr_taxonomy = isset($query_obj->taxonomy) ? $query_obj->taxonomy : '';
107
-                $curr_term = isset($query_obj->slug) ? $query_obj->slug : '';
108
-                $templates[] = "geodirectory/taxonomy-$curr_taxonomy-$curr_term.php";
109
-                $templates[] = "geodirectory/taxonomy-$curr_taxonomy.php";
110
-            }
111
-
112
-            $templates[] = "geodirectory/geodir-listing.php";
113
-
114
-            return $template = locate_template($templates);
115
-            break;
116
-        case 'information':
117
-            return $template = locate_template(array("geodirectory/geodir-information.php"));
118
-            break;
119
-        case 'author':
120
-            return $template = locate_template(array("geodirectory/geodir-author.php"));
121
-            break;
122
-        case 'search':
123
-            return $template = locate_template(array("geodirectory/geodir-search.php"));
124
-            break;
125
-        case 'location':
126
-            return $template = locate_template(array("geodirectory/geodir-location.php"));
127
-            break;
128
-        case 'geodir-home':
129
-            return $template = locate_template(array("geodirectory/geodir-home.php"));
130
-            break;
131
-        case 'listing-listview':
132
-            $template = locate_template(array("geodirectory/listing-listview.php"));
133
-            if (!$template) {
134
-                $template = geodir_plugin_path() . '/geodirectory-templates/listing-listview.php';
135
-            }
136
-            return $template;
137
-            break;
138
-        case 'widget-listing-listview':
139
-            $template = locate_template(array("geodirectory/widget-listing-listview.php"));
140
-            if (!$template) {
141
-                $template = geodir_plugin_path() . '/geodirectory-templates/widget-listing-listview.php';
142
-            }
143
-            return $template;
144
-            break;
145
-    endswitch;
146
-
147
-    return false;
73
+				if ($is_wpml && !empty($wp->query_vars['page_id'])) {
74
+					wp_redirect(geodir_getlink(get_permalink($wp->query_vars['page_id']), array('listing_type' => $post_type)));
75
+				} else {
76
+					wp_redirect(trailingslashit(get_site_url()) . $pagename . '/?listing_type=' . $post_type);
77
+				}
78
+				gd_die();
79
+			}
80
+			return $template = locate_template(array("geodirectory/add-{$post_type}.php", "geodirectory/add-listing.php"));
81
+			break;
82
+		case 'success':
83
+			$success_page_id = geodir_success_page_id();
84
+			if ($success_page_id != '' && is_page($success_page_id) && isset($_REQUEST['listing_type'])
85
+				&& in_array($_REQUEST['listing_type'], geodir_get_posttypes())
86
+			)
87
+				$post_type = sanitize_text_field($_REQUEST['listing_type']);
88
+			return $template = locate_template(array("geodirectory/{$post_type}-success.php", "geodirectory/listing-success.php"));
89
+			break;
90
+		case 'detail':
91
+		case 'preview':
92
+			if (in_array(get_post_type(), geodir_get_posttypes()))
93
+				$post_type = get_post_type();
94
+			return $template = locate_template(array("geodirectory/single-{$post_type}.php", "geodirectory/listing-detail.php"));
95
+			break;
96
+		case 'listing':
97
+			$templates = array();
98
+			if (is_post_type_archive() && in_array(get_post_type(), geodir_get_posttypes())) {
99
+				$post_type = get_post_type();
100
+				$templates[] = "geodirectory/archive-$post_type.php";
101
+			}
102
+
103
+
104
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
105
+				$query_obj = get_queried_object();
106
+				$curr_taxonomy = isset($query_obj->taxonomy) ? $query_obj->taxonomy : '';
107
+				$curr_term = isset($query_obj->slug) ? $query_obj->slug : '';
108
+				$templates[] = "geodirectory/taxonomy-$curr_taxonomy-$curr_term.php";
109
+				$templates[] = "geodirectory/taxonomy-$curr_taxonomy.php";
110
+			}
111
+
112
+			$templates[] = "geodirectory/geodir-listing.php";
113
+
114
+			return $template = locate_template($templates);
115
+			break;
116
+		case 'information':
117
+			return $template = locate_template(array("geodirectory/geodir-information.php"));
118
+			break;
119
+		case 'author':
120
+			return $template = locate_template(array("geodirectory/geodir-author.php"));
121
+			break;
122
+		case 'search':
123
+			return $template = locate_template(array("geodirectory/geodir-search.php"));
124
+			break;
125
+		case 'location':
126
+			return $template = locate_template(array("geodirectory/geodir-location.php"));
127
+			break;
128
+		case 'geodir-home':
129
+			return $template = locate_template(array("geodirectory/geodir-home.php"));
130
+			break;
131
+		case 'listing-listview':
132
+			$template = locate_template(array("geodirectory/listing-listview.php"));
133
+			if (!$template) {
134
+				$template = geodir_plugin_path() . '/geodirectory-templates/listing-listview.php';
135
+			}
136
+			return $template;
137
+			break;
138
+		case 'widget-listing-listview':
139
+			$template = locate_template(array("geodirectory/widget-listing-listview.php"));
140
+			if (!$template) {
141
+				$template = geodir_plugin_path() . '/geodirectory-templates/widget-listing-listview.php';
142
+			}
143
+			return $template;
144
+			break;
145
+	endswitch;
146
+
147
+	return false;
148 148
 
149 149
 }
150 150
 
@@ -163,255 +163,255 @@  discard block
 block discarded – undo
163 163
 function geodir_template_loader($template)
164 164
 {
165 165
 
166
-    global $wp_query;
167
-
168
-    /**
169
-     * Filter the custom page list.
170
-     *
171
-     * @since 1.0.0
172
-     */
173
-    $geodir_custom_page_list = apply_filters('geodir_set_custom_pages', array(
174
-        'geodir_signup_page' =>
175
-            apply_filters('geodir_set_custom_signup_page', false),
176
-        'geodir_add_listing_page' =>
177
-            apply_filters('geodir_set_custom_add_listing_page', false),
178
-        'geodir_preview_page' =>
179
-            apply_filters('geodir_set_custom_preview_page', false),
180
-        'geodir_listing_success_page' =>
181
-            apply_filters('geodir_set_custom_listing_success_page', false),
182
-        'geodir_listing_detail_page' =>
183
-            apply_filters('geodir_set_custom_listing_detail_page', false),
184
-        'geodir_listing_page' =>
185
-            apply_filters('geodir_set_custom_listing_page', false),
186
-        'geodir_search_page' =>
187
-            apply_filters('geodir_set_custom_search_page', false),
188
-        'geodir_author_page' =>
189
-            apply_filters('geodir_set_custom_author_page', false),
190
-        'geodir_home_map_page' =>
191
-            apply_filters('geodir_set_custom_home_map_page', false)
192
-    ));
193
-
194
-
195
-    if (geodir_is_page('login') || $geodir_custom_page_list['geodir_signup_page']) {
196
-
197
-        $template = geodir_locate_template('signup');
198
-
199
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-signup.php';
200
-
201
-        /**
202
-         * Filter the signup template path.
203
-         *
204
-         * @since 1.0.0
205
-         * @param string $template The template path.
206
-         */
207
-        return $template = apply_filters('geodir_template_signup', $template);
208
-    }
209
-
210
-    if (geodir_is_page('add-listing') || $geodir_custom_page_list['geodir_add_listing_page']) {
211
-        if (!geodir_is_default_location_set()) {
212
-            global $information;
213
-            $information = 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>');
214
-
215
-            $template = geodir_locate_template('information');
216
-
217
-            if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-information.php';
218
-            /**
219
-             * Filter the information template path.
220
-             *
221
-             * @since 1.0.0
222
-             * @param string $template The template path.
223
-             */
224
-            return $template = apply_filters('geodir_template_information', $template);
225
-        }
226
-        // check if pid exists in the record if yes then check if this post belongs to the user who is logged in.
227
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
228
-            /// WPML
229
-            if (geodir_wpml_is_post_type_translated(get_post_type((int)$_GET['pid'])) && $duplicate_of = wpml_get_master_post_from_duplicate((int)$_GET['pid'])) {
230
-                global $sitepress;
166
+	global $wp_query;
167
+
168
+	/**
169
+	 * Filter the custom page list.
170
+	 *
171
+	 * @since 1.0.0
172
+	 */
173
+	$geodir_custom_page_list = apply_filters('geodir_set_custom_pages', array(
174
+		'geodir_signup_page' =>
175
+			apply_filters('geodir_set_custom_signup_page', false),
176
+		'geodir_add_listing_page' =>
177
+			apply_filters('geodir_set_custom_add_listing_page', false),
178
+		'geodir_preview_page' =>
179
+			apply_filters('geodir_set_custom_preview_page', false),
180
+		'geodir_listing_success_page' =>
181
+			apply_filters('geodir_set_custom_listing_success_page', false),
182
+		'geodir_listing_detail_page' =>
183
+			apply_filters('geodir_set_custom_listing_detail_page', false),
184
+		'geodir_listing_page' =>
185
+			apply_filters('geodir_set_custom_listing_page', false),
186
+		'geodir_search_page' =>
187
+			apply_filters('geodir_set_custom_search_page', false),
188
+		'geodir_author_page' =>
189
+			apply_filters('geodir_set_custom_author_page', false),
190
+		'geodir_home_map_page' =>
191
+			apply_filters('geodir_set_custom_home_map_page', false)
192
+	));
193
+
194
+
195
+	if (geodir_is_page('login') || $geodir_custom_page_list['geodir_signup_page']) {
196
+
197
+		$template = geodir_locate_template('signup');
198
+
199
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-signup.php';
200
+
201
+		/**
202
+		 * Filter the signup template path.
203
+		 *
204
+		 * @since 1.0.0
205
+		 * @param string $template The template path.
206
+		 */
207
+		return $template = apply_filters('geodir_template_signup', $template);
208
+	}
209
+
210
+	if (geodir_is_page('add-listing') || $geodir_custom_page_list['geodir_add_listing_page']) {
211
+		if (!geodir_is_default_location_set()) {
212
+			global $information;
213
+			$information = 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>');
214
+
215
+			$template = geodir_locate_template('information');
216
+
217
+			if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-information.php';
218
+			/**
219
+			 * Filter the information template path.
220
+			 *
221
+			 * @since 1.0.0
222
+			 * @param string $template The template path.
223
+			 */
224
+			return $template = apply_filters('geodir_template_information', $template);
225
+		}
226
+		// check if pid exists in the record if yes then check if this post belongs to the user who is logged in.
227
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
228
+			/// WPML
229
+			if (geodir_wpml_is_post_type_translated(get_post_type((int)$_GET['pid'])) && $duplicate_of = wpml_get_master_post_from_duplicate((int)$_GET['pid'])) {
230
+				global $sitepress;
231 231
                 
232
-                $lang_of_duplicate = geodir_get_language_for_element($duplicate_of, 'post_' . get_post_type($duplicate_of));
233
-                $sitepress->switch_lang($lang_of_duplicate, true);
232
+				$lang_of_duplicate = geodir_get_language_for_element($duplicate_of, 'post_' . get_post_type($duplicate_of));
233
+				$sitepress->switch_lang($lang_of_duplicate, true);
234 234
         
235
-                $redirect_to = get_permalink(geodir_add_listing_page_id());
236
-                $_GET['pid'] = $duplicate_of;
237
-                if (!empty($_GET)) {
238
-                    $redirect_to = add_query_arg($_GET, $redirect_to);
239
-                }
240
-                wp_redirect($redirect_to);
241
-                exit;
242
-            }
243
-            /// WPML
235
+				$redirect_to = get_permalink(geodir_add_listing_page_id());
236
+				$_GET['pid'] = $duplicate_of;
237
+				if (!empty($_GET)) {
238
+					$redirect_to = add_query_arg($_GET, $redirect_to);
239
+				}
240
+				wp_redirect($redirect_to);
241
+				exit;
242
+			}
243
+			/// WPML
244 244
             
245
-            global $information;
246
-            $information = __('This listing does not belong to your account, please check the listing id carefully.', 'geodirectory');
247
-            $is_current_user_owner = geodir_listing_belong_to_current_user();
248
-            if (!$is_current_user_owner) {
249
-                $template = geodir_locate_template('information');
250
-
251
-                if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-information.php';
252
-                /**
253
-                 * Filter the information template path.
254
-                 *
255
-                 * @since 1.0.0
256
-                 * @param string $template The template path.
257
-                 */
258
-                return $template = apply_filters('geodir_template_information', $template);
259
-            }
245
+			global $information;
246
+			$information = __('This listing does not belong to your account, please check the listing id carefully.', 'geodirectory');
247
+			$is_current_user_owner = geodir_listing_belong_to_current_user();
248
+			if (!$is_current_user_owner) {
249
+				$template = geodir_locate_template('information');
250
+
251
+				if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-information.php';
252
+				/**
253
+				 * Filter the information template path.
254
+				 *
255
+				 * @since 1.0.0
256
+				 * @param string $template The template path.
257
+				 */
258
+				return $template = apply_filters('geodir_template_information', $template);
259
+			}
260 260
 
261 261
 
262
-        }
262
+		}
263 263
 
264
-        //geodir_is_login(true);
265
-        global $current_user;
266
-        if (!$current_user->ID) {
267
-            wp_redirect(geodir_login_url(array('redirect_add_listing'=>urlencode(geodir_curPageURL()))), 302);
268
-            exit;
269
-        }
264
+		//geodir_is_login(true);
265
+		global $current_user;
266
+		if (!$current_user->ID) {
267
+			wp_redirect(geodir_login_url(array('redirect_add_listing'=>urlencode(geodir_curPageURL()))), 302);
268
+			exit;
269
+		}
270 270
 
271
-        $template = geodir_locate_template('add-listing');
272
-
273
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/add-listing.php';
274
-        /**
275
-         * Filter the add listing template path.
276
-         *
277
-         * @since 1.0.0
278
-         * @param string $template The template path.
279
-         */
280
-        return $template = apply_filters('geodir_template_add_listing', $template);
281
-    }
271
+		$template = geodir_locate_template('add-listing');
282 272
 
273
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/add-listing.php';
274
+		/**
275
+		 * Filter the add listing template path.
276
+		 *
277
+		 * @since 1.0.0
278
+		 * @param string $template The template path.
279
+		 */
280
+		return $template = apply_filters('geodir_template_add_listing', $template);
281
+	}
283 282
 
284
-    if (geodir_is_page('preview') || $geodir_custom_page_list['geodir_preview_page']) {
285
-        global $preview;
286
-        $preview = true;
287 283
 
288
-        $template = geodir_locate_template('preview');
284
+	if (geodir_is_page('preview') || $geodir_custom_page_list['geodir_preview_page']) {
285
+		global $preview;
286
+		$preview = true;
289 287
 
290
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-detail.php';
291
-        /**
292
-         * Filter the preview template path.
293
-         *
294
-         * @since 1.0.0
295
-         * @param string $template The template path.
296
-         */
297
-        return $template = apply_filters('geodir_template_preview', $template);
288
+		$template = geodir_locate_template('preview');
298 289
 
299
-    }
290
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-detail.php';
291
+		/**
292
+		 * Filter the preview template path.
293
+		 *
294
+		 * @since 1.0.0
295
+		 * @param string $template The template path.
296
+		 */
297
+		return $template = apply_filters('geodir_template_preview', $template);
300 298
 
299
+	}
301 300
 
302
-    if (geodir_is_page('listing-success') || $geodir_custom_page_list['geodir_listing_success_page']) {
303 301
 
304
-        $template = geodir_locate_template('success');
302
+	if (geodir_is_page('listing-success') || $geodir_custom_page_list['geodir_listing_success_page']) {
305 303
 
306
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-success.php';
307
-        /**
308
-         * Filter the success template path.
309
-         *
310
-         * @since 1.0.0
311
-         * @param string $template The template path.
312
-         */
313
-        return $template = apply_filters('geodir_template_success', $template);
304
+		$template = geodir_locate_template('success');
314 305
 
315
-    }
306
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-success.php';
307
+		/**
308
+		 * Filter the success template path.
309
+		 *
310
+		 * @since 1.0.0
311
+		 * @param string $template The template path.
312
+		 */
313
+		return $template = apply_filters('geodir_template_success', $template);
316 314
 
317
-    if (geodir_is_page('detail') || $geodir_custom_page_list['geodir_listing_detail_page']) {
315
+	}
318 316
 
319
-        $template = geodir_locate_template('detail');
317
+	if (geodir_is_page('detail') || $geodir_custom_page_list['geodir_listing_detail_page']) {
320 318
 
321
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-detail.php';
322
-        /**
323
-         * Filter the detail template path.
324
-         *
325
-         * @since 1.0.0
326
-         * @param string $template The template path.
327
-         */
328
-        return $template = apply_filters('geodir_template_detail', $template);
319
+		$template = geodir_locate_template('detail');
329 320
 
330
-    }
321
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-detail.php';
322
+		/**
323
+		 * Filter the detail template path.
324
+		 *
325
+		 * @since 1.0.0
326
+		 * @param string $template The template path.
327
+		 */
328
+		return $template = apply_filters('geodir_template_detail', $template);
331 329
 
332
-    if (geodir_is_page('listing') || $geodir_custom_page_list['geodir_listing_page']) {
330
+	}
333 331
 
334
-        $template = geodir_locate_template('listing');
332
+	if (geodir_is_page('listing') || $geodir_custom_page_list['geodir_listing_page']) {
335 333
 
336
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-listing.php';
337
-        /**
338
-         * Filter the listing template path.
339
-         *
340
-         * @since 1.0.0
341
-         * @param string $template The template path.
342
-         */
343
-        return $template = apply_filters('geodir_template_listing', $template);
334
+		$template = geodir_locate_template('listing');
344 335
 
345
-    }
336
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-listing.php';
337
+		/**
338
+		 * Filter the listing template path.
339
+		 *
340
+		 * @since 1.0.0
341
+		 * @param string $template The template path.
342
+		 */
343
+		return $template = apply_filters('geodir_template_listing', $template);
346 344
 
347
-    if (geodir_is_page('search') || $geodir_custom_page_list['geodir_search_page']) {
345
+	}
348 346
 
349
-        $template = geodir_locate_template('search');
347
+	if (geodir_is_page('search') || $geodir_custom_page_list['geodir_search_page']) {
350 348
 
351
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-search.php';
352
-        /**
353
-         * Filter the search template path.
354
-         *
355
-         * @since 1.0.0
356
-         * @param string $template The template path.
357
-         */
358
-        return $template = apply_filters('geodir_template_search', $template);
349
+		$template = geodir_locate_template('search');
359 350
 
360
-    }
351
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-search.php';
352
+		/**
353
+		 * Filter the search template path.
354
+		 *
355
+		 * @since 1.0.0
356
+		 * @param string $template The template path.
357
+		 */
358
+		return $template = apply_filters('geodir_template_search', $template);
361 359
 
362
-    if (geodir_is_page('author') || $geodir_custom_page_list['geodir_author_page']) {
360
+	}
363 361
 
364
-        $template = geodir_locate_template('author');
362
+	if (geodir_is_page('author') || $geodir_custom_page_list['geodir_author_page']) {
365 363
 
366
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-author.php';
367
-        /**
368
-         * Filter the author template path.
369
-         *
370
-         * @since 1.0.0
371
-         * @param string $template The template path.
372
-         */
373
-        return $template = apply_filters('geodir_template_author', $template);
364
+		$template = geodir_locate_template('author');
374 365
 
375
-    }
366
+		if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-author.php';
367
+		/**
368
+		 * Filter the author template path.
369
+		 *
370
+		 * @since 1.0.0
371
+		 * @param string $template The template path.
372
+		 */
373
+		return $template = apply_filters('geodir_template_author', $template);
376 374
 
377
-    if ( geodir_is_page('home') || geodir_is_page('location')) {
375
+	}
378 376
 
379
-        global $post, $wp_query;
377
+	if ( geodir_is_page('home') || geodir_is_page('location')) {
380 378
 
381
-        if (geodir_is_page('home') || ('page' == get_option('show_on_front') && isset($post->ID) && $post->ID == get_option('page_on_front'))
382
-            || (is_home() && !$wp_query->is_posts_page)
383
-        ) {
379
+		global $post, $wp_query;
384 380
 
385
-            $template = geodir_locate_template('geodir-home');
381
+		if (geodir_is_page('home') || ('page' == get_option('show_on_front') && isset($post->ID) && $post->ID == get_option('page_on_front'))
382
+			|| (is_home() && !$wp_query->is_posts_page)
383
+		) {
386 384
 
387
-            if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-home.php';
388
-            /**
389
-             * Filter the home page template path.
390
-             *
391
-             * @since 1.0.0
392
-             * @param string $template The template path.
393
-             */
394
-            return $template = apply_filters('geodir_template_homepage', $template);
385
+			$template = geodir_locate_template('geodir-home');
395 386
 
396
-        } elseif (geodir_is_page('location')) {
387
+			if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-home.php';
388
+			/**
389
+			 * Filter the home page template path.
390
+			 *
391
+			 * @since 1.0.0
392
+			 * @param string $template The template path.
393
+			 */
394
+			return $template = apply_filters('geodir_template_homepage', $template);
397 395
 
398
-            $template = geodir_locate_template('location');
396
+		} elseif (geodir_is_page('location')) {
399 397
 
400
-            if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-location.php';
401
-            /**
402
-             * Filter the location template path.
403
-             *
404
-             * @since 1.0.0
405
-             * @param string $template The template path.
406
-             */
407
-            return $template = apply_filters('geodir_template_location', $template);
398
+			$template = geodir_locate_template('location');
408 399
 
409
-        } else
410
-            return $template;
400
+			if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-location.php';
401
+			/**
402
+			 * Filter the location template path.
403
+			 *
404
+			 * @since 1.0.0
405
+			 * @param string $template The template path.
406
+			 */
407
+			return $template = apply_filters('geodir_template_location', $template);
411 408
 
412
-    }
409
+		} else
410
+			return $template;
413 411
 
414
-    return $template;
412
+	}
413
+
414
+	return $template;
415 415
 }
416 416
 
417 417
 /**
@@ -426,44 +426,44 @@  discard block
 block discarded – undo
426 426
  */
427 427
 function geodir_get_template_part($slug = '', $name = NULL)
428 428
 {
429
-    global $geodirectory, $post;
430
-    /**
431
-     * Called at the start for the geodir_get_template_part() function.
432
-     *
433
-     * Used dynamic hook name: geodir_get_template_part_{$slug}
434
-     *
435
-     * @since 1.0.0
436
-     * @package GeoDirectory
437
-     * @param string $slug The template slug.
438
-     * @param string $name The template name.
439
-     */
440
-    do_action("geodir_get_template_part_{$slug}", $slug, $name);
441
-    $templates = array();
442
-    $name = (string)$name;
443
-    if ('' !== $name) {
444
-        $template_name = "{$slug}-{$name}.php";
445
-
446
-    } else {
447
-        $template_name = "{$slug}.php";
448
-    }
449
-
450
-    if (!locate_template(array("geodirectory/" . $template_name))) :
451
-        /**
452
-         * Filter the template part with slug and name.
453
-         *
454
-         * @since 1.0.0
455
-         * @param string $template_name The template name.
456
-         */
457
-        $template = apply_filters("geodir_template_part-{$slug}-{$name}", geodir_plugin_path() . '/geodirectory-templates/' . $template_name);
458
-        /**
459
-         * Includes the template part with slug and name.
460
-         *
461
-         * @since 1.0.0
462
-         */
463
-        include($template);
464
-    else:
465
-        locate_template(array("geodirectory/" . $template_name), true, false);
466
-    endif;
429
+	global $geodirectory, $post;
430
+	/**
431
+	 * Called at the start for the geodir_get_template_part() function.
432
+	 *
433
+	 * Used dynamic hook name: geodir_get_template_part_{$slug}
434
+	 *
435
+	 * @since 1.0.0
436
+	 * @package GeoDirectory
437
+	 * @param string $slug The template slug.
438
+	 * @param string $name The template name.
439
+	 */
440
+	do_action("geodir_get_template_part_{$slug}", $slug, $name);
441
+	$templates = array();
442
+	$name = (string)$name;
443
+	if ('' !== $name) {
444
+		$template_name = "{$slug}-{$name}.php";
445
+
446
+	} else {
447
+		$template_name = "{$slug}.php";
448
+	}
449
+
450
+	if (!locate_template(array("geodirectory/" . $template_name))) :
451
+		/**
452
+		 * Filter the template part with slug and name.
453
+		 *
454
+		 * @since 1.0.0
455
+		 * @param string $template_name The template name.
456
+		 */
457
+		$template = apply_filters("geodir_template_part-{$slug}-{$name}", geodir_plugin_path() . '/geodirectory-templates/' . $template_name);
458
+		/**
459
+		 * Includes the template part with slug and name.
460
+		 *
461
+		 * @since 1.0.0
462
+		 */
463
+		include($template);
464
+	else:
465
+		locate_template(array("geodirectory/" . $template_name), true, false);
466
+	endif;
467 467
 
468 468
 }
469 469
 
@@ -479,23 +479,23 @@  discard block
 block discarded – undo
479 479
  */
480 480
 function geodir_core_post_view_extra_class($class, $all_postypes = '')
481 481
 {
482
-    global $post;
482
+	global $post;
483 483
 
484
-    if (!$all_postypes) {
485
-        $all_postypes = geodir_get_posttypes();
486
-    }
484
+	if (!$all_postypes) {
485
+		$all_postypes = geodir_get_posttypes();
486
+	}
487 487
 
488
-    $gdp_post_id = !empty($post) && isset($post->ID) ? $post->ID : NULL;
489
-    $gdp_post_type = $gdp_post_id > 0 && isset($post->post_type) ? $post->post_type : NULL;
490
-    $gdp_post_type = $gdp_post_type != '' && !empty($all_postypes) && in_array($gdp_post_type, $all_postypes) ? $gdp_post_type : NULL;
488
+	$gdp_post_id = !empty($post) && isset($post->ID) ? $post->ID : NULL;
489
+	$gdp_post_type = $gdp_post_id > 0 && isset($post->post_type) ? $post->post_type : NULL;
490
+	$gdp_post_type = $gdp_post_type != '' && !empty($all_postypes) && in_array($gdp_post_type, $all_postypes) ? $gdp_post_type : NULL;
491 491
 
492
-    if ($gdp_post_id && $gdp_post_type) {
493
-        $append_class = 'gd-post-' . $gdp_post_type;
494
-        $append_class .= isset($post->is_featured) && $post->is_featured > 0 ? ' gd-post-featured' : '';
495
-        $class = $class != '' ? $class . ' ' . $append_class : $append_class;
496
-    }
492
+	if ($gdp_post_id && $gdp_post_type) {
493
+		$append_class = 'gd-post-' . $gdp_post_type;
494
+		$append_class .= isset($post->is_featured) && $post->is_featured > 0 ? ' gd-post-featured' : '';
495
+		$class = $class != '' ? $class . ' ' . $append_class : $append_class;
496
+	}
497 497
 
498
-    return $class;
498
+	return $class;
499 499
 }
500 500
 
501 501
 /**
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
  * @param bool $favorite Listing Optional. Are favorite listings results? Default: false.
510 510
  */
511 511
 function geodir_display_message_not_found_on_listing($template_listview = 'listing-listview', $favorite = false) {
512
-    if ($favorite) {
512
+	if ($favorite) {
513 513
 		$message = __('No favorite listings found which match your selection.', 'geodirectory');
514 514
 	} else {
515 515
 		$message = __('No listings found which match your selection.', 'geodirectory');
Please login to merge, or discard this patch.
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                 if ($is_wpml && !empty($wp->query_vars['page_id'])) {
74 74
                     wp_redirect(geodir_getlink(get_permalink($wp->query_vars['page_id']), array('listing_type' => $post_type)));
75 75
                 } else {
76
-                    wp_redirect(trailingslashit(get_site_url()) . $pagename . '/?listing_type=' . $post_type);
76
+                    wp_redirect(trailingslashit(get_site_url()).$pagename.'/?listing_type='.$post_type);
77 77
                 }
78 78
                 gd_die();
79 79
             }
@@ -131,14 +131,14 @@  discard block
 block discarded – undo
131 131
         case 'listing-listview':
132 132
             $template = locate_template(array("geodirectory/listing-listview.php"));
133 133
             if (!$template) {
134
-                $template = geodir_plugin_path() . '/geodirectory-templates/listing-listview.php';
134
+                $template = geodir_plugin_path().'/geodirectory-templates/listing-listview.php';
135 135
             }
136 136
             return $template;
137 137
             break;
138 138
         case 'widget-listing-listview':
139 139
             $template = locate_template(array("geodirectory/widget-listing-listview.php"));
140 140
             if (!$template) {
141
-                $template = geodir_plugin_path() . '/geodirectory-templates/widget-listing-listview.php';
141
+                $template = geodir_plugin_path().'/geodirectory-templates/widget-listing-listview.php';
142 142
             }
143 143
             return $template;
144 144
             break;
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 
197 197
         $template = geodir_locate_template('signup');
198 198
 
199
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-signup.php';
199
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-signup.php';
200 200
 
201 201
         /**
202 202
          * Filter the signup template path.
@@ -210,11 +210,11 @@  discard block
 block discarded – undo
210 210
     if (geodir_is_page('add-listing') || $geodir_custom_page_list['geodir_add_listing_page']) {
211 211
         if (!geodir_is_default_location_set()) {
212 212
             global $information;
213
-            $information = 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>');
213
+            $information = 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>');
214 214
 
215 215
             $template = geodir_locate_template('information');
216 216
 
217
-            if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-information.php';
217
+            if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-information.php';
218 218
             /**
219 219
              * Filter the information template path.
220 220
              *
@@ -226,10 +226,10 @@  discard block
 block discarded – undo
226 226
         // check if pid exists in the record if yes then check if this post belongs to the user who is logged in.
227 227
         if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
228 228
             /// WPML
229
-            if (geodir_wpml_is_post_type_translated(get_post_type((int)$_GET['pid'])) && $duplicate_of = wpml_get_master_post_from_duplicate((int)$_GET['pid'])) {
229
+            if (geodir_wpml_is_post_type_translated(get_post_type((int) $_GET['pid'])) && $duplicate_of = wpml_get_master_post_from_duplicate((int) $_GET['pid'])) {
230 230
                 global $sitepress;
231 231
                 
232
-                $lang_of_duplicate = geodir_get_language_for_element($duplicate_of, 'post_' . get_post_type($duplicate_of));
232
+                $lang_of_duplicate = geodir_get_language_for_element($duplicate_of, 'post_'.get_post_type($duplicate_of));
233 233
                 $sitepress->switch_lang($lang_of_duplicate, true);
234 234
         
235 235
                 $redirect_to = get_permalink(geodir_add_listing_page_id());
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
             if (!$is_current_user_owner) {
249 249
                 $template = geodir_locate_template('information');
250 250
 
251
-                if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-information.php';
251
+                if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-information.php';
252 252
                 /**
253 253
                  * Filter the information template path.
254 254
                  *
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 
271 271
         $template = geodir_locate_template('add-listing');
272 272
 
273
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/add-listing.php';
273
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/add-listing.php';
274 274
         /**
275 275
          * Filter the add listing template path.
276 276
          *
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 
288 288
         $template = geodir_locate_template('preview');
289 289
 
290
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-detail.php';
290
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/listing-detail.php';
291 291
         /**
292 292
          * Filter the preview template path.
293 293
          *
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
 
304 304
         $template = geodir_locate_template('success');
305 305
 
306
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-success.php';
306
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/listing-success.php';
307 307
         /**
308 308
          * Filter the success template path.
309 309
          *
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 
319 319
         $template = geodir_locate_template('detail');
320 320
 
321
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/listing-detail.php';
321
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/listing-detail.php';
322 322
         /**
323 323
          * Filter the detail template path.
324 324
          *
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
 
334 334
         $template = geodir_locate_template('listing');
335 335
 
336
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-listing.php';
336
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-listing.php';
337 337
         /**
338 338
          * Filter the listing template path.
339 339
          *
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
 
349 349
         $template = geodir_locate_template('search');
350 350
 
351
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-search.php';
351
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-search.php';
352 352
         /**
353 353
          * Filter the search template path.
354 354
          *
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
 
364 364
         $template = geodir_locate_template('author');
365 365
 
366
-        if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-author.php';
366
+        if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-author.php';
367 367
         /**
368 368
          * Filter the author template path.
369 369
          *
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 
375 375
     }
376 376
 
377
-    if ( geodir_is_page('home') || geodir_is_page('location')) {
377
+    if (geodir_is_page('home') || geodir_is_page('location')) {
378 378
 
379 379
         global $post, $wp_query;
380 380
 
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
 
385 385
             $template = geodir_locate_template('geodir-home');
386 386
 
387
-            if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-home.php';
387
+            if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-home.php';
388 388
             /**
389 389
              * Filter the home page template path.
390 390
              *
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
 
398 398
             $template = geodir_locate_template('location');
399 399
 
400
-            if (!$template) $template = geodir_plugin_path() . '/geodirectory-templates/geodir-location.php';
400
+            if (!$template) $template = geodir_plugin_path().'/geodirectory-templates/geodir-location.php';
401 401
             /**
402 402
              * Filter the location template path.
403 403
              *
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
      */
440 440
     do_action("geodir_get_template_part_{$slug}", $slug, $name);
441 441
     $templates = array();
442
-    $name = (string)$name;
442
+    $name = (string) $name;
443 443
     if ('' !== $name) {
444 444
         $template_name = "{$slug}-{$name}.php";
445 445
 
@@ -447,14 +447,14 @@  discard block
 block discarded – undo
447 447
         $template_name = "{$slug}.php";
448 448
     }
449 449
 
450
-    if (!locate_template(array("geodirectory/" . $template_name))) :
450
+    if (!locate_template(array("geodirectory/".$template_name))) :
451 451
         /**
452 452
          * Filter the template part with slug and name.
453 453
          *
454 454
          * @since 1.0.0
455 455
          * @param string $template_name The template name.
456 456
          */
457
-        $template = apply_filters("geodir_template_part-{$slug}-{$name}", geodir_plugin_path() . '/geodirectory-templates/' . $template_name);
457
+        $template = apply_filters("geodir_template_part-{$slug}-{$name}", geodir_plugin_path().'/geodirectory-templates/'.$template_name);
458 458
         /**
459 459
          * Includes the template part with slug and name.
460 460
          *
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
          */
463 463
         include($template);
464 464
     else:
465
-        locate_template(array("geodirectory/" . $template_name), true, false);
465
+        locate_template(array("geodirectory/".$template_name), true, false);
466 466
     endif;
467 467
 
468 468
 }
@@ -490,9 +490,9 @@  discard block
 block discarded – undo
490 490
     $gdp_post_type = $gdp_post_type != '' && !empty($all_postypes) && in_array($gdp_post_type, $all_postypes) ? $gdp_post_type : NULL;
491 491
 
492 492
     if ($gdp_post_id && $gdp_post_type) {
493
-        $append_class = 'gd-post-' . $gdp_post_type;
493
+        $append_class = 'gd-post-'.$gdp_post_type;
494 494
         $append_class .= isset($post->is_featured) && $post->is_featured > 0 ? ' gd-post-featured' : '';
495
-        $class = $class != '' ? $class . ' ' . $append_class : $append_class;
495
+        $class = $class != '' ? $class.' '.$append_class : $append_class;
496 496
     }
497 497
 
498 498
     return $class;
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
 	 */
525 525
 	$message = apply_filters('geodir_message_listing_not_found', $message, $template_listview, $favorite);
526 526
 	
527
-	echo '<li class="no-listing">' . $message . '</li>';
527
+	echo '<li class="no-listing">'.$message.'</li>';
528 528
 }
529 529
 
530 530
 /**
@@ -553,7 +553,7 @@  discard block
 block discarded – undo
553 553
 function geodir_convert_listing_view_class($columns = '') {
554 554
 	$class = '';
555 555
 	
556
-	switch ((int)$columns) {
556
+	switch ((int) $columns) {
557 557
 		case 1:
558 558
 			$class = '';
559 559
 		break;
@@ -618,7 +618,7 @@  discard block
 block discarded – undo
618 618
 		$html .= '<option value=""></option>';
619 619
 		if (!empty($star_texts) && is_array($star_texts)) {
620 620
 			foreach ($star_texts as $i => $text) {
621
-				$html .= '<option ' . selected((int)($i + 1), (int)$default, false) . ' value="' . (int)($i + 1) . '">' . $text . '</option>';
621
+				$html .= '<option '.selected((int) ($i + 1), (int) $default, false).' value="'.(int) ($i + 1).'">'.$text.'</option>';
622 622
 			}
623 623
 		} else {
624 624
 			$html .= '<option value="1">1</option>';
@@ -647,14 +647,14 @@  discard block
 block discarded – undo
647 647
 function geodir_font_awesome_rating_stars_html($html, $rating, $star_count = 5) {
648 648
 	if (get_option('geodir_reviewrating_enable_font_awesome') == '1') {
649 649
 		$rating = min($rating, $star_count);
650
-		$full_stars = floor( $rating );
651
-		$half_stars = ceil( $rating - $full_stars );
650
+		$full_stars = floor($rating);
651
+		$half_stars = ceil($rating - $full_stars);
652 652
 		$empty_stars = $star_count - $full_stars - $half_stars;
653 653
 		
654 654
 		$html = '<div class="gd-star-rating gd-fa-star-rating">';
655
-		$html .= str_repeat( '<i class="fa fa-star gd-full-star"></i>', $full_stars );
656
-		$html .= str_repeat( '<i class="fa fa-star-o fa-star-half-full gd-half-star"></i>', $half_stars );
657
-		$html .= str_repeat( '<i class="fa fa-star-o gd-empty-star"></i>', $empty_stars);
655
+		$html .= str_repeat('<i class="fa fa-star gd-full-star"></i>', $full_stars);
656
+		$html .= str_repeat('<i class="fa fa-star-o fa-star-half-full gd-half-star"></i>', $half_stars);
657
+		$html .= str_repeat('<i class="fa fa-star-o gd-empty-star"></i>', $empty_stars);
658 658
 		$html .= '</div>';
659 659
 	}
660 660
 
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
 		$full_color = get_option('geodir_reviewrating_fa_full_rating_color', '#757575');
674 674
 		if ($full_color != '#757575') {
675 675
 			echo '<style type="text/css">.br-theme-fontawesome-stars .br-widget a.br-active:after,.br-theme-fontawesome-stars .br-widget a.br-selected:after,
676
-			.gd-star-rating i.fa {color:' . stripslashes($full_color) . '!important;}</style>';
676
+			.gd-star-rating i.fa {color:' . stripslashes($full_color).'!important;}</style>';
677 677
 		}
678 678
 	}
679 679
 }
680 680
\ No newline at end of file
Please login to merge, or discard this patch.