Test Failed
Push — master ( b10089...ae1ba7 )
by
unknown
04:13
created
geodirectory_shortcodes.php 2 patches
Indentation   +875 added lines, -875 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 // If this file is called directly, abort.
9 9
 if (!defined('WPINC')) {
10
-    die;
10
+	die;
11 11
 }
12 12
 require_once('geodirectory-functions/shortcode_functions.php');
13 13
 
@@ -32,43 +32,43 @@  discard block
 block discarded – undo
32 32
  */
33 33
 function geodir_sc_add_listing($atts)
34 34
 {
35
-    ob_start();
36
-    $defaults = array(
37
-        'pid' => '',
38
-        'listing_type' => 'gd_place',
39
-        'login_msg' => __('You must login to post.', 'geodirectory'),
40
-        'show_login' => false,
41
-    );
42
-    $params = shortcode_atts($defaults, $atts);
43
-
44
-    foreach ($params as $key => $value) {
45
-        $_REQUEST[$key] = $value;
46
-    }
47
-
48
-    $user_id = get_current_user_id();
49
-    if (!$user_id) {
50
-        echo $params['login_msg'];
51
-        if ($params['show_login']) {
52
-            echo "<br />";
53
-            $defaults = array(
54
-                'before_widget' => '',
55
-                'after_widget' => '',
56
-                'before_title' => '',
57
-                'after_title' => '',
58
-            );
59
-
60
-            geodir_loginwidget_output($defaults, $defaults);
61
-        }
62
-
63
-
64
-    } else {
65
-       // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
-    }
67
-    $output = ob_get_contents();
68
-
69
-    ob_end_clean();
70
-
71
-    return $output;
35
+	ob_start();
36
+	$defaults = array(
37
+		'pid' => '',
38
+		'listing_type' => 'gd_place',
39
+		'login_msg' => __('You must login to post.', 'geodirectory'),
40
+		'show_login' => false,
41
+	);
42
+	$params = shortcode_atts($defaults, $atts);
43
+
44
+	foreach ($params as $key => $value) {
45
+		$_REQUEST[$key] = $value;
46
+	}
47
+
48
+	$user_id = get_current_user_id();
49
+	if (!$user_id) {
50
+		echo $params['login_msg'];
51
+		if ($params['show_login']) {
52
+			echo "<br />";
53
+			$defaults = array(
54
+				'before_widget' => '',
55
+				'after_widget' => '',
56
+				'before_title' => '',
57
+				'after_title' => '',
58
+			);
59
+
60
+			geodir_loginwidget_output($defaults, $defaults);
61
+		}
62
+
63
+
64
+	} else {
65
+	   // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
+	}
67
+	$output = ob_get_contents();
68
+
69
+	ob_end_clean();
70
+
71
+	return $output;
72 72
 }
73 73
 
74 74
 /**
@@ -96,136 +96,136 @@  discard block
 block discarded – undo
96 96
  */
97 97
 function geodir_sc_home_map($atts)
98 98
 {
99
-    ob_start();
100
-    $defaults = array(
101
-        'width' => '960',
102
-        'height' => '425',
103
-        'maptype' => 'ROADMAP',
104
-        'zoom' => '13',
105
-        'autozoom' => '',
106
-        'child_collapse' => '0',
107
-        'scrollwheel' => '0',
99
+	ob_start();
100
+	$defaults = array(
101
+		'width' => '960',
102
+		'height' => '425',
103
+		'maptype' => 'ROADMAP',
104
+		'zoom' => '13',
105
+		'autozoom' => '',
106
+		'child_collapse' => '0',
107
+		'scrollwheel' => '0',
108 108
 		'marker_cluster' => false,
109
-        'latitude' => '',
110
-        'longitude' => ''
111
-    );
112
-
113
-    $params = shortcode_atts($defaults, $atts);
114
-
115
-    $params = gdsc_validate_map_args($params);
116
-
117
-    $map_args = array(
118
-        'map_canvas_name' => 'gd_home_map',
119
-        'latitude' => $params['latitude'],
120
-        'longitude' => $params['longitude'],
121
-
122
-        /**
123
-         * Filter the widget width of the map on home/listings page.
124
-         *
125
-         * @since 1.0.0
126
-         * @param mixed(string|int|float) $params['width'] The map width.
127
-         */
128
-        'width' => apply_filters('widget_width', $params['width']),
129
-        /**
130
-         * Filter the widget height of the map on home/listings page.
131
-         *
132
-         * @since 1.0.0
133
-         * @param mixed(string|int|float) $params['height'] The map height.
134
-         */
135
-        'height' => apply_filters('widget_heigh', $params['height']),
136
-        /**
137
-         * Filter the widget maptype of the map on home/listings page.
138
-         *
139
-         * @since 1.0.0
109
+		'latitude' => '',
110
+		'longitude' => ''
111
+	);
112
+
113
+	$params = shortcode_atts($defaults, $atts);
114
+
115
+	$params = gdsc_validate_map_args($params);
116
+
117
+	$map_args = array(
118
+		'map_canvas_name' => 'gd_home_map',
119
+		'latitude' => $params['latitude'],
120
+		'longitude' => $params['longitude'],
121
+
122
+		/**
123
+		 * Filter the widget width of the map on home/listings page.
124
+		 *
125
+		 * @since 1.0.0
126
+		 * @param mixed(string|int|float) $params['width'] The map width.
127
+		 */
128
+		'width' => apply_filters('widget_width', $params['width']),
129
+		/**
130
+		 * Filter the widget height of the map on home/listings page.
131
+		 *
132
+		 * @since 1.0.0
133
+		 * @param mixed(string|int|float) $params['height'] The map height.
134
+		 */
135
+		'height' => apply_filters('widget_heigh', $params['height']),
136
+		/**
137
+		 * Filter the widget maptype of the map on home/listings page.
138
+		 *
139
+		 * @since 1.0.0
140 140
 		 * @since 1.5.2 Added TERRAIN map type.
141
-         * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
-         */
143
-        'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
-        /**
145
-         * Filter the widget scrollwheel value of the map on home/listings page.
146
-         *
147
-         * Should the scrollwheel zoom the map or not.
148
-         *
149
-         * @since 1.0.0
150
-         * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
-         */
152
-        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
-        /**
154
-         * Filter the widget zoom level of the map on home/listings page.
155
-         *
156
-         * @since 1.0.0
157
-         * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
-         */
159
-        'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
-        /**
161
-         * Filter the widget auto zoom value of the map on home/listings page.
162
-         *
163
-         * If the map should autozoom to fit the markers shown.
164
-         *
165
-         * @since 1.0.0
166
-         * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
-         */
168
-        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
-        /**
170
-         * Filter the widget child_collapse value of the map on home/listings page.
171
-         *
172
-         * If the map should auto collapse the child categories if the category bar is present.
173
-         *
174
-         * @since 1.0.0
175
-         * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
-         */
177
-        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
-        'enable_cat_filters' => true,
179
-        'enable_text_search' => true,
180
-        'enable_post_type_filters' => true,
181
-        /**
182
-         * Filter the widget enable_location_filters value of the map on home/listings page.
183
-         *
184
-         * This is used when the location addon is used.
185
-         *
186
-         * @since 1.0.0
187
-         * @param bool $val True if location filters should be used, false if not.
188
-         */
189
-        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
-        'enable_jason_on_load' => false,
191
-        'enable_marker_cluster' => false,
192
-        'enable_map_resize_button' => true,
193
-        'map_class_name' => 'geodir-map-home-page',
194
-        'is_geodir_home_map_widget' => true,
195
-    );
141
+		 * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
+		 */
143
+		'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
+		/**
145
+		 * Filter the widget scrollwheel value of the map on home/listings page.
146
+		 *
147
+		 * Should the scrollwheel zoom the map or not.
148
+		 *
149
+		 * @since 1.0.0
150
+		 * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
+		 */
152
+		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
+		/**
154
+		 * Filter the widget zoom level of the map on home/listings page.
155
+		 *
156
+		 * @since 1.0.0
157
+		 * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
+		 */
159
+		'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
+		/**
161
+		 * Filter the widget auto zoom value of the map on home/listings page.
162
+		 *
163
+		 * If the map should autozoom to fit the markers shown.
164
+		 *
165
+		 * @since 1.0.0
166
+		 * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
+		 */
168
+		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
+		/**
170
+		 * Filter the widget child_collapse value of the map on home/listings page.
171
+		 *
172
+		 * If the map should auto collapse the child categories if the category bar is present.
173
+		 *
174
+		 * @since 1.0.0
175
+		 * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
+		 */
177
+		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
+		'enable_cat_filters' => true,
179
+		'enable_text_search' => true,
180
+		'enable_post_type_filters' => true,
181
+		/**
182
+		 * Filter the widget enable_location_filters value of the map on home/listings page.
183
+		 *
184
+		 * This is used when the location addon is used.
185
+		 *
186
+		 * @since 1.0.0
187
+		 * @param bool $val True if location filters should be used, false if not.
188
+		 */
189
+		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
+		'enable_jason_on_load' => false,
191
+		'enable_marker_cluster' => false,
192
+		'enable_map_resize_button' => true,
193
+		'map_class_name' => 'geodir-map-home-page',
194
+		'is_geodir_home_map_widget' => true,
195
+	);
196 196
 
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199
-        $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
201
-            if ($map_args['autozoom']) {
202
-                $map_args['enable_marker_cluster_no_reposition'] = false;
203
-            } else {
204
-                $map_args['enable_marker_cluster_no_reposition'] = true;
205
-            }
199
+		$map_args['enable_marker_cluster'] = true;
200
+		if(get_option('geodir_marker_cluster_type')) {
201
+			if ($map_args['autozoom']) {
202
+				$map_args['enable_marker_cluster_no_reposition'] = false;
203
+			} else {
204
+				$map_args['enable_marker_cluster_no_reposition'] = true;
205
+			}
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+			$map_args['enable_marker_cluster_server'] = true ;
208 208
 
209
-        }
209
+		}
210 210
 	} else {
211 211
 		$map_args['enable_marker_cluster'] = false;
212 212
 	}
213 213
 
214
-    // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
-        $map_args['enable_marker_cluster_no_reposition'] = true;
217
-    }
214
+	// if lat and long set in shortcode, hack it so the map is not repositioned
215
+	if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
+		$map_args['enable_marker_cluster_no_reposition'] = true;
217
+	}
218 218
 
219 219
 
220
-    geodir_draw_map($map_args);
220
+	geodir_draw_map($map_args);
221 221
 
222
-    add_action('wp_footer', 'geodir_home_map_add_script', 100);
222
+	add_action('wp_footer', 'geodir_home_map_add_script', 100);
223 223
 
224
-    $output = ob_get_contents();
224
+	$output = ob_get_contents();
225 225
 
226
-    ob_end_clean();
226
+	ob_end_clean();
227 227
 
228
-    return $output;
228
+	return $output;
229 229
 }
230 230
 add_shortcode('gd_homepage_map', 'geodir_sc_home_map');
231 231
 
@@ -264,243 +264,243 @@  discard block
 block discarded – undo
264 264
  */
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267
-    // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
-
270
-        global $add_post_in_marker_array, $gd_sc_map_params;
271
-        $backup_globals                             = array();
272
-        $backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
-        $backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
-
275
-        $defaults = array(
276
-            'width'          => '294',
277
-            'height'         => '370',
278
-            'zoom'           => '13',
279
-            'autozoom'       => '',
280
-            'sticky'         => '',
281
-            'showall'        => '0',
282
-            'scrollwheel'    => '0',
283
-            'maptype'        => 'ROADMAP',
284
-            'child_collapse' => 0,
285
-            'marker_cluster' => false,
286
-            'post_type'      => 'gd_place',
287
-            'category'       => '0',
288
-            'event_type'     => 'all'
289
-        );
290
-
291
-        $params = shortcode_atts( $defaults, $atts );
292
-
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
-            $params['post_type'] = 'gd_place';
295
-        }
296
-
297
-        // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
300
-            'orderby' => 'count',
301
-            'order'   => 'DESC',
302
-            'fields'  => 'ids'
303
-        ) );
304
-
305
-        // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
308
-        }
309
-
310
-        // Array_intersect returns only the items in $params['category'] that are also in our category list
311
-        // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
313
-
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
-        }
317
-
318
-        $params = gdsc_validate_map_args( $params );
319
-
320
-        $gd_sc_map_params = $params;
321
-
322
-        $query_args = array(
323
-            'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
-            'is_geodir_loop' => true,
325
-            'gd_location'    => false,
326
-            'post_type'      => $params['post_type'],
327
-        );
328
-
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
-
332
-            ######### WPML #########
333
-            if ( function_exists( 'icl_object_id' ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
-            }
336
-            ######### WPML #########
337
-
338
-            $tax_query = array(
339
-                'taxonomy' => $category_taxonomy[0],
340
-                'field'    => 'id',
341
-                'terms'    => $params['category']
342
-            );
343
-
344
-            $query_args['tax_query'] = array( $tax_query );
345
-        }
346
-
347
-        $add_post_in_marker_array = true;
348
-
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
-            global $geodir_event_widget_listview;
351
-            $geodir_event_widget_listview = true;
352
-
353
-            $query_args['geodir_event_type'] = $params['event_type'];
354
-
355
-            $listings = geodir_event_get_widget_events( $query_args );
356
-
357
-            $geodir_event_widget_listview = false;
358
-        } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
360
-        }
361
-
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
365
-            }
366
-        }
367
-
368
-        ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
-
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
-
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
-
375
-        $default_location = geodir_get_default_location();
376
-
377
-        $map_args = array(
378
-            'map_canvas_name'          => 'gd_listing_map',
379
-            'width'                    => $params['width'],
380
-            'height'                   => $params['height'],
381
-            'zoom'                     => $params['zoom'],
382
-            'autozoom'                 => $params['autozoom'],
383
-            'sticky'                   => $params['sticky'],
384
-            'showall'                  => $params['showall'],
385
-            'scrollwheel'              => $params['scrollwheel'],
386
-            'maptype'                  => $params['maptype'],
387
-            'child_collapse'           => 0,
388
-            'enable_cat_filters'       => false,
389
-            'enable_text_search'       => false,
390
-            'enable_post_type_filters' => false,
391
-            'enable_location_filters'  => false,
392
-            'enable_jason_on_load'     => true,
393
-            'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
-            'streetViewControl'        => true,
397
-            'showPreview'              => '0',
398
-            'maxZoom'                  => 21,
399
-            'bubble_size'              => 'small',
400
-        );
401
-
402
-        if ( is_single() ) {
403
-            global $post;
404
-            if ( isset( $post->post_latitude ) ) {
405
-                $map_args['latitude']  = $post->post_latitude;
406
-                $map_args['longitude'] = $post->post_longitude;
407
-            }
408
-
409
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
-        } else {
411
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
412
-        }
413
-
414
-        // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
-            $map_args['enable_marker_cluster'] = true;
417
-        } else {
418
-            $map_args['enable_marker_cluster'] = false;
419
-        }
420
-
421
-        geodir_draw_map( $map_args );
422
-
423
-        $output = ob_get_contents();
424
-
425
-        ob_end_clean();
426
-
427
-        foreach ( $backup_globals as $global => $value ) {
428
-            ${$global} = $value;
429
-        }
430
-
431
-        return $output;
432
-    }else{
433
-        ob_start();
434
-        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
-        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
-        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
-        $defaults = array(
438
-            'width' => '294',
439
-            'height' => '370',
440
-            'zoom' => '13',
441
-            'autozoom' => '',
442
-            'sticky' => '',
443
-            'showall' => '0',
444
-            'scrollwheel' => '0',
445
-            'maptype' => 'ROADMAP',
446
-            'child_collapse' => 0,
447
-            'marker_cluster' => false
448
-        );
449
-        $params = shortcode_atts($defaults, $atts);
450
-        $params = gdsc_validate_map_args($params);
451
-        $map_args = array(
452
-            'map_canvas_name' => 'gd_listing_map',
453
-            'width' => $params['width'],
454
-            'height' => $params['height'],
455
-            'zoom' => $params['zoom'],
456
-            'autozoom' => $params['autozoom'],
457
-            'sticky' => $params['sticky'],
458
-            'showall' => $params['showall'],
459
-            'scrollwheel' => $params['scrollwheel'],
460
-            'child_collapse' => 0,
461
-            'enable_cat_filters' => false,
462
-            'enable_text_search' => false,
463
-            'enable_post_type_filters' => false,
464
-            'enable_location_filters' => false,
465
-            'enable_jason_on_load' => true,
466
-        );
467
-        if (is_single()) {
468
-            global $post;
469
-            $map_default_lat = $address_latitude = $post->post_latitude;
470
-            $map_default_lng = $address_longitude = $post->post_longitude;
471
-            $mapview = $post->post_mapview;
472
-            $map_args['zoom'] = $post->post_mapzoom;
473
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
-        } else {
475
-            $default_location = geodir_get_default_location();
476
-            $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
-            $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
479
-        }
480
-        if (empty($mapview)) {
481
-            $mapview = 'ROADMAP';
482
-        }
483
-        // Set default map options
484
-        $map_args['ajax_url'] = geodir_get_ajax_url();
485
-        $map_args['latitude'] = $map_default_lat;
486
-        $map_args['longitude'] = $map_default_lng;
487
-        $map_args['streetViewControl'] = true;
488
-        $map_args['maptype'] = $mapview;
489
-        $map_args['showPreview'] = '0';
490
-        $map_args['maxZoom'] = 21;
491
-        $map_args['bubble_size'] = 'small';
492
-
493
-        // Add marker cluster
494
-        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
-            $map_args['enable_marker_cluster'] = true;
496
-        } else {
497
-            $map_args['enable_marker_cluster'] = false;
498
-        }
499
-        geodir_draw_map($map_args);
500
-        $output = ob_get_contents();
501
-        ob_end_clean();
502
-        return $output;
503
-    }
267
+	// if some params are set then we need a new query, if not then we can use the main query
268
+	if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
+
270
+		global $add_post_in_marker_array, $gd_sc_map_params;
271
+		$backup_globals                             = array();
272
+		$backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
+		$backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
+
275
+		$defaults = array(
276
+			'width'          => '294',
277
+			'height'         => '370',
278
+			'zoom'           => '13',
279
+			'autozoom'       => '',
280
+			'sticky'         => '',
281
+			'showall'        => '0',
282
+			'scrollwheel'    => '0',
283
+			'maptype'        => 'ROADMAP',
284
+			'child_collapse' => 0,
285
+			'marker_cluster' => false,
286
+			'post_type'      => 'gd_place',
287
+			'category'       => '0',
288
+			'event_type'     => 'all'
289
+		);
290
+
291
+		$params = shortcode_atts( $defaults, $atts );
292
+
293
+		if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
+			$params['post_type'] = 'gd_place';
295
+		}
296
+
297
+		// Validate the selected category/ies - Grab the current list based on post_type
298
+		$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
+		$categories        = get_terms( $category_taxonomy, array(
300
+			'orderby' => 'count',
301
+			'order'   => 'DESC',
302
+			'fields'  => 'ids'
303
+		) );
304
+
305
+		// Make sure we have an array
306
+		if ( ! ( is_array( $params['category'] ) ) ) {
307
+			$params['category'] = explode( ',', $params['category'] );
308
+		}
309
+
310
+		// Array_intersect returns only the items in $params['category'] that are also in our category list
311
+		// Otherwise it becomes empty and later on that will mean "All"
312
+		$params['category'] = array_intersect( $params['category'], $categories );
313
+
314
+		if ( $params['post_type'] == 'gd_event' ) {
315
+			$params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
+		}
317
+
318
+		$params = gdsc_validate_map_args( $params );
319
+
320
+		$gd_sc_map_params = $params;
321
+
322
+		$query_args = array(
323
+			'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
+			'is_geodir_loop' => true,
325
+			'gd_location'    => false,
326
+			'post_type'      => $params['post_type'],
327
+		);
328
+
329
+		if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
+			$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
+
332
+			######### WPML #########
333
+			if ( function_exists( 'icl_object_id' ) ) {
334
+				$category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
+			}
336
+			######### WPML #########
337
+
338
+			$tax_query = array(
339
+				'taxonomy' => $category_taxonomy[0],
340
+				'field'    => 'id',
341
+				'terms'    => $params['category']
342
+			);
343
+
344
+			$query_args['tax_query'] = array( $tax_query );
345
+		}
346
+
347
+		$add_post_in_marker_array = true;
348
+
349
+		if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
+			global $geodir_event_widget_listview;
351
+			$geodir_event_widget_listview = true;
352
+
353
+			$query_args['geodir_event_type'] = $params['event_type'];
354
+
355
+			$listings = geodir_event_get_widget_events( $query_args );
356
+
357
+			$geodir_event_widget_listview = false;
358
+		} else {
359
+			$listings = geodir_get_widget_listings( $query_args );
360
+		}
361
+
362
+		if ( ! empty( $listings ) ) {
363
+			foreach ( $listings as $listing ) {
364
+				create_marker_jason_of_posts( $listing );
365
+			}
366
+		}
367
+
368
+		ob_start();
369
+		add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
+
371
+		add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
+
373
+		add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
+
375
+		$default_location = geodir_get_default_location();
376
+
377
+		$map_args = array(
378
+			'map_canvas_name'          => 'gd_listing_map',
379
+			'width'                    => $params['width'],
380
+			'height'                   => $params['height'],
381
+			'zoom'                     => $params['zoom'],
382
+			'autozoom'                 => $params['autozoom'],
383
+			'sticky'                   => $params['sticky'],
384
+			'showall'                  => $params['showall'],
385
+			'scrollwheel'              => $params['scrollwheel'],
386
+			'maptype'                  => $params['maptype'],
387
+			'child_collapse'           => 0,
388
+			'enable_cat_filters'       => false,
389
+			'enable_text_search'       => false,
390
+			'enable_post_type_filters' => false,
391
+			'enable_location_filters'  => false,
392
+			'enable_jason_on_load'     => true,
393
+			'ajax_url'                 => geodir_get_ajax_url(),
394
+			'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
+			'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
+			'streetViewControl'        => true,
397
+			'showPreview'              => '0',
398
+			'maxZoom'                  => 21,
399
+			'bubble_size'              => 'small',
400
+		);
401
+
402
+		if ( is_single() ) {
403
+			global $post;
404
+			if ( isset( $post->post_latitude ) ) {
405
+				$map_args['latitude']  = $post->post_latitude;
406
+				$map_args['longitude'] = $post->post_longitude;
407
+			}
408
+
409
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
+		} else {
411
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
412
+		}
413
+
414
+		// Add marker cluster
415
+		if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
+			$map_args['enable_marker_cluster'] = true;
417
+		} else {
418
+			$map_args['enable_marker_cluster'] = false;
419
+		}
420
+
421
+		geodir_draw_map( $map_args );
422
+
423
+		$output = ob_get_contents();
424
+
425
+		ob_end_clean();
426
+
427
+		foreach ( $backup_globals as $global => $value ) {
428
+			${$global} = $value;
429
+		}
430
+
431
+		return $output;
432
+	}else{
433
+		ob_start();
434
+		add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
+		add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
+		add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
+		$defaults = array(
438
+			'width' => '294',
439
+			'height' => '370',
440
+			'zoom' => '13',
441
+			'autozoom' => '',
442
+			'sticky' => '',
443
+			'showall' => '0',
444
+			'scrollwheel' => '0',
445
+			'maptype' => 'ROADMAP',
446
+			'child_collapse' => 0,
447
+			'marker_cluster' => false
448
+		);
449
+		$params = shortcode_atts($defaults, $atts);
450
+		$params = gdsc_validate_map_args($params);
451
+		$map_args = array(
452
+			'map_canvas_name' => 'gd_listing_map',
453
+			'width' => $params['width'],
454
+			'height' => $params['height'],
455
+			'zoom' => $params['zoom'],
456
+			'autozoom' => $params['autozoom'],
457
+			'sticky' => $params['sticky'],
458
+			'showall' => $params['showall'],
459
+			'scrollwheel' => $params['scrollwheel'],
460
+			'child_collapse' => 0,
461
+			'enable_cat_filters' => false,
462
+			'enable_text_search' => false,
463
+			'enable_post_type_filters' => false,
464
+			'enable_location_filters' => false,
465
+			'enable_jason_on_load' => true,
466
+		);
467
+		if (is_single()) {
468
+			global $post;
469
+			$map_default_lat = $address_latitude = $post->post_latitude;
470
+			$map_default_lng = $address_longitude = $post->post_longitude;
471
+			$mapview = $post->post_mapview;
472
+			$map_args['zoom'] = $post->post_mapzoom;
473
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
+		} else {
475
+			$default_location = geodir_get_default_location();
476
+			$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
+			$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
479
+		}
480
+		if (empty($mapview)) {
481
+			$mapview = 'ROADMAP';
482
+		}
483
+		// Set default map options
484
+		$map_args['ajax_url'] = geodir_get_ajax_url();
485
+		$map_args['latitude'] = $map_default_lat;
486
+		$map_args['longitude'] = $map_default_lng;
487
+		$map_args['streetViewControl'] = true;
488
+		$map_args['maptype'] = $mapview;
489
+		$map_args['showPreview'] = '0';
490
+		$map_args['maxZoom'] = 21;
491
+		$map_args['bubble_size'] = 'small';
492
+
493
+		// Add marker cluster
494
+		if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
+			$map_args['enable_marker_cluster'] = true;
496
+		} else {
497
+			$map_args['enable_marker_cluster'] = false;
498
+		}
499
+		geodir_draw_map($map_args);
500
+		$output = ob_get_contents();
501
+		ob_end_clean();
502
+		return $output;
503
+	}
504 504
 }
505 505
 
506 506
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -533,120 +533,120 @@  discard block
 block discarded – undo
533 533
  */
534 534
 function geodir_sc_listing_slider($atts)
535 535
 {
536
-    ob_start();
537
-    $defaults = array(
538
-        'post_type' => 'gd_place',
539
-        'category' => '0',
540
-        'post_number' => '5',
541
-        'slideshow' => '0',
542
-        'animation_loop' => 0,
543
-        'direction_nav' => 0,
544
-        'slideshow_speed' => 5000,
545
-        'animation_speed' => 600,
546
-        'animation' => 'slide',
547
-        'order_by' => 'latest',
548
-        'show_title' => '',
549
-        'show_featured_only' => '',
550
-        'title' => '',
551
-    );
552
-
553
-    $params = shortcode_atts($defaults, $atts);
554
-
555
-
556
-    /*
536
+	ob_start();
537
+	$defaults = array(
538
+		'post_type' => 'gd_place',
539
+		'category' => '0',
540
+		'post_number' => '5',
541
+		'slideshow' => '0',
542
+		'animation_loop' => 0,
543
+		'direction_nav' => 0,
544
+		'slideshow_speed' => 5000,
545
+		'animation_speed' => 600,
546
+		'animation' => 'slide',
547
+		'order_by' => 'latest',
548
+		'show_title' => '',
549
+		'show_featured_only' => '',
550
+		'title' => '',
551
+	);
552
+
553
+	$params = shortcode_atts($defaults, $atts);
554
+
555
+
556
+	/*
557 557
      *
558 558
      * Now we begin the validation of the attributes.
559 559
      */
560
-    // Check we have a valid post_type
561
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
-        $params['post_type'] = 'gd_place';
563
-    }
564
-
565
-    // Check we have a valid sort_order
566
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
-
568
-    // Match the chosen animation to our options
569
-    $animation_list = array('slide', 'fade');
570
-    if (!(in_array($params['animation'], $animation_list))) {
571
-        $params['animation'] = 'slide';
572
-    }
573
-
574
-    // Post_number needs to be a positive integer
575
-    $params['post_number'] = absint($params['post_number']);
576
-    if (0 == $params['post_number']) {
577
-        $params['post_number'] = 1;
578
-    }
579
-
580
-    // Manage the entered categories
581
-    if (0 != $params['category'] || '' != $params['category']) {
582
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
-    }
584
-    // Convert show_title to a bool
585
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
-
587
-    // Convert show_featured_only to a bool
588
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
-
590
-    /*
560
+	// Check we have a valid post_type
561
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
+		$params['post_type'] = 'gd_place';
563
+	}
564
+
565
+	// Check we have a valid sort_order
566
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
+
568
+	// Match the chosen animation to our options
569
+	$animation_list = array('slide', 'fade');
570
+	if (!(in_array($params['animation'], $animation_list))) {
571
+		$params['animation'] = 'slide';
572
+	}
573
+
574
+	// Post_number needs to be a positive integer
575
+	$params['post_number'] = absint($params['post_number']);
576
+	if (0 == $params['post_number']) {
577
+		$params['post_number'] = 1;
578
+	}
579
+
580
+	// Manage the entered categories
581
+	if (0 != $params['category'] || '' != $params['category']) {
582
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
+	}
584
+	// Convert show_title to a bool
585
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
+
587
+	// Convert show_featured_only to a bool
588
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
+
590
+	/*
591 591
      * Hopefully all attributes are now valid, and safe to pass forward
592 592
      */
593 593
 
594
-    // redeclare vars after validation
595
-
596
-    if (isset($params['direction_nav'])) {
597
-        $params['directionNav'] = $params['direction_nav'];
598
-    }
599
-    if (isset($params['animation_loop'])) {
600
-        $params['animationLoop'] = $params['animation_loop'];
601
-    }
602
-    if (isset($params['slideshow_speed'])) {
603
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
604
-    }
605
-    if (isset($params['animation_speed'])) {
606
-        $params['animationSpeed'] = $params['animation_speed'];
607
-    }
608
-    if (isset($params['order_by'])) {
609
-        $params['list_sort'] = $params['order_by'];
610
-    }
611
-
612
-    $query_args = array(
613
-        'post_number' => $params['post_number'],
614
-        'is_geodir_loop' => true,
615
-        'post_type' => $params['post_type'],
616
-        'order_by' => $params['order_by']
617
-    );
618
-
619
-    if (1 == $params['show_featured_only']) {
620
-        $query_args['show_featured_only'] = 1;
621
-    }
622
-
623
-    if (0 != $params['category'] && '' != $params['category']) {
624
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
-        $tax_query = array(
626
-            'taxonomy' => $category_taxonomy[0],
627
-            'field' => 'id',
628
-            'terms' => $params['category'],
629
-        );
630
-
631
-        $query_args['tax_query'] = array($tax_query);
632
-    }
633
-
634
-    $defaults = array(
635
-        'before_widget' => '',
636
-        'after_widget' => '',
637
-        'before_title' => '',
638
-        'after_title' => '',
639
-    );
640
-
641
-    $query_args = array_merge($query_args, $params);
642
-
643
-    geodir_listing_slider_widget_output($defaults, $query_args);
644
-
645
-    $output = ob_get_contents();
646
-
647
-    ob_end_clean();
648
-
649
-    return $output;
594
+	// redeclare vars after validation
595
+
596
+	if (isset($params['direction_nav'])) {
597
+		$params['directionNav'] = $params['direction_nav'];
598
+	}
599
+	if (isset($params['animation_loop'])) {
600
+		$params['animationLoop'] = $params['animation_loop'];
601
+	}
602
+	if (isset($params['slideshow_speed'])) {
603
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
604
+	}
605
+	if (isset($params['animation_speed'])) {
606
+		$params['animationSpeed'] = $params['animation_speed'];
607
+	}
608
+	if (isset($params['order_by'])) {
609
+		$params['list_sort'] = $params['order_by'];
610
+	}
611
+
612
+	$query_args = array(
613
+		'post_number' => $params['post_number'],
614
+		'is_geodir_loop' => true,
615
+		'post_type' => $params['post_type'],
616
+		'order_by' => $params['order_by']
617
+	);
618
+
619
+	if (1 == $params['show_featured_only']) {
620
+		$query_args['show_featured_only'] = 1;
621
+	}
622
+
623
+	if (0 != $params['category'] && '' != $params['category']) {
624
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
+		$tax_query = array(
626
+			'taxonomy' => $category_taxonomy[0],
627
+			'field' => 'id',
628
+			'terms' => $params['category'],
629
+		);
630
+
631
+		$query_args['tax_query'] = array($tax_query);
632
+	}
633
+
634
+	$defaults = array(
635
+		'before_widget' => '',
636
+		'after_widget' => '',
637
+		'before_title' => '',
638
+		'after_title' => '',
639
+	);
640
+
641
+	$query_args = array_merge($query_args, $params);
642
+
643
+	geodir_listing_slider_widget_output($defaults, $query_args);
644
+
645
+	$output = ob_get_contents();
646
+
647
+	ob_end_clean();
648
+
649
+	return $output;
650 650
 }
651 651
 
652 652
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -670,22 +670,22 @@  discard block
 block discarded – undo
670 670
  */
671 671
 function geodir_sc_login_box($atts)
672 672
 {
673
-    ob_start();
673
+	ob_start();
674 674
 
675
-    $defaults = array(
676
-        'before_widget' => '',
677
-        'after_widget' => '',
678
-        'before_title' => '',
679
-        'after_title' => '',
680
-    );
675
+	$defaults = array(
676
+		'before_widget' => '',
677
+		'after_widget' => '',
678
+		'before_title' => '',
679
+		'after_title' => '',
680
+	);
681 681
 
682
-    geodir_loginwidget_output($defaults, $defaults);
682
+	geodir_loginwidget_output($defaults, $defaults);
683 683
 
684
-    $output = ob_get_contents();
684
+	$output = ob_get_contents();
685 685
 
686
-    ob_end_clean();
686
+	ob_end_clean();
687 687
 
688
-    return $output;
688
+	return $output;
689 689
 }
690 690
 
691 691
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -716,31 +716,31 @@  discard block
 block discarded – undo
716 716
  */
717 717
 function geodir_sc_popular_post_category($atts)
718 718
 {
719
-    ob_start();
720
-    global $geodir_post_category_str;
721
-    $defaults = array(
722
-        'category_limit' => 15,
723
-        'category_restrict' => false,
724
-        'before_widget' => '',
725
-        'after_widget' => '',
726
-        'before_title' => '',
727
-        'after_title' => '',
728
-        'title' => '',
729
-        'default_post_type' => '',
730
-        'parent_only' => false,
731
-    );
732
-
733
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
-    $params['category_limit'] = absint($params['category_limit']);
735
-    $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
-    $params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
-    geodir_popular_post_category_output($params, $params);
738
-
739
-    $output = ob_get_contents();
740
-
741
-    ob_end_clean();
742
-
743
-    return $output;
719
+	ob_start();
720
+	global $geodir_post_category_str;
721
+	$defaults = array(
722
+		'category_limit' => 15,
723
+		'category_restrict' => false,
724
+		'before_widget' => '',
725
+		'after_widget' => '',
726
+		'before_title' => '',
727
+		'after_title' => '',
728
+		'title' => '',
729
+		'default_post_type' => '',
730
+		'parent_only' => false,
731
+	);
732
+
733
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
+	$params['category_limit'] = absint($params['category_limit']);
735
+	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
+	$params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
+	geodir_popular_post_category_output($params, $params);
738
+
739
+	$output = ob_get_contents();
740
+
741
+	ob_end_clean();
742
+
743
+	return $output;
744 744
 }
745 745
 
746 746
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -780,97 +780,97 @@  discard block
 block discarded – undo
780 780
  */
781 781
 function geodir_sc_popular_post_view($atts)
782 782
 {
783
-    ob_start();
784
-    $defaults = array(
785
-        'post_type' => 'gd_place',
786
-        'category' => '0',
787
-        'post_number' => '5',
788
-        'layout' => 'gridview_onehalf',
789
-        'add_location_filter' => '0',
790
-        'list_sort' => 'latest',
791
-        'use_viewing_post_type' => '1',
792
-        'character_count' => '20',
793
-        'listing_width' => '',
794
-        'show_featured_only' => '0',
795
-        'show_special_only' => '0',
796
-        'with_pics_only' => '0',
797
-        'with_videos_only' => '0',
798
-        'before_widget' => '',
799
-        'after_widget' => '',
800
-        'before_title' => '<h3 class="widget-title">',
801
-        'after_title' => '</h3>',
802
-        'title' => '',
803
-        'category_title' => '',
804
-    );
805
-
806
-    $params = shortcode_atts($defaults, $atts);
807
-
808
-    /**
809
-     * Validate our incoming params
810
-     */
783
+	ob_start();
784
+	$defaults = array(
785
+		'post_type' => 'gd_place',
786
+		'category' => '0',
787
+		'post_number' => '5',
788
+		'layout' => 'gridview_onehalf',
789
+		'add_location_filter' => '0',
790
+		'list_sort' => 'latest',
791
+		'use_viewing_post_type' => '1',
792
+		'character_count' => '20',
793
+		'listing_width' => '',
794
+		'show_featured_only' => '0',
795
+		'show_special_only' => '0',
796
+		'with_pics_only' => '0',
797
+		'with_videos_only' => '0',
798
+		'before_widget' => '',
799
+		'after_widget' => '',
800
+		'before_title' => '<h3 class="widget-title">',
801
+		'after_title' => '</h3>',
802
+		'title' => '',
803
+		'category_title' => '',
804
+	);
811 805
 
812
-    // Validate the selected post type, default to gd_place on fail
813
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
814
-        $params['post_type'] = 'gd_place';
815
-    }
816
-
817
-    // Validate the selected category/ies - Grab the current list based on post_type
818
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
819
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
820
-
821
-    // Make sure we have an array
822
-    if (!(is_array($params['category']))) {
823
-        $params['category'] = explode(',', $params['category']);
824
-    }
825
-
826
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
827
-    // Otherwise it becomes empty and later on that will mean "All"
828
-    $params['category'] = array_intersect($params['category'], $categories);
829
-
830
-    // Post_number needs to be a positive integer
831
-    $params['post_number'] = absint($params['post_number']);
832
-    if (0 == $params['post_number']) {
833
-        $params['post_number'] = 1;
834
-    }
835
-
836
-    // Validate our layout choice
837
-    // Outside of the norm, I added some more simple terms to match the existing
838
-    // So now I just run the switch to set it properly.
839
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
840
-
841
-    // Validate our sorting choice
842
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
843
-
844
-    // Validate character_count
845
-    $params['character_count'] = absint($params['character_count']);
846
-    if (20 > $params['character_count']) {
847
-        $params['character_count'] = 20;
848
-    }
849
-
850
-    // Validate Listing width, used in the template widget-listing-listview.php
851
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
852
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
853
-
854
-    // Validate the checkboxes used on the widget
855
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
856
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
857
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
858
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
859
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
860
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
861
-
862
-    /**
863
-     * End of validation
864
-     */
806
+	$params = shortcode_atts($defaults, $atts);
807
+
808
+	/**
809
+	 * Validate our incoming params
810
+	 */
865 811
 
866
-    geodir_popular_postview_output($params, $params);
812
+	// Validate the selected post type, default to gd_place on fail
813
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
814
+		$params['post_type'] = 'gd_place';
815
+	}
867 816
 
817
+	// Validate the selected category/ies - Grab the current list based on post_type
818
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
819
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
868 820
 
869
-    $output = ob_get_contents();
821
+	// Make sure we have an array
822
+	if (!(is_array($params['category']))) {
823
+		$params['category'] = explode(',', $params['category']);
824
+	}
870 825
 
871
-    ob_end_clean();
826
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
827
+	// Otherwise it becomes empty and later on that will mean "All"
828
+	$params['category'] = array_intersect($params['category'], $categories);
872 829
 
873
-    return $output;
830
+	// Post_number needs to be a positive integer
831
+	$params['post_number'] = absint($params['post_number']);
832
+	if (0 == $params['post_number']) {
833
+		$params['post_number'] = 1;
834
+	}
835
+
836
+	// Validate our layout choice
837
+	// Outside of the norm, I added some more simple terms to match the existing
838
+	// So now I just run the switch to set it properly.
839
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
840
+
841
+	// Validate our sorting choice
842
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
843
+
844
+	// Validate character_count
845
+	$params['character_count'] = absint($params['character_count']);
846
+	if (20 > $params['character_count']) {
847
+		$params['character_count'] = 20;
848
+	}
849
+
850
+	// Validate Listing width, used in the template widget-listing-listview.php
851
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
852
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
853
+
854
+	// Validate the checkboxes used on the widget
855
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
856
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
857
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
858
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
859
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
860
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
861
+
862
+	/**
863
+	 * End of validation
864
+	 */
865
+
866
+	geodir_popular_postview_output($params, $params);
867
+
868
+
869
+	$output = ob_get_contents();
870
+
871
+	ob_end_clean();
872
+
873
+	return $output;
874 874
 }
875 875
 
876 876
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -892,37 +892,37 @@  discard block
 block discarded – undo
892 892
  * @return string Recent reviews HTML.
893 893
  */
894 894
 function geodir_sc_recent_reviews($atts) {
895
-    ob_start();
896
-    $defaults = array(
895
+	ob_start();
896
+	$defaults = array(
897 897
 		'title' => '',
898 898
 		'count' => 5,
899
-    );
899
+	);
900 900
 
901
-    $params = shortcode_atts($defaults, $atts);
901
+	$params = shortcode_atts($defaults, $atts);
902 902
 
903
-    $count = absint($params['count']);
904
-    if (0 == $count) {
905
-        $count = 1;
906
-    }
903
+	$count = absint($params['count']);
904
+	if (0 == $count) {
905
+		$count = 1;
906
+	}
907 907
 	
908 908
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
909 909
 
910
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
910
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
911 911
 
912
-    if ($comments_li) {
913
-        if ($title != '') { ?>
912
+	if ($comments_li) {
913
+		if ($title != '') { ?>
914 914
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
915 915
 		<?php } ?>
916 916
         <div class="geodir_sc_recent_reviews_section">
917 917
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
918 918
         </div>
919 919
     <?php
920
-    }
921
-    $output = ob_get_contents();
920
+	}
921
+	$output = ob_get_contents();
922 922
 
923
-    ob_end_clean();
923
+	ob_end_clean();
924 924
 
925
-    return $output;
925
+	return $output;
926 926
 }
927 927
 
928 928
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -952,64 +952,64 @@  discard block
 block discarded – undo
952 952
  */
953 953
 function geodir_sc_related_listings($atts)
954 954
 {
955
-    ob_start();
956
-    $defaults = array(
957
-        'post_number' => 5,
958
-        'relate_to' => 'category',
959
-        'layout' => 'gridview_onehalf',
960
-        'add_location_filter' => 0,
961
-        'listing_width' => '',
962
-        'list_sort' => 'latest',
963
-        'character_count' => 20,
964
-        'is_widget' => 1,
965
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
966
-    );
967
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
968
-
969
-    $params = shortcode_atts($defaults, $atts);
970
-
971
-    /**
972
-     * Begin validating parameters
973
-     */
955
+	ob_start();
956
+	$defaults = array(
957
+		'post_number' => 5,
958
+		'relate_to' => 'category',
959
+		'layout' => 'gridview_onehalf',
960
+		'add_location_filter' => 0,
961
+		'listing_width' => '',
962
+		'list_sort' => 'latest',
963
+		'character_count' => 20,
964
+		'is_widget' => 1,
965
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
966
+	);
967
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
974 968
 
975
-    // Validate that post_number is a number and is 1 or higher
976
-    $params['post_number'] = absint($params['post_number']);
977
-    if (0 === $params['post_number']) {
978
-        $params['post_number'] = 1;
979
-    }
969
+	$params = shortcode_atts($defaults, $atts);
980 970
 
981
-    // Validate relate_to - only category or tags
982
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
983
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
984
-        $params['relate_to'] = 'category';
985
-    }
971
+	/**
972
+	 * Begin validating parameters
973
+	 */
986 974
 
987
-    // Validate layout selection
988
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
975
+	// Validate that post_number is a number and is 1 or higher
976
+	$params['post_number'] = absint($params['post_number']);
977
+	if (0 === $params['post_number']) {
978
+		$params['post_number'] = 1;
979
+	}
989 980
 
990
-    // Validate sorting option
991
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
981
+	// Validate relate_to - only category or tags
982
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
983
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
984
+		$params['relate_to'] = 'category';
985
+	}
992 986
 
993
-    // Validate add_location_filter
994
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
987
+	// Validate layout selection
988
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
995 989
 
996
-    // Validate listing_width
997
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
990
+	// Validate sorting option
991
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
998 992
 
999
-    // Validate character_count
1000
-    $params['character_count'] = absint($params['character_count']);
1001
-    if (20 > $params['character_count']) {
1002
-        $params['character_count'] = 20;
1003
-    }
993
+	// Validate add_location_filter
994
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
1004 995
 
1005
-    if ($related_display = geodir_related_posts_display($params)) {
1006
-        echo $related_display;
1007
-    }
1008
-    $output = ob_get_contents();
996
+	// Validate listing_width
997
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1009 998
 
1010
-    ob_end_clean();
999
+	// Validate character_count
1000
+	$params['character_count'] = absint($params['character_count']);
1001
+	if (20 > $params['character_count']) {
1002
+		$params['character_count'] = 20;
1003
+	}
1011 1004
 
1012
-    return $output;
1005
+	if ($related_display = geodir_related_posts_display($params)) {
1006
+		echo $related_display;
1007
+	}
1008
+	$output = ob_get_contents();
1009
+
1010
+	ob_end_clean();
1011
+
1012
+	return $output;
1013 1013
 }
1014 1014
 
1015 1015
 /**
@@ -1033,13 +1033,13 @@  discard block
 block discarded – undo
1033 1033
  * @return string Advanced search widget HTML.
1034 1034
  */
1035 1035
 function geodir_sc_advanced_search($atts) {
1036
-    $defaults = array(
1036
+	$defaults = array(
1037 1037
 		'title' => '',
1038 1038
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
1039
-        'after_widget' => '</section>',
1040
-        'before_title' => '<h3 class="widget-title">',
1041
-        'after_title' => '</h3>',
1042
-        'show_adv_search' => 'default',
1039
+		'after_widget' => '</section>',
1040
+		'before_title' => '<h3 class="widget-title">',
1041
+		'after_title' => '</h3>',
1042
+		'show_adv_search' => 'default',
1043 1043
 		'post_type' => ''
1044 1044
 	);
1045 1045
 	
@@ -1063,9 +1063,9 @@  discard block
 block discarded – undo
1063 1063
 	the_widget('geodir_advance_search_widget', $params, $params );
1064 1064
 	
1065 1065
 	$output = ob_get_contents();
1066
-    ob_end_clean();
1066
+	ob_end_clean();
1067 1067
 
1068
-    return $output;
1068
+	return $output;
1069 1069
 }
1070 1070
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
1071 1071
 
@@ -1111,48 +1111,48 @@  discard block
 block discarded – undo
1111 1111
 		'add_location_filter' => '1',
1112 1112
 		'tab_layout' => 'bestof-tabs-on-top',
1113 1113
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
1114
-        'after_widget' => '</section>',
1115
-        'before_title' => '<h3 class="widget-title">',
1116
-        'after_title' => '</h3>',
1114
+		'after_widget' => '</section>',
1115
+		'before_title' => '<h3 class="widget-title">',
1116
+		'after_title' => '</h3>',
1117 1117
 	);
1118 1118
 	$params = shortcode_atts($defaults, $atts);
1119 1119
 
1120
-    /**
1121
-     * Validate our incoming params
1122
-     */
1120
+	/**
1121
+	 * Validate our incoming params
1122
+	 */
1123 1123
 
1124
-    // Validate the selected post type, default to gd_place on fail
1125
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
1126
-        $params['post_type'] = 'gd_place';
1127
-    }
1124
+	// Validate the selected post type, default to gd_place on fail
1125
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
1126
+		$params['post_type'] = 'gd_place';
1127
+	}
1128 1128
 	
1129 1129
 	// Post limit needs to be a positive integer
1130
-    $params['post_limit'] = absint($params['post_limit']);
1131
-    if (0 == $params['post_limit']) {
1132
-        $params['post_limit'] = 5;
1133
-    }
1130
+	$params['post_limit'] = absint($params['post_limit']);
1131
+	if (0 == $params['post_limit']) {
1132
+		$params['post_limit'] = 5;
1133
+	}
1134 1134
 	
1135 1135
 	// Category limit needs to be a positive integer
1136
-    $params['categ_limit'] = absint($params['categ_limit']);
1137
-    if (0 == $params['categ_limit']) {
1138
-        $params['categ_limit'] = 3;
1139
-    }
1136
+	$params['categ_limit'] = absint($params['categ_limit']);
1137
+	if (0 == $params['categ_limit']) {
1138
+		$params['categ_limit'] = 3;
1139
+	}
1140 1140
 	
1141 1141
 	// Tab layout validation
1142
-    $params['tab_layout'] = $params['tab_layout'];
1143
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1144
-        $params['tab_layout'] = 'bestof-tabs-on-top';
1145
-    }
1142
+	$params['tab_layout'] = $params['tab_layout'];
1143
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1144
+		$params['tab_layout'] = 'bestof-tabs-on-top';
1145
+	}
1146 1146
 	
1147 1147
 	// Validate character_count
1148
-    $params['character_count'] = $params['character_count'];
1148
+	$params['character_count'] = $params['character_count'];
1149 1149
 
1150 1150
 	ob_start();
1151 1151
 	the_widget('geodir_bestof_widget', $params, $params);
1152
-    $output = ob_get_contents();
1153
-    ob_end_clean();
1152
+	$output = ob_get_contents();
1153
+	ob_end_clean();
1154 1154
 
1155
-    return $output;
1155
+	return $output;
1156 1156
 }
1157 1157
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1158 1158
 
@@ -1200,127 +1200,127 @@  discard block
 block discarded – undo
1200 1200
  * @return string HTML content to display geodirectory listings.
1201 1201
  */
1202 1202
 function geodir_sc_gd_listings($atts, $content = '') {
1203
-    global $post;
1204
-    $defaults = array(
1205
-        'title'                 => '',
1206
-        'post_type'             => 'gd_place',
1207
-        'category'              => 0,
1208
-        'list_sort'             => 'latest',
1209
-        'event_type'            => '',
1210
-        'post_number'           => 10,
1211
-        'post_author'           => '',
1212
-        'layout'                => 'gridview_onehalf',
1213
-        'listing_width'         => '',
1214
-        'character_count'       => 20,
1215
-        'add_location_filter'   => 1,
1216
-        'show_featured_only'    => '',
1217
-        'show_special_only'     => '',
1218
-        'with_pics_only'        => '',
1219
-        'with_videos_only'      => '',
1220
-        'with_pagination'       => '1',
1221
-        'top_pagination'        => '0',
1222
-        'bottom_pagination'     => '1',
1223
-        'without_no_results'    => 0,
1224
-        'tags'                  => ''
1225
-    );
1226
-    $params = shortcode_atts($defaults, $atts);
1227
-
1228
-    $params['title']        = wp_strip_all_tags($params['title']);
1229
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1230
-
1231
-    // Validate the selected category/ies - Grab the current list based on post_type
1232
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1233
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1234
-
1235
-    // Make sure we have an array
1236
-    if (!(is_array($params['category']))) {
1237
-        $params['category'] = explode(',', $params['category']);
1238
-    }
1239
-
1240
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1241
-    // Otherwise it becomes empty and later on that will mean "All"
1242
-    $params['category']     = array_intersect($params['category'], $categories);
1243
-
1244
-    // Post_number needs to be a positive integer
1245
-    $params['post_number']  = absint($params['post_number']);
1246
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1203
+	global $post;
1204
+	$defaults = array(
1205
+		'title'                 => '',
1206
+		'post_type'             => 'gd_place',
1207
+		'category'              => 0,
1208
+		'list_sort'             => 'latest',
1209
+		'event_type'            => '',
1210
+		'post_number'           => 10,
1211
+		'post_author'           => '',
1212
+		'layout'                => 'gridview_onehalf',
1213
+		'listing_width'         => '',
1214
+		'character_count'       => 20,
1215
+		'add_location_filter'   => 1,
1216
+		'show_featured_only'    => '',
1217
+		'show_special_only'     => '',
1218
+		'with_pics_only'        => '',
1219
+		'with_videos_only'      => '',
1220
+		'with_pagination'       => '1',
1221
+		'top_pagination'        => '0',
1222
+		'bottom_pagination'     => '1',
1223
+		'without_no_results'    => 0,
1224
+		'tags'                  => ''
1225
+	);
1226
+	$params = shortcode_atts($defaults, $atts);
1227
+
1228
+	$params['title']        = wp_strip_all_tags($params['title']);
1229
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1230
+
1231
+	// Validate the selected category/ies - Grab the current list based on post_type
1232
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1233
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
1234
+
1235
+	// Make sure we have an array
1236
+	if (!(is_array($params['category']))) {
1237
+		$params['category'] = explode(',', $params['category']);
1238
+	}
1239
+
1240
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1241
+	// Otherwise it becomes empty and later on that will mean "All"
1242
+	$params['category']     = array_intersect($params['category'], $categories);
1243
+
1244
+	// Post_number needs to be a positive integer
1245
+	$params['post_number']  = absint($params['post_number']);
1246
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1247 1247
     
1248
-    // Post_number needs to be a positive integer
1249
-    if (!empty($atts['post_author'])) {
1250
-        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1251
-            $params['post_author'] = $post->post_author;
1252
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1253
-            $params['post_author'] = absint($atts['post_author']);
1254
-        } else {
1255
-            unset($params['post_author']);
1256
-        }
1257
-    } else {
1258
-        unset($params['post_author']);
1259
-    }
1260
-
1261
-    // Validate character_count
1262
-    //todo: is this necessary?
1263
-    $params['character_count']  = $params['character_count'];
1264
-
1265
-    // Validate our layout choice
1266
-    // Outside of the norm, I added some more simple terms to match the existing
1267
-    // So now I just run the switch to set it properly.
1268
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1269
-
1270
-    // Validate our sorting choice
1271
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1272
-
1273
-    // Validate Listing width, used in the template widget-listing-listview.php
1274
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1275
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1276
-
1277
-    // Validate the checkboxes used on the widget
1278
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1279
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1280
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1281
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1282
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1283
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1284
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1285
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1286
-
1287
-    // Clean tags
1288
-    if (!empty($params['tags'])) {
1289
-        if (!is_array($params['tags'])) {
1290
-            $comma = _x(',', 'tag delimiter');
1291
-            if ( ',' !== $comma ) {
1292
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1293
-            }
1294
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1295
-            $params['tags'] = array_map('trim', $params['tags']);
1296
-        }
1297
-    } else {
1298
-        $params['tags'] = array();
1299
-    }
1300
-
1301
-    /**
1302
-     * End of validation
1303
-     */
1304
-    if (isset($atts['geodir_ajax'])) {
1305
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1306
-        unset($atts['geodir_ajax']);
1307
-    }
1308
-    if (isset($atts['pageno'])) {
1309
-        $params['pageno'] = $atts['pageno'];
1310
-        unset($atts['pageno']);
1311
-    }
1312
-
1313
-    if ( !empty($atts['shortcode_content']) ) {
1314
-        $content = $atts['shortcode_content'];
1315
-    }
1316
-    $params['shortcode_content'] = trim($content);
1317
-    $atts['shortcode_content'] = trim($content);
1248
+	// Post_number needs to be a positive integer
1249
+	if (!empty($atts['post_author'])) {
1250
+		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1251
+			$params['post_author'] = $post->post_author;
1252
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1253
+			$params['post_author'] = absint($atts['post_author']);
1254
+		} else {
1255
+			unset($params['post_author']);
1256
+		}
1257
+	} else {
1258
+		unset($params['post_author']);
1259
+	}
1260
+
1261
+	// Validate character_count
1262
+	//todo: is this necessary?
1263
+	$params['character_count']  = $params['character_count'];
1264
+
1265
+	// Validate our layout choice
1266
+	// Outside of the norm, I added some more simple terms to match the existing
1267
+	// So now I just run the switch to set it properly.
1268
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1269
+
1270
+	// Validate our sorting choice
1271
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort']);
1272
+
1273
+	// Validate Listing width, used in the template widget-listing-listview.php
1274
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1275
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1276
+
1277
+	// Validate the checkboxes used on the widget
1278
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1279
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1280
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1281
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1282
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1283
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1284
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1285
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1286
+
1287
+	// Clean tags
1288
+	if (!empty($params['tags'])) {
1289
+		if (!is_array($params['tags'])) {
1290
+			$comma = _x(',', 'tag delimiter');
1291
+			if ( ',' !== $comma ) {
1292
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1293
+			}
1294
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1295
+			$params['tags'] = array_map('trim', $params['tags']);
1296
+		}
1297
+	} else {
1298
+		$params['tags'] = array();
1299
+	}
1300
+
1301
+	/**
1302
+	 * End of validation
1303
+	 */
1304
+	if (isset($atts['geodir_ajax'])) {
1305
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1306
+		unset($atts['geodir_ajax']);
1307
+	}
1308
+	if (isset($atts['pageno'])) {
1309
+		$params['pageno'] = $atts['pageno'];
1310
+		unset($atts['pageno']);
1311
+	}
1312
+
1313
+	if ( !empty($atts['shortcode_content']) ) {
1314
+		$content = $atts['shortcode_content'];
1315
+	}
1316
+	$params['shortcode_content'] = trim($content);
1317
+	$atts['shortcode_content'] = trim($content);
1318 1318
     
1319
-    $params['shortcode_atts']       = $atts;
1319
+	$params['shortcode_atts']       = $atts;
1320 1320
 
1321
-    $output = geodir_sc_gd_listings_output($params);
1321
+	$output = geodir_sc_gd_listings_output($params);
1322 1322
 
1323
-    return $output;
1323
+	return $output;
1324 1324
 }
1325 1325
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1326 1326
 
@@ -1360,56 +1360,56 @@  discard block
 block discarded – undo
1360 1360
  * @return string HTML content to display CPT categories.
1361 1361
  */
1362 1362
 function geodir_sc_cpt_categories_widget($atts, $content = '') {
1363
-    $defaults = array(
1364
-        'title' => '',
1365
-        'post_type' => '', // NULL for all
1366
-        'hide_empty' => '',
1367
-        'show_count' => '',
1368
-        'hide_icon' => '',
1369
-        'cpt_left' => '',
1370
-        'sort_by' => 'count',
1371
-        'max_count' => 'all',
1372
-        'max_level' => '1',
1373
-        'no_cpt_filter' => '',
1374
-        'no_cat_filter' => '',
1375
-        'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1376
-        'after_widget' => '</section>',
1377
-        'before_title' => '<h3 class="widget-title">',
1378
-        'after_title' => '</h3>',
1379
-    );
1380
-    $params = shortcode_atts($defaults, $atts);
1381
-
1382
-    /**
1383
-     * Validate our incoming params
1384
-     */
1385
-    // Make sure we have an array
1386
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1387
-     
1388
-    // Validate the checkboxes used on the widget
1389
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1390
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1391
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1392
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1363
+	$defaults = array(
1364
+		'title' => '',
1365
+		'post_type' => '', // NULL for all
1366
+		'hide_empty' => '',
1367
+		'show_count' => '',
1368
+		'hide_icon' => '',
1369
+		'cpt_left' => '',
1370
+		'sort_by' => 'count',
1371
+		'max_count' => 'all',
1372
+		'max_level' => '1',
1373
+		'no_cpt_filter' => '',
1374
+		'no_cat_filter' => '',
1375
+		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1376
+		'after_widget' => '</section>',
1377
+		'before_title' => '<h3 class="widget-title">',
1378
+		'after_title' => '</h3>',
1379
+	);
1380
+	$params = shortcode_atts($defaults, $atts);
1393 1381
 
1394
-    if ($params['max_count'] != 'all') {
1395
-        $params['max_count'] = absint($params['max_count']);
1396
-    }
1382
+	/**
1383
+	 * Validate our incoming params
1384
+	 */
1385
+	// Make sure we have an array
1386
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1387
+     
1388
+	// Validate the checkboxes used on the widget
1389
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1390
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1391
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1392
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1393
+
1394
+	if ($params['max_count'] != 'all') {
1395
+		$params['max_count'] = absint($params['max_count']);
1396
+	}
1397 1397
 
1398
-    if ($params['max_level'] != 'all') {
1399
-        $params['max_level'] = absint($params['max_level']);
1400
-    }
1398
+	if ($params['max_level'] != 'all') {
1399
+		$params['max_level'] = absint($params['max_level']);
1400
+	}
1401 1401
 
1402
-    $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1403
-    $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1402
+	$params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1403
+	$params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1404 1404
 
1405
-    $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1405
+	$params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1406 1406
 
1407
-    ob_start();
1408
-    the_widget('geodir_cpt_categories_widget', $params, $params);
1409
-    $output = ob_get_contents();
1410
-    ob_end_clean();
1407
+	ob_start();
1408
+	the_widget('geodir_cpt_categories_widget', $params, $params);
1409
+	$output = ob_get_contents();
1410
+	ob_end_clean();
1411 1411
 
1412
-    return $output;
1412
+	return $output;
1413 1413
 }
1414 1414
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1415 1415
 
@@ -1424,6 +1424,6 @@  discard block
 block discarded – undo
1424 1424
  * @return string HTML code.
1425 1425
  */
1426 1426
 function geodir_sc_responsive_videos($atts, $content) {
1427
-    return '<div class="geodir-video-wrapper">'.$content.'</div>';
1427
+	return '<div class="geodir-video-wrapper">'.$content.'</div>';
1428 1428
 }
1429 1429
 add_shortcode('gd_video', 'geodir_sc_responsive_videos');
1430 1430
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -197,14 +197,14 @@  discard block
 block discarded – undo
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199 199
         $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
200
+        if (get_option('geodir_marker_cluster_type')) {
201 201
             if ($map_args['autozoom']) {
202 202
                 $map_args['enable_marker_cluster_no_reposition'] = false;
203 203
             } else {
204 204
                 $map_args['enable_marker_cluster_no_reposition'] = true;
205 205
             }
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+            $map_args['enable_marker_cluster_server'] = true;
208 208
 
209 209
         }
210 210
 	} else {
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 	}
213 213
 
214 214
     // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
215
+    if (!empty($params['latitude']) && !empty($params['longitude'])) {
216 216
         $map_args['enable_marker_cluster_no_reposition'] = true;
217 217
     }
218 218
 
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267 267
     // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
268
+    if (isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type'])) {
269 269
 
270 270
         global $add_post_in_marker_array, $gd_sc_map_params;
271 271
         $backup_globals                             = array();
@@ -288,34 +288,34 @@  discard block
 block discarded – undo
288 288
             'event_type'     => 'all'
289 289
         );
290 290
 
291
-        $params = shortcode_atts( $defaults, $atts );
291
+        $params = shortcode_atts($defaults, $atts);
292 292
 
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
293
+        if (!(gdsc_is_post_type_valid($params['post_type']))) {
294 294
             $params['post_type'] = 'gd_place';
295 295
         }
296 296
 
297 297
         // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
298
+        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
299
+        $categories        = get_terms($category_taxonomy, array(
300 300
             'orderby' => 'count',
301 301
             'order'   => 'DESC',
302 302
             'fields'  => 'ids'
303
-        ) );
303
+        ));
304 304
 
305 305
         // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
306
+        if (!(is_array($params['category']))) {
307
+            $params['category'] = explode(',', $params['category']);
308 308
         }
309 309
 
310 310
         // Array_intersect returns only the items in $params['category'] that are also in our category list
311 311
         // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
312
+        $params['category'] = array_intersect($params['category'], $categories);
313 313
 
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
314
+        if ($params['post_type'] == 'gd_event') {
315
+            $params['event_type'] = gdsc_validate_list_filter_choice($params['event_type']);
316 316
         }
317 317
 
318
-        $params = gdsc_validate_map_args( $params );
318
+        $params = gdsc_validate_map_args($params);
319 319
 
320 320
         $gd_sc_map_params = $params;
321 321
 
@@ -326,12 +326,12 @@  discard block
 block discarded – undo
326 326
             'post_type'      => $params['post_type'],
327 327
         );
328 328
 
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
329
+        if (!empty($params['category']) && isset($params['category'][0]) && (int) $params['category'][0] != 0) {
330
+            $category_taxonomy = geodir_get_taxonomies($params['post_type']);
331 331
 
332 332
             ######### WPML #########
333
-            if ( function_exists( 'icl_object_id' ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
333
+            if (function_exists('icl_object_id')) {
334
+                $category = gd_lang_object_ids($params['category'], $category_taxonomy[0]);
335 335
             }
336 336
             ######### WPML #########
337 337
 
@@ -341,36 +341,36 @@  discard block
 block discarded – undo
341 341
                 'terms'    => $params['category']
342 342
             );
343 343
 
344
-            $query_args['tax_query'] = array( $tax_query );
344
+            $query_args['tax_query'] = array($tax_query);
345 345
         }
346 346
 
347 347
         $add_post_in_marker_array = true;
348 348
 
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
349
+        if ($params['post_type'] == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
350 350
             global $geodir_event_widget_listview;
351 351
             $geodir_event_widget_listview = true;
352 352
 
353 353
             $query_args['geodir_event_type'] = $params['event_type'];
354 354
 
355
-            $listings = geodir_event_get_widget_events( $query_args );
355
+            $listings = geodir_event_get_widget_events($query_args);
356 356
 
357 357
             $geodir_event_widget_listview = false;
358 358
         } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
359
+            $listings = geodir_get_widget_listings($query_args);
360 360
         }
361 361
 
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
362
+        if (!empty($listings)) {
363
+            foreach ($listings as $listing) {
364
+                create_marker_jason_of_posts($listing);
365 365
             }
366 366
         }
367 367
 
368 368
         ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
369
+        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
370 370
 
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
371
+        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
372 372
 
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
373
+        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
374 374
 
375 375
         $default_location = geodir_get_default_location();
376 376
 
@@ -391,17 +391,17 @@  discard block
 block discarded – undo
391 391
             'enable_location_filters'  => false,
392 392
             'enable_jason_on_load'     => true,
393 393
             'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
394
+            'latitude'                 => isset($default_location->city_latitude) ? $default_location->city_latitude : '',
395
+            'longitude'                => isset($default_location->city_longitude) ? $default_location->city_longitude : '',
396 396
             'streetViewControl'        => true,
397 397
             'showPreview'              => '0',
398 398
             'maxZoom'                  => 21,
399 399
             'bubble_size'              => 'small',
400 400
         );
401 401
 
402
-        if ( is_single() ) {
402
+        if (is_single()) {
403 403
             global $post;
404
-            if ( isset( $post->post_latitude ) ) {
404
+            if (isset($post->post_latitude)) {
405 405
                 $map_args['latitude']  = $post->post_latitude;
406 406
                 $map_args['longitude'] = $post->post_longitude;
407 407
             }
@@ -412,24 +412,24 @@  discard block
 block discarded – undo
412 412
         }
413 413
 
414 414
         // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
415
+        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
416 416
             $map_args['enable_marker_cluster'] = true;
417 417
         } else {
418 418
             $map_args['enable_marker_cluster'] = false;
419 419
         }
420 420
 
421
-        geodir_draw_map( $map_args );
421
+        geodir_draw_map($map_args);
422 422
 
423 423
         $output = ob_get_contents();
424 424
 
425 425
         ob_end_clean();
426 426
 
427
-        foreach ( $backup_globals as $global => $value ) {
427
+        foreach ($backup_globals as $global => $value) {
428 428
             ${$global} = $value;
429 429
         }
430 430
 
431 431
         return $output;
432
-    }else{
432
+    } else {
433 433
         ob_start();
434 434
         add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435 435
         add_action('the_post', 'create_list_jsondata'); // Add marker in json array
@@ -1047,20 +1047,20 @@  discard block
 block discarded – undo
1047 1047
 	
1048 1048
 	$show_adv_search = isset($params['show_adv_search']) && in_array($params['show_adv_search'], array('default', 'always', 'searched')) ? $params['show_adv_search'] : '';
1049 1049
 	
1050
-	if ($show_adv_search != '' ) {
1051
-		$show_adv_class = 'geodir-advance-search-' . $show_adv_search . ' ';
1050
+	if ($show_adv_search != '') {
1051
+		$show_adv_class = 'geodir-advance-search-'.$show_adv_search.' ';
1052 1052
 		if ($show_adv_search == 'searched' && geodir_is_page('search')) {
1053 1053
 			$show_adv_search = 'search';
1054 1054
 		}
1055
-		$show_adv_attrs = 'data-show-adv="' . $show_adv_search . '"';
1055
+		$show_adv_attrs = 'data-show-adv="'.$show_adv_search.'"';
1056 1056
 		
1057
-		$params['before_widget'] = str_replace('class="', $show_adv_attrs . ' class="' . $show_adv_class, $params['before_widget']);
1057
+		$params['before_widget'] = str_replace('class="', $show_adv_attrs.' class="'.$show_adv_class, $params['before_widget']);
1058 1058
 	}
1059 1059
 	
1060 1060
 	ob_start();
1061 1061
 	
1062 1062
 	//geodir_get_template_part('listing', 'filter-form');
1063
-	the_widget('geodir_advance_search_widget', $params, $params );
1063
+	the_widget('geodir_advance_search_widget', $params, $params);
1064 1064
 	
1065 1065
 	$output = ob_get_contents();
1066 1066
     ob_end_clean();
@@ -1260,7 +1260,7 @@  discard block
 block discarded – undo
1260 1260
 
1261 1261
     // Validate character_count
1262 1262
     //todo: is this necessary?
1263
-    $params['character_count']  = $params['character_count'];
1263
+    $params['character_count'] = $params['character_count'];
1264 1264
 
1265 1265
     // Validate our layout choice
1266 1266
     // Outside of the norm, I added some more simple terms to match the existing
@@ -1272,7 +1272,7 @@  discard block
 block discarded – undo
1272 1272
 
1273 1273
     // Validate Listing width, used in the template widget-listing-listview.php
1274 1274
     // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1275
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1275
+    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1276 1276
 
1277 1277
     // Validate the checkboxes used on the widget
1278 1278
     $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
@@ -1288,7 +1288,7 @@  discard block
 block discarded – undo
1288 1288
     if (!empty($params['tags'])) {
1289 1289
         if (!is_array($params['tags'])) {
1290 1290
             $comma = _x(',', 'tag delimiter');
1291
-            if ( ',' !== $comma ) {
1291
+            if (',' !== $comma) {
1292 1292
                 $params['tags'] = str_replace($comma, ',', $params['tags']);
1293 1293
             }
1294 1294
             $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
@@ -1310,13 +1310,13 @@  discard block
 block discarded – undo
1310 1310
         unset($atts['pageno']);
1311 1311
     }
1312 1312
 
1313
-    if ( !empty($atts['shortcode_content']) ) {
1313
+    if (!empty($atts['shortcode_content'])) {
1314 1314
         $content = $atts['shortcode_content'];
1315 1315
     }
1316 1316
     $params['shortcode_content'] = trim($content);
1317 1317
     $atts['shortcode_content'] = trim($content);
1318 1318
     
1319
-    $params['shortcode_atts']       = $atts;
1319
+    $params['shortcode_atts'] = $atts;
1320 1320
 
1321 1321
     $output = geodir_sc_gd_listings_output($params);
1322 1322
 
@@ -1388,8 +1388,8 @@  discard block
 block discarded – undo
1388 1388
     // Validate the checkboxes used on the widget
1389 1389
     $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1390 1390
     $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1391
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1392
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1391
+    $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']);
1392
+    $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']);
1393 1393
 
1394 1394
     if ($params['max_count'] != 'all') {
1395 1395
         $params['max_count'] = absint($params['max_count']);
Please login to merge, or discard this patch.
geodirectory-functions/taxonomy_functions.php 3 patches
Indentation   +1231 added lines, -1231 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
 										' . __(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
 															' . __(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="' . $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="' . $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
 
@@ -401,41 +401,41 @@  discard block
 block discarded – undo
401 401
  */
402 402
 function geodir_get_current_posttype()
403 403
 {
404
-    global $wp_query, $geodir_post_type;
404
+	global $wp_query, $geodir_post_type;
405 405
 
406
-    $geodir_post_type = get_query_var('post_type');
406
+	$geodir_post_type = get_query_var('post_type');
407 407
 
408
-    if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
409
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
410
-            $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
411
-        elseif (isset($_REQUEST['listing_type']))
412
-            $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
413
-    }
408
+	if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
409
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
410
+			$geodir_post_type = get_post_type((int)$_REQUEST['pid']);
411
+		elseif (isset($_REQUEST['listing_type']))
412
+			$geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
413
+	}
414 414
 
415
-    if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
416
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
415
+	if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
416
+		$geodir_post_type = sanitize_text_field($_REQUEST['stype']);
417 417
 
418
-    if (is_tax())
419
-        $geodir_post_type = geodir_get_taxonomy_posttype();
418
+	if (is_tax())
419
+		$geodir_post_type = geodir_get_taxonomy_posttype();
420 420
 
421 421
 
422
-    $all_postypes = geodir_get_posttypes();
423
-    $all_postypes = stripslashes_deep($all_postypes);
422
+	$all_postypes = geodir_get_posttypes();
423
+	$all_postypes = stripslashes_deep($all_postypes);
424 424
 
425
-    if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
426
-        $geodir_post_type = '';
425
+	if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
426
+		$geodir_post_type = '';
427 427
 
428
-    if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
429
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
430
-    }
428
+	if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
429
+		$geodir_post_type = sanitize_text_field($_REQUEST['stype']);
430
+	}
431 431
 
432 432
 
433
-    /**
434
-     * Filter the default CPT return.
435
-     *
436
-     * @since 1.6.9
437
-     */
438
-    return apply_filters('geodir_get_current_posttype',$geodir_post_type);
433
+	/**
434
+	 * Filter the default CPT return.
435
+	 *
436
+	 * @since 1.6.9
437
+	 */
438
+	return apply_filters('geodir_get_current_posttype',$geodir_post_type);
439 439
 }
440 440
 
441 441
 /**
@@ -449,22 +449,22 @@  discard block
 block discarded – undo
449 449
  */
450 450
 function geodir_get_default_posttype()
451 451
 {
452
-    $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
453
-
454
-    $stype = false;
455
-    foreach ( $post_types as $post_type => $info ) {
456
-        global $wpdb;
457
-        $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
458
-        if ( $has_posts ) {
459
-            $stype = $post_type; break;
460
-        }
461
-    }
462
-
463
-    if(!$stype){
464
-        $stype = 'gd_place';
465
-    }
466
-
467
-    return $stype;
452
+	$post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
453
+
454
+	$stype = false;
455
+	foreach ( $post_types as $post_type => $info ) {
456
+		global $wpdb;
457
+		$has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
458
+		if ( $has_posts ) {
459
+			$stype = $post_type; break;
460
+		}
461
+	}
462
+
463
+	if(!$stype){
464
+		$stype = 'gd_place';
465
+	}
466
+
467
+	return $stype;
468 468
 }
469 469
 
470 470
 /**
@@ -478,21 +478,21 @@  discard block
 block discarded – undo
478 478
  */
479 479
 function geodir_get_posttypes($output = 'names')
480 480
 {
481
-    $post_types = array();
482
-    $post_types = get_option('geodir_post_types');
483
-    $post_types = stripslashes_deep($post_types);
484
-    if (!empty($post_types)) {
485
-        switch ($output):
486
-            case 'object':
487
-            case 'Object':
488
-                $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
489
-                break;
490
-            case 'array':
491
-            case 'Array':
492
-                $post_types = (array)$post_types;
493
-                break;
481
+	$post_types = array();
482
+	$post_types = get_option('geodir_post_types');
483
+	$post_types = stripslashes_deep($post_types);
484
+	if (!empty($post_types)) {
485
+		switch ($output):
486
+			case 'object':
487
+			case 'Object':
488
+				$post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
489
+				break;
490
+			case 'array':
491
+			case 'Array':
492
+				$post_types = (array)$post_types;
493
+				break;
494 494
 			case 'options':
495
-                $post_types = (array)$post_types;
495
+				$post_types = (array)$post_types;
496 496
 				
497 497
 				$options = array();
498 498
 				if (!empty($post_types)) {
@@ -501,17 +501,17 @@  discard block
 block discarded – undo
501 501
 					}
502 502
 				}
503 503
 				$post_types = $options;
504
-                break;
505
-            default:
506
-                $post_types = array_keys($post_types);
507
-                break;
508
-        endswitch;
509
-    }
510
-
511
-    if (!empty($post_types))
512
-        return $post_types;
513
-    else
514
-        return array();
504
+				break;
505
+			default:
506
+				$post_types = array_keys($post_types);
507
+				break;
508
+		endswitch;
509
+	}
510
+
511
+	if (!empty($post_types))
512
+		return $post_types;
513
+	else
514
+		return array();
515 515
 }
516 516
 
517 517
 /**
@@ -524,108 +524,108 @@  discard block
 block discarded – undo
524 524
  */
525 525
 function geodir_get_posttype_info($post_type = '')
526 526
 {
527
-    $post_types = array();
528
-    $post_types = get_option('geodir_post_types');
529
-    $post_types = stripslashes_deep($post_types);
530
-    if (!empty($post_types) && $post_type != '') {
531
-        return $post_types[$post_type];
532
-    } else
533
-        return false;
527
+	$post_types = array();
528
+	$post_types = get_option('geodir_post_types');
529
+	$post_types = stripslashes_deep($post_types);
530
+	if (!empty($post_types) && $post_type != '') {
531
+		return $post_types[$post_type];
532
+	} else
533
+		return false;
534 534
 }
535 535
 
536 536
 if (!function_exists('geodir_get_taxonomies')) {
537
-    /**
538
-     * Get all custom taxonomies.
539
-     *
540
-     * @since 1.0.0
541
-     * @package GeoDirectory
542
-     * @param string $post_type The post type.
543
-     * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
544
-     * @return array|bool Taxonomies on success. false on failure.
545
-     */
546
-    function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false)
547
-    {
537
+	/**
538
+	 * Get all custom taxonomies.
539
+	 *
540
+	 * @since 1.0.0
541
+	 * @package GeoDirectory
542
+	 * @param string $post_type The post type.
543
+	 * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
544
+	 * @return array|bool Taxonomies on success. false on failure.
545
+	 */
546
+	function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false)
547
+	{
548 548
 
549
-        $taxonomies = array();
550
-        $gd_taxonomies = array();
549
+		$taxonomies = array();
550
+		$gd_taxonomies = array();
551 551
 
552
-        if ($taxonomies = get_option('geodir_taxonomies')) {
552
+		if ($taxonomies = get_option('geodir_taxonomies')) {
553 553
 
554 554
 
555
-            $gd_taxonomies = array_keys($taxonomies);
555
+			$gd_taxonomies = array_keys($taxonomies);
556 556
 
557 557
 
558
-            if ($post_type != '')
559
-                $gd_taxonomies = array();
558
+			if ($post_type != '')
559
+				$gd_taxonomies = array();
560 560
 
561
-            $i = 0;
562
-            foreach ($taxonomies as $taxonomy => $args) {
561
+			$i = 0;
562
+			foreach ($taxonomies as $taxonomy => $args) {
563 563
 
564
-                if ($post_type != '' && $args['object_type'] == $post_type)
565
-                    $gd_taxonomies[] = $taxonomy;
564
+				if ($post_type != '' && $args['object_type'] == $post_type)
565
+					$gd_taxonomies[] = $taxonomy;
566 566
 
567
-                if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
568
-                    if (array_search($taxonomy, $gd_taxonomies) !== false)
569
-                        unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
570
-                }
567
+				if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
568
+					if (array_search($taxonomy, $gd_taxonomies) !== false)
569
+						unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
570
+				}
571 571
 
572
-            }
572
+			}
573 573
 
574
-            $gd_taxonomies = array_values($gd_taxonomies);
575
-        }
576
-
577
-        /**
578
-         * Filter the taxonomies.
579
-         *
580
-         * @since 1.0.0
581
-         * @param array $gd_taxonomies The taxonomy array.
582
-         */
583
-        $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
584
-
585
-        if (!empty($taxonomies)) {
586
-            return $taxonomies;
587
-        } else {
588
-            return false;
589
-        }
590
-    }
574
+			$gd_taxonomies = array_values($gd_taxonomies);
575
+		}
576
+
577
+		/**
578
+		 * Filter the taxonomies.
579
+		 *
580
+		 * @since 1.0.0
581
+		 * @param array $gd_taxonomies The taxonomy array.
582
+		 */
583
+		$taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
584
+
585
+		if (!empty($taxonomies)) {
586
+			return $taxonomies;
587
+		} else {
588
+			return false;
589
+		}
590
+	}
591 591
 }
592 592
 
593 593
 if (!function_exists(' geodir_get_categories_dl')) {
594
-    /**
595
-     * Get categories dropdown HTML.
596
-     *
597
-     * @since 1.0.0
598
-     * @package GeoDirectory
599
-     * @param string $post_type The post type.
600
-     * @param string $selected The selected value.
601
-     * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
602
-     * @param bool $echo Prints the HTML when set to true. Default: true.
603
-     * @return void|string Dropdown HTML.
604
-     */
605
-    function  geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true)
606
-    {
607
-
608
-        $html = '';
609
-        $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies);
610
-
611
-        $categories = get_terms($taxonomies);
612
-
613
-        $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
614
-
615
-        foreach ($categories as $category_obj) {
616
-            $select_opt = '';
617
-            if ($selected == $category_obj->term_id) {
618
-                $select_opt = 'selected="selected"';
619
-            }
620
-            $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
621
-                . ucfirst($category_obj->name) . '</option>';
622
-        }
623
-
624
-        if ($echo)
625
-            echo $html;
626
-        else
627
-            return $html;
628
-    }
594
+	/**
595
+	 * Get categories dropdown HTML.
596
+	 *
597
+	 * @since 1.0.0
598
+	 * @package GeoDirectory
599
+	 * @param string $post_type The post type.
600
+	 * @param string $selected The selected value.
601
+	 * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false.
602
+	 * @param bool $echo Prints the HTML when set to true. Default: true.
603
+	 * @return void|string Dropdown HTML.
604
+	 */
605
+	function  geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true)
606
+	{
607
+
608
+		$html = '';
609
+		$taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies);
610
+
611
+		$categories = get_terms($taxonomies);
612
+
613
+		$html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
614
+
615
+		foreach ($categories as $category_obj) {
616
+			$select_opt = '';
617
+			if ($selected == $category_obj->term_id) {
618
+				$select_opt = 'selected="selected"';
619
+			}
620
+			$html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
621
+				. ucfirst($category_obj->name) . '</option>';
622
+		}
623
+
624
+		if ($echo)
625
+			echo $html;
626
+		else
627
+			return $html;
628
+	}
629 629
 }
630 630
 
631 631
 
@@ -640,28 +640,28 @@  discard block
 block discarded – undo
640 640
 function geodir_get_listing_slug($object_type = '')
641 641
 {
642 642
 
643
-    $listing_slug = '';
643
+	$listing_slug = '';
644 644
 
645
-    $post_types = get_option('geodir_post_types');
646
-    $taxonomies = get_option('geodir_taxonomies');
645
+	$post_types = get_option('geodir_post_types');
646
+	$taxonomies = get_option('geodir_taxonomies');
647 647
 
648 648
 
649
-    if ($object_type != '') {
650
-        if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
649
+	if ($object_type != '') {
650
+		if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
651 651
 
652
-            $object_info = $post_types[$object_type];
653
-            $listing_slug = $object_info['listing_slug'];
654
-        } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
655
-            $object_info = $taxonomies[$object_type];
656
-            $listing_slug = $object_info['listing_slug'];
657
-        }
652
+			$object_info = $post_types[$object_type];
653
+			$listing_slug = $object_info['listing_slug'];
654
+		} elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
655
+			$object_info = $taxonomies[$object_type];
656
+			$listing_slug = $object_info['listing_slug'];
657
+		}
658 658
 
659
-    }
659
+	}
660 660
 
661
-    if (!empty($listing_slug))
662
-        return $listing_slug;
663
-    else
664
-        return false;
661
+	if (!empty($listing_slug))
662
+		return $listing_slug;
663
+	else
664
+		return false;
665 665
 }
666 666
 
667 667
 
@@ -676,212 +676,212 @@  discard block
 block discarded – undo
676 676
  */
677 677
 function geodir_get_taxonomy_posttype($taxonomy = '')
678 678
 {
679
-    global $wp_query;
680
-
681
-    $post_type = array();
682
-    $taxonomies = array();
683
-
684
-    if (!empty($taxonomy)) {
685
-        $taxonomies[] = $taxonomy;
686
-    } elseif (isset($wp_query->tax_query->queries)) {
687
-        $tax_arr = $wp_query->tax_query->queries;
688
-        //if tax query has 'relation' set then it will break wp_list_pluck so we remove it
689
-        if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
690
-        $taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
691
-    }
692
-
693
-    if (!empty($taxonomies)) {
694
-        foreach (geodir_get_posttypes() as $pt) {
695
-            $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
696
-            if (array_intersect($taxonomies, $object_taxonomies))
697
-                $post_type[] = $pt;
698
-        }
699
-    }
700
-
701
-    if (!empty($post_type))
702
-        return $post_type[0];
703
-    else
704
-        return false;
679
+	global $wp_query;
680
+
681
+	$post_type = array();
682
+	$taxonomies = array();
683
+
684
+	if (!empty($taxonomy)) {
685
+		$taxonomies[] = $taxonomy;
686
+	} elseif (isset($wp_query->tax_query->queries)) {
687
+		$tax_arr = $wp_query->tax_query->queries;
688
+		//if tax query has 'relation' set then it will break wp_list_pluck so we remove it
689
+		if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
690
+		$taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
691
+	}
692
+
693
+	if (!empty($taxonomies)) {
694
+		foreach (geodir_get_posttypes() as $pt) {
695
+			$object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
696
+			if (array_intersect($taxonomies, $object_taxonomies))
697
+				$post_type[] = $pt;
698
+		}
699
+	}
700
+
701
+	if (!empty($post_type))
702
+		return $post_type[0];
703
+	else
704
+		return false;
705 705
 }
706 706
 
707 707
 if (!function_exists('geodir_custom_taxonomy_walker')) {
708
-    /**
709
-     * Custom taxonomy walker function.
710
-     *
711
-     * @since 1.0.0
712
-     * @package GeoDirectory
713
-     * @param string $cat_taxonomy The taxonomy name.
714
-     * @param int $cat_parent The parent term ID.
715
-     * @param bool $hide_empty Hide empty taxonomies? Default: false.
716
-     * @param int $pading CSS padding in pixels.
717
-     * @return string|void taxonomy HTML.
718
-     */
719
-    function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0)
720
-    {
721
-        global $cat_display, $post_cat, $exclude_cats;
722
-
723
-        $search_terms = trim($post_cat, ",");
724
-
725
-        $search_terms = explode(",", $search_terms);
726
-
727
-        $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
728
-
729
-        $display = '';
730
-        $onchange = '';
731
-        $term_check = '';
732
-        $main_list_class = '';
733
-        $out = '';
734
-        //If there are terms, start displaying
735
-        if (count($cat_terms) > 0) {
736
-            //Displaying as a list
737
-            $p = $pading * 20;
738
-            $pading++;
739
-
740
-
741
-            if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
742
-                if ($cat_parent == 0) {
743
-                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
744
-                    $main_list_class = 'class="main_list_selecter"';
745
-                } else {
746
-                    //$display = 'display:none';
747
-                    $list_class = 'sub_list gd-sub-cats-list';
748
-                }
749
-            }
708
+	/**
709
+	 * Custom taxonomy walker function.
710
+	 *
711
+	 * @since 1.0.0
712
+	 * @package GeoDirectory
713
+	 * @param string $cat_taxonomy The taxonomy name.
714
+	 * @param int $cat_parent The parent term ID.
715
+	 * @param bool $hide_empty Hide empty taxonomies? Default: false.
716
+	 * @param int $pading CSS padding in pixels.
717
+	 * @return string|void taxonomy HTML.
718
+	 */
719
+	function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0)
720
+	{
721
+		global $cat_display, $post_cat, $exclude_cats;
722
+
723
+		$search_terms = trim($post_cat, ",");
724
+
725
+		$search_terms = explode(",", $search_terms);
726
+
727
+		$cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
728
+
729
+		$display = '';
730
+		$onchange = '';
731
+		$term_check = '';
732
+		$main_list_class = '';
733
+		$out = '';
734
+		//If there are terms, start displaying
735
+		if (count($cat_terms) > 0) {
736
+			//Displaying as a list
737
+			$p = $pading * 20;
738
+			$pading++;
739
+
740
+
741
+			if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
742
+				if ($cat_parent == 0) {
743
+					$list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
744
+					$main_list_class = 'class="main_list_selecter"';
745
+				} else {
746
+					//$display = 'display:none';
747
+					$list_class = 'sub_list gd-sub-cats-list';
748
+				}
749
+			}
750 750
 
751
-            if ($cat_display == 'checkbox' || $cat_display == 'radio') {
752
-                $p = 0;
753
-                $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
754
-            }
751
+			if ($cat_display == 'checkbox' || $cat_display == 'radio') {
752
+				$p = 0;
753
+				$out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
754
+			}
755 755
 
756
-            foreach ($cat_terms as $cat_term) {
756
+			foreach ($cat_terms as $cat_term) {
757 757
 
758
-                $checked = '';
758
+				$checked = '';
759 759
 
760
-                if (in_array($cat_term->term_id, $search_terms)) {
761
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
762
-                        $checked = 'selected="selected"';
763
-                    else
764
-                        $checked = 'checked="checked"';
765
-                }
760
+				if (in_array($cat_term->term_id, $search_terms)) {
761
+					if ($cat_display == 'select' || $cat_display == 'multiselect')
762
+						$checked = 'selected="selected"';
763
+					else
764
+						$checked = 'checked="checked"';
765
+				}
766 766
 
767
-                if ($cat_display == 'radio')
768
-                    $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
769
-                elseif ($cat_display == 'select' || $cat_display == 'multiselect')
770
-                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
767
+				if ($cat_display == 'radio')
768
+					$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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
769
+				elseif ($cat_display == 'select' || $cat_display == 'multiselect')
770
+					$out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
771 771
 
772
-                else {
773
-                    $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
774
-                }
772
+				else {
773
+					$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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
774
+				}
775 775
 
776
-                // Call recurson to print sub cats
777
-                $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading);
776
+				// Call recurson to print sub cats
777
+				$out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading);
778 778
 
779
-            }
779
+			}
780 780
 
781
-            if ($cat_display == 'checkbox' || $cat_display == 'radio')
782
-                $out .= '</div>';
781
+			if ($cat_display == 'checkbox' || $cat_display == 'radio')
782
+				$out .= '</div>';
783 783
 
784
-            return $out;
785
-        }
786
-        return;
787
-    }
784
+			return $out;
785
+		}
786
+		return;
787
+	}
788 788
 }
789 789
 
790 790
 if (!function_exists('geodir_custom_taxonomy_walker2')) {
791
-    /**
792
-     * Custom taxonomy walker function.
793
-     *
794
-     * @since 1.0.0
795
-     * @package GeoDirectory
796
-     * @global object $post WordPress Post object.
797
-     * @global object $gd_session GeoDirectory Session object.
798
-     * @param string $cat_taxonomy The taxonomy name.
799
-     * @param string $cat_limit Number of categories to display.
800
-     */
801
-    function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '')
802
-    {
803
-        $post_category = '';
804
-        $post_category_str = '';
805
-        global $exclude_cats, $gd_session;
806
-
807
-        $cat_exclude = '';
808
-        if (is_array($exclude_cats) && !empty($exclude_cats))
809
-            $cat_exclude = serialize($exclude_cats);
810
-
811
-        if (isset($_REQUEST['backandedit'])) {
812
-            $post = (object)$gd_session->get('listing');
813
-
814
-            if (!is_array($post->post_category[$cat_taxonomy]))
815
-                $post_category = $post->post_category[$cat_taxonomy];
816
-
817
-            $post_categories = $post->post_category_str;
818
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
819
-                $post_category_str = $post_categories[$cat_taxonomy];
820
-
821
-        } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
822
-            global $post;
823
-
824
-            $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true);
825
-            if (empty($post_category) && isset($post->{$cat_taxonomy})) {
826
-                $post_category = $post->{$cat_taxonomy};
827
-            }
791
+	/**
792
+	 * Custom taxonomy walker function.
793
+	 *
794
+	 * @since 1.0.0
795
+	 * @package GeoDirectory
796
+	 * @global object $post WordPress Post object.
797
+	 * @global object $gd_session GeoDirectory Session object.
798
+	 * @param string $cat_taxonomy The taxonomy name.
799
+	 * @param string $cat_limit Number of categories to display.
800
+	 */
801
+	function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '')
802
+	{
803
+		$post_category = '';
804
+		$post_category_str = '';
805
+		global $exclude_cats, $gd_session;
806
+
807
+		$cat_exclude = '';
808
+		if (is_array($exclude_cats) && !empty($exclude_cats))
809
+			$cat_exclude = serialize($exclude_cats);
810
+
811
+		if (isset($_REQUEST['backandedit'])) {
812
+			$post = (object)$gd_session->get('listing');
813
+
814
+			if (!is_array($post->post_category[$cat_taxonomy]))
815
+				$post_category = $post->post_category[$cat_taxonomy];
816
+
817
+			$post_categories = $post->post_category_str;
818
+			if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
819
+				$post_category_str = $post_categories[$cat_taxonomy];
820
+
821
+		} elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
822
+			global $post;
823
+
824
+			$post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true);
825
+			if (empty($post_category) && isset($post->{$cat_taxonomy})) {
826
+				$post_category = $post->{$cat_taxonomy};
827
+			}
828 828
 
829
-            $post_categories = get_post_meta($post->ID, 'post_categories', true);
829
+			$post_categories = get_post_meta($post->ID, 'post_categories', true);
830 830
 
831
-            if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
832
-                foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
833
-                    if (is_numeric($cat_part)) {
834
-                        $cat_part_arr[] = $cat_part;
835
-                    }
836
-                }
837
-                if (is_array($cat_part_arr)) {
838
-                    $post_category = implode(',', $cat_part_arr);
839
-                }
840
-            }
831
+			if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
832
+				foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
833
+					if (is_numeric($cat_part)) {
834
+						$cat_part_arr[] = $cat_part;
835
+					}
836
+				}
837
+				if (is_array($cat_part_arr)) {
838
+					$post_category = implode(',', $cat_part_arr);
839
+				}
840
+			}
841 841
 
842
-            if (!empty($post_category)) {
843
-                $cat1 = array_filter(explode(',', $post_category));
844
-                $post_category = ',' . implode(',', $cat1) . ',';
842
+			if (!empty($post_category)) {
843
+				$cat1 = array_filter(explode(',', $post_category));
844
+				$post_category = ',' . implode(',', $cat1) . ',';
845 845
 
846
-            }
846
+			}
847 847
 
848
-            if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
848
+			if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
849 849
 
850
-                $post_category_upd = explode(',', $post_category);
851
-                $post_category_change = '';
852
-                foreach ($post_category_upd as $cat) {
850
+				$post_category_upd = explode(',', $post_category);
851
+				$post_category_change = '';
852
+				foreach ($post_category_upd as $cat) {
853 853
 
854
-                    if (!in_array($cat, $exclude_cats) && $cat != '') {
855
-                        $post_category_change .= ',' . $cat;
856
-                    }
857
-                }
858
-                $post_category = $post_category_change;
859
-            }
854
+					if (!in_array($cat, $exclude_cats) && $cat != '') {
855
+						$post_category_change .= ',' . $cat;
856
+					}
857
+				}
858
+				$post_category = $post_category_change;
859
+			}
860 860
 
861 861
 
862
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
863
-                $post_category_str = $post_categories[$cat_taxonomy];
864
-            }
865
-        }
862
+			if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
863
+				$post_category_str = $post_categories[$cat_taxonomy];
864
+			}
865
+		}
866 866
 
867
-        echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
867
+		echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
868 868
 
869
-        echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
869
+		echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
870 870
 
871
-        echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
871
+		echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
872 872
 
873 873
 
874
-        ?>
874
+		?>
875 875
         <div class="cat_sublist">
876 876
             <?php
877 877
 
878
-            $post_id = isset($post->ID) ? $post->ID : '';
878
+			$post_id = isset($post->ID) ? $post->ID : '';
879 879
 
880
-            if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
880
+			if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
881 881
 
882
-                geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories);
883
-            }
884
-            ?>
882
+				geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories);
883
+			}
884
+			?>
885 885
         </div>
886 886
         <script type="text/javascript">
887 887
 
@@ -1004,22 +1004,22 @@  discard block
 block discarded – undo
1004 1004
 
1005 1005
         </script>
1006 1006
         <?php
1007
-        if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1008
-            $post_cat_str = $post_categories[$cat_taxonomy];
1009
-            $post_cat_array = explode("#", $post_cat_str);
1010
-            if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1011
-                $style = "display:none;";
1012
-        }
1013
-        ?>
1007
+		if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1008
+			$post_cat_str = $post_categories[$cat_taxonomy];
1009
+			$post_cat_array = explode("#", $post_cat_str);
1010
+			if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1011
+				$style = "display:none;";
1012
+		}
1013
+		?>
1014 1014
         <div class="main_cat_list" style=" <?php if (isset($style)) {
1015
-            echo $style;
1016
-        }?> ">
1015
+			echo $style;
1016
+		}?> ">
1017 1017
             <?php geodir_get_catlist($cat_taxonomy, 0);  // print main categories list
1018
-            ?>
1018
+			?>
1019 1019
         </div>
1020 1020
     <?php
1021 1021
 
1022
-    }
1022
+	}
1023 1023
 }
1024 1024
 
1025 1025
 /**
@@ -1036,23 +1036,23 @@  discard block
 block discarded – undo
1036 1036
  */
1037 1037
 function geodir_addpost_categories_html($request_taxonomy, $parrent, $selected = false, $main_selected = true, $default = false, $exclude = '')
1038 1038
 {
1039
-    global $exclude_cats;
1039
+	global $exclude_cats;
1040 1040
 
1041
-    if ($exclude != '') {
1042
-        $exclude_cats = maybe_unserialize(base64_decode($exclude));
1041
+	if ($exclude != '') {
1042
+		$exclude_cats = maybe_unserialize(base64_decode($exclude));
1043 1043
 
1044
-        if(is_array( $exclude_cats)){
1045
-            $exclude_cats = array_map( 'intval', $exclude_cats );
1046
-        }else{
1047
-            $exclude_cats = intval($exclude_cats);
1048
-        }
1044
+		if(is_array( $exclude_cats)){
1045
+			$exclude_cats = array_map( 'intval', $exclude_cats );
1046
+		}else{
1047
+			$exclude_cats = intval($exclude_cats);
1048
+		}
1049 1049
 
1050
-    }
1050
+	}
1051 1051
 
1052
-    if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) ||
1053
-        (!is_array($exclude_cats) || empty($exclude_cats))
1054
-    ) {
1055
-        ?>
1052
+	if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) ||
1053
+		(!is_array($exclude_cats) || empty($exclude_cats))
1054
+	) {
1055
+		?>
1056 1056
 
1057 1057
         <?php $main_cat = get_term($parrent, $request_taxonomy); ?>
1058 1058
 
@@ -1081,8 +1081,8 @@  discard block
 block discarded – undo
1081 1081
 
1082 1082
             <br/>
1083 1083
             <?php
1084
-            $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
1085
-            if (!empty($cat_terms)) { ?>
1084
+			$cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
1085
+			if (!empty($cat_terms)) { ?>
1086 1086
                 <span> <?php printf(__('Add listing in category', 'geodirectory')); ?></span>
1087 1087
                 <?php geodir_get_catlist($request_taxonomy, $parrent, $selected) ?>
1088 1088
             <?php } ?>
@@ -1104,53 +1104,53 @@  discard block
 block discarded – undo
1104 1104
 function geodir_editpost_categories_html($request_taxonomy, $request_postid, $post_categories)
1105 1105
 {
1106 1106
 
1107
-    if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
1108
-        $post_cat_str = $post_categories[$request_taxonomy];
1109
-        $post_cat_array = explode("#", $post_cat_str);
1110
-        if (is_array($post_cat_array)) {
1111
-            $post_cat_array = array_unique( $post_cat_array );
1107
+	if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
1108
+		$post_cat_str = $post_categories[$request_taxonomy];
1109
+		$post_cat_array = explode("#", $post_cat_str);
1110
+		if (is_array($post_cat_array)) {
1111
+			$post_cat_array = array_unique( $post_cat_array );
1112 1112
 
1113 1113
 			foreach ($post_cat_array as $post_cat_html) {
1114 1114
 
1115
-                $post_cat_info = explode(":", $post_cat_html);
1116
-                $post_maincat_str = $post_cat_info[0];
1115
+				$post_cat_info = explode(":", $post_cat_html);
1116
+				$post_maincat_str = $post_cat_info[0];
1117 1117
 
1118
-                if (!empty($post_maincat_str)) {
1119
-                    $post_maincat_info = explode(",", $post_maincat_str);
1120
-                    $post_maincat_id = $post_maincat_info[0];
1121
-                    ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1122
-                    (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1123
-                }
1124
-                $post_sub_catid = '';
1125
-                if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1126
-                    $post_sub_catid = (int)$post_cat_info[1];
1127
-                }
1118
+				if (!empty($post_maincat_str)) {
1119
+					$post_maincat_info = explode(",", $post_maincat_str);
1120
+					$post_maincat_id = $post_maincat_info[0];
1121
+					($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1122
+					(end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1123
+				}
1124
+				$post_sub_catid = '';
1125
+				if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1126
+					$post_sub_catid = (int)$post_cat_info[1];
1127
+				}
1128 1128
 
1129
-                geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1129
+				geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1130 1130
 
1131
-            }
1132
-        } else {
1131
+			}
1132
+		} else {
1133 1133
 
1134
-            $post_cat_info = explode(":", $post_cat_str);
1135
-            $post_maincat_str = $post_cat_info[0];
1134
+			$post_cat_info = explode(":", $post_cat_str);
1135
+			$post_maincat_str = $post_cat_info[0];
1136 1136
 
1137
-            $post_sub_catid = '';
1137
+			$post_sub_catid = '';
1138 1138
 
1139
-            if (!empty($post_maincat_str)) {
1140
-                $post_maincat_info = explode(",", $post_maincat_str);
1141
-                $post_maincat_id = $post_maincat_info[0];
1142
-                ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1143
-                (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1144
-            }
1139
+			if (!empty($post_maincat_str)) {
1140
+				$post_maincat_info = explode(",", $post_maincat_str);
1141
+				$post_maincat_id = $post_maincat_info[0];
1142
+				($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false;
1143
+				(end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false;
1144
+			}
1145 1145
 
1146
-            if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1147
-                $post_sub_catid = (int)$post_cat_info[1];
1148
-            }
1146
+			if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1147
+				$post_sub_catid = (int)$post_cat_info[1];
1148
+			}
1149 1149
 
1150
-            geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1150
+			geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
1151 1151
 
1152
-        }
1153
-    }
1152
+		}
1153
+	}
1154 1154
 }
1155 1155
 
1156 1156
 /**
@@ -1164,35 +1164,35 @@  discard block
 block discarded – undo
1164 1164
  */
1165 1165
 function geodir_get_catlist($cat_taxonomy, $parrent = 0, $selected = false)
1166 1166
 {
1167
-    global $exclude_cats;
1167
+	global $exclude_cats;
1168 1168
 
1169
-    $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
1169
+	$cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
1170 1170
 
1171
-    if (!empty($cat_terms)) {
1172
-        $onchange = '';
1173
-        $onchange = ' onchange="show_subcatlist(this.value, this)" ';
1171
+	if (!empty($cat_terms)) {
1172
+		$onchange = '';
1173
+		$onchange = ' onchange="show_subcatlist(this.value, this)" ';
1174 1174
 
1175
-        $option_selected = '';
1176
-        if (!$selected)
1177
-            $option_slected = ' selected="selected" ';
1175
+		$option_selected = '';
1176
+		if (!$selected)
1177
+			$option_slected = ' selected="selected" ';
1178 1178
 
1179
-        echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1179
+		echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1180 1180
 
1181
-        echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1181
+		echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1182 1182
 
1183
-        foreach ($cat_terms as $cat_term) {
1184
-            $option_selected = '';
1185
-            if ($selected == $cat_term->term_id)
1186
-                $option_selected = ' selected="selected" ';
1183
+		foreach ($cat_terms as $cat_term) {
1184
+			$option_selected = '';
1185
+			if ($selected == $cat_term->term_id)
1186
+				$option_selected = ' selected="selected" ';
1187 1187
 
1188
-            // Count child terms
1189
-            $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1190
-            $has_child = !empty( $child_terms ) ? 't' : 'f';
1188
+			// Count child terms
1189
+			$child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1190
+			$has_child = !empty( $child_terms ) ? 't' : 'f';
1191 1191
 
1192
-            echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>';
1193
-        }
1194
-        echo '</select>';
1195
-    }
1192
+			echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>';
1193
+		}
1194
+		echo '</select>';
1195
+	}
1196 1196
 }
1197 1197
 
1198 1198
 /**
@@ -1208,28 +1208,28 @@  discard block
 block discarded – undo
1208 1208
  */
1209 1209
 function geodir_custom_update_messages($messages)
1210 1210
 {
1211
-    global $post, $post_ID;
1212
-
1213
-    $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
1214
-
1215
-    foreach ($post_types as $post_type => $post_object) {
1216
-
1217
-        $messages[$post_type] = array(
1218
-            0 => '', // Unused. Messages start at index 1.
1219
-            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),
1220
-            2 => __('Custom field updated.', 'geodirectory'),
1221
-            3 => __('Custom field deleted.', 'geodirectory'),
1222
-            4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1223
-            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,
1224
-            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),
1225
-            7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1226
-            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),
1227
-            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),
1228
-            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),
1229
-        );
1230
-    }
1231
-
1232
-    return $messages;
1211
+	global $post, $post_ID;
1212
+
1213
+	$post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
1214
+
1215
+	foreach ($post_types as $post_type => $post_object) {
1216
+
1217
+		$messages[$post_type] = array(
1218
+			0 => '', // Unused. Messages start at index 1.
1219
+			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),
1220
+			2 => __('Custom field updated.', 'geodirectory'),
1221
+			3 => __('Custom field deleted.', 'geodirectory'),
1222
+			4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1223
+			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,
1224
+			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),
1225
+			7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1226
+			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),
1227
+			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),
1228
+			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),
1229
+		);
1230
+	}
1231
+
1232
+	return $messages;
1233 1233
 }
1234 1234
 
1235 1235
 
@@ -1244,182 +1244,182 @@  discard block
 block discarded – undo
1244 1244
 function geodir_register_defaults()
1245 1245
 {
1246 1246
 
1247
-    global $wpdb;
1248
-
1249
-    $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1250
-
1251
-    if (!$listing_slug = get_option('geodir_listing_prefix'))
1252
-        $listing_slug = 'places';
1253
-
1254
-    /**
1255
-     * Taxonomies
1256
-     **/
1257
-    //if ( ! taxonomy_exists('gd_place_tags') )
1258
-    {
1259
-
1260
-        $gd_placetags = array();
1261
-        $gd_placetags['object_type'] = 'gd_place';
1262
-        $gd_placetags['listing_slug'] = $listing_slug . '/tags';
1263
-        $gd_placetags['args'] = array(
1264
-            'public' => true,
1265
-            'hierarchical' => false,
1266
-            'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1267
-            'query_var' => true,
1268
-
1269
-            'labels' => array(
1270
-                'name' => __('Place Tags', 'geodirectory'),
1271
-                'singular_name' => __('Place Tag', 'geodirectory'),
1272
-                'search_items' => __('Search Place Tags', 'geodirectory'),
1273
-                'popular_items' => __('Popular Place Tags', 'geodirectory'),
1274
-                'all_items' => __('All Place Tags', 'geodirectory'),
1275
-                'edit_item' => __('Edit Place Tag', 'geodirectory'),
1276
-                'update_item' => __('Update Place Tag', 'geodirectory'),
1277
-                'add_new_item' => __('Add New Place Tag', 'geodirectory'),
1278
-                'new_item_name' => __('New Place Tag Name', 'geodirectory'),
1279
-                'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
1280
-                'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
1281
-                'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
1282
-            ),
1283
-        );
1284
-
1285
-
1286
-        $geodir_taxonomies = get_option('geodir_taxonomies');
1287
-        $geodir_taxonomies['gd_place_tags'] = $gd_placetags;
1288
-        update_option('geodir_taxonomies', $geodir_taxonomies);
1289
-
1290
-
1291
-        // Update post types and delete tmp options
1292
-        flush_rewrite_rules();
1293
-
1294
-    }
1295
-
1296
-    //if ( ! taxonomy_exists('gd_placecategory') )
1297
-    {
1298
-
1299
-        $gd_placecategory = array();
1300
-        $gd_placecategory['object_type'] = 'gd_place';
1301
-        $gd_placecategory['listing_slug'] = $listing_slug;
1302
-        $gd_placecategory['args'] = array(
1303
-            'public' => true,
1304
-            'hierarchical' => true,
1305
-            'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
1306
-            'query_var' => true,
1307
-            'labels' => array(
1308
-                'name' => __('Place Categories', 'geodirectory'),
1309
-                'singular_name' => __('Place Category', 'geodirectory'),
1310
-                'search_items' => __('Search Place Categories', 'geodirectory'),
1311
-                'popular_items' => __('Popular Place Categories', 'geodirectory'),
1312
-                'all_items' => __('All Place Categories', 'geodirectory'),
1313
-                'edit_item' => __('Edit Place Category', 'geodirectory'),
1314
-                'update_item' => __('Update Place Category', 'geodirectory'),
1315
-                'add_new_item' => __('Add New Place Category', 'geodirectory'),
1316
-                'new_item_name' => __('New Place Category', 'geodirectory'),
1317
-                'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
1318
-            ),
1319
-        );
1320
-
1321
-
1322
-        $geodir_taxonomies = get_option('geodir_taxonomies');
1323
-        $geodir_taxonomies['gd_placecategory'] = $gd_placecategory;
1324
-        update_option('geodir_taxonomies', $geodir_taxonomies);
1325
-
1326
-
1327
-        flush_rewrite_rules();
1328
-    }
1329
-
1330
-    /**
1331
-     * Post Types
1332
-     **/
1333
-
1334
-    //if ( ! post_type_exists('gd_place') )
1335
-    {
1336
-
1337
-        $labels = array(
1338
-            'name' => __('Places', 'geodirectory'),
1339
-            'singular_name' => __('Place', 'geodirectory'),
1340
-            'add_new' => __('Add New', 'geodirectory'),
1341
-            'add_new_item' => __('Add New Place', 'geodirectory'),
1342
-            'edit_item' => __('Edit Place', 'geodirectory'),
1343
-            'new_item' => __('New Place', 'geodirectory'),
1344
-            'view_item' => __('View Place', 'geodirectory'),
1345
-            'search_items' => __('Search Places', 'geodirectory'),
1346
-            'not_found' => __('No Place Found', 'geodirectory'),
1347
-            'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
1348
-
1349
-        $place_default = array(
1350
-            'labels' => $labels,
1351
-            'can_export' => true,
1352
-            'capability_type' => 'post',
1353
-            'description' => 'Place post type.',
1354
-            'has_archive' => $listing_slug,
1355
-            'hierarchical' => false,
1356
-            'map_meta_cap' => true,
1357
-            'menu_icon' => $menu_icon,
1358
-            'public' => true,
1359
-            'query_var' => true,
1360
-            'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1361
-            'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1362
-            'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1363
-
1364
-        //Update custom post types
1365
-        $geodir_post_types = get_option('geodir_post_types');
1366
-        $geodir_post_types['gd_place'] = $place_default;
1367
-        update_option('geodir_post_types', $geodir_post_types);
1368
-
1369
-        // Update post types and delete tmp options
1370
-        flush_rewrite_rules();
1371
-    }
1372
-
1373
-
1374
-    geodir_register_taxonomies();
1375
-    geodir_register_post_types();
1376
-
1377
-    //die;
1247
+	global $wpdb;
1248
+
1249
+	$menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1250
+
1251
+	if (!$listing_slug = get_option('geodir_listing_prefix'))
1252
+		$listing_slug = 'places';
1253
+
1254
+	/**
1255
+	 * Taxonomies
1256
+	 **/
1257
+	//if ( ! taxonomy_exists('gd_place_tags') )
1258
+	{
1259
+
1260
+		$gd_placetags = array();
1261
+		$gd_placetags['object_type'] = 'gd_place';
1262
+		$gd_placetags['listing_slug'] = $listing_slug . '/tags';
1263
+		$gd_placetags['args'] = array(
1264
+			'public' => true,
1265
+			'hierarchical' => false,
1266
+			'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1267
+			'query_var' => true,
1268
+
1269
+			'labels' => array(
1270
+				'name' => __('Place Tags', 'geodirectory'),
1271
+				'singular_name' => __('Place Tag', 'geodirectory'),
1272
+				'search_items' => __('Search Place Tags', 'geodirectory'),
1273
+				'popular_items' => __('Popular Place Tags', 'geodirectory'),
1274
+				'all_items' => __('All Place Tags', 'geodirectory'),
1275
+				'edit_item' => __('Edit Place Tag', 'geodirectory'),
1276
+				'update_item' => __('Update Place Tag', 'geodirectory'),
1277
+				'add_new_item' => __('Add New Place Tag', 'geodirectory'),
1278
+				'new_item_name' => __('New Place Tag Name', 'geodirectory'),
1279
+				'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
1280
+				'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
1281
+				'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
1282
+			),
1283
+		);
1284
+
1285
+
1286
+		$geodir_taxonomies = get_option('geodir_taxonomies');
1287
+		$geodir_taxonomies['gd_place_tags'] = $gd_placetags;
1288
+		update_option('geodir_taxonomies', $geodir_taxonomies);
1289
+
1290
+
1291
+		// Update post types and delete tmp options
1292
+		flush_rewrite_rules();
1293
+
1294
+	}
1295
+
1296
+	//if ( ! taxonomy_exists('gd_placecategory') )
1297
+	{
1298
+
1299
+		$gd_placecategory = array();
1300
+		$gd_placecategory['object_type'] = 'gd_place';
1301
+		$gd_placecategory['listing_slug'] = $listing_slug;
1302
+		$gd_placecategory['args'] = array(
1303
+			'public' => true,
1304
+			'hierarchical' => true,
1305
+			'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
1306
+			'query_var' => true,
1307
+			'labels' => array(
1308
+				'name' => __('Place Categories', 'geodirectory'),
1309
+				'singular_name' => __('Place Category', 'geodirectory'),
1310
+				'search_items' => __('Search Place Categories', 'geodirectory'),
1311
+				'popular_items' => __('Popular Place Categories', 'geodirectory'),
1312
+				'all_items' => __('All Place Categories', 'geodirectory'),
1313
+				'edit_item' => __('Edit Place Category', 'geodirectory'),
1314
+				'update_item' => __('Update Place Category', 'geodirectory'),
1315
+				'add_new_item' => __('Add New Place Category', 'geodirectory'),
1316
+				'new_item_name' => __('New Place Category', 'geodirectory'),
1317
+				'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
1318
+			),
1319
+		);
1320
+
1321
+
1322
+		$geodir_taxonomies = get_option('geodir_taxonomies');
1323
+		$geodir_taxonomies['gd_placecategory'] = $gd_placecategory;
1324
+		update_option('geodir_taxonomies', $geodir_taxonomies);
1325
+
1326
+
1327
+		flush_rewrite_rules();
1328
+	}
1329
+
1330
+	/**
1331
+	 * Post Types
1332
+	 **/
1333
+
1334
+	//if ( ! post_type_exists('gd_place') )
1335
+	{
1336
+
1337
+		$labels = array(
1338
+			'name' => __('Places', 'geodirectory'),
1339
+			'singular_name' => __('Place', 'geodirectory'),
1340
+			'add_new' => __('Add New', 'geodirectory'),
1341
+			'add_new_item' => __('Add New Place', 'geodirectory'),
1342
+			'edit_item' => __('Edit Place', 'geodirectory'),
1343
+			'new_item' => __('New Place', 'geodirectory'),
1344
+			'view_item' => __('View Place', 'geodirectory'),
1345
+			'search_items' => __('Search Places', 'geodirectory'),
1346
+			'not_found' => __('No Place Found', 'geodirectory'),
1347
+			'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
1348
+
1349
+		$place_default = array(
1350
+			'labels' => $labels,
1351
+			'can_export' => true,
1352
+			'capability_type' => 'post',
1353
+			'description' => 'Place post type.',
1354
+			'has_archive' => $listing_slug,
1355
+			'hierarchical' => false,
1356
+			'map_meta_cap' => true,
1357
+			'menu_icon' => $menu_icon,
1358
+			'public' => true,
1359
+			'query_var' => true,
1360
+			'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1361
+			'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1362
+			'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1363
+
1364
+		//Update custom post types
1365
+		$geodir_post_types = get_option('geodir_post_types');
1366
+		$geodir_post_types['gd_place'] = $place_default;
1367
+		update_option('geodir_post_types', $geodir_post_types);
1368
+
1369
+		// Update post types and delete tmp options
1370
+		flush_rewrite_rules();
1371
+	}
1372
+
1373
+
1374
+	geodir_register_taxonomies();
1375
+	geodir_register_post_types();
1376
+
1377
+	//die;
1378 1378
 
1379 1379
 }
1380 1380
 
1381 1381
 $gd_wpml_get_languages = "";
1382 1382
 function gd_wpml_get_lang_from_url($url) {
1383
-    global $sitepress, $gd_wpml_get_languages;
1383
+	global $sitepress, $gd_wpml_get_languages;
1384 1384
     
1385
-    if (geodir_is_wpml()) {
1386
-        return $sitepress->get_language_from_url($url);
1387
-    }
1385
+	if (geodir_is_wpml()) {
1386
+		return $sitepress->get_language_from_url($url);
1387
+	}
1388 1388
     
1389
-    if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {
1390
-        return $_REQUEST['lang'];
1391
-    }
1389
+	if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {
1390
+		return $_REQUEST['lang'];
1391
+	}
1392 1392
 
1393
-    $url = str_replace(array("http://","https://"),"",$url);
1393
+	$url = str_replace(array("http://","https://"),"",$url);
1394 1394
 
1395
-    // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1396
-    $site_url = str_replace(array("http://","https://"),"",site_url());
1395
+	// site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1396
+	$site_url = str_replace(array("http://","https://"),"",site_url());
1397 1397
 
1398
-    $url = str_replace($site_url,"",$url);
1398
+	$url = str_replace($site_url,"",$url);
1399 1399
 
1400
-    $segments = explode('/', trim($url, '/'));
1400
+	$segments = explode('/', trim($url, '/'));
1401 1401
 
1402
-    if ($gd_wpml_get_languages) {
1403
-        $langs = $gd_wpml_get_languages;
1404
-    } else {
1405
-        $gd_wpml_get_languages = $sitepress->get_active_languages();
1406
-    }
1402
+	if ($gd_wpml_get_languages) {
1403
+		$langs = $gd_wpml_get_languages;
1404
+	} else {
1405
+		$gd_wpml_get_languages = $sitepress->get_active_languages();
1406
+	}
1407 1407
 
1408
-    if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
1409
-        return $segments[0];
1410
-    }
1408
+	if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
1409
+		return $segments[0];
1410
+	}
1411 1411
 
1412
-    return false;
1412
+	return false;
1413 1413
 }
1414 1414
 
1415 1415
 function gd_wpml_slug_translation_turned_on($post_type) {
1416 1416
 
1417
-    global $sitepress;
1418
-    $settings = $sitepress->get_settings();
1419
-    return isset($settings['posts_slug_translation']['types'][$post_type])
1420
-    && $settings['posts_slug_translation']['types'][$post_type]
1421
-    && isset($settings['posts_slug_translation']['on'])
1422
-    && $settings['posts_slug_translation']['on'];
1417
+	global $sitepress;
1418
+	$settings = $sitepress->get_settings();
1419
+	return isset($settings['posts_slug_translation']['types'][$post_type])
1420
+	&& $settings['posts_slug_translation']['types'][$post_type]
1421
+	&& isset($settings['posts_slug_translation']['on'])
1422
+	&& $settings['posts_slug_translation']['on'];
1423 1423
 }
1424 1424
 
1425 1425
 
@@ -1446,150 +1446,150 @@  discard block
 block discarded – undo
1446 1446
  */
1447 1447
 function geodir_listing_permalink_structure($post_link, $post_obj, $leavename, $sample)
1448 1448
 {
1449
-    //echo $post_link."<br />".$sample ;
1449
+	//echo $post_link."<br />".$sample ;
1450 1450
 
1451 1451
 
1452
-    global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache;
1453
-    if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
1454
-    } elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
1455
-        return $post_link;
1456
-    } else {
1457
-        $orig_post = $post;
1458
-        $post = $post_obj;
1459
-    }
1452
+	global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache;
1453
+	if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
1454
+	} elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
1455
+		return $post_link;
1456
+	} else {
1457
+		$orig_post = $post;
1458
+		$post = $post_obj;
1459
+	}
1460 1460
 
1461
-    if (in_array($post->post_type, geodir_get_posttypes())) {
1461
+	if (in_array($post->post_type, geodir_get_posttypes())) {
1462 1462
 
1463 1463
 
1464
-        $post_types = get_option('geodir_post_types');
1465
-        $slug = $post_types[$post->post_type]['rewrite']['slug'];
1464
+		$post_types = get_option('geodir_post_types');
1465
+		$slug = $post_types[$post->post_type]['rewrite']['slug'];
1466 1466
 
1467
-        // Alter the CPT slug if WPML is set to do so
1468
-        if(function_exists('icl_object_id')){
1469
-            if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1467
+		// Alter the CPT slug if WPML is set to do so
1468
+		if(function_exists('icl_object_id')){
1469
+			if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1470 1470
 
1471
-                $org_slug = $slug;
1472
-                $slug = apply_filters( 'wpml_translate_single_string',
1473
-                    $slug,
1474
-                    'WordPress',
1475
-                    'URL slug: ' . $slug,
1476
-                    $language_code);
1471
+				$org_slug = $slug;
1472
+				$slug = apply_filters( 'wpml_translate_single_string',
1473
+					$slug,
1474
+					'WordPress',
1475
+					'URL slug: ' . $slug,
1476
+					$language_code);
1477 1477
 
1478
-                if(!$slug){$slug = $org_slug;}
1478
+				if(!$slug){$slug = $org_slug;}
1479 1479
 
1480
-            }
1481
-        }
1480
+			}
1481
+		}
1482 1482
 
1483
-        if (function_exists('geodir_location_geo_home_link')) {
1484
-            remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
1485
-        }
1483
+		if (function_exists('geodir_location_geo_home_link')) {
1484
+			remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
1485
+		}
1486 1486
         
1487
-        // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz.
1488
-        $site_url = trailingslashit(get_bloginfo('url'));
1487
+		// Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz.
1488
+		$site_url = trailingslashit(get_bloginfo('url'));
1489 1489
         
1490
-        if (function_exists('geodir_location_geo_home_link')) {
1491
-            add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
1492
-        }
1493
-
1494
-        $fix_url = strpos($post_link, $site_url) === 0 ? true : false;
1495
-        if ($fix_url) {
1496
-            $post_link = str_replace($site_url, '', $post_link);
1497
-        }
1498
-
1499
-        $post_link = trailingslashit(
1500
-            preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1501
-        );
1502
-
1503
-        if ($fix_url) {
1504
-            $post_link = $site_url . $post_link;
1505
-        }
1506
-
1507
-        if (isset($comment_post_cache[$post->ID])) {
1508
-            $post = $comment_post_cache[$post->ID];
1509
-        }
1510
-        if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
1511
-            $post_id = $post->ID;
1512
-            if (isset($orig_post)) {
1513
-                $post = $orig_post;
1514
-            }
1515
-            return $gd_permalink_cache[$post_id];
1516
-        }
1490
+		if (function_exists('geodir_location_geo_home_link')) {
1491
+			add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
1492
+		}
1493
+
1494
+		$fix_url = strpos($post_link, $site_url) === 0 ? true : false;
1495
+		if ($fix_url) {
1496
+			$post_link = str_replace($site_url, '', $post_link);
1497
+		}
1517 1498
 
1518
-        if (!isset($post->post_locations)) {
1519
-            $post_type = $post->post_type;
1520
-            $ID = $post->ID;
1521
-            $post2 = $wpdb->get_row(
1522
-                $wpdb->prepare(
1523
-                    "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1524
-                    array($post->ID)
1525
-                )
1526
-            );
1499
+		$post_link = trailingslashit(
1500
+			preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1501
+		);
1527 1502
 
1528
-            $post = (object)array_merge((array)$post, (array)$post2);
1503
+		if ($fix_url) {
1504
+			$post_link = $site_url . $post_link;
1505
+		}
1529 1506
 
1530
-            $comment_post_cache[$post->ID] = $post;
1531
-        }
1507
+		if (isset($comment_post_cache[$post->ID])) {
1508
+			$post = $comment_post_cache[$post->ID];
1509
+		}
1510
+		if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
1511
+			$post_id = $post->ID;
1512
+			if (isset($orig_post)) {
1513
+				$post = $orig_post;
1514
+			}
1515
+			return $gd_permalink_cache[$post_id];
1516
+		}
1532 1517
 
1518
+		if (!isset($post->post_locations)) {
1519
+			$post_type = $post->post_type;
1520
+			$ID = $post->ID;
1521
+			$post2 = $wpdb->get_row(
1522
+				$wpdb->prepare(
1523
+					"SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1524
+					array($post->ID)
1525
+				)
1526
+			);
1533 1527
 
1528
+			$post = (object)array_merge((array)$post, (array)$post2);
1534 1529
 
1535
-        if (false !== strpos($post_link, '%gd_taxonomy%')) {
1530
+			$comment_post_cache[$post->ID] = $post;
1531
+		}
1536 1532
 
1537
-            if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1538
-                $location_request = '';
1539 1533
 
1540 1534
 
1541
-                if (!empty($post->post_locations)) {
1542
-                    $geodir_arr_locations = explode(',', $post->post_locations);
1543
-                    if (count($geodir_arr_locations) == 3) {
1544
-                        $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1545
-                        $post->city_slug = str_replace(']', '', $post->city_slug);
1546
-                        $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1547
-                        $post->region_slug = str_replace(']', '', $post->region_slug);
1548
-                        $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1549
-                        $post->country_slug = str_replace(']', '', $post->country_slug);
1535
+		if (false !== strpos($post_link, '%gd_taxonomy%')) {
1550 1536
 
1551
-                        $post_location = (object)array('country_slug' => $post->country_slug,
1552
-                            'region_slug' => $post->region_slug,
1553
-                            'city_slug' => $post->city_slug
1554
-                        );
1537
+			if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1538
+				$location_request = '';
1555 1539
 
1556
-                    } else
1557
-                        $post_location = geodir_get_location();
1558 1540
 
1541
+				if (!empty($post->post_locations)) {
1542
+					$geodir_arr_locations = explode(',', $post->post_locations);
1543
+					if (count($geodir_arr_locations) == 3) {
1544
+						$post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1545
+						$post->city_slug = str_replace(']', '', $post->city_slug);
1546
+						$post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1547
+						$post->region_slug = str_replace(']', '', $post->region_slug);
1548
+						$post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1549
+						$post->country_slug = str_replace(']', '', $post->country_slug);
1559 1550
 
1560
-                } else {
1551
+						$post_location = (object)array('country_slug' => $post->country_slug,
1552
+							'region_slug' => $post->region_slug,
1553
+							'city_slug' => $post->city_slug
1554
+						);
1561 1555
 
1562
-                    $post_location_sql = $wpdb->get_results(
1563
-                        $wpdb->prepare(
1564
-                            "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1565
-                            array($post->ID)
1566
-                        )
1567
-                    );
1568
-
1569
-                    if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
1570
-
1571
-                        $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
1572
-                        if (count($geodir_arr_locations) == 3) {
1573
-                            $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1574
-                            $post->city_slug = str_replace(']', '', $post->city_slug);
1575
-                            $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1576
-                            $post->region_slug = str_replace(']', '', $post->region_slug);
1577
-                            $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1578
-                            $post->country_slug = str_replace(']', '', $post->country_slug);
1579
-
1580
-                            $post_location = (object)array('country_slug' => $post->country_slug,
1581
-                                'region_slug' => $post->region_slug,
1582
-                                'city_slug' => $post->city_slug
1583
-                            );
1556
+					} else
1557
+						$post_location = geodir_get_location();
1584 1558
 
1585
-                        }
1586
-                    } else
1587
-                        $post_location = geodir_get_location();
1588
-                }
1589 1559
 
1560
+				} else {
1561
+
1562
+					$post_location_sql = $wpdb->get_results(
1563
+						$wpdb->prepare(
1564
+							"SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1565
+							array($post->ID)
1566
+						)
1567
+					);
1568
+
1569
+					if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
1570
+
1571
+						$geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
1572
+						if (count($geodir_arr_locations) == 3) {
1573
+							$post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
1574
+							$post->city_slug = str_replace(']', '', $post->city_slug);
1575
+							$post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
1576
+							$post->region_slug = str_replace(']', '', $post->region_slug);
1577
+							$post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1578
+							$post->country_slug = str_replace(']', '', $post->country_slug);
1579
+
1580
+							$post_location = (object)array('country_slug' => $post->country_slug,
1581
+								'region_slug' => $post->region_slug,
1582
+								'city_slug' => $post->city_slug
1583
+							);
1584
+
1585
+						}
1586
+					} else
1587
+						$post_location = geodir_get_location();
1588
+				}
1590 1589
 
1591
-                if (!empty($post_location)) {
1592
-                    $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : '';
1590
+
1591
+				if (!empty($post_location)) {
1592
+					$country_slug = isset($post_location->country_slug) ? $post_location->country_slug : '';
1593 1593
 					$region_slug = isset($post_location->region_slug) ? $post_location->region_slug : '';
1594 1594
 					$city_slug = isset($post_location->city_slug) ? $post_location->city_slug : '';
1595 1595
 					
@@ -1607,84 +1607,84 @@  discard block
 block discarded – undo
1607 1607
 					$location_slug[] = $city_slug;
1608 1608
 					
1609 1609
 					$location_request .= implode('/', $location_slug) . '/';
1610
-                }
1611
-            }
1610
+				}
1611
+			}
1612 1612
 
1613
-            if (get_option('geodir_add_categories_url')) {
1613
+			if (get_option('geodir_add_categories_url')) {
1614 1614
 
1615
-                $term_request = '';
1616
-                $taxonomies = geodir_get_taxonomies($post->post_type);
1615
+				$term_request = '';
1616
+				$taxonomies = geodir_get_taxonomies($post->post_type);
1617 1617
 
1618
-                $taxonomies = end($taxonomies);
1618
+				$taxonomies = end($taxonomies);
1619 1619
 
1620
-                if (!empty($post->default_category)) {
1621
-                    $post_terms = $post->default_category;
1622
-                } else {
1623
-                    $post_terms = '';
1620
+				if (!empty($post->default_category)) {
1621
+					$post_terms = $post->default_category;
1622
+				} else {
1623
+					$post_terms = '';
1624 1624
 
1625
-                    if (isset($post->{$taxonomies})) {
1626
-                        $post_terms = explode(",", trim($post->{$taxonomies}, ","));
1627
-                        $post_terms = $post_terms[0];
1628
-                    }
1625
+					if (isset($post->{$taxonomies})) {
1626
+						$post_terms = explode(",", trim($post->{$taxonomies}, ","));
1627
+						$post_terms = $post_terms[0];
1628
+					}
1629 1629
 
1630
-                    if (!$post_terms)
1631
-                        $post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1630
+					if (!$post_terms)
1631
+						$post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1632 1632
 
1633
-                    if (!$post_terms) {
1634
-                        $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
1633
+					if (!$post_terms) {
1634
+						$post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
1635 1635
 
1636
-                        if ($post_terms) {
1637
-                            $post_terms = explode(",", trim($post_terms, ","));
1638
-                            $post_terms = $post_terms[0];
1639
-                        }
1640
-                    }
1641
-                }
1636
+						if ($post_terms) {
1637
+							$post_terms = explode(",", trim($post_terms, ","));
1638
+							$post_terms = $post_terms[0];
1639
+						}
1640
+					}
1641
+				}
1642 1642
 
1643
-                $term = get_term_by('id', $post_terms, $taxonomies);
1643
+				$term = get_term_by('id', $post_terms, $taxonomies);
1644 1644
 
1645
-                if (!empty($term))
1646
-                    $term_request = $term->slug;
1647
-                //$term_request = $term->slug.'/';
1648
-            }
1645
+				if (!empty($term))
1646
+					$term_request = $term->slug;
1647
+				//$term_request = $term->slug.'/';
1648
+			}
1649 1649
 
1650
-            $request_term = '';
1651
-            $listingurl_separator = '';
1652
-            //$detailurl_separator = get_option('geodir_detailurl_separator');
1653
-            $detailurl_separator = '';
1654
-            if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
1655
-                $request_term = $location_request;
1656
-                //$listingurl_separator = get_option('geodir_listingurl_separator');
1657
-                //$request_term .= $listingurl_separator.'/'.$term_request;
1658
-                $request_term .= $term_request;
1650
+			$request_term = '';
1651
+			$listingurl_separator = '';
1652
+			//$detailurl_separator = get_option('geodir_detailurl_separator');
1653
+			$detailurl_separator = '';
1654
+			if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
1655
+				$request_term = $location_request;
1656
+				//$listingurl_separator = get_option('geodir_listingurl_separator');
1657
+				//$request_term .= $listingurl_separator.'/'.$term_request;
1658
+				$request_term .= $term_request;
1659 1659
 
1660
-            } else {
1661
-                if (isset($location_request) && $location_request != '') $request_term = $location_request;
1660
+			} else {
1661
+				if (isset($location_request) && $location_request != '') $request_term = $location_request;
1662 1662
 
1663
-                if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1664
-            }
1665
-            $request_term = trim($request_term, '/');
1663
+				if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1664
+			}
1665
+			$request_term = trim($request_term, '/');
1666 1666
             
1667
-            // Fix with WPML the location terms added twice when CPT slug is translated.
1668
-            if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
1669
-                $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1670
-            }
1667
+			// Fix with WPML the location terms added twice when CPT slug is translated.
1668
+			if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
1669
+				$post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1670
+			}
1671 1671
             
1672
-            if (!empty($request_term))
1673
-                $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1674
-            else
1675
-                $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1676
-            //echo $post_link ;
1677
-        }
1678
-        // temp cache the permalink
1679
-        if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
1680
-            $gd_permalink_cache[$post->ID] = $post_link;
1681
-        }
1682
-    }
1683
-    if (isset($orig_post)) {
1684
-        $post = $orig_post;
1685
-    }
1686
-
1687
-    return $post_link;
1672
+			if (!empty($request_term))
1673
+				$post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1674
+			else
1675
+				$post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1676
+			//echo $post_link ;
1677
+		}
1678
+		// temp cache the permalink
1679
+		if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
1680
+			$gd_permalink_cache[$post->ID] = $post_link;
1681
+		}
1682
+	}
1683
+	if (isset($orig_post)) {
1684
+		$post = $orig_post;
1685
+	}
1686
+
1687
+	return $post_link;
1688 1688
 }
1689 1689
 
1690 1690
 /**
@@ -1700,99 +1700,99 @@  discard block
 block discarded – undo
1700 1700
  * @return string The term link.
1701 1701
  */
1702 1702
 function geodir_term_link($termlink, $term, $taxonomy) {
1703
-    $geodir_taxonomies = geodir_get_taxonomies('', true);
1703
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1704 1704
 
1705
-    if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
1706
-        global $geodir_add_location_url, $gd_session;
1707
-        $include_location = false;
1708
-        $request_term = array();
1709
-        $add_location_url = get_option('geodir_add_location_url');
1710
-        $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
1705
+	if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
1706
+		global $geodir_add_location_url, $gd_session;
1707
+		$include_location = false;
1708
+		$request_term = array();
1709
+		$add_location_url = get_option('geodir_add_location_url');
1710
+		$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
1711 1711
 
1712
-        $listing_slug = geodir_get_listing_slug($taxonomy);
1712
+		$listing_slug = geodir_get_listing_slug($taxonomy);
1713 1713
 
1714
-        if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
1715
-            if ($geodir_add_location_url && $add_location_url) {
1716
-                $include_location = true;
1717
-            }
1718
-        } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
1719
-            $include_location = true;
1720
-        } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
1721
-            $include_location = true;
1722
-        }
1723
-
1724
-        if ($include_location) {
1725
-            global $post;
1714
+		if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
1715
+			if ($geodir_add_location_url && $add_location_url) {
1716
+				$include_location = true;
1717
+			}
1718
+		} elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
1719
+			$include_location = true;
1720
+		} elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
1721
+			$include_location = true;
1722
+		}
1723
+
1724
+		if ($include_location) {
1725
+			global $post;
1726 1726
             
1727
-            $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1727
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1728 1728
             
1729
-            if (geodir_is_page('detail') && isset($post->country_slug)) {
1730
-                $location_terms = array(
1731
-                    'gd_country' => $post->country_slug,
1732
-                    'gd_region' => $post->region_slug,
1733
-                    'gd_city' => $post->city_slug
1734
-                );
1729
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1730
+				$location_terms = array(
1731
+					'gd_country' => $post->country_slug,
1732
+					'gd_region' => $post->region_slug,
1733
+					'gd_city' => $post->city_slug
1734
+				);
1735 1735
                 
1736
-                if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1737
-                    $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1738
-                }
1739
-            } else {
1740
-                $location_terms = geodir_get_current_location_terms('query_vars');
1741
-            }
1736
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1737
+					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1738
+				}
1739
+			} else {
1740
+				$location_terms = geodir_get_current_location_terms('query_vars');
1741
+			}
1742 1742
 
1743
-            $geodir_show_location_url = get_option('geodir_show_location_url');
1744
-            $location_terms = geodir_remove_location_terms($location_terms);
1743
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1744
+			$location_terms = geodir_remove_location_terms($location_terms);
1745 1745
 
1746
-            if (!empty($location_terms)) {
1747
-                $url_separator = '';
1746
+			if (!empty($location_terms)) {
1747
+				$url_separator = '';
1748 1748
 
1749
-                if (get_option('permalink_structure') != '') {
1750
-                    $old_listing_slug = '/' . $listing_slug . '/';
1751
-                    $request_term = implode("/", $location_terms);
1752
-                    $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1749
+				if (get_option('permalink_structure') != '') {
1750
+					$old_listing_slug = '/' . $listing_slug . '/';
1751
+					$request_term = implode("/", $location_terms);
1752
+					$new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1753 1753
 
1754
-                    $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1755
-                } else {
1756
-                    $termlink = geodir_getlink($termlink, $request_term);
1757
-                }
1758
-            }
1759
-        }
1754
+					$termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1755
+				} else {
1756
+					$termlink = geodir_getlink($termlink, $request_term);
1757
+				}
1758
+			}
1759
+		}
1760 1760
 
1761
-        // Alter the CPT slug is WPML is set to do so
1762
-        /* we can replace this with the below function
1761
+		// Alter the CPT slug is WPML is set to do so
1762
+		/* we can replace this with the below function
1763 1763
         if(function_exists('icl_object_id')){
1764 1764
             global $sitepress;
1765 1765
             $post_type = str_replace("category","",$taxonomy);
1766 1766
             $termlink = $sitepress->post_type_archive_link_filter( $termlink, $post_type);
1767 1767
         }*/
1768 1768
 
1769
-        // Alter the CPT slug if WPML is set to do so
1770
-        if (function_exists('icl_object_id')) {
1771
-            $post_types = get_option('geodir_post_types');
1772
-            $post_type = str_replace("category","",$taxonomy);
1773
-            $post_type = str_replace("_tags","",$post_type);
1774
-            $slug = $post_types[$post_type]['rewrite']['slug'];
1775
-            if (gd_wpml_slug_translation_turned_on($post_type)) {
1776
-                global $sitepress;
1777
-                $default_lang = $sitepress->get_default_language();
1778
-                $language_code = gd_wpml_get_lang_from_url($termlink);
1779
-                if (!$language_code ) {
1780
-                    $language_code  = $default_lang;
1781
-                }
1769
+		// Alter the CPT slug if WPML is set to do so
1770
+		if (function_exists('icl_object_id')) {
1771
+			$post_types = get_option('geodir_post_types');
1772
+			$post_type = str_replace("category","",$taxonomy);
1773
+			$post_type = str_replace("_tags","",$post_type);
1774
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1775
+			if (gd_wpml_slug_translation_turned_on($post_type)) {
1776
+				global $sitepress;
1777
+				$default_lang = $sitepress->get_default_language();
1778
+				$language_code = gd_wpml_get_lang_from_url($termlink);
1779
+				if (!$language_code ) {
1780
+					$language_code  = $default_lang;
1781
+				}
1782 1782
 
1783
-                $org_slug = $slug;
1784
-                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1783
+				$org_slug = $slug;
1784
+				$slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1785 1785
 
1786
-                if (!$slug) {
1787
-                    $slug = $org_slug;
1788
-                }
1786
+				if (!$slug) {
1787
+					$slug = $org_slug;
1788
+				}
1789 1789
 
1790
-                $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1791
-            }
1792
-        }
1793
-    }
1790
+				$termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1791
+			}
1792
+		}
1793
+	}
1794 1794
     
1795
-    return $termlink;
1795
+	return $termlink;
1796 1796
 }
1797 1797
 
1798 1798
 /**
@@ -1818,14 +1818,14 @@  discard block
 block discarded – undo
1818 1818
 	if (in_array($post_type, geodir_get_posttypes())) {
1819 1819
 		if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
1820 1820
 			if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1821
-                $location_terms = array(
1822
-                    'gd_country' => $post->country_slug,
1823
-                    'gd_region' => $post->region_slug,
1824
-                    'gd_city' => $post->city_slug
1825
-                );
1826
-            } else {
1827
-                $location_terms = geodir_get_current_location_terms('query_vars');
1828
-            }
1821
+				$location_terms = array(
1822
+					'gd_country' => $post->country_slug,
1823
+					'gd_region' => $post->region_slug,
1824
+					'gd_city' => $post->city_slug
1825
+				);
1826
+			} else {
1827
+				$location_terms = geodir_get_current_location_terms('query_vars');
1828
+			}
1829 1829
 			
1830 1830
 			$location_terms = geodir_remove_location_terms($location_terms);
1831 1831
 			
@@ -1857,17 +1857,17 @@  discard block
 block discarded – undo
1857 1857
  * @return void|string Label.
1858 1858
  */
1859 1859
 function get_post_type_singular_label($post_type, $echo = false, $translate = false) {
1860
-    $obj_post_type = get_post_type_object($post_type);
1861
-    if (!is_object($obj_post_type)) {
1862
-        return;
1863
-    }
1860
+	$obj_post_type = get_post_type_object($post_type);
1861
+	if (!is_object($obj_post_type)) {
1862
+		return;
1863
+	}
1864 1864
     
1865
-    $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1865
+	$label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1866 1866
     
1867
-    if ($echo)
1868
-        echo $label;
1869
-    else
1870
-        return $label;
1867
+	if ($echo)
1868
+		echo $label;
1869
+	else
1870
+		return $label;
1871 1871
 }
1872 1872
 
1873 1873
 /**
@@ -1882,19 +1882,19 @@  discard block
 block discarded – undo
1882 1882
  * @return void|string Label.
1883 1883
  */
1884 1884
 function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
1885
-    $all_postypes = geodir_get_posttypes();
1885
+	$all_postypes = geodir_get_posttypes();
1886 1886
 
1887
-    if (!in_array($post_type, $all_postypes))
1888
-        return false;
1887
+	if (!in_array($post_type, $all_postypes))
1888
+		return false;
1889 1889
 
1890
-    $obj_post_type = get_post_type_object($post_type);
1890
+	$obj_post_type = get_post_type_object($post_type);
1891 1891
     
1892
-    $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1892
+	$label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1893 1893
     
1894
-    if ($echo)
1895
-        echo $label;
1896
-    else
1897
-        return $label;
1894
+	if ($echo)
1895
+		echo $label;
1896
+	else
1897
+		return $label;
1898 1898
 }
1899 1899
 
1900 1900
 /**
@@ -1912,51 +1912,51 @@  discard block
 block discarded – undo
1912 1912
  */
1913 1913
 function geodir_term_exists($term, $taxonomy = '', $parent = 0)
1914 1914
 {
1915
-    global $wpdb;
1916
-
1917
-    $select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1918
-    $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 ";
1919
-
1920
-    if (is_int($term)) {
1921
-        if (0 == $term)
1922
-            return 0;
1923
-        $where = 't.term_id = %d';
1924
-        if (!empty($taxonomy))
1925
-            return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1926
-        else
1927
-            return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1928
-    }
1915
+	global $wpdb;
1916
+
1917
+	$select = "SELECT term_id FROM $wpdb->terms as t WHERE ";
1918
+	$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 ";
1919
+
1920
+	if (is_int($term)) {
1921
+		if (0 == $term)
1922
+			return 0;
1923
+		$where = 't.term_id = %d';
1924
+		if (!empty($taxonomy))
1925
+			return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1926
+		else
1927
+			return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1928
+	}
1929 1929
 
1930
-    $term = trim(wp_unslash($term));
1930
+	$term = trim(wp_unslash($term));
1931 1931
 
1932
-    if ('' === $slug = sanitize_title($term))
1933
-        return 0;
1932
+	if ('' === $slug = sanitize_title($term))
1933
+		return 0;
1934 1934
 
1935
-    $where = 't.slug = %s';
1935
+	$where = 't.slug = %s';
1936 1936
 
1937
-    $where_fields = array($slug);
1938
-    if (!empty($taxonomy)) {
1939
-        $parent = (int)$parent;
1940
-        if ($parent > 0) {
1941
-            $where_fields[] = $parent;
1942
-            $else_where_fields[] = $parent;
1943
-            $where .= ' AND tt.parent = %d';
1937
+	$where_fields = array($slug);
1938
+	if (!empty($taxonomy)) {
1939
+		$parent = (int)$parent;
1940
+		if ($parent > 0) {
1941
+			$where_fields[] = $parent;
1942
+			$else_where_fields[] = $parent;
1943
+			$where .= ' AND tt.parent = %d';
1944 1944
 
1945
-        }
1945
+		}
1946 1946
 
1947
-        $where_fields[] = $taxonomy;
1947
+		$where_fields[] = $taxonomy;
1948 1948
 
1949 1949
 
1950
-        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))
1951
-            return $result;
1950
+		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))
1951
+			return $result;
1952 1952
 
1953
-        return false;
1954
-    }
1953
+		return false;
1954
+	}
1955 1955
 
1956
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1957
-        return $result;
1956
+	if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1957
+		return $result;
1958 1958
 
1959
-    return false;
1959
+	return false;
1960 1960
 }
1961 1961
 
1962 1962
 /**
@@ -1968,7 +1968,7 @@  discard block
 block discarded – undo
1968 1968
 function geodir_get_term_icon_rebuild()
1969 1969
 {
1970 1970
 
1971
-    update_option('gd_term_icons', '');
1971
+	update_option('gd_term_icons', '');
1972 1972
 
1973 1973
 }
1974 1974
 
@@ -1986,61 +1986,61 @@  discard block
 block discarded – undo
1986 1986
  */
1987 1987
 function geodir_get_term_icon($term_id = false, $rebuild = false)
1988 1988
 {
1989
-    global $wpdb;
1990
-    if (!$rebuild) {
1991
-        $terms_icons = get_option('gd_term_icons');
1992
-    } else {
1993
-        $terms_icons = array();
1994
-    }
1995
-
1996
-    if (empty($terms_icons)) {
1997
-        $terms_icons = array();
1998
-        $default_icon_url = get_option('geodir_default_marker_icon');
1999
-        $taxonomy = geodir_get_taxonomies();
2000
-        $post_types = geodir_get_posttypes();
2001
-        $tax_arr = array();
2002
-        foreach ($post_types as $post_type) {
2003
-            $tax_arr[] = "'" . $post_type . "category'";
2004
-        }
2005
-        $tax_c = implode(',', $tax_arr);
2006
-        $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2007
-        //$terms = get_terms( $taxonomy );
2008
-
2009
-        if($terms) {
2010
-            foreach ($terms as $term) {
2011
-                $post_type = str_replace("category", "", $term->taxonomy);
2012
-                $a_terms[$post_type][] = $term;
1989
+	global $wpdb;
1990
+	if (!$rebuild) {
1991
+		$terms_icons = get_option('gd_term_icons');
1992
+	} else {
1993
+		$terms_icons = array();
1994
+	}
2013 1995
 
2014
-            }
2015
-        }
1996
+	if (empty($terms_icons)) {
1997
+		$terms_icons = array();
1998
+		$default_icon_url = get_option('geodir_default_marker_icon');
1999
+		$taxonomy = geodir_get_taxonomies();
2000
+		$post_types = geodir_get_posttypes();
2001
+		$tax_arr = array();
2002
+		foreach ($post_types as $post_type) {
2003
+			$tax_arr[] = "'" . $post_type . "category'";
2004
+		}
2005
+		$tax_c = implode(',', $tax_arr);
2006
+		$terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2007
+		//$terms = get_terms( $taxonomy );
2016 2008
 
2017
-        if($a_terms) {
2018
-            foreach ($a_terms as $pt => $t2) {
2009
+		if($terms) {
2010
+			foreach ($terms as $term) {
2011
+				$post_type = str_replace("category", "", $term->taxonomy);
2012
+				$a_terms[$post_type][] = $term;
2019 2013
 
2020
-                foreach ($t2 as $term) {
2021
-                    $term_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt);
2022
-                    if ($term_icon) {
2023
-                        $term_icon_url = $term_icon["src"];
2024
-                    } else {
2025
-                        $term_icon_url = $default_icon_url;
2026
-                    }
2027
-                    $terms_icons[$term->term_id] = $term_icon_url;
2028
-                }
2029
-            }
2030
-        }
2014
+			}
2015
+		}
2031 2016
 
2032
-        update_option('gd_term_icons', $terms_icons);
2033
-    }
2017
+		if($a_terms) {
2018
+			foreach ($a_terms as $pt => $t2) {
2034 2019
 
2035
-    if ($term_id && isset($terms_icons[$term_id])) {
2036
-        return $terms_icons[$term_id];
2037
-    } elseif ($term_id && !isset($terms_icons[$term_id])) {
2038
-        return get_option('geodir_default_marker_icon');
2039
-    }
2020
+				foreach ($t2 as $term) {
2021
+					$term_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt);
2022
+					if ($term_icon) {
2023
+						$term_icon_url = $term_icon["src"];
2024
+					} else {
2025
+						$term_icon_url = $default_icon_url;
2026
+					}
2027
+					$terms_icons[$term->term_id] = $term_icon_url;
2028
+				}
2029
+			}
2030
+		}
2031
+
2032
+		update_option('gd_term_icons', $terms_icons);
2033
+	}
2040 2034
 
2041
-    if (is_ssl()) {
2042
-        $terms_icons = str_replace("http:","https:",$terms_icons );
2043
-    }
2035
+	if ($term_id && isset($terms_icons[$term_id])) {
2036
+		return $terms_icons[$term_id];
2037
+	} elseif ($term_id && !isset($terms_icons[$term_id])) {
2038
+		return get_option('geodir_default_marker_icon');
2039
+	}
2040
+
2041
+	if (is_ssl()) {
2042
+		$terms_icons = str_replace("http:","https:",$terms_icons );
2043
+	}
2044 2044
 
2045
-    return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
2045
+	return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
2046 2046
 }
2047 2047
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +124 added lines, -124 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
-										' . __(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
+										' . __(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
-															' . __(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
+															' . __(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="' . $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="'.$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
 
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
 
408 408
     if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
409 409
         if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
410
-            $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
410
+            $geodir_post_type = get_post_type((int) $_REQUEST['pid']);
411 411
         elseif (isset($_REQUEST['listing_type']))
412 412
             $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
413 413
     }
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
     if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
426 426
         $geodir_post_type = '';
427 427
 
428
-    if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
428
+    if (defined('DOING_AJAX') && isset($_REQUEST['stype'])) {
429 429
         $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
430 430
     }
431 431
 
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
      *
436 436
      * @since 1.6.9
437 437
      */
438
-    return apply_filters('geodir_get_current_posttype',$geodir_post_type);
438
+    return apply_filters('geodir_get_current_posttype', $geodir_post_type);
439 439
 }
440 440
 
441 441
 /**
@@ -449,18 +449,18 @@  discard block
 block discarded – undo
449 449
  */
450 450
 function geodir_get_default_posttype()
451 451
 {
452
-    $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) );
452
+    $post_types = apply_filters('geodir_get_default_posttype', geodir_get_posttypes('object'));
453 453
 
454 454
     $stype = false;
455
-    foreach ( $post_types as $post_type => $info ) {
455
+    foreach ($post_types as $post_type => $info) {
456 456
         global $wpdb;
457
-        $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
458
-        if ( $has_posts ) {
457
+        $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
458
+        if ($has_posts) {
459 459
             $stype = $post_type; break;
460 460
         }
461 461
     }
462 462
 
463
-    if(!$stype){
463
+    if (!$stype) {
464 464
         $stype = 'gd_place';
465 465
     }
466 466
 
@@ -485,14 +485,14 @@  discard block
 block discarded – undo
485 485
         switch ($output):
486 486
             case 'object':
487 487
             case 'Object':
488
-                $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types;
488
+                $post_types = json_decode(json_encode($post_types), FALSE); //(object)$post_types;
489 489
                 break;
490 490
             case 'array':
491 491
             case 'Array':
492
-                $post_types = (array)$post_types;
492
+                $post_types = (array) $post_types;
493 493
                 break;
494 494
 			case 'options':
495
-                $post_types = (array)$post_types;
495
+                $post_types = (array) $post_types;
496 496
 				
497 497
 				$options = array();
498 498
 				if (!empty($post_types)) {
@@ -610,15 +610,15 @@  discard block
 block discarded – undo
610 610
 
611 611
         $categories = get_terms($taxonomies);
612 612
 
613
-        $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
613
+        $html .= '<option value="0">'.__('All', 'geodirectory').'</option>';
614 614
 
615 615
         foreach ($categories as $category_obj) {
616 616
             $select_opt = '';
617 617
             if ($selected == $category_obj->term_id) {
618 618
                 $select_opt = 'selected="selected"';
619 619
             }
620
-            $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">'
621
-                . ucfirst($category_obj->name) . '</option>';
620
+            $html .= '<option '.$select_opt.' value="'.$category_obj->term_id.'">'
621
+                . ucfirst($category_obj->name).'</option>';
622 622
         }
623 623
 
624 624
         if ($echo)
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
     } elseif (isset($wp_query->tax_query->queries)) {
687 687
         $tax_arr = $wp_query->tax_query->queries;
688 688
         //if tax query has 'relation' set then it will break wp_list_pluck so we remove it
689
-        if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
689
+        if (isset($tax_arr['relation'])) {unset($tax_arr['relation']); }
690 690
         $taxonomies = wp_list_pluck($tax_arr, 'taxonomy');
691 691
     }
692 692
 
@@ -740,7 +740,7 @@  discard block
 block discarded – undo
740 740
 
741 741
             if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
742 742
                 if ($cat_parent == 0) {
743
-                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display;
743
+                    $list_class = 'main_list gd-parent-cats-list gd-cats-display-'.$cat_display;
744 744
                     $main_list_class = 'class="main_list_selecter"';
745 745
                 } else {
746 746
                     //$display = 'display:none';
@@ -750,7 +750,7 @@  discard block
 block discarded – undo
750 750
 
751 751
             if ($cat_display == 'checkbox' || $cat_display == 'radio') {
752 752
                 $p = 0;
753
-                $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">';
753
+                $out = '<div class="'.$list_class.' gd-cat-row-'.$cat_parent.'" style="margin-left:'.$p.'px;'.$display.';">';
754 754
             }
755 755
 
756 756
             foreach ($cat_terms as $cat_term) {
@@ -765,12 +765,12 @@  discard block
 block discarded – undo
765 765
                 }
766 766
 
767 767
                 if ($cat_display == 'radio')
768
-                    $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
768
+                    $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="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.ucfirst($cat_term->name).'</span>';
769 769
                 elseif ($cat_display == 'select' || $cat_display == 'multiselect')
770
-                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
770
+                    $out .= '<option '.$main_list_class.' style="margin-left:'.$p.'px;" alt="'.$cat_term->taxonomy.'" title="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' >'.$term_check.ucfirst($cat_term->name).'</option>';
771 771
 
772 772
                 else {
773
-                    $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
773
+                    $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="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.ucfirst($cat_term->name).'</span>';
774 774
                 }
775 775
 
776 776
                 // Call recurson to print sub cats
@@ -809,7 +809,7 @@  discard block
 block discarded – undo
809 809
             $cat_exclude = serialize($exclude_cats);
810 810
 
811 811
         if (isset($_REQUEST['backandedit'])) {
812
-            $post = (object)$gd_session->get('listing');
812
+            $post = (object) $gd_session->get('listing');
813 813
 
814 814
             if (!is_array($post->post_category[$cat_taxonomy]))
815 815
                 $post_category = $post->post_category[$cat_taxonomy];
@@ -841,7 +841,7 @@  discard block
 block discarded – undo
841 841
 
842 842
             if (!empty($post_category)) {
843 843
                 $cat1 = array_filter(explode(',', $post_category));
844
-                $post_category = ',' . implode(',', $cat1) . ',';
844
+                $post_category = ','.implode(',', $cat1).',';
845 845
 
846 846
             }
847 847
 
@@ -852,7 +852,7 @@  discard block
 block discarded – undo
852 852
                 foreach ($post_category_upd as $cat) {
853 853
 
854 854
                     if (!in_array($cat, $exclude_cats) && $cat != '') {
855
-                        $post_category_change .= ',' . $cat;
855
+                        $post_category_change .= ','.$cat;
856 856
                     }
857 857
                 }
858 858
                 $post_category = $post_category_change;
@@ -864,11 +864,11 @@  discard block
 block discarded – undo
864 864
             }
865 865
         }
866 866
 
867
-        echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']"  />';
867
+        echo '<input type="hidden" id="cat_limit" value="'.$cat_limit.'" name="cat_limit['.$cat_taxonomy.']"  />';
868 868
 
869
-        echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']"  />';
869
+        echo '<input type="hidden" id="post_category" value="'.$post_category.'" name="post_category['.$cat_taxonomy.']"  />';
870 870
 
871
-        echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']"  />';
871
+        echo '<input type="hidden" id="post_category_str" value="'.$post_category_str.'" name="post_category_str['.$cat_taxonomy.']"  />';
872 872
 
873 873
 
874 874
         ?>
@@ -887,14 +887,14 @@  discard block
 block discarded – undo
887 887
 
888 888
             function show_subcatlist(main_cat, catObj) {
889 889
                 if (main_cat != '') {
890
-					var url = '<?php echo geodir_get_ajax_url();?>';
891
-                    var cat_taxonomy = '<?php echo $cat_taxonomy;?>';
892
-                    var cat_exclude = '<?php echo base64_encode($cat_exclude);?>';
890
+					var url = '<?php echo geodir_get_ajax_url(); ?>';
891
+                    var cat_taxonomy = '<?php echo $cat_taxonomy; ?>';
892
+                    var cat_exclude = '<?php echo base64_encode($cat_exclude); ?>';
893 893
                     var cat_limit = jQuery('#' + cat_taxonomy).find('#cat_limit').val();
894
-					<?php if ((int)$cat_limit > 0) { ?>
894
+					<?php if ((int) $cat_limit > 0) { ?>
895 895
 					var selected = parseInt(jQuery('#' + cat_taxonomy).find('.cat_sublist > div.post_catlist_item').length);
896 896
 					if (cat_limit != '' && selected > 0 && selected >= cat_limit && cat_limit != 0) {
897
-						alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int)$cat_limit));?>");
897
+						alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int) $cat_limit)); ?>");
898 898
 						return false;
899 899
 					}
900 900
 					<?php } ?>
@@ -933,7 +933,7 @@  discard block
 block discarded – undo
933 933
             }
934 934
 
935 935
             function update_listing_cat(el) {
936
-                var cat_taxonomy = '<?php echo $cat_taxonomy;?>';
936
+                var cat_taxonomy = '<?php echo $cat_taxonomy; ?>';
937 937
                 var cat_ids = '';
938 938
                 var main_cat = '';
939 939
                 var sub_cat = '';
@@ -1014,7 +1014,7 @@  discard block
 block discarded – undo
1014 1014
         <div class="main_cat_list" style=" <?php if (isset($style)) {
1015 1015
             echo $style;
1016 1016
         }?> ">
1017
-            <?php geodir_get_catlist($cat_taxonomy, 0);  // print main categories list
1017
+            <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list
1018 1018
             ?>
1019 1019
         </div>
1020 1020
     <?php
@@ -1041,9 +1041,9 @@  discard block
 block discarded – undo
1041 1041
     if ($exclude != '') {
1042 1042
         $exclude_cats = maybe_unserialize(base64_decode($exclude));
1043 1043
 
1044
-        if(is_array( $exclude_cats)){
1045
-            $exclude_cats = array_map( 'intval', $exclude_cats );
1046
-        }else{
1044
+        if (is_array($exclude_cats)) {
1045
+            $exclude_cats = array_map('intval', $exclude_cats);
1046
+        } else {
1047 1047
             $exclude_cats = intval($exclude_cats);
1048 1048
         }
1049 1049
 
@@ -1057,25 +1057,25 @@  discard block
 block discarded – undo
1057 1057
         <?php $main_cat = get_term($parrent, $request_taxonomy); ?>
1058 1058
 
1059 1059
         <div class="post_catlist_item" style="border:1px solid #CCCCCC; margin:5px auto; padding:5px;">
1060
-            <img alt="move icon" src="<?php echo geodir_plugin_url() . '/geodirectory-assets/images/move.png';?>"
1060
+            <img alt="move icon" src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png'; ?>"
1061 1061
                  onclick="jQuery(this).closest('div').remove();update_listing_cat(this);" align="right"/>
1062 1062
             <?php /* ?>
1063 1063
 		<img src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png';?>" onclick="jQuery(this).closest('div').remove();show_subcatlist();" align="right" /> 
1064 1064
 		<?php */ ?>
1065 1065
 
1066
-            <input type="checkbox" value="<?php echo $main_cat->term_id;?>" class="listing_main_cat"
1066
+            <input type="checkbox" value="<?php echo $main_cat->term_id; ?>" class="listing_main_cat"
1067 1067
                    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()"
1068 1068
                    checked="checked" disabled="disabled"/>
1069 1069
        <span> 
1070
-        <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
1070
+        <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
1071 1071
         </span>
1072 1072
             <br/>
1073 1073
 
1074 1074
             <div class="post_default_category">
1075
-                <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id;?>"
1076
-                       onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" ';?>   />
1075
+                <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id; ?>"
1076
+                       onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" '; ?>   />
1077 1077
         <span> 
1078
-        <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
1078
+        <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
1079 1079
         </span>
1080 1080
             </div>
1081 1081
 
@@ -1108,7 +1108,7 @@  discard block
 block discarded – undo
1108 1108
         $post_cat_str = $post_categories[$request_taxonomy];
1109 1109
         $post_cat_array = explode("#", $post_cat_str);
1110 1110
         if (is_array($post_cat_array)) {
1111
-            $post_cat_array = array_unique( $post_cat_array );
1111
+            $post_cat_array = array_unique($post_cat_array);
1112 1112
 
1113 1113
 			foreach ($post_cat_array as $post_cat_html) {
1114 1114
 
@@ -1123,7 +1123,7 @@  discard block
 block discarded – undo
1123 1123
                 }
1124 1124
                 $post_sub_catid = '';
1125 1125
                 if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1126
-                    $post_sub_catid = (int)$post_cat_info[1];
1126
+                    $post_sub_catid = (int) $post_cat_info[1];
1127 1127
                 }
1128 1128
 
1129 1129
                 geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
@@ -1144,7 +1144,7 @@  discard block
 block discarded – undo
1144 1144
             }
1145 1145
 
1146 1146
             if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
1147
-                $post_sub_catid = (int)$post_cat_info[1];
1147
+                $post_sub_catid = (int) $post_cat_info[1];
1148 1148
             }
1149 1149
 
1150 1150
             geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default);
@@ -1176,9 +1176,9 @@  discard block
 block discarded – undo
1176 1176
         if (!$selected)
1177 1177
             $option_slected = ' selected="selected" ';
1178 1178
 
1179
-        echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1179
+        echo '<select field_type="select" id="'.sanitize_text_field($cat_taxonomy).'" class="chosen_select" '.$onchange.' option-ajaxChosen="false" >';
1180 1180
 
1181
-        echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
1181
+        echo '<option value="" '.$option_selected.' >'.__('Select Category', 'geodirectory').'</option>';
1182 1182
 
1183 1183
         foreach ($cat_terms as $cat_term) {
1184 1184
             $option_selected = '';
@@ -1186,10 +1186,10 @@  discard block
 block discarded – undo
1186 1186
                 $option_selected = ' selected="selected" ';
1187 1187
 
1188 1188
             // Count child terms
1189
-            $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
1190
-            $has_child = !empty( $child_terms ) ? 't' : 'f';
1189
+            $child_terms = get_terms($cat_taxonomy, array('parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1));
1190
+            $has_child = !empty($child_terms) ? 't' : 'f';
1191 1191
 
1192
-            echo '<option  ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>';
1192
+            echo '<option  '.$option_selected.' alt="'.$cat_term->taxonomy.'" title="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" _hc="'.$has_child.'" >'.ucfirst($cat_term->name).'</option>';
1193 1193
         }
1194 1194
         echo '</select>';
1195 1195
     }
@@ -1220,7 +1220,7 @@  discard block
 block discarded – undo
1220 1220
             2 => __('Custom field updated.', 'geodirectory'),
1221 1221
             3 => __('Custom field deleted.', 'geodirectory'),
1222 1222
             4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
1223
-            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,
1223
+            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,
1224 1224
             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),
1225 1225
             7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
1226 1226
             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),
@@ -1246,7 +1246,7 @@  discard block
 block discarded – undo
1246 1246
 
1247 1247
     global $wpdb;
1248 1248
 
1249
-    $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1249
+    $menu_icon = geodir_plugin_url().'/geodirectory-assets/images/favicon.ico';
1250 1250
 
1251 1251
     if (!$listing_slug = get_option('geodir_listing_prefix'))
1252 1252
         $listing_slug = 'places';
@@ -1259,11 +1259,11 @@  discard block
 block discarded – undo
1259 1259
 
1260 1260
         $gd_placetags = array();
1261 1261
         $gd_placetags['object_type'] = 'gd_place';
1262
-        $gd_placetags['listing_slug'] = $listing_slug . '/tags';
1262
+        $gd_placetags['listing_slug'] = $listing_slug.'/tags';
1263 1263
         $gd_placetags['args'] = array(
1264 1264
             'public' => true,
1265 1265
             'hierarchical' => false,
1266
-            'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
1266
+            'rewrite' => array('slug' => $listing_slug.'/tags', 'with_front' => false, 'hierarchical' => true),
1267 1267
             'query_var' => true,
1268 1268
 
1269 1269
             'labels' => array(
@@ -1357,7 +1357,7 @@  discard block
 block discarded – undo
1357 1357
             'menu_icon' => $menu_icon,
1358 1358
             'public' => true,
1359 1359
             'query_var' => true,
1360
-            'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1360
+            'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
1361 1361
             'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
1362 1362
             'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
1363 1363
 
@@ -1390,12 +1390,12 @@  discard block
 block discarded – undo
1390 1390
         return $_REQUEST['lang'];
1391 1391
     }
1392 1392
 
1393
-    $url = str_replace(array("http://","https://"),"",$url);
1393
+    $url = str_replace(array("http://", "https://"), "", $url);
1394 1394
 
1395 1395
     // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
1396
-    $site_url = str_replace(array("http://","https://"),"",site_url());
1396
+    $site_url = str_replace(array("http://", "https://"), "", site_url());
1397 1397
 
1398
-    $url = str_replace($site_url,"",$url);
1398
+    $url = str_replace($site_url, "", $url);
1399 1399
 
1400 1400
     $segments = explode('/', trim($url, '/'));
1401 1401
 
@@ -1465,17 +1465,17 @@  discard block
 block discarded – undo
1465 1465
         $slug = $post_types[$post->post_type]['rewrite']['slug'];
1466 1466
 
1467 1467
         // Alter the CPT slug if WPML is set to do so
1468
-        if(function_exists('icl_object_id')){
1469
-            if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1468
+        if (function_exists('icl_object_id')) {
1469
+            if (gd_wpml_slug_translation_turned_on($post->post_type) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
1470 1470
 
1471 1471
                 $org_slug = $slug;
1472
-                $slug = apply_filters( 'wpml_translate_single_string',
1472
+                $slug = apply_filters('wpml_translate_single_string',
1473 1473
                     $slug,
1474 1474
                     'WordPress',
1475
-                    'URL slug: ' . $slug,
1475
+                    'URL slug: '.$slug,
1476 1476
                     $language_code);
1477 1477
 
1478
-                if(!$slug){$slug = $org_slug;}
1478
+                if (!$slug) {$slug = $org_slug; }
1479 1479
 
1480 1480
             }
1481 1481
         }
@@ -1497,11 +1497,11 @@  discard block
 block discarded – undo
1497 1497
         }
1498 1498
 
1499 1499
         $post_link = trailingslashit(
1500
-            preg_replace(  "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 )
1500
+            preg_replace("/".preg_quote($slug, "/")."/", $slug."/%gd_taxonomy%", $post_link, 1)
1501 1501
         );
1502 1502
 
1503 1503
         if ($fix_url) {
1504
-            $post_link = $site_url . $post_link;
1504
+            $post_link = $site_url.$post_link;
1505 1505
         }
1506 1506
 
1507 1507
         if (isset($comment_post_cache[$post->ID])) {
@@ -1520,12 +1520,12 @@  discard block
 block discarded – undo
1520 1520
             $ID = $post->ID;
1521 1521
             $post2 = $wpdb->get_row(
1522 1522
                 $wpdb->prepare(
1523
-                    "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1523
+                    "SELECT * from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ",
1524 1524
                     array($post->ID)
1525 1525
                 )
1526 1526
             );
1527 1527
 
1528
-            $post = (object)array_merge((array)$post, (array)$post2);
1528
+            $post = (object) array_merge((array) $post, (array) $post2);
1529 1529
 
1530 1530
             $comment_post_cache[$post->ID] = $post;
1531 1531
         }
@@ -1534,7 +1534,7 @@  discard block
 block discarded – undo
1534 1534
 
1535 1535
         if (false !== strpos($post_link, '%gd_taxonomy%')) {
1536 1536
 
1537
-            if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
1537
+            if (apply_filters("geodir_add_location_url_to_url", get_option('geodir_add_location_url'), $post->post_type, $post)) {
1538 1538
                 $location_request = '';
1539 1539
 
1540 1540
 
@@ -1548,7 +1548,7 @@  discard block
 block discarded – undo
1548 1548
                         $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1549 1549
                         $post->country_slug = str_replace(']', '', $post->country_slug);
1550 1550
 
1551
-                        $post_location = (object)array('country_slug' => $post->country_slug,
1551
+                        $post_location = (object) array('country_slug' => $post->country_slug,
1552 1552
                             'region_slug' => $post->region_slug,
1553 1553
                             'city_slug' => $post->city_slug
1554 1554
                         );
@@ -1561,7 +1561,7 @@  discard block
 block discarded – undo
1561 1561
 
1562 1562
                     $post_location_sql = $wpdb->get_results(
1563 1563
                         $wpdb->prepare(
1564
-                            "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ",
1564
+                            "SELECT post_locations from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ",
1565 1565
                             array($post->ID)
1566 1566
                         )
1567 1567
                     );
@@ -1577,7 +1577,7 @@  discard block
 block discarded – undo
1577 1577
                             $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
1578 1578
                             $post->country_slug = str_replace(']', '', $post->country_slug);
1579 1579
 
1580
-                            $post_location = (object)array('country_slug' => $post->country_slug,
1580
+                            $post_location = (object) array('country_slug' => $post->country_slug,
1581 1581
                                 'region_slug' => $post->region_slug,
1582 1582
                                 'city_slug' => $post->city_slug
1583 1583
                             );
@@ -1606,7 +1606,7 @@  discard block
 block discarded – undo
1606 1606
 					}
1607 1607
 					$location_slug[] = $city_slug;
1608 1608
 					
1609
-					$location_request .= implode('/', $location_slug) . '/';
1609
+					$location_request .= implode('/', $location_slug).'/';
1610 1610
                 }
1611 1611
             }
1612 1612
 
@@ -1665,14 +1665,14 @@  discard block
 block discarded – undo
1665 1665
             $request_term = trim($request_term, '/');
1666 1666
             
1667 1667
             // Fix with WPML the location terms added twice when CPT slug is translated.
1668
-            if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/' . $request_term . $detailurl_separator) !== false) {
1668
+            if ($sample && !empty($location_request) && geodir_is_wpml() && strpos($post_link, '%gd_taxonomy%/'.$request_term.$detailurl_separator) !== false) {
1669 1669
                 $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1670 1670
             }
1671 1671
             
1672 1672
             if (!empty($request_term))
1673
-                $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1673
+                $post_link = str_replace('%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
1674 1674
             else
1675
-                $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1675
+                $post_link = str_replace('/%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
1676 1676
             //echo $post_link ;
1677 1677
         }
1678 1678
         // temp cache the permalink
@@ -1747,9 +1747,9 @@  discard block
 block discarded – undo
1747 1747
                 $url_separator = '';
1748 1748
 
1749 1749
                 if (get_option('permalink_structure') != '') {
1750
-                    $old_listing_slug = '/' . $listing_slug . '/';
1750
+                    $old_listing_slug = '/'.$listing_slug.'/';
1751 1751
                     $request_term = implode("/", $location_terms);
1752
-                    $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/';
1752
+                    $new_listing_slug = '/'.$listing_slug.'/'.$request_term.'/';
1753 1753
 
1754 1754
                     $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug));
1755 1755
                 } else {
@@ -1769,25 +1769,25 @@  discard block
 block discarded – undo
1769 1769
         // Alter the CPT slug if WPML is set to do so
1770 1770
         if (function_exists('icl_object_id')) {
1771 1771
             $post_types = get_option('geodir_post_types');
1772
-            $post_type = str_replace("category","",$taxonomy);
1773
-            $post_type = str_replace("_tags","",$post_type);
1772
+            $post_type = str_replace("category", "", $taxonomy);
1773
+            $post_type = str_replace("_tags", "", $post_type);
1774 1774
             $slug = $post_types[$post_type]['rewrite']['slug'];
1775 1775
             if (gd_wpml_slug_translation_turned_on($post_type)) {
1776 1776
                 global $sitepress;
1777 1777
                 $default_lang = $sitepress->get_default_language();
1778 1778
                 $language_code = gd_wpml_get_lang_from_url($termlink);
1779
-                if (!$language_code ) {
1780
-                    $language_code  = $default_lang;
1779
+                if (!$language_code) {
1780
+                    $language_code = $default_lang;
1781 1781
                 }
1782 1782
 
1783 1783
                 $org_slug = $slug;
1784
-                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
1784
+                $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: '.$slug, $language_code);
1785 1785
 
1786 1786
                 if (!$slug) {
1787 1787
                     $slug = $org_slug;
1788 1788
                 }
1789 1789
 
1790
-                $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug  ,$termlink, 1));
1790
+                $termlink = trailingslashit(preg_replace("/".preg_quote($org_slug, "/")."/", $slug, $termlink, 1));
1791 1791
             }
1792 1792
         }
1793 1793
     }
@@ -1817,7 +1817,7 @@  discard block
 block discarded – undo
1817 1817
 	
1818 1818
 	if (in_array($post_type, geodir_get_posttypes())) {
1819 1819
 		if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
1820
-			if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1820
+			if (geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
1821 1821
                 $location_terms = array(
1822 1822
                     'gd_country' => $post->country_slug,
1823 1823
                     'gd_region' => $post->region_slug,
@@ -1834,7 +1834,7 @@  discard block
 block discarded – undo
1834 1834
 					$location_terms = implode("/", $location_terms);
1835 1835
 					$location_terms = rtrim($location_terms, '/');
1836 1836
 					
1837
-					$link .= urldecode($location_terms) . '/';
1837
+					$link .= urldecode($location_terms).'/';
1838 1838
 				} else {
1839 1839
 					$link = geodir_getlink($link, $location_terms);
1840 1840
 				}
@@ -1922,9 +1922,9 @@  discard block
 block discarded – undo
1922 1922
             return 0;
1923 1923
         $where = 't.term_id = %d';
1924 1924
         if (!empty($taxonomy))
1925
-            return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1925
+            return $wpdb->get_row($wpdb->prepare($tax_select.$where." AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1926 1926
         else
1927
-            return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1927
+            return $wpdb->get_var($wpdb->prepare($select.$where, $term));
1928 1928
     }
1929 1929
 
1930 1930
     $term = trim(wp_unslash($term));
@@ -1936,7 +1936,7 @@  discard block
 block discarded – undo
1936 1936
 
1937 1937
     $where_fields = array($slug);
1938 1938
     if (!empty($taxonomy)) {
1939
-        $parent = (int)$parent;
1939
+        $parent = (int) $parent;
1940 1940
         if ($parent > 0) {
1941 1941
             $where_fields[] = $parent;
1942 1942
             $else_where_fields[] = $parent;
@@ -2000,13 +2000,13 @@  discard block
 block discarded – undo
2000 2000
         $post_types = geodir_get_posttypes();
2001 2001
         $tax_arr = array();
2002 2002
         foreach ($post_types as $post_type) {
2003
-            $tax_arr[] = "'" . $post_type . "category'";
2003
+            $tax_arr[] = "'".$post_type."category'";
2004 2004
         }
2005 2005
         $tax_c = implode(',', $tax_arr);
2006 2006
         $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
2007 2007
         //$terms = get_terms( $taxonomy );
2008 2008
 
2009
-        if($terms) {
2009
+        if ($terms) {
2010 2010
             foreach ($terms as $term) {
2011 2011
                 $post_type = str_replace("category", "", $term->taxonomy);
2012 2012
                 $a_terms[$post_type][] = $term;
@@ -2014,7 +2014,7 @@  discard block
 block discarded – undo
2014 2014
             }
2015 2015
         }
2016 2016
 
2017
-        if($a_terms) {
2017
+        if ($a_terms) {
2018 2018
             foreach ($a_terms as $pt => $t2) {
2019 2019
 
2020 2020
                 foreach ($t2 as $term) {
@@ -2039,7 +2039,7 @@  discard block
 block discarded – undo
2039 2039
     }
2040 2040
 
2041 2041
     if (is_ssl()) {
2042
-        $terms_icons = str_replace("http:","https:",$terms_icons );
2042
+        $terms_icons = str_replace("http:", "https:", $terms_icons);
2043 2043
     }
2044 2044
 
2045 2045
     return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
Please login to merge, or discard this patch.
Braces   +168 added lines, -120 removed lines patch added patch discarded remove patch
@@ -39,8 +39,9 @@  discard block
 block discarded – undo
39 39
     if (get_option('geodir_show_listing_nav')) {
40 40
 
41 41
         $menu_class = '';
42
-        if (geodir_is_page('listing'))
43
-            $menu_class = 'current-menu-item';
42
+        if (geodir_is_page('listing')) {
43
+                    $menu_class = 'current-menu-item';
44
+        }
44 45
 
45 46
 
46 47
         //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION
@@ -52,8 +53,9 @@  discard block
 block discarded – undo
52 53
                     if (in_array($post_type, $show_post_type_main_nav)) {
53 54
                         if (get_post_type_archive_link($post_type)) {
54 55
                             $menu_class = '';
55
-                            if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
56
-                                $menu_class = 'current-menu-item';
56
+                            if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing')) {
57
+                                                            $menu_class = 'current-menu-item';
58
+                            }
57 59
                             /**
58 60
                              * Filter the menu li class.
59 61
                              *
@@ -130,8 +132,9 @@  discard block
 block discarded – undo
130 132
                             if (get_post_type_archive_link($post_type)) {
131 133
 
132 134
                                 $menu_class = '';
133
-                                if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
134
-                                    $menu_class = 'current-menu-item';
135
+                                if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing')) {
136
+                                                                    $menu_class = 'current-menu-item';
137
+                                }
135 138
 
136 139
                                 $items .= '<li class="' . $sub_li_class . '">
137 140
 														<a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '">
@@ -159,8 +162,9 @@  discard block
 block discarded – undo
159 162
     if (get_option('geodir_show_addlisting_nav')) {
160 163
 
161 164
         $menu_class = '';
162
-        if (geodir_is_page('add-listing'))
163
-            $menu_class = 'current-menu-item';
165
+        if (geodir_is_page('add-listing')) {
166
+                    $menu_class = 'current-menu-item';
167
+        }
164 168
 
165 169
         //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION
166 170
         $post_types = geodir_get_posttypes('object');
@@ -176,8 +180,9 @@  discard block
 block discarded – undo
176 180
                                 if (geodir_get_addlisting_link($post_type)) {
177 181
 
178 182
                                     $menu_class = '';
179
-                                    if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
180
-                                        $menu_class = 'current-menu-item';
183
+                                    if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing')) {
184
+                                                                            $menu_class = 'current-menu-item';
185
+                                    }
181 186
                                     /**
182 187
                                      * Filter the menu li class.
183 188
                                      *
@@ -261,8 +266,9 @@  discard block
 block discarded – undo
261 266
                                     if (geodir_get_addlisting_link($post_type)) {
262 267
 
263 268
                                         $menu_class = '';
264
-                                        if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
265
-                                            $menu_class = 'current-menu-item';
269
+                                        if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing')) {
270
+                                                                                    $menu_class = 'current-menu-item';
271
+                                        }
266 272
                                         /**
267 273
                                          * Filter the menu li class.
268 274
                                          *
@@ -319,8 +325,9 @@  discard block
 block discarded – undo
319 325
     }
320 326
     //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet.
321 327
 //		$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);
328
+    else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) {
329
+            $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
330
+    }
324 331
 
325 332
     return $menu;
326 333
 
@@ -406,24 +413,28 @@  discard block
 block discarded – undo
406 413
     $geodir_post_type = get_query_var('post_type');
407 414
 
408 415
     if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
409
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
410
-            $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
411
-        elseif (isset($_REQUEST['listing_type']))
412
-            $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
416
+        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
417
+                    $geodir_post_type = get_post_type((int)$_REQUEST['pid']);
418
+        } elseif (isset($_REQUEST['listing_type'])) {
419
+                    $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']);
420
+        }
413 421
     }
414 422
 
415
-    if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
416
-        $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
423
+    if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype'])) {
424
+            $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
425
+    }
417 426
 
418
-    if (is_tax())
419
-        $geodir_post_type = geodir_get_taxonomy_posttype();
427
+    if (is_tax()) {
428
+            $geodir_post_type = geodir_get_taxonomy_posttype();
429
+    }
420 430
 
421 431
 
422 432
     $all_postypes = geodir_get_posttypes();
423 433
     $all_postypes = stripslashes_deep($all_postypes);
424 434
 
425
-    if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes))
426
-        $geodir_post_type = '';
435
+    if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) {
436
+            $geodir_post_type = '';
437
+    }
427 438
 
428 439
     if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
429 440
         $geodir_post_type = sanitize_text_field($_REQUEST['stype']);
@@ -508,11 +519,12 @@  discard block
 block discarded – undo
508 519
         endswitch;
509 520
     }
510 521
 
511
-    if (!empty($post_types))
512
-        return $post_types;
513
-    else
514
-        return array();
515
-}
522
+    if (!empty($post_types)) {
523
+            return $post_types;
524
+    } else {
525
+            return array();
526
+    }
527
+    }
516 528
 
517 529
 /**
518 530
  * Get Custom Post Type info.
@@ -529,9 +541,10 @@  discard block
 block discarded – undo
529 541
     $post_types = stripslashes_deep($post_types);
530 542
     if (!empty($post_types) && $post_type != '') {
531 543
         return $post_types[$post_type];
532
-    } else
533
-        return false;
534
-}
544
+    } else {
545
+            return false;
546
+    }
547
+    }
535 548
 
536 549
 if (!function_exists('geodir_get_taxonomies')) {
537 550
     /**
@@ -555,18 +568,21 @@  discard block
 block discarded – undo
555 568
             $gd_taxonomies = array_keys($taxonomies);
556 569
 
557 570
 
558
-            if ($post_type != '')
559
-                $gd_taxonomies = array();
571
+            if ($post_type != '') {
572
+                            $gd_taxonomies = array();
573
+            }
560 574
 
561 575
             $i = 0;
562 576
             foreach ($taxonomies as $taxonomy => $args) {
563 577
 
564
-                if ($post_type != '' && $args['object_type'] == $post_type)
565
-                    $gd_taxonomies[] = $taxonomy;
578
+                if ($post_type != '' && $args['object_type'] == $post_type) {
579
+                                    $gd_taxonomies[] = $taxonomy;
580
+                }
566 581
 
567 582
                 if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
568
-                    if (array_search($taxonomy, $gd_taxonomies) !== false)
569
-                        unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
583
+                    if (array_search($taxonomy, $gd_taxonomies) !== false) {
584
+                                            unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]);
585
+                    }
570 586
                 }
571 587
 
572 588
             }
@@ -621,10 +637,11 @@  discard block
 block discarded – undo
621 637
                 . ucfirst($category_obj->name) . '</option>';
622 638
         }
623 639
 
624
-        if ($echo)
625
-            echo $html;
626
-        else
627
-            return $html;
640
+        if ($echo) {
641
+                    echo $html;
642
+        } else {
643
+                    return $html;
644
+        }
628 645
     }
629 646
 }
630 647
 
@@ -658,11 +675,12 @@  discard block
 block discarded – undo
658 675
 
659 676
     }
660 677
 
661
-    if (!empty($listing_slug))
662
-        return $listing_slug;
663
-    else
664
-        return false;
665
-}
678
+    if (!empty($listing_slug)) {
679
+            return $listing_slug;
680
+    } else {
681
+            return false;
682
+    }
683
+    }
666 684
 
667 685
 
668 686
 /**
@@ -693,16 +711,18 @@  discard block
 block discarded – undo
693 711
     if (!empty($taxonomies)) {
694 712
         foreach (geodir_get_posttypes() as $pt) {
695 713
             $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt);
696
-            if (array_intersect($taxonomies, $object_taxonomies))
697
-                $post_type[] = $pt;
714
+            if (array_intersect($taxonomies, $object_taxonomies)) {
715
+                            $post_type[] = $pt;
716
+            }
698 717
         }
699 718
     }
700 719
 
701
-    if (!empty($post_type))
702
-        return $post_type[0];
703
-    else
704
-        return false;
705
-}
720
+    if (!empty($post_type)) {
721
+            return $post_type[0];
722
+    } else {
723
+            return false;
724
+    }
725
+    }
706 726
 
707 727
 if (!function_exists('geodir_custom_taxonomy_walker')) {
708 728
     /**
@@ -758,18 +778,18 @@  discard block
 block discarded – undo
758 778
                 $checked = '';
759 779
 
760 780
                 if (in_array($cat_term->term_id, $search_terms)) {
761
-                    if ($cat_display == 'select' || $cat_display == 'multiselect')
762
-                        $checked = 'selected="selected"';
763
-                    else
764
-                        $checked = 'checked="checked"';
781
+                    if ($cat_display == 'select' || $cat_display == 'multiselect') {
782
+                                            $checked = 'selected="selected"';
783
+                    } else {
784
+                                            $checked = 'checked="checked"';
785
+                    }
765 786
                 }
766 787
 
767
-                if ($cat_display == 'radio')
768
-                    $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
769
-                elseif ($cat_display == 'select' || $cat_display == 'multiselect')
770
-                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
771
-
772
-                else {
788
+                if ($cat_display == 'radio') {
789
+                                    $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
790
+                } elseif ($cat_display == 'select' || $cat_display == 'multiselect') {
791
+                                    $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>';
792
+                } else {
773 793
                     $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="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>';
774 794
                 }
775 795
 
@@ -778,8 +798,9 @@  discard block
 block discarded – undo
778 798
 
779 799
             }
780 800
 
781
-            if ($cat_display == 'checkbox' || $cat_display == 'radio')
782
-                $out .= '</div>';
801
+            if ($cat_display == 'checkbox' || $cat_display == 'radio') {
802
+                            $out .= '</div>';
803
+            }
783 804
 
784 805
             return $out;
785 806
         }
@@ -805,18 +826,21 @@  discard block
 block discarded – undo
805 826
         global $exclude_cats, $gd_session;
806 827
 
807 828
         $cat_exclude = '';
808
-        if (is_array($exclude_cats) && !empty($exclude_cats))
809
-            $cat_exclude = serialize($exclude_cats);
829
+        if (is_array($exclude_cats) && !empty($exclude_cats)) {
830
+                    $cat_exclude = serialize($exclude_cats);
831
+        }
810 832
 
811 833
         if (isset($_REQUEST['backandedit'])) {
812 834
             $post = (object)$gd_session->get('listing');
813 835
 
814
-            if (!is_array($post->post_category[$cat_taxonomy]))
815
-                $post_category = $post->post_category[$cat_taxonomy];
836
+            if (!is_array($post->post_category[$cat_taxonomy])) {
837
+                            $post_category = $post->post_category[$cat_taxonomy];
838
+            }
816 839
 
817 840
             $post_categories = $post->post_category_str;
818
-            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories))
819
-                $post_category_str = $post_categories[$cat_taxonomy];
841
+            if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
842
+                            $post_category_str = $post_categories[$cat_taxonomy];
843
+            }
820 844
 
821 845
         } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
822 846
             global $post;
@@ -1007,8 +1031,9 @@  discard block
 block discarded – undo
1007 1031
         if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
1008 1032
             $post_cat_str = $post_categories[$cat_taxonomy];
1009 1033
             $post_cat_array = explode("#", $post_cat_str);
1010
-            if (count($post_cat_array) >= $cat_limit && $cat_limit != 0)
1011
-                $style = "display:none;";
1034
+            if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) {
1035
+                            $style = "display:none;";
1036
+            }
1012 1037
         }
1013 1038
         ?>
1014 1039
         <div class="main_cat_list" style=" <?php if (isset($style)) {
@@ -1043,7 +1068,7 @@  discard block
 block discarded – undo
1043 1068
 
1044 1069
         if(is_array( $exclude_cats)){
1045 1070
             $exclude_cats = array_map( 'intval', $exclude_cats );
1046
-        }else{
1071
+        } else{
1047 1072
             $exclude_cats = intval($exclude_cats);
1048 1073
         }
1049 1074
 
@@ -1073,7 +1098,10 @@  discard block
 block discarded – undo
1073 1098
 
1074 1099
             <div class="post_default_category">
1075 1100
                 <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id;?>"
1076
-                       onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" ';?>   />
1101
+                       onchange="update_listing_cat()" <?php if ($default) {
1102
+	echo ' checked="checked" ';
1103
+}
1104
+?>   />
1077 1105
         <span> 
1078 1106
         <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
1079 1107
         </span>
@@ -1173,8 +1201,9 @@  discard block
 block discarded – undo
1173 1201
         $onchange = ' onchange="show_subcatlist(this.value, this)" ';
1174 1202
 
1175 1203
         $option_selected = '';
1176
-        if (!$selected)
1177
-            $option_slected = ' selected="selected" ';
1204
+        if (!$selected) {
1205
+                    $option_slected = ' selected="selected" ';
1206
+        }
1178 1207
 
1179 1208
         echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >';
1180 1209
 
@@ -1182,8 +1211,9 @@  discard block
 block discarded – undo
1182 1211
 
1183 1212
         foreach ($cat_terms as $cat_term) {
1184 1213
             $option_selected = '';
1185
-            if ($selected == $cat_term->term_id)
1186
-                $option_selected = ' selected="selected" ';
1214
+            if ($selected == $cat_term->term_id) {
1215
+                            $option_selected = ' selected="selected" ';
1216
+            }
1187 1217
 
1188 1218
             // Count child terms
1189 1219
             $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) );
@@ -1248,8 +1278,9 @@  discard block
 block discarded – undo
1248 1278
 
1249 1279
     $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico';
1250 1280
 
1251
-    if (!$listing_slug = get_option('geodir_listing_prefix'))
1252
-        $listing_slug = 'places';
1281
+    if (!$listing_slug = get_option('geodir_listing_prefix')) {
1282
+            $listing_slug = 'places';
1283
+    }
1253 1284
 
1254 1285
     /**
1255 1286
      * Taxonomies
@@ -1553,8 +1584,9 @@  discard block
 block discarded – undo
1553 1584
                             'city_slug' => $post->city_slug
1554 1585
                         );
1555 1586
 
1556
-                    } else
1557
-                        $post_location = geodir_get_location();
1587
+                    } else {
1588
+                                            $post_location = geodir_get_location();
1589
+                    }
1558 1590
 
1559 1591
 
1560 1592
                 } else {
@@ -1583,8 +1615,9 @@  discard block
 block discarded – undo
1583 1615
                             );
1584 1616
 
1585 1617
                         }
1586
-                    } else
1587
-                        $post_location = geodir_get_location();
1618
+                    } else {
1619
+                                            $post_location = geodir_get_location();
1620
+                    }
1588 1621
                 }
1589 1622
 
1590 1623
 
@@ -1627,8 +1660,9 @@  discard block
 block discarded – undo
1627 1660
                         $post_terms = $post_terms[0];
1628 1661
                     }
1629 1662
 
1630
-                    if (!$post_terms)
1631
-                        $post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1663
+                    if (!$post_terms) {
1664
+                                            $post_terms = geodir_get_post_meta($post->ID, 'default_category', true);
1665
+                    }
1632 1666
 
1633 1667
                     if (!$post_terms) {
1634 1668
                         $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true);
@@ -1642,8 +1676,9 @@  discard block
 block discarded – undo
1642 1676
 
1643 1677
                 $term = get_term_by('id', $post_terms, $taxonomies);
1644 1678
 
1645
-                if (!empty($term))
1646
-                    $term_request = $term->slug;
1679
+                if (!empty($term)) {
1680
+                                    $term_request = $term->slug;
1681
+                }
1647 1682
                 //$term_request = $term->slug.'/';
1648 1683
             }
1649 1684
 
@@ -1658,9 +1693,13 @@  discard block
 block discarded – undo
1658 1693
                 $request_term .= $term_request;
1659 1694
 
1660 1695
             } else {
1661
-                if (isset($location_request) && $location_request != '') $request_term = $location_request;
1696
+                if (isset($location_request) && $location_request != '') {
1697
+                	$request_term = $location_request;
1698
+                }
1662 1699
 
1663
-                if (isset($term_request) && $term_request != '') $request_term .= $term_request;
1700
+                if (isset($term_request) && $term_request != '') {
1701
+                	$request_term .= $term_request;
1702
+                }
1664 1703
             }
1665 1704
             $request_term = trim($request_term, '/');
1666 1705
             
@@ -1669,10 +1708,11 @@  discard block
 block discarded – undo
1669 1708
                 $post_link = str_replace('%gd_taxonomy%/', '', $post_link);
1670 1709
             }
1671 1710
             
1672
-            if (!empty($request_term))
1673
-                $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1674
-            else
1675
-                $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1711
+            if (!empty($request_term)) {
1712
+                            $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1713
+            } else {
1714
+                            $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
1715
+            }
1676 1716
             //echo $post_link ;
1677 1717
         }
1678 1718
         // temp cache the permalink
@@ -1864,11 +1904,12 @@  discard block
 block discarded – undo
1864 1904
     
1865 1905
     $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name;
1866 1906
     
1867
-    if ($echo)
1868
-        echo $label;
1869
-    else
1870
-        return $label;
1871
-}
1907
+    if ($echo) {
1908
+            echo $label;
1909
+    } else {
1910
+            return $label;
1911
+    }
1912
+    }
1872 1913
 
1873 1914
 /**
1874 1915
  * Print or Get post type plural label.
@@ -1884,18 +1925,20 @@  discard block
 block discarded – undo
1884 1925
 function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
1885 1926
     $all_postypes = geodir_get_posttypes();
1886 1927
 
1887
-    if (!in_array($post_type, $all_postypes))
1888
-        return false;
1928
+    if (!in_array($post_type, $all_postypes)) {
1929
+            return false;
1930
+    }
1889 1931
 
1890 1932
     $obj_post_type = get_post_type_object($post_type);
1891 1933
     
1892 1934
     $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name;
1893 1935
     
1894
-    if ($echo)
1895
-        echo $label;
1896
-    else
1897
-        return $label;
1898
-}
1936
+    if ($echo) {
1937
+            echo $label;
1938
+    } else {
1939
+            return $label;
1940
+    }
1941
+    }
1899 1942
 
1900 1943
 /**
1901 1944
  * Checks whether a term exists or not.
@@ -1918,19 +1961,22 @@  discard block
 block discarded – undo
1918 1961
     $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 ";
1919 1962
 
1920 1963
     if (is_int($term)) {
1921
-        if (0 == $term)
1922
-            return 0;
1964
+        if (0 == $term) {
1965
+                    return 0;
1966
+        }
1923 1967
         $where = 't.term_id = %d';
1924
-        if (!empty($taxonomy))
1925
-            return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1926
-        else
1927
-            return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1968
+        if (!empty($taxonomy)) {
1969
+                    return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A);
1970
+        } else {
1971
+                    return $wpdb->get_var($wpdb->prepare($select . $where, $term));
1972
+        }
1928 1973
     }
1929 1974
 
1930 1975
     $term = trim(wp_unslash($term));
1931 1976
 
1932
-    if ('' === $slug = sanitize_title($term))
1933
-        return 0;
1977
+    if ('' === $slug = sanitize_title($term)) {
1978
+            return 0;
1979
+    }
1934 1980
 
1935 1981
     $where = 't.slug = %s';
1936 1982
 
@@ -1947,14 +1993,16 @@  discard block
 block discarded – undo
1947 1993
         $where_fields[] = $taxonomy;
1948 1994
 
1949 1995
 
1950
-        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))
1951
-            return $result;
1996
+        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)) {
1997
+                    return $result;
1998
+        }
1952 1999
 
1953 2000
         return false;
1954 2001
     }
1955 2002
 
1956
-    if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
1957
-        return $result;
2003
+    if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields))) {
2004
+            return $result;
2005
+    }
1958 2006
 
1959 2007
     return false;
1960 2008
 }
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 2 patches
Spacing   +1270 added lines, -1270 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,49 +1187,49 @@  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' );
1216
-		$slug         = $post_types[ $post_type ]['rewrite']['slug'];
1215
+		$post_types   = get_option('geodir_post_types');
1216
+		$slug         = $post_types[$post_type]['rewrite']['slug'];
1217 1217
 
1218 1218
 		// Alter the CPT slug if WPML is set to do so
1219
-		if ( function_exists( 'icl_object_id' ) ) {
1220
-			if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1219
+		if (function_exists('icl_object_id')) {
1220
+			if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1221 1221
 
1222 1222
 				$org_slug = $slug;
1223
-				$slug     = apply_filters( 'wpml_translate_single_string',
1223
+				$slug     = apply_filters('wpml_translate_single_string',
1224 1224
 					$slug,
1225 1225
 					'WordPress',
1226
-					'URL slug: ' . $slug,
1227
-					$language_code );
1226
+					'URL slug: '.$slug,
1227
+					$language_code);
1228 1228
                     
1229
-				if ( ! $slug ) {
1229
+				if (!$slug) {
1230 1230
 					$slug = $org_slug;
1231 1231
 				} else {
1232
-					$link = str_replace( $org_slug, $slug, $link );
1232
+					$link = str_replace($org_slug, $slug, $link);
1233 1233
 				}
1234 1234
 			}
1235 1235
 		}
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
 
1238 1238
 	return $link;
1239 1239
 }
1240
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1240
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1241 1241
 
1242 1242
 /**
1243 1243
  * Main function that generates breadcrumb for all pages.
@@ -1258,9 +1258,9 @@  discard block
 block discarded – undo
1258 1258
 	 *
1259 1259
 	 * @since 1.0.0
1260 1260
 	 */
1261
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1261
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1262 1262
 
1263
-	if ( ! geodir_is_page( 'home' ) ) {
1263
+	if (!geodir_is_page('home')) {
1264 1264
 		$breadcrumb    = '';
1265 1265
 		$url_categoris = '';
1266 1266
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1269,167 +1269,167 @@  discard block
 block discarded – undo
1269 1269
 		 *
1270 1270
 		 * @since 1.0.0
1271 1271
 		 */
1272
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1272
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1273 1273
 
1274 1274
 		$gd_post_type   = geodir_get_current_posttype();
1275
-		$post_type_info = get_post_type_object( $gd_post_type );
1275
+		$post_type_info = get_post_type_object($gd_post_type);
1276 1276
 
1277
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1277
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1278 1278
 
1279
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1279
+		$listing_link = get_post_type_archive_link($gd_post_type);
1280 1280
 
1281
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1282
-		$listing_link = rtrim( $listing_link, '/' );
1281
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1282
+		$listing_link = rtrim($listing_link, '/');
1283 1283
 		$listing_link .= '/';
1284 1284
 
1285 1285
 		$post_type_for_location_link = $listing_link;
1286
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1286
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1287 1287
 
1288 1288
 		global $wp, $gd_session;
1289 1289
 		$location_link = $post_type_for_location_link;
1290 1290
 
1291
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1291
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1292 1292
 			global $post;
1293
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1294
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1293
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1294
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1295 1295
 
1296
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1296
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1297 1297
 				$location_terms = array(
1298 1298
 					'gd_country' => $post->country_slug,
1299 1299
 					'gd_region'  => $post->region_slug,
1300 1300
 					'gd_city'    => $post->city_slug
1301 1301
 				);
1302 1302
 
1303
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1303
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1304 1304
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1305 1305
 				}
1306 1306
 			}
1307 1307
 
1308
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1308
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1309 1309
 
1310 1310
 			$hide_url_part = array();
1311
-			if ( $location_manager ) {
1312
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1313
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1314
-
1315
-				if ( $hide_region_part && $hide_country_part ) {
1316
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1317
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1318
-					$hide_url_part = array( 'gd_region' );
1319
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1320
-					$hide_url_part = array( 'gd_country' );
1311
+			if ($location_manager) {
1312
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1313
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1314
+
1315
+				if ($hide_region_part && $hide_country_part) {
1316
+					$hide_url_part = array('gd_country', 'gd_region');
1317
+				} else if ($hide_region_part && !$hide_country_part) {
1318
+					$hide_url_part = array('gd_region');
1319
+				} else if (!$hide_region_part && $hide_country_part) {
1320
+					$hide_url_part = array('gd_country');
1321 1321
 				}
1322 1322
 			}
1323 1323
 
1324 1324
 			$hide_text_part = array();
1325
-			if ( $geodir_show_location_url == 'country_city' ) {
1326
-				$hide_text_part = array( 'gd_region' );
1325
+			if ($geodir_show_location_url == 'country_city') {
1326
+				$hide_text_part = array('gd_region');
1327 1327
 
1328
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1329
-					unset( $location_terms['gd_region'] );
1328
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1329
+					unset($location_terms['gd_region']);
1330 1330
 				}
1331
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1332
-				$hide_text_part = array( 'gd_country' );
1331
+			} else if ($geodir_show_location_url == 'region_city') {
1332
+				$hide_text_part = array('gd_country');
1333 1333
 
1334
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1335
-					unset( $location_terms['gd_country'] );
1334
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1335
+					unset($location_terms['gd_country']);
1336 1336
 				}
1337
-			} else if ( $geodir_show_location_url == 'city' ) {
1338
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1337
+			} else if ($geodir_show_location_url == 'city') {
1338
+				$hide_text_part = array('gd_country', 'gd_region');
1339 1339
 
1340
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1341
-					unset( $location_terms['gd_country'] );
1340
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1341
+					unset($location_terms['gd_country']);
1342 1342
 				}
1343
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1344
-					unset( $location_terms['gd_region'] );
1343
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1344
+					unset($location_terms['gd_region']);
1345 1345
 				}
1346 1346
 			}
1347 1347
 
1348 1348
 			$is_location_last = '';
1349 1349
 			$is_taxonomy_last = '';
1350 1350
 			$breadcrumb .= '<li>';
1351
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1352
-				$gd_taxonomy = $gd_post_type . 'category';
1353
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1354
-				$gd_taxonomy = $gd_post_type . '_tags';
1351
+			if (get_query_var($gd_post_type.'category')) {
1352
+				$gd_taxonomy = $gd_post_type.'category';
1353
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1354
+				$gd_taxonomy = $gd_post_type.'_tags';
1355 1355
 			}
1356 1356
 
1357
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1358
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1357
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1358
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1359 1359
 				$is_location_last = false;
1360 1360
 			} else {
1361 1361
 				$is_location_last = true;
1362 1362
 			}
1363 1363
 
1364
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1364
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1365 1365
 				$is_taxonomy_last = true;
1366 1366
 			} else {
1367 1367
 				$is_taxonomy_last = false;
1368 1368
 			}
1369 1369
 
1370
-			if ( ! empty( $location_terms ) ) {
1371
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1370
+			if (!empty($location_terms)) {
1371
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1372 1372
 
1373
-				foreach ( $location_terms as $key => $location_term ) {
1374
-					if ( $location_term != '' ) {
1375
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1373
+				foreach ($location_terms as $key => $location_term) {
1374
+					if ($location_term != '') {
1375
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1376 1376
 							continue;
1377 1377
 						}
1378 1378
 
1379
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1380
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1381
-						$gd_location_link_text = ucfirst( $gd_location_link_text );
1379
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1380
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1381
+						$gd_location_link_text = ucfirst($gd_location_link_text);
1382 1382
 
1383 1383
 						$location_term_actual_country = '';
1384 1384
 						$location_term_actual_region  = '';
1385 1385
 						$location_term_actual_city    = '';
1386 1386
 						$location_term_actual_neighbourhood = '';
1387
-						if ( $geodir_get_locations ) {
1388
-							if ( $key == 'gd_country' ) {
1389
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1390
-							} else if ( $key == 'gd_region' ) {
1391
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1392
-							} else if ( $key == 'gd_city' ) {
1393
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1394
-							} else if ( $key == 'gd_neighbourhood' ) {
1395
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1387
+						if ($geodir_get_locations) {
1388
+							if ($key == 'gd_country') {
1389
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1390
+							} else if ($key == 'gd_region') {
1391
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1392
+							} else if ($key == 'gd_city') {
1393
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1394
+							} else if ($key == 'gd_neighbourhood') {
1395
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1396 1396
 							}
1397 1397
 						} else {
1398 1398
 							$location_info = geodir_get_location();
1399 1399
 
1400
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1401
-								if ( $key == 'gd_country' ) {
1402
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1403
-								} else if ( $key == 'gd_region' ) {
1404
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1405
-								} else if ( $key == 'gd_city' ) {
1406
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1400
+							if (!empty($location_info) && isset($location_info->location_id)) {
1401
+								if ($key == 'gd_country') {
1402
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1403
+								} else if ($key == 'gd_region') {
1404
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1405
+								} else if ($key == 'gd_city') {
1406
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1407 1407
 								}
1408 1408
 							}
1409 1409
 						}
1410 1410
 
1411
-						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'] != '' ) ) {
1412
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1413
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1414
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1415
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1416
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1417
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1418
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1411
+						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'] != '')) {
1412
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1413
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1414
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1415
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1416
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1417
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1418
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1419 1419
 						} else {
1420
-							if ( get_option( 'permalink_structure' ) != '' ) {
1421
-								$location_link .= $location_term . '/';
1420
+							if (get_option('permalink_structure') != '') {
1421
+								$location_link .= $location_term.'/';
1422 1422
 							} else {
1423
-								$location_link .= "&$key=" . $location_term;
1423
+								$location_link .= "&$key=".$location_term;
1424 1424
 							}
1425 1425
 
1426
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1426
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1427 1427
 								$gd_location_link_text = $location_term_actual_country;
1428
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1428
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1429 1429
 								$gd_location_link_text = $location_term_actual_region;
1430
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1430
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1431 1431
 								$gd_location_link_text = $location_term_actual_city;
1432
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1432
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1433 1433
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1434 1434
 							}
1435 1435
 
@@ -1439,76 +1439,76 @@  discard block
 block discarded – undo
1439 1439
                             }
1440 1440
                             */
1441 1441
 
1442
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1442
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1443 1443
 						}
1444 1444
 					}
1445 1445
 				}
1446 1446
 			}
1447 1447
 
1448
-			if ( ! empty( $gd_taxonomy ) ) {
1448
+			if (!empty($gd_taxonomy)) {
1449 1449
 				$term_index = 1;
1450 1450
 
1451 1451
 				//if(get_option('geodir_add_categories_url'))
1452 1452
 				{
1453
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1454
-						$cat_link = $listing_link . 'tags/';
1453
+					if (get_query_var($gd_post_type.'_tags')) {
1454
+						$cat_link = $listing_link.'tags/';
1455 1455
 					} else {
1456 1456
 						$cat_link = $listing_link;
1457 1457
 					}
1458 1458
 
1459
-					foreach ( $location_terms as $key => $location_term ) {
1460
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1459
+					foreach ($location_terms as $key => $location_term) {
1460
+						if ($location_manager && in_array($key, $hide_url_part)) {
1461 1461
 							continue;
1462 1462
 						}
1463 1463
 
1464
-						if ( $location_term != '' ) {
1465
-							if ( get_option( 'permalink_structure' ) != '' ) {
1466
-								$cat_link .= $location_term . '/';
1464
+						if ($location_term != '') {
1465
+							if (get_option('permalink_structure') != '') {
1466
+								$cat_link .= $location_term.'/';
1467 1467
 							}
1468 1468
 						}
1469 1469
 					}
1470 1470
 
1471
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1472
-					foreach ( $term_array as $term ) {
1473
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1474
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1471
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1472
+					foreach ($term_array as $term) {
1473
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1474
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1475 1475
 
1476 1476
 						// get term actual name
1477
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1478
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1479
-							$term_link_text = urldecode( $term_info['name'] );
1477
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1478
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1479
+							$term_link_text = urldecode($term_info['name']);
1480 1480
 						} else {
1481 1481
 							continue;
1482 1482
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1483 1483
 						}
1484 1484
 
1485
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1486
-							$breadcrumb .= $separator . $term_link_text;
1485
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1486
+							$breadcrumb .= $separator.$term_link_text;
1487 1487
 						} else {
1488
-							$cat_link .= $term . '/';
1489
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1488
+							$cat_link .= $term.'/';
1489
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1490 1490
 						}
1491
-						$term_index ++;
1491
+						$term_index++;
1492 1492
 					}
1493 1493
 				}
1494 1494
 
1495 1495
 
1496 1496
 			}
1497 1497
 
1498
-			if ( geodir_is_page( 'detail' ) ) {
1499
-				$breadcrumb .= $separator . get_the_title();
1498
+			if (geodir_is_page('detail')) {
1499
+				$breadcrumb .= $separator.get_the_title();
1500 1500
 			}
1501 1501
 
1502 1502
 			$breadcrumb .= '</li>';
1503 1503
 
1504 1504
 
1505
-		} elseif ( geodir_is_page( 'author' ) ) {
1505
+		} elseif (geodir_is_page('author')) {
1506 1506
 			$user_id             = get_current_user_id();
1507
-			$author_link         = get_author_posts_url( $user_id );
1508
-			$default_author_link = geodir_getlink( $author_link, array(
1507
+			$author_link         = get_author_posts_url($user_id);
1508
+			$default_author_link = geodir_getlink($author_link, array(
1509 1509
 				'geodir_dashbord' => 'true',
1510 1510
 				'stype'           => 'gd_place'
1511
-			), false );
1511
+			), false);
1512 1512
 
1513 1513
 			/**
1514 1514
 			 * Filter author page link.
@@ -1518,16 +1518,16 @@  discard block
 block discarded – undo
1518 1518
 			 * @param string $default_author_link Default author link.
1519 1519
 			 * @param int $user_id                Author ID.
1520 1520
 			 */
1521
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1521
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1522 1522
 
1523 1523
 			$breadcrumb .= '<li>';
1524
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1524
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1525 1525
 
1526
-			if ( isset( $_REQUEST['list'] ) ) {
1527
-				$author_link = geodir_getlink( $author_link, array(
1526
+			if (isset($_REQUEST['list'])) {
1527
+				$author_link = geodir_getlink($author_link, array(
1528 1528
 					'geodir_dashbord' => 'true',
1529 1529
 					'stype'           => $_REQUEST['stype']
1530
-				), false );
1530
+				), false);
1531 1531
 
1532 1532
 				/**
1533 1533
 				 * Filter author page link.
@@ -1538,61 +1538,61 @@  discard block
 block discarded – undo
1538 1538
 				 * @param int $user_id        Author ID.
1539 1539
 				 * @param string $_REQUEST    ['stype'] Post type.
1540 1540
 				 */
1541
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1541
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1542 1542
 
1543
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1544
-				$breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1543
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1544
+				$breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1545 1545
 			} else {
1546
-				$breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' );
1546
+				$breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory');
1547 1547
 			}
1548 1548
 
1549 1549
 			$breadcrumb .= '</li>';
1550
-		} elseif ( is_category() || is_single() ) {
1550
+		} elseif (is_category() || is_single()) {
1551 1551
 			$category = get_the_category();
1552
-			if ( is_category() ) {
1553
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1552
+			if (is_category()) {
1553
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1554 1554
 			}
1555
-			if ( is_single() ) {
1556
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1557
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1555
+			if (is_single()) {
1556
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1557
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1558 1558
 			}
1559 1559
 			/* End of my version ##################################################### */
1560
-		} else if ( is_page() ) {
1560
+		} else if (is_page()) {
1561 1561
 			$page_title = get_the_title();
1562 1562
 
1563
-			if ( geodir_is_page( 'location' ) ) {
1563
+			if (geodir_is_page('location')) {
1564 1564
 				$location_page_id = geodir_location_page_id();
1565
-				$loc_post         = get_post( $location_page_id );
1565
+				$loc_post         = get_post($location_page_id);
1566 1566
 				$post_name        = $loc_post->post_name;
1567
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1568
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1567
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1568
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1569 1569
 			}
1570 1570
 
1571
-			$breadcrumb .= '<li>' . $separator;
1572
-			$breadcrumb .= stripslashes_deep( $page_title );
1571
+			$breadcrumb .= '<li>'.$separator;
1572
+			$breadcrumb .= stripslashes_deep($page_title);
1573 1573
 			$breadcrumb .= '</li>';
1574
-		} else if ( is_tag() ) {
1575
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1576
-		} else if ( is_day() ) {
1577
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1578
-			the_time( 'F jS, Y' );
1574
+		} else if (is_tag()) {
1575
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1576
+		} else if (is_day()) {
1577
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1578
+			the_time('F jS, Y');
1579 1579
 			$breadcrumb .= '</li>';
1580
-		} else if ( is_month() ) {
1581
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1582
-			the_time( 'F, Y' );
1580
+		} else if (is_month()) {
1581
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1582
+			the_time('F, Y');
1583 1583
 			$breadcrumb .= '</li>';
1584
-		} else if ( is_year() ) {
1585
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1586
-			the_time( 'Y' );
1584
+		} else if (is_year()) {
1585
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1586
+			the_time('Y');
1587 1587
 			$breadcrumb .= '</li>';
1588
-		} else if ( is_author() ) {
1589
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1588
+		} else if (is_author()) {
1589
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1590 1590
 			$breadcrumb .= '</li>';
1591
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1592
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1591
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1592
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1593 1593
 			$breadcrumb .= '</li>';
1594
-		} else if ( is_search() ) {
1595
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1594
+		} else if (is_search()) {
1595
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1596 1596
 			$breadcrumb .= '</li>';
1597 1597
 		}
1598 1598
 		$breadcrumb .= '</ul></div>';
@@ -1605,13 +1605,13 @@  discard block
 block discarded – undo
1605 1605
 		 * @param string $breadcrumb Breadcrumb HTML.
1606 1606
 		 * @param string $separator  Breadcrumb separator.
1607 1607
 		 */
1608
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1608
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1609 1609
 	}
1610 1610
 }
1611 1611
 
1612 1612
 
1613
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1614
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1613
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1614
+if (!function_exists('geodir_allow_wpadmin')) {
1615 1615
 	/**
1616 1616
 	 * Allow only admins to access wp-admin.
1617 1617
 	 *
@@ -1623,12 +1623,12 @@  discard block
 block discarded – undo
1623 1623
 	 */
1624 1624
 	function geodir_allow_wpadmin() {
1625 1625
 		global $wpdb;
1626
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1626
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1627 1627
 		{
1628
-			if ( current_user_can( 'administrator' ) ) {
1628
+			if (current_user_can('administrator')) {
1629 1629
 			} else {
1630 1630
 
1631
-				wp_redirect( home_url() );
1631
+				wp_redirect(home_url());
1632 1632
 				exit;
1633 1633
 			}
1634 1634
 
@@ -1647,23 +1647,23 @@  discard block
 block discarded – undo
1647 1647
  *
1648 1648
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1649 1649
  */
1650
-function fetch_remote_file( $url ) {
1650
+function fetch_remote_file($url) {
1651 1651
 	// extract the file name and extension from the url
1652
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1653
-	$file_name = basename( $url );
1654
-	if ( strpos( $file_name, '?' ) !== false ) {
1655
-		list( $file_name ) = explode( '?', $file_name );
1652
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1653
+	$file_name = basename($url);
1654
+	if (strpos($file_name, '?') !== false) {
1655
+		list($file_name) = explode('?', $file_name);
1656 1656
 	}
1657 1657
 	$dummy        = false;
1658 1658
 	$add_to_cache = false;
1659 1659
 	$key          = null;
1660
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1660
+	if (strpos($url, '/dummy/') !== false) {
1661 1661
 		$dummy = true;
1662
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1663
-		$value = get_transient( 'cached_dummy_images' );
1664
-		if ( $value ) {
1665
-			if ( isset( $value[ $key ] ) ) {
1666
-				return $value[ $key ];
1662
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1663
+		$value = get_transient('cached_dummy_images');
1664
+		if ($value) {
1665
+			if (isset($value[$key])) {
1666
+				return $value[$key];
1667 1667
 			} else {
1668 1668
 				$add_to_cache = true;
1669 1669
 			}
@@ -1674,58 +1674,58 @@  discard block
 block discarded – undo
1674 1674
 
1675 1675
 	// get placeholder file in the upload dir with a unique, sanitized filename
1676 1676
 
1677
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1677
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1678 1678
 
1679
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1680
-	if ( $upload['error'] ) {
1681
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1679
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1680
+	if ($upload['error']) {
1681
+		return new WP_Error('upload_dir_error', $upload['error']);
1682 1682
 	}
1683 1683
 
1684 1684
 
1685
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1685
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1686 1686
 
1687 1687
 	// fetch the remote url and write it to the placeholder file
1688
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1688
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1689 1689
 
1690 1690
 	$log_message = '';
1691
-	if ( is_wp_error( $headers ) ) {
1692
-		echo 'file: ' . $url;
1691
+	if (is_wp_error($headers)) {
1692
+		echo 'file: '.$url;
1693 1693
 
1694
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1694
+		return new WP_Error('import_file_error', $headers->get_error_message());
1695 1695
 	}
1696 1696
 
1697
-	$filesize = filesize( $upload['file'] );
1697
+	$filesize = filesize($upload['file']);
1698 1698
 	// request failed
1699
-	if ( ! $headers ) {
1700
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1699
+	if (!$headers) {
1700
+		$log_message = __('Remote server did not respond', 'geodirectory');
1701 1701
 	} // make sure the fetch was successful
1702
-	elseif ( $headers['response']['code'] != '200' ) {
1703
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1704
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1705
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1706
-	} elseif ( 0 == $filesize ) {
1707
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1708
-	}
1709
-
1710
-	if ( $log_message ) {
1711
-		$del = unlink( $upload['file'] );
1712
-		if ( ! $del ) {
1713
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1702
+	elseif ($headers['response']['code'] != '200') {
1703
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1704
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1705
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1706
+	} elseif (0 == $filesize) {
1707
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1708
+	}
1709
+
1710
+	if ($log_message) {
1711
+		$del = unlink($upload['file']);
1712
+		if (!$del) {
1713
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1714 1714
 		}
1715 1715
 
1716
-		return new WP_Error( 'import_file_error', $log_message );
1716
+		return new WP_Error('import_file_error', $log_message);
1717 1717
 	}
1718 1718
 
1719
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1720
-		$images = get_transient( 'cached_dummy_images' );
1721
-		if ( is_array( $images ) ) {
1722
-			$images[ $key ] = $upload;
1719
+	if ($dummy && $add_to_cache && is_array($upload)) {
1720
+		$images = get_transient('cached_dummy_images');
1721
+		if (is_array($images)) {
1722
+			$images[$key] = $upload;
1723 1723
 		} else {
1724
-			$images = array( $key => $upload );
1724
+			$images = array($key => $upload);
1725 1725
 		}
1726 1726
 
1727 1727
 		//setting the cache using the WP Transient API
1728
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1728
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1729 1729
 	}
1730 1730
 
1731 1731
 	return $upload;
@@ -1739,12 +1739,12 @@  discard block
 block discarded – undo
1739 1739
  * @return string|void Max upload size.
1740 1740
  */
1741 1741
 function geodir_max_upload_size() {
1742
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1742
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1743 1743
 
1744
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1745
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1744
+	if ($max_filesize > 0 && $max_filesize < 1) {
1745
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1746 1746
 	} else {
1747
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1747
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1748 1748
 	}
1749 1749
 
1750 1750
 	/**
@@ -1754,7 +1754,7 @@  discard block
 block discarded – undo
1754 1754
 	 *
1755 1755
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1756 1756
 	 */
1757
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1757
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1758 1758
 }
1759 1759
 
1760 1760
 /**
@@ -1767,8 +1767,8 @@  discard block
 block discarded – undo
1767 1767
  * @return bool If dummy folder exists returns true, else false.
1768 1768
  */
1769 1769
 function geodir_dummy_folder_exists() {
1770
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1771
-	if ( ! is_dir( $path ) ) {
1770
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1771
+	if (!is_dir($path)) {
1772 1772
 		return false;
1773 1773
 	} else {
1774 1774
 		return true;
@@ -1787,17 +1787,17 @@  discard block
 block discarded – undo
1787 1787
  *
1788 1788
  * @return object Author info.
1789 1789
  */
1790
-function geodir_get_author_info( $aid ) {
1790
+function geodir_get_author_info($aid) {
1791 1791
 	global $wpdb;
1792 1792
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1793
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1794
-	$info    = $wpdb->get_results( $infosql );
1795
-	if ( $info ) {
1793
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1794
+	$info    = $wpdb->get_results($infosql);
1795
+	if ($info) {
1796 1796
 		return $info[0];
1797 1797
 	}
1798 1798
 }
1799 1799
 
1800
-if ( ! function_exists( 'adminEmail' ) ) {
1800
+if (!function_exists('adminEmail')) {
1801 1801
 	/**
1802 1802
 	 * Send emails to client on post submission, renew etc.
1803 1803
 	 *
@@ -1810,67 +1810,67 @@  discard block
 block discarded – undo
1810 1810
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1811 1811
 	 * @param string $custom_1     Custom data to be sent.
1812 1812
 	 */
1813
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1813
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1814 1814
 		global $wpdb;
1815
-		if ( $message_type == 'expiration' ) {
1816
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1817
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1818
-		} elseif ( $message_type == 'post_submited' ) {
1819
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1820
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1821
-		} elseif ( $message_type == 'renew' ) {
1822
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1823
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1824
-		} elseif ( $message_type == 'upgrade' ) {
1825
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1826
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1827
-		} elseif ( $message_type == 'claim_approved' ) {
1828
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1829
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1830
-		} elseif ( $message_type == 'claim_rejected' ) {
1831
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1832
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1833
-		} elseif ( $message_type == 'claim_requested' ) {
1834
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1835
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1836
-		} elseif ( $message_type == 'auto_claim' ) {
1837
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1838
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1839
-		} elseif ( $message_type == 'payment_success' ) {
1840
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1841
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1842
-		} elseif ( $message_type == 'payment_fail' ) {
1843
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1844
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1815
+		if ($message_type == 'expiration') {
1816
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1817
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1818
+		} elseif ($message_type == 'post_submited') {
1819
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1820
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1821
+		} elseif ($message_type == 'renew') {
1822
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1823
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1824
+		} elseif ($message_type == 'upgrade') {
1825
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1826
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1827
+		} elseif ($message_type == 'claim_approved') {
1828
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1829
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1830
+		} elseif ($message_type == 'claim_rejected') {
1831
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1832
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1833
+		} elseif ($message_type == 'claim_requested') {
1834
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1835
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1836
+		} elseif ($message_type == 'auto_claim') {
1837
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1838
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1839
+		} elseif ($message_type == 'payment_success') {
1840
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1841
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1842
+		} elseif ($message_type == 'payment_fail') {
1843
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1844
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1845 1845
 		}
1846 1846
 		$transaction_details = $custom_1;
1847
-		$fromEmail           = get_option( 'site_email' );
1847
+		$fromEmail           = get_option('site_email');
1848 1848
 		$fromEmailName       = get_site_emailName();
1849 1849
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1850
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1850
+		$pkg_limit            = get_property_price_info_listing($page_id);
1851 1851
 		$alivedays            = $pkg_limit['days'];
1852
-		$productlink          = get_permalink( $page_id );
1853
-		$post_info            = get_post( $page_id );
1854
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1855
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1852
+		$productlink          = get_permalink($page_id);
1853
+		$post_info            = get_post($page_id);
1854
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1855
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1856 1856
 		$loginurl             = geodir_login_url();
1857
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1857
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1858 1858
 		$siteurl              = home_url();
1859
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1860
-		$user_info            = get_userdata( $user_id );
1859
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1860
+		$user_info            = get_userdata($user_id);
1861 1861
 		$user_email           = $user_info->user_email;
1862
-		$display_name         = geodir_get_client_name( $user_id );
1862
+		$display_name         = geodir_get_client_name($user_id);
1863 1863
 		$user_login           = $user_info->user_login;
1864
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1865
-		if ( $number_of_grace_days == '' ) {
1864
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1865
+		if ($number_of_grace_days == '') {
1866 1866
 			$number_of_grace_days = 1;
1867 1867
 		}
1868
-		if ( $post_info->post_type == 'event' ) {
1868
+		if ($post_info->post_type == 'event') {
1869 1869
 			$post_type = 'event';
1870 1870
 		} else {
1871 1871
 			$post_type = 'listing';
1872 1872
 		}
1873
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1873
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1874 1874
 		$search_array   = array(
1875 1875
 			'[#client_name#]',
1876 1876
 			'[#listing_link#]',
@@ -1886,7 +1886,7 @@  discard block
 block discarded – undo
1886 1886
 			'[#site_name#]',
1887 1887
 			'[#transaction_details#]'
1888 1888
 		);
1889
-		$replace_array  = array(
1889
+		$replace_array = array(
1890 1890
 			$display_name,
1891 1891
 			$listingLink,
1892 1892
 			$post_date,
@@ -1901,13 +1901,13 @@  discard block
 block discarded – undo
1901 1901
 			$fromEmailName,
1902 1902
 			$transaction_details
1903 1903
 		);
1904
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1905
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1904
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1905
+		$subject        = str_replace($search_array, $replace_array, $subject);
1906 1906
 		
1907 1907
 		
1908
-		$headers  = array();
1908
+		$headers = array();
1909 1909
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1910
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1910
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1911 1911
 
1912 1912
 		$to      = $fromEmail;
1913 1913
 		$message = $client_message;
@@ -1925,7 +1925,7 @@  discard block
 block discarded – undo
1925 1925
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1926 1926
 		 * @param string $custom_1     Custom data to be sent.
1927 1927
 		 */
1928
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1928
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1929 1929
 		/**
1930 1930
 		 * Filter the admin email subject.
1931 1931
 		 *
@@ -1938,7 +1938,7 @@  discard block
 block discarded – undo
1938 1938
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1939 1939
 		 * @param string $custom_1     Custom data to be sent.
1940 1940
 		 */
1941
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1941
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1942 1942
 		/**
1943 1943
 		 * Filter the admin email message.
1944 1944
 		 *
@@ -1951,7 +1951,7 @@  discard block
 block discarded – undo
1951 1951
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1952 1952
 		 * @param string $custom_1     Custom data to be sent.
1953 1953
 		 */
1954
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1954
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1955 1955
 		/**
1956 1956
 		 * Filter the admin email headers.
1957 1957
 		 *
@@ -1964,22 +1964,22 @@  discard block
 block discarded – undo
1964 1964
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1965 1965
 		 * @param string $custom_1     Custom data to be sent.
1966 1966
 		 */
1967
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1967
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1968 1968
 
1969 1969
 
1970
-		$sent = wp_mail( $to, $subject, $message, $headers );
1971
-		if ( ! $sent ) {
1972
-			if ( is_array( $to ) ) {
1973
-				$to = implode( ',', $to );
1970
+		$sent = wp_mail($to, $subject, $message, $headers);
1971
+		if (!$sent) {
1972
+			if (is_array($to)) {
1973
+				$to = implode(',', $to);
1974 1974
 			}
1975 1975
 			$log_message = sprintf(
1976
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1976
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1977 1977
 				$message_type,
1978
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1978
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1979 1979
 				$to,
1980 1980
 				$subject
1981 1981
 			);
1982
-			geodir_error_log( $log_message );
1982
+			geodir_error_log($log_message);
1983 1983
 		}
1984 1984
 	}
1985 1985
 }
@@ -1999,12 +1999,12 @@  discard block
 block discarded – undo
1999 1999
  *
2000 2000
  * @return array Category IDs.
2001 2001
  */
2002
-function gd_lang_object_ids( $ids_array, $type ) {
2003
-	if ( function_exists( 'icl_object_id' ) ) {
2002
+function gd_lang_object_ids($ids_array, $type) {
2003
+	if (function_exists('icl_object_id')) {
2004 2004
 		$res = array();
2005
-		foreach ( $ids_array as $id ) {
2006
-			$xlat = icl_object_id( $id, $type, false );
2007
-			if ( ! is_null( $xlat ) ) {
2005
+		foreach ($ids_array as $id) {
2006
+			$xlat = icl_object_id($id, $type, false);
2007
+			if (!is_null($xlat)) {
2008 2008
 				$res[] = $xlat;
2009 2009
 			}
2010 2010
 		}
@@ -2028,20 +2028,20 @@  discard block
 block discarded – undo
2028 2028
  *
2029 2029
  * @return array Modified Body CSS classes.
2030 2030
  */
2031
-function geodir_custom_posts_body_class( $classes ) {
2031
+function geodir_custom_posts_body_class($classes) {
2032 2032
 	global $wpdb, $wp;
2033
-	$post_types = geodir_get_posttypes( 'object' );
2034
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2033
+	$post_types = geodir_get_posttypes('object');
2034
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2035 2035
 		$classes[] = 'geodir_custom_posts';
2036 2036
 	}
2037 2037
 
2038 2038
 	// fix body class for signup page
2039
-	if ( geodir_is_page( 'login' ) ) {
2039
+	if (geodir_is_page('login')) {
2040 2040
 		$new_classes   = array();
2041 2041
 		$new_classes[] = 'signup page-geodir-signup';
2042
-		if ( ! empty( $classes ) ) {
2043
-			foreach ( $classes as $class ) {
2044
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2042
+		if (!empty($classes)) {
2043
+			foreach ($classes as $class) {
2044
+				if ($class && $class != 'home' && $class != 'blog') {
2045 2045
 					$new_classes[] = $class;
2046 2046
 				}
2047 2047
 			}
@@ -2049,14 +2049,14 @@  discard block
 block discarded – undo
2049 2049
 		$classes = $new_classes;
2050 2050
 	}
2051 2051
 
2052
-	if ( geodir_is_geodir_page() ) {
2052
+	if (geodir_is_geodir_page()) {
2053 2053
 		$classes[] = 'geodir-page';
2054 2054
 	}
2055 2055
 
2056 2056
 	return $classes;
2057 2057
 }
2058 2058
 
2059
-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
2059
+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
2060 2060
 
2061 2061
 
2062 2062
 /**
@@ -2072,7 +2072,7 @@  discard block
 block discarded – undo
2072 2072
 	 *
2073 2073
 	 * @since 1.0.0
2074 2074
 	 */
2075
-	return apply_filters( 'geodir_map_zoom_level', array(
2075
+	return apply_filters('geodir_map_zoom_level', array(
2076 2076
 		1,
2077 2077
 		2,
2078 2078
 		3,
@@ -2092,7 +2092,7 @@  discard block
 block discarded – undo
2092 2092
 		17,
2093 2093
 		18,
2094 2094
 		19
2095
-	) );
2095
+	));
2096 2096
 
2097 2097
 }
2098 2098
 
@@ -2105,12 +2105,12 @@  discard block
 block discarded – undo
2105 2105
  *
2106 2106
  * @param string $geodir_option_name Option key.
2107 2107
  */
2108
-function geodir_option_version_backup( $geodir_option_name ) {
2108
+function geodir_option_version_backup($geodir_option_name) {
2109 2109
 	$version_date  = time();
2110
-	$geodir_option = get_option( $geodir_option_name );
2110
+	$geodir_option = get_option($geodir_option_name);
2111 2111
 
2112
-	if ( ! empty( $geodir_option ) ) {
2113
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2112
+	if (!empty($geodir_option)) {
2113
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2114 2114
 	}
2115 2115
 }
2116 2116
 
@@ -2124,10 +2124,10 @@  discard block
 block discarded – undo
2124 2124
  *
2125 2125
  * @return int Page ID.
2126 2126
  */
2127
-function get_page_id_geodir_add_listing_page( $page_id ) {
2128
-	if ( geodir_wpml_multilingual_status() ) {
2127
+function get_page_id_geodir_add_listing_page($page_id) {
2128
+	if (geodir_wpml_multilingual_status()) {
2129 2129
 		$post_type = 'post_page';
2130
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2130
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2131 2131
 	}
2132 2132
 
2133 2133
 	return $page_id;
@@ -2141,7 +2141,7 @@  discard block
 block discarded – undo
2141 2141
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2142 2142
  */
2143 2143
 function geodir_wpml_multilingual_status() {
2144
-	if ( function_exists( 'icl_object_id' ) ) {
2144
+	if (function_exists('icl_object_id')) {
2145 2145
 		return true;
2146 2146
 	}
2147 2147
 
@@ -2159,19 +2159,19 @@  discard block
 block discarded – undo
2159 2159
  *
2160 2160
  * @return int Element ID when exists. Else the page id.
2161 2161
  */
2162
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2162
+function geodir_get_wpml_element_id($page_id, $post_type) {
2163 2163
 	global $sitepress;
2164
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2165
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2164
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2165
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2166 2166
 
2167
-		if ( $trid > 0 ) {
2168
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2167
+		if ($trid > 0) {
2168
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2169 2169
 
2170 2170
 			$lang = $sitepress->get_current_language();
2171 2171
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2172 2172
 
2173
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2174
-				$page_id = $translations[ $lang ]->element_id;
2173
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2174
+				$page_id = $translations[$lang]->element_id;
2175 2175
 			}
2176 2176
 		}
2177 2177
 	}
@@ -2188,15 +2188,15 @@  discard block
 block discarded – undo
2188 2188
  */
2189 2189
 function geodir_wpml_check_element_id() {
2190 2190
 	global $sitepress;
2191
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2191
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2192 2192
 		$el_type      = 'post_page';
2193
-		$el_id        = get_option( 'geodir_add_listing_page' );
2193
+		$el_id        = get_option('geodir_add_listing_page');
2194 2194
 		$default_lang = $sitepress->get_default_language();
2195
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2195
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2196 2196
 
2197
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2198
-			if ( ! $el_details->source_language_code ) {
2199
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2197
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2198
+			if (!$el_details->source_language_code) {
2199
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2200 2200
 				$sitepress->icl_translations_cache->clear();
2201 2201
 			}
2202 2202
 		}
@@ -2215,41 +2215,41 @@  discard block
 block discarded – undo
2215 2215
  *
2216 2216
  * @return string Orderby SQL.
2217 2217
  */
2218
-function geodir_widget_listings_get_order( $query_args ) {
2218
+function geodir_widget_listings_get_order($query_args) {
2219 2219
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2220 2220
 
2221 2221
 	$query_args = $gd_query_args_widgets;
2222
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2223
-		return $wpdb->posts . ".post_date DESC, ";
2222
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2223
+		return $wpdb->posts.".post_date DESC, ";
2224 2224
 	}
2225 2225
 
2226
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2227
-	$table     = $plugin_prefix . $post_type . '_detail';
2226
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2227
+	$table     = $plugin_prefix.$post_type.'_detail';
2228 2228
 
2229
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2229
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2230 2230
 
2231
-	switch ( $sort_by ) {
2231
+	switch ($sort_by) {
2232 2232
 		case 'latest':
2233 2233
 		case 'newest':
2234
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2234
+			$orderby = $wpdb->posts.".post_date DESC, ";
2235 2235
 			break;
2236 2236
 		case 'featured':
2237
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2237
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2238 2238
 			break;
2239 2239
 		case 'az':
2240
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2240
+			$orderby = $wpdb->posts.".post_title ASC, ";
2241 2241
 			break;
2242 2242
 		case 'high_review':
2243
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2243
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2244 2244
 			break;
2245 2245
 		case 'high_rating':
2246
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2246
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2247 2247
 			break;
2248 2248
 		case 'random':
2249 2249
 			$orderby = "RAND(), ";
2250 2250
 			break;
2251 2251
 		default:
2252
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2252
+			$orderby = $wpdb->posts.".post_title ASC, ";
2253 2253
 			break;
2254 2254
 	}
2255 2255
 
@@ -2272,15 +2272,15 @@  discard block
 block discarded – undo
2272 2272
  *
2273 2273
  * @return mixed Result object.
2274 2274
  */
2275
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2275
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2276 2276
 	global $wpdb, $plugin_prefix, $table_prefix;
2277 2277
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2278 2278
 	$gd_query_args_widgets            = $query_args;
2279 2279
 
2280
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2281
-	$table     = $plugin_prefix . $post_type . '_detail';
2280
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2281
+	$table     = $plugin_prefix.$post_type.'_detail';
2282 2282
 
2283
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2283
+	$fields = $wpdb->posts.".*, ".$table.".*";
2284 2284
 	/**
2285 2285
 	 * Filter widget listing fields string part that is being used for query.
2286 2286
 	 *
@@ -2290,17 +2290,17 @@  discard block
 block discarded – undo
2290 2290
 	 * @param string $table     Table name.
2291 2291
 	 * @param string $post_type Post type.
2292 2292
 	 */
2293
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2293
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2294 2294
 
2295
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2295
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2296 2296
 
2297 2297
 	########### WPML ###########
2298 2298
 
2299
-	if ( function_exists( 'icl_object_id' ) ) {
2299
+	if (function_exists('icl_object_id')) {
2300 2300
 		global $sitepress;
2301 2301
 		$lang_code = ICL_LANGUAGE_CODE;
2302
-		if ( $lang_code ) {
2303
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2302
+		if ($lang_code) {
2303
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2304 2304
 		}
2305 2305
 	}
2306 2306
 
@@ -2314,15 +2314,15 @@  discard block
 block discarded – undo
2314 2314
 	 * @param string $join      Join clause string.
2315 2315
 	 * @param string $post_type Post type.
2316 2316
 	 */
2317
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2317
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2318 2318
 
2319
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2319
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2320 2320
 
2321
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2321
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2322 2322
 
2323 2323
 	########### WPML ###########
2324
-	if ( function_exists( 'icl_object_id' ) ) {
2325
-		if ( $lang_code ) {
2324
+	if (function_exists('icl_object_id')) {
2325
+		if ($lang_code) {
2326 2326
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2327 2327
 		}
2328 2328
 	}
@@ -2335,8 +2335,8 @@  discard block
 block discarded – undo
2335 2335
 	 * @param string $where     Where clause string.
2336 2336
 	 * @param string $post_type Post type.
2337 2337
 	 */
2338
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2339
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2338
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2339
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2340 2340
 
2341 2341
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster withotu
2342 2342
 	/**
@@ -2347,15 +2347,15 @@  discard block
 block discarded – undo
2347 2347
 	 * @param string $groupby   Group by clause string.
2348 2348
 	 * @param string $post_type Post type.
2349 2349
 	 */
2350
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2350
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2351 2351
 
2352
-	if ( $count_only ) {
2353
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2354
-			" . $join . "
2352
+	if ($count_only) {
2353
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2354
+			" . $join."
2355 2355
 			" . $where;
2356
-		$rows = (int) $wpdb->get_var( $sql );
2356
+		$rows = (int) $wpdb->get_var($sql);
2357 2357
 	} else {
2358
-		$orderby = geodir_widget_listings_get_order( $query_args );
2358
+		$orderby = geodir_widget_listings_get_order($query_args);
2359 2359
 		/**
2360 2360
 		 * Filter widget listing orderby clause string part that is being used for query.
2361 2361
 		 *
@@ -2365,11 +2365,11 @@  discard block
 block discarded – undo
2365 2365
 		 * @param string $table     Table name.
2366 2366
 		 * @param string $post_type Post type.
2367 2367
 		 */
2368
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2369
-		$orderby .= $wpdb->posts . ".post_title ASC";
2370
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2368
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2369
+		$orderby .= $wpdb->posts.".post_title ASC";
2370
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2371 2371
 
2372
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2372
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2373 2373
 		/**
2374 2374
 		 * Filter widget listing limit that is being used for query.
2375 2375
 		 *
@@ -2378,27 +2378,27 @@  discard block
 block discarded – undo
2378 2378
 		 * @param int $limit        Query results limit.
2379 2379
 		 * @param string $post_type Post type.
2380 2380
 		 */
2381
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2381
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2382 2382
 
2383
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2384
-		if ( ! $page ) {
2383
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2384
+		if (!$page) {
2385 2385
 			$page = 1;
2386 2386
 		}
2387 2387
 
2388
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2388
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2389 2389
 
2390 2390
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2391
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2392
-			" . $join . "
2393
-			" . $where . "
2394
-			" . $groupby . "
2395
-			" . $orderby . "
2391
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2392
+			" . $join."
2393
+			" . $where."
2394
+			" . $groupby."
2395
+			" . $orderby."
2396 2396
 			" . $limit;
2397
-		$rows = $wpdb->get_results( $sql );
2397
+		$rows = $wpdb->get_results($sql);
2398 2398
 	}
2399 2399
 
2400
-	unset( $GLOBALS['gd_query_args_widgets'] );
2401
-	unset( $gd_query_args_widgets );
2400
+	unset($GLOBALS['gd_query_args_widgets']);
2401
+	unset($gd_query_args_widgets);
2402 2402
 
2403 2403
 	return $rows;
2404 2404
 }
@@ -2415,11 +2415,11 @@  discard block
 block discarded – undo
2415 2415
  *
2416 2416
  * @return string Modified fields SQL.
2417 2417
  */
2418
-function geodir_function_widget_listings_fields( $fields ) {
2418
+function geodir_function_widget_listings_fields($fields) {
2419 2419
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2420 2420
 
2421 2421
 	$query_args = $gd_query_args_widgets;
2422
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2422
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2423 2423
 		return $fields;
2424 2424
 	}
2425 2425
 
@@ -2438,24 +2438,24 @@  discard block
 block discarded – undo
2438 2438
  *
2439 2439
  * @return string Modified join clause SQL.
2440 2440
  */
2441
-function geodir_function_widget_listings_join( $join ) {
2441
+function geodir_function_widget_listings_join($join) {
2442 2442
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2443 2443
 
2444 2444
 	$query_args = $gd_query_args_widgets;
2445
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2445
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2446 2446
 		return $join;
2447 2447
 	}
2448 2448
 
2449
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2450
-	$table     = $plugin_prefix . $post_type . '_detail';
2449
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2450
+	$table     = $plugin_prefix.$post_type.'_detail';
2451 2451
 
2452
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2453
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2452
+	if (!empty($query_args['with_pics_only'])) {
2453
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2454 2454
 	}
2455 2455
 
2456
-	if ( ! empty( $query_args['tax_query'] ) ) {
2457
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2458
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2456
+	if (!empty($query_args['tax_query'])) {
2457
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2458
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2459 2459
 			$join .= $tax_queries['join'];
2460 2460
 		}
2461 2461
 	}
@@ -2475,49 +2475,49 @@  discard block
 block discarded – undo
2475 2475
  *
2476 2476
  * @return string Modified where clause SQL.
2477 2477
  */
2478
-function geodir_function_widget_listings_where( $where ) {
2478
+function geodir_function_widget_listings_where($where) {
2479 2479
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2480 2480
 
2481 2481
 	$query_args = $gd_query_args_widgets;
2482
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2482
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2483 2483
 		return $where;
2484 2484
 	}
2485
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2486
-	$table     = $plugin_prefix . $post_type . '_detail';
2485
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2486
+	$table     = $plugin_prefix.$post_type.'_detail';
2487 2487
 
2488
-	if ( ! empty( $query_args ) ) {
2489
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2490
-			$where = geodir_default_location_where( $where, $table );
2488
+	if (!empty($query_args)) {
2489
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2490
+			$where = geodir_default_location_where($where, $table);
2491 2491
 		}
2492 2492
 
2493
-		if ( ! empty( $query_args['post_author'] ) ) {
2494
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2493
+		if (!empty($query_args['post_author'])) {
2494
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2495 2495
 		}
2496 2496
 
2497
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2498
-			$where .= " AND " . $table . ".is_featured = '1'";
2497
+		if (!empty($query_args['show_featured_only'])) {
2498
+			$where .= " AND ".$table.".is_featured = '1'";
2499 2499
 		}
2500 2500
 
2501
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2502
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2501
+		if (!empty($query_args['show_special_only'])) {
2502
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2503 2503
 		}
2504 2504
 
2505
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2506
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2505
+		if (!empty($query_args['with_pics_only'])) {
2506
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2507 2507
 		}
2508 2508
 
2509
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2510
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2509
+		if (!empty($query_args['featured_image_only'])) {
2510
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2511 2511
 		}
2512 2512
 
2513
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2514
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2513
+		if (!empty($query_args['with_videos_only'])) {
2514
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2515 2515
 		}
2516 2516
 
2517
-		if ( ! empty( $query_args['tax_query'] ) ) {
2518
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2517
+		if (!empty($query_args['tax_query'])) {
2518
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2519 2519
 
2520
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2520
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2521 2521
 				$where .= $tax_queries['where'];
2522 2522
 			}
2523 2523
 		}
@@ -2538,11 +2538,11 @@  discard block
 block discarded – undo
2538 2538
  *
2539 2539
  * @return string Modified orderby clause SQL.
2540 2540
  */
2541
-function geodir_function_widget_listings_orderby( $orderby ) {
2541
+function geodir_function_widget_listings_orderby($orderby) {
2542 2542
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2543 2543
 
2544 2544
 	$query_args = $gd_query_args_widgets;
2545
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2545
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2546 2546
 		return $orderby;
2547 2547
 	}
2548 2548
 
@@ -2561,15 +2561,15 @@  discard block
 block discarded – undo
2561 2561
  *
2562 2562
  * @return int Query limit.
2563 2563
  */
2564
-function geodir_function_widget_listings_limit( $limit ) {
2564
+function geodir_function_widget_listings_limit($limit) {
2565 2565
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2566 2566
 
2567 2567
 	$query_args = $gd_query_args_widgets;
2568
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2568
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2569 2569
 		return $limit;
2570 2570
 	}
2571 2571
 
2572
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2572
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2573 2573
 		$limit = (int) $query_args['posts_per_page'];
2574 2574
 	}
2575 2575
 
@@ -2587,12 +2587,12 @@  discard block
 block discarded – undo
2587 2587
  *
2588 2588
  * @return int Large size width.
2589 2589
  */
2590
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2591
-	$large_size_w = get_option( 'large_size_w' );
2590
+function geodir_media_image_large_width($default = 800, $params = '') {
2591
+	$large_size_w = get_option('large_size_w');
2592 2592
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2593
-	$large_size_w = absint( $large_size_w );
2593
+	$large_size_w = absint($large_size_w);
2594 2594
 
2595
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2595
+	if (!get_option('geodir_use_wp_media_large_size')) {
2596 2596
 		$large_size_w = 800;
2597 2597
 	}
2598 2598
 
@@ -2605,7 +2605,7 @@  discard block
 block discarded – undo
2605 2605
 	 * @param int $default         Default width.
2606 2606
 	 * @param string|array $params Image parameters.
2607 2607
 	 */
2608
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2608
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2609 2609
 
2610 2610
 	return $large_size_w;
2611 2611
 }
@@ -2621,12 +2621,12 @@  discard block
 block discarded – undo
2621 2621
  *
2622 2622
  * @return int Large size height.
2623 2623
  */
2624
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2625
-	$large_size_h = get_option( 'large_size_h' );
2624
+function geodir_media_image_large_height($default = 800, $params = '') {
2625
+	$large_size_h = get_option('large_size_h');
2626 2626
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2627
-	$large_size_h = absint( $large_size_h );
2627
+	$large_size_h = absint($large_size_h);
2628 2628
 
2629
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2629
+	if (!get_option('geodir_use_wp_media_large_size')) {
2630 2630
 		$large_size_h = 800;
2631 2631
 	}
2632 2632
 
@@ -2639,7 +2639,7 @@  discard block
 block discarded – undo
2639 2639
 	 * @param int $default         Default height.
2640 2640
 	 * @param string|array $params Image parameters.
2641 2641
 	 */
2642
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2642
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2643 2643
 
2644 2644
 	return $large_size_h;
2645 2645
 }
@@ -2656,8 +2656,8 @@  discard block
 block discarded – undo
2656 2656
  *
2657 2657
  * @return string Sanitized name.
2658 2658
  */
2659
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2660
-	if ( $name == '' ) {
2659
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2660
+	if ($name == '') {
2661 2661
 		return null;
2662 2662
 	}
2663 2663
 
@@ -2666,13 +2666,13 @@  discard block
 block discarded – undo
2666 2666
 	$type = $type == 'gd_city' ? 'city' : $type;
2667 2667
 
2668 2668
 	$return = $name;
2669
-	if ( function_exists( 'get_actual_location_name' ) ) {
2670
-		$return = get_actual_location_name( $type, $name, $translate );
2669
+	if (function_exists('get_actual_location_name')) {
2670
+		$return = get_actual_location_name($type, $name, $translate);
2671 2671
 	} else {
2672
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2673
-		$return = preg_replace( '/[_-]/', ' ', $return );
2674
-		$return = geodir_ucwords( $return );
2675
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2672
+		$return = preg_replace('/-(\d+)$/', '', $return);
2673
+		$return = preg_replace('/[_-]/', ' ', $return);
2674
+		$return = geodir_ucwords($return);
2675
+		$return = $translate ? __($return, 'geodirectory') : $return;
2676 2676
 	}
2677 2677
 
2678 2678
 	return $return;
@@ -2690,26 +2690,26 @@  discard block
 block discarded – undo
2690 2690
  *
2691 2691
  * @param int $number Comments number.
2692 2692
  */
2693
-function geodir_comments_number( $number ) {
2693
+function geodir_comments_number($number) {
2694 2694
 	global $post;
2695 2695
 	
2696
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2696
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2697 2697
 		$number = get_comments_number();
2698 2698
 		
2699
-		if ( $number > 1 ) {
2700
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2701
-		} elseif ( $number == 0 || $number == '' ) {
2702
-			$output = __( 'No Comments', 'geodirectory' );
2699
+		if ($number > 1) {
2700
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2701
+		} elseif ($number == 0 || $number == '') {
2702
+			$output = __('No Comments', 'geodirectory');
2703 2703
 		} else { // must be one
2704
-			$output = __( '1 Comment', 'geodirectory' );
2704
+			$output = __('1 Comment', 'geodirectory');
2705 2705
 		}
2706 2706
 	} else {    
2707
-		if ( $number > 1 ) {
2708
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2709
-		} elseif ( $number == 0 || $number == '' ) {
2710
-			$output = __( 'No Reviews', 'geodirectory' );
2707
+		if ($number > 1) {
2708
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2709
+		} elseif ($number == 0 || $number == '') {
2710
+			$output = __('No Reviews', 'geodirectory');
2711 2711
 		} else { // must be one
2712
-			$output = __( '1 Review', 'geodirectory' );
2712
+			$output = __('1 Review', 'geodirectory');
2713 2713
 		}
2714 2714
 	}
2715 2715
 	
@@ -2726,18 +2726,18 @@  discard block
 block discarded – undo
2726 2726
  */
2727 2727
 function is_page_geodir_home() {
2728 2728
 	global $wpdb;
2729
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2730
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2731
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2729
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2730
+	if (function_exists('geodir_location_geo_home_link')) {
2731
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2732 2732
 	}
2733
-	$home_url = home_url( '', 'http' );
2734
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2735
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2733
+	$home_url = home_url('', 'http');
2734
+	if (function_exists('geodir_location_geo_home_link')) {
2735
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2736 2736
 	}
2737
-	$home_url = str_replace( "www.", "", $home_url );
2738
-	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' ) ) ) {
2737
+	$home_url = str_replace("www.", "", $home_url);
2738
+	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'))) {
2739 2739
 		return true;
2740
-	} 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' ) ) {
2740
+	} 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')) {
2741 2741
 		return true;
2742 2742
 	} else {
2743 2743
 		return false;
@@ -2757,18 +2757,18 @@  discard block
 block discarded – undo
2757 2757
  *
2758 2758
  * @return string The canonical URL.
2759 2759
  */
2760
-function geodir_wpseo_homepage_canonical( $url ) {
2760
+function geodir_wpseo_homepage_canonical($url) {
2761 2761
 	global $post;
2762 2762
 
2763
-	if ( is_page_geodir_home() ) {
2763
+	if (is_page_geodir_home()) {
2764 2764
 		return home_url();
2765 2765
 	}
2766 2766
 
2767 2767
 	return $url;
2768 2768
 }
2769 2769
 
2770
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2771
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2770
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2771
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2772 2772
 
2773 2773
 /**
2774 2774
  * Add extra fields to google maps script call.
@@ -2781,20 +2781,20 @@  discard block
 block discarded – undo
2781 2781
  *
2782 2782
  * @return string Modified extra string.
2783 2783
  */
2784
-function geodir_googlemap_script_extra_details_page( $extra ) {
2784
+function geodir_googlemap_script_extra_details_page($extra) {
2785 2785
 	global $post;
2786 2786
 	$add_google_places_api = false;
2787
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2787
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2788 2788
 		$add_google_places_api = true;
2789 2789
 	}
2790
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2790
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2791 2791
 		$extra .= "&amp;libraries=places";
2792 2792
 	}
2793 2793
 
2794 2794
 	return $extra;
2795 2795
 }
2796 2796
 
2797
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2797
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2798 2798
 
2799 2799
 
2800 2800
 /**
@@ -2812,104 +2812,104 @@  discard block
 block discarded – undo
2812 2812
  *                                          after_widget.
2813 2813
  * @param array|string $instance            The settings for the particular instance of the widget.
2814 2814
  */
2815
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2815
+function geodir_popular_post_category_output($args = '', $instance = '') {
2816 2816
 	// prints the widget
2817 2817
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2818
-	extract( $args, EXTR_SKIP );
2818
+	extract($args, EXTR_SKIP);
2819 2819
 
2820 2820
 	echo $before_widget;
2821 2821
 
2822 2822
 	/** This filter is documented in geodirectory_widgets.php */
2823
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2823
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2824 2824
 
2825 2825
 	$gd_post_type = geodir_get_current_posttype();
2826 2826
 
2827
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2827
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2828 2828
 	if (!isset($category_restrict)) {
2829 2829
 		$category_restrict = false;
2830 2830
 	}
2831
-	if ( ! empty( $gd_post_type ) ) {
2831
+	if (!empty($gd_post_type)) {
2832 2832
 		$default_post_type = $gd_post_type;
2833
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2833
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2834 2834
 		$default_post_type = $instance['default_post_type'];
2835 2835
 	} else {
2836 2836
 		$all_gd_post_type  = geodir_get_posttypes();
2837
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2837
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2838 2838
 	}
2839
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2839
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2840 2840
 
2841 2841
 	$taxonomy = array();
2842
-	if ( ! empty( $gd_post_type ) ) {
2843
-		$taxonomy[] = $gd_post_type . "category";
2842
+	if (!empty($gd_post_type)) {
2843
+		$taxonomy[] = $gd_post_type."category";
2844 2844
 	} else {
2845
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2845
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2846 2846
 	}
2847 2847
 
2848 2848
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2849 2849
 
2850
-	$term_args = array( 'taxonomy' => $taxonomy );
2851
-	if ( $parent_only ) {
2850
+	$term_args = array('taxonomy' => $taxonomy);
2851
+	if ($parent_only) {
2852 2852
 		$term_args['parent'] = 0;
2853 2853
 	}
2854 2854
 
2855
-	$terms   = get_terms( $term_args );
2855
+	$terms   = get_terms($term_args);
2856 2856
 	$a_terms = array();
2857 2857
 	$b_terms = array();
2858 2858
 
2859
-	foreach ( $terms as $term ) {
2860
-		if ( $term->count > 0 ) {
2861
-			$a_terms[ $term->taxonomy ][] = $term;
2859
+	foreach ($terms as $term) {
2860
+		if ($term->count > 0) {
2861
+			$a_terms[$term->taxonomy][] = $term;
2862 2862
 		}
2863 2863
 	}
2864 2864
 
2865
-	if ( ! empty( $a_terms ) ) {
2866
-		foreach ( $a_terms as $b_key => $b_val ) {
2867
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2865
+	if (!empty($a_terms)) {
2866
+		foreach ($a_terms as $b_key => $b_val) {
2867
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2868 2868
 		}
2869 2869
 
2870
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2870
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2871 2871
 
2872 2872
 		$tax_change_output = '';
2873
-		if ( count( $b_terms ) > 1 ) {
2874
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2875
-			foreach ( $b_terms as $key => $val ) {
2876
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2877
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2878
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2873
+		if (count($b_terms) > 1) {
2874
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2875
+			foreach ($b_terms as $key => $val) {
2876
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2877
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2878
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2879 2879
 			}
2880 2880
 			$tax_change_output .= "</select>";
2881 2881
 		}
2882 2882
 
2883
-		if ( ! empty( $b_terms ) ) {
2884
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2885
-			global $cat_count;//make global so we can change via function
2883
+		if (!empty($b_terms)) {
2884
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2885
+			global $cat_count; //make global so we can change via function
2886 2886
 			$cat_count = 0;
2887 2887
 			?>
2888 2888
 			<div class="geodir-category-list-in clearfix">
2889 2889
 				<div class="geodir-cat-list clearfix">
2890 2890
 					<?php
2891
-					echo $before_title . __( $title ) . $after_title;
2891
+					echo $before_title.__($title).$after_title;
2892 2892
 
2893 2893
 					echo $tax_change_output;
2894 2894
 
2895 2895
 					echo '<ul class="geodir-popular-cat-list">';
2896 2896
 
2897
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2897
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2898 2898
 
2899 2899
 					echo '</ul>';
2900 2900
 					?>
2901 2901
 				</div>
2902 2902
 				<?php
2903 2903
 				$hide = '';
2904
-				if ( $cat_count < $category_limit ) {
2904
+				if ($cat_count < $category_limit) {
2905 2905
 					$hide = 'style="display:none;"';
2906 2906
 				}
2907 2907
 				echo "<div class='geodir-cat-list-more' $hide >";
2908
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2909
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2908
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2909
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2910 2910
 				echo "</div>";
2911 2911
 				/* add scripts */
2912
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2912
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2913 2913
 				?>
2914 2914
 			</div>
2915 2915
 			<?php
@@ -2929,28 +2929,28 @@  discard block
 block discarded – undo
2929 2929
  * @param int $category_limit               Number of categories to display by default.
2930 2930
  * @param bool $category_restrict           If the cat limit shoudl be hidden or not shown.
2931 2931
  */
2932
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2932
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2933 2933
 	global $geodir_post_category_str, $cat_count;
2934 2934
 	$term_icons = geodir_get_term_icon();
2935 2935
 
2936 2936
 	$geodir_post_category_str = array();
2937 2937
 
2938 2938
 
2939
-	foreach ( $terms as $cat ) {
2940
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2941
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2939
+	foreach ($terms as $cat) {
2940
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2941
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2942 2942
 
2943
-		$cat_count ++;
2943
+		$cat_count++;
2944 2944
 
2945
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
2945
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2946 2946
 
2947
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2948
-		if($category_restrict && $cat_count > $category_limit ){
2947
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2948
+		if ($category_restrict && $cat_count > $category_limit) {
2949 2949
 			continue;
2950 2950
 		}
2951 2951
 		$total_post = $cat->count;
2952 2952
 
2953
-		$term_link = get_term_link( $cat, $cat->taxonomy );
2953
+		$term_link = get_term_link($cat, $cat->taxonomy);
2954 2954
 		/**
2955 2955
 		 * Filer the category term link.
2956 2956
 		 *
@@ -2960,11 +2960,11 @@  discard block
 block discarded – undo
2960 2960
 		 * @param int $cat          ->term_id The term id.
2961 2961
 		 * @param string $post_type Wordpress post type.
2962 2962
 		 */
2963
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2963
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
2964 2964
 
2965
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2966
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
2967
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2965
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
2966
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
2967
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
2968 2968
 		echo '</a></li>';
2969 2969
 	}
2970 2970
 }
@@ -2979,14 +2979,14 @@  discard block
 block discarded – undo
2979 2979
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
2980 2980
  * @param array|string $instance The settings for the particular instance of the widget.
2981 2981
  */
2982
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
2982
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
2983 2983
 	// prints the widget
2984
-	extract( $args, EXTR_SKIP );
2984
+	extract($args, EXTR_SKIP);
2985 2985
 
2986 2986
 	echo $before_widget;
2987 2987
 
2988 2988
 	/** This filter is documented in geodirectory_widgets.php */
2989
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2989
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2990 2990
 	/**
2991 2991
 	 * Filter the widget post type.
2992 2992
 	 *
@@ -2994,7 +2994,7 @@  discard block
 block discarded – undo
2994 2994
 	 *
2995 2995
 	 * @param string $instance ['post_type'] Post type of listing.
2996 2996
 	 */
2997
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
2997
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2998 2998
 	/**
2999 2999
 	 * Filter the widget's term.
3000 3000
 	 *
@@ -3002,7 +3002,7 @@  discard block
 block discarded – undo
3002 3002
 	 *
3003 3003
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3004 3004
 	 */
3005
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3005
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3006 3006
 	/**
3007 3007
 	 * Filter widget's "add_location_filter" value.
3008 3008
 	 *
@@ -3010,7 +3010,7 @@  discard block
 block discarded – undo
3010 3010
 	 *
3011 3011
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3012 3012
 	 */
3013
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3013
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3014 3014
 	/**
3015 3015
 	 * Filter the widget listings limit.
3016 3016
 	 *
@@ -3018,7 +3018,7 @@  discard block
 block discarded – undo
3018 3018
 	 *
3019 3019
 	 * @param string $instance ['post_number'] Number of listings to display.
3020 3020
 	 */
3021
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3021
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3022 3022
 	/**
3023 3023
 	 * Filter the widget listings limit shown at one time.
3024 3024
 	 *
@@ -3026,7 +3026,7 @@  discard block
 block discarded – undo
3026 3026
 	 *
3027 3027
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3028 3028
 	 */
3029
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3029
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3030 3030
 	/**
3031 3031
 	 * Filter the widget slide width.
3032 3032
 	 *
@@ -3034,7 +3034,7 @@  discard block
 block discarded – undo
3034 3034
 	 *
3035 3035
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3036 3036
 	 */
3037
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3037
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3038 3038
 	/**
3039 3039
 	 * Filter widget's "show title" value.
3040 3040
 	 *
@@ -3042,7 +3042,7 @@  discard block
 block discarded – undo
3042 3042
 	 *
3043 3043
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3044 3044
 	 */
3045
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3045
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3046 3046
 	/**
3047 3047
 	 * Filter widget's "slideshow" value.
3048 3048
 	 *
@@ -3050,7 +3050,7 @@  discard block
 block discarded – undo
3050 3050
 	 *
3051 3051
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3052 3052
 	 */
3053
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3053
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3054 3054
 	/**
3055 3055
 	 * Filter widget's "animationLoop" value.
3056 3056
 	 *
@@ -3058,7 +3058,7 @@  discard block
 block discarded – undo
3058 3058
 	 *
3059 3059
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3060 3060
 	 */
3061
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3061
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3062 3062
 	/**
3063 3063
 	 * Filter widget's "directionNav" value.
3064 3064
 	 *
@@ -3066,7 +3066,7 @@  discard block
 block discarded – undo
3066 3066
 	 *
3067 3067
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3068 3068
 	 */
3069
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3069
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3070 3070
 	/**
3071 3071
 	 * Filter widget's "slideshowSpeed" value.
3072 3072
 	 *
@@ -3074,7 +3074,7 @@  discard block
 block discarded – undo
3074 3074
 	 *
3075 3075
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3076 3076
 	 */
3077
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3077
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3078 3078
 	/**
3079 3079
 	 * Filter widget's "animationSpeed" value.
3080 3080
 	 *
@@ -3082,7 +3082,7 @@  discard block
 block discarded – undo
3082 3082
 	 *
3083 3083
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3084 3084
 	 */
3085
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3085
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3086 3086
 	/**
3087 3087
 	 * Filter widget's "animation" value.
3088 3088
 	 *
@@ -3090,7 +3090,7 @@  discard block
 block discarded – undo
3090 3090
 	 *
3091 3091
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3092 3092
 	 */
3093
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3093
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3094 3094
 	/**
3095 3095
 	 * Filter widget's "list_sort" type.
3096 3096
 	 *
@@ -3098,10 +3098,10 @@  discard block
 block discarded – undo
3098 3098
 	 *
3099 3099
 	 * @param string $instance ['list_sort'] Listing sort by type.
3100 3100
 	 */
3101
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3102
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3101
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3102
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3103 3103
 
3104
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3104
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3105 3105
 	?>
3106 3106
 	<script type="text/javascript">
3107 3107
 		jQuery(window).load(function () {
@@ -3119,23 +3119,23 @@  discard block
 block discarded – undo
3119 3119
 				itemWidth: 75,
3120 3120
 				itemMargin: 5,
3121 3121
 				asNavFor: '#geodir_widget_slider',
3122
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3122
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3123 3123
 			});
3124 3124
 
3125 3125
 			jQuery('#geodir_widget_slider').flexslider({
3126
-				animation: "<?php echo $animation;?>",
3126
+				animation: "<?php echo $animation; ?>",
3127 3127
 				selector: ".geodir-slides > li",
3128 3128
 				namespace: "geodir-",
3129 3129
 				controlNav: true,
3130
-				animationLoop: <?php echo $animationLoop;?>,
3131
-				slideshow: <?php echo $slideshow;?>,
3132
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3133
-				animationSpeed: <?php echo $animationSpeed;?>,
3134
-				directionNav: <?php echo $directionNav;?>,
3135
-				maxItems: <?php echo $max_show;?>,
3130
+				animationLoop: <?php echo $animationLoop; ?>,
3131
+				slideshow: <?php echo $slideshow; ?>,
3132
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3133
+				animationSpeed: <?php echo $animationSpeed; ?>,
3134
+				directionNav: <?php echo $directionNav; ?>,
3135
+				maxItems: <?php echo $max_show; ?>,
3136 3136
 				move: 1,
3137
-				<?php if ( $slide_width ) {
3138
-				echo "itemWidth: " . $slide_width . ",";
3137
+				<?php if ($slide_width) {
3138
+				echo "itemWidth: ".$slide_width.",";
3139 3139
 			}?>
3140 3140
 				sync: "#geodir_widget_carousel",
3141 3141
 				start: function (slider) {
@@ -3147,7 +3147,7 @@  discard block
 block discarded – undo
3147 3147
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3148 3148
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3149 3149
 				},
3150
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3150
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3151 3151
 			});
3152 3152
 		});
3153 3153
 	</script>
@@ -3160,62 +3160,62 @@  discard block
 block discarded – undo
3160 3160
 		'order_by'       => $list_sort
3161 3161
 	);
3162 3162
 
3163
-	if ( $show_featured_only ) {
3163
+	if ($show_featured_only) {
3164 3164
 		$query_args['show_featured_only'] = 1;
3165 3165
 	}
3166 3166
 
3167
-	if ( $category != 0 || $category != '' ) {
3168
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3167
+	if ($category != 0 || $category != '') {
3168
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3169 3169
 		$tax_query         = array(
3170 3170
 			'taxonomy' => $category_taxonomy[0],
3171 3171
 			'field'    => 'id',
3172 3172
 			'terms'    => $category
3173 3173
 		);
3174 3174
 
3175
-		$query_args['tax_query'] = array( $tax_query );
3175
+		$query_args['tax_query'] = array($tax_query);
3176 3176
 	}
3177 3177
 
3178 3178
 	// we want listings with featured image only
3179 3179
 	$query_args['featured_image_only'] = 1;
3180 3180
 
3181
-	if ( $post_type == 'gd_event' ) {
3181
+	if ($post_type == 'gd_event') {
3182 3182
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3183 3183
 	}// show only upcoming events
3184 3184
 
3185
-	$widget_listings = geodir_get_widget_listings( $query_args );
3186
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3187
-		if ( $title ) {
3188
-			echo $before_title . $title . $after_title;
3185
+	$widget_listings = geodir_get_widget_listings($query_args);
3186
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3187
+		if ($title) {
3188
+			echo $before_title.$title.$after_title;
3189 3189
 		}
3190 3190
 
3191 3191
 		global $post;
3192 3192
 
3193
-		$current_post = $post;// keep current post info
3193
+		$current_post = $post; // keep current post info
3194 3194
 
3195 3195
 		$widget_main_slides = '';
3196 3196
 		$nav_slides         = '';
3197 3197
 		$widget_slides      = 0;
3198 3198
 
3199
-		foreach ( $widget_listings as $widget_listing ) {
3199
+		foreach ($widget_listings as $widget_listing) {
3200 3200
 			global $gd_widget_listing_type;
3201 3201
 			$post         = $widget_listing;
3202
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3202
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3203 3203
 
3204
-			if ( ! empty( $widget_image ) ) {
3205
-				if ( $widget_image->height >= 200 ) {
3204
+			if (!empty($widget_image)) {
3205
+				if ($widget_image->height >= 200) {
3206 3206
 					$widget_spacer_height = 0;
3207 3207
 				} else {
3208
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3208
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3209 3209
 				}
3210 3210
 
3211
-				$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" />';
3211
+				$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" />';
3212 3212
 
3213 3213
 				$title = '';
3214
-				if ( $show_title ) {
3215
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3214
+				if ($show_title) {
3215
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3216 3216
 					$post_id        = $post->ID;
3217
-					$post_permalink = get_permalink( $post->ID );
3218
-					$post_title     = get_the_title( $post->ID );
3217
+					$post_permalink = get_permalink($post->ID);
3218
+					$post_title     = get_the_title($post->ID);
3219 3219
 					/**
3220 3220
 					 * Filter the listing slider widget title.
3221 3221
 					 *
@@ -3226,12 +3226,12 @@  discard block
 block discarded – undo
3226 3226
 					 * @param string $post_permalink The post permalink url.
3227 3227
 					 * @param string $post_title     The post title text.
3228 3228
 					 */
3229
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3229
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3230 3230
 				}
3231 3231
 
3232
-				$widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>';
3233
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3234
-				$widget_slides ++;
3232
+				$widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>';
3233
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3234
+				$widget_slides++;
3235 3235
 			}
3236 3236
 		}
3237 3237
 		?>
@@ -3240,7 +3240,7 @@  discard block
 block discarded – undo
3240 3240
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3241 3241
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3242 3242
 			</div>
3243
-			<?php if ( $widget_slides > 1 ) { ?>
3243
+			<?php if ($widget_slides > 1) { ?>
3244 3244
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3245 3245
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3246 3246
 				</div>
@@ -3248,7 +3248,7 @@  discard block
 block discarded – undo
3248 3248
 		</div>
3249 3249
 		<?php
3250 3250
 		$GLOBALS['post'] = $current_post;
3251
-		setup_postdata( $current_post );
3251
+		setup_postdata($current_post);
3252 3252
 	}
3253 3253
 	echo $after_widget;
3254 3254
 }
@@ -3264,46 +3264,46 @@  discard block
 block discarded – undo
3264 3264
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3265 3265
  * @param array|string $instance The settings for the particular instance of the widget.
3266 3266
  */
3267
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3267
+function geodir_loginwidget_output($args = '', $instance = '') {
3268 3268
 	//print_r($args);
3269 3269
 	//print_r($instance);
3270 3270
 	// prints the widget
3271
-	extract( $args, EXTR_SKIP );
3271
+	extract($args, EXTR_SKIP);
3272 3272
 
3273 3273
 	/** This filter is documented in geodirectory_widgets.php */
3274
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3274
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3275 3275
 
3276 3276
 	echo $before_widget;
3277
-	echo $before_title . $title . $after_title;
3277
+	echo $before_title.$title.$after_title;
3278 3278
 
3279
-	if ( is_user_logged_in() ) {
3279
+	if (is_user_logged_in()) {
3280 3280
 		global $current_user;
3281 3281
 
3282
-		$author_link = get_author_posts_url( $current_user->data->ID );
3283
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3282
+		$author_link = get_author_posts_url($current_user->data->ID);
3283
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3284 3284
 
3285 3285
 		echo '<ul class="geodir-loginbox-list">';
3286 3286
 		ob_start();
3287 3287
 		?>
3288 3288
 		<li><a class="signin"
3289
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3289
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3290 3290
 		<?php
3291
-		$post_types                           = geodir_get_posttypes( 'object' );
3292
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3293
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3291
+		$post_types                           = geodir_get_posttypes('object');
3292
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3293
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3294 3294
 
3295
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3295
+		if (!empty($show_add_listing_post_types_main_nav)) {
3296 3296
 			$addlisting_links = '';
3297
-			foreach ( $post_types as $key => $postobj ) {
3297
+			foreach ($post_types as $key => $postobj) {
3298 3298
 
3299
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3299
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3300 3300
 
3301
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3301
+					if ($add_link = geodir_get_addlisting_link($key)) {
3302 3302
 
3303 3303
 						$name = $postobj->labels->name;
3304 3304
 
3305 3305
 						$selected = '';
3306
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3306
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3307 3307
 							$selected = 'selected="selected"';
3308 3308
 						}
3309 3309
 
@@ -3316,22 +3316,22 @@  discard block
 block discarded – undo
3316 3316
 						 * @param string $key       Add listing array key.
3317 3317
 						 * @param int $current_user ->ID Current user ID.
3318 3318
 						 */
3319
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3319
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3320 3320
 
3321
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3321
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3322 3322
 
3323 3323
 					}
3324 3324
 				}
3325 3325
 
3326 3326
 			}
3327 3327
 
3328
-			if ( $addlisting_links != '' ) { ?>
3328
+			if ($addlisting_links != '') { ?>
3329 3329
 
3330 3330
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3331 3331
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3332
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3332
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3333 3333
 						<option value="" disabled="disabled" selected="selected"
3334
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3334
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3335 3335
 						<?php echo $addlisting_links; ?>
3336 3336
 					</select></li> <?php
3337 3337
 
@@ -3339,23 +3339,23 @@  discard block
 block discarded – undo
3339 3339
 
3340 3340
 		}
3341 3341
 		// My Favourites in Dashboard
3342
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3342
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3343 3343
 		$user_favourite                    = geodir_user_favourite_listing_count();
3344 3344
 
3345
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3345
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3346 3346
 			$favourite_links = '';
3347 3347
 
3348
-			foreach ( $post_types as $key => $postobj ) {
3349
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3348
+			foreach ($post_types as $key => $postobj) {
3349
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3350 3350
 					$name           = $postobj->labels->name;
3351
-					$post_type_link = geodir_getlink( $author_link, array(
3351
+					$post_type_link = geodir_getlink($author_link, array(
3352 3352
 						'stype' => $key,
3353 3353
 						'list'  => 'favourite'
3354
-					), false );
3354
+					), false);
3355 3355
 
3356 3356
 					$selected = '';
3357 3357
 
3358
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3358
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3359 3359
 						$selected = 'selected="selected"';
3360 3360
 					}
3361 3361
 					/**
@@ -3367,20 +3367,20 @@  discard block
 block discarded – undo
3367 3367
 					 * @param string $key            Favorite listing array key.
3368 3368
 					 * @param int $current_user      ->ID Current user ID.
3369 3369
 					 */
3370
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3370
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3371 3371
 
3372
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3372
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3373 3373
 				}
3374 3374
 			}
3375 3375
 
3376
-			if ( $favourite_links != '' ) {
3376
+			if ($favourite_links != '') {
3377 3377
 				?>
3378 3378
 				<li>
3379 3379
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3380 3380
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3381
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3381
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3382 3382
 						<option value="" disabled="disabled" selected="selected"
3383
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3383
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3384 3384
 						<?php echo $favourite_links; ?>
3385 3385
 					</select>
3386 3386
 				</li>
@@ -3389,19 +3389,19 @@  discard block
 block discarded – undo
3389 3389
 		}
3390 3390
 
3391 3391
 
3392
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3392
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3393 3393
 		$user_listing                     = geodir_user_post_listing_count();
3394 3394
 
3395
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3395
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3396 3396
 			$listing_links = '';
3397 3397
 
3398
-			foreach ( $post_types as $key => $postobj ) {
3399
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3398
+			foreach ($post_types as $key => $postobj) {
3399
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3400 3400
 					$name         = $postobj->labels->name;
3401
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3401
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3402 3402
 
3403 3403
 					$selected = '';
3404
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3404
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3405 3405
 						$selected = 'selected="selected"';
3406 3406
 					}
3407 3407
 
@@ -3414,20 +3414,20 @@  discard block
 block discarded – undo
3414 3414
 					 * @param string $key          My listing array key.
3415 3415
 					 * @param int $current_user    ->ID Current user ID.
3416 3416
 					 */
3417
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3417
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3418 3418
 
3419
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3419
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3420 3420
 				}
3421 3421
 			}
3422 3422
 
3423
-			if ( $listing_links != '' ) {
3423
+			if ($listing_links != '') {
3424 3424
 				?>
3425 3425
 				<li>
3426 3426
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3427 3427
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3428
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3428
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3429 3429
 						<option value="" disabled="disabled" selected="selected"
3430
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3430
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3431 3431
 						<?php echo $listing_links; ?>
3432 3432
 					</select>
3433 3433
 				</li>
@@ -3443,7 +3443,7 @@  discard block
 block discarded – undo
3443 3443
 		 *
3444 3444
 		 * @param string $dashboard_link Dashboard links HTML.
3445 3445
 		 */
3446
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3446
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3447 3447
 		echo '</ul>';
3448 3448
 
3449 3449
 		/**
@@ -3451,7 +3451,7 @@  discard block
 block discarded – undo
3451 3451
 		 *
3452 3452
 		 * @since 1.6.6
3453 3453
 		 */
3454
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3454
+		do_action('geodir_after_loginwidget_form_logged_in');
3455 3455
 
3456 3456
 
3457 3457
 	} else {
@@ -3466,18 +3466,18 @@  discard block
 block discarded – undo
3466 3466
 		<form name="loginform" class="loginform1"
3467 3467
 		      action="<?php echo geodir_login_url(); ?>"
3468 3468
 		      method="post">
3469
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3469
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3470 3470
 			                                    type="text" class="textfield user_login1"/> <span
3471 3471
 					class="user_loginInfo"></span></div>
3472
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3472
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3473 3473
 			                                    name="pwd" type="password"
3474 3474
 			                                    class="textfield user_pass1 input-text"/><span
3475 3475
 					class="user_passInfo"></span></div>
3476 3476
 
3477
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3477
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3478 3478
 			<input type="hidden" name="testcookie" value="1"/>
3479 3479
 
3480
-				<?php do_action( 'login_form' ); ?>
3480
+				<?php do_action('login_form'); ?>
3481 3481
 
3482 3482
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3483 3483
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3489,11 +3489,11 @@  discard block
 block discarded – undo
3489 3489
 					 *
3490 3490
 					 * @since 1.0.0
3491 3491
 					 */
3492
-					$is_enable_signup = get_option( 'users_can_register' );
3492
+					$is_enable_signup = get_option('users_can_register');
3493 3493
 					
3494
-					if ( $is_enable_signup ) {
3494
+					if ($is_enable_signup) {
3495 3495
 					?>
3496
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3496
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3497 3497
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3498 3498
 
3499 3499
 					<?php
@@ -3504,7 +3504,7 @@  discard block
 block discarded – undo
3504 3504
 					 * @since 1.0.0
3505 3505
 					 */
3506 3506
 					?>
3507
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3507
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3508 3508
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3509 3509
 		</form>
3510 3510
 		<?php
@@ -3513,7 +3513,7 @@  discard block
 block discarded – undo
3513 3513
 		 *
3514 3514
 		 * @since 1.6.6
3515 3515
 		 */
3516
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3516
+		do_action('geodir_after_loginwidget_form_logged_out');
3517 3517
 	}
3518 3518
 
3519 3519
 	echo $after_widget;
@@ -3535,16 +3535,16 @@  discard block
 block discarded – undo
3535 3535
  *                                         after_widget.
3536 3536
  * @param array|string $instance           The settings for the particular instance of the widget.
3537 3537
  */
3538
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3538
+function geodir_popular_postview_output($args = '', $instance = '') {
3539 3539
 	global $gd_session;
3540 3540
 
3541 3541
 	// prints the widget
3542
-	extract( $args, EXTR_SKIP );
3542
+	extract($args, EXTR_SKIP);
3543 3543
 
3544 3544
 	echo $before_widget;
3545 3545
 
3546 3546
 	/** This filter is documented in geodirectory_widgets.php */
3547
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3547
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3548 3548
 	/**
3549 3549
 	 * Filter the widget post type.
3550 3550
 	 *
@@ -3552,7 +3552,7 @@  discard block
 block discarded – undo
3552 3552
 	 *
3553 3553
 	 * @param string $instance ['post_type'] Post type of listing.
3554 3554
 	 */
3555
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3555
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3556 3556
 	/**
3557 3557
 	 * Filter the widget's term.
3558 3558
 	 *
@@ -3560,7 +3560,7 @@  discard block
 block discarded – undo
3560 3560
 	 *
3561 3561
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3562 3562
 	 */
3563
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3563
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3564 3564
 	/**
3565 3565
 	 * Filter the widget listings limit.
3566 3566
 	 *
@@ -3568,7 +3568,7 @@  discard block
 block discarded – undo
3568 3568
 	 *
3569 3569
 	 * @param string $instance ['post_number'] Number of listings to display.
3570 3570
 	 */
3571
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3571
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3572 3572
 	/**
3573 3573
 	 * Filter widget's "layout" type.
3574 3574
 	 *
@@ -3576,7 +3576,7 @@  discard block
 block discarded – undo
3576 3576
 	 *
3577 3577
 	 * @param string $instance ['layout'] Widget layout type.
3578 3578
 	 */
3579
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3579
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3580 3580
 	/**
3581 3581
 	 * Filter widget's "add_location_filter" value.
3582 3582
 	 *
@@ -3584,7 +3584,7 @@  discard block
 block discarded – undo
3584 3584
 	 *
3585 3585
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3586 3586
 	 */
3587
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3587
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3588 3588
 	/**
3589 3589
 	 * Filter widget's listing width.
3590 3590
 	 *
@@ -3592,7 +3592,7 @@  discard block
 block discarded – undo
3592 3592
 	 *
3593 3593
 	 * @param string $instance ['listing_width'] Listing width.
3594 3594
 	 */
3595
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3595
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3596 3596
 	/**
3597 3597
 	 * Filter widget's "list_sort" type.
3598 3598
 	 *
@@ -3600,25 +3600,25 @@  discard block
 block discarded – undo
3600 3600
 	 *
3601 3601
 	 * @param string $instance ['list_sort'] Listing sort by type.
3602 3602
 	 */
3603
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3604
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3603
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3604
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3605 3605
 
3606 3606
 	// set post type to current viewing post type
3607
-	if ( $use_viewing_post_type ) {
3607
+	if ($use_viewing_post_type) {
3608 3608
 		$current_post_type = geodir_get_current_posttype();
3609
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3609
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3610 3610
 			$post_type = $current_post_type;
3611 3611
 			$category  = array(); // old post type category will not work for current changed post type
3612 3612
 		}
3613 3613
 	}
3614 3614
 	// replace widget title dynamically
3615
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3616
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3615
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3616
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3617 3617
 
3618
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3619
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3618
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3619
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3620 3620
 
3621
-	if ( isset( $instance['character_count'] ) ) {
3621
+	if (isset($instance['character_count'])) {
3622 3622
 		/**
3623 3623
 		 * Filter the widget's excerpt character count.
3624 3624
 		 *
@@ -3626,37 +3626,37 @@  discard block
 block discarded – undo
3626 3626
 		 *
3627 3627
 		 * @param int $instance ['character_count'] Excerpt character count.
3628 3628
 		 */
3629
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3629
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3630 3630
 	} else {
3631 3631
 		$character_count = '';
3632 3632
 	}
3633 3633
 
3634
-	if ( empty( $title ) || $title == 'All' ) {
3635
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3634
+	if (empty($title) || $title == 'All') {
3635
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3636 3636
 	}
3637 3637
 
3638 3638
 	$location_url = array();
3639
-	$city         = get_query_var( 'gd_city' );
3640
-	if ( ! empty( $city ) ) {
3641
-		$country = get_query_var( 'gd_country' );
3642
-		$region  = get_query_var( 'gd_region' );
3639
+	$city         = get_query_var('gd_city');
3640
+	if (!empty($city)) {
3641
+		$country = get_query_var('gd_country');
3642
+		$region  = get_query_var('gd_region');
3643 3643
 
3644
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3644
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3645 3645
 
3646
-		if ( $geodir_show_location_url == 'all' ) {
3647
-			if ( $country != '' ) {
3646
+		if ($geodir_show_location_url == 'all') {
3647
+			if ($country != '') {
3648 3648
 				$location_url[] = $country;
3649 3649
 			}
3650 3650
 
3651
-			if ( $region != '' ) {
3651
+			if ($region != '') {
3652 3652
 				$location_url[] = $region;
3653 3653
 			}
3654
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3655
-			if ( $country != '' ) {
3654
+		} else if ($geodir_show_location_url == 'country_city') {
3655
+			if ($country != '') {
3656 3656
 				$location_url[] = $country;
3657 3657
 			}
3658
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3659
-			if ( $region != '' ) {
3658
+		} else if ($geodir_show_location_url == 'region_city') {
3659
+			if ($region != '') {
3660 3660
 				$location_url[] = $region;
3661 3661
 			}
3662 3662
 		}
@@ -3664,37 +3664,37 @@  discard block
 block discarded – undo
3664 3664
 		$location_url[] = $city;
3665 3665
 	}
3666 3666
 
3667
-	$location_url  = implode( '/', $location_url );
3667
+	$location_url  = implode('/', $location_url);
3668 3668
 	$skip_location = false;
3669
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3669
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3670 3670
 		$skip_location = true;
3671
-		$gd_session->un_set( 'gd_multi_location' );
3671
+		$gd_session->un_set('gd_multi_location');
3672 3672
 	}
3673 3673
 
3674
-	if ( get_option( 'permalink_structure' ) ) {
3675
-		$viewall_url = get_post_type_archive_link( $post_type );
3674
+	if (get_option('permalink_structure')) {
3675
+		$viewall_url = get_post_type_archive_link($post_type);
3676 3676
 	} else {
3677
-		$viewall_url = get_post_type_archive_link( $post_type );
3677
+		$viewall_url = get_post_type_archive_link($post_type);
3678 3678
 	}
3679 3679
 
3680
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3680
+	if (!empty($category) && $category[0] != '0') {
3681 3681
 		global $geodir_add_location_url;
3682 3682
 
3683 3683
 		$geodir_add_location_url = '0';
3684 3684
 
3685
-		if ( $add_location_filter != '0' ) {
3685
+		if ($add_location_filter != '0') {
3686 3686
 			$geodir_add_location_url = '1';
3687 3687
 		}
3688 3688
 
3689
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3689
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3690 3690
 
3691 3691
 		$geodir_add_location_url = null;
3692 3692
 	}
3693
-	if ( $skip_location ) {
3694
-		$gd_session->set( 'gd_multi_location', 1 );
3693
+	if ($skip_location) {
3694
+		$gd_session->set('gd_multi_location', 1);
3695 3695
 	}
3696 3696
 
3697
-	if ( is_wp_error( $viewall_url ) ) {
3697
+	if (is_wp_error($viewall_url)) {
3698 3698
 		$viewall_url = '';
3699 3699
 	}
3700 3700
 
@@ -3706,34 +3706,34 @@  discard block
 block discarded – undo
3706 3706
 		'order_by'       => $list_sort
3707 3707
 	);
3708 3708
 
3709
-	if ( $character_count ) {
3709
+	if ($character_count) {
3710 3710
 		$query_args['excerpt_length'] = $character_count;
3711 3711
 	}
3712 3712
 
3713
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3713
+	if (!empty($instance['show_featured_only'])) {
3714 3714
 		$query_args['show_featured_only'] = 1;
3715 3715
 	}
3716 3716
 
3717
-	if ( ! empty( $instance['show_special_only'] ) ) {
3717
+	if (!empty($instance['show_special_only'])) {
3718 3718
 		$query_args['show_special_only'] = 1;
3719 3719
 	}
3720 3720
 
3721
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3721
+	if (!empty($instance['with_pics_only'])) {
3722 3722
 		$query_args['with_pics_only']      = 0;
3723 3723
 		$query_args['featured_image_only'] = 1;
3724 3724
 	}
3725 3725
 
3726
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3726
+	if (!empty($instance['with_videos_only'])) {
3727 3727
 		$query_args['with_videos_only'] = 1;
3728 3728
 	}
3729
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3729
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3730 3730
 
3731
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3732
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3731
+	if (!empty($category) && $category[0] != '0') {
3732
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3733 3733
 
3734 3734
 		######### WPML #########
3735
-		if ( function_exists( 'icl_object_id' ) ) {
3736
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3735
+		if (function_exists('icl_object_id')) {
3736
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3737 3737
 		}
3738 3738
 		######### WPML #########
3739 3739
 
@@ -3743,14 +3743,14 @@  discard block
 block discarded – undo
3743 3743
 			'terms'    => $category
3744 3744
 		);
3745 3745
 
3746
-		$query_args['tax_query'] = array( $tax_query );
3746
+		$query_args['tax_query'] = array($tax_query);
3747 3747
 	}
3748 3748
 
3749 3749
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3750 3750
 
3751
-	$widget_listings = geodir_get_widget_listings( $query_args );
3751
+	$widget_listings = geodir_get_widget_listings($query_args);
3752 3752
 
3753
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3753
+	if (!empty($widget_listings) || $with_no_results) {
3754 3754
 		?>
3755 3755
 		<div class="geodir_locations geodir_location_listing">
3756 3756
 
@@ -3760,11 +3760,11 @@  discard block
 block discarded – undo
3760 3760
 			 *
3761 3761
 			 * @since 1.0.0
3762 3762
 			 */
3763
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3763
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3764 3764
 			<div class="geodir_list_heading clearfix">
3765
-				<?php echo $before_title . $title . $after_title; ?>
3765
+				<?php echo $before_title.$title.$after_title; ?>
3766 3766
 				<a href="<?php echo $viewall_url; ?>"
3767
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3767
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3768 3768
 			</div>
3769 3769
 			<?php
3770 3770
 			/**
@@ -3772,10 +3772,10 @@  discard block
 block discarded – undo
3772 3772
 			 *
3773 3773
 			 * @since 1.0.0
3774 3774
 			 */
3775
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3775
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3776 3776
 			<?php
3777
-			if ( strstr( $layout, 'gridview' ) ) {
3778
-				$listing_view_exp        = explode( '_', $layout );
3777
+			if (strstr($layout, 'gridview')) {
3778
+				$listing_view_exp        = explode('_', $layout);
3779 3779
 				$gridview_columns_widget = $layout;
3780 3780
 				$layout                  = $listing_view_exp[0];
3781 3781
 			} else {
@@ -3787,8 +3787,8 @@  discard block
 block discarded – undo
3787 3787
 			 *
3788 3788
 			 * @since 1.0.0
3789 3789
 			 */
3790
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3791
-			if ( ! isset( $character_count ) ) {
3790
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3791
+			if (!isset($character_count)) {
3792 3792
 				/**
3793 3793
 				 * Filter the widget's excerpt character count.
3794 3794
 				 *
@@ -3796,7 +3796,7 @@  discard block
 block discarded – undo
3796 3796
 				 *
3797 3797
 				 * @param int $instance ['character_count'] Excerpt character count.
3798 3798
 				 */
3799
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3799
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3800 3800
 			}
3801 3801
 
3802 3802
 			global $post, $map_jason, $map_canvas_arr;
@@ -3811,13 +3811,13 @@  discard block
 block discarded – undo
3811 3811
 			 *
3812 3812
 			 * @since 1.0.0
3813 3813
 			 */
3814
-			include( $template );
3814
+			include($template);
3815 3815
 
3816 3816
 			$geodir_is_widget_listing = false;
3817 3817
 
3818 3818
 			$GLOBALS['post'] = $current_post;
3819
-			if ( ! empty( $current_post ) ) {
3820
-				setup_postdata( $current_post );
3819
+			if (!empty($current_post)) {
3820
+				setup_postdata($current_post);
3821 3821
 			}
3822 3822
 			$map_jason      = $current_map_jason;
3823 3823
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3848,12 +3848,12 @@  discard block
 block discarded – undo
3848 3848
  *
3849 3849
  * @return int Reviews count.
3850 3850
  */
3851
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3851
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3852 3852
 	global $wpdb, $plugin_prefix;
3853 3853
 
3854
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3854
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3855 3855
 
3856
-	$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 . ")";
3856
+	$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.")";
3857 3857
 
3858 3858
 	/**
3859 3859
 	 * Filter count review sql query.
@@ -3865,9 +3865,9 @@  discard block
 block discarded – undo
3865 3865
 	 * @param int $taxonomy     The taxonomy Id.
3866 3866
 	 * @param string $post_type The post type.
3867 3867
 	 */
3868
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3868
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3869 3869
 
3870
-	$count = $wpdb->get_var( $sql );
3870
+	$count = $wpdb->get_var($sql);
3871 3871
 
3872 3872
 	return $count;
3873 3873
 }
@@ -3885,7 +3885,7 @@  discard block
 block discarded – undo
3885 3885
  *
3886 3886
  * @return array Term array data.
3887 3887
  */
3888
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3888
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3889 3889
 	/**
3890 3890
 	 * Filter review count option data.
3891 3891
 	 *
@@ -3895,78 +3895,78 @@  discard block
 block discarded – undo
3895 3895
 	 * @param bool $force_update Force update option value?. Default.false.
3896 3896
 	 * @param int $post_ID       The post id to update if any.
3897 3897
 	 */
3898
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3899
-	if ( ! empty( $option_data ) ) {
3898
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3899
+	if (!empty($option_data)) {
3900 3900
 		return $option_data;
3901 3901
 	}
3902 3902
 
3903
-	$option_data = get_option( 'geodir_global_review_count' );
3903
+	$option_data = get_option('geodir_global_review_count');
3904 3904
 
3905
-	if ( ! $option_data || $force_update ) {
3906
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3905
+	if (!$option_data || $force_update) {
3906
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3907 3907
 			global $gd_session;
3908 3908
 			$term_array = (array) $option_data;
3909
-			$post_type  = get_post_type( $post_ID );
3910
-			$taxonomy   = $post_type . 'category';
3911
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3912
-
3913
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3914
-				foreach ( $terms as $term_id ) {
3915
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3916
-					$children               = get_term_children( $term_id, $taxonomy );
3917
-					$term_array[ $term_id ] = $count;
3909
+			$post_type  = get_post_type($post_ID);
3910
+			$taxonomy   = $post_type.'category';
3911
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3912
+
3913
+			if (!empty($terms) && !is_wp_error($terms)) {
3914
+				foreach ($terms as $term_id) {
3915
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3916
+					$children               = get_term_children($term_id, $taxonomy);
3917
+					$term_array[$term_id] = $count;
3918 3918
 				}
3919 3919
 			}
3920 3920
 
3921
-			$session_listing = $gd_session->get( 'listing' );
3921
+			$session_listing = $gd_session->get('listing');
3922 3922
 
3923 3923
 			$terms = array();
3924
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3925
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3926
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3927
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3924
+			if (isset($_POST['post_category'][$taxonomy])) {
3925
+				$terms = (array) $_POST['post_category'][$taxonomy];
3926
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3927
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3928 3928
 			}
3929 3929
 
3930
-			if ( ! empty( $terms ) ) {
3931
-				foreach ( $terms as $term_id ) {
3932
-					if ( $term_id > 0 ) {
3933
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3934
-						$children               = get_term_children( $term_id, $taxonomy );
3935
-						$term_array[ $term_id ] = $count;
3930
+			if (!empty($terms)) {
3931
+				foreach ($terms as $term_id) {
3932
+					if ($term_id > 0) {
3933
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3934
+						$children               = get_term_children($term_id, $taxonomy);
3935
+						$term_array[$term_id] = $count;
3936 3936
 					}
3937 3937
 				}
3938 3938
 			}
3939 3939
 		} else { // Update reviews count for all post categories.
3940 3940
 			$term_array = array();
3941 3941
 			$post_types = geodir_get_posttypes();
3942
-			foreach ( $post_types as $post_type ) {
3942
+			foreach ($post_types as $post_type) {
3943 3943
 
3944
-				$taxonomy = geodir_get_taxonomies( $post_type );
3944
+				$taxonomy = geodir_get_taxonomies($post_type);
3945 3945
 				$taxonomy = $taxonomy[0];
3946 3946
 
3947 3947
 				$args = array(
3948 3948
 					'hide_empty' => false
3949 3949
 				);
3950 3950
 
3951
-				$terms = get_terms( $taxonomy, $args );
3951
+				$terms = get_terms($taxonomy, $args);
3952 3952
 
3953
-				foreach ( $terms as $term ) {
3954
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
3955
-					$children = get_term_children( $term->term_id, $taxonomy );
3953
+				foreach ($terms as $term) {
3954
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3955
+					$children = get_term_children($term->term_id, $taxonomy);
3956 3956
 					/*if ( is_array( $children ) ) {
3957 3957
                         foreach ( $children as $child_id ) {
3958 3958
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3959 3959
                             $count = $count + $child_count;
3960 3960
                         }
3961 3961
                     }*/
3962
-					$term_array[ $term->term_id ] = $count;
3962
+					$term_array[$term->term_id] = $count;
3963 3963
 				}
3964 3964
 			}
3965 3965
 		}
3966 3966
 
3967
-		update_option( 'geodir_global_review_count', $term_array );
3967
+		update_option('geodir_global_review_count', $term_array);
3968 3968
 		//clear cache
3969
-		wp_cache_delete( 'geodir_global_review_count' );
3969
+		wp_cache_delete('geodir_global_review_count');
3970 3970
 
3971 3971
 		return $term_array;
3972 3972
 	} else {
@@ -3982,39 +3982,39 @@  discard block
 block discarded – undo
3982 3982
  * @package GeoDirectory
3983 3983
  * @return bool
3984 3984
  */
3985
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3986
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
3985
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
3986
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3987 3987
 		return; // do not run if importing listings
3988 3988
 	}
3989 3989
 
3990
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3990
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3991 3991
 		return;
3992 3992
 	}
3993 3993
 
3994 3994
 	$post_ID = 0;
3995
-	if ( ! empty( $post ) ) {
3996
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
3995
+	if (!empty($post)) {
3996
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3997 3997
 			return;
3998 3998
 		}
3999 3999
 
4000
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4000
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4001 4001
 			return;
4002 4002
 		}
4003 4003
 
4004
-		if ( ! empty( $post->ID ) ) {
4004
+		if (!empty($post->ID)) {
4005 4005
 			$post_ID = $post->ID;
4006 4006
 		}
4007 4007
 	}
4008 4008
 
4009
-	if ( $new_status != $old_status ) {
4010
-		geodir_count_reviews_by_terms( true, $post_ID );
4009
+	if ($new_status != $old_status) {
4010
+		geodir_count_reviews_by_terms(true, $post_ID);
4011 4011
 	}
4012 4012
 
4013 4013
 	return true;
4014 4014
 }
4015 4015
 
4016
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4017
-	geodir_count_reviews_by_terms( true, $post_id );
4016
+function geodir_term_review_count_force_update_single_post($post_id) {
4017
+	geodir_count_reviews_by_terms(true, $post_id);
4018 4018
 }
4019 4019
 
4020 4020
 /*-----------------------------------------------------------------------------------*/
@@ -4031,11 +4031,11 @@  discard block
 block discarded – undo
4031 4031
  *
4032 4032
  * @return int Post count.
4033 4033
  */
4034
-function geodir_count_posts_by_term( $data, $term ) {
4034
+function geodir_count_posts_by_term($data, $term) {
4035 4035
 
4036
-	if ( $data ) {
4037
-		if ( isset( $data[ $term->term_id ] ) ) {
4038
-			return $data[ $term->term_id ];
4036
+	if ($data) {
4037
+		if (isset($data[$term->term_id])) {
4038
+			return $data[$term->term_id];
4039 4039
 		} else {
4040 4040
 			return 0;
4041 4041
 		}
@@ -4052,8 +4052,8 @@  discard block
 block discarded – undo
4052 4052
  * param array $terms An array of term objects.
4053 4053
  * @return array Sorted terms array.
4054 4054
  */
4055
-function geodir_sort_terms_by_count( $terms ) {
4056
-	usort( $terms, "geodir_sort_by_count_obj" );
4055
+function geodir_sort_terms_by_count($terms) {
4056
+	usort($terms, "geodir_sort_by_count_obj");
4057 4057
 
4058 4058
 	return $terms;
4059 4059
 }
@@ -4068,8 +4068,8 @@  discard block
 block discarded – undo
4068 4068
  *
4069 4069
  * @return array Sorted terms array.
4070 4070
  */
4071
-function geodir_sort_terms_by_review_count( $terms ) {
4072
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4071
+function geodir_sort_terms_by_review_count($terms) {
4072
+	usort($terms, "geodir_sort_by_review_count_obj");
4073 4073
 
4074 4074
 	return $terms;
4075 4075
 }
@@ -4085,12 +4085,12 @@  discard block
 block discarded – undo
4085 4085
  *
4086 4086
  * @return array Sorted terms array.
4087 4087
  */
4088
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4089
-	if ( $sort == 'count' ) {
4090
-		return geodir_sort_terms_by_count( $terms );
4088
+function geodir_sort_terms($terms, $sort = 'count') {
4089
+	if ($sort == 'count') {
4090
+		return geodir_sort_terms_by_count($terms);
4091 4091
 	}
4092
-	if ( $sort == 'review_count' ) {
4093
-		return geodir_sort_terms_by_review_count( $terms );
4092
+	if ($sort == 'review_count') {
4093
+		return geodir_sort_terms_by_review_count($terms);
4094 4094
 	}
4095 4095
 }
4096 4096
 
@@ -4108,7 +4108,7 @@  discard block
 block discarded – undo
4108 4108
  *
4109 4109
  * @return bool
4110 4110
  */
4111
-function geodir_sort_by_count( $a, $b ) {
4111
+function geodir_sort_by_count($a, $b) {
4112 4112
 	return $a['count'] < $b['count'];
4113 4113
 }
4114 4114
 
@@ -4123,7 +4123,7 @@  discard block
 block discarded – undo
4123 4123
  *
4124 4124
  * @return bool
4125 4125
  */
4126
-function geodir_sort_by_count_obj( $a, $b ) {
4126
+function geodir_sort_by_count_obj($a, $b) {
4127 4127
 	return $a->count < $b->count;
4128 4128
 }
4129 4129
 
@@ -4138,7 +4138,7 @@  discard block
 block discarded – undo
4138 4138
  *
4139 4139
  * @return bool
4140 4140
  */
4141
-function geodir_sort_by_review_count_obj( $a, $b ) {
4141
+function geodir_sort_by_review_count_obj($a, $b) {
4142 4142
 	return $a->review_count < $b->review_count;
4143 4143
 }
4144 4144
 
@@ -4155,35 +4155,35 @@  discard block
 block discarded – undo
4155 4155
 	 * @since   1.4.2
4156 4156
 	 * @package GeoDirectory
4157 4157
 	 */
4158
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4158
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4159 4159
 
4160
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4161
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4160
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4161
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4162 4162
 
4163 4163
 	/**
4164 4164
 	 * Define language constants.
4165 4165
 	 *
4166 4166
 	 * @since 1.0.0
4167 4167
 	 */
4168
-	require_once( geodir_plugin_path() . '/language.php' );
4168
+	require_once(geodir_plugin_path().'/language.php');
4169 4169
 
4170
-	$language_file = geodir_plugin_path() . '/db-language.php';
4170
+	$language_file = geodir_plugin_path().'/db-language.php';
4171 4171
 
4172 4172
 	// Load language string file if not created yet
4173
-	if ( ! file_exists( $language_file ) ) {
4173
+	if (!file_exists($language_file)) {
4174 4174
 		geodirectory_load_db_language();
4175 4175
 	}
4176 4176
 
4177
-	if ( file_exists( $language_file ) ) {
4177
+	if (file_exists($language_file)) {
4178 4178
 		/**
4179 4179
 		 * Language strings from database.
4180 4180
 		 *
4181 4181
 		 * @since 1.4.2
4182 4182
 		 */
4183 4183
 		try {
4184
-			require_once( $language_file );
4185
-		} catch ( Exception $e ) {
4186
-			error_log( 'Language Error: ' . $e->getMessage() );
4184
+			require_once($language_file);
4185
+		} catch (Exception $e) {
4186
+			error_log('Language Error: '.$e->getMessage());
4187 4187
 		}
4188 4188
 	}
4189 4189
 }
@@ -4200,19 +4200,19 @@  discard block
 block discarded – undo
4200 4200
  */
4201 4201
 function geodirectory_load_db_language() {
4202 4202
 	global $wp_filesystem;
4203
-	if ( empty( $wp_filesystem ) ) {
4204
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4203
+	if (empty($wp_filesystem)) {
4204
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4205 4205
 		WP_Filesystem();
4206 4206
 		global $wp_filesystem;
4207 4207
 	}
4208 4208
 
4209
-	$language_file = geodir_plugin_path() . '/db-language.php';
4209
+	$language_file = geodir_plugin_path().'/db-language.php';
4210 4210
 
4211
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4211
+	if (is_file($language_file) && !is_writable($language_file)) {
4212 4212
 		return false;
4213 4213
 	} // Not possible to create.
4214 4214
 
4215
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4215
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4216 4216
 		return false;
4217 4217
 	} // Not possible to create.
4218 4218
 
@@ -4226,9 +4226,9 @@  discard block
 block discarded – undo
4226 4226
 	 *
4227 4227
 	 * @param array $contents_strings Array of strings.
4228 4228
 	 */
4229
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4229
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4230 4230
 
4231
-	$contents_strings = array_unique( $contents_strings );
4231
+	$contents_strings = array_unique($contents_strings);
4232 4232
 
4233 4233
 	$contents_head   = array();
4234 4234
 	$contents_head[] = "<?php";
@@ -4245,21 +4245,21 @@  discard block
 block discarded – undo
4245 4245
 	$contents_foot[] = "";
4246 4246
 	$contents_foot[] = "";
4247 4247
 
4248
-	$contents = implode( PHP_EOL, $contents_head );
4248
+	$contents = implode(PHP_EOL, $contents_head);
4249 4249
 
4250
-	if ( ! empty( $contents_strings ) ) {
4251
-		foreach ( $contents_strings as $string ) {
4252
-			if ( is_scalar( $string ) && $string != '' ) {
4253
-				$string = str_replace( "'", "\'", $string );
4254
-				geodir_wpml_register_string( $string );
4255
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4250
+	if (!empty($contents_strings)) {
4251
+		foreach ($contents_strings as $string) {
4252
+			if (is_scalar($string) && $string != '') {
4253
+				$string = str_replace("'", "\'", $string);
4254
+				geodir_wpml_register_string($string);
4255
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4256 4256
 			}
4257 4257
 		}
4258 4258
 	}
4259 4259
 
4260
-	$contents .= implode( PHP_EOL, $contents_foot );
4260
+	$contents .= implode(PHP_EOL, $contents_foot);
4261 4261
 
4262
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4262
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4263 4263
 		return false;
4264 4264
 	} // Failure; could not write file.
4265 4265
 
@@ -4280,49 +4280,49 @@  discard block
 block discarded – undo
4280 4280
  *
4281 4281
  * @return array Translation texts.
4282 4282
  */
4283
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4283
+function geodir_load_custom_field_translation($translation_texts = array()) {
4284 4284
 	global $wpdb;
4285 4285
 
4286 4286
 	// Custom fields table
4287
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4288
-	$rows = $wpdb->get_results( $sql );
4287
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4288
+	$rows = $wpdb->get_results($sql);
4289 4289
 
4290
-	if ( ! empty( $rows ) ) {
4291
-		foreach ( $rows as $row ) {
4292
-			if ( ! empty( $row->admin_title ) ) {
4293
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4290
+	if (!empty($rows)) {
4291
+		foreach ($rows as $row) {
4292
+			if (!empty($row->admin_title)) {
4293
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4294 4294
 			}
4295 4295
 
4296
-			if ( ! empty( $row->admin_desc ) ) {
4297
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4296
+			if (!empty($row->admin_desc)) {
4297
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4298 4298
 			}
4299 4299
 
4300
-			if ( ! empty( $row->site_title ) ) {
4301
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4300
+			if (!empty($row->site_title)) {
4301
+				$translation_texts[] = stripslashes_deep($row->site_title);
4302 4302
 			}
4303 4303
 
4304
-			if ( ! empty( $row->clabels ) ) {
4305
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4304
+			if (!empty($row->clabels)) {
4305
+				$translation_texts[] = stripslashes_deep($row->clabels);
4306 4306
 			}
4307 4307
 
4308
-			if ( ! empty( $row->required_msg ) ) {
4309
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4308
+			if (!empty($row->required_msg)) {
4309
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4310 4310
 			}
4311 4311
             
4312
-			if ( ! empty( $row->validation_msg ) ) {
4313
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4312
+			if (!empty($row->validation_msg)) {
4313
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4314 4314
 			}
4315 4315
 
4316
-			if ( ! empty( $row->default_value ) ) {
4317
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4316
+			if (!empty($row->default_value)) {
4317
+				$translation_texts[] = stripslashes_deep($row->default_value);
4318 4318
 			}
4319 4319
 
4320
-			if ( ! empty( $row->option_values ) ) {
4321
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4320
+			if (!empty($row->option_values)) {
4321
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4322 4322
 
4323
-				if ( ! empty( $option_values ) ) {
4324
-					foreach ( $option_values as $option_value ) {
4325
-						if ( ! empty( $option_value['label'] ) ) {
4323
+				if (!empty($option_values)) {
4324
+					foreach ($option_values as $option_value) {
4325
+						if (!empty($option_value['label'])) {
4326 4326
 							$translation_texts[] = $option_value['label'];
4327 4327
 						}
4328 4328
 					}
@@ -4332,56 +4332,56 @@  discard block
 block discarded – undo
4332 4332
 	}
4333 4333
 
4334 4334
 	// Custom sorting fields table
4335
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4336
-	$rows = $wpdb->get_results( $sql );
4335
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4336
+	$rows = $wpdb->get_results($sql);
4337 4337
 
4338
-	if ( ! empty( $rows ) ) {
4339
-		foreach ( $rows as $row ) {
4340
-			if ( ! empty( $row->site_title ) ) {
4341
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4338
+	if (!empty($rows)) {
4339
+		foreach ($rows as $row) {
4340
+			if (!empty($row->site_title)) {
4341
+				$translation_texts[] = stripslashes_deep($row->site_title);
4342 4342
 			}
4343 4343
 
4344
-			if ( ! empty( $row->asc_title ) ) {
4345
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4344
+			if (!empty($row->asc_title)) {
4345
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4346 4346
 			}
4347 4347
 
4348
-			if ( ! empty( $row->desc_title ) ) {
4349
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4348
+			if (!empty($row->desc_title)) {
4349
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4350 4350
 			}
4351 4351
 		}
4352 4352
 	}
4353 4353
 
4354 4354
 	// Advance search filter fields table
4355
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4356
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4357
-		$rows = $wpdb->get_results( $sql );
4358
-
4359
-		if ( ! empty( $rows ) ) {
4360
-			foreach ( $rows as $row ) {
4361
-				if ( ! empty( $row->field_site_name ) ) {
4362
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4355
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4356
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4357
+		$rows = $wpdb->get_results($sql);
4358
+
4359
+		if (!empty($rows)) {
4360
+			foreach ($rows as $row) {
4361
+				if (!empty($row->field_site_name)) {
4362
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4363 4363
 				}
4364 4364
 
4365
-				if ( ! empty( $row->front_search_title ) ) {
4366
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4365
+				if (!empty($row->front_search_title)) {
4366
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4367 4367
 				}
4368 4368
 
4369
-				if ( ! empty( $row->first_search_text ) ) {
4370
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4369
+				if (!empty($row->first_search_text)) {
4370
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4371 4371
 				}
4372 4372
 
4373
-				if ( ! empty( $row->last_search_text ) ) {
4374
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4373
+				if (!empty($row->last_search_text)) {
4374
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4375 4375
 				}
4376 4376
 
4377
-				if ( ! empty( $row->field_desc ) ) {
4378
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4377
+				if (!empty($row->field_desc)) {
4378
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4379 4379
 				}
4380 4380
 			}
4381 4381
 		}
4382 4382
 	}
4383 4383
 
4384
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4384
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4385 4385
 
4386 4386
 	return $translation_texts;
4387 4387
 }
@@ -4403,7 +4403,7 @@  discard block
 block discarded – undo
4403 4403
 	 *
4404 4404
 	 * @param array $geodir_allowed_mime_types and file extensions.
4405 4405
 	 */
4406
-	return apply_filters( 'geodir_allowed_mime_types', array(
4406
+	return apply_filters('geodir_allowed_mime_types', array(
4407 4407
 			'Image'       => array( // Image formats.
4408 4408
 				'jpg'  => 'image/jpeg',
4409 4409
 				'jpe'  => 'image/jpeg',
@@ -4471,18 +4471,18 @@  discard block
 block discarded – undo
4471 4471
  *
4472 4472
  * @return string User display name.
4473 4473
  */
4474
-function geodir_get_client_name( $user_id ) {
4474
+function geodir_get_client_name($user_id) {
4475 4475
 	$client_name = '';
4476 4476
 
4477
-	$user_data = get_userdata( $user_id );
4477
+	$user_data = get_userdata($user_id);
4478 4478
 
4479
-	if ( ! empty( $user_data ) ) {
4480
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4481
-			$client_name = trim( $user_data->display_name );
4482
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4483
-			$client_name = trim( $user_data->user_nicename );
4479
+	if (!empty($user_data)) {
4480
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4481
+			$client_name = trim($user_data->display_name);
4482
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4483
+			$client_name = trim($user_data->user_nicename);
4484 4484
 		} else {
4485
-			$client_name = trim( $user_data->user_login );
4485
+			$client_name = trim($user_data->user_login);
4486 4486
 		}
4487 4487
 	}
4488 4488
 
@@ -4490,17 +4490,17 @@  discard block
 block discarded – undo
4490 4490
 }
4491 4491
 
4492 4492
 
4493
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4493
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4494 4494
 /*
4495 4495
  * Add location variables to wpseo replacements.
4496 4496
  *
4497 4497
  * @since 1.5.4
4498 4498
  */
4499
-function geodir_wpseo_replacements( $vars ) {
4499
+function geodir_wpseo_replacements($vars) {
4500 4500
 
4501 4501
 	// location variables
4502 4502
 	$gd_post_type   = geodir_get_current_posttype();
4503
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4503
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4504 4504
 	/**
4505 4505
 	 * Filter the title variables location variables array
4506 4506
 	 *
@@ -4510,7 +4510,7 @@  discard block
 block discarded – undo
4510 4510
 	 * @param array $location_array The array of location variables.
4511 4511
 	 * @param array $vars           The page title variables.
4512 4512
 	 */
4513
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4513
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4514 4514
 
4515 4515
 
4516 4516
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4525,13 +4525,13 @@  discard block
 block discarded – undo
4525 4525
 	 * @param string $vars          The title with variables.
4526 4526
 	 * @param array $location_array The array of location variables.
4527 4527
 	 */
4528
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4528
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4529 4529
 }
4530 4530
 
4531 4531
 
4532
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4533
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4534
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4532
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4533
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4534
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4535 4535
 
4536 4536
 /**
4537 4537
  * Filter the title variables.
@@ -4573,14 +4573,14 @@  discard block
 block discarded – undo
4573 4573
  *
4574 4574
  * @return string Title after filtered variables.
4575 4575
  */
4576
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4576
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4577 4577
 	global $wp, $post;
4578 4578
 
4579
-	if ( ! $gd_page || ! $title ) {
4579
+	if (!$gd_page || !$title) {
4580 4580
 		return $title; // if no a GD page then bail.
4581 4581
 	}
4582 4582
 
4583
-	if ( $sep == '' ) {
4583
+	if ($sep == '') {
4584 4584
 		/**
4585 4585
 		 * Filter the page title separator.
4586 4586
 		 *
@@ -4589,100 +4589,100 @@  discard block
 block discarded – undo
4589 4589
 		 *
4590 4590
 		 * @param string $sep The separator, default: `|`.
4591 4591
 		 */
4592
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4592
+		$sep = apply_filters('geodir_page_title_separator', '|');
4593 4593
 	}
4594 4594
 
4595
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4596
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4595
+	if (strpos($title, '%%title%%') !== false) {
4596
+		$title = str_replace("%%title%%", $post->post_title, $title);
4597 4597
 	}
4598 4598
 
4599
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4600
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4599
+	if (strpos($title, '%%sitename%%') !== false) {
4600
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4601 4601
 	}
4602 4602
 
4603
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4604
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4603
+	if (strpos($title, '%%sitedesc%%') !== false) {
4604
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4605 4605
 	}
4606 4606
 
4607
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4608
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4607
+	if (strpos($title, '%%excerpt%%') !== false) {
4608
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4609 4609
 	}
4610 4610
 
4611
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4612
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4613
-	} else if ( $gd_page == 'add-listing' ) {
4614
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4615
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4616
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4611
+	if ($gd_page == 'search' || $gd_page == 'author') {
4612
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4613
+	} else if ($gd_page == 'add-listing') {
4614
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4615
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4616
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4617 4617
 		$post_type = $post->post_type;
4618 4618
 	} else {
4619
-		$post_type = get_query_var( 'post_type' );
4619
+		$post_type = get_query_var('post_type');
4620 4620
 	}
4621 4621
 
4622
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4622
+	if (strpos($title, '%%pt_single%%') !== false) {
4623 4623
 		$singular_name = '';
4624
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4625
-			$singular_name = __( $singular_name, 'geodirectory' );
4624
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4625
+			$singular_name = __($singular_name, 'geodirectory');
4626 4626
 		}
4627 4627
 
4628
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4628
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4629 4629
 	}
4630 4630
 
4631
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4631
+	if (strpos($title, '%%pt_plural%%') !== false) {
4632 4632
 		$plural_name = '';
4633
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4634
-			$plural_name = __( $plural_name, 'geodirectory' );
4633
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4634
+			$plural_name = __($plural_name, 'geodirectory');
4635 4635
 		}
4636 4636
 
4637
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4637
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4638 4638
 	}
4639 4639
 
4640
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4640
+	if (strpos($title, '%%category%%') !== false) {
4641 4641
 		$cat_name = '';
4642 4642
 
4643
-		if ( $gd_page == 'detail' ) {
4644
-			if ( $post->default_category ) {
4645
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4646
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4643
+		if ($gd_page == 'detail') {
4644
+			if ($post->default_category) {
4645
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4646
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4647 4647
 			}
4648
-		} else if ( $gd_page == 'listing' ) {
4648
+		} else if ($gd_page == 'listing') {
4649 4649
 			$queried_object = get_queried_object();
4650
-			if ( isset( $queried_object->name ) ) {
4650
+			if (isset($queried_object->name)) {
4651 4651
 				$cat_name = $queried_object->name;
4652 4652
 			}
4653 4653
 		}
4654
-		$title = str_replace( "%%category%%", $cat_name, $title );
4654
+		$title = str_replace("%%category%%", $cat_name, $title);
4655 4655
 	}
4656 4656
 
4657
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4657
+	if (strpos($title, '%%tag%%') !== false) {
4658 4658
 		$cat_name = '';
4659 4659
 
4660
-		if ( $gd_page == 'detail' ) {
4661
-			if ( $post->default_category ) {
4662
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4663
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4660
+		if ($gd_page == 'detail') {
4661
+			if ($post->default_category) {
4662
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4663
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4664 4664
 			}
4665
-		} else if ( $gd_page == 'listing' ) {
4665
+		} else if ($gd_page == 'listing') {
4666 4666
 			$queried_object = get_queried_object();
4667
-			if ( isset( $queried_object->name ) ) {
4667
+			if (isset($queried_object->name)) {
4668 4668
 				$cat_name = $queried_object->name;
4669 4669
 			}
4670 4670
 		}
4671
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4671
+		$title = str_replace("%%tag%%", $cat_name, $title);
4672 4672
 	}
4673 4673
 
4674
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4675
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4676
-		$title = str_replace( "%%id%%", $ID, $title );
4674
+	if (strpos($title, '%%id%%') !== false) {
4675
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4676
+		$title = str_replace("%%id%%", $ID, $title);
4677 4677
 	}
4678 4678
 
4679
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4680
-		$title = str_replace( "%%sep%%", $sep, $title );
4679
+	if (strpos($title, '%%sep%%') !== false) {
4680
+		$title = str_replace("%%sep%%", $sep, $title);
4681 4681
 	}
4682 4682
 
4683 4683
 	// location variables
4684 4684
 	$gd_post_type   = geodir_get_current_posttype();
4685
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4685
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4686 4686
 	
4687 4687
 	/**
4688 4688
 	 * Filter the title variables location variables array
@@ -4695,20 +4695,20 @@  discard block
 block discarded – undo
4695 4695
 	 * @param string $gd_page       The page being filtered.
4696 4696
 	 * @param string $sep           The separator, default: `|`.
4697 4697
 	 */
4698
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4698
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4699 4699
 	
4700
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4701
-		if ( get_query_var( 'gd_country_full' ) ) {
4702
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4700
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4701
+		if (get_query_var('gd_country_full')) {
4702
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4703 4703
 		}
4704
-		if ( get_query_var( 'gd_region_full' ) ) {
4705
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4704
+		if (get_query_var('gd_region_full')) {
4705
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4706 4706
 		}
4707
-		if ( get_query_var( 'gd_city_full' ) ) {
4708
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4707
+		if (get_query_var('gd_city_full')) {
4708
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4709 4709
 		}
4710
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4711
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4710
+		if (get_query_var('gd_neighbourhood_full')) {
4711
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4712 4712
 		}
4713 4713
 	}
4714 4714
 	
@@ -4723,57 +4723,57 @@  discard block
 block discarded – undo
4723 4723
 	 * @param string $gd_page       The page being filtered.
4724 4724
 	 * @param string $sep           The separator, default: `|`.
4725 4725
 	 */
4726
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4726
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4727 4727
 	
4728
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4728
+	if (strpos($title, '%%search_term%%') !== false) {
4729 4729
 		$search_term = '';
4730
-		if ( isset( $_REQUEST['s'] ) ) {
4731
-			$search_term = esc_attr( $_REQUEST['s'] );
4730
+		if (isset($_REQUEST['s'])) {
4731
+			$search_term = esc_attr($_REQUEST['s']);
4732 4732
 		}
4733
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4733
+		$title = str_replace("%%search_term%%", $search_term, $title);
4734 4734
 	}
4735 4735
 
4736
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4736
+	if (strpos($title, '%%search_near%%') !== false) {
4737 4737
 		$search_term = '';
4738
-		if ( isset( $_REQUEST['snear'] ) ) {
4739
-			$search_term = esc_attr( $_REQUEST['snear'] );
4738
+		if (isset($_REQUEST['snear'])) {
4739
+			$search_term = esc_attr($_REQUEST['snear']);
4740 4740
 		}
4741
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4741
+		$title = str_replace("%%search_near%%", $search_term, $title);
4742 4742
 	}
4743 4743
 
4744
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4745
-		if ( is_author() ) {
4746
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4744
+	if (strpos($title, '%%name%%') !== false) {
4745
+		if (is_author()) {
4746
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4747 4747
 			$author_name = $curauth->display_name;
4748 4748
 		} else {
4749 4749
 			$author_name = get_the_author();
4750 4750
 		}
4751
-		if ( ! $author_name || $author_name === '' ) {
4751
+		if (!$author_name || $author_name === '') {
4752 4752
 			$queried_object = get_queried_object();
4753 4753
 
4754
-			if ( isset( $queried_object->data->user_nicename ) ) {
4754
+			if (isset($queried_object->data->user_nicename)) {
4755 4755
 				$author_name = $queried_object->data->display_name;
4756 4756
 			}
4757 4757
 		}
4758
-		$title = str_replace( "%%name%%", $author_name, $title );
4758
+		$title = str_replace("%%name%%", $author_name, $title);
4759 4759
 	}
4760 4760
 
4761
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4762
-		$page  = geodir_title_meta_page( $sep );
4763
-		$title = str_replace( "%%page%%", $page, $title );
4761
+	if (strpos($title, '%%page%%') !== false) {
4762
+		$page  = geodir_title_meta_page($sep);
4763
+		$title = str_replace("%%page%%", $page, $title);
4764 4764
 	}
4765
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4765
+	if (strpos($title, '%%pagenumber%%') !== false) {
4766 4766
 		$pagenumber = geodir_title_meta_pagenumber();
4767
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4767
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4768 4768
 	}
4769
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4769
+	if (strpos($title, '%%pagetotal%%') !== false) {
4770 4770
 		$pagetotal = geodir_title_meta_pagetotal();
4771
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4771
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4772 4772
 	}
4773 4773
 
4774
-	$title = wptexturize( $title );
4775
-	$title = convert_chars( $title );
4776
-	$title = esc_html( $title );
4774
+	$title = wptexturize($title);
4775
+	$title = convert_chars($title);
4776
+	$title = esc_html($title);
4777 4777
 
4778 4778
 	/**
4779 4779
 	 * Filter the title variables after standard ones have been filtered.
@@ -4787,7 +4787,7 @@  discard block
 block discarded – undo
4787 4787
 	 * @param string $sep           The separator, default: `|`.
4788 4788
 	 */
4789 4789
 
4790
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4790
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4791 4791
 }
4792 4792
 
4793 4793
 /**
@@ -4800,82 +4800,82 @@  discard block
 block discarded – undo
4800 4800
  *
4801 4801
  * @return array Translation texts.
4802 4802
  */
4803
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4804
-	$gd_post_types = geodir_get_posttypes( 'array' );
4803
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4804
+	$gd_post_types = geodir_get_posttypes('array');
4805 4805
 
4806
-	if ( ! empty( $gd_post_types ) ) {
4807
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4808
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4809
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4810
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4806
+	if (!empty($gd_post_types)) {
4807
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4808
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4809
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4810
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4811 4811
 
4812
-			if ( ! empty( $labels ) ) {
4813
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4812
+			if (!empty($labels)) {
4813
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4814 4814
 					$translation_texts[] = $labels['name'];
4815 4815
 				}
4816
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4816
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4817 4817
 					$translation_texts[] = $labels['singular_name'];
4818 4818
 				}
4819
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4819
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4820 4820
 					$translation_texts[] = $labels['add_new'];
4821 4821
 				}
4822
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4822
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4823 4823
 					$translation_texts[] = $labels['add_new_item'];
4824 4824
 				}
4825
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4825
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4826 4826
 					$translation_texts[] = $labels['edit_item'];
4827 4827
 				}
4828
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4828
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4829 4829
 					$translation_texts[] = $labels['new_item'];
4830 4830
 				}
4831
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4831
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4832 4832
 					$translation_texts[] = $labels['view_item'];
4833 4833
 				}
4834
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4834
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4835 4835
 					$translation_texts[] = $labels['search_items'];
4836 4836
 				}
4837
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4837
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4838 4838
 					$translation_texts[] = $labels['not_found'];
4839 4839
 				}
4840
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4840
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4841 4841
 					$translation_texts[] = $labels['not_found_in_trash'];
4842 4842
 				}
4843
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4843
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4844 4844
 					$translation_texts[] = $labels['label_post_profile'];
4845 4845
 				}
4846
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4846
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4847 4847
 					$translation_texts[] = $labels['label_post_info'];
4848 4848
 				}
4849
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4849
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4850 4850
 					$translation_texts[] = $labels['label_post_images'];
4851 4851
 				}
4852
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4852
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4853 4853
 					$translation_texts[] = $labels['label_post_map'];
4854 4854
 				}
4855
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4855
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4856 4856
 					$translation_texts[] = $labels['label_reviews'];
4857 4857
 				}
4858
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4858
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4859 4859
 					$translation_texts[] = $labels['label_related_listing'];
4860 4860
 				}
4861 4861
 			}
4862 4862
 
4863
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4864
-				$translation_texts[] = normalize_whitespace( $description );
4863
+			if ($description != '' && !in_array($description, $translation_texts)) {
4864
+				$translation_texts[] = normalize_whitespace($description);
4865 4865
 			}
4866 4866
 
4867
-			if ( ! empty( $seo ) ) {
4868
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4869
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4867
+			if (!empty($seo)) {
4868
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4869
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4870 4870
 				}
4871 4871
 
4872
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4873
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4872
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4873
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4874 4874
 				}
4875 4875
 			}
4876 4876
 		}
4877 4877
 	}
4878
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4878
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4879 4879
 
4880 4880
 	return $translation_texts;
4881 4881
 }
@@ -4890,27 +4890,27 @@  discard block
 block discarded – undo
4890 4890
  *
4891 4891
  * @return array Location terms.
4892 4892
  */
4893
-function geodir_remove_location_terms( $location_terms = array() ) {
4894
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4893
+function geodir_remove_location_terms($location_terms = array()) {
4894
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4895 4895
 
4896
-	if ( ! empty( $location_terms ) && $location_manager ) {
4897
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4898
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4896
+	if (!empty($location_terms) && $location_manager) {
4897
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4898
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4899 4899
 
4900
-		if ( $hide_region_part && $hide_country_part ) {
4901
-			if ( isset( $location_terms['gd_country'] ) ) {
4902
-				unset( $location_terms['gd_country'] );
4900
+		if ($hide_region_part && $hide_country_part) {
4901
+			if (isset($location_terms['gd_country'])) {
4902
+				unset($location_terms['gd_country']);
4903 4903
 			}
4904
-			if ( isset( $location_terms['gd_region'] ) ) {
4905
-				unset( $location_terms['gd_region'] );
4904
+			if (isset($location_terms['gd_region'])) {
4905
+				unset($location_terms['gd_region']);
4906 4906
 			}
4907
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4908
-			if ( isset( $location_terms['gd_region'] ) ) {
4909
-				unset( $location_terms['gd_region'] );
4907
+		} else if ($hide_region_part && !$hide_country_part) {
4908
+			if (isset($location_terms['gd_region'])) {
4909
+				unset($location_terms['gd_region']);
4910 4910
 			}
4911
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4912
-			if ( isset( $location_terms['gd_country'] ) ) {
4913
-				unset( $location_terms['gd_country'] );
4911
+		} else if (!$hide_region_part && $hide_country_part) {
4912
+			if (isset($location_terms['gd_country'])) {
4913
+				unset($location_terms['gd_country']);
4914 4914
 			}
4915 4915
 		}
4916 4916
 	}
@@ -4928,33 +4928,33 @@  discard block
 block discarded – undo
4928 4928
  * @param WP_Post $post Post object.
4929 4929
  * @param bool $update  Whether this is an existing listing being updated or not.
4930 4930
  */
4931
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4932
-	if ( ! $update ) {
4931
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4932
+	if (!$update) {
4933 4933
 		return;
4934 4934
 	}
4935 4935
 
4936
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
4937
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
4936
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4937
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
4938 4938
 	$inline_save = $action == 'inline-save' ? true : false;
4939 4939
 
4940
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
4940
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4941 4941
 		return;
4942 4942
 	}
4943 4943
 
4944
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
4944
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
4945 4945
 		return;
4946 4946
 	}
4947 4947
 
4948 4948
 	$user_id = (int) get_current_user_id();
4949 4949
 
4950
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4951
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
4950
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4951
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
4952 4952
 
4953
-		if ( $user_id == $author_id && ! is_super_admin() ) {
4954
-			$from_email   = get_option( 'site_email' );
4953
+		if ($user_id == $author_id && !is_super_admin()) {
4954
+			$from_email   = get_option('site_email');
4955 4955
 			$from_name    = get_site_emailName();
4956
-			$to_email     = get_option( 'admin_email' );
4957
-			$to_name      = get_option( 'name' );
4956
+			$to_email     = get_option('admin_email');
4957
+			$to_name      = get_option('name');
4958 4958
 			$message_type = 'listing_edited';
4959 4959
 
4960 4960
 			$notify_edited = true;
@@ -4966,9 +4966,9 @@  discard block
 block discarded – undo
4966 4966
 			 * @param bool $notify_edited Notify on listing edited by author?
4967 4967
 			 * @param object $post        The current post object.
4968 4968
 			 */
4969
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
4969
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
4970 4970
 
4971
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
4971
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
4972 4972
 		}
4973 4973
 	}
4974 4974
 }
@@ -4983,14 +4983,14 @@  discard block
 block discarded – undo
4983 4983
  *
4984 4984
  * @return string|null The current page start & end numbering.
4985 4985
  */
4986
-function geodir_title_meta_page( $sep ) {
4986
+function geodir_title_meta_page($sep) {
4987 4987
 	$replacement = null;
4988 4988
 
4989
-	$max = geodir_title_meta_pagenumbering( 'max' );
4990
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
4989
+	$max = geodir_title_meta_pagenumbering('max');
4990
+	$nr  = geodir_title_meta_pagenumbering('nr');
4991 4991
 
4992
-	if ( $max > 1 && $nr > 1 ) {
4993
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
4992
+	if ($max > 1 && $nr > 1) {
4993
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
4994 4994
 	}
4995 4995
 
4996 4996
 	return $replacement;
@@ -5007,8 +5007,8 @@  discard block
 block discarded – undo
5007 5007
 function geodir_title_meta_pagenumber() {
5008 5008
 	$replacement = null;
5009 5009
 
5010
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5011
-	if ( isset( $nr ) && $nr > 0 ) {
5010
+	$nr = geodir_title_meta_pagenumbering('nr');
5011
+	if (isset($nr) && $nr > 0) {
5012 5012
 		$replacement = (string) $nr;
5013 5013
 	}
5014 5014
 
@@ -5026,8 +5026,8 @@  discard block
 block discarded – undo
5026 5026
 function geodir_title_meta_pagetotal() {
5027 5027
 	$replacement = null;
5028 5028
 
5029
-	$max = geodir_title_meta_pagenumbering( 'max' );
5030
-	if ( isset( $max ) && $max > 0 ) {
5029
+	$max = geodir_title_meta_pagenumbering('max');
5030
+	if (isset($max) && $max > 0) {
5031 5031
 		$replacement = (string) $max;
5032 5032
 	}
5033 5033
 
@@ -5047,36 +5047,36 @@  discard block
 block discarded – undo
5047 5047
  *
5048 5048
  * @return int|null The current page numbering.
5049 5049
  */
5050
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5050
+function geodir_title_meta_pagenumbering($request = 'nr') {
5051 5051
 	global $wp_query, $post;
5052 5052
 	$max_num_pages = null;
5053 5053
 	$page_number   = null;
5054 5054
 
5055 5055
 	$max_num_pages = 1;
5056 5056
 
5057
-	if ( ! is_singular() ) {
5058
-		$page_number = get_query_var( 'paged' );
5059
-		if ( $page_number === 0 || $page_number === '' ) {
5057
+	if (!is_singular()) {
5058
+		$page_number = get_query_var('paged');
5059
+		if ($page_number === 0 || $page_number === '') {
5060 5060
 			$page_number = 1;
5061 5061
 		}
5062 5062
 
5063
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5063
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5064 5064
 			$max_num_pages = $wp_query->max_num_pages;
5065 5065
 		}
5066 5066
 	} else {
5067
-		$page_number = get_query_var( 'page' );
5068
-		if ( $page_number === 0 || $page_number === '' ) {
5067
+		$page_number = get_query_var('page');
5068
+		if ($page_number === 0 || $page_number === '') {
5069 5069
 			$page_number = 1;
5070 5070
 		}
5071 5071
 
5072
-		if ( isset( $post->post_content ) ) {
5073
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5072
+		if (isset($post->post_content)) {
5073
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5074 5074
 		}
5075 5075
 	}
5076 5076
 
5077 5077
 	$return = null;
5078 5078
 
5079
-	switch ( $request ) {
5079
+	switch ($request) {
5080 5080
 		case 'nr':
5081 5081
 			$return = $page_number;
5082 5082
 			break;
@@ -5097,14 +5097,14 @@  discard block
 block discarded – undo
5097 5097
  *
5098 5098
  * @return array Terms.
5099 5099
  */
5100
-function geodir_filter_empty_terms( $terms ) {
5101
-	if ( empty( $terms ) ) {
5100
+function geodir_filter_empty_terms($terms) {
5101
+	if (empty($terms)) {
5102 5102
 		return $terms;
5103 5103
 	}
5104 5104
 
5105 5105
 	$return = array();
5106
-	foreach ( $terms as $term ) {
5107
-		if ( isset( $term->count ) && $term->count > 0 ) {
5106
+	foreach ($terms as $term) {
5107
+		if (isset($term->count) && $term->count > 0) {
5108 5108
 			$return[] = $term;
5109 5109
 		} else {
5110 5110
 			/**
@@ -5115,7 +5115,7 @@  discard block
 block discarded – undo
5115 5115
 			 * @param array $return The array of terms to return.
5116 5116
 			 * @param object $term  The term object.
5117 5117
 			 */
5118
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5118
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5119 5119
 		}
5120 5120
 	}
5121 5121
 
@@ -5132,15 +5132,15 @@  discard block
 block discarded – undo
5132 5132
  *
5133 5133
  * @return array
5134 5134
  */
5135
-function geodir_remove_hentry( $class ) {
5136
-	if ( geodir_is_page( 'detail' ) ) {
5137
-		$class = array_diff( $class, array( 'hentry' ) );
5135
+function geodir_remove_hentry($class) {
5136
+	if (geodir_is_page('detail')) {
5137
+		$class = array_diff($class, array('hentry'));
5138 5138
 	}
5139 5139
 
5140 5140
 	return $class;
5141 5141
 }
5142 5142
 
5143
-add_filter( 'post_class', 'geodir_remove_hentry' );
5143
+add_filter('post_class', 'geodir_remove_hentry');
5144 5144
 
5145 5145
 /**
5146 5146
  * Registers a individual text string for WPML translation.
@@ -5152,8 +5152,8 @@  discard block
 block discarded – undo
5152 5152
  * @param string $domain The plugin domain. Default geodirectory.
5153 5153
  * @param string $name The name of the string which helps to know what's being translated.
5154 5154
  */
5155
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5156
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5155
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5156
+    do_action('wpml_register_single_string', $domain, $name, $string);
5157 5157
 }
5158 5158
 
5159 5159
 /**
@@ -5168,6 +5168,6 @@  discard block
 block discarded – undo
5168 5168
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5169 5169
  * @return string The translated string.
5170 5170
  */
5171
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5172
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5171
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5172
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5173 5173
 }
5174 5174
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
 			$post_author = get_post_field( 'post_author', $post_id );
764 764
 			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
765 765
 				$toEmailName = __('Business Owner','geodirectory');
766
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
766
+			} elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
767 767
 				$toEmailName = __('Business Owner','geodirectory');
768 768
 			}
769 769
 
@@ -1623,12 +1623,14 @@  discard block
 block discarded – undo
1623 1623
 	 */
1624 1624
 	function geodir_allow_wpadmin() {
1625 1625
 		global $wpdb;
1626
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1626
+		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) {
1627
+			// checking action in request to allow ajax request go through
1627 1628
 		{
1628 1629
 			if ( current_user_can( 'administrator' ) ) {
1629 1630
 			} else {
1630 1631
 
1631
-				wp_redirect( home_url() );
1632
+				wp_redirect( home_url() );
1633
+		}
1632 1634
 				exit;
1633 1635
 			}
1634 1636
 
Please login to merge, or discard this patch.