Test Failed
Push — master ( a017c6...2185f5 )
by Stiofan
19:29
created
geodirectory-functions/general_functions.php 1 patch
Spacing   +1293 added lines, -1293 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 .= '&';
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 . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1358
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1357
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_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 = geodir_utf8_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 = geodir_utf8_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 . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1544
-				$breadcrumb .= $separator . geodir_utf8_ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1543
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1544
+				$breadcrumb .= $separator.geodir_utf8_ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1545 1545
 			} else {
1546
-				$breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' );
1546
+				$breadcrumb .= $separator.__(geodir_utf8_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
 		}
@@ -2216,44 +2216,44 @@  discard block
 block discarded – undo
2216 2216
  *
2217 2217
  * @return string Orderby SQL.
2218 2218
  */
2219
-function geodir_widget_listings_get_order( $query_args ) {
2219
+function geodir_widget_listings_get_order($query_args) {
2220 2220
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2221 2221
 
2222 2222
 	$query_args = $gd_query_args_widgets;
2223
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2224
-		return $wpdb->posts . ".post_date DESC, ";
2223
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2224
+		return $wpdb->posts.".post_date DESC, ";
2225 2225
 	}
2226 2226
 
2227
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2228
-	$table     = $plugin_prefix . $post_type . '_detail';
2227
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2228
+	$table     = $plugin_prefix.$post_type.'_detail';
2229 2229
 
2230
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2230
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2231 2231
 
2232
-	switch ( $sort_by ) {
2232
+	switch ($sort_by) {
2233 2233
 		case 'latest':
2234 2234
 		case 'newest':
2235
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2235
+			$orderby = $wpdb->posts.".post_date DESC, ";
2236 2236
 			break;
2237 2237
 		case 'featured':
2238
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2238
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2239 2239
 			break;
2240 2240
 		case 'az':
2241
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2241
+			$orderby = $wpdb->posts.".post_title ASC, ";
2242 2242
 			break;
2243 2243
 		case 'high_review':
2244
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2244
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2245 2245
 			break;
2246 2246
 		case 'high_rating':
2247
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2247
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2248 2248
 			break;
2249 2249
 		case 'random':
2250 2250
 			$orderby = "RAND(), ";
2251 2251
 			break;
2252 2252
 		default:
2253
-			if ( $custom_orderby = geodir_prepare_custom_sorting( $sort_by, $table ) ) {
2254
-				$orderby = $custom_orderby . ", ";
2253
+			if ($custom_orderby = geodir_prepare_custom_sorting($sort_by, $table)) {
2254
+				$orderby = $custom_orderby.", ";
2255 2255
 			} else {
2256
-				$orderby = $wpdb->posts . ".post_title ASC, ";
2256
+				$orderby = $wpdb->posts.".post_title ASC, ";
2257 2257
 			}
2258 2258
 			break;
2259 2259
 	}
@@ -2278,15 +2278,15 @@  discard block
 block discarded – undo
2278 2278
  *
2279 2279
  * @return mixed Result object.
2280 2280
  */
2281
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2281
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2282 2282
 	global $wpdb, $plugin_prefix, $table_prefix;
2283 2283
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2284 2284
 	$gd_query_args_widgets            = $query_args;
2285 2285
 
2286
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2287
-	$table     = $plugin_prefix . $post_type . '_detail';
2286
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2287
+	$table     = $plugin_prefix.$post_type.'_detail';
2288 2288
 
2289
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2289
+	$fields = $wpdb->posts.".*, ".$table.".*";
2290 2290
 	/**
2291 2291
 	 * Filter widget listing fields string part that is being used for query.
2292 2292
 	 *
@@ -2296,17 +2296,17 @@  discard block
 block discarded – undo
2296 2296
 	 * @param string $table     Table name.
2297 2297
 	 * @param string $post_type Post type.
2298 2298
 	 */
2299
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2299
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2300 2300
 
2301
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2301
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2302 2302
 
2303 2303
 	########### WPML ###########
2304 2304
 
2305
-	if ( function_exists( 'icl_object_id' ) ) {
2305
+	if (function_exists('icl_object_id')) {
2306 2306
 		global $sitepress;
2307 2307
 		$lang_code = ICL_LANGUAGE_CODE;
2308
-		if ( $lang_code ) {
2309
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2308
+		if ($lang_code) {
2309
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2310 2310
 		}
2311 2311
 	}
2312 2312
 
@@ -2320,15 +2320,15 @@  discard block
 block discarded – undo
2320 2320
 	 * @param string $join      Join clause string.
2321 2321
 	 * @param string $post_type Post type.
2322 2322
 	 */
2323
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2323
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2324 2324
 
2325
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2325
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2326 2326
 
2327
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2327
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2328 2328
 
2329 2329
 	########### WPML ###########
2330
-	if ( function_exists( 'icl_object_id' ) ) {
2331
-		if ( $lang_code ) {
2330
+	if (function_exists('icl_object_id')) {
2331
+		if ($lang_code) {
2332 2332
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2333 2333
 		}
2334 2334
 	}
@@ -2341,8 +2341,8 @@  discard block
 block discarded – undo
2341 2341
 	 * @param string $where     Where clause string.
2342 2342
 	 * @param string $post_type Post type.
2343 2343
 	 */
2344
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2345
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2344
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2345
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2346 2346
 
2347 2347
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without
2348 2348
 	/**
@@ -2353,15 +2353,15 @@  discard block
 block discarded – undo
2353 2353
 	 * @param string $groupby   Group by clause string.
2354 2354
 	 * @param string $post_type Post type.
2355 2355
 	 */
2356
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2356
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2357 2357
 
2358
-	if ( $count_only ) {
2359
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2360
-			" . $join . "
2358
+	if ($count_only) {
2359
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2360
+			" . $join."
2361 2361
 			" . $where;
2362
-		$rows = (int) $wpdb->get_var( $sql );
2362
+		$rows = (int) $wpdb->get_var($sql);
2363 2363
 	} else {
2364
-		$orderby = geodir_widget_listings_get_order( $query_args );
2364
+		$orderby = geodir_widget_listings_get_order($query_args);
2365 2365
 		/**
2366 2366
 		 * Filter widget listing orderby clause string part that is being used for query.
2367 2367
 		 *
@@ -2371,33 +2371,33 @@  discard block
 block discarded – undo
2371 2371
 		 * @param string $table     Table name.
2372 2372
 		 * @param string $post_type Post type.
2373 2373
 		 */
2374
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2374
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2375 2375
 		
2376 2376
 		$second_orderby = array();
2377
-		if ( strpos( $orderby, strtolower( $table . ".is_featured" )  ) === false ) {
2378
-			$second_orderby[] = $table . ".is_featured ASC";
2377
+		if (strpos($orderby, strtolower($table.".is_featured")) === false) {
2378
+			$second_orderby[] = $table.".is_featured ASC";
2379 2379
 		}
2380 2380
 		
2381
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_date" )  ) === false ) {
2382
-			$second_orderby[] = $wpdb->posts . ".post_date DESC";
2381
+		if (strpos($orderby, strtolower($wpdb->posts.".post_date")) === false) {
2382
+			$second_orderby[] = $wpdb->posts.".post_date DESC";
2383 2383
 		}
2384 2384
 		
2385
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_title" )  ) === false ) {
2386
-			$second_orderby[] = $wpdb->posts . ".post_title ASC";
2385
+		if (strpos($orderby, strtolower($wpdb->posts.".post_title")) === false) {
2386
+			$second_orderby[] = $wpdb->posts.".post_title ASC";
2387 2387
 		}
2388 2388
 		
2389
-		if ( !empty( $second_orderby ) ) {
2390
-			$orderby .= implode( ', ', $second_orderby );
2389
+		if (!empty($second_orderby)) {
2390
+			$orderby .= implode(', ', $second_orderby);
2391 2391
 		}
2392 2392
 		
2393
-		if ( !empty( $orderby ) ) {
2394
-			$orderby = trim( $orderby );
2395
-			$orderby = rtrim( $orderby, "," );
2393
+		if (!empty($orderby)) {
2394
+			$orderby = trim($orderby);
2395
+			$orderby = rtrim($orderby, ",");
2396 2396
 		}
2397 2397
 		
2398
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2398
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2399 2399
 
2400
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2400
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2401 2401
 		/**
2402 2402
 		 * Filter widget listing limit that is being used for query.
2403 2403
 		 *
@@ -2406,27 +2406,27 @@  discard block
 block discarded – undo
2406 2406
 		 * @param int $limit        Query results limit.
2407 2407
 		 * @param string $post_type Post type.
2408 2408
 		 */
2409
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2409
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2410 2410
 
2411
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2412
-		if ( ! $page ) {
2411
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2412
+		if (!$page) {
2413 2413
 			$page = 1;
2414 2414
 		}
2415 2415
 
2416
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2416
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2417 2417
 
2418 2418
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2419
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2420
-			" . $join . "
2421
-			" . $where . "
2422
-			" . $groupby . "
2423
-			" . $orderby . "
2419
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2420
+			" . $join."
2421
+			" . $where."
2422
+			" . $groupby."
2423
+			" . $orderby."
2424 2424
 			" . $limit;
2425
-		$rows = $wpdb->get_results( $sql );
2425
+		$rows = $wpdb->get_results($sql);
2426 2426
 	}
2427 2427
 
2428
-	unset( $GLOBALS['gd_query_args_widgets'] );
2429
-	unset( $gd_query_args_widgets );
2428
+	unset($GLOBALS['gd_query_args_widgets']);
2429
+	unset($gd_query_args_widgets);
2430 2430
 
2431 2431
 	return $rows;
2432 2432
 }
@@ -2443,11 +2443,11 @@  discard block
 block discarded – undo
2443 2443
  *
2444 2444
  * @return string Modified fields SQL.
2445 2445
  */
2446
-function geodir_function_widget_listings_fields( $fields ) {
2446
+function geodir_function_widget_listings_fields($fields) {
2447 2447
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2448 2448
 
2449 2449
 	$query_args = $gd_query_args_widgets;
2450
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2450
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2451 2451
 		return $fields;
2452 2452
 	}
2453 2453
 
@@ -2466,24 +2466,24 @@  discard block
 block discarded – undo
2466 2466
  *
2467 2467
  * @return string Modified join clause SQL.
2468 2468
  */
2469
-function geodir_function_widget_listings_join( $join ) {
2469
+function geodir_function_widget_listings_join($join) {
2470 2470
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2471 2471
 
2472 2472
 	$query_args = $gd_query_args_widgets;
2473
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2473
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2474 2474
 		return $join;
2475 2475
 	}
2476 2476
 
2477
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2478
-	$table     = $plugin_prefix . $post_type . '_detail';
2477
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2478
+	$table     = $plugin_prefix.$post_type.'_detail';
2479 2479
 
2480
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2481
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2480
+	if (!empty($query_args['with_pics_only'])) {
2481
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2482 2482
 	}
2483 2483
 
2484
-	if ( ! empty( $query_args['tax_query'] ) ) {
2485
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2486
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2484
+	if (!empty($query_args['tax_query'])) {
2485
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2486
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2487 2487
 			$join .= $tax_queries['join'];
2488 2488
 		}
2489 2489
 	}
@@ -2504,60 +2504,60 @@  discard block
 block discarded – undo
2504 2504
  *
2505 2505
  * @return string Modified where clause SQL.
2506 2506
  */
2507
-function geodir_function_widget_listings_where( $where ) {
2507
+function geodir_function_widget_listings_where($where) {
2508 2508
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2509 2509
 
2510 2510
 	$query_args = $gd_query_args_widgets;
2511
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2511
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2512 2512
 		return $where;
2513 2513
 	}
2514
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2515
-	$table     = $plugin_prefix . $post_type . '_detail';
2514
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2515
+	$table     = $plugin_prefix.$post_type.'_detail';
2516 2516
 
2517
-	if ( ! empty( $query_args ) ) {
2518
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2519
-			$where = geodir_default_location_where( $where, $table );
2517
+	if (!empty($query_args)) {
2518
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2519
+			$where = geodir_default_location_where($where, $table);
2520 2520
 		}
2521 2521
 
2522
-		if ( ! empty( $query_args['post_author'] ) ) {
2523
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2522
+		if (!empty($query_args['post_author'])) {
2523
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2524 2524
 		}
2525 2525
 
2526
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2527
-			$where .= " AND " . $table . ".is_featured = '1'";
2526
+		if (!empty($query_args['show_featured_only'])) {
2527
+			$where .= " AND ".$table.".is_featured = '1'";
2528 2528
 		}
2529 2529
 
2530
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2531
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2530
+		if (!empty($query_args['show_special_only'])) {
2531
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2532 2532
 		}
2533 2533
 
2534
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2535
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2534
+		if (!empty($query_args['with_pics_only'])) {
2535
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2536 2536
 		}
2537 2537
 
2538
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2539
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2538
+		if (!empty($query_args['featured_image_only'])) {
2539
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2540 2540
 		}
2541 2541
 
2542
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2543
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2542
+		if (!empty($query_args['with_videos_only'])) {
2543
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2544 2544
 		}
2545 2545
         
2546
-		if ( ! empty( $query_args['show_favorites_only'] ) ) {
2546
+		if (!empty($query_args['show_favorites_only'])) {
2547 2547
 			$user_favorites = '-1';
2548 2548
 			
2549
-			if ( !empty( $query_args['favorites_by_user'] ) ) {
2550
-				$user_favorites = get_user_meta( (int)$query_args['favorites_by_user'], 'gd_user_favourite_post', true );
2549
+			if (!empty($query_args['favorites_by_user'])) {
2550
+				$user_favorites = get_user_meta((int) $query_args['favorites_by_user'], 'gd_user_favourite_post', true);
2551 2551
 				$user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
2552 2552
 			}
2553 2553
 			
2554
-			$where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
2554
+			$where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
2555 2555
 		}
2556 2556
 
2557
-		if ( ! empty( $query_args['tax_query'] ) ) {
2558
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2557
+		if (!empty($query_args['tax_query'])) {
2558
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2559 2559
 
2560
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2560
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2561 2561
 				$where .= $tax_queries['where'];
2562 2562
 			}
2563 2563
 		}
@@ -2578,11 +2578,11 @@  discard block
 block discarded – undo
2578 2578
  *
2579 2579
  * @return string Modified orderby clause SQL.
2580 2580
  */
2581
-function geodir_function_widget_listings_orderby( $orderby ) {
2581
+function geodir_function_widget_listings_orderby($orderby) {
2582 2582
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2583 2583
 
2584 2584
 	$query_args = $gd_query_args_widgets;
2585
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2585
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2586 2586
 		return $orderby;
2587 2587
 	}
2588 2588
 
@@ -2601,15 +2601,15 @@  discard block
 block discarded – undo
2601 2601
  *
2602 2602
  * @return int Query limit.
2603 2603
  */
2604
-function geodir_function_widget_listings_limit( $limit ) {
2604
+function geodir_function_widget_listings_limit($limit) {
2605 2605
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2606 2606
 
2607 2607
 	$query_args = $gd_query_args_widgets;
2608
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2608
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2609 2609
 		return $limit;
2610 2610
 	}
2611 2611
 
2612
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2612
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2613 2613
 		$limit = (int) $query_args['posts_per_page'];
2614 2614
 	}
2615 2615
 
@@ -2627,12 +2627,12 @@  discard block
 block discarded – undo
2627 2627
  *
2628 2628
  * @return int Large size width.
2629 2629
  */
2630
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2631
-	$large_size_w = get_option( 'large_size_w' );
2630
+function geodir_media_image_large_width($default = 800, $params = '') {
2631
+	$large_size_w = get_option('large_size_w');
2632 2632
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2633
-	$large_size_w = absint( $large_size_w );
2633
+	$large_size_w = absint($large_size_w);
2634 2634
 
2635
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2635
+	if (!get_option('geodir_use_wp_media_large_size')) {
2636 2636
 		$large_size_w = 800;
2637 2637
 	}
2638 2638
 
@@ -2645,7 +2645,7 @@  discard block
 block discarded – undo
2645 2645
 	 * @param int $default         Default width.
2646 2646
 	 * @param string|array $params Image parameters.
2647 2647
 	 */
2648
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2648
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2649 2649
 
2650 2650
 	return $large_size_w;
2651 2651
 }
@@ -2661,12 +2661,12 @@  discard block
 block discarded – undo
2661 2661
  *
2662 2662
  * @return int Large size height.
2663 2663
  */
2664
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2665
-	$large_size_h = get_option( 'large_size_h' );
2664
+function geodir_media_image_large_height($default = 800, $params = '') {
2665
+	$large_size_h = get_option('large_size_h');
2666 2666
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2667
-	$large_size_h = absint( $large_size_h );
2667
+	$large_size_h = absint($large_size_h);
2668 2668
 
2669
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2669
+	if (!get_option('geodir_use_wp_media_large_size')) {
2670 2670
 		$large_size_h = 800;
2671 2671
 	}
2672 2672
 
@@ -2679,7 +2679,7 @@  discard block
 block discarded – undo
2679 2679
 	 * @param int $default         Default height.
2680 2680
 	 * @param string|array $params Image parameters.
2681 2681
 	 */
2682
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2682
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2683 2683
 
2684 2684
 	return $large_size_h;
2685 2685
 }
@@ -2696,8 +2696,8 @@  discard block
 block discarded – undo
2696 2696
  *
2697 2697
  * @return string Sanitized name.
2698 2698
  */
2699
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2700
-	if ( $name == '' ) {
2699
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2700
+	if ($name == '') {
2701 2701
 		return null;
2702 2702
 	}
2703 2703
 
@@ -2706,13 +2706,13 @@  discard block
 block discarded – undo
2706 2706
 	$type = $type == 'gd_city' ? 'city' : $type;
2707 2707
 
2708 2708
 	$return = $name;
2709
-	if ( function_exists( 'get_actual_location_name' ) ) {
2710
-		$return = get_actual_location_name( $type, $name, $translate );
2709
+	if (function_exists('get_actual_location_name')) {
2710
+		$return = get_actual_location_name($type, $name, $translate);
2711 2711
 	} else {
2712
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2713
-		$return = preg_replace( '/[_-]/', ' ', $return );
2714
-		$return = geodir_ucwords( $return );
2715
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2712
+		$return = preg_replace('/-(\d+)$/', '', $return);
2713
+		$return = preg_replace('/[_-]/', ' ', $return);
2714
+		$return = geodir_ucwords($return);
2715
+		$return = $translate ? __($return, 'geodirectory') : $return;
2716 2716
 	}
2717 2717
 
2718 2718
 	return $return;
@@ -2730,26 +2730,26 @@  discard block
 block discarded – undo
2730 2730
  *
2731 2731
  * @param int $number Comments number.
2732 2732
  */
2733
-function geodir_comments_number( $number ) {
2733
+function geodir_comments_number($number) {
2734 2734
 	global $post;
2735 2735
 	
2736
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2736
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2737 2737
 		$number = get_comments_number();
2738 2738
 		
2739
-		if ( $number > 1 ) {
2740
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2741
-		} elseif ( $number == 0 || $number == '' ) {
2742
-			$output = __( 'No Comments', 'geodirectory' );
2739
+		if ($number > 1) {
2740
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2741
+		} elseif ($number == 0 || $number == '') {
2742
+			$output = __('No Comments', 'geodirectory');
2743 2743
 		} else { // must be one
2744
-			$output = __( '1 Comment', 'geodirectory' );
2744
+			$output = __('1 Comment', 'geodirectory');
2745 2745
 		}
2746 2746
 	} else {    
2747
-		if ( $number > 1 ) {
2748
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2749
-		} elseif ( $number == 0 || $number == '' ) {
2750
-			$output = __( 'No Reviews', 'geodirectory' );
2747
+		if ($number > 1) {
2748
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2749
+		} elseif ($number == 0 || $number == '') {
2750
+			$output = __('No Reviews', 'geodirectory');
2751 2751
 		} else { // must be one
2752
-			$output = __( '1 Review', 'geodirectory' );
2752
+			$output = __('1 Review', 'geodirectory');
2753 2753
 		}
2754 2754
 	}
2755 2755
 	
@@ -2766,18 +2766,18 @@  discard block
 block discarded – undo
2766 2766
  */
2767 2767
 function is_page_geodir_home() {
2768 2768
 	global $wpdb;
2769
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2770
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2771
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2769
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2770
+	if (function_exists('geodir_location_geo_home_link')) {
2771
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2772 2772
 	}
2773
-	$home_url = home_url( '', 'http' );
2774
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2775
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2773
+	$home_url = home_url('', 'http');
2774
+	if (function_exists('geodir_location_geo_home_link')) {
2775
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2776 2776
 	}
2777
-	$home_url = str_replace( "www.", "", $home_url );
2778
-	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' ) ) ) {
2777
+	$home_url = str_replace("www.", "", $home_url);
2778
+	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'))) {
2779 2779
 		return true;
2780
-	} 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' ) ) {
2780
+	} 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')) {
2781 2781
 		return true;
2782 2782
 	} else {
2783 2783
 		return false;
@@ -2797,18 +2797,18 @@  discard block
 block discarded – undo
2797 2797
  *
2798 2798
  * @return string The canonical URL.
2799 2799
  */
2800
-function geodir_wpseo_homepage_canonical( $url ) {
2800
+function geodir_wpseo_homepage_canonical($url) {
2801 2801
 	global $post;
2802 2802
 
2803
-	if ( is_page_geodir_home() ) {
2803
+	if (is_page_geodir_home()) {
2804 2804
 		return home_url();
2805 2805
 	}
2806 2806
 
2807 2807
 	return $url;
2808 2808
 }
2809 2809
 
2810
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2811
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2810
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2811
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2812 2812
 
2813 2813
 /**
2814 2814
  * Add extra fields to google maps script call.
@@ -2821,20 +2821,20 @@  discard block
 block discarded – undo
2821 2821
  *
2822 2822
  * @return string Modified extra string.
2823 2823
  */
2824
-function geodir_googlemap_script_extra_details_page( $extra ) {
2824
+function geodir_googlemap_script_extra_details_page($extra) {
2825 2825
 	global $post;
2826 2826
 	$add_google_places_api = false;
2827
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2827
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2828 2828
 		$add_google_places_api = true;
2829 2829
 	}
2830
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2830
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2831 2831
 		$extra .= "&amp;libraries=places";
2832 2832
 	}
2833 2833
 
2834 2834
 	return $extra;
2835 2835
 }
2836 2836
 
2837
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2837
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2838 2838
 
2839 2839
 
2840 2840
 /**
@@ -2853,119 +2853,119 @@  discard block
 block discarded – undo
2853 2853
  *                                          after_widget.
2854 2854
  * @param array|string $instance            The settings for the particular instance of the widget.
2855 2855
  */
2856
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2856
+function geodir_popular_post_category_output($args = '', $instance = '') {
2857 2857
 	// prints the widget
2858 2858
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2859
-	extract( $args, EXTR_SKIP );
2859
+	extract($args, EXTR_SKIP);
2860 2860
 
2861 2861
 	echo $before_widget;
2862 2862
 
2863 2863
 	/** This filter is documented in geodirectory_widgets.php */
2864
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2864
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2865 2865
 
2866 2866
 	$gd_post_type = geodir_get_current_posttype();
2867 2867
 
2868
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2868
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2869 2869
 	if (!isset($category_restrict)) {
2870 2870
 		$category_restrict = false;
2871 2871
 	}
2872
-	if ( ! empty( $gd_post_type ) ) {
2872
+	if (!empty($gd_post_type)) {
2873 2873
 		$default_post_type = $gd_post_type;
2874
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2874
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2875 2875
 		$default_post_type = $instance['default_post_type'];
2876 2876
 	} else {
2877 2877
 		$all_gd_post_type  = geodir_get_posttypes();
2878
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2878
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2879 2879
 	}
2880
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2880
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2881 2881
 
2882 2882
 	$taxonomy = array();
2883
-	if ( ! empty( $gd_post_type ) ) {
2884
-		$taxonomy[] = $gd_post_type . "category";
2883
+	if (!empty($gd_post_type)) {
2884
+		$taxonomy[] = $gd_post_type."category";
2885 2885
 	} else {
2886
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2886
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2887 2887
 	}
2888 2888
 
2889 2889
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2890 2890
 
2891
-	$term_args = array( 'taxonomy' => $taxonomy );
2892
-	if ( $parent_only ) {
2891
+	$term_args = array('taxonomy' => $taxonomy);
2892
+	if ($parent_only) {
2893 2893
 		$term_args['parent'] = 0;
2894 2894
 	}
2895 2895
 
2896
-	$terms   = get_terms( $term_args );
2896
+	$terms   = get_terms($term_args);
2897 2897
 	$a_terms = array();
2898 2898
 	$b_terms = array();
2899 2899
 
2900
-	foreach ( $terms as $term ) {
2901
-		if ( $term->count > 0 ) {
2902
-			$a_terms[ $term->taxonomy ][] = $term;
2900
+	foreach ($terms as $term) {
2901
+		if ($term->count > 0) {
2902
+			$a_terms[$term->taxonomy][] = $term;
2903 2903
 		}
2904 2904
 	}
2905 2905
 
2906
-	if ( ! empty( $a_terms ) ) {
2906
+	if (!empty($a_terms)) {
2907 2907
 		// Sort CPT taxonomies in categories widget.
2908
-		if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
2908
+		if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
2909 2909
 			$gd_post_types = geodir_get_posttypes();
2910 2910
 			$sort_taxonomies = array();
2911 2911
 			
2912
-			foreach ( $gd_post_types as $gd_post_type ) {
2913
-				$taxonomy_name = $gd_post_type . 'category';
2912
+			foreach ($gd_post_types as $gd_post_type) {
2913
+				$taxonomy_name = $gd_post_type.'category';
2914 2914
 				
2915
-				if ( !empty( $a_terms[$taxonomy_name] ) ) {
2915
+				if (!empty($a_terms[$taxonomy_name])) {
2916 2916
 					$sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name];
2917 2917
 				}
2918 2918
 			}
2919
-			$a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms;
2919
+			$a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms;
2920 2920
 		}
2921 2921
 		
2922
-		foreach ( $a_terms as $b_key => $b_val ) {
2923
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2922
+		foreach ($a_terms as $b_key => $b_val) {
2923
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2924 2924
 		}
2925 2925
 
2926
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2926
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2927 2927
 
2928 2928
 		$tax_change_output = '';
2929
-		if ( count( $b_terms ) > 1 ) {
2930
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2931
-			foreach ( $b_terms as $key => $val ) {
2932
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2933
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2934
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2929
+		if (count($b_terms) > 1) {
2930
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2931
+			foreach ($b_terms as $key => $val) {
2932
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2933
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2934
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2935 2935
 			}
2936 2936
 			$tax_change_output .= "</select>";
2937 2937
 		}
2938 2938
 
2939
-		if ( ! empty( $b_terms ) ) {
2940
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2941
-			global $cat_count;//make global so we can change via function
2939
+		if (!empty($b_terms)) {
2940
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2941
+			global $cat_count; //make global so we can change via function
2942 2942
 			$cat_count = 0;
2943 2943
 			?>
2944 2944
 			<div class="geodir-category-list-in clearfix">
2945 2945
 				<div class="geodir-cat-list clearfix">
2946 2946
 					<?php
2947
-					echo $before_title . __( $title ) . $after_title;
2947
+					echo $before_title.__($title).$after_title;
2948 2948
 
2949 2949
 					echo $tax_change_output;
2950 2950
 
2951 2951
 					echo '<ul class="geodir-popular-cat-list">';
2952 2952
 
2953
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2953
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2954 2954
 
2955 2955
 					echo '</ul>';
2956 2956
 					?>
2957 2957
 				</div>
2958 2958
 				<?php
2959 2959
 				$hide = '';
2960
-				if ( $cat_count < $category_limit ) {
2960
+				if ($cat_count < $category_limit) {
2961 2961
 					$hide = 'style="display:none;"';
2962 2962
 				}
2963 2963
 				echo "<div class='geodir-cat-list-more' $hide >";
2964
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2965
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2964
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2965
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2966 2966
 				echo "</div>";
2967 2967
 				/* add scripts */
2968
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2968
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2969 2969
 				?>
2970 2970
 			</div>
2971 2971
 			<?php
@@ -2985,28 +2985,28 @@  discard block
 block discarded – undo
2985 2985
  * @param int $category_limit               Number of categories to display by default.
2986 2986
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
2987 2987
  */
2988
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2988
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2989 2989
 	global $geodir_post_category_str, $cat_count;
2990 2990
 	$term_icons = geodir_get_term_icon();
2991 2991
 
2992 2992
 	$geodir_post_category_str = array();
2993 2993
 
2994 2994
 
2995
-	foreach ( $terms as $cat ) {
2996
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2997
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2995
+	foreach ($terms as $cat) {
2996
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2997
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2998 2998
 
2999
-		$cat_count ++;
2999
+		$cat_count++;
3000 3000
 
3001
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
3001
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
3002 3002
 
3003
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3004
-		if($category_restrict && $cat_count > $category_limit ){
3003
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3004
+		if ($category_restrict && $cat_count > $category_limit) {
3005 3005
 			continue;
3006 3006
 		}
3007 3007
 		$total_post = $cat->count;
3008 3008
 
3009
-		$term_link = get_term_link( $cat, $cat->taxonomy );
3009
+		$term_link = get_term_link($cat, $cat->taxonomy);
3010 3010
 		/**
3011 3011
 		 * Filer the category term link.
3012 3012
 		 *
@@ -3016,11 +3016,11 @@  discard block
 block discarded – undo
3016 3016
 		 * @param int $cat          ->term_id The term id.
3017 3017
 		 * @param string $post_type Wordpress post type.
3018 3018
 		 */
3019
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
3019
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
3020 3020
 
3021
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
3022
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
3023
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
3021
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
3022
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
3023
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
3024 3024
 		echo '</a></li>';
3025 3025
 	}
3026 3026
 }
@@ -3035,14 +3035,14 @@  discard block
 block discarded – undo
3035 3035
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3036 3036
  * @param array|string $instance The settings for the particular instance of the widget.
3037 3037
  */
3038
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3038
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3039 3039
 	// prints the widget
3040
-	extract( $args, EXTR_SKIP );
3040
+	extract($args, EXTR_SKIP);
3041 3041
 
3042 3042
 	echo $before_widget;
3043 3043
 
3044 3044
 	/** This filter is documented in geodirectory_widgets.php */
3045
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3045
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3046 3046
 	/**
3047 3047
 	 * Filter the widget post type.
3048 3048
 	 *
@@ -3050,7 +3050,7 @@  discard block
 block discarded – undo
3050 3050
 	 *
3051 3051
 	 * @param string $instance ['post_type'] Post type of listing.
3052 3052
 	 */
3053
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3053
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3054 3054
 	/**
3055 3055
 	 * Filter the widget's term.
3056 3056
 	 *
@@ -3058,7 +3058,7 @@  discard block
 block discarded – undo
3058 3058
 	 *
3059 3059
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3060 3060
 	 */
3061
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3061
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3062 3062
 	/**
3063 3063
 	 * Filter widget's "add_location_filter" value.
3064 3064
 	 *
@@ -3066,7 +3066,7 @@  discard block
 block discarded – undo
3066 3066
 	 *
3067 3067
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3068 3068
 	 */
3069
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3069
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3070 3070
 	/**
3071 3071
 	 * Filter the widget listings limit.
3072 3072
 	 *
@@ -3074,7 +3074,7 @@  discard block
 block discarded – undo
3074 3074
 	 *
3075 3075
 	 * @param string $instance ['post_number'] Number of listings to display.
3076 3076
 	 */
3077
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3077
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3078 3078
 	/**
3079 3079
 	 * Filter the widget listings limit shown at one time.
3080 3080
 	 *
@@ -3082,7 +3082,7 @@  discard block
 block discarded – undo
3082 3082
 	 *
3083 3083
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3084 3084
 	 */
3085
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3085
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3086 3086
 	/**
3087 3087
 	 * Filter the widget slide width.
3088 3088
 	 *
@@ -3090,7 +3090,7 @@  discard block
 block discarded – undo
3090 3090
 	 *
3091 3091
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3092 3092
 	 */
3093
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3093
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3094 3094
 	/**
3095 3095
 	 * Filter widget's "show title" value.
3096 3096
 	 *
@@ -3098,7 +3098,7 @@  discard block
 block discarded – undo
3098 3098
 	 *
3099 3099
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3100 3100
 	 */
3101
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3101
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3102 3102
 	/**
3103 3103
 	 * Filter widget's "slideshow" value.
3104 3104
 	 *
@@ -3106,7 +3106,7 @@  discard block
 block discarded – undo
3106 3106
 	 *
3107 3107
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3108 3108
 	 */
3109
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3109
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3110 3110
 	/**
3111 3111
 	 * Filter widget's "animationLoop" value.
3112 3112
 	 *
@@ -3114,7 +3114,7 @@  discard block
 block discarded – undo
3114 3114
 	 *
3115 3115
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3116 3116
 	 */
3117
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3117
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3118 3118
 	/**
3119 3119
 	 * Filter widget's "directionNav" value.
3120 3120
 	 *
@@ -3122,7 +3122,7 @@  discard block
 block discarded – undo
3122 3122
 	 *
3123 3123
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3124 3124
 	 */
3125
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3125
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3126 3126
 	/**
3127 3127
 	 * Filter widget's "slideshowSpeed" value.
3128 3128
 	 *
@@ -3130,7 +3130,7 @@  discard block
 block discarded – undo
3130 3130
 	 *
3131 3131
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3132 3132
 	 */
3133
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3133
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3134 3134
 	/**
3135 3135
 	 * Filter widget's "animationSpeed" value.
3136 3136
 	 *
@@ -3138,7 +3138,7 @@  discard block
 block discarded – undo
3138 3138
 	 *
3139 3139
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3140 3140
 	 */
3141
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3141
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3142 3142
 	/**
3143 3143
 	 * Filter widget's "animation" value.
3144 3144
 	 *
@@ -3146,7 +3146,7 @@  discard block
 block discarded – undo
3146 3146
 	 *
3147 3147
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3148 3148
 	 */
3149
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3149
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3150 3150
 	/**
3151 3151
 	 * Filter widget's "list_sort" type.
3152 3152
 	 *
@@ -3154,10 +3154,10 @@  discard block
 block discarded – undo
3154 3154
 	 *
3155 3155
 	 * @param string $instance ['list_sort'] Listing sort by type.
3156 3156
 	 */
3157
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3158
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3157
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3158
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3159 3159
 
3160
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3160
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3161 3161
 	?>
3162 3162
 		<script type="text/javascript">
3163 3163
 		jQuery(window).load(function () {
@@ -3176,7 +3176,7 @@  discard block
 block discarded – undo
3176 3176
 				itemWidth: 75,
3177 3177
 				itemMargin: 5,
3178 3178
 				asNavFor: '#geodir_widget_slider',
3179
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3179
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3180 3180
 				start: function (slider) {
3181 3181
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3182 3182
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3184,19 +3184,19 @@  discard block
 block discarded – undo
3184 3184
 			});
3185 3185
 			
3186 3186
 			jQuery('#geodir_widget_slider').flexslider({
3187
-				animation: "<?php echo $animation;?>",
3187
+				animation: "<?php echo $animation; ?>",
3188 3188
 				selector: ".geodir-slides > li",
3189 3189
 				namespace: "geodir-",
3190 3190
 				controlNav: true,
3191
-				animationLoop: <?php echo $animationLoop;?>,
3192
-				slideshow: <?php echo $slideshow;?>,
3193
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3194
-				animationSpeed: <?php echo $animationSpeed;?>,
3195
-				directionNav: <?php echo $directionNav;?>,
3196
-				maxItems: <?php echo $max_show;?>,
3191
+				animationLoop: <?php echo $animationLoop; ?>,
3192
+				slideshow: <?php echo $slideshow; ?>,
3193
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3194
+				animationSpeed: <?php echo $animationSpeed; ?>,
3195
+				directionNav: <?php echo $directionNav; ?>,
3196
+				maxItems: <?php echo $max_show; ?>,
3197 3197
 				move: 1,
3198
-				<?php if ( $slide_width ) {
3199
-				echo "itemWidth: " . $slide_width . ",";
3198
+				<?php if ($slide_width) {
3199
+				echo "itemWidth: ".$slide_width.",";
3200 3200
 			}?>
3201 3201
 				sync: "#geodir_widget_carousel",
3202 3202
 				start: function (slider) {
@@ -3207,7 +3207,7 @@  discard block
 block discarded – undo
3207 3207
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3208 3208
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3209 3209
 				},
3210
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3210
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3211 3211
 			});
3212 3212
 		});
3213 3213
 	</script>
@@ -3220,62 +3220,62 @@  discard block
 block discarded – undo
3220 3220
 		'order_by'       => $list_sort
3221 3221
 	);
3222 3222
 
3223
-	if ( $show_featured_only ) {
3223
+	if ($show_featured_only) {
3224 3224
 		$query_args['show_featured_only'] = 1;
3225 3225
 	}
3226 3226
 
3227
-	if ( $category != 0 || $category != '' ) {
3228
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3227
+	if ($category != 0 || $category != '') {
3228
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3229 3229
 		$tax_query         = array(
3230 3230
 			'taxonomy' => $category_taxonomy[0],
3231 3231
 			'field'    => 'id',
3232 3232
 			'terms'    => $category
3233 3233
 		);
3234 3234
 
3235
-		$query_args['tax_query'] = array( $tax_query );
3235
+		$query_args['tax_query'] = array($tax_query);
3236 3236
 	}
3237 3237
 
3238 3238
 	// we want listings with featured image only
3239 3239
 	$query_args['featured_image_only'] = 1;
3240 3240
 
3241
-	if ( $post_type == 'gd_event' ) {
3241
+	if ($post_type == 'gd_event') {
3242 3242
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3243 3243
 	}// show only upcoming events
3244 3244
 
3245
-	$widget_listings = geodir_get_widget_listings( $query_args );
3246
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3247
-		if ( $title ) {
3248
-			echo $before_title . $title . $after_title;
3245
+	$widget_listings = geodir_get_widget_listings($query_args);
3246
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3247
+		if ($title) {
3248
+			echo $before_title.$title.$after_title;
3249 3249
 		}
3250 3250
 
3251 3251
 		global $post;
3252 3252
 
3253
-		$current_post = $post;// keep current post info
3253
+		$current_post = $post; // keep current post info
3254 3254
 
3255 3255
 		$widget_main_slides = '';
3256 3256
 		$nav_slides         = '';
3257 3257
 		$widget_slides      = 0;
3258 3258
 
3259
-		foreach ( $widget_listings as $widget_listing ) {
3259
+		foreach ($widget_listings as $widget_listing) {
3260 3260
 			global $gd_widget_listing_type;
3261 3261
 			$post         = $widget_listing;
3262
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3262
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3263 3263
 
3264
-			if ( ! empty( $widget_image ) ) {
3265
-				if ( $widget_image->height >= 200 ) {
3264
+			if (!empty($widget_image)) {
3265
+				if ($widget_image->height >= 200) {
3266 3266
 					$widget_spacer_height = 0;
3267 3267
 				} else {
3268
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3268
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3269 3269
 				}
3270 3270
 
3271
-				$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" />';
3271
+				$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" />';
3272 3272
 
3273 3273
 				$title = '';
3274
-				if ( $show_title ) {
3275
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3274
+				if ($show_title) {
3275
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3276 3276
 					$post_id        = $post->ID;
3277
-					$post_permalink = get_permalink( $post->ID );
3278
-					$post_title     = get_the_title( $post->ID );
3277
+					$post_permalink = get_permalink($post->ID);
3278
+					$post_title     = get_the_title($post->ID);
3279 3279
 					/**
3280 3280
 					 * Filter the listing slider widget title.
3281 3281
 					 *
@@ -3286,12 +3286,12 @@  discard block
 block discarded – undo
3286 3286
 					 * @param string $post_permalink The post permalink url.
3287 3287
 					 * @param string $post_title     The post title text.
3288 3288
 					 */
3289
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3289
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3290 3290
 				}
3291 3291
 
3292
-				$widget_main_slides .= $title . '<a href="' . get_permalink( $post->ID ) . '"><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></a></li>';
3293
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3294
-				$widget_slides ++;
3292
+				$widget_main_slides .= $title.'<a href="'.get_permalink($post->ID).'"><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></a></li>';
3293
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3294
+				$widget_slides++;
3295 3295
 			}
3296 3296
 		}
3297 3297
 		?>
@@ -3300,7 +3300,7 @@  discard block
 block discarded – undo
3300 3300
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3301 3301
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3302 3302
 			</div>
3303
-			<?php if ( $widget_slides > 1 ) { ?>
3303
+			<?php if ($widget_slides > 1) { ?>
3304 3304
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3305 3305
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3306 3306
 				</div>
@@ -3308,7 +3308,7 @@  discard block
 block discarded – undo
3308 3308
 		</div>
3309 3309
 		<?php
3310 3310
 		$GLOBALS['post'] = $current_post;
3311
-		setup_postdata( $current_post );
3311
+		setup_postdata($current_post);
3312 3312
 	}
3313 3313
 	echo $after_widget;
3314 3314
 }
@@ -3324,50 +3324,50 @@  discard block
 block discarded – undo
3324 3324
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3325 3325
  * @param array|string $instance The settings for the particular instance of the widget.
3326 3326
  */
3327
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3327
+function geodir_loginwidget_output($args = '', $instance = '') {
3328 3328
 	//print_r($args);
3329 3329
 	//print_r($instance);
3330 3330
 	// prints the widget
3331
-	extract( $args, EXTR_SKIP );
3331
+	extract($args, EXTR_SKIP);
3332 3332
 
3333 3333
 	/** This filter is documented in geodirectory_widgets.php */
3334
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3334
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3335 3335
 
3336 3336
 	echo $before_widget;
3337
-	echo $before_title . $title . $after_title;
3337
+	echo $before_title.$title.$after_title;
3338 3338
 
3339 3339
 //	global $gd_session;
3340 3340
 //	print_r($gd_session);
3341 3341
 //	print_r($_SESSION);
3342 3342
 
3343
-	if ( is_user_logged_in() ) {
3343
+	if (is_user_logged_in()) {
3344 3344
 		global $current_user;
3345 3345
 
3346
-		$author_link = get_author_posts_url( $current_user->data->ID );
3347
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3346
+		$author_link = get_author_posts_url($current_user->data->ID);
3347
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3348 3348
 
3349 3349
 		echo '<ul class="geodir-loginbox-list">';
3350 3350
 		ob_start();
3351 3351
 		?>
3352 3352
 		<li><a class="signin"
3353
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3353
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3354 3354
 		<?php
3355
-		$post_types                           = geodir_get_posttypes( 'object' );
3356
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3357
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3355
+		$post_types                           = geodir_get_posttypes('object');
3356
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3357
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3358 3358
 
3359
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3359
+		if (!empty($show_add_listing_post_types_main_nav)) {
3360 3360
 			$addlisting_links = '';
3361
-			foreach ( $post_types as $key => $postobj ) {
3361
+			foreach ($post_types as $key => $postobj) {
3362 3362
 
3363
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3363
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3364 3364
 
3365
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3365
+					if ($add_link = geodir_get_addlisting_link($key)) {
3366 3366
 
3367 3367
 						$name = $postobj->labels->name;
3368 3368
 
3369 3369
 						$selected = '';
3370
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3370
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3371 3371
 							$selected = 'selected="selected"';
3372 3372
 						}
3373 3373
 
@@ -3380,23 +3380,23 @@  discard block
 block discarded – undo
3380 3380
 						 * @param string $key       Add listing array key.
3381 3381
 						 * @param int $current_user ->ID Current user ID.
3382 3382
 						 */
3383
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3384
-						$name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID );
3383
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3384
+						$name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
3385 3385
 
3386
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3386
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3387 3387
 
3388 3388
 					}
3389 3389
 				}
3390 3390
 
3391 3391
 			}
3392 3392
 
3393
-			if ( $addlisting_links != '' ) { ?>
3393
+			if ($addlisting_links != '') { ?>
3394 3394
 
3395 3395
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3396 3396
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3397
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3397
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3398 3398
 						<option value="" disabled="disabled" selected="selected"
3399
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3399
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3400 3400
 						<?php echo $addlisting_links; ?>
3401 3401
 					</select></li> <?php
3402 3402
 
@@ -3404,23 +3404,23 @@  discard block
 block discarded – undo
3404 3404
 
3405 3405
 		}
3406 3406
 		// My Favourites in Dashboard
3407
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3407
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3408 3408
 		$user_favourite                    = geodir_user_favourite_listing_count();
3409 3409
 
3410
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3410
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3411 3411
 			$favourite_links = '';
3412 3412
 
3413
-			foreach ( $post_types as $key => $postobj ) {
3414
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3413
+			foreach ($post_types as $key => $postobj) {
3414
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3415 3415
 					$name           = $postobj->labels->name;
3416
-					$post_type_link = geodir_getlink( $author_link, array(
3416
+					$post_type_link = geodir_getlink($author_link, array(
3417 3417
 						'stype' => $key,
3418 3418
 						'list'  => 'favourite'
3419
-					), false );
3419
+					), false);
3420 3420
 
3421 3421
 					$selected = '';
3422 3422
 
3423
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3423
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3424 3424
 						$selected = 'selected="selected"';
3425 3425
 					}
3426 3426
 					/**
@@ -3432,20 +3432,20 @@  discard block
 block discarded – undo
3432 3432
 					 * @param string $key            Favorite listing array key.
3433 3433
 					 * @param int $current_user      ->ID Current user ID.
3434 3434
 					 */
3435
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3435
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3436 3436
 
3437
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3437
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3438 3438
 				}
3439 3439
 			}
3440 3440
 
3441
-			if ( $favourite_links != '' ) {
3441
+			if ($favourite_links != '') {
3442 3442
 				?>
3443 3443
 				<li>
3444 3444
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3445 3445
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3446
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3446
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3447 3447
 						<option value="" disabled="disabled" selected="selected"
3448
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3448
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3449 3449
 						<?php echo $favourite_links; ?>
3450 3450
 					</select>
3451 3451
 				</li>
@@ -3454,19 +3454,19 @@  discard block
 block discarded – undo
3454 3454
 		}
3455 3455
 
3456 3456
 
3457
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3457
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3458 3458
 		$user_listing                     = geodir_user_post_listing_count();
3459 3459
 
3460
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3460
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3461 3461
 			$listing_links = '';
3462 3462
 
3463
-			foreach ( $post_types as $key => $postobj ) {
3464
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3463
+			foreach ($post_types as $key => $postobj) {
3464
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3465 3465
 					$name         = $postobj->labels->name;
3466
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3466
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3467 3467
 
3468 3468
 					$selected = '';
3469
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3469
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3470 3470
 						$selected = 'selected="selected"';
3471 3471
 					}
3472 3472
 
@@ -3479,20 +3479,20 @@  discard block
 block discarded – undo
3479 3479
 					 * @param string $key          My listing array key.
3480 3480
 					 * @param int $current_user    ->ID Current user ID.
3481 3481
 					 */
3482
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3482
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3483 3483
 
3484
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3484
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3485 3485
 				}
3486 3486
 			}
3487 3487
 
3488
-			if ( $listing_links != '' ) {
3488
+			if ($listing_links != '') {
3489 3489
 				?>
3490 3490
 				<li>
3491 3491
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3492 3492
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3493
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3493
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3494 3494
 						<option value="" disabled="disabled" selected="selected"
3495
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3495
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3496 3496
 						<?php echo $listing_links; ?>
3497 3497
 					</select>
3498 3498
 				</li>
@@ -3508,7 +3508,7 @@  discard block
 block discarded – undo
3508 3508
 		 *
3509 3509
 		 * @param string $dashboard_link Dashboard links HTML.
3510 3510
 		 */
3511
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3511
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3512 3512
 		echo '</ul>';
3513 3513
 
3514 3514
 		/**
@@ -3516,7 +3516,7 @@  discard block
 block discarded – undo
3516 3516
 		 *
3517 3517
 		 * @since 1.6.6
3518 3518
 		 */
3519
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3519
+		do_action('geodir_after_loginwidget_form_logged_in');
3520 3520
 
3521 3521
 
3522 3522
 	} else {
@@ -3531,18 +3531,18 @@  discard block
 block discarded – undo
3531 3531
 		<form name="loginform" class="loginform1"
3532 3532
 		      action="<?php echo geodir_login_url(); ?>"
3533 3533
 		      method="post">
3534
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3534
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3535 3535
 			                                    type="text" class="textfield user_login1"/> <span
3536 3536
 					class="user_loginInfo"></span></div>
3537
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3537
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3538 3538
 			                                    name="pwd" type="password"
3539 3539
 			                                    class="textfield user_pass1 input-text"/><span
3540 3540
 					class="user_passInfo"></span></div>
3541 3541
 
3542
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3542
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3543 3543
 			<input type="hidden" name="testcookie" value="1"/>
3544 3544
 
3545
-				<?php do_action( 'login_form' ); ?>
3545
+				<?php do_action('login_form'); ?>
3546 3546
 
3547 3547
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3548 3548
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3554,11 +3554,11 @@  discard block
 block discarded – undo
3554 3554
 					 *
3555 3555
 					 * @since 1.0.0
3556 3556
 					 */
3557
-					$is_enable_signup = get_option( 'users_can_register' );
3557
+					$is_enable_signup = get_option('users_can_register');
3558 3558
 					
3559
-					if ( $is_enable_signup ) {
3559
+					if ($is_enable_signup) {
3560 3560
 					?>
3561
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3561
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3562 3562
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3563 3563
 
3564 3564
 					<?php
@@ -3569,7 +3569,7 @@  discard block
 block discarded – undo
3569 3569
 					 * @since 1.0.0
3570 3570
 					 */
3571 3571
 					?>
3572
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3572
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3573 3573
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3574 3574
 		</form>
3575 3575
 		<?php
@@ -3578,7 +3578,7 @@  discard block
 block discarded – undo
3578 3578
 		 *
3579 3579
 		 * @since 1.6.6
3580 3580
 		 */
3581
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3581
+		do_action('geodir_after_loginwidget_form_logged_out');
3582 3582
 	}
3583 3583
 
3584 3584
 	echo $after_widget;
@@ -3600,16 +3600,16 @@  discard block
 block discarded – undo
3600 3600
  *                                         after_widget.
3601 3601
  * @param array|string $instance           The settings for the particular instance of the widget.
3602 3602
  */
3603
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3603
+function geodir_popular_postview_output($args = '', $instance = '') {
3604 3604
 	global $gd_session;
3605 3605
 
3606 3606
 	// prints the widget
3607
-	extract( $args, EXTR_SKIP );
3607
+	extract($args, EXTR_SKIP);
3608 3608
 
3609 3609
 	echo $before_widget;
3610 3610
 
3611 3611
 	/** This filter is documented in geodirectory_widgets.php */
3612
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3612
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3613 3613
 	/**
3614 3614
 	 * Filter the widget post type.
3615 3615
 	 *
@@ -3617,7 +3617,7 @@  discard block
 block discarded – undo
3617 3617
 	 *
3618 3618
 	 * @param string $instance ['post_type'] Post type of listing.
3619 3619
 	 */
3620
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3620
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3621 3621
 	/**
3622 3622
 	 * Filter the widget's term.
3623 3623
 	 *
@@ -3625,7 +3625,7 @@  discard block
 block discarded – undo
3625 3625
 	 *
3626 3626
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3627 3627
 	 */
3628
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3628
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3629 3629
 	/**
3630 3630
 	 * Filter the widget listings limit.
3631 3631
 	 *
@@ -3633,7 +3633,7 @@  discard block
 block discarded – undo
3633 3633
 	 *
3634 3634
 	 * @param string $instance ['post_number'] Number of listings to display.
3635 3635
 	 */
3636
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3636
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3637 3637
 	/**
3638 3638
 	 * Filter widget's "layout" type.
3639 3639
 	 *
@@ -3641,7 +3641,7 @@  discard block
 block discarded – undo
3641 3641
 	 *
3642 3642
 	 * @param string $instance ['layout'] Widget layout type.
3643 3643
 	 */
3644
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3644
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3645 3645
 	/**
3646 3646
 	 * Filter widget's "add_location_filter" value.
3647 3647
 	 *
@@ -3649,7 +3649,7 @@  discard block
 block discarded – undo
3649 3649
 	 *
3650 3650
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3651 3651
 	 */
3652
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3652
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3653 3653
 	/**
3654 3654
 	 * Filter widget's listing width.
3655 3655
 	 *
@@ -3657,7 +3657,7 @@  discard block
 block discarded – undo
3657 3657
 	 *
3658 3658
 	 * @param string $instance ['listing_width'] Listing width.
3659 3659
 	 */
3660
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3660
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3661 3661
 	/**
3662 3662
 	 * Filter widget's "list_sort" type.
3663 3663
 	 *
@@ -3665,25 +3665,25 @@  discard block
 block discarded – undo
3665 3665
 	 *
3666 3666
 	 * @param string $instance ['list_sort'] Listing sort by type.
3667 3667
 	 */
3668
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3669
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3668
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3669
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3670 3670
 
3671 3671
 	// set post type to current viewing post type
3672
-	if ( $use_viewing_post_type ) {
3672
+	if ($use_viewing_post_type) {
3673 3673
 		$current_post_type = geodir_get_current_posttype();
3674
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3674
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3675 3675
 			$post_type = $current_post_type;
3676 3676
 			$category  = array(); // old post type category will not work for current changed post type
3677 3677
 		}
3678 3678
 	}
3679 3679
 	// replace widget title dynamically
3680
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3681
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3680
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3681
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3682 3682
 
3683
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3684
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3683
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3684
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3685 3685
 
3686
-	if ( isset( $instance['character_count'] ) ) {
3686
+	if (isset($instance['character_count'])) {
3687 3687
 		/**
3688 3688
 		 * Filter the widget's excerpt character count.
3689 3689
 		 *
@@ -3691,37 +3691,37 @@  discard block
 block discarded – undo
3691 3691
 		 *
3692 3692
 		 * @param int $instance ['character_count'] Excerpt character count.
3693 3693
 		 */
3694
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3694
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3695 3695
 	} else {
3696 3696
 		$character_count = '';
3697 3697
 	}
3698 3698
 
3699
-	if ( empty( $title ) || $title == 'All' ) {
3700
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3699
+	if (empty($title) || $title == 'All') {
3700
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3701 3701
 	}
3702 3702
 
3703 3703
 	$location_url = array();
3704
-	$city         = get_query_var( 'gd_city' );
3705
-	if ( ! empty( $city ) ) {
3706
-		$country = get_query_var( 'gd_country' );
3707
-		$region  = get_query_var( 'gd_region' );
3704
+	$city         = get_query_var('gd_city');
3705
+	if (!empty($city)) {
3706
+		$country = get_query_var('gd_country');
3707
+		$region  = get_query_var('gd_region');
3708 3708
 
3709
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3709
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3710 3710
 
3711
-		if ( $geodir_show_location_url == 'all' ) {
3712
-			if ( $country != '' ) {
3711
+		if ($geodir_show_location_url == 'all') {
3712
+			if ($country != '') {
3713 3713
 				$location_url[] = $country;
3714 3714
 			}
3715 3715
 
3716
-			if ( $region != '' ) {
3716
+			if ($region != '') {
3717 3717
 				$location_url[] = $region;
3718 3718
 			}
3719
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3720
-			if ( $country != '' ) {
3719
+		} else if ($geodir_show_location_url == 'country_city') {
3720
+			if ($country != '') {
3721 3721
 				$location_url[] = $country;
3722 3722
 			}
3723
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3724
-			if ( $region != '' ) {
3723
+		} else if ($geodir_show_location_url == 'region_city') {
3724
+			if ($region != '') {
3725 3725
 				$location_url[] = $region;
3726 3726
 			}
3727 3727
 		}
@@ -3729,37 +3729,37 @@  discard block
 block discarded – undo
3729 3729
 		$location_url[] = $city;
3730 3730
 	}
3731 3731
 
3732
-	$location_url  = implode( '/', $location_url );
3732
+	$location_url  = implode('/', $location_url);
3733 3733
 	$skip_location = false;
3734
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3734
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3735 3735
 		$skip_location = true;
3736
-		$gd_session->un_set( 'gd_multi_location' );
3736
+		$gd_session->un_set('gd_multi_location');
3737 3737
 	}
3738 3738
 
3739
-	if ( get_option( 'permalink_structure' ) ) {
3740
-		$viewall_url = get_post_type_archive_link( $post_type );
3739
+	if (get_option('permalink_structure')) {
3740
+		$viewall_url = get_post_type_archive_link($post_type);
3741 3741
 	} else {
3742
-		$viewall_url = get_post_type_archive_link( $post_type );
3742
+		$viewall_url = get_post_type_archive_link($post_type);
3743 3743
 	}
3744 3744
 
3745
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3745
+	if (!empty($category) && $category[0] != '0') {
3746 3746
 		global $geodir_add_location_url;
3747 3747
 
3748 3748
 		$geodir_add_location_url = '0';
3749 3749
 
3750
-		if ( $add_location_filter != '0' ) {
3750
+		if ($add_location_filter != '0') {
3751 3751
 			$geodir_add_location_url = '1';
3752 3752
 		}
3753 3753
 
3754
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3754
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3755 3755
 
3756 3756
 		$geodir_add_location_url = null;
3757 3757
 	}
3758
-	if ( $skip_location ) {
3759
-		$gd_session->set( 'gd_multi_location', 1 );
3758
+	if ($skip_location) {
3759
+		$gd_session->set('gd_multi_location', 1);
3760 3760
 	}
3761 3761
 
3762
-	if ( is_wp_error( $viewall_url ) ) {
3762
+	if (is_wp_error($viewall_url)) {
3763 3763
 		$viewall_url = '';
3764 3764
 	}
3765 3765
 
@@ -3771,34 +3771,34 @@  discard block
 block discarded – undo
3771 3771
 		'order_by'       => $list_sort
3772 3772
 	);
3773 3773
 
3774
-	if ( $character_count ) {
3774
+	if ($character_count) {
3775 3775
 		$query_args['excerpt_length'] = $character_count;
3776 3776
 	}
3777 3777
 
3778
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3778
+	if (!empty($instance['show_featured_only'])) {
3779 3779
 		$query_args['show_featured_only'] = 1;
3780 3780
 	}
3781 3781
 
3782
-	if ( ! empty( $instance['show_special_only'] ) ) {
3782
+	if (!empty($instance['show_special_only'])) {
3783 3783
 		$query_args['show_special_only'] = 1;
3784 3784
 	}
3785 3785
 
3786
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3786
+	if (!empty($instance['with_pics_only'])) {
3787 3787
 		$query_args['with_pics_only']      = 0;
3788 3788
 		$query_args['featured_image_only'] = 1;
3789 3789
 	}
3790 3790
 
3791
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3791
+	if (!empty($instance['with_videos_only'])) {
3792 3792
 		$query_args['with_videos_only'] = 1;
3793 3793
 	}
3794
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3794
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3795 3795
 
3796
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3797
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3796
+	if (!empty($category) && $category[0] != '0') {
3797
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3798 3798
 
3799 3799
 		######### WPML #########
3800
-		if ( function_exists( 'icl_object_id' ) ) {
3801
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3800
+		if (function_exists('icl_object_id')) {
3801
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3802 3802
 		}
3803 3803
 		######### WPML #########
3804 3804
 
@@ -3808,14 +3808,14 @@  discard block
 block discarded – undo
3808 3808
 			'terms'    => $category
3809 3809
 		);
3810 3810
 
3811
-		$query_args['tax_query'] = array( $tax_query );
3811
+		$query_args['tax_query'] = array($tax_query);
3812 3812
 	}
3813 3813
 
3814 3814
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3815 3815
 
3816
-	$widget_listings = geodir_get_widget_listings( $query_args );
3816
+	$widget_listings = geodir_get_widget_listings($query_args);
3817 3817
 
3818
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3818
+	if (!empty($widget_listings) || $with_no_results) {
3819 3819
 		?>
3820 3820
 		<div class="geodir_locations geodir_location_listing">
3821 3821
 
@@ -3825,11 +3825,11 @@  discard block
 block discarded – undo
3825 3825
 			 *
3826 3826
 			 * @since 1.0.0
3827 3827
 			 */
3828
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3828
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3829 3829
 			<div class="geodir_list_heading clearfix">
3830
-				<?php echo $before_title . $title . $after_title; ?>
3830
+				<?php echo $before_title.$title.$after_title; ?>
3831 3831
 				<a href="<?php echo $viewall_url; ?>"
3832
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3832
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3833 3833
 			</div>
3834 3834
 			<?php
3835 3835
 			/**
@@ -3837,10 +3837,10 @@  discard block
 block discarded – undo
3837 3837
 			 *
3838 3838
 			 * @since 1.0.0
3839 3839
 			 */
3840
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3840
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3841 3841
 			<?php
3842
-			if ( strstr( $layout, 'gridview' ) ) {
3843
-				$listing_view_exp        = explode( '_', $layout );
3842
+			if (strstr($layout, 'gridview')) {
3843
+				$listing_view_exp        = explode('_', $layout);
3844 3844
 				$gridview_columns_widget = $layout;
3845 3845
 				$layout                  = $listing_view_exp[0];
3846 3846
 			} else {
@@ -3852,8 +3852,8 @@  discard block
 block discarded – undo
3852 3852
 			 *
3853 3853
 			 * @since 1.0.0
3854 3854
 			 */
3855
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3856
-			if ( ! isset( $character_count ) ) {
3855
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3856
+			if (!isset($character_count)) {
3857 3857
 				/**
3858 3858
 				 * Filter the widget's excerpt character count.
3859 3859
 				 *
@@ -3861,7 +3861,7 @@  discard block
 block discarded – undo
3861 3861
 				 *
3862 3862
 				 * @param int $instance ['character_count'] Excerpt character count.
3863 3863
 				 */
3864
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3864
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3865 3865
 			}
3866 3866
 
3867 3867
 			global $post, $map_jason, $map_canvas_arr;
@@ -3876,13 +3876,13 @@  discard block
 block discarded – undo
3876 3876
 			 *
3877 3877
 			 * @since 1.0.0
3878 3878
 			 */
3879
-			include( $template );
3879
+			include($template);
3880 3880
 
3881 3881
 			$geodir_is_widget_listing = false;
3882 3882
 
3883 3883
 			$GLOBALS['post'] = $current_post;
3884
-			if ( ! empty( $current_post ) ) {
3885
-				setup_postdata( $current_post );
3884
+			if (!empty($current_post)) {
3885
+				setup_postdata($current_post);
3886 3886
 			}
3887 3887
 			$map_jason      = $current_map_jason;
3888 3888
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3913,12 +3913,12 @@  discard block
 block discarded – undo
3913 3913
  *
3914 3914
  * @return int Reviews count.
3915 3915
  */
3916
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3916
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3917 3917
 	global $wpdb, $plugin_prefix;
3918 3918
 
3919
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3919
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3920 3920
 
3921
-	$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 . ")";
3921
+	$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.")";
3922 3922
 
3923 3923
 	/**
3924 3924
 	 * Filter count review sql query.
@@ -3930,9 +3930,9 @@  discard block
 block discarded – undo
3930 3930
 	 * @param int $taxonomy     The taxonomy Id.
3931 3931
 	 * @param string $post_type The post type.
3932 3932
 	 */
3933
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3933
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3934 3934
 
3935
-	$count = $wpdb->get_var( $sql );
3935
+	$count = $wpdb->get_var($sql);
3936 3936
 
3937 3937
 	return $count;
3938 3938
 }
@@ -3950,7 +3950,7 @@  discard block
 block discarded – undo
3950 3950
  *
3951 3951
  * @return array Term array data.
3952 3952
  */
3953
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3953
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3954 3954
 	/**
3955 3955
 	 * Filter review count option data.
3956 3956
 	 *
@@ -3960,78 +3960,78 @@  discard block
 block discarded – undo
3960 3960
 	 * @param bool $force_update Force update option value?. Default.false.
3961 3961
 	 * @param int $post_ID       The post id to update if any.
3962 3962
 	 */
3963
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3964
-	if ( ! empty( $option_data ) ) {
3963
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3964
+	if (!empty($option_data)) {
3965 3965
 		return $option_data;
3966 3966
 	}
3967 3967
 
3968
-	$option_data = get_option( 'geodir_global_review_count' );
3968
+	$option_data = get_option('geodir_global_review_count');
3969 3969
 
3970
-	if ( ! $option_data || $force_update ) {
3971
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3970
+	if (!$option_data || $force_update) {
3971
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3972 3972
 			global $gd_session;
3973 3973
 			$term_array = (array) $option_data;
3974
-			$post_type  = get_post_type( $post_ID );
3975
-			$taxonomy   = $post_type . 'category';
3976
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3977
-
3978
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3979
-				foreach ( $terms as $term_id ) {
3980
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3981
-					$children               = get_term_children( $term_id, $taxonomy );
3982
-					$term_array[ $term_id ] = $count;
3974
+			$post_type  = get_post_type($post_ID);
3975
+			$taxonomy   = $post_type.'category';
3976
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3977
+
3978
+			if (!empty($terms) && !is_wp_error($terms)) {
3979
+				foreach ($terms as $term_id) {
3980
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3981
+					$children               = get_term_children($term_id, $taxonomy);
3982
+					$term_array[$term_id] = $count;
3983 3983
 				}
3984 3984
 			}
3985 3985
 
3986
-			$session_listing = $gd_session->get( 'listing' );
3986
+			$session_listing = $gd_session->get('listing');
3987 3987
 
3988 3988
 			$terms = array();
3989
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3990
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3991
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3992
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3989
+			if (isset($_POST['post_category'][$taxonomy])) {
3990
+				$terms = (array) $_POST['post_category'][$taxonomy];
3991
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3992
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3993 3993
 			}
3994 3994
 
3995
-			if ( ! empty( $terms ) ) {
3996
-				foreach ( $terms as $term_id ) {
3997
-					if ( $term_id > 0 ) {
3998
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3999
-						$children               = get_term_children( $term_id, $taxonomy );
4000
-						$term_array[ $term_id ] = $count;
3995
+			if (!empty($terms)) {
3996
+				foreach ($terms as $term_id) {
3997
+					if ($term_id > 0) {
3998
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3999
+						$children               = get_term_children($term_id, $taxonomy);
4000
+						$term_array[$term_id] = $count;
4001 4001
 					}
4002 4002
 				}
4003 4003
 			}
4004 4004
 		} else { // Update reviews count for all post categories.
4005 4005
 			$term_array = array();
4006 4006
 			$post_types = geodir_get_posttypes();
4007
-			foreach ( $post_types as $post_type ) {
4007
+			foreach ($post_types as $post_type) {
4008 4008
 
4009
-				$taxonomy = geodir_get_taxonomies( $post_type );
4009
+				$taxonomy = geodir_get_taxonomies($post_type);
4010 4010
 				$taxonomy = $taxonomy[0];
4011 4011
 
4012 4012
 				$args = array(
4013 4013
 					'hide_empty' => false
4014 4014
 				);
4015 4015
 
4016
-				$terms = get_terms( $taxonomy, $args );
4016
+				$terms = get_terms($taxonomy, $args);
4017 4017
 
4018
-				foreach ( $terms as $term ) {
4019
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
4020
-					$children = get_term_children( $term->term_id, $taxonomy );
4018
+				foreach ($terms as $term) {
4019
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
4020
+					$children = get_term_children($term->term_id, $taxonomy);
4021 4021
 					/*if ( is_array( $children ) ) {
4022 4022
                         foreach ( $children as $child_id ) {
4023 4023
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
4024 4024
                             $count = $count + $child_count;
4025 4025
                         }
4026 4026
                     }*/
4027
-					$term_array[ $term->term_id ] = $count;
4027
+					$term_array[$term->term_id] = $count;
4028 4028
 				}
4029 4029
 			}
4030 4030
 		}
4031 4031
 
4032
-		update_option( 'geodir_global_review_count', $term_array );
4032
+		update_option('geodir_global_review_count', $term_array);
4033 4033
 		//clear cache
4034
-		wp_cache_delete( 'geodir_global_review_count' );
4034
+		wp_cache_delete('geodir_global_review_count');
4035 4035
 
4036 4036
 		return $term_array;
4037 4037
 	} else {
@@ -4047,39 +4047,39 @@  discard block
 block discarded – undo
4047 4047
  * @package GeoDirectory
4048 4048
  * @return bool
4049 4049
  */
4050
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4051
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4050
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4051
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4052 4052
 		return; // do not run if importing listings
4053 4053
 	}
4054 4054
 
4055
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4055
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4056 4056
 		return;
4057 4057
 	}
4058 4058
 
4059 4059
 	$post_ID = 0;
4060
-	if ( ! empty( $post ) ) {
4061
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4060
+	if (!empty($post)) {
4061
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4062 4062
 			return;
4063 4063
 		}
4064 4064
 
4065
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4065
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4066 4066
 			return;
4067 4067
 		}
4068 4068
 
4069
-		if ( ! empty( $post->ID ) ) {
4069
+		if (!empty($post->ID)) {
4070 4070
 			$post_ID = $post->ID;
4071 4071
 		}
4072 4072
 	}
4073 4073
 
4074
-	if ( $new_status != $old_status ) {
4075
-		geodir_count_reviews_by_terms( true, $post_ID );
4074
+	if ($new_status != $old_status) {
4075
+		geodir_count_reviews_by_terms(true, $post_ID);
4076 4076
 	}
4077 4077
 
4078 4078
 	return true;
4079 4079
 }
4080 4080
 
4081
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4082
-	geodir_count_reviews_by_terms( true, $post_id );
4081
+function geodir_term_review_count_force_update_single_post($post_id) {
4082
+	geodir_count_reviews_by_terms(true, $post_id);
4083 4083
 }
4084 4084
 
4085 4085
 /*-----------------------------------------------------------------------------------*/
@@ -4096,11 +4096,11 @@  discard block
 block discarded – undo
4096 4096
  *
4097 4097
  * @return int Post count.
4098 4098
  */
4099
-function geodir_count_posts_by_term( $data, $term ) {
4099
+function geodir_count_posts_by_term($data, $term) {
4100 4100
 
4101
-	if ( $data ) {
4102
-		if ( isset( $data[ $term->term_id ] ) ) {
4103
-			return $data[ $term->term_id ];
4101
+	if ($data) {
4102
+		if (isset($data[$term->term_id])) {
4103
+			return $data[$term->term_id];
4104 4104
 		} else {
4105 4105
 			return 0;
4106 4106
 		}
@@ -4117,8 +4117,8 @@  discard block
 block discarded – undo
4117 4117
  * param array $terms An array of term objects.
4118 4118
  * @return array Sorted terms array.
4119 4119
  */
4120
-function geodir_sort_terms_by_count( $terms ) {
4121
-	usort( $terms, "geodir_sort_by_count_obj" );
4120
+function geodir_sort_terms_by_count($terms) {
4121
+	usort($terms, "geodir_sort_by_count_obj");
4122 4122
 
4123 4123
 	return $terms;
4124 4124
 }
@@ -4133,8 +4133,8 @@  discard block
 block discarded – undo
4133 4133
  *
4134 4134
  * @return array Sorted terms array.
4135 4135
  */
4136
-function geodir_sort_terms_by_review_count( $terms ) {
4137
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4136
+function geodir_sort_terms_by_review_count($terms) {
4137
+	usort($terms, "geodir_sort_by_review_count_obj");
4138 4138
 
4139 4139
 	return $terms;
4140 4140
 }
@@ -4150,12 +4150,12 @@  discard block
 block discarded – undo
4150 4150
  *
4151 4151
  * @return array Sorted terms array.
4152 4152
  */
4153
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4154
-	if ( $sort == 'count' ) {
4155
-		return geodir_sort_terms_by_count( $terms );
4153
+function geodir_sort_terms($terms, $sort = 'count') {
4154
+	if ($sort == 'count') {
4155
+		return geodir_sort_terms_by_count($terms);
4156 4156
 	}
4157
-	if ( $sort == 'review_count' ) {
4158
-		return geodir_sort_terms_by_review_count( $terms );
4157
+	if ($sort == 'review_count') {
4158
+		return geodir_sort_terms_by_review_count($terms);
4159 4159
 	}
4160 4160
 }
4161 4161
 
@@ -4173,7 +4173,7 @@  discard block
 block discarded – undo
4173 4173
  *
4174 4174
  * @return bool
4175 4175
  */
4176
-function geodir_sort_by_count( $a, $b ) {
4176
+function geodir_sort_by_count($a, $b) {
4177 4177
 	return $a['count'] < $b['count'];
4178 4178
 }
4179 4179
 
@@ -4188,7 +4188,7 @@  discard block
 block discarded – undo
4188 4188
  *
4189 4189
  * @return bool
4190 4190
  */
4191
-function geodir_sort_by_count_obj( $a, $b ) {
4191
+function geodir_sort_by_count_obj($a, $b) {
4192 4192
 	return $a->count < $b->count;
4193 4193
 }
4194 4194
 
@@ -4203,7 +4203,7 @@  discard block
 block discarded – undo
4203 4203
  *
4204 4204
  * @return bool
4205 4205
  */
4206
-function geodir_sort_by_review_count_obj( $a, $b ) {
4206
+function geodir_sort_by_review_count_obj($a, $b) {
4207 4207
 	return $a->review_count < $b->review_count;
4208 4208
 }
4209 4209
 
@@ -4220,35 +4220,35 @@  discard block
 block discarded – undo
4220 4220
 	 * @since   1.4.2
4221 4221
 	 * @package GeoDirectory
4222 4222
 	 */
4223
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4223
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4224 4224
 
4225
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4226
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4225
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4226
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4227 4227
 
4228 4228
 	/**
4229 4229
 	 * Define language constants.
4230 4230
 	 *
4231 4231
 	 * @since 1.0.0
4232 4232
 	 */
4233
-	require_once( geodir_plugin_path() . '/language.php' );
4233
+	require_once(geodir_plugin_path().'/language.php');
4234 4234
 
4235
-	$language_file = geodir_plugin_path() . '/db-language.php';
4235
+	$language_file = geodir_plugin_path().'/db-language.php';
4236 4236
 
4237 4237
 	// Load language string file if not created yet
4238
-	if ( ! file_exists( $language_file ) ) {
4238
+	if (!file_exists($language_file)) {
4239 4239
 		geodirectory_load_db_language();
4240 4240
 	}
4241 4241
 
4242
-	if ( file_exists( $language_file ) ) {
4242
+	if (file_exists($language_file)) {
4243 4243
 		/**
4244 4244
 		 * Language strings from database.
4245 4245
 		 *
4246 4246
 		 * @since 1.4.2
4247 4247
 		 */
4248 4248
 		try {
4249
-			require_once( $language_file );
4250
-		} catch ( Exception $e ) {
4251
-			error_log( 'Language Error: ' . $e->getMessage() );
4249
+			require_once($language_file);
4250
+		} catch (Exception $e) {
4251
+			error_log('Language Error: '.$e->getMessage());
4252 4252
 		}
4253 4253
 	}
4254 4254
 }
@@ -4265,19 +4265,19 @@  discard block
 block discarded – undo
4265 4265
  */
4266 4266
 function geodirectory_load_db_language() {
4267 4267
 	global $wp_filesystem;
4268
-	if ( empty( $wp_filesystem ) ) {
4269
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4268
+	if (empty($wp_filesystem)) {
4269
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4270 4270
 		WP_Filesystem();
4271 4271
 		global $wp_filesystem;
4272 4272
 	}
4273 4273
 
4274
-	$language_file = geodir_plugin_path() . '/db-language.php';
4274
+	$language_file = geodir_plugin_path().'/db-language.php';
4275 4275
 
4276
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4276
+	if (is_file($language_file) && !is_writable($language_file)) {
4277 4277
 		return false;
4278 4278
 	} // Not possible to create.
4279 4279
 
4280
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4280
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4281 4281
 		return false;
4282 4282
 	} // Not possible to create.
4283 4283
 
@@ -4291,9 +4291,9 @@  discard block
 block discarded – undo
4291 4291
 	 *
4292 4292
 	 * @param array $contents_strings Array of strings.
4293 4293
 	 */
4294
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4294
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4295 4295
 
4296
-	$contents_strings = array_unique( $contents_strings );
4296
+	$contents_strings = array_unique($contents_strings);
4297 4297
 
4298 4298
 	$contents_head   = array();
4299 4299
 	$contents_head[] = "<?php";
@@ -4310,21 +4310,21 @@  discard block
 block discarded – undo
4310 4310
 	$contents_foot[] = "";
4311 4311
 	$contents_foot[] = "";
4312 4312
 
4313
-	$contents = implode( PHP_EOL, $contents_head );
4313
+	$contents = implode(PHP_EOL, $contents_head);
4314 4314
 
4315
-	if ( ! empty( $contents_strings ) ) {
4316
-		foreach ( $contents_strings as $string ) {
4317
-			if ( is_scalar( $string ) && $string != '' ) {
4318
-				$string = str_replace( "'", "\'", $string );
4319
-				geodir_wpml_register_string( $string );
4320
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4315
+	if (!empty($contents_strings)) {
4316
+		foreach ($contents_strings as $string) {
4317
+			if (is_scalar($string) && $string != '') {
4318
+				$string = str_replace("'", "\'", $string);
4319
+				geodir_wpml_register_string($string);
4320
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4321 4321
 			}
4322 4322
 		}
4323 4323
 	}
4324 4324
 
4325
-	$contents .= implode( PHP_EOL, $contents_foot );
4325
+	$contents .= implode(PHP_EOL, $contents_foot);
4326 4326
 
4327
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4327
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4328 4328
 		return false;
4329 4329
 	} // Failure; could not write file.
4330 4330
 
@@ -4345,49 +4345,49 @@  discard block
 block discarded – undo
4345 4345
  *
4346 4346
  * @return array Translation texts.
4347 4347
  */
4348
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4348
+function geodir_load_custom_field_translation($translation_texts = array()) {
4349 4349
 	global $wpdb;
4350 4350
 
4351 4351
 	// Custom fields table
4352
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4353
-	$rows = $wpdb->get_results( $sql );
4352
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4353
+	$rows = $wpdb->get_results($sql);
4354 4354
 
4355
-	if ( ! empty( $rows ) ) {
4356
-		foreach ( $rows as $row ) {
4357
-			if ( ! empty( $row->admin_title ) ) {
4358
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4355
+	if (!empty($rows)) {
4356
+		foreach ($rows as $row) {
4357
+			if (!empty($row->admin_title)) {
4358
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4359 4359
 			}
4360 4360
 
4361
-			if ( ! empty( $row->admin_desc ) ) {
4362
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4361
+			if (!empty($row->admin_desc)) {
4362
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4363 4363
 			}
4364 4364
 
4365
-			if ( ! empty( $row->site_title ) ) {
4366
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4365
+			if (!empty($row->site_title)) {
4366
+				$translation_texts[] = stripslashes_deep($row->site_title);
4367 4367
 			}
4368 4368
 
4369
-			if ( ! empty( $row->clabels ) ) {
4370
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4369
+			if (!empty($row->clabels)) {
4370
+				$translation_texts[] = stripslashes_deep($row->clabels);
4371 4371
 			}
4372 4372
 
4373
-			if ( ! empty( $row->required_msg ) ) {
4374
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4373
+			if (!empty($row->required_msg)) {
4374
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4375 4375
 			}
4376 4376
             
4377
-			if ( ! empty( $row->validation_msg ) ) {
4378
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4377
+			if (!empty($row->validation_msg)) {
4378
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4379 4379
 			}
4380 4380
 
4381
-			if ( ! empty( $row->default_value ) ) {
4382
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4381
+			if (!empty($row->default_value)) {
4382
+				$translation_texts[] = stripslashes_deep($row->default_value);
4383 4383
 			}
4384 4384
 
4385
-			if ( ! empty( $row->option_values ) ) {
4386
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4385
+			if (!empty($row->option_values)) {
4386
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4387 4387
 
4388
-				if ( ! empty( $option_values ) ) {
4389
-					foreach ( $option_values as $option_value ) {
4390
-						if ( ! empty( $option_value['label'] ) ) {
4388
+				if (!empty($option_values)) {
4389
+					foreach ($option_values as $option_value) {
4390
+						if (!empty($option_value['label'])) {
4391 4391
 							$translation_texts[] = $option_value['label'];
4392 4392
 						}
4393 4393
 					}
@@ -4397,56 +4397,56 @@  discard block
 block discarded – undo
4397 4397
 	}
4398 4398
 
4399 4399
 	// Custom sorting fields table
4400
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4401
-	$rows = $wpdb->get_results( $sql );
4400
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4401
+	$rows = $wpdb->get_results($sql);
4402 4402
 
4403
-	if ( ! empty( $rows ) ) {
4404
-		foreach ( $rows as $row ) {
4405
-			if ( ! empty( $row->site_title ) ) {
4406
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4403
+	if (!empty($rows)) {
4404
+		foreach ($rows as $row) {
4405
+			if (!empty($row->site_title)) {
4406
+				$translation_texts[] = stripslashes_deep($row->site_title);
4407 4407
 			}
4408 4408
 
4409
-			if ( ! empty( $row->asc_title ) ) {
4410
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4409
+			if (!empty($row->asc_title)) {
4410
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4411 4411
 			}
4412 4412
 
4413
-			if ( ! empty( $row->desc_title ) ) {
4414
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4413
+			if (!empty($row->desc_title)) {
4414
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4415 4415
 			}
4416 4416
 		}
4417 4417
 	}
4418 4418
 
4419 4419
 	// Advance search filter fields table
4420
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4421
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4422
-		$rows = $wpdb->get_results( $sql );
4423
-
4424
-		if ( ! empty( $rows ) ) {
4425
-			foreach ( $rows as $row ) {
4426
-				if ( ! empty( $row->field_site_name ) ) {
4427
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4420
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4421
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4422
+		$rows = $wpdb->get_results($sql);
4423
+
4424
+		if (!empty($rows)) {
4425
+			foreach ($rows as $row) {
4426
+				if (!empty($row->field_site_name)) {
4427
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4428 4428
 				}
4429 4429
 
4430
-				if ( ! empty( $row->front_search_title ) ) {
4431
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4430
+				if (!empty($row->front_search_title)) {
4431
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4432 4432
 				}
4433 4433
 
4434
-				if ( ! empty( $row->first_search_text ) ) {
4435
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4434
+				if (!empty($row->first_search_text)) {
4435
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4436 4436
 				}
4437 4437
 
4438
-				if ( ! empty( $row->last_search_text ) ) {
4439
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4438
+				if (!empty($row->last_search_text)) {
4439
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4440 4440
 				}
4441 4441
 
4442
-				if ( ! empty( $row->field_desc ) ) {
4443
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4442
+				if (!empty($row->field_desc)) {
4443
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4444 4444
 				}
4445 4445
 			}
4446 4446
 		}
4447 4447
 	}
4448 4448
 
4449
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4449
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4450 4450
 
4451 4451
 	return $translation_texts;
4452 4452
 }
@@ -4468,7 +4468,7 @@  discard block
 block discarded – undo
4468 4468
 	 *
4469 4469
 	 * @param array $geodir_allowed_mime_types and file extensions.
4470 4470
 	 */
4471
-	return apply_filters( 'geodir_allowed_mime_types', array(
4471
+	return apply_filters('geodir_allowed_mime_types', array(
4472 4472
 			'Image'       => array( // Image formats.
4473 4473
 				'jpg'  => 'image/jpeg',
4474 4474
 				'jpe'  => 'image/jpeg',
@@ -4537,18 +4537,18 @@  discard block
 block discarded – undo
4537 4537
  *
4538 4538
  * @return string User display name.
4539 4539
  */
4540
-function geodir_get_client_name( $user_id ) {
4540
+function geodir_get_client_name($user_id) {
4541 4541
 	$client_name = '';
4542 4542
 
4543
-	$user_data = get_userdata( $user_id );
4543
+	$user_data = get_userdata($user_id);
4544 4544
 
4545
-	if ( ! empty( $user_data ) ) {
4546
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4547
-			$client_name = trim( $user_data->display_name );
4548
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4549
-			$client_name = trim( $user_data->user_nicename );
4545
+	if (!empty($user_data)) {
4546
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4547
+			$client_name = trim($user_data->display_name);
4548
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4549
+			$client_name = trim($user_data->user_nicename);
4550 4550
 		} else {
4551
-			$client_name = trim( $user_data->user_login );
4551
+			$client_name = trim($user_data->user_login);
4552 4552
 		}
4553 4553
 	}
4554 4554
 
@@ -4556,17 +4556,17 @@  discard block
 block discarded – undo
4556 4556
 }
4557 4557
 
4558 4558
 
4559
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4559
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4560 4560
 /*
4561 4561
  * Add location variables to wpseo replacements.
4562 4562
  *
4563 4563
  * @since 1.5.4
4564 4564
  */
4565
-function geodir_wpseo_replacements( $vars ) {
4565
+function geodir_wpseo_replacements($vars) {
4566 4566
 
4567 4567
 	// location variables
4568 4568
 	$gd_post_type   = geodir_get_current_posttype();
4569
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4569
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4570 4570
 	/**
4571 4571
 	 * Filter the title variables location variables array
4572 4572
 	 *
@@ -4576,7 +4576,7 @@  discard block
 block discarded – undo
4576 4576
 	 * @param array $location_array The array of location variables.
4577 4577
 	 * @param array $vars           The page title variables.
4578 4578
 	 */
4579
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4579
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4580 4580
 
4581 4581
 
4582 4582
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4591,13 +4591,13 @@  discard block
 block discarded – undo
4591 4591
 	 * @param string $vars          The title with variables.
4592 4592
 	 * @param array $location_array The array of location variables.
4593 4593
 	 */
4594
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4594
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4595 4595
 }
4596 4596
 
4597 4597
 
4598
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4599
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4600
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4598
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4599
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4600
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4601 4601
 
4602 4602
 /**
4603 4603
  * Filter the title variables.
@@ -4639,14 +4639,14 @@  discard block
 block discarded – undo
4639 4639
  *
4640 4640
  * @return string Title after filtered variables.
4641 4641
  */
4642
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4642
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4643 4643
 	global $wp, $post;
4644 4644
 
4645
-	if ( ! $gd_page || ! $title ) {
4645
+	if (!$gd_page || !$title) {
4646 4646
 		return $title; // if no a GD page then bail.
4647 4647
 	}
4648 4648
 
4649
-	if ( $sep == '' ) {
4649
+	if ($sep == '') {
4650 4650
 		/**
4651 4651
 		 * Filter the page title separator.
4652 4652
 		 *
@@ -4655,100 +4655,100 @@  discard block
 block discarded – undo
4655 4655
 		 *
4656 4656
 		 * @param string $sep The separator, default: `|`.
4657 4657
 		 */
4658
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4658
+		$sep = apply_filters('geodir_page_title_separator', '|');
4659 4659
 	}
4660 4660
 
4661
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4662
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4661
+	if (strpos($title, '%%title%%') !== false) {
4662
+		$title = str_replace("%%title%%", $post->post_title, $title);
4663 4663
 	}
4664 4664
 
4665
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4666
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4665
+	if (strpos($title, '%%sitename%%') !== false) {
4666
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4667 4667
 	}
4668 4668
 
4669
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4670
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4669
+	if (strpos($title, '%%sitedesc%%') !== false) {
4670
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4671 4671
 	}
4672 4672
 
4673
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4674
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4673
+	if (strpos($title, '%%excerpt%%') !== false) {
4674
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4675 4675
 	}
4676 4676
 
4677
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4678
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4679
-	} else if ( $gd_page == 'add-listing' ) {
4680
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4681
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4682
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4677
+	if ($gd_page == 'search' || $gd_page == 'author') {
4678
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4679
+	} else if ($gd_page == 'add-listing') {
4680
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4681
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4682
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4683 4683
 		$post_type = $post->post_type;
4684 4684
 	} else {
4685
-		$post_type = get_query_var( 'post_type' );
4685
+		$post_type = get_query_var('post_type');
4686 4686
 	}
4687 4687
 
4688
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4688
+	if (strpos($title, '%%pt_single%%') !== false) {
4689 4689
 		$singular_name = '';
4690
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4691
-			$singular_name = __( $singular_name, 'geodirectory' );
4690
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4691
+			$singular_name = __($singular_name, 'geodirectory');
4692 4692
 		}
4693 4693
 
4694
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4694
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4695 4695
 	}
4696 4696
 
4697
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4697
+	if (strpos($title, '%%pt_plural%%') !== false) {
4698 4698
 		$plural_name = '';
4699
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4700
-			$plural_name = __( $plural_name, 'geodirectory' );
4699
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4700
+			$plural_name = __($plural_name, 'geodirectory');
4701 4701
 		}
4702 4702
 
4703
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4703
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4704 4704
 	}
4705 4705
 
4706
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4706
+	if (strpos($title, '%%category%%') !== false) {
4707 4707
 		$cat_name = '';
4708 4708
 
4709
-		if ( $gd_page == 'detail' ) {
4710
-			if ( $post->default_category ) {
4711
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4712
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4709
+		if ($gd_page == 'detail') {
4710
+			if ($post->default_category) {
4711
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4712
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4713 4713
 			}
4714
-		} else if ( $gd_page == 'listing' ) {
4714
+		} else if ($gd_page == 'listing') {
4715 4715
 			$queried_object = get_queried_object();
4716
-			if ( isset( $queried_object->name ) ) {
4716
+			if (isset($queried_object->name)) {
4717 4717
 				$cat_name = $queried_object->name;
4718 4718
 			}
4719 4719
 		}
4720
-		$title = str_replace( "%%category%%", $cat_name, $title );
4720
+		$title = str_replace("%%category%%", $cat_name, $title);
4721 4721
 	}
4722 4722
 
4723
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4723
+	if (strpos($title, '%%tag%%') !== false) {
4724 4724
 		$cat_name = '';
4725 4725
 
4726
-		if ( $gd_page == 'detail' ) {
4727
-			if ( $post->default_category ) {
4728
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4729
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4726
+		if ($gd_page == 'detail') {
4727
+			if ($post->default_category) {
4728
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4729
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4730 4730
 			}
4731
-		} else if ( $gd_page == 'listing' ) {
4731
+		} else if ($gd_page == 'listing') {
4732 4732
 			$queried_object = get_queried_object();
4733
-			if ( isset( $queried_object->name ) ) {
4733
+			if (isset($queried_object->name)) {
4734 4734
 				$cat_name = $queried_object->name;
4735 4735
 			}
4736 4736
 		}
4737
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4737
+		$title = str_replace("%%tag%%", $cat_name, $title);
4738 4738
 	}
4739 4739
 
4740
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4741
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4742
-		$title = str_replace( "%%id%%", $ID, $title );
4740
+	if (strpos($title, '%%id%%') !== false) {
4741
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4742
+		$title = str_replace("%%id%%", $ID, $title);
4743 4743
 	}
4744 4744
 
4745
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4746
-		$title = str_replace( "%%sep%%", $sep, $title );
4745
+	if (strpos($title, '%%sep%%') !== false) {
4746
+		$title = str_replace("%%sep%%", $sep, $title);
4747 4747
 	}
4748 4748
 
4749 4749
 	// location variables
4750 4750
 	$gd_post_type   = geodir_get_current_posttype();
4751
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4751
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4752 4752
 	
4753 4753
 	/**
4754 4754
 	 * Filter the title variables location variables array
@@ -4761,20 +4761,20 @@  discard block
 block discarded – undo
4761 4761
 	 * @param string $gd_page       The page being filtered.
4762 4762
 	 * @param string $sep           The separator, default: `|`.
4763 4763
 	 */
4764
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4764
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4765 4765
 	
4766
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4767
-		if ( get_query_var( 'gd_country_full' ) ) {
4768
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4766
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4767
+		if (get_query_var('gd_country_full')) {
4768
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4769 4769
 		}
4770
-		if ( get_query_var( 'gd_region_full' ) ) {
4771
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4770
+		if (get_query_var('gd_region_full')) {
4771
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4772 4772
 		}
4773
-		if ( get_query_var( 'gd_city_full' ) ) {
4774
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4773
+		if (get_query_var('gd_city_full')) {
4774
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4775 4775
 		}
4776
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4777
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4776
+		if (get_query_var('gd_neighbourhood_full')) {
4777
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4778 4778
 		}
4779 4779
 	}
4780 4780
 	
@@ -4789,57 +4789,57 @@  discard block
 block discarded – undo
4789 4789
 	 * @param string $gd_page       The page being filtered.
4790 4790
 	 * @param string $sep           The separator, default: `|`.
4791 4791
 	 */
4792
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4792
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4793 4793
 	
4794
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4794
+	if (strpos($title, '%%search_term%%') !== false) {
4795 4795
 		$search_term = '';
4796
-		if ( isset( $_REQUEST['s'] ) ) {
4797
-			$search_term = esc_attr( $_REQUEST['s'] );
4796
+		if (isset($_REQUEST['s'])) {
4797
+			$search_term = esc_attr($_REQUEST['s']);
4798 4798
 		}
4799
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4799
+		$title = str_replace("%%search_term%%", $search_term, $title);
4800 4800
 	}
4801 4801
 
4802
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4802
+	if (strpos($title, '%%search_near%%') !== false) {
4803 4803
 		$search_term = '';
4804
-		if ( isset( $_REQUEST['snear'] ) ) {
4805
-			$search_term = esc_attr( $_REQUEST['snear'] );
4804
+		if (isset($_REQUEST['snear'])) {
4805
+			$search_term = esc_attr($_REQUEST['snear']);
4806 4806
 		}
4807
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4807
+		$title = str_replace("%%search_near%%", $search_term, $title);
4808 4808
 	}
4809 4809
 
4810
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4811
-		if ( is_author() ) {
4812
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4810
+	if (strpos($title, '%%name%%') !== false) {
4811
+		if (is_author()) {
4812
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4813 4813
 			$author_name = $curauth->display_name;
4814 4814
 		} else {
4815 4815
 			$author_name = get_the_author();
4816 4816
 		}
4817
-		if ( ! $author_name || $author_name === '' ) {
4817
+		if (!$author_name || $author_name === '') {
4818 4818
 			$queried_object = get_queried_object();
4819 4819
 
4820
-			if ( isset( $queried_object->data->user_nicename ) ) {
4820
+			if (isset($queried_object->data->user_nicename)) {
4821 4821
 				$author_name = $queried_object->data->display_name;
4822 4822
 			}
4823 4823
 		}
4824
-		$title = str_replace( "%%name%%", $author_name, $title );
4824
+		$title = str_replace("%%name%%", $author_name, $title);
4825 4825
 	}
4826 4826
 
4827
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4828
-		$page  = geodir_title_meta_page( $sep );
4829
-		$title = str_replace( "%%page%%", $page, $title );
4827
+	if (strpos($title, '%%page%%') !== false) {
4828
+		$page  = geodir_title_meta_page($sep);
4829
+		$title = str_replace("%%page%%", $page, $title);
4830 4830
 	}
4831
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4831
+	if (strpos($title, '%%pagenumber%%') !== false) {
4832 4832
 		$pagenumber = geodir_title_meta_pagenumber();
4833
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4833
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4834 4834
 	}
4835
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4835
+	if (strpos($title, '%%pagetotal%%') !== false) {
4836 4836
 		$pagetotal = geodir_title_meta_pagetotal();
4837
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4837
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4838 4838
 	}
4839 4839
 
4840
-	$title = wptexturize( $title );
4841
-	$title = convert_chars( $title );
4842
-	$title = esc_html( $title );
4840
+	$title = wptexturize($title);
4841
+	$title = convert_chars($title);
4842
+	$title = esc_html($title);
4843 4843
 
4844 4844
 	/**
4845 4845
 	 * Filter the title variables after standard ones have been filtered.
@@ -4853,7 +4853,7 @@  discard block
 block discarded – undo
4853 4853
 	 * @param string $sep           The separator, default: `|`.
4854 4854
 	 */
4855 4855
 
4856
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4856
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4857 4857
 }
4858 4858
 
4859 4859
 /**
@@ -4866,82 +4866,82 @@  discard block
 block discarded – undo
4866 4866
  *
4867 4867
  * @return array Translation texts.
4868 4868
  */
4869
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4870
-	$gd_post_types = geodir_get_posttypes( 'array' );
4869
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4870
+	$gd_post_types = geodir_get_posttypes('array');
4871 4871
 
4872
-	if ( ! empty( $gd_post_types ) ) {
4873
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4874
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4875
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4876
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4872
+	if (!empty($gd_post_types)) {
4873
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4874
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4875
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4876
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4877 4877
 
4878
-			if ( ! empty( $labels ) ) {
4879
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4878
+			if (!empty($labels)) {
4879
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4880 4880
 					$translation_texts[] = $labels['name'];
4881 4881
 				}
4882
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4882
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4883 4883
 					$translation_texts[] = $labels['singular_name'];
4884 4884
 				}
4885
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4885
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4886 4886
 					$translation_texts[] = $labels['add_new'];
4887 4887
 				}
4888
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4888
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4889 4889
 					$translation_texts[] = $labels['add_new_item'];
4890 4890
 				}
4891
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4891
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4892 4892
 					$translation_texts[] = $labels['edit_item'];
4893 4893
 				}
4894
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4894
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4895 4895
 					$translation_texts[] = $labels['new_item'];
4896 4896
 				}
4897
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4897
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4898 4898
 					$translation_texts[] = $labels['view_item'];
4899 4899
 				}
4900
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4900
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4901 4901
 					$translation_texts[] = $labels['search_items'];
4902 4902
 				}
4903
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4903
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4904 4904
 					$translation_texts[] = $labels['not_found'];
4905 4905
 				}
4906
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4906
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4907 4907
 					$translation_texts[] = $labels['not_found_in_trash'];
4908 4908
 				}
4909
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4909
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4910 4910
 					$translation_texts[] = $labels['label_post_profile'];
4911 4911
 				}
4912
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4912
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4913 4913
 					$translation_texts[] = $labels['label_post_info'];
4914 4914
 				}
4915
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4915
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4916 4916
 					$translation_texts[] = $labels['label_post_images'];
4917 4917
 				}
4918
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4918
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4919 4919
 					$translation_texts[] = $labels['label_post_map'];
4920 4920
 				}
4921
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4921
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4922 4922
 					$translation_texts[] = $labels['label_reviews'];
4923 4923
 				}
4924
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4924
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4925 4925
 					$translation_texts[] = $labels['label_related_listing'];
4926 4926
 				}
4927 4927
 			}
4928 4928
 
4929
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4930
-				$translation_texts[] = normalize_whitespace( $description );
4929
+			if ($description != '' && !in_array($description, $translation_texts)) {
4930
+				$translation_texts[] = normalize_whitespace($description);
4931 4931
 			}
4932 4932
 
4933
-			if ( ! empty( $seo ) ) {
4934
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4935
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4933
+			if (!empty($seo)) {
4934
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4935
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4936 4936
 				}
4937 4937
 
4938
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4939
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4938
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4939
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4940 4940
 				}
4941 4941
 			}
4942 4942
 		}
4943 4943
 	}
4944
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4944
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4945 4945
 
4946 4946
 	return $translation_texts;
4947 4947
 }
@@ -4956,27 +4956,27 @@  discard block
 block discarded – undo
4956 4956
  *
4957 4957
  * @return array Location terms.
4958 4958
  */
4959
-function geodir_remove_location_terms( $location_terms = array() ) {
4960
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4959
+function geodir_remove_location_terms($location_terms = array()) {
4960
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4961 4961
 
4962
-	if ( ! empty( $location_terms ) && $location_manager ) {
4963
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4964
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4962
+	if (!empty($location_terms) && $location_manager) {
4963
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4964
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4965 4965
 
4966
-		if ( $hide_region_part && $hide_country_part ) {
4967
-			if ( isset( $location_terms['gd_country'] ) ) {
4968
-				unset( $location_terms['gd_country'] );
4966
+		if ($hide_region_part && $hide_country_part) {
4967
+			if (isset($location_terms['gd_country'])) {
4968
+				unset($location_terms['gd_country']);
4969 4969
 			}
4970
-			if ( isset( $location_terms['gd_region'] ) ) {
4971
-				unset( $location_terms['gd_region'] );
4970
+			if (isset($location_terms['gd_region'])) {
4971
+				unset($location_terms['gd_region']);
4972 4972
 			}
4973
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4974
-			if ( isset( $location_terms['gd_region'] ) ) {
4975
-				unset( $location_terms['gd_region'] );
4973
+		} else if ($hide_region_part && !$hide_country_part) {
4974
+			if (isset($location_terms['gd_region'])) {
4975
+				unset($location_terms['gd_region']);
4976 4976
 			}
4977
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4978
-			if ( isset( $location_terms['gd_country'] ) ) {
4979
-				unset( $location_terms['gd_country'] );
4977
+		} else if (!$hide_region_part && $hide_country_part) {
4978
+			if (isset($location_terms['gd_country'])) {
4979
+				unset($location_terms['gd_country']);
4980 4980
 			}
4981 4981
 		}
4982 4982
 	}
@@ -4997,40 +4997,40 @@  discard block
 block discarded – undo
4997 4997
  * @param WP_Post $post Post object.
4998 4998
  * @param bool $update  Whether this is an existing listing being updated or not.
4999 4999
  */
5000
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
5000
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
5001 5001
 	global $gd_notified_edited;
5002 5002
 	
5003
-	if ( ! $update ) {
5003
+	if (!$update) {
5004 5004
 		return;
5005 5005
 	}
5006 5006
 
5007
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5008
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5007
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5008
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5009 5009
 	$inline_save = $action == 'inline-save' ? true : false;
5010 5010
 
5011
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5011
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5012 5012
 		return;
5013 5013
 	}
5014 5014
 
5015
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5015
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5016 5016
 		return;
5017 5017
 	}
5018 5018
 
5019 5019
 	$user_id = (int) get_current_user_id();
5020 5020
 
5021
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5022
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5021
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5022
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5023 5023
 
5024
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_notified_edited[$post_ID] ) ) {
5025
-			if ( !empty( $gd_notified_edited ) ) {
5024
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_notified_edited[$post_ID])) {
5025
+			if (!empty($gd_notified_edited)) {
5026 5026
 				$gd_notified_edited = array();
5027 5027
 			}
5028 5028
 			$gd_notified_edited[$post_ID] = true;
5029 5029
 			
5030
-			$from_email   = get_option( 'site_email' );
5030
+			$from_email   = get_option('site_email');
5031 5031
 			$from_name    = get_site_emailName();
5032
-			$to_email     = get_option( 'admin_email' );
5033
-			$to_name      = get_option( 'name' );
5032
+			$to_email     = get_option('admin_email');
5033
+			$to_name      = get_option('name');
5034 5034
 			$message_type = 'listing_edited';
5035 5035
 
5036 5036
 			$notify_edited = true;
@@ -5042,9 +5042,9 @@  discard block
 block discarded – undo
5042 5042
 			 * @param bool $notify_edited Notify on listing edited by author?
5043 5043
 			 * @param object $post        The current post object.
5044 5044
 			 */
5045
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
5045
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
5046 5046
 
5047
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5047
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5048 5048
 		}
5049 5049
 	}
5050 5050
 }
@@ -5059,14 +5059,14 @@  discard block
 block discarded – undo
5059 5059
  *
5060 5060
  * @return string|null The current page start & end numbering.
5061 5061
  */
5062
-function geodir_title_meta_page( $sep ) {
5062
+function geodir_title_meta_page($sep) {
5063 5063
 	$replacement = null;
5064 5064
 
5065
-	$max = geodir_title_meta_pagenumbering( 'max' );
5066
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5065
+	$max = geodir_title_meta_pagenumbering('max');
5066
+	$nr  = geodir_title_meta_pagenumbering('nr');
5067 5067
 
5068
-	if ( $max > 1 && $nr > 1 ) {
5069
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5068
+	if ($max > 1 && $nr > 1) {
5069
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5070 5070
 	}
5071 5071
 
5072 5072
 	return $replacement;
@@ -5083,8 +5083,8 @@  discard block
 block discarded – undo
5083 5083
 function geodir_title_meta_pagenumber() {
5084 5084
 	$replacement = null;
5085 5085
 
5086
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5087
-	if ( isset( $nr ) && $nr > 0 ) {
5086
+	$nr = geodir_title_meta_pagenumbering('nr');
5087
+	if (isset($nr) && $nr > 0) {
5088 5088
 		$replacement = (string) $nr;
5089 5089
 	}
5090 5090
 
@@ -5102,8 +5102,8 @@  discard block
 block discarded – undo
5102 5102
 function geodir_title_meta_pagetotal() {
5103 5103
 	$replacement = null;
5104 5104
 
5105
-	$max = geodir_title_meta_pagenumbering( 'max' );
5106
-	if ( isset( $max ) && $max > 0 ) {
5105
+	$max = geodir_title_meta_pagenumbering('max');
5106
+	if (isset($max) && $max > 0) {
5107 5107
 		$replacement = (string) $max;
5108 5108
 	}
5109 5109
 
@@ -5123,36 +5123,36 @@  discard block
 block discarded – undo
5123 5123
  *
5124 5124
  * @return int|null The current page numbering.
5125 5125
  */
5126
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5126
+function geodir_title_meta_pagenumbering($request = 'nr') {
5127 5127
 	global $wp_query, $post;
5128 5128
 	$max_num_pages = null;
5129 5129
 	$page_number   = null;
5130 5130
 
5131 5131
 	$max_num_pages = 1;
5132 5132
 
5133
-	if ( ! is_singular() ) {
5134
-		$page_number = get_query_var( 'paged' );
5135
-		if ( $page_number === 0 || $page_number === '' ) {
5133
+	if (!is_singular()) {
5134
+		$page_number = get_query_var('paged');
5135
+		if ($page_number === 0 || $page_number === '') {
5136 5136
 			$page_number = 1;
5137 5137
 		}
5138 5138
 
5139
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5139
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5140 5140
 			$max_num_pages = $wp_query->max_num_pages;
5141 5141
 		}
5142 5142
 	} else {
5143
-		$page_number = get_query_var( 'page' );
5144
-		if ( $page_number === 0 || $page_number === '' ) {
5143
+		$page_number = get_query_var('page');
5144
+		if ($page_number === 0 || $page_number === '') {
5145 5145
 			$page_number = 1;
5146 5146
 		}
5147 5147
 
5148
-		if ( isset( $post->post_content ) ) {
5149
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5148
+		if (isset($post->post_content)) {
5149
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5150 5150
 		}
5151 5151
 	}
5152 5152
 
5153 5153
 	$return = null;
5154 5154
 
5155
-	switch ( $request ) {
5155
+	switch ($request) {
5156 5156
 		case 'nr':
5157 5157
 			$return = $page_number;
5158 5158
 			break;
@@ -5173,14 +5173,14 @@  discard block
 block discarded – undo
5173 5173
  *
5174 5174
  * @return array Terms.
5175 5175
  */
5176
-function geodir_filter_empty_terms( $terms ) {
5177
-	if ( empty( $terms ) ) {
5176
+function geodir_filter_empty_terms($terms) {
5177
+	if (empty($terms)) {
5178 5178
 		return $terms;
5179 5179
 	}
5180 5180
 
5181 5181
 	$return = array();
5182
-	foreach ( $terms as $term ) {
5183
-		if ( isset( $term->count ) && $term->count > 0 ) {
5182
+	foreach ($terms as $term) {
5183
+		if (isset($term->count) && $term->count > 0) {
5184 5184
 			$return[] = $term;
5185 5185
 		} else {
5186 5186
 			/**
@@ -5191,7 +5191,7 @@  discard block
 block discarded – undo
5191 5191
 			 * @param array $return The array of terms to return.
5192 5192
 			 * @param object $term  The term object.
5193 5193
 			 */
5194
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5194
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5195 5195
 		}
5196 5196
 	}
5197 5197
 
@@ -5208,15 +5208,15 @@  discard block
 block discarded – undo
5208 5208
  *
5209 5209
  * @return array
5210 5210
  */
5211
-function geodir_remove_hentry( $class ) {
5212
-	if ( geodir_is_page( 'detail' ) ) {
5213
-		$class = array_diff( $class, array( 'hentry' ) );
5211
+function geodir_remove_hentry($class) {
5212
+	if (geodir_is_page('detail')) {
5213
+		$class = array_diff($class, array('hentry'));
5214 5214
 	}
5215 5215
 
5216 5216
 	return $class;
5217 5217
 }
5218 5218
 
5219
-add_filter( 'post_class', 'geodir_remove_hentry' );
5219
+add_filter('post_class', 'geodir_remove_hentry');
5220 5220
 
5221 5221
 /**
5222 5222
  * Registers a individual text string for WPML translation.
@@ -5228,8 +5228,8 @@  discard block
 block discarded – undo
5228 5228
  * @param string $domain The plugin domain. Default geodirectory.
5229 5229
  * @param string $name The name of the string which helps to know what's being translated.
5230 5230
  */
5231
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5232
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5231
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5232
+    do_action('wpml_register_single_string', $domain, $name, $string);
5233 5233
 }
5234 5234
 
5235 5235
 /**
@@ -5244,6 +5244,6 @@  discard block
 block discarded – undo
5244 5244
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5245 5245
  * @return string The translated string.
5246 5246
  */
5247
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5248
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5247
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5248
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5249 5249
 }
5250 5250
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/post_functions.php 3 patches
Indentation   +2277 added lines, -2277 removed lines patch added patch discarded remove patch
@@ -20,492 +20,492 @@  discard block
 block discarded – undo
20 20
 function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '')
21 21
 {
22 22
 
23
-    $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
-
27
-    if (!isset($default_cat) || empty($default_cat)) {
28
-        $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
-        if(!is_int($default_cat)){
31
-            $category = get_term_by('name', $default_cat, $taxonomy);
32
-            if(isset($category->term_id)){
33
-                $default_cat =  $category->term_id;
34
-            }
35
-        }
23
+	$post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
+	if (!empty($post_cat_ids))
25
+		$post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+
27
+	if (!isset($default_cat) || empty($default_cat)) {
28
+		$default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
+	}else{
30
+		if(!is_int($default_cat)){
31
+			$category = get_term_by('name', $default_cat, $taxonomy);
32
+			if(isset($category->term_id)){
33
+				$default_cat =  $category->term_id;
34
+			}
35
+		}
36 36
 
37
-    }
37
+	}
38 38
 
39 39
 
40
-    geodir_save_post_meta($post_id, 'default_category', $default_cat);
40
+	geodir_save_post_meta($post_id, 'default_category', $default_cat);
41 41
 
42
-    if (isset($category_str) && empty($category_str)) {
42
+	if (isset($category_str) && empty($category_str)) {
43 43
 
44
-        $post_cat_str = '';
45
-        $post_categories = array();
46
-        if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
-            $post_cat_str = implode(",y:#", $post_cat_array);
48
-            $post_cat_str .= ",y:";
49
-            $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
-        }
51
-        $post_categories[$taxonomy] = $post_cat_str;
52
-        $category_str = $post_categories;
53
-    }
44
+		$post_cat_str = '';
45
+		$post_categories = array();
46
+		if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
+			$post_cat_str = implode(",y:#", $post_cat_array);
48
+			$post_cat_str .= ",y:";
49
+			$post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
+		}
51
+		$post_categories[$taxonomy] = $post_cat_str;
52
+		$category_str = $post_categories;
53
+	}
54 54
 
55
-    $change_cat_str = $category_str[$taxonomy];
55
+	$change_cat_str = $category_str[$taxonomy];
56 56
 
57
-    $default_pos = strpos($change_cat_str, 'd:');
57
+	$default_pos = strpos($change_cat_str, 'd:');
58 58
 
59
-    if ($default_pos === false) {
59
+	if ($default_pos === false) {
60 60
 
61
-        $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
61
+		$change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
62 62
 
63
-    }
63
+	}
64 64
 
65
-    $category_str[$taxonomy] = $change_cat_str;
65
+	$category_str[$taxonomy] = $change_cat_str;
66 66
 
67
-    update_post_meta($post_id, 'post_categories', $category_str);
67
+	update_post_meta($post_id, 'post_categories', $category_str);
68 68
 
69 69
 }
70 70
 
71 71
 
72 72
 if (!function_exists('geodir_save_listing')) {
73
-    /**
74
-     * Saves listing in the database using given information.
75
-     *
76
-     * @since 1.0.0
77
-     * @since 1.5.4 New parameter $wp_error added.
78
-     * @since 1.6.18 Admin use only date field should not lost value if saved by user - FIXED
79
-     * @package GeoDirectory
80
-     * @global object $wpdb WordPress Database object.
81
-     * @global object $post The current post object.
82
-     * @global object $current_user Current user object.
83
-     * @global object $gd_session GeoDirectory Session object.
84
-     * @param array $request_info {
85
-     *    Array of request info arguments.
86
-     *
87
-     *    @type string $action                                  Ajax action name.
88
-     *    @type string $geodir_ajax                             Ajax type.
89
-     *    @type string $ajax_action                             Ajax action.
90
-     *    @type string $listing_type                            Listing type.
91
-     *    @type string $pid                                     Default Post ID.
92
-     *    @type string $preview                                 Todo Desc needed.
93
-     *    @type string $add_listing_page_id                     Add listing page ID.
94
-     *    @type string $post_title                              Listing title.
95
-     *    @type string $post_desc                               Listing Description.
96
-     *    @type string $post_tags                               Listing tags.
97
-     *    @type array  $cat_limit                               Category limit.
98
-     *    @type array  $post_category                           Category IDs.
99
-     *    @type array  $post_category_str                       Category string.
100
-     *    @type string $post_default_category                   Default category ID.
101
-     *    @type string $post_address                            Listing address.
102
-     *    @type string $geodir_location_add_listing_country_val Add listing country value.
103
-     *    @type string $post_country                            Listing country.
104
-     *    @type string $geodir_location_add_listing_region_val  Add listing region value.
105
-     *    @type string $post_region                             Listing region.
106
-     *    @type string $geodir_location_add_listing_city_val    Add listing city value.
107
-     *    @type string $post_city                               Listing city.
108
-     *    @type string $post_zip                                Listing zip.
109
-     *    @type string $post_latitude                           Listing latitude.
110
-     *    @type string $post_longitude                          Listing longitude.
111
-     *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
112
-     *    @type string $post_mapzoom                            Listing mapzoom Default "9".
113
-     *    @type string $geodir_timing                           Business timing info.
114
-     *    @type string $geodir_contact                          Contact number.
115
-     *    @type string $geodir_email                            Business contact email.
116
-     *    @type string $geodir_website                          Business website.
117
-     *    @type string $geodir_twitter                          Twitter link.
118
-     *    @type string $geodir_facebook                         Facebook link.
119
-     *    @type string $geodir_video                            Video link.
120
-     *    @type string $geodir_special_offers                   Special offers.
121
-     *    @type string $post_images                             Post image urls.
122
-     *    @type string $post_imagesimage_limit                  Post images limit.
123
-     *    @type string $post_imagestotImg                       Todo Desc needed.
124
-     *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
125
-     *    @type string $geodir_spamblocker                      Todo Desc needed.
126
-     *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
127
-     *
128
-     * }
129
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
130
-     * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
131
-     * @return int|string|WP_Error Created post id or WP_Error on failure.
132
-     */
133
-    function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
134
-    {
135
-        global $wpdb, $current_user, $gd_session;
136
-
137
-        $last_post_id = '';
138
-
139
-        if ($gd_session->get('listing') && !$dummy) {
140
-            $request_info = array();
141
-            $request_session = $gd_session->get('listing');
142
-            $request_info = array_merge($_REQUEST, $request_session);
143
-        } else if (!$gd_session->get('listing') && !$dummy) {
144
-            global $post;
73
+	/**
74
+	 * Saves listing in the database using given information.
75
+	 *
76
+	 * @since 1.0.0
77
+	 * @since 1.5.4 New parameter $wp_error added.
78
+	 * @since 1.6.18 Admin use only date field should not lost value if saved by user - FIXED
79
+	 * @package GeoDirectory
80
+	 * @global object $wpdb WordPress Database object.
81
+	 * @global object $post The current post object.
82
+	 * @global object $current_user Current user object.
83
+	 * @global object $gd_session GeoDirectory Session object.
84
+	 * @param array $request_info {
85
+	 *    Array of request info arguments.
86
+	 *
87
+	 *    @type string $action                                  Ajax action name.
88
+	 *    @type string $geodir_ajax                             Ajax type.
89
+	 *    @type string $ajax_action                             Ajax action.
90
+	 *    @type string $listing_type                            Listing type.
91
+	 *    @type string $pid                                     Default Post ID.
92
+	 *    @type string $preview                                 Todo Desc needed.
93
+	 *    @type string $add_listing_page_id                     Add listing page ID.
94
+	 *    @type string $post_title                              Listing title.
95
+	 *    @type string $post_desc                               Listing Description.
96
+	 *    @type string $post_tags                               Listing tags.
97
+	 *    @type array  $cat_limit                               Category limit.
98
+	 *    @type array  $post_category                           Category IDs.
99
+	 *    @type array  $post_category_str                       Category string.
100
+	 *    @type string $post_default_category                   Default category ID.
101
+	 *    @type string $post_address                            Listing address.
102
+	 *    @type string $geodir_location_add_listing_country_val Add listing country value.
103
+	 *    @type string $post_country                            Listing country.
104
+	 *    @type string $geodir_location_add_listing_region_val  Add listing region value.
105
+	 *    @type string $post_region                             Listing region.
106
+	 *    @type string $geodir_location_add_listing_city_val    Add listing city value.
107
+	 *    @type string $post_city                               Listing city.
108
+	 *    @type string $post_zip                                Listing zip.
109
+	 *    @type string $post_latitude                           Listing latitude.
110
+	 *    @type string $post_longitude                          Listing longitude.
111
+	 *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
112
+	 *    @type string $post_mapzoom                            Listing mapzoom Default "9".
113
+	 *    @type string $geodir_timing                           Business timing info.
114
+	 *    @type string $geodir_contact                          Contact number.
115
+	 *    @type string $geodir_email                            Business contact email.
116
+	 *    @type string $geodir_website                          Business website.
117
+	 *    @type string $geodir_twitter                          Twitter link.
118
+	 *    @type string $geodir_facebook                         Facebook link.
119
+	 *    @type string $geodir_video                            Video link.
120
+	 *    @type string $geodir_special_offers                   Special offers.
121
+	 *    @type string $post_images                             Post image urls.
122
+	 *    @type string $post_imagesimage_limit                  Post images limit.
123
+	 *    @type string $post_imagestotImg                       Todo Desc needed.
124
+	 *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
125
+	 *    @type string $geodir_spamblocker                      Todo Desc needed.
126
+	 *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
127
+	 *
128
+	 * }
129
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
130
+	 * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
131
+	 * @return int|string|WP_Error Created post id or WP_Error on failure.
132
+	 */
133
+	function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
134
+	{
135
+		global $wpdb, $current_user, $gd_session;
136
+
137
+		$last_post_id = '';
138
+
139
+		if ($gd_session->get('listing') && !$dummy) {
140
+			$request_info = array();
141
+			$request_session = $gd_session->get('listing');
142
+			$request_info = array_merge($_REQUEST, $request_session);
143
+		} else if (!$gd_session->get('listing') && !$dummy) {
144
+			global $post;
145 145
             
146
-            $gd_post = $post;
147
-            if (!empty($gd_post) && is_array($gd_post)) {
148
-                $gd_post = (object)$post;
146
+			$gd_post = $post;
147
+			if (!empty($gd_post) && is_array($gd_post)) {
148
+				$gd_post = (object)$post;
149 149
                 
150
-                // Fix WPML duplicate.
151
-                if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
152
-                    return false;
153
-                }
154
-            }
150
+				// Fix WPML duplicate.
151
+				if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
152
+					return false;
153
+				}
154
+			}
155 155
             
156
-            $request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
157
-            $request_info['post_title'] = $request_info['post_title'];
158
-            $request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid']));
159
-            $request_info['post_desc'] = $request_info['content'];
160
-        } else if (!$dummy) {
161
-            return false;
162
-        }
163
-
164
-        /**
165
-         * Filter the request_info array.
166
-         *
167
-         * You can use this filter to modify request_info array.
168
-         *
169
-         * @since 1.0.0
170
-         * @package GeoDirectory
171
-         * @param array $request_info See {@see geodir_save_listing()} for accepted args.
172
-         */
173
-        $request_info = apply_filters('geodir_action_get_request_info', $request_info);
174
-
175
-        // Check if we need to save post location as new location
176
-        $location_result = geodir_get_default_location();
177
-
178
-        if ($location_result->location_id > 0) {
179
-            if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
180
-                $request_info['post_location'] = array(
181
-                    'city' => $request_info['post_city'],
182
-                    'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
183
-                    'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
184
-                    'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
185
-                    'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
186
-                );
187
-
188
-                $post_location_info = $request_info['post_location'];
189
-
190
-                if ($location_id = geodir_add_new_location($post_location_info)) {
191
-                    $post_location_id = $location_id;
192
-                }
193
-            } else {
194
-                $post_location_id = $location_result->location_id;
195
-            }
196
-        } else {
197
-            $post_location_id = $location_result->location_id;
198
-        }
199
-
200
-        if ($dummy) {
201
-            $post_status = 'publish';
202
-        } else {
203
-            $post_status = geodir_new_post_default_status();
204
-        }
205
-
206
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
207
-            $post_status = get_post_status($request_info['pid']);
208
-        }
209
-
210
-        /* fix change of slug on every title edit */
211
-        if (!isset($request_info['post_name'])) {
212
-            $request_info['post_name'] = $request_info['post_title'];
213
-
214
-            if (!empty($request_info['pid'])) {
215
-                $post_info = get_post($request_info['pid']);
216
-
217
-                if (!empty($post_info) && isset($post_info->post_name)) {
218
-                    $request_info['post_name'] = $post_info->post_name;
219
-                }
220
-            }
221
-        }
222
-
223
-        $post = array(
224
-            'post_content' => $request_info['post_desc'],
225
-            'post_status' => $post_status,
226
-            'post_title' => $request_info['post_title'],
227
-            'post_name' => $request_info['post_name'],
228
-            'post_type' => $request_info['listing_type']
229
-        );
230
-
231
-        /**
232
-         * Called before a listing is saved to the database.
233
-         *
234
-         * @since 1.0.0
235
-         * @param object $post The post object.
236
-         */
237
-        do_action_ref_array('geodir_before_save_listing', $post);
156
+			$request_info['pid'] = !empty($gd_post->ID) ? $gd_post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
157
+			$request_info['post_title'] = $request_info['post_title'];
158
+			$request_info['listing_type'] = !empty($gd_post->post_type) ? $gd_post->post_type : (!empty($request_info['post_type']) ? $request_info['post_type'] : get_post_type($request_info['pid']));
159
+			$request_info['post_desc'] = $request_info['content'];
160
+		} else if (!$dummy) {
161
+			return false;
162
+		}
163
+
164
+		/**
165
+		 * Filter the request_info array.
166
+		 *
167
+		 * You can use this filter to modify request_info array.
168
+		 *
169
+		 * @since 1.0.0
170
+		 * @package GeoDirectory
171
+		 * @param array $request_info See {@see geodir_save_listing()} for accepted args.
172
+		 */
173
+		$request_info = apply_filters('geodir_action_get_request_info', $request_info);
174
+
175
+		// Check if we need to save post location as new location
176
+		$location_result = geodir_get_default_location();
177
+
178
+		if ($location_result->location_id > 0) {
179
+			if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
180
+				$request_info['post_location'] = array(
181
+					'city' => $request_info['post_city'],
182
+					'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
183
+					'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
184
+					'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
185
+					'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
186
+				);
187
+
188
+				$post_location_info = $request_info['post_location'];
189
+
190
+				if ($location_id = geodir_add_new_location($post_location_info)) {
191
+					$post_location_id = $location_id;
192
+				}
193
+			} else {
194
+				$post_location_id = $location_result->location_id;
195
+			}
196
+		} else {
197
+			$post_location_id = $location_result->location_id;
198
+		}
238 199
 
239
-        $send_post_submit_mail = false;
200
+		if ($dummy) {
201
+			$post_status = 'publish';
202
+		} else {
203
+			$post_status = geodir_new_post_default_status();
204
+		}
240 205
 
241
-        // unhook this function so it doesn't loop infinitely
242
-        remove_action('save_post', 'geodir_post_information_save',10,2);
206
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
207
+			$post_status = get_post_status($request_info['pid']);
208
+		}
243 209
 
244
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
245
-            $post['ID'] = $request_info['pid'];
210
+		/* fix change of slug on every title edit */
211
+		if (!isset($request_info['post_name'])) {
212
+			$request_info['post_name'] = $request_info['post_title'];
246 213
 
247
-            $last_post_id = wp_update_post($post, $wp_error);
248
-        } else {
249
-            $last_post_id = wp_insert_post($post, $wp_error);
214
+			if (!empty($request_info['pid'])) {
215
+				$post_info = get_post($request_info['pid']);
250 216
 
251
-            if (!$dummy && $last_post_id) {
252
-                $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
253
-                //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
254
-            }
255
-        }
217
+				if (!empty($post_info) && isset($post_info->post_name)) {
218
+					$request_info['post_name'] = $post_info->post_name;
219
+				}
220
+			}
221
+		}
222
+
223
+		$post = array(
224
+			'post_content' => $request_info['post_desc'],
225
+			'post_status' => $post_status,
226
+			'post_title' => $request_info['post_title'],
227
+			'post_name' => $request_info['post_name'],
228
+			'post_type' => $request_info['listing_type']
229
+		);
230
+
231
+		/**
232
+		 * Called before a listing is saved to the database.
233
+		 *
234
+		 * @since 1.0.0
235
+		 * @param object $post The post object.
236
+		 */
237
+		do_action_ref_array('geodir_before_save_listing', $post);
238
+
239
+		$send_post_submit_mail = false;
240
+
241
+		// unhook this function so it doesn't loop infinitely
242
+		remove_action('save_post', 'geodir_post_information_save',10,2);
243
+
244
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
245
+			$post['ID'] = $request_info['pid'];
246
+
247
+			$last_post_id = wp_update_post($post, $wp_error);
248
+		} else {
249
+			$last_post_id = wp_insert_post($post, $wp_error);
250
+
251
+			if (!$dummy && $last_post_id) {
252
+				$send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
253
+				//geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
254
+			}
255
+		}
256 256
 
257
-        if ($wp_error && is_wp_error($last_post_id)) {
258
-            return $last_post_id; // Return WP_Error on save failure.
259
-        }
257
+		if ($wp_error && is_wp_error($last_post_id)) {
258
+			return $last_post_id; // Return WP_Error on save failure.
259
+		}
260 260
 
261
-        if (!$last_post_id) {
262
-            return false; // Save failure.
263
-        }
261
+		if (!$last_post_id) {
262
+			return false; // Save failure.
263
+		}
264 264
 
265
-        // re-hook this function
266
-        add_action('save_post', 'geodir_post_information_save',10,2);
265
+		// re-hook this function
266
+		add_action('save_post', 'geodir_post_information_save',10,2);
267 267
 
268
-        $post_tags = '';
269
-        if (!isset($request_info['post_tags'])) {
268
+		$post_tags = '';
269
+		if (!isset($request_info['post_tags'])) {
270 270
 
271
-            $post_type = $request_info['listing_type'];
272
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
271
+			$post_type = $request_info['listing_type'];
272
+			$post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
273 273
 
274
-        }
274
+		}
275 275
 
276
-        $gd_post_info = array(
277
-            "post_title" => $request_info['post_title'],
278
-            "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
279
-            "post_status" => $post_status,
280
-            "post_location_id" => $post_location_id,
281
-            "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
282
-            "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
283
-            "submit_time" => time(),
284
-            "submit_ip" => $_SERVER['REMOTE_ADDR'],
285
-        );
276
+		$gd_post_info = array(
277
+			"post_title" => $request_info['post_title'],
278
+			"post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
279
+			"post_status" => $post_status,
280
+			"post_location_id" => $post_location_id,
281
+			"claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
282
+			"businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
283
+			"submit_time" => time(),
284
+			"submit_ip" => $_SERVER['REMOTE_ADDR'],
285
+		);
286 286
 
287
-        $payment_info = array();
288
-        $package_info = array();
287
+		$payment_info = array();
288
+		$package_info = array();
289 289
 
290
-        $package_info = (array)geodir_post_package_info($package_info, $post);
290
+		$package_info = (array)geodir_post_package_info($package_info, $post);
291 291
 
292
-        $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
292
+		$post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
293 293
 
294
-        if (!empty($package_info) && !$post_package_id) {
295
-            if (isset($package_info['days']) && $package_info['days'] != 0) {
296
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
297
-            } else {
298
-                $payment_info['expire_date'] = 'Never';
299
-            }
294
+		if (!empty($package_info) && !$post_package_id) {
295
+			if (isset($package_info['days']) && $package_info['days'] != 0) {
296
+				$payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
297
+			} else {
298
+				$payment_info['expire_date'] = 'Never';
299
+			}
300 300
 
301
-            $payment_info['package_id'] = $package_info['pid'];
302
-            $payment_info['alive_days'] = $package_info['days'];
303
-            $payment_info['is_featured'] = $package_info['is_featured'];
301
+			$payment_info['package_id'] = $package_info['pid'];
302
+			$payment_info['alive_days'] = $package_info['days'];
303
+			$payment_info['is_featured'] = $package_info['is_featured'];
304 304
 
305
-            $gd_post_info = array_merge($gd_post_info, $payment_info);
306
-        }
305
+			$gd_post_info = array_merge($gd_post_info, $payment_info);
306
+		}
307 307
 
308
-        $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
308
+		$custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
309 309
 
310
-        foreach ($custom_metaboxes as $key => $val):
310
+		foreach ($custom_metaboxes as $key => $val):
311 311
 
312
-            $name = $val['name'];
313
-            $type = $val['type'];
314
-            $extrafields = $val['extra_fields'];
312
+			$name = $val['name'];
313
+			$type = $val['type'];
314
+			$extrafields = $val['extra_fields'];
315 315
 
316
-            if (trim($type) == 'address') {
317
-                $prefix = $name . '_';
318
-                $address = $prefix . 'address';
316
+			if (trim($type) == 'address') {
317
+				$prefix = $name . '_';
318
+				$address = $prefix . 'address';
319 319
 
320
-                if (isset($request_info[$address]) && $request_info[$address] != '') {
321
-                    $gd_post_info[$address] = wp_slash($request_info[$address]);
322
-                }
320
+				if (isset($request_info[$address]) && $request_info[$address] != '') {
321
+					$gd_post_info[$address] = wp_slash($request_info[$address]);
322
+				}
323 323
 
324
-                if ($extrafields != '') {
325
-                    $extrafields = unserialize($extrafields);
324
+				if ($extrafields != '') {
325
+					$extrafields = unserialize($extrafields);
326 326
 
327 327
 
328
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
328
+					if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
329 329
 
330
-                        $location_result = geodir_get_default_location();
330
+						$location_result = geodir_get_default_location();
331 331
 
332
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
333
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
334
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
332
+						$gd_post_info[$prefix . 'city'] = $location_result->city;
333
+						$gd_post_info[$prefix . 'region'] = $location_result->region;
334
+						$gd_post_info[$prefix . 'country'] = $location_result->country;
335 335
 
336
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
337 337
 
338
-                    } else {
338
+					} else {
339 339
 
340
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
341
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
342
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
340
+						$gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
341
+						$gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
342
+						$gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
343 343
 
344
-                        //----------set post locations when import dummy data-------
345
-                        $location_result = geodir_get_default_location();
344
+						//----------set post locations when import dummy data-------
345
+						$location_result = geodir_get_default_location();
346 346
 
347
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
348
-                        //-----------------------------------------------------------------
347
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
348
+						//-----------------------------------------------------------------
349 349
 
350
-                    }
350
+					}
351 351
 
352 352
 
353
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
354
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
355
-                    }
353
+					if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
354
+						$gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
355
+					}
356 356
 
357 357
 
358
-                    if (isset($extrafields['show_map']) && $extrafields['show_map']) {
358
+					if (isset($extrafields['show_map']) && $extrafields['show_map']) {
359 359
 
360
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
361
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
362
-                        }
360
+						if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
361
+							$gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
362
+						}
363 363
 
364
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
365
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
366
-                        }
364
+						if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
365
+							$gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
366
+						}
367 367
 
368
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
369
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
370
-                        }
368
+						if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
369
+							$gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
370
+						}
371 371
 
372
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
373
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
374
-                        }
372
+						if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
373
+							$gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
374
+						}
375 375
 
376
-                    }
376
+					}
377 377
 
378
-                    // show lat lng
379
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
380
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
381
-                    }
382
-                }
378
+					// show lat lng
379
+					if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
380
+						$gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
381
+					}
382
+				}
383 383
 
384
-            } elseif (trim($type) == 'file') {
385
-                if (isset($request_info[$name])) {
386
-                    $request_files = array();
387
-                    if ($request_info[$name] != '')
388
-                        $request_files = explode(",", $request_info[$name]);
384
+			} elseif (trim($type) == 'file') {
385
+				if (isset($request_info[$name])) {
386
+					$request_files = array();
387
+					if ($request_info[$name] != '')
388
+						$request_files = explode(",", $request_info[$name]);
389 389
 
390
-                    $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
391
-                    geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
392
-                }
393
-            } elseif (trim($type) == 'datepicker') {
394
-                if (isset($request_info[$name])) {
395
-                    $datetime = '';
390
+					$extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
391
+					geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
392
+				}
393
+			} elseif (trim($type) == 'datepicker') {
394
+				if (isset($request_info[$name])) {
395
+					$datetime = '';
396 396
                     
397
-                    if (!empty($request_info[$name])) {
398
-                        $date_format = geodir_default_date_format();
399
-                        if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
400
-                            $extra_fields = unserialize($val['extra_fields']);
401
-                            $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
402
-                        }
403
-
404
-                        // check if we need to change the format or not
405
-                        $date_format_len = strlen(str_replace(' ', '', $date_format));
406
-                        if($date_format_len>5){// if greater then 5 then it's the old style format.
397
+					if (!empty($request_info[$name])) {
398
+						$date_format = geodir_default_date_format();
399
+						if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
400
+							$extra_fields = unserialize($val['extra_fields']);
401
+							$date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
402
+						}
403
+
404
+						// check if we need to change the format or not
405
+						$date_format_len = strlen(str_replace(' ', '', $date_format));
406
+						if($date_format_len>5){// if greater then 5 then it's the old style format.
407 407
 
408
-                            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
409
-                            $replace = array('d','j','l','m','n','F','Y');//PHP date format
408
+							$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
409
+							$replace = array('d','j','l','m','n','F','Y');//PHP date format
410 410
 
411
-                            $date_format = str_replace($search, $replace, $date_format);
411
+							$date_format = str_replace($search, $replace, $date_format);
412 412
 
413
-                            $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
413
+							$post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
414 414
 
415
-                        }else{
416
-                            $post_htmlvar_value = $request_info[$name];
417
-                        }
415
+						}else{
416
+							$post_htmlvar_value = $request_info[$name];
417
+						}
418 418
 
419
-                        $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
420
-                        $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
421
-                    }
419
+						$post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
420
+						$datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
421
+					}
422 422
 
423
-                    $gd_post_info[$name] = $datetime;
424
-                }
425
-            } else if ($type == 'multiselect') {
426
-                if (isset($request_info[$name])) {
427
-                    $gd_post_info[$name] = $request_info[$name];
428
-                } else {
429
-                    if (isset($request_info['gd_field_' . $name])) {
430
-                        $gd_post_info[$name] = ''; /* fix de-select for multiselect */
431
-                    }
432
-                }
433
-            } else if (isset($request_info[$name])) {
434
-                $gd_post_info[$name] = $request_info[$name];
435
-            }
423
+					$gd_post_info[$name] = $datetime;
424
+				}
425
+			} else if ($type == 'multiselect') {
426
+				if (isset($request_info[$name])) {
427
+					$gd_post_info[$name] = $request_info[$name];
428
+				} else {
429
+					if (isset($request_info['gd_field_' . $name])) {
430
+						$gd_post_info[$name] = ''; /* fix de-select for multiselect */
431
+					}
432
+				}
433
+			} else if (isset($request_info[$name])) {
434
+				$gd_post_info[$name] = $request_info[$name];
435
+			}
436 436
 
437
-        endforeach;
437
+		endforeach;
438 438
 
439
-        if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
440
-            $gd_post_info['post_dummy'] = $request_info['post_dummy'];
441
-        }
439
+		if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
440
+			$gd_post_info['post_dummy'] = $request_info['post_dummy'];
441
+		}
442 442
 
443
-        // Save post detail info in detail table
444
-        if (!empty($gd_post_info)) {
445
-            geodir_save_post_info($last_post_id, $gd_post_info);
446
-        }
443
+		// Save post detail info in detail table
444
+		if (!empty($gd_post_info)) {
445
+			geodir_save_post_info($last_post_id, $gd_post_info);
446
+		}
447 447
 
448 448
 
449
-        // Set categories to the listing
450
-        if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
451
-            $post_category = array();
449
+		// Set categories to the listing
450
+		if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
451
+			$post_category = array();
452 452
 
453
-            foreach ($request_info['post_category'] as $taxonomy => $cat) {
453
+			foreach ($request_info['post_category'] as $taxonomy => $cat) {
454 454
 
455
-                if ($dummy)
456
-                    $post_category = $cat;
457
-                else {
455
+				if ($dummy)
456
+					$post_category = $cat;
457
+				else {
458 458
 
459
-                    if (!is_array($cat) && strstr($cat, ','))
460
-                        $cat = explode(',', $cat);
459
+					if (!is_array($cat) && strstr($cat, ','))
460
+						$cat = explode(',', $cat);
461 461
 
462
-                    if (!empty($cat) && is_array($cat))
463
-                        $post_category = array_map('intval', $cat);
464
-                }
462
+					if (!empty($cat) && is_array($cat))
463
+						$post_category = array_map('intval', $cat);
464
+				}
465 465
 
466
-                wp_set_object_terms($last_post_id, $post_category, $taxonomy);
467
-            }
466
+				wp_set_object_terms($last_post_id, $post_category, $taxonomy);
467
+			}
468 468
 
469
-            $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
469
+			$post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
470 470
 
471
-            $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
472
-            geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
471
+			$post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
472
+			geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
473 473
 
474
-        }
474
+		}
475 475
 
476
-        $post_tags = '';
477
-        // Set tags to the listing
478
-        if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
479
-            $post_tags = explode(",", $request_info['post_tags']);
480
-        } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
481
-            if ($dummy)
482
-                $post_tags = $request_info['post_tags'];
483
-        } else {
484
-            if ($dummy)
485
-                $post_tags = array($request_info['post_title']);
486
-        }
476
+		$post_tags = '';
477
+		// Set tags to the listing
478
+		if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
479
+			$post_tags = explode(",", $request_info['post_tags']);
480
+		} elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
481
+			if ($dummy)
482
+				$post_tags = $request_info['post_tags'];
483
+		} else {
484
+			if ($dummy)
485
+				$post_tags = array($request_info['post_title']);
486
+		}
487 487
 
488
-        if (is_array($post_tags)) {
489
-            $taxonomy = $request_info['listing_type'] . '_tags';
490
-            wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
491
-        }
488
+		if (is_array($post_tags)) {
489
+			$taxonomy = $request_info['listing_type'] . '_tags';
490
+			wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
491
+		}
492 492
 
493 493
 
494
-        // Insert attachment
494
+		// Insert attachment
495 495
 
496
-        if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
497
-            if (!$dummy) {
498
-                $tmpimgArr = trim($request_info['post_images'], ",");
499
-                $tmpimgArr = explode(",", $tmpimgArr);
500
-                geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
501
-            } else{
502
-                geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
503
-            }
496
+		if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
497
+			if (!$dummy) {
498
+				$tmpimgArr = trim($request_info['post_images'], ",");
499
+				$tmpimgArr = explode(",", $tmpimgArr);
500
+				geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
501
+			} else{
502
+				geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
503
+			}
504 504
 
505 505
 
506
-        } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
506
+		} elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
507 507
 
508
-            /* Delete Attachments
508
+			/* Delete Attachments
509 509
 			$postcurr_images = geodir_get_images($last_post_id);
510 510
 
511 511
 			$wpdb->query(
@@ -521,34 +521,34 @@  discard block
 block discarded – undo
521 521
 			geodir_save_post_info($last_post_id, $gd_post_featured_img);
522 522
 			*/
523 523
 
524
-        }
524
+		}
525 525
 
526
-        geodir_remove_temp_images();
527
-        geodir_set_wp_featured_image($last_post_id);
526
+		geodir_remove_temp_images();
527
+		geodir_set_wp_featured_image($last_post_id);
528 528
 
529
-        /**
530
-         * Called after a listing is saved to the database and before any email have been sent.
531
-         *
532
-         * @since 1.0.0
533
-         * @param int $last_post_id The saved post ID.
534
-         * @param array $request_info The post details in an array.
535
-         * @see 'geodir_after_save_listinginfo'
536
-         */
537
-        do_action('geodir_after_save_listing', $last_post_id, $request_info);
529
+		/**
530
+		 * Called after a listing is saved to the database and before any email have been sent.
531
+		 *
532
+		 * @since 1.0.0
533
+		 * @param int $last_post_id The saved post ID.
534
+		 * @param array $request_info The post details in an array.
535
+		 * @see 'geodir_after_save_listinginfo'
536
+		 */
537
+		do_action('geodir_after_save_listing', $last_post_id, $request_info);
538 538
 
539
-        //die;
539
+		//die;
540 540
 
541
-        if ($send_post_submit_mail) { // if new post send out email
542
-            $to_name = geodir_get_client_name($current_user->ID);
543
-            geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
544
-        }
545
-        /*
541
+		if ($send_post_submit_mail) { // if new post send out email
542
+			$to_name = geodir_get_client_name($current_user->ID);
543
+			geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
544
+		}
545
+		/*
546 546
          * Unset the session so we don't loop.
547 547
          */
548
-        $gd_session->un_set('listing');
549
-        return $last_post_id;
548
+		$gd_session->un_set('listing');
549
+		return $last_post_id;
550 550
 
551
-    }
551
+	}
552 552
 
553 553
 }
554 554
 
@@ -567,599 +567,599 @@  discard block
 block discarded – undo
567 567
 function geodir_get_post_info($post_id = '')
568 568
 {
569 569
 
570
-    global $wpdb, $plugin_prefix, $post, $post_info;
570
+	global $wpdb, $plugin_prefix, $post, $post_info;
571 571
 
572
-    if ($post_id == '' && !empty($post))
573
-        $post_id = $post->ID;
572
+	if ($post_id == '' && !empty($post))
573
+		$post_id = $post->ID;
574 574
 
575
-    $post_type = get_post_type($post_id);
575
+	$post_type = get_post_type($post_id);
576 576
 
577
-    $all_postypes = geodir_get_posttypes();
577
+	$all_postypes = geodir_get_posttypes();
578 578
 
579
-    if (!in_array($post_type, $all_postypes))
580
-        return false;
579
+	if (!in_array($post_type, $all_postypes))
580
+		return false;
581 581
 
582
-    $table = $plugin_prefix . $post_type . '_detail';
582
+	$table = $plugin_prefix . $post_type . '_detail';
583 583
 
584
-    /**
585
-     * Apply Filter to change Post info
586
-     *
587
-     * You can use this filter to change Post info.
588
-     *
589
-     * @since 1.0.0
590
-     * @package GeoDirectory
591
-     */
592
-    $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
584
+	/**
585
+	 * Apply Filter to change Post info
586
+	 *
587
+	 * You can use this filter to change Post info.
588
+	 *
589
+	 * @since 1.0.0
590
+	 * @package GeoDirectory
591
+	 */
592
+	$query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
593 593
 			  WHERE p.ID = pd.post_id
594 594
 			  AND pd.post_id = %d", $post_id));
595 595
 
596
-    $post_detail = $wpdb->get_row($query);
596
+	$post_detail = $wpdb->get_row($query);
597 597
 
598
-    return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
598
+	return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
599 599
 
600 600
 }
601 601
 
602 602
 
603 603
 if (!function_exists('geodir_save_post_info')) {
604
-    /**
605
-     * Saves post detail info in detail table.
606
-     *
607
-     * @since 1.0.0
608
-     * @package GeoDirectory
609
-     * @global object $wpdb WordPress Database object.
610
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
611
-     * @param int $post_id The post ID.
612
-     * @param array $postinfo_array {
613
-     *    Post info that needs to be saved in detail table.
614
-     *
615
-     *    @type string $post_title              Listing title.
616
-     *    @type string $post_tags               Listing tags.
617
-     *    @type string $post_status             Listing post status.
618
-     *    @type string $post_location_id        Listing location ID.
619
-     *    @type string $claimed                 Todo Desc needed.
620
-     *    @type string $businesses              Todo Desc needed.
621
-     *    @type int    $submit_time             Submitted time in unix timestamp.
622
-     *    @type string $submit_ip               Submitted IP.
623
-     *    @type string $expire_date             Listing expiration date.
624
-     *    @type int    $package_id              Listing package ID.
625
-     *    @type int    $alive_days              Todo Desc needed.
626
-     *    @type int    $is_featured             Is this a featured listing?.
627
-     *    @type string $post_address            Listing address.
628
-     *    @type string $post_city               Listing city.
629
-     *    @type string $post_region             Listing region.
630
-     *    @type string $post_country            Listing country.
631
-     *    @type string $post_locations          Listing locations.
632
-     *    @type string $post_zip                Listing zip.
633
-     *    @type string $post_latitude           Listing latitude.
634
-     *    @type string $post_longitude          Listing longitude.
635
-     *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
636
-     *    @type string $post_mapzoom            Listing mapzoom Default "9".
637
-     *    @type string $geodir_timing           Business timing info.
638
-     *    @type string $geodir_contact          Contact number.
639
-     *    @type string $geodir_email            Business contact email.
640
-     *    @type string $geodir_website          Business website.
641
-     *    @type string $geodir_twitter          Twitter link.
642
-     *    @type string $geodir_facebook         Facebook link.
643
-     *    @type string $geodir_video            Video link.
644
-     *    @type string $geodir_special_offers   Special offers.
645
-     *
646
-     * }
647
-     * @return bool
648
-     */
649
-    function geodir_save_post_info($post_id, $postinfo_array = array())
650
-    {
651
-        global $wpdb, $plugin_prefix;
652
-
653
-        $post_type = get_post_type($post_id);
654
-
655
-        $table = $plugin_prefix . $post_type . '_detail';
656
-
657
-        /**
658
-         * Filter to change Post info
659
-         *
660
-         * You can use this filter to change Post info.
661
-         *
662
-         * @since 1.0.0
663
-         * @package GeoDirectory
664
-         * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
665
-         * @param int $post_id The post ID.
666
-         */
667
-        $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
604
+	/**
605
+	 * Saves post detail info in detail table.
606
+	 *
607
+	 * @since 1.0.0
608
+	 * @package GeoDirectory
609
+	 * @global object $wpdb WordPress Database object.
610
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
611
+	 * @param int $post_id The post ID.
612
+	 * @param array $postinfo_array {
613
+	 *    Post info that needs to be saved in detail table.
614
+	 *
615
+	 *    @type string $post_title              Listing title.
616
+	 *    @type string $post_tags               Listing tags.
617
+	 *    @type string $post_status             Listing post status.
618
+	 *    @type string $post_location_id        Listing location ID.
619
+	 *    @type string $claimed                 Todo Desc needed.
620
+	 *    @type string $businesses              Todo Desc needed.
621
+	 *    @type int    $submit_time             Submitted time in unix timestamp.
622
+	 *    @type string $submit_ip               Submitted IP.
623
+	 *    @type string $expire_date             Listing expiration date.
624
+	 *    @type int    $package_id              Listing package ID.
625
+	 *    @type int    $alive_days              Todo Desc needed.
626
+	 *    @type int    $is_featured             Is this a featured listing?.
627
+	 *    @type string $post_address            Listing address.
628
+	 *    @type string $post_city               Listing city.
629
+	 *    @type string $post_region             Listing region.
630
+	 *    @type string $post_country            Listing country.
631
+	 *    @type string $post_locations          Listing locations.
632
+	 *    @type string $post_zip                Listing zip.
633
+	 *    @type string $post_latitude           Listing latitude.
634
+	 *    @type string $post_longitude          Listing longitude.
635
+	 *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
636
+	 *    @type string $post_mapzoom            Listing mapzoom Default "9".
637
+	 *    @type string $geodir_timing           Business timing info.
638
+	 *    @type string $geodir_contact          Contact number.
639
+	 *    @type string $geodir_email            Business contact email.
640
+	 *    @type string $geodir_website          Business website.
641
+	 *    @type string $geodir_twitter          Twitter link.
642
+	 *    @type string $geodir_facebook         Facebook link.
643
+	 *    @type string $geodir_video            Video link.
644
+	 *    @type string $geodir_special_offers   Special offers.
645
+	 *
646
+	 * }
647
+	 * @return bool
648
+	 */
649
+	function geodir_save_post_info($post_id, $postinfo_array = array())
650
+	{
651
+		global $wpdb, $plugin_prefix;
652
+
653
+		$post_type = get_post_type($post_id);
654
+
655
+		$table = $plugin_prefix . $post_type . '_detail';
656
+
657
+		/**
658
+		 * Filter to change Post info
659
+		 *
660
+		 * You can use this filter to change Post info.
661
+		 *
662
+		 * @since 1.0.0
663
+		 * @package GeoDirectory
664
+		 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
665
+		 * @param int $post_id The post ID.
666
+		 */
667
+		$postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
668
+
669
+		$query_string_escaped = '';
670
+		$query_string_array = array();
671
+
672
+		if (!empty($postmeta) && $post_id) {
673
+
674
+			$columns = $wpdb->get_col("show columns from $table");
675
+			foreach ($postmeta as $mkey => $mval) {
676
+				if(in_array($mkey,$columns)) {
677
+					if (is_array($mval)) {
678
+						$mval = implode(",", $mval);
679
+					}
680
+					$query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above
681
+					$query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare
668 682
 
669
-        $query_string_escaped = '';
670
-        $query_string_array = array();
683
+				}
684
+			}
671 685
 
672
-        if (!empty($postmeta) && $post_id) {
686
+			$query_string_escaped = trim($query_string_escaped, ", ");
673 687
 
674
-            $columns = $wpdb->get_col("show columns from $table");
675
-            foreach ($postmeta as $mkey => $mval) {
676
-                if(in_array($mkey,$columns)) {
677
-                    if (is_array($mval)) {
678
-                        $mval = implode(",", $mval);
679
-                    }
680
-                    $query_string_escaped .= " $mkey = %s, "; // we can set the key here as we check if the column exists above
681
-                    $query_string_array[] = stripslashes($mval); // we strip slashes as we are using wpdb prepare
688
+			if (empty($query_string_array) || trim($query_string_escaped) == '') {
689
+				return false;
690
+			}
682 691
 
683
-                }
684
-            }
692
+			$query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
685 693
 
686
-            $query_string_escaped = trim($query_string_escaped, ", ");
687 694
 
688
-            if (empty($query_string_array) || trim($query_string_escaped) == '') {
689
-                return false;
690
-            }
695
+			/**
696
+			 * Called before saving the listing info.
697
+			 *
698
+			 * @since 1.0.0
699
+			 * @package GeoDirectory
700
+			 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
701
+			 * @param int $post_id The post ID.
702
+			 */
703
+			do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
691 704
 
692
-            $query_string_array = str_replace(array("'%", "%'"), array("'%%", "%%'"), $query_string_array);
705
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
693 706
 
707
+				$query_string_array[] = $post_id;
708
+				$wpdb->query(
709
+					$wpdb->prepare(
710
+						"UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
711
+						$query_string_array
712
+					)
713
+				);
694 714
 
695
-            /**
696
-             * Called before saving the listing info.
697
-             *
698
-             * @since 1.0.0
699
-             * @package GeoDirectory
700
-             * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
701
-             * @param int $post_id The post ID.
702
-             */
703
-            do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
704 715
 
705
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
716
+			} else {
706 717
 
707
-                $query_string_array[] = $post_id;
708
-                $wpdb->query(
709
-                    $wpdb->prepare(
710
-                        "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
711
-                        $query_string_array
712
-                    )
713
-                );
718
+				array_unshift($query_string_array, $post_id);
719
+				$wpdb->query(
720
+					$wpdb->prepare(
721
+						"INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
722
+						$query_string_array
723
+					)
724
+				);
725
+                
726
+			}
714 727
 
728
+			/**
729
+			 * Called after saving the listing info.
730
+			 *
731
+			 * @since 1.0.0
732
+			 * @package GeoDirectory
733
+			 * @param array $postinfo_array Post info that needs to be saved in detail table.
734
+			 * @param int $post_id The post ID.
735
+			 * @see 'geodir_after_save_listing'
736
+			 */
737
+			do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
738
+
739
+			return true;
740
+		} else
741
+			return false;
715 742
 
716
-            } else {
743
+	}
744
+}
717 745
 
718
-                array_unshift($query_string_array, $post_id);
719
-                $wpdb->query(
720
-                    $wpdb->prepare(
721
-                        "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
722
-                        $query_string_array
723
-                    )
724
-                );
725
-                
726
-            }
727 746
 
728
-            /**
729
-             * Called after saving the listing info.
730
-             *
731
-             * @since 1.0.0
732
-             * @package GeoDirectory
733
-             * @param array $postinfo_array Post info that needs to be saved in detail table.
734
-             * @param int $post_id The post ID.
735
-             * @see 'geodir_after_save_listing'
736
-             */
737
-            do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
747
+if (!function_exists('geodir_save_post_meta')) {
748
+	/**
749
+	 * Save or update post custom fields.
750
+	 *
751
+	 * @since 1.0.0
752
+	 * @package GeoDirectory
753
+	 * @global object $wpdb WordPress Database object.
754
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
755
+	 * @param int $post_id The post ID.
756
+	 * @param string $postmeta Detail table column name.
757
+	 * @param string $meta_value Detail table column value.
758
+	 * @return void|bool
759
+	 */
760
+	function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
761
+	{
762
+
763
+		global $wpdb, $plugin_prefix;
764
+
765
+		$post_type = get_post_type($post_id);
766
+
767
+		$table = $plugin_prefix . $post_type . '_detail';
768
+
769
+		if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
770
+
771
+			if (is_array($meta_value)) {
772
+				$meta_value = implode(",", $meta_value);
773
+			}
738 774
 
739
-            return true;
740
-        } else
741
-            return false;
775
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
742 776
 
743
-    }
744
-}
777
+				$wpdb->query(
778
+					$wpdb->prepare(
779
+						"UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
780
+						array($post_id)
781
+					)
782
+				);
745 783
 
784
+			} else {
746 785
 
747
-if (!function_exists('geodir_save_post_meta')) {
748
-    /**
749
-     * Save or update post custom fields.
750
-     *
751
-     * @since 1.0.0
752
-     * @package GeoDirectory
753
-     * @global object $wpdb WordPress Database object.
754
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
755
-     * @param int $post_id The post ID.
756
-     * @param string $postmeta Detail table column name.
757
-     * @param string $meta_value Detail table column value.
758
-     * @return void|bool
759
-     */
760
-    function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
761
-    {
762
-
763
-        global $wpdb, $plugin_prefix;
764
-
765
-        $post_type = get_post_type($post_id);
766
-
767
-        $table = $plugin_prefix . $post_type . '_detail';
768
-
769
-        if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
770
-
771
-            if (is_array($meta_value)) {
772
-                $meta_value = implode(",", $meta_value);
773
-            }
774
-
775
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
776
-
777
-                $wpdb->query(
778
-                    $wpdb->prepare(
779
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
780
-                        array($post_id)
781
-                    )
782
-                );
783
-
784
-            } else {
785
-
786
-                $wpdb->query(
787
-                    $wpdb->prepare(
788
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
789
-                        array($post_id)
790
-                    )
791
-                );
792
-            }
793
-
794
-
795
-        } else
796
-            return false;
797
-    }
786
+				$wpdb->query(
787
+					$wpdb->prepare(
788
+						"INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
789
+						array($post_id)
790
+					)
791
+				);
792
+			}
793
+
794
+
795
+		} else
796
+			return false;
797
+	}
798 798
 }
799 799
 
800 800
 if (!function_exists('geodir_delete_post_meta')) {
801
-    /**
802
-     * Delete post custom fields.
803
-     *
804
-     * @since 1.0.0
805
-     * @package GeoDirectory
806
-     * @global object $wpdb WordPress Database object.
807
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
808
-     * @param int $post_id The post ID.
809
-     * @param string $postmeta Detail table column name.
810
-     * @todo check if this is depreciated
811
-     * @todo Fix unknown variable mval
812
-     * @return bool
813
-     */
814
-    function geodir_delete_post_meta($post_id, $postmeta)
815
-    {
816
-
817
-        global $wpdb, $plugin_prefix;
818
-
819
-        $post_type = get_post_type($post_id);
820
-
821
-        $table = $plugin_prefix . $post_type . '_detail';
822
-
823
-        if (is_array($postmeta) && !empty($postmeta) && $post_id) {
824
-            $post_meta_set_query = '';
825
-
826
-            foreach ($postmeta as $mkey) {
827
-                if ($mval != '')
828
-                    $post_meta_set_query .= $mkey . " = '', ";
829
-            }
830
-
831
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
801
+	/**
802
+	 * Delete post custom fields.
803
+	 *
804
+	 * @since 1.0.0
805
+	 * @package GeoDirectory
806
+	 * @global object $wpdb WordPress Database object.
807
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
808
+	 * @param int $post_id The post ID.
809
+	 * @param string $postmeta Detail table column name.
810
+	 * @todo check if this is depreciated
811
+	 * @todo Fix unknown variable mval
812
+	 * @return bool
813
+	 */
814
+	function geodir_delete_post_meta($post_id, $postmeta)
815
+	{
816
+
817
+		global $wpdb, $plugin_prefix;
818
+
819
+		$post_type = get_post_type($post_id);
820
+
821
+		$table = $plugin_prefix . $post_type . '_detail';
822
+
823
+		if (is_array($postmeta) && !empty($postmeta) && $post_id) {
824
+			$post_meta_set_query = '';
825
+
826
+			foreach ($postmeta as $mkey) {
827
+				if ($mval != '')
828
+					$post_meta_set_query .= $mkey . " = '', ";
829
+			}
830
+
831
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
832 832
             
833
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
834
-                return false;
835
-            }
836
-
837
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
838
-
839
-                $wpdb->query(
840
-                    $wpdb->prepare(
841
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
842
-                        array($post_id)
843
-                    )
844
-                );
845
-
846
-                return true;
847
-            }
848
-
849
-        } elseif ($postmeta != '' && $post_id) {
850
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
851
-
852
-                $wpdb->query(
853
-                    $wpdb->prepare(
854
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
855
-                        array($post_id)
856
-                    )
857
-                );
858
-
859
-                return true;
860
-            }
861
-
862
-        } else
863
-            return false;
864
-    }
833
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
834
+				return false;
835
+			}
836
+
837
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
838
+
839
+				$wpdb->query(
840
+					$wpdb->prepare(
841
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
842
+						array($post_id)
843
+					)
844
+				);
845
+
846
+				return true;
847
+			}
848
+
849
+		} elseif ($postmeta != '' && $post_id) {
850
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
851
+
852
+				$wpdb->query(
853
+					$wpdb->prepare(
854
+						"UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
855
+						array($post_id)
856
+					)
857
+				);
858
+
859
+				return true;
860
+			}
861
+
862
+		} else
863
+			return false;
864
+	}
865 865
 }
866 866
 
867 867
 
868 868
 if (!function_exists('geodir_get_post_meta')) {
869
-    /**
870
-     * Get post custom meta.
871
-     *
872
-     * @since 1.0.0
873
-     * @package GeoDirectory
874
-     * @global object $wpdb WordPress Database object.
875
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
876
-     * @param int $post_id The post ID.
877
-     * @param string $meta_key The meta key to retrieve.
878
-     * @param bool $single Optional. Whether to return a single value. Default false.
879
-     * @todo single variable not yet implemented.
880
-     * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
881
-     */
882
-    function geodir_get_post_meta($post_id, $meta_key, $single = false)
883
-    {
884
-        if (!$post_id) {
885
-            return false;
886
-        }
887
-        global $wpdb, $plugin_prefix;
888
-
889
-        $all_postypes = geodir_get_posttypes();
890
-
891
-        $post_type = get_post_type($post_id);
892
-
893
-        if (!in_array($post_type, $all_postypes))
894
-            return false;
895
-
896
-        $table = $plugin_prefix . $post_type . '_detail';
897
-
898
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
899
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
900
-            if ($meta_value && $meta_value !== '') {
901
-                return maybe_serialize($meta_value);
902
-            } else
903
-                return $meta_value;
904
-        } else {
905
-            return false;
906
-        }
907
-    }
869
+	/**
870
+	 * Get post custom meta.
871
+	 *
872
+	 * @since 1.0.0
873
+	 * @package GeoDirectory
874
+	 * @global object $wpdb WordPress Database object.
875
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
876
+	 * @param int $post_id The post ID.
877
+	 * @param string $meta_key The meta key to retrieve.
878
+	 * @param bool $single Optional. Whether to return a single value. Default false.
879
+	 * @todo single variable not yet implemented.
880
+	 * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
881
+	 */
882
+	function geodir_get_post_meta($post_id, $meta_key, $single = false)
883
+	{
884
+		if (!$post_id) {
885
+			return false;
886
+		}
887
+		global $wpdb, $plugin_prefix;
888
+
889
+		$all_postypes = geodir_get_posttypes();
890
+
891
+		$post_type = get_post_type($post_id);
892
+
893
+		if (!in_array($post_type, $all_postypes))
894
+			return false;
895
+
896
+		$table = $plugin_prefix . $post_type . '_detail';
897
+
898
+		if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
899
+			$meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
900
+			if ($meta_value && $meta_value !== '') {
901
+				return maybe_serialize($meta_value);
902
+			} else
903
+				return $meta_value;
904
+		} else {
905
+			return false;
906
+		}
907
+	}
908 908
 }
909 909
 
910 910
 
911 911
 if (!function_exists('geodir_save_post_images')) {
912
-    /**
913
-     * Save post attachments.
914
-     *
915
-     * @since 1.0.0
916
-     * @package GeoDirectory
917
-     * @global object $wpdb WordPress Database object.
918
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
919
-     * @global object $current_user Current user object.
920
-     * @param int $post_id The post ID.
921
-     * @param array $post_image Post image urls as an array.
922
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
923
-     */
924
-    function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
925
-    {
926
-
912
+	/**
913
+	 * Save post attachments.
914
+	 *
915
+	 * @since 1.0.0
916
+	 * @package GeoDirectory
917
+	 * @global object $wpdb WordPress Database object.
918
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
919
+	 * @global object $current_user Current user object.
920
+	 * @param int $post_id The post ID.
921
+	 * @param array $post_image Post image urls as an array.
922
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
923
+	 */
924
+	function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
925
+	{
927 926
 
928
-        global $wpdb, $plugin_prefix, $current_user;
929 927
 
930
-        $post_type = get_post_type($post_id);
928
+		global $wpdb, $plugin_prefix, $current_user;
931 929
 
932
-        $table = $plugin_prefix . $post_type . '_detail';
930
+		$post_type = get_post_type($post_id);
933 931
 
934
-        $post_images = geodir_get_images($post_id);
932
+		$table = $plugin_prefix . $post_type . '_detail';
935 933
 
936
-        $wpdb->query(
937
-            $wpdb->prepare(
938
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
939
-                array($post_id)
940
-            )
941
-        );
934
+		$post_images = geodir_get_images($post_id);
942 935
 
943
-        $invalid_files = $post_images;
944
-        $valid_file_ids = array();
945
-        $valid_files_condition = '';
946
-        $geodir_uploaddir = '';
936
+		$wpdb->query(
937
+			$wpdb->prepare(
938
+				"UPDATE " . $table . " SET featured_image = '' where post_id =%d",
939
+				array($post_id)
940
+			)
941
+		);
947 942
 
948
-        $remove_files = array();
943
+		$invalid_files = $post_images;
944
+		$valid_file_ids = array();
945
+		$valid_files_condition = '';
946
+		$geodir_uploaddir = '';
949 947
 
950
-        if (!empty($post_image)) {
948
+		$remove_files = array();
951 949
 
952
-            $uploads = wp_upload_dir();
953
-            $uploads_dir = $uploads['path'];
950
+		if (!empty($post_image)) {
954 951
 
955
-            $geodir_uploadpath = $uploads['path'];
956
-            $geodir_uploadurl = $uploads['url'];
957
-            $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
952
+			$uploads = wp_upload_dir();
953
+			$uploads_dir = $uploads['path'];
958 954
 
959
-            $invalid_files = array();
960
-            $postcurr_images = array();
955
+			$geodir_uploadpath = $uploads['path'];
956
+			$geodir_uploadurl = $uploads['url'];
957
+			$sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
961 958
 
962
-            for ($m = 0; $m < count($post_image); $m++) {
963
-                $menu_order = $m + 1;
959
+			$invalid_files = array();
960
+			$postcurr_images = array();
964 961
 
965
-                $file_path = '';
966
-                /* --------- start ------- */
962
+			for ($m = 0; $m < count($post_image); $m++) {
963
+				$menu_order = $m + 1;
967 964
 
968
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
965
+				$file_path = '';
966
+				/* --------- start ------- */
969 967
 
970
-                $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
968
+				$split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
971 969
 
970
+				$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
972 971
 
973
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
974 972
 
975
-                    /* --------- end ------- */
976
-                    $curr_img_url = $post_image[$m];
973
+				if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
977 974
 
978
-                    $image_name_arr = explode('/', $curr_img_url);
975
+					/* --------- end ------- */
976
+					$curr_img_url = $post_image[$m];
979 977
 
980
-                    $count_image_name_arr = count($image_name_arr) - 2;
978
+					$image_name_arr = explode('/', $curr_img_url);
981 979
 
982
-                    $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
980
+					$count_image_name_arr = count($image_name_arr) - 2;
983 981
 
984
-                    $curr_img_dir = $image_name_arr[$count_image_name_arr];
982
+					$count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
985 983
 
986
-                    $filename = end($image_name_arr);
987
-                    if (strpos($filename, '?') !== false) {
988
-                        list($filename) = explode('?', $filename);
989
-                    }
984
+					$curr_img_dir = $image_name_arr[$count_image_name_arr];
990 985
 
991
-                    $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
992
-                    $curr_img_dir = str_replace($filename, "", $curr_img_dir);
986
+					$filename = end($image_name_arr);
987
+					if (strpos($filename, '?') !== false) {
988
+						list($filename) = explode('?', $filename);
989
+					}
993 990
 
994
-                    $img_name_arr = explode('.', $filename);
991
+					$curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
992
+					$curr_img_dir = str_replace($filename, "", $curr_img_dir);
995 993
 
996
-                    $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
997
-                    if (!empty($img_name_arr) && count($img_name_arr) > 2) {
998
-                        $new_img_name_arr = $img_name_arr;
999
-                        if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
1000
-                            unset($new_img_name_arr[count($img_name_arr) - 1]);
1001
-                            $file_title = implode('.', $new_img_name_arr);
1002
-                        }
1003
-                    }
1004
-                    $file_title = sanitize_file_name($file_title);
1005
-                    $file_name = sanitize_file_name($filename);
994
+					$img_name_arr = explode('.', $filename);
1006 995
 
1007
-                    $arr_file_type = wp_check_filetype($filename);
996
+					$file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
997
+					if (!empty($img_name_arr) && count($img_name_arr) > 2) {
998
+						$new_img_name_arr = $img_name_arr;
999
+						if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
1000
+							unset($new_img_name_arr[count($img_name_arr) - 1]);
1001
+							$file_title = implode('.', $new_img_name_arr);
1002
+						}
1003
+					}
1004
+					$file_title = sanitize_file_name($file_title);
1005
+					$file_name = sanitize_file_name($filename);
1008 1006
 
1009
-                    $uploaded_file_type = $arr_file_type['type'];
1007
+					$arr_file_type = wp_check_filetype($filename);
1010 1008
 
1011
-                    // Set an array containing a list of acceptable formats
1012
-                    $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1009
+					$uploaded_file_type = $arr_file_type['type'];
1013 1010
 
1014
-                    // If the uploaded file is the right format
1015
-                    if (in_array($uploaded_file_type, $allowed_file_types)) {
1016
-                        if (!function_exists('wp_handle_upload')) {
1017
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1018
-                        }
1011
+					// Set an array containing a list of acceptable formats
1012
+					$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1019 1013
 
1020
-                        if (!is_dir($geodir_uploadpath)) {
1021
-                            mkdir($geodir_uploadpath);
1022
-                        }
1014
+					// If the uploaded file is the right format
1015
+					if (in_array($uploaded_file_type, $allowed_file_types)) {
1016
+						if (!function_exists('wp_handle_upload')) {
1017
+							require_once(ABSPATH . 'wp-admin/includes/file.php');
1018
+						}
1023 1019
 
1024
-                        $external_img = false;
1025
-                        if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1026
-                        } else {
1027
-                            $external_img = true;
1028
-                        }
1020
+						if (!is_dir($geodir_uploadpath)) {
1021
+							mkdir($geodir_uploadpath);
1022
+						}
1029 1023
 
1030
-                        if ($dummy || $external_img) {
1031
-                            $uploaded_file = array();
1032
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1024
+						$external_img = false;
1025
+						if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1026
+						} else {
1027
+							$external_img = true;
1028
+						}
1033 1029
 
1034
-                            if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035
-                                $new_name = basename($uploaded['file']);
1036
-                                $uploaded_file = $uploaded;
1037
-                            }else{
1038
-                                print_r($uploaded);exit;
1039
-                            }
1040
-                            $external_img = false;
1041
-                        } else {
1042
-                            $new_name = $post_id . '_' . $file_name;
1030
+						if ($dummy || $external_img) {
1031
+							$uploaded_file = array();
1032
+							$uploaded = (array)fetch_remote_file($curr_img_url);
1043 1033
 
1044
-                            if ($curr_img_dir == $sub_dir) {
1045
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1046
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1047
-                            } else {
1048
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1050
-                            }
1034
+							if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035
+								$new_name = basename($uploaded['file']);
1036
+								$uploaded_file = $uploaded;
1037
+							}else{
1038
+								print_r($uploaded);exit;
1039
+							}
1040
+							$external_img = false;
1041
+						} else {
1042
+							$new_name = $post_id . '_' . $file_name;
1051 1043
 
1052
-                            $uploaded_file = '';
1044
+							if ($curr_img_dir == $sub_dir) {
1045
+								$img_path = $geodir_uploadpath . '/' . $filename;
1046
+								$img_url = $geodir_uploadurl . '/' . $filename;
1047
+							} else {
1048
+								$img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
+								$img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1050
+							}
1053 1051
 
1054
-                            if (file_exists($img_path)) {
1055
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1056
-                                $file_path = '';
1057
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1058
-                                $uploaded_file = true;
1059
-                                $file_path = $curr_img_dir . '/' . $filename;
1060
-                            }
1052
+							$uploaded_file = '';
1061 1053
 
1062
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1063
-                                unlink($img_path);
1064
-                        }
1054
+							if (file_exists($img_path)) {
1055
+								$uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1056
+								$file_path = '';
1057
+							} else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1058
+								$uploaded_file = true;
1059
+								$file_path = $curr_img_dir . '/' . $filename;
1060
+							}
1065 1061
 
1066
-                        if (!empty($uploaded_file)) {
1067
-                            if (!isset($file_path) || !$file_path) {
1068
-                                $file_path = $sub_dir . '/' . $new_name;
1069
-                            }
1062
+							if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1063
+								unlink($img_path);
1064
+						}
1070 1065
 
1071
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1066
+						if (!empty($uploaded_file)) {
1067
+							if (!isset($file_path) || !$file_path) {
1068
+								$file_path = $sub_dir . '/' . $new_name;
1069
+							}
1072 1070
 
1073
-                            if ($menu_order == 1) {
1071
+							$postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1074 1072
 
1075
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1073
+							if ($menu_order == 1) {
1076 1074
 
1077
-                            }
1075
+								$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1078 1076
 
1079
-                            // Set up options array to add this file as an attachment
1080
-                            $attachment = array();
1081
-                            $attachment['post_id'] = $post_id;
1082
-                            $attachment['title'] = $file_title;
1083
-                            $attachment['content'] = '';
1084
-                            $attachment['file'] = $file_path;
1085
-                            $attachment['mime_type'] = $uploaded_file_type;
1086
-                            $attachment['menu_order'] = $menu_order;
1087
-                            $attachment['is_featured'] = 0;
1077
+							}
1088 1078
 
1089
-                            $attachment_set = '';
1079
+							// Set up options array to add this file as an attachment
1080
+							$attachment = array();
1081
+							$attachment['post_id'] = $post_id;
1082
+							$attachment['title'] = $file_title;
1083
+							$attachment['content'] = '';
1084
+							$attachment['file'] = $file_path;
1085
+							$attachment['mime_type'] = $uploaded_file_type;
1086
+							$attachment['menu_order'] = $menu_order;
1087
+							$attachment['is_featured'] = 0;
1090 1088
 
1091
-                            foreach ($attachment as $key => $val) {
1092
-                                if ($val != '')
1093
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1094
-                            }
1089
+							$attachment_set = '';
1095 1090
 
1096
-                            $attachment_set = trim($attachment_set, ", ");
1091
+							foreach ($attachment as $key => $val) {
1092
+								if ($val != '')
1093
+									$attachment_set .= $key . " = '" . $val . "', ";
1094
+							}
1097 1095
 
1098
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1096
+							$attachment_set = trim($attachment_set, ", ");
1097
+
1098
+							$wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1099 1099
 
1100
-                            $valid_file_ids[] = $wpdb->insert_id;
1101
-                        }
1100
+							$valid_file_ids[] = $wpdb->insert_id;
1101
+						}
1102 1102
 
1103
-                    }
1103
+					}
1104 1104
 
1105 1105
 
1106
-                } else {
1107
-                    $valid_file_ids[] = $find_image;
1106
+				} else {
1107
+					$valid_file_ids[] = $find_image;
1108 1108
 
1109
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1109
+					$postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1110 1110
 
1111
-                    $wpdb->query(
1112
-                        $wpdb->prepare(
1113
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1114
-                            array($menu_order, $split_img_path[1], $post_id)
1115
-                        )
1116
-                    );
1111
+					$wpdb->query(
1112
+						$wpdb->prepare(
1113
+							"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1114
+							array($menu_order, $split_img_path[1], $post_id)
1115
+						)
1116
+					);
1117 1117
 
1118
-                    if ($menu_order == 1)
1119
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1118
+					if ($menu_order == 1)
1119
+						$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1120 1120
 
1121
-                }
1121
+				}
1122 1122
 
1123 1123
 
1124
-            }
1124
+			}
1125 1125
 
1126
-            if (!empty($valid_file_ids)) {
1126
+			if (!empty($valid_file_ids)) {
1127 1127
 
1128
-                $remove_files = $valid_file_ids;
1128
+				$remove_files = $valid_file_ids;
1129 1129
 
1130
-                $remove_files_length = count($remove_files);
1131
-                $remove_files_format = array_fill(0, $remove_files_length, '%d');
1132
-                $format = implode(',', $remove_files_format);
1133
-                $valid_files_condition = " ID NOT IN ($format) AND ";
1130
+				$remove_files_length = count($remove_files);
1131
+				$remove_files_format = array_fill(0, $remove_files_length, '%d');
1132
+				$format = implode(',', $remove_files_format);
1133
+				$valid_files_condition = " ID NOT IN ($format) AND ";
1134 1134
 
1135
-            }
1135
+			}
1136 1136
 
1137
-            //Get and remove all old images of post from database to set by new order
1137
+			//Get and remove all old images of post from database to set by new order
1138 1138
 
1139
-            if (!empty($post_images)) {
1139
+			if (!empty($post_images)) {
1140 1140
 
1141
-                foreach ($post_images as $img) {
1141
+				foreach ($post_images as $img) {
1142 1142
 
1143
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1143
+					if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1144 1144
 
1145
-                        $invalid_files[] = (object)array('src' => $img->src);
1145
+						$invalid_files[] = (object)array('src' => $img->src);
1146 1146
 
1147
-                    }
1147
+					}
1148 1148
 
1149
-                }
1149
+				}
1150 1150
 
1151
-            }
1151
+			}
1152 1152
 
1153
-            $invalid_files = (object)$invalid_files;
1154
-        }
1153
+			$invalid_files = (object)$invalid_files;
1154
+		}
1155 1155
 
1156
-        $remove_files[] = $post_id;
1156
+		$remove_files[] = $post_id;
1157 1157
 
1158
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1158
+		$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1159 1159
 
1160
-        if (!empty($invalid_files))
1161
-            geodir_remove_attachments($invalid_files);
1162
-    }
1160
+		if (!empty($invalid_files))
1161
+			geodir_remove_attachments($invalid_files);
1162
+	}
1163 1163
 
1164 1164
 }
1165 1165
 
@@ -1173,12 +1173,12 @@  discard block
 block discarded – undo
1173 1173
 function geodir_remove_temp_images()
1174 1174
 {
1175 1175
 
1176
-    global $current_user;
1176
+	global $current_user;
1177 1177
 
1178
-    $uploads = wp_upload_dir();
1179
-    $uploads_dir = $uploads['path'];
1178
+	$uploads = wp_upload_dir();
1179
+	$uploads_dir = $uploads['path'];
1180 1180
 
1181
-    /*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1181
+	/*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1182 1182
 
1183 1183
 			$dirPath = $uploads_dir.'/temp_'.$current_user->data->ID;
1184 1184
 			if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
@@ -1195,8 +1195,8 @@  discard block
 block discarded – undo
1195 1195
 			rmdir($dirPath);
1196 1196
 	}	*/
1197 1197
 
1198
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1199
-    geodir_delete_directory($dirname);
1198
+	$dirname = $uploads_dir . '/temp_' . $current_user->ID;
1199
+	geodir_delete_directory($dirname);
1200 1200
 }
1201 1201
 
1202 1202
 
@@ -1210,131 +1210,131 @@  discard block
 block discarded – undo
1210 1210
  */
1211 1211
 function geodir_delete_directory($dirname)
1212 1212
 {
1213
-    $dir_handle = '';
1214
-    if (is_dir($dirname))
1215
-        $dir_handle = opendir($dirname);
1216
-    if (!$dir_handle)
1217
-        return false;
1218
-    while ($file = readdir($dir_handle)) {
1219
-        if ($file != "." && $file != "..") {
1220
-            if (!is_dir($dirname . "/" . $file))
1221
-                unlink($dirname . "/" . $file);
1222
-            else
1223
-                geodir_delete_directory($dirname . '/' . $file);
1224
-        }
1225
-    }
1226
-    closedir($dir_handle);
1227
-    rmdir($dirname);
1228
-    return true;
1213
+	$dir_handle = '';
1214
+	if (is_dir($dirname))
1215
+		$dir_handle = opendir($dirname);
1216
+	if (!$dir_handle)
1217
+		return false;
1218
+	while ($file = readdir($dir_handle)) {
1219
+		if ($file != "." && $file != "..") {
1220
+			if (!is_dir($dirname . "/" . $file))
1221
+				unlink($dirname . "/" . $file);
1222
+			else
1223
+				geodir_delete_directory($dirname . '/' . $file);
1224
+		}
1225
+	}
1226
+	closedir($dir_handle);
1227
+	rmdir($dirname);
1228
+	return true;
1229 1229
 
1230 1230
 }
1231 1231
 
1232 1232
 
1233 1233
 if (!function_exists('geodir_remove_attachments')) {
1234
-    /**
1235
-     * Remove post attachments.
1236
-     *
1237
-     * @since 1.0.0
1238
-     * @package GeoDirectory
1239
-     * @param array $postcurr_images Array of image objects.
1240
-     */
1241
-    function geodir_remove_attachments($postcurr_images = array())
1242
-    {
1243
-        // Unlink all past images of post
1244
-        if (!empty($postcurr_images)) {
1245
-
1246
-            $uploads = wp_upload_dir();
1247
-            $uploads_dir = $uploads['path'];
1248
-
1249
-            foreach ($postcurr_images as $postimg) {
1250
-                $image_name_arr = explode('/', $postimg->src);
1251
-                $filename = end($image_name_arr);
1252
-                if (file_exists($uploads_dir . '/' . $filename))
1253
-                    unlink($uploads_dir . '/' . $filename);
1254
-            }
1255
-
1256
-        } // endif
1257
-        // Unlink all past images of post end
1258
-    }
1234
+	/**
1235
+	 * Remove post attachments.
1236
+	 *
1237
+	 * @since 1.0.0
1238
+	 * @package GeoDirectory
1239
+	 * @param array $postcurr_images Array of image objects.
1240
+	 */
1241
+	function geodir_remove_attachments($postcurr_images = array())
1242
+	{
1243
+		// Unlink all past images of post
1244
+		if (!empty($postcurr_images)) {
1245
+
1246
+			$uploads = wp_upload_dir();
1247
+			$uploads_dir = $uploads['path'];
1248
+
1249
+			foreach ($postcurr_images as $postimg) {
1250
+				$image_name_arr = explode('/', $postimg->src);
1251
+				$filename = end($image_name_arr);
1252
+				if (file_exists($uploads_dir . '/' . $filename))
1253
+					unlink($uploads_dir . '/' . $filename);
1254
+			}
1255
+
1256
+		} // endif
1257
+		// Unlink all past images of post end
1258
+	}
1259 1259
 }
1260 1260
 
1261 1261
 if (!function_exists('geodir_get_featured_image')) {
1262
-    /**
1263
-     * Gets the post featured image.
1264
-     *
1265
-     * @since 1.0.0
1266
-     * @package GeoDirectory
1267
-     * @global object $wpdb WordPress Database object.
1268
-     * @global object $post The current post object.
1269
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1270
-     * @param int|string $post_id The post ID.
1271
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1272
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1273
-     * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1274
-     * @return bool|object Image details as an object.
1275
-     */
1276
-    function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1277
-    {
1278
-
1279
-        /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1262
+	/**
1263
+	 * Gets the post featured image.
1264
+	 *
1265
+	 * @since 1.0.0
1266
+	 * @package GeoDirectory
1267
+	 * @global object $wpdb WordPress Database object.
1268
+	 * @global object $post The current post object.
1269
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1270
+	 * @param int|string $post_id The post ID.
1271
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1272
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1273
+	 * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1274
+	 * @return bool|object Image details as an object.
1275
+	 */
1276
+	function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1277
+	{
1278
+
1279
+		/*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1280 1280
         $img_arr['path'] = '';
1281 1281
         $img_arr['width'] = '';
1282 1282
         $img_arr['height'] = '';
1283 1283
         $img_arr['title'] = '';
1284 1284
         return (object)$img_arr;*/
1285
-        global $wpdb, $plugin_prefix, $post;
1285
+		global $wpdb, $plugin_prefix, $post;
1286
+
1287
+		if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1288
+			$post_type = $post->post_type;
1289
+		} else {
1290
+			$post_type = get_post_type($post_id);
1291
+		}
1292
+
1293
+		if (!in_array($post_type, geodir_get_posttypes())) {
1294
+			return false;// if not a GD CPT return;
1295
+		}
1296
+
1297
+
1298
+		/**
1299
+		 * Filter to force the list images to be smaller.
1300
+		 * @since 1.6.18
1301
+		 */
1302
+		if( $size=='list-thumb' && apply_filters('geodir_use_small_list_img',false) ){
1303
+			$fimg = get_the_post_thumbnail_url($post_id,'medium');
1304
+			if($fimg){
1305
+				$uploads = wp_upload_dir(); 
1306
+				$uploads_baseurl = $uploads['baseurl'];
1307
+				$file = str_replace($uploads_baseurl,'',$fimg);
1308
+			}
1309
+		}
1286 1310
 
1287
-        if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1288
-            $post_type = $post->post_type;
1289
-        } else {
1290
-            $post_type = get_post_type($post_id);
1291
-        }
1311
+		$table = $plugin_prefix . $post_type . '_detail';
1292 1312
 
1293
-        if (!in_array($post_type, geodir_get_posttypes())) {
1294
-            return false;// if not a GD CPT return;
1295
-        }
1313
+		if (!$file) {
1314
+			if (isset($post->featured_image)) {
1315
+				$file = $post->featured_image;
1316
+			} else {
1317
+				$file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1318
+			}
1319
+		}
1296 1320
 
1321
+		if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1322
+			$img_arr = array();
1297 1323
 
1298
-        /**
1299
-         * Filter to force the list images to be smaller.
1300
-         * @since 1.6.18
1301
-         */
1302
-        if( $size=='list-thumb' && apply_filters('geodir_use_small_list_img',false) ){
1303
-            $fimg = get_the_post_thumbnail_url($post_id,'medium');
1304
-            if($fimg){
1305
-                $uploads = wp_upload_dir(); 
1306
-                $uploads_baseurl = $uploads['baseurl'];
1307
-                $file = str_replace($uploads_baseurl,'',$fimg);
1308
-            }
1309
-        }
1310
-
1311
-        $table = $plugin_prefix . $post_type . '_detail';
1312
-
1313
-        if (!$file) {
1314
-            if (isset($post->featured_image)) {
1315
-                $file = $post->featured_image;
1316
-            } else {
1317
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1318
-            }
1319
-        }
1320
-
1321
-        if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1322
-            $img_arr = array();
1323
-
1324
-            $file_info = pathinfo($file);
1325
-            $sub_dir = '';
1326
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1327
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1328
-            }
1329
-
1330
-            $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1331
-            $uploads_baseurl = $uploads['baseurl'];
1332
-            $uploads_path = $uploads['path'];
1333
-
1334
-            $file_name = $file_info['basename'];
1335
-
1336
-            $uploads_url = $uploads_baseurl . $sub_dir;
1337
-            /*
1324
+			$file_info = pathinfo($file);
1325
+			$sub_dir = '';
1326
+			if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1327
+				$sub_dir = stripslashes_deep($file_info['dirname']);
1328
+			}
1329
+
1330
+			$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1331
+			$uploads_baseurl = $uploads['baseurl'];
1332
+			$uploads_path = $uploads['path'];
1333
+
1334
+			$file_name = $file_info['basename'];
1335
+
1336
+			$uploads_url = $uploads_baseurl . $sub_dir;
1337
+			/*
1338 1338
              * Allows the filter of image src for such things as CDN change.
1339 1339
              *
1340 1340
              * @since 1.5.7
@@ -1343,158 +1343,158 @@  discard block
 block discarded – undo
1343 1343
              * @param string $uploads_url The server upload directory url.
1344 1344
              * @param string $uploads_baseurl The uploads dir base url.
1345 1345
              */
1346
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1347
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1348
-            $width = 0;
1349
-            $height = 0;
1350
-            if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1351
-                $imagesize = getimagesize($img_arr['path']);
1352
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1353
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1354
-            }
1355
-            $img_arr['width'] = $width;
1356
-            $img_arr['height'] = $height;
1357
-            $img_arr['title'] = '';
1358
-        } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1359
-            foreach ($post_images as $image) {
1360
-                return $image;
1361
-            }
1362
-        } else if ($no_image) {
1363
-            $img_arr = array();
1364
-
1365
-            $default_img = '';
1366
-            if (isset($post->default_category) && $post->default_category) {
1367
-                $default_cat = $post->default_category;
1368
-            } else {
1369
-                $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1370
-            }
1371
-
1372
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1373
-                $default_img = $default_catimg['src'];
1374
-            elseif ($no_image) {
1375
-                $default_img = get_option('geodir_listing_no_img');
1376
-            }
1377
-
1378
-            if (!empty($default_img)) {
1379
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1380
-                $uploads_baseurl = $uploads['baseurl'];
1381
-                $uploads_path = $uploads['path'];
1382
-
1383
-                $img_arr = array();
1384
-
1385
-                $file_info = pathinfo($default_img);
1386
-
1387
-                $file_name = $file_info['basename'];
1388
-
1389
-                $img_arr['src'] = $default_img;
1390
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1391
-
1392
-                $width = 0;
1393
-                $height = 0;
1394
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1395
-                    $imagesize = getimagesize($img_arr['path']);
1396
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1397
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1398
-                }
1399
-                $img_arr['width'] = $width;
1400
-                $img_arr['height'] = $height;
1401
-
1402
-                $img_arr['title'] = ''; // add the title to the array
1403
-            }
1404
-        }
1405
-
1406
-        if (!empty($img_arr))
1407
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1408
-        else
1409
-            return false;
1410
-    }
1346
+			$img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1347
+			$img_arr['path'] = $uploads_path . '/' . $file_name;
1348
+			$width = 0;
1349
+			$height = 0;
1350
+			if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1351
+				$imagesize = getimagesize($img_arr['path']);
1352
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1353
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1354
+			}
1355
+			$img_arr['width'] = $width;
1356
+			$img_arr['height'] = $height;
1357
+			$img_arr['title'] = '';
1358
+		} elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1359
+			foreach ($post_images as $image) {
1360
+				return $image;
1361
+			}
1362
+		} else if ($no_image) {
1363
+			$img_arr = array();
1364
+
1365
+			$default_img = '';
1366
+			if (isset($post->default_category) && $post->default_category) {
1367
+				$default_cat = $post->default_category;
1368
+			} else {
1369
+				$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1370
+			}
1371
+
1372
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1373
+				$default_img = $default_catimg['src'];
1374
+			elseif ($no_image) {
1375
+				$default_img = get_option('geodir_listing_no_img');
1376
+			}
1377
+
1378
+			if (!empty($default_img)) {
1379
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1380
+				$uploads_baseurl = $uploads['baseurl'];
1381
+				$uploads_path = $uploads['path'];
1382
+
1383
+				$img_arr = array();
1384
+
1385
+				$file_info = pathinfo($default_img);
1386
+
1387
+				$file_name = $file_info['basename'];
1388
+
1389
+				$img_arr['src'] = $default_img;
1390
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1391
+
1392
+				$width = 0;
1393
+				$height = 0;
1394
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1395
+					$imagesize = getimagesize($img_arr['path']);
1396
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1397
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1398
+				}
1399
+				$img_arr['width'] = $width;
1400
+				$img_arr['height'] = $height;
1401
+
1402
+				$img_arr['title'] = ''; // add the title to the array
1403
+			}
1404
+		}
1405
+
1406
+		if (!empty($img_arr))
1407
+			return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1408
+		else
1409
+			return false;
1410
+	}
1411 1411
 }
1412 1412
 
1413 1413
 if (!function_exists('geodir_show_featured_image')) {
1414
-    /**
1415
-     * Gets the post featured image.
1416
-     *
1417
-     * @since 1.0.0
1418
-     * @package GeoDirectory
1419
-     * @param int|string $post_id The post ID.
1420
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1421
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1422
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1423
-     * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1424
-     * @return bool|string Returns image html.
1425
-     */
1426
-    function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1427
-    {
1428
-        $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1429
-
1430
-        $html = geodir_show_image($image, $size, $no_image, false);
1431
-
1432
-        if (!empty($html) && $echo) {
1433
-            echo $html;
1434
-        } elseif (!empty($html)) {
1435
-            return $html;
1436
-        } else
1437
-            return false;
1438
-    }
1414
+	/**
1415
+	 * Gets the post featured image.
1416
+	 *
1417
+	 * @since 1.0.0
1418
+	 * @package GeoDirectory
1419
+	 * @param int|string $post_id The post ID.
1420
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1421
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1422
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1423
+	 * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1424
+	 * @return bool|string Returns image html.
1425
+	 */
1426
+	function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1427
+	{
1428
+		$image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1429
+
1430
+		$html = geodir_show_image($image, $size, $no_image, false);
1431
+
1432
+		if (!empty($html) && $echo) {
1433
+			echo $html;
1434
+		} elseif (!empty($html)) {
1435
+			return $html;
1436
+		} else
1437
+			return false;
1438
+	}
1439 1439
 }
1440 1440
 
1441 1441
 if (!function_exists('geodir_get_images')) {
1442
-    /**
1443
-     * Gets the post images.
1444
-     *
1445
-     * @since 1.0.0
1446
-     * @package GeoDirectory
1447
-     * @global object $wpdb WordPress Database object.
1448
-     * @param int $post_id The post ID.
1449
-     * @param string $img_size Optional. Thumbnail size.
1450
-     * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1451
-     * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1452
-     * @param int|string $limit Optional. Number of images.
1453
-     * @return array|bool Returns images as an array. Each item is an object.
1454
-     */
1455
-    function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1456
-    {
1457
-        global $wpdb;
1458
-        if ($limit) {
1459
-            $limit_q = " LIMIT $limit ";
1460
-        } else {
1461
-            $limit_q = '';
1462
-        }
1463
-        $not_featured = '';
1464
-        $sub_dir = '';
1465
-        if (!$add_featured)
1466
-            $not_featured = " AND is_featured = 0 ";
1467
-
1468
-        $arrImages = $wpdb->get_results(
1469
-            $wpdb->prepare(
1470
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1471
-                array('%image%', $post_id)
1472
-            )
1473
-        );
1474
-
1475
-        $counter = 0;
1476
-        $return_arr = array();
1477
-
1478
-        if (!empty($arrImages)) {
1479
-            foreach ($arrImages as $attechment) {
1480
-
1481
-                $img_arr = array();
1482
-                $img_arr['id'] = $attechment->ID;
1483
-                $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1484
-
1485
-                $file_info = pathinfo($attechment->file);
1486
-
1487
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1488
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1489
-
1490
-                $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1491
-                $uploads_baseurl = $uploads['baseurl'];
1492
-                $uploads_path = $uploads['path'];
1493
-
1494
-                $file_name = $file_info['basename'];
1495
-
1496
-                $uploads_url = $uploads_baseurl . $sub_dir;
1497
-                /*
1442
+	/**
1443
+	 * Gets the post images.
1444
+	 *
1445
+	 * @since 1.0.0
1446
+	 * @package GeoDirectory
1447
+	 * @global object $wpdb WordPress Database object.
1448
+	 * @param int $post_id The post ID.
1449
+	 * @param string $img_size Optional. Thumbnail size.
1450
+	 * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1451
+	 * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1452
+	 * @param int|string $limit Optional. Number of images.
1453
+	 * @return array|bool Returns images as an array. Each item is an object.
1454
+	 */
1455
+	function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1456
+	{
1457
+		global $wpdb;
1458
+		if ($limit) {
1459
+			$limit_q = " LIMIT $limit ";
1460
+		} else {
1461
+			$limit_q = '';
1462
+		}
1463
+		$not_featured = '';
1464
+		$sub_dir = '';
1465
+		if (!$add_featured)
1466
+			$not_featured = " AND is_featured = 0 ";
1467
+
1468
+		$arrImages = $wpdb->get_results(
1469
+			$wpdb->prepare(
1470
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1471
+				array('%image%', $post_id)
1472
+			)
1473
+		);
1474
+
1475
+		$counter = 0;
1476
+		$return_arr = array();
1477
+
1478
+		if (!empty($arrImages)) {
1479
+			foreach ($arrImages as $attechment) {
1480
+
1481
+				$img_arr = array();
1482
+				$img_arr['id'] = $attechment->ID;
1483
+				$img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1484
+
1485
+				$file_info = pathinfo($attechment->file);
1486
+
1487
+				if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1488
+					$sub_dir = stripslashes_deep($file_info['dirname']);
1489
+
1490
+				$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1491
+				$uploads_baseurl = $uploads['baseurl'];
1492
+				$uploads_path = $uploads['path'];
1493
+
1494
+				$file_name = $file_info['basename'];
1495
+
1496
+				$uploads_url = $uploads_baseurl . $sub_dir;
1497
+				/*
1498 1498
                 * Allows the filter of image src for such things as CDN change.
1499 1499
                 *
1500 1500
                 * @since 1.5.7
@@ -1503,533 +1503,533 @@  discard block
 block discarded – undo
1503 1503
                 * @param string $uploads_url The server upload directory url.
1504 1504
                 * @param string $uploads_baseurl The uploads dir base url.
1505 1505
                 */
1506
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1507
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1508
-                $width = 0;
1509
-                $height = 0;
1510
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1511
-                    $imagesize = getimagesize($img_arr['path']);
1512
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1513
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1514
-                }
1515
-                $img_arr['width'] = $width;
1516
-                $img_arr['height'] = $height;
1517
-
1518
-                $img_arr['file'] = $file_name; // add the title to the array
1519
-                $img_arr['title'] = $attechment->title; // add the title to the array
1520
-                $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1521
-                $img_arr['content'] = $attechment->content; // add the description to the array
1522
-                $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1523
-
1524
-                $return_arr[] = (object)$img_arr;
1525
-
1526
-                $counter++;
1527
-            }
1528
-            //return (object)$return_arr;
1529
-            /**
1530
-             * Filter the images array so things can be changed.
1531
-             *
1532
-             * @since 1.6.20
1533
-             * @param array $return_arr The array of image objects.
1534
-             */
1535
-            return apply_filters('geodir_get_images_arr',$return_arr);
1536
-        } else if ($no_images) {
1537
-            $default_img = '';
1538
-            $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1539
-            $post_type = get_post_type($post_id);
1540
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1541
-                $default_img = $default_catimg['src'];
1542
-            elseif ($no_images) {
1543
-                $default_img = get_option('geodir_listing_no_img');
1544
-            }
1545
-
1546
-            if (!empty($default_img)) {
1547
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1506
+				$img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1507
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1508
+				$width = 0;
1509
+				$height = 0;
1510
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1511
+					$imagesize = getimagesize($img_arr['path']);
1512
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1513
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1514
+				}
1515
+				$img_arr['width'] = $width;
1516
+				$img_arr['height'] = $height;
1517
+
1518
+				$img_arr['file'] = $file_name; // add the title to the array
1519
+				$img_arr['title'] = $attechment->title; // add the title to the array
1520
+				$img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1521
+				$img_arr['content'] = $attechment->content; // add the description to the array
1522
+				$img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1523
+
1524
+				$return_arr[] = (object)$img_arr;
1525
+
1526
+				$counter++;
1527
+			}
1528
+			//return (object)$return_arr;
1529
+			/**
1530
+			 * Filter the images array so things can be changed.
1531
+			 *
1532
+			 * @since 1.6.20
1533
+			 * @param array $return_arr The array of image objects.
1534
+			 */
1535
+			return apply_filters('geodir_get_images_arr',$return_arr);
1536
+		} else if ($no_images) {
1537
+			$default_img = '';
1538
+			$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1539
+			$post_type = get_post_type($post_id);
1540
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1541
+				$default_img = $default_catimg['src'];
1542
+			elseif ($no_images) {
1543
+				$default_img = get_option('geodir_listing_no_img');
1544
+			}
1545
+
1546
+			if (!empty($default_img)) {
1547
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1548 1548
                 
1549
-                $image_path = $default_img;
1550
-                if (!path_is_absolute($image_path)) {
1551
-                    $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1552
-                }
1553
-
1554
-                $file_info = pathinfo($default_img);
1555
-                $file_name = $file_info['basename'];
1556
-
1557
-                $width = '';
1558
-                $height = '';
1559
-                if (is_file($image_path) && file_exists($image_path)) {
1560
-                    $imagesize = getimagesize($image_path);
1561
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1562
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1563
-                }
1549
+				$image_path = $default_img;
1550
+				if (!path_is_absolute($image_path)) {
1551
+					$image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1552
+				}
1553
+
1554
+				$file_info = pathinfo($default_img);
1555
+				$file_name = $file_info['basename'];
1556
+
1557
+				$width = '';
1558
+				$height = '';
1559
+				if (is_file($image_path) && file_exists($image_path)) {
1560
+					$imagesize = getimagesize($image_path);
1561
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1562
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1563
+				}
1564 1564
                 
1565
-                $img_arr = array();
1566
-                $img_arr['src'] = $default_img;
1567
-                $img_arr['path'] = $image_path;
1568
-                $img_arr['width'] = $width;
1569
-                $img_arr['height'] = $height;
1570
-                $img_arr['file'] = $file_name; // add the title to the array
1571
-                $img_arr['title'] = $file_info['filename']; // add the title to the array
1572
-                $img_arr['content'] = $file_info['filename']; // add the description to the array
1573
-
1574
-                $return_arr[] = (object)$img_arr;
1575
-
1576
-                /**
1577
-                 * Filter the images array so things can be changed.
1578
-                 * 
1579
-                 * @since 1.6.20
1580
-                 * @param array $return_arr The array of image objects.
1581
-                 */
1582
-                return apply_filters('geodir_get_images_arr',$return_arr);
1583
-            } else
1584
-                return false;
1585
-        }
1586
-    }
1565
+				$img_arr = array();
1566
+				$img_arr['src'] = $default_img;
1567
+				$img_arr['path'] = $image_path;
1568
+				$img_arr['width'] = $width;
1569
+				$img_arr['height'] = $height;
1570
+				$img_arr['file'] = $file_name; // add the title to the array
1571
+				$img_arr['title'] = $file_info['filename']; // add the title to the array
1572
+				$img_arr['content'] = $file_info['filename']; // add the description to the array
1573
+
1574
+				$return_arr[] = (object)$img_arr;
1575
+
1576
+				/**
1577
+				 * Filter the images array so things can be changed.
1578
+				 * 
1579
+				 * @since 1.6.20
1580
+				 * @param array $return_arr The array of image objects.
1581
+				 */
1582
+				return apply_filters('geodir_get_images_arr',$return_arr);
1583
+			} else
1584
+				return false;
1585
+		}
1586
+	}
1587 1587
 }
1588 1588
 
1589 1589
 if (!function_exists('geodir_show_image')) {
1590
-    /**
1591
-     * Show image using image details.
1592
-     *
1593
-     * @since 1.0.0
1594
-     * @package GeoDirectory
1595
-     * @param array|object $request Image info either as an array or object.
1596
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1597
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1598
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1599
-     * @return bool|string Returns image html.
1600
-     */
1601
-    function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1602
-    {
1603
-        $image = new stdClass();
1604
-
1605
-        $html = '';
1606
-        if (!empty($request)) {
1607
-            if (!is_object($request)){
1608
-                $request = (object)$request;
1609
-            }
1610
-
1611
-            if (isset($request->src) && !isset($request->path)) {
1612
-                $request->path = $request->src;
1613
-            }
1614
-
1615
-            /*
1590
+	/**
1591
+	 * Show image using image details.
1592
+	 *
1593
+	 * @since 1.0.0
1594
+	 * @package GeoDirectory
1595
+	 * @param array|object $request Image info either as an array or object.
1596
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1597
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1598
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1599
+	 * @return bool|string Returns image html.
1600
+	 */
1601
+	function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1602
+	{
1603
+		$image = new stdClass();
1604
+
1605
+		$html = '';
1606
+		if (!empty($request)) {
1607
+			if (!is_object($request)){
1608
+				$request = (object)$request;
1609
+			}
1610
+
1611
+			if (isset($request->src) && !isset($request->path)) {
1612
+				$request->path = $request->src;
1613
+			}
1614
+
1615
+			/*
1616 1616
              * getimagesize() works faster from path than url so we try and get path if we can.
1617 1617
              */
1618
-            $upload_dir = wp_upload_dir();
1619
-            $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1620
-            $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1621
-            if (strpos($img_no_http, $upload_no_http) !== false) {
1622
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1623
-            }
1618
+			$upload_dir = wp_upload_dir();
1619
+			$img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1620
+			$upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1621
+			if (strpos($img_no_http, $upload_no_http) !== false) {
1622
+				$request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1623
+			}
1624 1624
             
1625
-            $width = 0;
1626
-            $height = 0;
1627
-            if (is_file($request->path) && file_exists($request->path)) {
1628
-                $imagesize = getimagesize($request->path);
1629
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1630
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1631
-            }
1632
-
1633
-            $image->src = $request->src;
1634
-            $image->width = $width;
1635
-            $image->height = $height;
1636
-
1637
-            $max_size = (object)geodir_get_imagesize($size);
1638
-
1639
-            if (!is_wp_error($max_size)) {
1640
-                if ($image->width) {
1641
-                    if ($image->height >= $image->width) {
1642
-                        $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1643
-                    } else if ($image->width < ($max_size->h)) {
1644
-                        $width_per = round((($image->width / $max_size->w) * 100), 2);
1645
-                    } else
1646
-                        $width_per = 100;
1647
-                }
1648
-
1649
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1650
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1651
-                } else {
1652
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1653
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1654
-                    }else{
1655
-                        //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1656
-                        //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1657
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1658
-
1659
-                    }
1660
-
1661
-                }
1662
-            }
1663
-        }
1664
-
1665
-        if (!empty($html) && $echo) {
1666
-            echo $html;
1667
-        } elseif (!empty($html)) {
1668
-            return $html;
1669
-        } else
1670
-            return false;
1671
-    }
1672
-}
1625
+			$width = 0;
1626
+			$height = 0;
1627
+			if (is_file($request->path) && file_exists($request->path)) {
1628
+				$imagesize = getimagesize($request->path);
1629
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1630
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1631
+			}
1673 1632
 
1674
-if (!function_exists('geodir_set_post_terms')) {
1675
-    /**
1676
-     * Set post Categories.
1677
-     *
1678
-     * @since 1.0.0
1679
-     * @package GeoDirectory
1680
-     * @global object $wpdb WordPress Database object.
1681
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1682
-     * @param int $post_id The post ID.
1683
-     * @param array $terms An array of term objects.
1684
-     * @param array $tt_ids An array of term taxonomy IDs.
1685
-     * @param string $taxonomy Taxonomy slug.
1686
-     */
1687
-    function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1688
-    {
1689
-        global $wpdb, $plugin_prefix;
1633
+			$image->src = $request->src;
1634
+			$image->width = $width;
1635
+			$image->height = $height;
1636
+
1637
+			$max_size = (object)geodir_get_imagesize($size);
1690 1638
 
1691
-        $post_type = get_post_type($post_id);
1639
+			if (!is_wp_error($max_size)) {
1640
+				if ($image->width) {
1641
+					if ($image->height >= $image->width) {
1642
+						$width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1643
+					} else if ($image->width < ($max_size->h)) {
1644
+						$width_per = round((($image->width / $max_size->w) * 100), 2);
1645
+					} else
1646
+						$width_per = 100;
1647
+				}
1692 1648
 
1693
-        $table = $plugin_prefix . $post_type . '_detail';
1649
+				if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1650
+					$html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1651
+				} else {
1652
+					if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1653
+						$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1654
+					}else{
1655
+						//$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1656
+						//$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1657
+						$html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1694 1658
 
1695
-        if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1659
+					}
1660
+
1661
+				}
1662
+			}
1663
+		}
1664
+
1665
+		if (!empty($html) && $echo) {
1666
+			echo $html;
1667
+		} elseif (!empty($html)) {
1668
+			return $html;
1669
+		} else
1670
+			return false;
1671
+	}
1672
+}
1696 1673
 
1697
-            if ($taxonomy == $post_type . '_tags') {
1698
-                if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1699
-                    geodir_save_post_meta($post_id, 'post_tags', $terms);
1700
-                }
1701
-            } elseif ($taxonomy == $post_type . 'category') {
1702
-                $srcharr = array('"', '\\');
1703
-                $replarr = array("&quot;", '');
1674
+if (!function_exists('geodir_set_post_terms')) {
1675
+	/**
1676
+	 * Set post Categories.
1677
+	 *
1678
+	 * @since 1.0.0
1679
+	 * @package GeoDirectory
1680
+	 * @global object $wpdb WordPress Database object.
1681
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1682
+	 * @param int $post_id The post ID.
1683
+	 * @param array $terms An array of term objects.
1684
+	 * @param array $tt_ids An array of term taxonomy IDs.
1685
+	 * @param string $taxonomy Taxonomy slug.
1686
+	 */
1687
+	function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1688
+	{
1689
+		global $wpdb, $plugin_prefix;
1690
+
1691
+		$post_type = get_post_type($post_id);
1692
+
1693
+		$table = $plugin_prefix . $post_type . '_detail';
1694
+
1695
+		if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1696
+
1697
+			if ($taxonomy == $post_type . '_tags') {
1698
+				if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1699
+					geodir_save_post_meta($post_id, 'post_tags', $terms);
1700
+				}
1701
+			} elseif ($taxonomy == $post_type . 'category') {
1702
+				$srcharr = array('"', '\\');
1703
+				$replarr = array("&quot;", '');
1704 1704
 
1705
-                $post_obj = get_post($post_id);
1705
+				$post_obj = get_post($post_id);
1706 1706
 
1707
-                $cat_ids = array('0');
1708
-                if (is_array($tt_ids))
1709
-                    $cat_ids = $tt_ids;
1707
+				$cat_ids = array('0');
1708
+				if (is_array($tt_ids))
1709
+					$cat_ids = $tt_ids;
1710 1710
 
1711 1711
 
1712
-                if (!empty($cat_ids)) {
1713
-                    $cat_ids_array = $cat_ids;
1714
-                    $cat_ids_length = count($cat_ids_array);
1715
-                    $cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1716
-                    $format = implode(',', $cat_ids_format);
1712
+				if (!empty($cat_ids)) {
1713
+					$cat_ids_array = $cat_ids;
1714
+					$cat_ids_length = count($cat_ids_array);
1715
+					$cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1716
+					$format = implode(',', $cat_ids_format);
1717 1717
 
1718
-                    $cat_ids_array_del = $cat_ids_array;
1719
-                    $cat_ids_array_del[] = $post_id;
1718
+					$cat_ids_array_del = $cat_ids_array;
1719
+					$cat_ids_array_del[] = $post_id;
1720 1720
 
1721
-                    $wpdb->get_var(
1722
-                        $wpdb->prepare(
1723
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1724
-                            $cat_ids_array_del
1725
-                        )
1726
-                    );
1721
+					$wpdb->get_var(
1722
+						$wpdb->prepare(
1723
+							"DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1724
+							$cat_ids_array_del
1725
+						)
1726
+					);
1727 1727
 
1728 1728
 
1729
-                    $post_term = $wpdb->get_col(
1730
-                        $wpdb->prepare(
1731
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1732
-                            $cat_ids_array
1733
-                        )
1734
-                    );
1729
+					$post_term = $wpdb->get_col(
1730
+						$wpdb->prepare(
1731
+							"SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1732
+							$cat_ids_array
1733
+						)
1734
+					);
1735 1735
 
1736
-                }
1736
+				}
1737 1737
 
1738
-                $post_marker_json = '';
1738
+				$post_marker_json = '';
1739 1739
 
1740
-                if (!empty($post_term)):
1740
+				if (!empty($post_term)):
1741 1741
 
1742
-                    foreach ($post_term as $cat_id):
1742
+					foreach ($post_term as $cat_id):
1743 1743
 
1744
-                        $term_icon_url = geodir_get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1745
-                        $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1744
+						$term_icon_url = geodir_get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1745
+						$term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1746 1746
 
1747
-                        $post_title = $post_obj->title;
1748
-                        $title = str_replace($srcharr, $replarr, $post_title);
1747
+						$post_title = $post_obj->title;
1748
+						$title = str_replace($srcharr, $replarr, $post_title);
1749 1749
 
1750
-                        $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1751
-                        $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1750
+						$lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1751
+						$lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1752 1752
 
1753
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1754
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1753
+						$timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1754
+						$timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1755 1755
 
1756
-                        $json = '{';
1757
-                        $json .= '"id":"' . $post_id . '",';
1758
-                        $json .= '"lat_pos": "' . $lat . '",';
1759
-                        $json .= '"long_pos": "' . $lng . '",';
1760
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1761
-                        $json .= '"icon":"' . $term_icon . '",';
1762
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1763
-                        $json .= '}';
1756
+						$json = '{';
1757
+						$json .= '"id":"' . $post_id . '",';
1758
+						$json .= '"lat_pos": "' . $lat . '",';
1759
+						$json .= '"long_pos": "' . $lng . '",';
1760
+						$json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1761
+						$json .= '"icon":"' . $term_icon . '",';
1762
+						$json .= '"group":"catgroup' . $cat_id . '"';
1763
+						$json .= '}';
1764 1764
 
1765 1765
 
1766
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1767
-                            $post_marker_json = $json;
1766
+						if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1767
+							$post_marker_json = $json;
1768 1768
 
1769 1769
 
1770
-                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1770
+						if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1771 1771
 
1772
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1772
+							$json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1773 1773
 										post_title = %s,
1774 1774
 										json = %s
1775 1775
 										WHERE post_id = %d AND cat_id = %d ",
1776
-                                array($post_title, $json, $post_id, $cat_id));
1776
+								array($post_title, $json, $post_id, $cat_id));
1777 1777
 
1778
-                        } else {
1778
+						} else {
1779 1779
 
1780
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1780
+							$json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1781 1781
 										post_id = %d,
1782 1782
 										post_title = %s,
1783 1783
 										cat_id = %d,
1784 1784
 										json = %s",
1785
-                                array($post_id, $post_title, $cat_id, $json));
1785
+								array($post_id, $post_title, $cat_id, $json));
1786 1786
 
1787
-                        }
1787
+						}
1788 1788
 
1789
-                        $wpdb->query($json_query);
1789
+						$wpdb->query($json_query);
1790 1790
 
1791
-                    endforeach;
1791
+					endforeach;
1792 1792
 
1793
-                endif;
1793
+				endif;
1794 1794
 
1795
-                if (!empty($post_term) && is_array($post_term)) {
1796
-                    $categories = implode(',', $post_term);
1795
+				if (!empty($post_term) && is_array($post_term)) {
1796
+					$categories = implode(',', $post_term);
1797 1797
 
1798
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1798
+					if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1799 1799
 
1800
-                    if (empty($post_marker_json))
1801
-                        $post_marker_json = isset($json) ? $json : '';
1800
+					if (empty($post_marker_json))
1801
+						$post_marker_json = isset($json) ? $json : '';
1802 1802
 
1803
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1803
+					if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1804 1804
 
1805
-                        $wpdb->query(
1806
-                            $wpdb->prepare(
1807
-                                "UPDATE " . $table . " SET
1805
+						$wpdb->query(
1806
+							$wpdb->prepare(
1807
+								"UPDATE " . $table . " SET
1808 1808
 								" . $taxonomy . " = %s,
1809 1809
 								marker_json = %s
1810 1810
 								where post_id = %d",
1811
-                                array($categories, $post_marker_json, $post_id)
1812
-                            )
1813
-                        );
1811
+								array($categories, $post_marker_json, $post_id)
1812
+							)
1813
+						);
1814 1814
 
1815
-                        if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1815
+						if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1816 1816
 
1817
-                            $categories = trim($categories, ',');
1817
+							$categories = trim($categories, ',');
1818 1818
 
1819
-                            if ($categories) {
1819
+							if ($categories) {
1820 1820
 
1821
-                                $categories = explode(',', $categories);
1821
+								$categories = explode(',', $categories);
1822 1822
 
1823
-                                $default_category = geodir_get_post_meta($post_id, 'default_category', true);
1823
+								$default_category = geodir_get_post_meta($post_id, 'default_category', true);
1824 1824
 
1825
-                                if (!in_array($default_category, $categories)) {
1825
+								if (!in_array($default_category, $categories)) {
1826 1826
 
1827
-                                    $wpdb->query(
1828
-                                        $wpdb->prepare(
1829
-                                            "UPDATE " . $table . " SET
1827
+									$wpdb->query(
1828
+										$wpdb->prepare(
1829
+											"UPDATE " . $table . " SET
1830 1830
 											default_category = %s
1831 1831
 											where post_id = %d",
1832
-                                            array($categories[0], $post_id)
1833
-                                        )
1834
-                                    );
1832
+											array($categories[0], $post_id)
1833
+										)
1834
+									);
1835 1835
 
1836
-                                    $default_category = $categories[0];
1836
+									$default_category = $categories[0];
1837 1837
 
1838
-                                }
1838
+								}
1839 1839
 
1840
-                                if ($default_category == '')
1841
-                                    $default_category = $categories[0];
1840
+								if ($default_category == '')
1841
+									$default_category = $categories[0];
1842 1842
 
1843
-                                geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1843
+								geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1844 1844
 
1845
-                            }
1845
+							}
1846 1846
 
1847
-                        }
1847
+						}
1848 1848
 
1849 1849
 
1850
-                    } else {
1850
+					} else {
1851 1851
 
1852
-                        $wpdb->query(
1853
-                            $wpdb->prepare(
1854
-                                "INSERT INTO " . $table . " SET
1852
+						$wpdb->query(
1853
+							$wpdb->prepare(
1854
+								"INSERT INTO " . $table . " SET
1855 1855
 								post_id = %d,
1856 1856
 								" . $taxonomy . " = %s,
1857 1857
 								marker_json = %s ",
1858 1858
 
1859
-                                array($post_id, $categories, $post_marker_json)
1860
-                            )
1861
-                        );
1862
-                    }
1863
-                }
1864
-            }
1865
-        }
1866
-    }
1859
+								array($post_id, $categories, $post_marker_json)
1860
+							)
1861
+						);
1862
+					}
1863
+				}
1864
+			}
1865
+		}
1866
+	}
1867 1867
 }
1868 1868
 
1869 1869
 if (!function_exists('geodir_get_infowindow_html')) {
1870
-    /**
1871
-     * Set post Map Marker info html.
1872
-     *
1873
-     * @since 1.0.0
1874
-     * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1875
-     * @since 1.6.16 Changes for disable review stars for certain post type.
1876
-     * @since 1.6.18 Fix: Map marker not showing custom fields in bubble info.
1877
-     * @package GeoDirectory
1878
-     * @global array $geodir_addon_list List of active GeoDirectory extensions.
1879
-     * @global object $gd_session GeoDirectory Session object.
1880
-     * @param object $postinfo_obj The post details object.
1881
-     * @param string $post_preview Is this a post preview?.
1882
-     * @global object $post WordPress Post object.
1883
-     * @return mixed|string|void
1884
-     */
1885
-    function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') {
1886
-        global $preview, $post, $gd_session;
1887
-        $srcharr = array("'", "/", "-", '"', '\\');
1888
-        $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1889
-
1890
-        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1891
-            $ID = '';
1892
-            $plink = '';
1893
-
1894
-            if (isset($postinfo_obj->pid)) {
1895
-                $ID = $postinfo_obj->pid;
1896
-                $plink = get_permalink($ID);
1897
-            }
1898
-
1899
-            $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1900
-            $lat = $postinfo_obj->post_latitude;
1901
-            $lng = $postinfo_obj->post_longitude;
1902
-        } else {
1903
-            $ID = $postinfo_obj->post_id;
1904
-            $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1905
-            $title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08
1906
-            $plink = get_permalink($ID);
1907
-            $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1908
-            $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1909
-        }
1870
+	/**
1871
+	 * Set post Map Marker info html.
1872
+	 *
1873
+	 * @since 1.0.0
1874
+	 * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1875
+	 * @since 1.6.16 Changes for disable review stars for certain post type.
1876
+	 * @since 1.6.18 Fix: Map marker not showing custom fields in bubble info.
1877
+	 * @package GeoDirectory
1878
+	 * @global array $geodir_addon_list List of active GeoDirectory extensions.
1879
+	 * @global object $gd_session GeoDirectory Session object.
1880
+	 * @param object $postinfo_obj The post details object.
1881
+	 * @param string $post_preview Is this a post preview?.
1882
+	 * @global object $post WordPress Post object.
1883
+	 * @return mixed|string|void
1884
+	 */
1885
+	function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') {
1886
+		global $preview, $post, $gd_session;
1887
+		$srcharr = array("'", "/", "-", '"', '\\');
1888
+		$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1889
+
1890
+		if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1891
+			$ID = '';
1892
+			$plink = '';
1893
+
1894
+			if (isset($postinfo_obj->pid)) {
1895
+				$ID = $postinfo_obj->pid;
1896
+				$plink = get_permalink($ID);
1897
+			}
1898
+
1899
+			$title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1900
+			$lat = $postinfo_obj->post_latitude;
1901
+			$lng = $postinfo_obj->post_longitude;
1902
+		} else {
1903
+			$ID = $postinfo_obj->post_id;
1904
+			$title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1905
+			$title = wp_specialchars_decode($title); // Fixed #post-320722 on 2016-12-08
1906
+			$plink = get_permalink($ID);
1907
+			$lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1908
+			$lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1909
+		}
1910 1910
         
1911
-        // Some theme overwrites global gd listing $post
1912
-        if (!empty($ID) && (!empty($post->ID) && $post->ID != $ID) || empty($post)) {
1913
-            $post = geodir_get_post_info($ID);
1914
-        }
1911
+		// Some theme overwrites global gd listing $post
1912
+		if (!empty($ID) && (!empty($post->ID) && $post->ID != $ID) || empty($post)) {
1913
+			$post = geodir_get_post_info($ID);
1914
+		}
1915 1915
         
1916
-        $post_type = $ID ? get_post_type($ID) : '';
1917
-
1918
-        // filter field as per price package
1919
-        global $geodir_addon_list;
1920
-        if ($post_type && defined('GEODIRPAYMENT_VERSION')) {
1921
-            $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1922
-            $field_name = 'geodir_contact';
1923
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1924
-                $contact = '';
1925
-            }
1926
-
1927
-            $field_name = 'geodir_timing';
1928
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1929
-                $timing = '';
1930
-            }
1931
-        }
1932
-
1933
-        if ($lat && $lng) {
1934
-            ob_start(); ?>
1916
+		$post_type = $ID ? get_post_type($ID) : '';
1917
+
1918
+		// filter field as per price package
1919
+		global $geodir_addon_list;
1920
+		if ($post_type && defined('GEODIRPAYMENT_VERSION')) {
1921
+			$package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1922
+			$field_name = 'geodir_contact';
1923
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1924
+				$contact = '';
1925
+			}
1926
+
1927
+			$field_name = 'geodir_timing';
1928
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1929
+				$timing = '';
1930
+			}
1931
+		}
1932
+
1933
+		if ($lat && $lng) {
1934
+			ob_start(); ?>
1935 1935
             <div class="gd-bubble" style="">
1936 1936
                 <div class="gd-bubble-inside">
1937 1937
                     <?php
1938
-                    $comment_count = '';
1939
-                    $rating_star = '';
1940
-                    if ($ID != '' && $post_type != '' && !geodir_cpt_has_rating_disabled($post_type)) {
1941
-                        $rating_star = '';
1942
-                        $comment_count = geodir_get_review_count_total($ID);
1943
-
1944
-                        if (!$preview) {
1945
-                            $post_avgratings = geodir_get_post_rating($ID);
1946
-
1947
-                            $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1948
-
1949
-                            /**
1950
-                             * Filter to change rating stars
1951
-                             *
1952
-                             * You can use this filter to change Rating stars.
1953
-                             *
1954
-                             * @since 1.0.0
1955
-                             * @package GeoDirectory
1956
-                             * @param string $rating_star Rating stars.
1957
-                             * @param float $post_avgratings Average ratings of the post.
1958
-                             * @param int $ID The post ID.
1959
-                             */
1960
-                            $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1961
-                        }
1962
-                    }
1963
-                    ?>
1938
+					$comment_count = '';
1939
+					$rating_star = '';
1940
+					if ($ID != '' && $post_type != '' && !geodir_cpt_has_rating_disabled($post_type)) {
1941
+						$rating_star = '';
1942
+						$comment_count = geodir_get_review_count_total($ID);
1943
+
1944
+						if (!$preview) {
1945
+							$post_avgratings = geodir_get_post_rating($ID);
1946
+
1947
+							$rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1948
+
1949
+							/**
1950
+							 * Filter to change rating stars
1951
+							 *
1952
+							 * You can use this filter to change Rating stars.
1953
+							 *
1954
+							 * @since 1.0.0
1955
+							 * @package GeoDirectory
1956
+							 * @param string $rating_star Rating stars.
1957
+							 * @param float $post_avgratings Average ratings of the post.
1958
+							 * @param int $ID The post ID.
1959
+							 */
1960
+							$rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1961
+						}
1962
+					}
1963
+					?>
1964 1964
                     <div class="geodir-bubble_desc">
1965 1965
                         <h4>
1966 1966
                             <a href="<?php if ($plink != '') {
1967
-                                echo $plink;
1968
-                            } else {
1969
-                                echo 'javascript:void(0);';
1970
-                            } ?>"><?php echo $title; ?></a>
1967
+								echo $plink;
1968
+							} else {
1969
+								echo 'javascript:void(0);';
1970
+							} ?>"><?php echo $title; ?></a>
1971 1971
                         </h4>
1972 1972
                         <?php
1973
-                        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1974
-                            $post_images = array();
1975
-                            if (!empty($postinfo_obj->post_images)) {
1976
-                                $post_images = explode(",", $postinfo_obj->post_images);
1977
-                            }
1978
-
1979
-                            if (!empty($post_images)) {
1980
-                                ?>
1973
+						if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1974
+							$post_images = array();
1975
+							if (!empty($postinfo_obj->post_images)) {
1976
+								$post_images = explode(",", $postinfo_obj->post_images);
1977
+							}
1978
+
1979
+							if (!empty($post_images)) {
1980
+								?>
1981 1981
                                 <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
1982
-                                        echo $plink;
1983
-                                    } else {
1984
-                                        echo 'javascript:void(0);';
1985
-                                    } ?>"><img alt="bubble image" style="max-height:50px;"
1982
+										echo $plink;
1983
+									} else {
1984
+										echo 'javascript:void(0);';
1985
+									} ?>"><img alt="bubble image" style="max-height:50px;"
1986 1986
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1987 1987
                             <?php
1988
-                            }else{
1989
-                                echo '<div class="geodir-bubble_image"></div>';
1990
-                            }
1991
-                        } else {
1992
-                            if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1993
-                                ?>
1988
+							}else{
1989
+								echo '<div class="geodir-bubble_image"></div>';
1990
+							}
1991
+						} else {
1992
+							if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1993
+								?>
1994 1994
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1995 1995
                             <?php
1996
-                            }else{
1997
-                                echo '<div class="geodir-bubble_image"></div>';
1998
-                            }
1999
-                        }
2000
-                        ?>
1996
+							}else{
1997
+								echo '<div class="geodir-bubble_image"></div>';
1998
+							}
1999
+						}
2000
+						?>
2001 2001
                         <div class="geodir-bubble-meta-side">
2002 2002
                             <?php
2003
-                            /**
2004
-                             * Fires before the meta info in the map info window.
2005
-                             *
2006
-                             * This can be used to add more info to the map info window before the normal meta info.
2007
-                             *
2008
-                             * @since 1.5.4
2009
-                             * @param int $ID The post id.
2010
-                             * @param object $postinfo_obj The posts info as an object.
2011
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
2012
-                             */
2013
-                            do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
2014
-
2015
-                            echo geodir_show_listing_info('mapbubble');
2016
-
2017
-                            /**
2018
-                             * Fires after the meta info in the map info window.
2019
-                             *
2020
-                             * This can be used to add more info to the map info window after the normal meta info.
2021
-                             *
2022
-                             * @since 1.4.2
2023
-                             * @param object $postinfo_obj The posts info as an object.
2024
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
2025
-                             */
2026
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
2027
-                            ?>
2003
+							/**
2004
+							 * Fires before the meta info in the map info window.
2005
+							 *
2006
+							 * This can be used to add more info to the map info window before the normal meta info.
2007
+							 *
2008
+							 * @since 1.5.4
2009
+							 * @param int $ID The post id.
2010
+							 * @param object $postinfo_obj The posts info as an object.
2011
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
2012
+							 */
2013
+							do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
2014
+
2015
+							echo geodir_show_listing_info('mapbubble');
2016
+
2017
+							/**
2018
+							 * Fires after the meta info in the map info window.
2019
+							 *
2020
+							 * This can be used to add more info to the map info window after the normal meta info.
2021
+							 *
2022
+							 * @since 1.4.2
2023
+							 * @param object $postinfo_obj The posts info as an object.
2024
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
2025
+							 */
2026
+							do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
2027
+							?>
2028 2028
                         </div>
2029 2029
                         <?php
2030
-                        if ($ID) {
2031
-                            $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
2032
-                            ?>
2030
+						if ($ID) {
2031
+							$post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
2032
+							?>
2033 2033
                             <div class="geodir-bubble-meta-fade"></div>
2034 2034
                             <div class="geodir-bubble-meta-bottom">
2035 2035
                                 <?php if ($rating_star != '') { ?>
@@ -2045,69 +2045,69 @@  discard block
 block discarded – undo
2045 2045
                 </div>
2046 2046
             </div>
2047 2047
             <?php
2048
-            $html = ob_get_clean();
2049
-            /**
2050
-             * Filter to change infowindow html
2051
-             *
2052
-             * You can use this filter to change infowindow html.
2053
-             *
2054
-             * @since 1.0.0
2055
-             * @package GeoDirectory
2056
-             * @param string $html Infowindow html.
2057
-             * @param object $postinfo_obj The Post object.
2058
-             * @param bool|string $post_preview Is this a post preview?
2059
-             */
2060
-            $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2061
-            return $html;
2062
-        }
2063
-    }
2048
+			$html = ob_get_clean();
2049
+			/**
2050
+			 * Filter to change infowindow html
2051
+			 *
2052
+			 * You can use this filter to change infowindow html.
2053
+			 *
2054
+			 * @since 1.0.0
2055
+			 * @package GeoDirectory
2056
+			 * @param string $html Infowindow html.
2057
+			 * @param object $postinfo_obj The Post object.
2058
+			 * @param bool|string $post_preview Is this a post preview?
2059
+			 */
2060
+			$html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2061
+			return $html;
2062
+		}
2063
+	}
2064 2064
 }
2065 2065
 
2066 2066
 
2067 2067
 if (!function_exists('geodir_new_post_default_status')) {
2068
-    /**
2069
-     * Default post status for new posts.
2070
-     *
2071
-     * @since 1.0.0
2072
-     * @package GeoDirectory
2073
-     * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2074
-     */
2075
-    function geodir_new_post_default_status()
2076
-    {
2077
-        if (get_option('geodir_new_post_default_status'))
2078
-            return get_option('geodir_new_post_default_status');
2079
-        else
2080
-            return 'publish';
2081
-
2082
-    }
2068
+	/**
2069
+	 * Default post status for new posts.
2070
+	 *
2071
+	 * @since 1.0.0
2072
+	 * @package GeoDirectory
2073
+	 * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2074
+	 */
2075
+	function geodir_new_post_default_status()
2076
+	{
2077
+		if (get_option('geodir_new_post_default_status'))
2078
+			return get_option('geodir_new_post_default_status');
2079
+		else
2080
+			return 'publish';
2081
+
2082
+	}
2083 2083
 }
2084 2084
 
2085 2085
 if (!function_exists('geodir_change_post_status')) {
2086
-    /**
2087
-     * Change post status of a post.
2088
-     *
2089
-     * @global object $wpdb WordPress Database object.
2090
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2091
-     * @param int|string $post_id The post ID.
2092
-     * @param string $status New post status. Ex: draft, publish etc.
2093
-     */
2094
-    function geodir_change_post_status($post_id = '', $status = '')
2095
-    {
2096
-        global $wpdb, $plugin_prefix;
2097
-
2098
-        $post_type = get_post_type($post_id);
2099
-
2100
-        $table = $plugin_prefix . $post_type . '_detail';
2101
-
2102
-        $wpdb->query(
2103
-            $wpdb->prepare(
2104
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2105
-                array($status, $post_id)
2106
-            )
2107
-        );
2108
-
2109
-
2110
-    }
2086
+	/**
2087
+	 * Change post status of a post.
2088
+	 *
2089
+	 * @global object $wpdb WordPress Database object.
2090
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2091
+	 * @param int|string $post_id The post ID.
2092
+	 * @param string $status New post status. Ex: draft, publish etc.
2093
+	 */
2094
+	function geodir_change_post_status($post_id = '', $status = '')
2095
+	{
2096
+		global $wpdb, $plugin_prefix;
2097
+
2098
+		$post_type = get_post_type($post_id);
2099
+
2100
+		$table = $plugin_prefix . $post_type . '_detail';
2101
+
2102
+		$wpdb->query(
2103
+			$wpdb->prepare(
2104
+				"UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2105
+				array($status, $post_id)
2106
+			)
2107
+		);
2108
+
2109
+
2110
+	}
2111 2111
 }
2112 2112
 
2113 2113
 /**
@@ -2121,13 +2121,13 @@  discard block
 block discarded – undo
2121 2121
  */
2122 2122
 function geodir_set_post_status($pid, $status)
2123 2123
 {
2124
-    if ($pid) {
2125
-        global $wpdb;
2126
-        $my_post = array();
2127
-        $my_post['post_status'] = $status;
2128
-        $my_post['ID'] = $pid;
2129
-        $last_postid = wp_update_post($my_post);
2130
-    }
2124
+	if ($pid) {
2125
+		global $wpdb;
2126
+		$my_post = array();
2127
+		$my_post['post_status'] = $status;
2128
+		$my_post['ID'] = $pid;
2129
+		$last_postid = wp_update_post($my_post);
2130
+	}
2131 2131
 }
2132 2132
 
2133 2133
 
@@ -2143,384 +2143,384 @@  discard block
 block discarded – undo
2143 2143
  */
2144 2144
 function geodir_update_poststatus($new_status, $old_status, $post)
2145 2145
 {
2146
-    global $wpdb;
2146
+	global $wpdb;
2147 2147
 
2148
-    $geodir_posttypes = geodir_get_posttypes();
2148
+	$geodir_posttypes = geodir_get_posttypes();
2149 2149
 
2150
-    if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2150
+	if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2151 2151
 
2152
-        geodir_change_post_status($post->ID, $new_status);
2153
-    }
2152
+		geodir_change_post_status($post->ID, $new_status);
2153
+	}
2154 2154
 }
2155 2155
 
2156 2156
 
2157 2157
 if (!function_exists('geodir_update_listing_info')) {
2158
-    /**
2159
-     * Update post info.
2160
-     *
2161
-     * @since 1.0.0
2162
-     * @package GeoDirectory
2163
-     * @global object $wpdb WordPress Database object.
2164
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2165
-     * @param int $updatingpost The updating post ID.
2166
-     * @param int $temppost The temporary post ID.
2167
-     * @todo fix post_id variable
2168
-     */
2169
-    function geodir_update_listing_info($updatingpost, $temppost)
2170
-    {
2171
-
2172
-        global $wpdb, $plugin_prefix;
2173
-
2174
-        $post_type = get_post_type($post_id);
2175
-
2176
-        $table = $plugin_prefix . $post_type . '_detail';
2177
-
2178
-        $wpdb->query(
2179
-            $wpdb->prepare(
2180
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2181
-                array($updatingpost, $temppost)
2182
-            )
2183
-        );
2184
-
2185
-        $wpdb->query(
2186
-            $wpdb->prepare(
2187
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2188
-                array($updatingpost, $temppost)
2189
-            )
2190
-        );
2191
-
2192
-        /* Update Attachments*/
2193
-
2194
-        $wpdb->query(
2195
-            $wpdb->prepare(
2196
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2197
-                array($updatingpost, $temppost)
2198
-            )
2199
-        );
2200
-
2201
-    }
2158
+	/**
2159
+	 * Update post info.
2160
+	 *
2161
+	 * @since 1.0.0
2162
+	 * @package GeoDirectory
2163
+	 * @global object $wpdb WordPress Database object.
2164
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2165
+	 * @param int $updatingpost The updating post ID.
2166
+	 * @param int $temppost The temporary post ID.
2167
+	 * @todo fix post_id variable
2168
+	 */
2169
+	function geodir_update_listing_info($updatingpost, $temppost)
2170
+	{
2171
+
2172
+		global $wpdb, $plugin_prefix;
2173
+
2174
+		$post_type = get_post_type($post_id);
2175
+
2176
+		$table = $plugin_prefix . $post_type . '_detail';
2177
+
2178
+		$wpdb->query(
2179
+			$wpdb->prepare(
2180
+				"UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2181
+				array($updatingpost, $temppost)
2182
+			)
2183
+		);
2184
+
2185
+		$wpdb->query(
2186
+			$wpdb->prepare(
2187
+				"UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2188
+				array($updatingpost, $temppost)
2189
+			)
2190
+		);
2191
+
2192
+		/* Update Attachments*/
2193
+
2194
+		$wpdb->query(
2195
+			$wpdb->prepare(
2196
+				"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2197
+				array($updatingpost, $temppost)
2198
+			)
2199
+		);
2200
+
2201
+	}
2202 2202
 }
2203 2203
 
2204 2204
 
2205 2205
 if (!function_exists('geodir_delete_listing_info')) {
2206
-    /**
2207
-     * Delete Listing info from details table for the given post id.
2208
-     *
2209
-     * @since 1.0.0
2210
-     * @package GeoDirectory
2211
-     * @global object $wpdb WordPress Database object.
2212
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2213
-     * @param int $deleted_postid The post ID.
2214
-     * @param bool $force Optional. Do you want to force delete it? Default: false.
2215
-     * @return bool|void
2216
-     */
2217
-    function geodir_delete_listing_info($deleted_postid, $force = false)
2218
-    {
2219
-        global $wpdb, $plugin_prefix;
2220
-
2221
-        // check for multisite deletions
2222
-        if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2223
-        } else {
2224
-            return;
2225
-        }
2226
-
2227
-        $post_type = get_post_type($deleted_postid);
2228
-
2229
-        $all_postypes = geodir_get_posttypes();
2230
-
2231
-        if (!in_array($post_type, $all_postypes))
2232
-            return false;
2233
-
2234
-        $table = $plugin_prefix . $post_type . '_detail';
2235
-
2236
-        /* Delete custom post meta*/
2237
-        $wpdb->query(
2238
-            $wpdb->prepare(
2239
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2240
-                array($deleted_postid)
2241
-            )
2242
-        );
2243
-
2244
-        /* Delete post map icons*/
2245
-
2246
-        $wpdb->query(
2247
-            $wpdb->prepare(
2248
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2249
-                array($deleted_postid)
2250
-            )
2251
-        );
2252
-
2253
-        /* Delete Attachments*/
2254
-        $postcurr_images = geodir_get_images($deleted_postid);
2255
-
2256
-        $wpdb->query(
2257
-            $wpdb->prepare(
2258
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2259
-                array($deleted_postid)
2260
-            )
2261
-        );
2262
-        geodir_remove_attachments($postcurr_images);
2263
-
2264
-    }
2206
+	/**
2207
+	 * Delete Listing info from details table for the given post id.
2208
+	 *
2209
+	 * @since 1.0.0
2210
+	 * @package GeoDirectory
2211
+	 * @global object $wpdb WordPress Database object.
2212
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2213
+	 * @param int $deleted_postid The post ID.
2214
+	 * @param bool $force Optional. Do you want to force delete it? Default: false.
2215
+	 * @return bool|void
2216
+	 */
2217
+	function geodir_delete_listing_info($deleted_postid, $force = false)
2218
+	{
2219
+		global $wpdb, $plugin_prefix;
2220
+
2221
+		// check for multisite deletions
2222
+		if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2223
+		} else {
2224
+			return;
2225
+		}
2226
+
2227
+		$post_type = get_post_type($deleted_postid);
2228
+
2229
+		$all_postypes = geodir_get_posttypes();
2230
+
2231
+		if (!in_array($post_type, $all_postypes))
2232
+			return false;
2233
+
2234
+		$table = $plugin_prefix . $post_type . '_detail';
2235
+
2236
+		/* Delete custom post meta*/
2237
+		$wpdb->query(
2238
+			$wpdb->prepare(
2239
+				"DELETE FROM " . $table . " WHERE `post_id` = %d",
2240
+				array($deleted_postid)
2241
+			)
2242
+		);
2243
+
2244
+		/* Delete post map icons*/
2245
+
2246
+		$wpdb->query(
2247
+			$wpdb->prepare(
2248
+				"DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2249
+				array($deleted_postid)
2250
+			)
2251
+		);
2252
+
2253
+		/* Delete Attachments*/
2254
+		$postcurr_images = geodir_get_images($deleted_postid);
2255
+
2256
+		$wpdb->query(
2257
+			$wpdb->prepare(
2258
+				"DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2259
+				array($deleted_postid)
2260
+			)
2261
+		);
2262
+		geodir_remove_attachments($postcurr_images);
2263
+
2264
+	}
2265 2265
 }
2266 2266
 
2267 2267
 
2268 2268
 if (!function_exists('geodir_add_to_favorite')) {
2269
-    /**
2270
-     * This function would add listing to favorite listing.
2271
-     *
2272
-     * @since 1.0.0
2273
-     * @package GeoDirectory
2274
-     * @global object $current_user Current user object.
2275
-     * @param int $post_id The post ID.
2276
-     */
2277
-    function geodir_add_to_favorite($post_id)
2278
-    {
2279
-
2280
-        global $current_user;
2281
-
2282
-        /**
2283
-         * Filter to modify "Unfavorite" text
2284
-         *
2285
-         * You can use this filter to rename "Unfavorite" text to something else.
2286
-         *
2287
-         * @since 1.0.0
2288
-         * @package GeoDirectory
2289
-         */
2290
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2291
-
2292
-        /**
2293
-         * Filter to modify "Remove from Favorites" text
2294
-         *
2295
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2296
-         *
2297
-         * @since 1.0.0
2298
-         * @package GeoDirectory
2299
-         */
2300
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2301
-
2302
-        /**
2303
-         * Filter to modify "fa fa-heart" icon
2304
-         *
2305
-         * You can use this filter to change "fa fa-heart" icon to something else.
2306
-         *
2307
-         * @since 1.0.0
2308
-         * @package GeoDirectory
2309
-         */
2310
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2311
-
2312
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2313
-        $user_meta_data = !empty($user_meta_data) && is_array($user_meta_data) ? $user_meta_data : array();
2314
-
2315
-        if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2316
-            $user_meta_data[] = $post_id;
2317
-        }
2318
-
2319
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2269
+	/**
2270
+	 * This function would add listing to favorite listing.
2271
+	 *
2272
+	 * @since 1.0.0
2273
+	 * @package GeoDirectory
2274
+	 * @global object $current_user Current user object.
2275
+	 * @param int $post_id The post ID.
2276
+	 */
2277
+	function geodir_add_to_favorite($post_id)
2278
+	{
2279
+
2280
+		global $current_user;
2281
+
2282
+		/**
2283
+		 * Filter to modify "Unfavorite" text
2284
+		 *
2285
+		 * You can use this filter to rename "Unfavorite" text to something else.
2286
+		 *
2287
+		 * @since 1.0.0
2288
+		 * @package GeoDirectory
2289
+		 */
2290
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2291
+
2292
+		/**
2293
+		 * Filter to modify "Remove from Favorites" text
2294
+		 *
2295
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2296
+		 *
2297
+		 * @since 1.0.0
2298
+		 * @package GeoDirectory
2299
+		 */
2300
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2301
+
2302
+		/**
2303
+		 * Filter to modify "fa fa-heart" icon
2304
+		 *
2305
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2306
+		 *
2307
+		 * @since 1.0.0
2308
+		 * @package GeoDirectory
2309
+		 */
2310
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2311
+
2312
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2313
+		$user_meta_data = !empty($user_meta_data) && is_array($user_meta_data) ? $user_meta_data : array();
2314
+
2315
+		if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2316
+			$user_meta_data[] = $post_id;
2317
+		}
2318
+
2319
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2320
+
2321
+		/**
2322
+		 * Called before adding the post from favourites.
2323
+		 *
2324
+		 * @since 1.0.0
2325
+		 * @package GeoDirectory
2326
+		 * @param int $post_id The post ID.
2327
+		 */
2328
+		do_action('geodir_before_add_from_favorite', $post_id);
2329
+
2330
+		echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2331
+
2332
+		/**
2333
+		 * Called after adding the post from favourites.
2334
+		 *
2335
+		 * @since 1.0.0
2336
+		 * @package GeoDirectory
2337
+		 * @param int $post_id The post ID.
2338
+		 */
2339
+		do_action('geodir_after_add_from_favorite', $post_id);
2320 2340
 
2321
-        /**
2322
-         * Called before adding the post from favourites.
2323
-         *
2324
-         * @since 1.0.0
2325
-         * @package GeoDirectory
2326
-         * @param int $post_id The post ID.
2327
-         */
2328
-        do_action('geodir_before_add_from_favorite', $post_id);
2329
-
2330
-        echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2331
-
2332
-        /**
2333
-         * Called after adding the post from favourites.
2334
-         *
2335
-         * @since 1.0.0
2336
-         * @package GeoDirectory
2337
-         * @param int $post_id The post ID.
2338
-         */
2339
-        do_action('geodir_after_add_from_favorite', $post_id);
2340
-
2341
-    }
2341
+	}
2342 2342
 }
2343 2343
 
2344 2344
 if (!function_exists('geodir_remove_from_favorite')) {
2345
-    /**
2346
-     * This function would remove the favourited property earlier.
2347
-     *
2348
-     * @since 1.0.0
2349
-     * @package GeoDirectory
2350
-     * @global object $current_user Current user object.
2351
-     * @param int $post_id The post ID.
2352
-     */
2353
-    function geodir_remove_from_favorite($post_id)
2354
-    {
2355
-        global $current_user;
2356
-
2357
-        /**
2358
-         * Filter to modify "Add to Favorites" text
2359
-         *
2360
-         * You can use this filter to rename "Add to Favorites" text to something else.
2361
-         *
2362
-         * @since 1.0.0
2363
-         * @package GeoDirectory
2364
-         */
2365
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2366
-
2367
-        /**
2368
-         * Filter to modify "Favourite" text
2369
-         *
2370
-         * You can use this filter to rename "Favourite" text to something else.
2371
-         *
2372
-         * @since 1.0.0
2373
-         * @package GeoDirectory
2374
-         */
2375
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2376
-
2377
-        /**
2378
-         * Filter to modify "fa fa-heart" icon
2379
-         *
2380
-         * You can use this filter to change "fa fa-heart" icon to something else.
2381
-         *
2382
-         * @since 1.0.0
2383
-         * @package GeoDirectory
2384
-         */
2385
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2386
-
2387
-        $user_meta_data = array();
2388
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2389
-
2390
-        if (!empty($user_meta_data)) {
2391
-
2392
-            if (($key = array_search($post_id, $user_meta_data)) !== false) {
2393
-                unset($user_meta_data[$key]);
2394
-            }
2345
+	/**
2346
+	 * This function would remove the favourited property earlier.
2347
+	 *
2348
+	 * @since 1.0.0
2349
+	 * @package GeoDirectory
2350
+	 * @global object $current_user Current user object.
2351
+	 * @param int $post_id The post ID.
2352
+	 */
2353
+	function geodir_remove_from_favorite($post_id)
2354
+	{
2355
+		global $current_user;
2356
+
2357
+		/**
2358
+		 * Filter to modify "Add to Favorites" text
2359
+		 *
2360
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2361
+		 *
2362
+		 * @since 1.0.0
2363
+		 * @package GeoDirectory
2364
+		 */
2365
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2366
+
2367
+		/**
2368
+		 * Filter to modify "Favourite" text
2369
+		 *
2370
+		 * You can use this filter to rename "Favourite" text to something else.
2371
+		 *
2372
+		 * @since 1.0.0
2373
+		 * @package GeoDirectory
2374
+		 */
2375
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2376
+
2377
+		/**
2378
+		 * Filter to modify "fa fa-heart" icon
2379
+		 *
2380
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2381
+		 *
2382
+		 * @since 1.0.0
2383
+		 * @package GeoDirectory
2384
+		 */
2385
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2386
+
2387
+		$user_meta_data = array();
2388
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2389
+
2390
+		if (!empty($user_meta_data)) {
2391
+
2392
+			if (($key = array_search($post_id, $user_meta_data)) !== false) {
2393
+				unset($user_meta_data[$key]);
2394
+			}
2395 2395
 
2396
-        }
2396
+		}
2397 2397
 
2398
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2398
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2399 2399
 
2400
-        /**
2401
-         * Called before removing the post from favourites.
2402
-         *
2403
-         * @since 1.0.0
2404
-         * @package GeoDirectory
2405
-         * @param int $post_id The post ID.
2406
-         */
2407
-        do_action('geodir_before_remove_from_favorite', $post_id);
2400
+		/**
2401
+		 * Called before removing the post from favourites.
2402
+		 *
2403
+		 * @since 1.0.0
2404
+		 * @package GeoDirectory
2405
+		 * @param int $post_id The post ID.
2406
+		 */
2407
+		do_action('geodir_before_remove_from_favorite', $post_id);
2408 2408
 
2409
-        echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2409
+		echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2410 2410
 
2411
-        /**
2412
-         * Called after removing the post from favourites.
2413
-         *
2414
-         * @since 1.0.0
2415
-         * @package GeoDirectory
2416
-         * @param int $post_id The post ID.
2417
-         */
2418
-        do_action('geodir_after_remove_from_favorite', $post_id);
2411
+		/**
2412
+		 * Called after removing the post from favourites.
2413
+		 *
2414
+		 * @since 1.0.0
2415
+		 * @package GeoDirectory
2416
+		 * @param int $post_id The post ID.
2417
+		 */
2418
+		do_action('geodir_after_remove_from_favorite', $post_id);
2419 2419
 
2420
-    }
2420
+	}
2421 2421
 }
2422 2422
 
2423 2423
 if (!function_exists('geodir_favourite_html')) {
2424
-    /**
2425
-     * This function would display the html content for add to favorite or remove from favorite.
2426
-     *
2427
-     * @since 1.0.0
2428
-     * @package GeoDirectory
2429
-     * @global object $current_user Current user object.
2430
-     * @global object $post The current post object.
2431
-     * @param int $user_id The user ID.
2432
-     * @param int $post_id The post ID.
2433
-     */
2434
-    function geodir_favourite_html($user_id, $post_id)
2435
-    {
2436
-
2437
-        global $current_user, $post;
2438
-
2439
-        /**
2440
-         * Filter to modify "Add to Favorites" text
2441
-         *
2442
-         * You can use this filter to rename "Add to Favorites" text to something else.
2443
-         *
2444
-         * @since 1.0.0
2445
-         * @package GeoDirectory
2446
-         */
2447
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2448
-
2449
-        /**
2450
-         * Filter to modify "Favourite" text
2451
-         *
2452
-         * You can use this filter to rename "Favourite" text to something else.
2453
-         *
2454
-         * @since 1.0.0
2455
-         * @package GeoDirectory
2456
-         */
2457
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2458
-
2459
-        /**
2460
-         * Filter to modify "Unfavorite" text
2461
-         *
2462
-         * You can use this filter to rename "Unfavorite" text to something else.
2463
-         *
2464
-         * @since 1.0.0
2465
-         * @package GeoDirectory
2466
-         */
2467
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2468
-
2469
-        /**
2470
-         * Filter to modify "Remove from Favorites" text
2471
-         *
2472
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2473
-         *
2474
-         * @since 1.0.0
2475
-         * @package GeoDirectory
2476
-         */
2477
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2478
-
2479
-        /**
2480
-         * Filter to modify "fa fa-heart" icon
2481
-         *
2482
-         * You can use this filter to change "fa fa-heart" icon to something else.
2483
-         *
2484
-         * @since 1.0.0
2485
-         * @package GeoDirectory
2486
-         */
2487
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2488
-
2489
-        /**
2490
-         * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2491
-         *
2492
-         * You can use this filter to change "fa fa-heart" icon to something else.
2493
-         *
2494
-         * @since 1.0.0
2495
-         * @package GeoDirectory
2496
-         */
2497
-        $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2498
-
2499
-        $user_meta_data = '';
2500
-        if (isset($current_user->data->ID))
2501
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2502
-
2503
-        if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2504
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2424
+	/**
2425
+	 * This function would display the html content for add to favorite or remove from favorite.
2426
+	 *
2427
+	 * @since 1.0.0
2428
+	 * @package GeoDirectory
2429
+	 * @global object $current_user Current user object.
2430
+	 * @global object $post The current post object.
2431
+	 * @param int $user_id The user ID.
2432
+	 * @param int $post_id The post ID.
2433
+	 */
2434
+	function geodir_favourite_html($user_id, $post_id)
2435
+	{
2436
+
2437
+		global $current_user, $post;
2438
+
2439
+		/**
2440
+		 * Filter to modify "Add to Favorites" text
2441
+		 *
2442
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2443
+		 *
2444
+		 * @since 1.0.0
2445
+		 * @package GeoDirectory
2446
+		 */
2447
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2448
+
2449
+		/**
2450
+		 * Filter to modify "Favourite" text
2451
+		 *
2452
+		 * You can use this filter to rename "Favourite" text to something else.
2453
+		 *
2454
+		 * @since 1.0.0
2455
+		 * @package GeoDirectory
2456
+		 */
2457
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2458
+
2459
+		/**
2460
+		 * Filter to modify "Unfavorite" text
2461
+		 *
2462
+		 * You can use this filter to rename "Unfavorite" text to something else.
2463
+		 *
2464
+		 * @since 1.0.0
2465
+		 * @package GeoDirectory
2466
+		 */
2467
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2468
+
2469
+		/**
2470
+		 * Filter to modify "Remove from Favorites" text
2471
+		 *
2472
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2473
+		 *
2474
+		 * @since 1.0.0
2475
+		 * @package GeoDirectory
2476
+		 */
2477
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2478
+
2479
+		/**
2480
+		 * Filter to modify "fa fa-heart" icon
2481
+		 *
2482
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2483
+		 *
2484
+		 * @since 1.0.0
2485
+		 * @package GeoDirectory
2486
+		 */
2487
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2488
+
2489
+		/**
2490
+		 * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2491
+		 *
2492
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2493
+		 *
2494
+		 * @since 1.0.0
2495
+		 * @package GeoDirectory
2496
+		 */
2497
+		$unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2498
+
2499
+		$user_meta_data = '';
2500
+		if (isset($current_user->data->ID))
2501
+			$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2502
+
2503
+		if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2504
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2505 2505
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2506 2506
                 onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2507 2507
                 title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2508 2508
             </a>   </span><?php
2509 2509
 
2510
-        } else {
2510
+		} else {
2511 2511
 
2512
-            if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2513
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2514
-            } else
2515
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2512
+			if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2513
+				$script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2514
+			} else
2515
+				$script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2516 2516
 
2517
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2517
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2518 2518
                                                                                         href="javascript:void(0);"
2519 2519
                                                                                         onclick="<?php echo $script_text;?>"
2520 2520
                                                                                         title="<?php echo $add_favourite_text;?>"><i
2521 2521
                     class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2522 2522
         <?php }
2523
-    }
2523
+	}
2524 2524
 }
2525 2525
 
2526 2526
 
@@ -2537,54 +2537,54 @@  discard block
 block discarded – undo
2537 2537
 function geodir_get_cat_postcount($term = array())
2538 2538
 {
2539 2539
 
2540
-    if (!empty($term)) {
2540
+	if (!empty($term)) {
2541 2541
 
2542
-        global $wpdb, $plugin_prefix;
2542
+		global $wpdb, $plugin_prefix;
2543 2543
 
2544
-        $where = '';
2545
-        $join = '';
2546
-        if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2547
-            $taxonomy_obj = get_taxonomy($term->taxonomy);
2544
+		$where = '';
2545
+		$join = '';
2546
+		if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2547
+			$taxonomy_obj = get_taxonomy($term->taxonomy);
2548 2548
 
2549
-            $post_type = $taxonomy_obj->object_type[0];
2549
+			$post_type = $taxonomy_obj->object_type[0];
2550 2550
 
2551
-            $table = $plugin_prefix . $post_type . '_detail';
2551
+			$table = $plugin_prefix . $post_type . '_detail';
2552 2552
 
2553
-            /**
2554
-             * Filter to modify the 'join' query
2555
-             *
2556
-             * @since 1.0.0
2557
-             * @package GeoDirectory
2558
-             * @param object|array $term category / term object that need to be processed.
2559
-             * @param string $join The join query.
2560
-             */
2561
-            $join = apply_filters('geodir_cat_post_count_join', $join, $term);
2553
+			/**
2554
+			 * Filter to modify the 'join' query
2555
+			 *
2556
+			 * @since 1.0.0
2557
+			 * @package GeoDirectory
2558
+			 * @param object|array $term category / term object that need to be processed.
2559
+			 * @param string $join The join query.
2560
+			 */
2561
+			$join = apply_filters('geodir_cat_post_count_join', $join, $term);
2562 2562
 
2563
-            /**
2564
-             * Filter to modify the 'where' query
2565
-             *
2566
-             * @since 1.0.0
2567
-             * @package GeoDirectory
2568
-             * @param object|array $term category / term object that need to be processed.
2569
-             * @param string $where The where query.
2570
-             */
2571
-            $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2563
+			/**
2564
+			 * Filter to modify the 'where' query
2565
+			 *
2566
+			 * @since 1.0.0
2567
+			 * @package GeoDirectory
2568
+			 * @param object|array $term category / term object that need to be processed.
2569
+			 * @param string $where The where query.
2570
+			 */
2571
+			$where = apply_filters('geodir_cat_post_count_where', $where, $term);
2572 2572
 
2573
-            $count_query = "SELECT count(post_id) FROM
2573
+			$count_query = "SELECT count(post_id) FROM
2574 2574
 							" . $table . " as pd " . $join . "
2575 2575
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2576 2576
 
2577
-            $cat_post_count = $wpdb->get_var($count_query);
2578
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2579
-                $cat_post_count = 0;
2577
+			$cat_post_count = $wpdb->get_var($count_query);
2578
+			if (empty($cat_post_count) || is_wp_error($cat_post_count))
2579
+				$cat_post_count = 0;
2580 2580
 
2581
-            return $cat_post_count;
2581
+			return $cat_post_count;
2582 2582
 
2583
-        } else
2583
+		} else
2584 2584
 
2585
-            return $term->count;
2586
-    }
2587
-    return false;
2585
+			return $term->count;
2586
+	}
2587
+	return false;
2588 2588
 
2589 2589
 }
2590 2590
 
@@ -2597,17 +2597,17 @@  discard block
 block discarded – undo
2597 2597
  */
2598 2598
 function geodir_allow_post_type_frontend()
2599 2599
 {
2600
-    $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2600
+	$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2601 2601
 
2602
-    if (!is_admin() && isset($_REQUEST['listing_type'])
2603
-        && !empty($geodir_allow_posttype_frontend)
2604
-        && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2605
-    ) {
2602
+	if (!is_admin() && isset($_REQUEST['listing_type'])
2603
+		&& !empty($geodir_allow_posttype_frontend)
2604
+		&& !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2605
+	) {
2606 2606
 
2607
-        wp_redirect(home_url());
2608
-        exit;
2607
+		wp_redirect(home_url());
2608
+		exit;
2609 2609
 
2610
-    }
2610
+	}
2611 2611
 
2612 2612
 }
2613 2613
 
@@ -2624,20 +2624,20 @@  discard block
 block discarded – undo
2624 2624
  */
2625 2625
 function geodir_excerpt_length($length)
2626 2626
 {
2627
-    global $wp_query, $geodir_is_widget_listing;
2627
+	global $wp_query, $geodir_is_widget_listing;
2628 2628
 	if ($geodir_is_widget_listing) {
2629 2629
 		return $length;
2630 2630
 	}
2631 2631
 	
2632
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2633
-        $length = get_option('geodir_desc_word_limit');
2634
-    elseif (get_query_var('excerpt_length'))
2635
-        $length = get_query_var('excerpt_length');
2632
+	if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2633
+		$length = get_option('geodir_desc_word_limit');
2634
+	elseif (get_query_var('excerpt_length'))
2635
+		$length = get_query_var('excerpt_length');
2636 2636
 
2637
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2638
-        $length = get_option('geodir_author_desc_word_limit');
2637
+	if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2638
+		$length = get_option('geodir_author_desc_word_limit');
2639 2639
 
2640
-    return $length;
2640
+	return $length;
2641 2641
 }
2642 2642
 
2643 2643
 /**
@@ -2652,13 +2652,13 @@  discard block
 block discarded – undo
2652 2652
  */
2653 2653
 function geodir_excerpt_more($more)
2654 2654
 {
2655
-    global $post;
2656
-    $all_postypes = geodir_get_posttypes();
2657
-    if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2658
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2659
-    }
2655
+	global $post;
2656
+	$all_postypes = geodir_get_posttypes();
2657
+	if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2658
+		return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2659
+	}
2660 2660
 
2661
-    return $more;
2661
+	return $more;
2662 2662
 }
2663 2663
 
2664 2664
 
@@ -2675,63 +2675,63 @@  discard block
 block discarded – undo
2675 2675
  */
2676 2676
 function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy)
2677 2677
 {
2678
-    global $plugin_prefix, $wpdb;
2678
+	global $plugin_prefix, $wpdb;
2679 2679
 
2680
-    $gd_taxonomies = geodir_get_taxonomies();
2680
+	$gd_taxonomies = geodir_get_taxonomies();
2681 2681
 
2682
-    if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2682
+	if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2683 2683
 
2684
-        $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2685
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2684
+		$geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2685
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
2686 2686
 
2687
-        $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2688
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2687
+		$path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2688
+		$term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2689 2689
 
2690
-        $posts = $wpdb->get_results(
2691
-            $wpdb->prepare(
2692
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2693
-                array($term_id, $taxonomy)
2694
-            )
2695
-        );
2690
+		$posts = $wpdb->get_results(
2691
+			$wpdb->prepare(
2692
+				"SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2693
+				array($term_id, $taxonomy)
2694
+			)
2695
+		);
2696 2696
 
2697
-        if (!empty($posts)):
2698
-            foreach ($posts as $post_obj) {
2697
+		if (!empty($posts)):
2698
+			foreach ($posts as $post_obj) {
2699 2699
 
2700
-                $lat = $post_obj->post_latitude;
2701
-                $lng = $post_obj->post_longitude;
2700
+				$lat = $post_obj->post_latitude;
2701
+				$lng = $post_obj->post_longitude;
2702 2702
 
2703
-                $json = '{';
2704
-                $json .= '"id":"' . $post_obj->post_id . '",';
2705
-                $json .= '"lat_pos": "' . $lat . '",';
2706
-                $json .= '"long_pos": "' . $lng . '",';
2707
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2708
-                $json .= '"icon":"' . $term_icon . '",';
2709
-                $json .= '"group":"catgroup' . $term_id . '"';
2710
-                $json .= '}';
2703
+				$json = '{';
2704
+				$json .= '"id":"' . $post_obj->post_id . '",';
2705
+				$json .= '"lat_pos": "' . $lat . '",';
2706
+				$json .= '"long_pos": "' . $lng . '",';
2707
+				$json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2708
+				$json .= '"icon":"' . $term_icon . '",';
2709
+				$json .= '"group":"catgroup' . $term_id . '"';
2710
+				$json .= '}';
2711 2711
 
2712
-                if ($post_obj->default_category == $term_id) {
2712
+				if ($post_obj->default_category == $term_id) {
2713 2713
 
2714
-                    $wpdb->query(
2715
-                        $wpdb->prepare(
2716
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2717
-                            array($json, $post_obj->post_id)
2718
-                        )
2719
-                    );
2720
-                }
2714
+					$wpdb->query(
2715
+						$wpdb->prepare(
2716
+							"UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2717
+							array($json, $post_obj->post_id)
2718
+						)
2719
+					);
2720
+				}
2721 2721
 
2722
-                $wpdb->query(
2723
-                    $wpdb->prepare(
2724
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2725
-                        array($json, $post_obj->post_id, $term_id)
2726
-                    )
2727
-                );
2722
+				$wpdb->query(
2723
+					$wpdb->prepare(
2724
+						"UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2725
+						array($json, $post_obj->post_id, $term_id)
2726
+					)
2727
+				);
2728 2728
 
2729
-            }
2729
+			}
2730 2730
 
2731 2731
 
2732
-        endif;
2732
+		endif;
2733 2733
 
2734
-    }
2734
+	}
2735 2735
 
2736 2736
 }
2737 2737
 
@@ -2745,14 +2745,14 @@  discard block
 block discarded – undo
2745 2745
  */
2746 2746
 function geodir_get_listing_author($listing_id = '')
2747 2747
 {
2748
-    if ($listing_id == '') {
2749
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2750
-            $listing_id = $_REQUEST['pid'];
2751
-        }
2752
-    }
2753
-    $listing = get_post(strip_tags($listing_id));
2754
-    $listing_author_id = $listing->post_author;
2755
-    return $listing_author_id;
2748
+	if ($listing_id == '') {
2749
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2750
+			$listing_id = $_REQUEST['pid'];
2751
+		}
2752
+	}
2753
+	$listing = get_post(strip_tags($listing_id));
2754
+	$listing_author_id = $listing->post_author;
2755
+	return $listing_author_id;
2756 2756
 }
2757 2757
 
2758 2758
 
@@ -2767,11 +2767,11 @@  discard block
 block discarded – undo
2767 2767
  */
2768 2768
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2769 2769
 {
2770
-    $listing_author_id = geodir_get_listing_author($listing_id);
2771
-    if ($listing_author_id == $user_id)
2772
-        return true;
2773
-    else
2774
-        return false;
2770
+	$listing_author_id = geodir_get_listing_author($listing_id);
2771
+	if ($listing_author_id == $user_id)
2772
+		return true;
2773
+	else
2774
+		return false;
2775 2775
 
2776 2776
 }
2777 2777
 
@@ -2787,17 +2787,17 @@  discard block
 block discarded – undo
2787 2787
  */
2788 2788
 function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true)
2789 2789
 {
2790
-    global $current_user;
2791
-    if ($exclude_admin) {
2792
-        foreach ($current_user->caps as $key => $caps) {
2793
-            if (geodir_strtolower($key) == 'administrator') {
2794
-                return true;
2795
-                break;
2796
-            }
2797
-        }
2798
-    }
2799
-
2800
-    return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2790
+	global $current_user;
2791
+	if ($exclude_admin) {
2792
+		foreach ($current_user->caps as $key => $caps) {
2793
+			if (geodir_strtolower($key) == 'administrator') {
2794
+				return true;
2795
+				break;
2796
+			}
2797
+		}
2798
+	}
2799
+
2800
+	return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2801 2801
 }
2802 2802
 
2803 2803
 
@@ -2813,17 +2813,17 @@  discard block
 block discarded – undo
2813 2813
 function geodir_only_supportable_attachments_remove($file)
2814 2814
 {
2815 2815
 
2816
-    global $wpdb;
2816
+	global $wpdb;
2817 2817
 
2818
-    $matches = array();
2818
+	$matches = array();
2819 2819
 
2820
-    $pattern = '/-\d+x\d+\./';
2821
-    preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2820
+	$pattern = '/-\d+x\d+\./';
2821
+	preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2822 2822
 
2823
-    if (empty($matches))
2824
-        return '';
2825
-    else
2826
-        return $file;
2823
+	if (empty($matches))
2824
+		return '';
2825
+	else
2826
+		return $file;
2827 2827
 
2828 2828
 }
2829 2829
 
@@ -2840,78 +2840,78 @@  discard block
 block discarded – undo
2840 2840
 function geodir_set_wp_featured_image($post_id)
2841 2841
 {
2842 2842
 
2843
-    global $wpdb, $plugin_prefix;
2844
-    $uploads = wp_upload_dir();
2843
+	global $wpdb, $plugin_prefix;
2844
+	$uploads = wp_upload_dir();
2845 2845
 //	print_r($uploads ) ;
2846
-    $post_first_image = $wpdb->get_results(
2847
-        $wpdb->prepare(
2848
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2849
-        )
2850
-    );
2846
+	$post_first_image = $wpdb->get_results(
2847
+		$wpdb->prepare(
2848
+			"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2849
+		)
2850
+	);
2851 2851
 
2852
-    $old_attachment_name = '';
2853
-    $post_thumbnail_id = '';
2854
-    if (has_post_thumbnail($post_id)) {
2852
+	$old_attachment_name = '';
2853
+	$post_thumbnail_id = '';
2854
+	if (has_post_thumbnail($post_id)) {
2855 2855
 
2856
-        if (has_post_thumbnail($post_id)) {
2856
+		if (has_post_thumbnail($post_id)) {
2857 2857
 
2858
-            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2858
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
2859 2859
 
2860
-            $old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2860
+			$old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2861 2861
 
2862
-        }
2863
-    }
2864
-
2865
-    if (!empty($post_first_image)) {
2862
+		}
2863
+	}
2866 2864
 
2867
-        $post_type = get_post_type($post_id);
2865
+	if (!empty($post_first_image)) {
2868 2866
 
2869
-        $table_name = $plugin_prefix . $post_type . '_detail';
2867
+		$post_type = get_post_type($post_id);
2870 2868
 
2871
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2869
+		$table_name = $plugin_prefix . $post_type . '_detail';
2872 2870
 
2873
-        $new_attachment_name = basename($post_first_image[0]->file);
2871
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2874 2872
 
2875
-        if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2873
+		$new_attachment_name = basename($post_first_image[0]->file);
2876 2874
 
2877
-            if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2875
+		if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2878 2876
 
2879
-                add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2877
+			if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2880 2878
 
2881
-                wp_delete_attachment($post_thumbnail_id);
2879
+				add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2882 2880
 
2883
-            }
2884
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2881
+				wp_delete_attachment($post_thumbnail_id);
2885 2882
 
2886
-            $attachment = array(
2887
-                'post_mime_type' => $post_first_image[0]->mime_type,
2888
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2889
-                'post_parent' => $post_id,
2890
-                'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2891
-                'post_content' => ''
2892
-            );
2883
+			}
2884
+			$filename = $uploads['basedir'] . $post_first_image[0]->file;
2885
+
2886
+			$attachment = array(
2887
+				'post_mime_type' => $post_first_image[0]->mime_type,
2888
+				'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2889
+				'post_parent' => $post_id,
2890
+				'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2891
+				'post_content' => ''
2892
+			);
2893 2893
 
2894 2894
 
2895
-            $id = wp_insert_attachment($attachment, $filename, $post_id);
2895
+			$id = wp_insert_attachment($attachment, $filename, $post_id);
2896 2896
 
2897
-            if (!is_wp_error($id)) {
2897
+			if (!is_wp_error($id)) {
2898 2898
 
2899
-                set_post_thumbnail($post_id, $id);
2899
+				set_post_thumbnail($post_id, $id);
2900 2900
 
2901
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2902
-                wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2901
+				require_once(ABSPATH . 'wp-admin/includes/image.php');
2902
+				wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2903 2903
 
2904
-            }
2904
+			}
2905 2905
 
2906
-        }
2906
+		}
2907 2907
 
2908
-    } else {
2909
-        //set_post_thumbnail($post_id,-1);
2908
+	} else {
2909
+		//set_post_thumbnail($post_id,-1);
2910 2910
 
2911
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2912
-            wp_delete_attachment($post_thumbnail_id);
2911
+		if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2912
+			wp_delete_attachment($post_thumbnail_id);
2913 2913
 
2914
-    }
2914
+	}
2915 2915
 }
2916 2916
 
2917 2917
 
@@ -2926,53 +2926,53 @@  discard block
 block discarded – undo
2926 2926
  */
2927 2927
 function gd_copy_original_translation()
2928 2928
 {
2929
-    if (function_exists('icl_object_id')) {
2930
-        global $wpdb, $table_prefix, $plugin_prefix;
2931
-        $post_id = absint($_POST['post_id']);
2932
-        $upload_dir = wp_upload_dir();
2933
-        $post_type = get_post_type($_POST['post_id']);
2934
-        $table = $plugin_prefix . $post_type . '_detail';
2935
-
2936
-        $post_arr = $wpdb->get_results($wpdb->prepare(
2937
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2938
-            array($post_id)
2939
-        )
2940
-            , ARRAY_A);
2941
-
2942
-        $arrImages = $wpdb->get_results(
2943
-            $wpdb->prepare(
2944
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2945
-                array('%image%', $post_id)
2946
-            )
2947
-        );
2948
-        if ($arrImages) {
2949
-            $image_arr = array();
2950
-            foreach ($arrImages as $img) {
2951
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2952
-            }
2953
-            $comma_separated = implode(",", $image_arr);
2954
-            $post_arr[0]['post_images'] = $comma_separated;
2955
-        }
2956
-
2957
-
2958
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2959
-        $cat_arr = array_filter(explode(",", $cats));
2960
-        $trans_cat = array();
2961
-        foreach ($cat_arr as $cat) {
2962
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2963
-        }
2964
-
2965
-
2966
-        $post_arr[0]['categories'] = array_filter($trans_cat);
2929
+	if (function_exists('icl_object_id')) {
2930
+		global $wpdb, $table_prefix, $plugin_prefix;
2931
+		$post_id = absint($_POST['post_id']);
2932
+		$upload_dir = wp_upload_dir();
2933
+		$post_type = get_post_type($_POST['post_id']);
2934
+		$table = $plugin_prefix . $post_type . '_detail';
2935
+
2936
+		$post_arr = $wpdb->get_results($wpdb->prepare(
2937
+			"SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2938
+			array($post_id)
2939
+		)
2940
+			, ARRAY_A);
2941
+
2942
+		$arrImages = $wpdb->get_results(
2943
+			$wpdb->prepare(
2944
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2945
+				array('%image%', $post_id)
2946
+			)
2947
+		);
2948
+		if ($arrImages) {
2949
+			$image_arr = array();
2950
+			foreach ($arrImages as $img) {
2951
+				$image_arr[] = $upload_dir['baseurl'] . $img->file;
2952
+			}
2953
+			$comma_separated = implode(",", $image_arr);
2954
+			$post_arr[0]['post_images'] = $comma_separated;
2955
+		}
2956
+
2957
+
2958
+		$cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2959
+		$cat_arr = array_filter(explode(",", $cats));
2960
+		$trans_cat = array();
2961
+		foreach ($cat_arr as $cat) {
2962
+			$trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2963
+		}
2964
+
2965
+
2966
+		$post_arr[0]['categories'] = array_filter($trans_cat);
2967 2967
 //print_r($image_arr);
2968
-        //print_r($arrImages);
2969
-        //echo $_REQUEST['lang'];
2968
+		//print_r($arrImages);
2969
+		//echo $_REQUEST['lang'];
2970 2970
 //print_r($post_arr);
2971 2971
 //print_r($trans_cat);
2972
-        echo json_encode($post_arr[0]);
2972
+		echo json_encode($post_arr[0]);
2973 2973
 
2974
-    }
2975
-    die();
2974
+	}
2975
+	die();
2976 2976
 }
2977 2977
 
2978 2978
 
@@ -2992,54 +2992,54 @@  discard block
 block discarded – undo
2992 2992
 function geodir_get_custom_fields_type($listing_type = '')
2993 2993
 {
2994 2994
 
2995
-    global $wpdb;
2995
+	global $wpdb;
2996 2996
 
2997
-    if ($listing_type == '')
2998
-        $listing_type = 'gd_place';
2997
+	if ($listing_type == '')
2998
+		$listing_type = 'gd_place';
2999 2999
 
3000
-    $fields_info = array();
3000
+	$fields_info = array();
3001 3001
 
3002
-    $get_data = $wpdb->get_results(
3003
-        $wpdb->prepare(
3004
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
3005
-            array($listing_type)
3006
-        )
3007
-    );
3002
+	$get_data = $wpdb->get_results(
3003
+		$wpdb->prepare(
3004
+			"SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
3005
+			array($listing_type)
3006
+		)
3007
+	);
3008 3008
 
3009
-    if (!empty($get_data)) {
3009
+	if (!empty($get_data)) {
3010 3010
 
3011
-        foreach ($get_data as $data) {
3011
+		foreach ($get_data as $data) {
3012 3012
 
3013
-            if ($data->field_type == 'address') {
3013
+			if ($data->field_type == 'address') {
3014 3014
 
3015
-                $extra_fields = unserialize($data->extra_fields);
3015
+				$extra_fields = unserialize($data->extra_fields);
3016 3016
 
3017
-                $prefix = $data->htmlvar_name . '_';
3017
+				$prefix = $data->htmlvar_name . '_';
3018 3018
 
3019
-                $fields_info[$prefix . 'address'] = $data->field_type;
3019
+				$fields_info[$prefix . 'address'] = $data->field_type;
3020 3020
 
3021
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
3022
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
3021
+				if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
3022
+					$fields_info[$prefix . 'zip'] = $data->field_type;
3023 3023
 
3024
-            } else {
3024
+			} else {
3025 3025
 
3026
-                $fields_info[$data->htmlvar_name] = $data->field_type;
3026
+				$fields_info[$data->htmlvar_name] = $data->field_type;
3027 3027
 
3028
-            }
3028
+			}
3029 3029
 
3030
-        }
3030
+		}
3031 3031
 
3032
-    }
3032
+	}
3033 3033
 
3034
-    /**
3035
-     * Filter to modify custom fields info using listing post type.
3036
-     *
3037
-     * @since 1.0.0
3038
-     * @package GeoDirectory
3039
-     * @return array $fields_info Custom fields info.
3040
-     * @param string $listing_type The listing post type.
3041
-     */
3042
-    return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
3034
+	/**
3035
+	 * Filter to modify custom fields info using listing post type.
3036
+	 *
3037
+	 * @since 1.0.0
3038
+	 * @package GeoDirectory
3039
+	 * @return array $fields_info Custom fields info.
3040
+	 * @param string $listing_type The listing post type.
3041
+	 */
3042
+	return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
3043 3043
 }
3044 3044
 
3045 3045
 
@@ -3054,58 +3054,58 @@  discard block
 block discarded – undo
3054 3054
  */
3055 3055
 function geodir_function_post_updated($post_ID, $post_after, $post_before)
3056 3056
 {
3057
-    $post_type = get_post_type($post_ID);
3057
+	$post_type = get_post_type($post_ID);
3058 3058
 
3059
-    if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3060
-        // send notification to client when post moves from draft to publish
3061
-        if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3062
-            $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3063
-            $post_author_data = get_userdata($post_author_id);
3059
+	if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3060
+		// send notification to client when post moves from draft to publish
3061
+		if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3062
+			$post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3063
+			$post_author_data = get_userdata($post_author_id);
3064 3064
 
3065
-            $to_name = geodir_get_client_name($post_author_id);
3065
+			$to_name = geodir_get_client_name($post_author_id);
3066 3066
 
3067
-            $from_email = geodir_get_site_email_id();
3068
-            $from_name = get_site_emailName();
3069
-            $to_email = $post_author_data->user_email;
3067
+			$from_email = geodir_get_site_email_id();
3068
+			$from_name = get_site_emailName();
3069
+			$to_email = $post_author_data->user_email;
3070 3070
 
3071
-            if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3072
-                $to_email = $post_author_data->user_email;
3073
-            }
3071
+			if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3072
+				$to_email = $post_author_data->user_email;
3073
+			}
3074 3074
 
3075
-            $message_type = 'listing_published';
3075
+			$message_type = 'listing_published';
3076 3076
 
3077
-            if (get_option('geodir_post_published_email_subject') == '') {
3078
-                update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3079
-            }
3077
+			if (get_option('geodir_post_published_email_subject') == '') {
3078
+				update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3079
+			}
3080 3080
 
3081
-            if (get_option('geodir_post_published_email_content') == '') {
3082
-                update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3083
-            }
3081
+			if (get_option('geodir_post_published_email_content') == '') {
3082
+				update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3083
+			}
3084 3084
 
3085
-            /**
3086
-             * Called before sending the email when listing gets published.
3087
-             *
3088
-             * @since 1.0.0
3089
-             * @package GeoDirectory
3090
-             * @param object $post_after The post object after update.
3091
-             * @param object $post_before The post object before update.
3092
-             */
3093
-            do_action('geodir_before_listing_published_email', $post_after, $post_before);
3094
-            if (is_email($to_email)) {
3095
-                geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3096
-            }
3085
+			/**
3086
+			 * Called before sending the email when listing gets published.
3087
+			 *
3088
+			 * @since 1.0.0
3089
+			 * @package GeoDirectory
3090
+			 * @param object $post_after The post object after update.
3091
+			 * @param object $post_before The post object before update.
3092
+			 */
3093
+			do_action('geodir_before_listing_published_email', $post_after, $post_before);
3094
+			if (is_email($to_email)) {
3095
+				geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3096
+			}
3097 3097
 
3098
-            /**
3099
-             * Called after sending the email when listing gets published.
3100
-             *
3101
-             * @since 1.0.0
3102
-             * @package GeoDirectory
3103
-             * @param object $post_after The post object after update.
3104
-             * @param object $post_before The post object before update.
3105
-             */
3106
-            do_action('geodir_after_listing_published_email', $post_after, $post_before);
3107
-        }
3108
-    }
3098
+			/**
3099
+			 * Called after sending the email when listing gets published.
3100
+			 *
3101
+			 * @since 1.0.0
3102
+			 * @package GeoDirectory
3103
+			 * @param object $post_after The post object after update.
3104
+			 * @param object $post_before The post object before update.
3105
+			 */
3106
+			do_action('geodir_after_listing_published_email', $post_after, $post_before);
3107
+		}
3108
+	}
3109 3109
 }
3110 3110
 
3111 3111
 add_action('wp_head', 'geodir_fb_like_thumbnail');
@@ -3119,14 +3119,14 @@  discard block
 block discarded – undo
3119 3119
  */
3120 3120
 function geodir_fb_like_thumbnail(){
3121 3121
 
3122
-    // return if not a single post
3123
-    if(!is_single()){return;}
3122
+	// return if not a single post
3123
+	if(!is_single()){return;}
3124 3124
 
3125
-    global $post;
3126
-    if(isset($post->featured_image) && $post->featured_image){
3127
-        $upload_dir = wp_upload_dir();
3128
-        $thumb = $upload_dir['baseurl'].$post->featured_image;
3129
-        echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3125
+	global $post;
3126
+	if(isset($post->featured_image) && $post->featured_image){
3127
+		$upload_dir = wp_upload_dir();
3128
+		$thumb = $upload_dir['baseurl'].$post->featured_image;
3129
+		echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3130 3130
 
3131
-    }
3131
+	}
3132 3132
 }
3133 3133
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +209 added lines, -209 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@  discard block
 block discarded – undo
26 26
 
27 27
     if (!isset($default_cat) || empty($default_cat)) {
28 28
         $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
-        if(!is_int($default_cat)){
29
+    } else {
30
+        if (!is_int($default_cat)) {
31 31
             $category = get_term_by('name', $default_cat, $taxonomy);
32
-            if(isset($category->term_id)){
33
-                $default_cat =  $category->term_id;
32
+            if (isset($category->term_id)) {
33
+                $default_cat = $category->term_id;
34 34
             }
35 35
         }
36 36
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     if ($default_pos === false) {
60 60
 
61
-        $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str);
61
+        $change_cat_str = str_replace($default_cat.',y:', $default_cat.',y,d:', $change_cat_str);
62 62
 
63 63
     }
64 64
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
             
146 146
             $gd_post = $post;
147 147
             if (!empty($gd_post) && is_array($gd_post)) {
148
-                $gd_post = (object)$post;
148
+                $gd_post = (object) $post;
149 149
                 
150 150
                 // Fix WPML duplicate.
151 151
                 if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) {
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         $send_post_submit_mail = false;
240 240
 
241 241
         // unhook this function so it doesn't loop infinitely
242
-        remove_action('save_post', 'geodir_post_information_save',10,2);
242
+        remove_action('save_post', 'geodir_post_information_save', 10, 2);
243 243
 
244 244
         if (isset($request_info['pid']) && $request_info['pid'] != '') {
245 245
             $post['ID'] = $request_info['pid'];
@@ -263,13 +263,13 @@  discard block
 block discarded – undo
263 263
         }
264 264
 
265 265
         // re-hook this function
266
-        add_action('save_post', 'geodir_post_information_save',10,2);
266
+        add_action('save_post', 'geodir_post_information_save', 10, 2);
267 267
 
268 268
         $post_tags = '';
269 269
         if (!isset($request_info['post_tags'])) {
270 270
 
271 271
             $post_type = $request_info['listing_type'];
272
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
272
+            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names')));
273 273
 
274 274
         }
275 275
 
@@ -287,13 +287,13 @@  discard block
 block discarded – undo
287 287
         $payment_info = array();
288 288
         $package_info = array();
289 289
 
290
-        $package_info = (array)geodir_post_package_info($package_info, $post);
290
+        $package_info = (array) geodir_post_package_info($package_info, $post);
291 291
 
292 292
         $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
293 293
 
294 294
         if (!empty($package_info) && !$post_package_id) {
295 295
             if (isset($package_info['days']) && $package_info['days'] != 0) {
296
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
296
+                $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days"));
297 297
             } else {
298 298
                 $payment_info['expire_date'] = 'Never';
299 299
             }
@@ -314,8 +314,8 @@  discard block
 block discarded – undo
314 314
             $extrafields = $val['extra_fields'];
315 315
 
316 316
             if (trim($type) == 'address') {
317
-                $prefix = $name . '_';
318
-                $address = $prefix . 'address';
317
+                $prefix = $name.'_';
318
+                $address = $prefix.'address';
319 319
 
320 320
                 if (isset($request_info[$address]) && $request_info[$address] != '') {
321 321
                     $gd_post_info[$address] = wp_slash($request_info[$address]);
@@ -325,59 +325,59 @@  discard block
 block discarded – undo
325 325
                     $extrafields = unserialize($extrafields);
326 326
 
327 327
 
328
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
328
+                    if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') {
329 329
 
330 330
                         $location_result = geodir_get_default_location();
331 331
 
332
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
333
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
334
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
332
+                        $gd_post_info[$prefix.'city'] = $location_result->city;
333
+                        $gd_post_info[$prefix.'region'] = $location_result->region;
334
+                        $gd_post_info[$prefix.'country'] = $location_result->country;
335 335
 
336
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336
+                        $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location
337 337
 
338 338
                     } else {
339 339
 
340
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
341
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
342
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
340
+                        $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city'];
341
+                        $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region'];
342
+                        $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country'];
343 343
 
344 344
                         //----------set post locations when import dummy data-------
345 345
                         $location_result = geodir_get_default_location();
346 346
 
347
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
347
+                        $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location
348 348
                         //-----------------------------------------------------------------
349 349
 
350 350
                     }
351 351
 
352 352
 
353
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
354
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
353
+                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) {
354
+                        $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip'];
355 355
                     }
356 356
 
357 357
 
358 358
                     if (isset($extrafields['show_map']) && $extrafields['show_map']) {
359 359
 
360
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
361
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
360
+                        if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') {
361
+                            $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude'];
362 362
                         }
363 363
 
364
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
365
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
364
+                        if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') {
365
+                            $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude'];
366 366
                         }
367 367
 
368
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
369
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
368
+                        if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') {
369
+                            $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview'];
370 370
                         }
371 371
 
372
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
373
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
372
+                        if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') {
373
+                            $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom'];
374 374
                         }
375 375
 
376 376
                     }
377 377
 
378 378
                     // show lat lng
379
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
380
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
379
+                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) {
380
+                        $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng'];
381 381
                     }
382 382
                 }
383 383
 
@@ -403,16 +403,16 @@  discard block
 block discarded – undo
403 403
 
404 404
                         // check if we need to change the format or not
405 405
                         $date_format_len = strlen(str_replace(' ', '', $date_format));
406
-                        if($date_format_len>5){// if greater then 5 then it's the old style format.
406
+                        if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
407 407
 
408
-                            $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
409
-                            $replace = array('d','j','l','m','n','F','Y');//PHP date format
408
+                            $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
409
+                            $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
410 410
 
411 411
                             $date_format = str_replace($search, $replace, $date_format);
412 412
 
413 413
                             $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
414 414
 
415
-                        }else{
415
+                        } else {
416 416
                             $post_htmlvar_value = $request_info[$name];
417 417
                         }
418 418
 
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
                 if (isset($request_info[$name])) {
427 427
                     $gd_post_info[$name] = $request_info[$name];
428 428
                 } else {
429
-                    if (isset($request_info['gd_field_' . $name])) {
429
+                    if (isset($request_info['gd_field_'.$name])) {
430 430
                         $gd_post_info[$name] = ''; /* fix de-select for multiselect */
431 431
                     }
432 432
                 }
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
         }
487 487
 
488 488
         if (is_array($post_tags)) {
489
-            $taxonomy = $request_info['listing_type'] . '_tags';
489
+            $taxonomy = $request_info['listing_type'].'_tags';
490 490
             wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
491 491
         }
492 492
 
@@ -498,7 +498,7 @@  discard block
 block discarded – undo
498 498
                 $tmpimgArr = trim($request_info['post_images'], ",");
499 499
                 $tmpimgArr = explode(",", $tmpimgArr);
500 500
                 geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
501
-            } else{
501
+            } else {
502 502
                 geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
503 503
             }
504 504
 
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
     if (!in_array($post_type, $all_postypes))
580 580
         return false;
581 581
 
582
-    $table = $plugin_prefix . $post_type . '_detail';
582
+    $table = $plugin_prefix.$post_type.'_detail';
583 583
 
584 584
     /**
585 585
      * Apply Filter to change Post info
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
      * @since 1.0.0
590 590
      * @package GeoDirectory
591 591
      */
592
-    $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
592
+    $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd
593 593
 			  WHERE p.ID = pd.post_id
594 594
 			  AND pd.post_id = %d", $post_id));
595 595
 
@@ -652,7 +652,7 @@  discard block
 block discarded – undo
652 652
 
653 653
         $post_type = get_post_type($post_id);
654 654
 
655
-        $table = $plugin_prefix . $post_type . '_detail';
655
+        $table = $plugin_prefix.$post_type.'_detail';
656 656
 
657 657
         /**
658 658
          * Filter to change Post info
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
 
674 674
             $columns = $wpdb->get_col("show columns from $table");
675 675
             foreach ($postmeta as $mkey => $mval) {
676
-                if(in_array($mkey,$columns)) {
676
+                if (in_array($mkey, $columns)) {
677 677
                     if (is_array($mval)) {
678 678
                         $mval = implode(",", $mval);
679 679
                     }
@@ -702,12 +702,12 @@  discard block
 block discarded – undo
702 702
              */
703 703
             do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
704 704
 
705
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
705
+            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
706 706
 
707 707
                 $query_string_array[] = $post_id;
708 708
                 $wpdb->query(
709 709
                     $wpdb->prepare(
710
-                        "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d",
710
+                        "UPDATE ".$table." SET ".$query_string_escaped." where post_id =%d",
711 711
                         $query_string_array
712 712
                     )
713 713
                 );
@@ -718,7 +718,7 @@  discard block
 block discarded – undo
718 718
                 array_unshift($query_string_array, $post_id);
719 719
                 $wpdb->query(
720 720
                     $wpdb->prepare(
721
-                        "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped,
721
+                        "INSERT INTO ".$table." SET post_id = %d,".$query_string_escaped,
722 722
                         $query_string_array
723 723
                     )
724 724
                 );
@@ -764,7 +764,7 @@  discard block
 block discarded – undo
764 764
 
765 765
         $post_type = get_post_type($post_id);
766 766
 
767
-        $table = $plugin_prefix . $post_type . '_detail';
767
+        $table = $plugin_prefix.$post_type.'_detail';
768 768
 
769 769
         if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
770 770
 
@@ -772,11 +772,11 @@  discard block
 block discarded – undo
772 772
                 $meta_value = implode(",", $meta_value);
773 773
             }
774 774
 
775
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
775
+            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
776 776
 
777 777
                 $wpdb->query(
778 778
                     $wpdb->prepare(
779
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
779
+                        "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d",
780 780
                         array($post_id)
781 781
                     )
782 782
                 );
@@ -785,7 +785,7 @@  discard block
 block discarded – undo
785 785
 
786 786
                 $wpdb->query(
787 787
                     $wpdb->prepare(
788
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
788
+                        "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'",
789 789
                         array($post_id)
790 790
                     )
791 791
                 );
@@ -818,14 +818,14 @@  discard block
 block discarded – undo
818 818
 
819 819
         $post_type = get_post_type($post_id);
820 820
 
821
-        $table = $plugin_prefix . $post_type . '_detail';
821
+        $table = $plugin_prefix.$post_type.'_detail';
822 822
 
823 823
         if (is_array($postmeta) && !empty($postmeta) && $post_id) {
824 824
             $post_meta_set_query = '';
825 825
 
826 826
             foreach ($postmeta as $mkey) {
827 827
                 if ($mval != '')
828
-                    $post_meta_set_query .= $mkey . " = '', ";
828
+                    $post_meta_set_query .= $mkey." = '', ";
829 829
             }
830 830
 
831 831
             $post_meta_set_query = trim($post_meta_set_query, ", ");
@@ -834,11 +834,11 @@  discard block
 block discarded – undo
834 834
                 return false;
835 835
             }
836 836
 
837
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
837
+            if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
838 838
 
839 839
                 $wpdb->query(
840 840
                     $wpdb->prepare(
841
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
841
+                        "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d",
842 842
                         array($post_id)
843 843
                     )
844 844
                 );
@@ -847,11 +847,11 @@  discard block
 block discarded – undo
847 847
             }
848 848
 
849 849
         } elseif ($postmeta != '' && $post_id) {
850
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
850
+            if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
851 851
 
852 852
                 $wpdb->query(
853 853
                     $wpdb->prepare(
854
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
854
+                        "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d",
855 855
                         array($post_id)
856 856
                     )
857 857
                 );
@@ -893,10 +893,10 @@  discard block
 block discarded – undo
893 893
         if (!in_array($post_type, $all_postypes))
894 894
             return false;
895 895
 
896
-        $table = $plugin_prefix . $post_type . '_detail';
896
+        $table = $plugin_prefix.$post_type.'_detail';
897 897
 
898
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
899
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
898
+        if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') {
899
+            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id)));
900 900
             if ($meta_value && $meta_value !== '') {
901 901
                 return maybe_serialize($meta_value);
902 902
             } else
@@ -929,13 +929,13 @@  discard block
 block discarded – undo
929 929
 
930 930
         $post_type = get_post_type($post_id);
931 931
 
932
-        $table = $plugin_prefix . $post_type . '_detail';
932
+        $table = $plugin_prefix.$post_type.'_detail';
933 933
 
934 934
         $post_images = geodir_get_images($post_id);
935 935
 
936 936
         $wpdb->query(
937 937
             $wpdb->prepare(
938
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
938
+                "UPDATE ".$table." SET featured_image = '' where post_id =%d",
939 939
                 array($post_id)
940 940
             )
941 941
         );
@@ -965,12 +965,12 @@  discard block
 block discarded – undo
965 965
                 $file_path = '';
966 966
                 /* --------- start ------- */
967 967
 
968
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
968
+                $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
969 969
 
970 970
                 $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
971 971
 
972 972
 
973
-                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
973
+                if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM ".GEODIR_ATTACHMENT_TABLE." WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
974 974
 
975 975
                     /* --------- end ------- */
976 976
                     $curr_img_url = $post_image[$m];
@@ -1014,7 +1014,7 @@  discard block
 block discarded – undo
1014 1014
                     // If the uploaded file is the right format
1015 1015
                     if (in_array($uploaded_file_type, $allowed_file_types)) {
1016 1016
                         if (!function_exists('wp_handle_upload')) {
1017
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1017
+                            require_once(ABSPATH.'wp-admin/includes/file.php');
1018 1018
                         }
1019 1019
 
1020 1020
                         if (!is_dir($geodir_uploadpath)) {
@@ -1022,41 +1022,41 @@  discard block
 block discarded – undo
1022 1022
                         }
1023 1023
 
1024 1024
                         $external_img = false;
1025
-                        if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1025
+                        if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
1026 1026
                         } else {
1027 1027
                             $external_img = true;
1028 1028
                         }
1029 1029
 
1030 1030
                         if ($dummy || $external_img) {
1031 1031
                             $uploaded_file = array();
1032
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1032
+                            $uploaded = (array) fetch_remote_file($curr_img_url);
1033 1033
 
1034 1034
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035 1035
                                 $new_name = basename($uploaded['file']);
1036 1036
                                 $uploaded_file = $uploaded;
1037
-                            }else{
1038
-                                print_r($uploaded);exit;
1037
+                            } else {
1038
+                                print_r($uploaded); exit;
1039 1039
                             }
1040 1040
                             $external_img = false;
1041 1041
                         } else {
1042
-                            $new_name = $post_id . '_' . $file_name;
1042
+                            $new_name = $post_id.'_'.$file_name;
1043 1043
 
1044 1044
                             if ($curr_img_dir == $sub_dir) {
1045
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1046
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1045
+                                $img_path = $geodir_uploadpath.'/'.$filename;
1046
+                                $img_url = $geodir_uploadurl.'/'.$filename;
1047 1047
                             } else {
1048
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1049
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1048
+                                $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename;
1049
+                                $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename;
1050 1050
                             }
1051 1051
 
1052 1052
                             $uploaded_file = '';
1053 1053
 
1054 1054
                             if (file_exists($img_path)) {
1055
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1055
+                                $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name);
1056 1056
                                 $file_path = '';
1057
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1057
+                            } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
1058 1058
                                 $uploaded_file = true;
1059
-                                $file_path = $curr_img_dir . '/' . $filename;
1059
+                                $file_path = $curr_img_dir.'/'.$filename;
1060 1060
                             }
1061 1061
 
1062 1062
                             if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
@@ -1065,14 +1065,14 @@  discard block
 block discarded – undo
1065 1065
 
1066 1066
                         if (!empty($uploaded_file)) {
1067 1067
                             if (!isset($file_path) || !$file_path) {
1068
-                                $file_path = $sub_dir . '/' . $new_name;
1068
+                                $file_path = $sub_dir.'/'.$new_name;
1069 1069
                             }
1070 1070
 
1071
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1071
+                            $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
1072 1072
 
1073 1073
                             if ($menu_order == 1) {
1074 1074
 
1075
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1075
+                                $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1076 1076
 
1077 1077
                             }
1078 1078
 
@@ -1090,12 +1090,12 @@  discard block
 block discarded – undo
1090 1090
 
1091 1091
                             foreach ($attachment as $key => $val) {
1092 1092
                                 if ($val != '')
1093
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1093
+                                    $attachment_set .= $key." = '".$val."', ";
1094 1094
                             }
1095 1095
 
1096 1096
                             $attachment_set = trim($attachment_set, ", ");
1097 1097
 
1098
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1098
+                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
1099 1099
 
1100 1100
                             $valid_file_ids[] = $wpdb->insert_id;
1101 1101
                         }
@@ -1106,17 +1106,17 @@  discard block
 block discarded – undo
1106 1106
                 } else {
1107 1107
                     $valid_file_ids[] = $find_image;
1108 1108
 
1109
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1109
+                    $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
1110 1110
 
1111 1111
                     $wpdb->query(
1112 1112
                         $wpdb->prepare(
1113
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1113
+                            "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d",
1114 1114
                             array($menu_order, $split_img_path[1], $post_id)
1115 1115
                         )
1116 1116
                     );
1117 1117
 
1118 1118
                     if ($menu_order == 1)
1119
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1119
+                        $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1120 1120
 
1121 1121
                 }
1122 1122
 
@@ -1140,9 +1140,9 @@  discard block
 block discarded – undo
1140 1140
 
1141 1141
                 foreach ($post_images as $img) {
1142 1142
 
1143
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1143
+                    if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
1144 1144
 
1145
-                        $invalid_files[] = (object)array('src' => $img->src);
1145
+                        $invalid_files[] = (object) array('src' => $img->src);
1146 1146
 
1147 1147
                     }
1148 1148
 
@@ -1150,12 +1150,12 @@  discard block
 block discarded – undo
1150 1150
 
1151 1151
             }
1152 1152
 
1153
-            $invalid_files = (object)$invalid_files;
1153
+            $invalid_files = (object) $invalid_files;
1154 1154
         }
1155 1155
 
1156 1156
         $remove_files[] = $post_id;
1157 1157
 
1158
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1158
+        $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
1159 1159
 
1160 1160
         if (!empty($invalid_files))
1161 1161
             geodir_remove_attachments($invalid_files);
@@ -1195,7 +1195,7 @@  discard block
 block discarded – undo
1195 1195
 			rmdir($dirPath);
1196 1196
 	}	*/
1197 1197
 
1198
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1198
+    $dirname = $uploads_dir.'/temp_'.$current_user->ID;
1199 1199
     geodir_delete_directory($dirname);
1200 1200
 }
1201 1201
 
@@ -1217,10 +1217,10 @@  discard block
 block discarded – undo
1217 1217
         return false;
1218 1218
     while ($file = readdir($dir_handle)) {
1219 1219
         if ($file != "." && $file != "..") {
1220
-            if (!is_dir($dirname . "/" . $file))
1221
-                unlink($dirname . "/" . $file);
1220
+            if (!is_dir($dirname."/".$file))
1221
+                unlink($dirname."/".$file);
1222 1222
             else
1223
-                geodir_delete_directory($dirname . '/' . $file);
1223
+                geodir_delete_directory($dirname.'/'.$file);
1224 1224
         }
1225 1225
     }
1226 1226
     closedir($dir_handle);
@@ -1249,8 +1249,8 @@  discard block
 block discarded – undo
1249 1249
             foreach ($postcurr_images as $postimg) {
1250 1250
                 $image_name_arr = explode('/', $postimg->src);
1251 1251
                 $filename = end($image_name_arr);
1252
-                if (file_exists($uploads_dir . '/' . $filename))
1253
-                    unlink($uploads_dir . '/' . $filename);
1252
+                if (file_exists($uploads_dir.'/'.$filename))
1253
+                    unlink($uploads_dir.'/'.$filename);
1254 1254
             }
1255 1255
 
1256 1256
         } // endif
@@ -1291,7 +1291,7 @@  discard block
 block discarded – undo
1291 1291
         }
1292 1292
 
1293 1293
         if (!in_array($post_type, geodir_get_posttypes())) {
1294
-            return false;// if not a GD CPT return;
1294
+            return false; // if not a GD CPT return;
1295 1295
         }
1296 1296
 
1297 1297
 
@@ -1299,22 +1299,22 @@  discard block
 block discarded – undo
1299 1299
          * Filter to force the list images to be smaller.
1300 1300
          * @since 1.6.18
1301 1301
          */
1302
-        if( $size=='list-thumb' && apply_filters('geodir_use_small_list_img',false) ){
1303
-            $fimg = get_the_post_thumbnail_url($post_id,'medium');
1304
-            if($fimg){
1302
+        if ($size == 'list-thumb' && apply_filters('geodir_use_small_list_img', false)) {
1303
+            $fimg = get_the_post_thumbnail_url($post_id, 'medium');
1304
+            if ($fimg) {
1305 1305
                 $uploads = wp_upload_dir(); 
1306 1306
                 $uploads_baseurl = $uploads['baseurl'];
1307
-                $file = str_replace($uploads_baseurl,'',$fimg);
1307
+                $file = str_replace($uploads_baseurl, '', $fimg);
1308 1308
             }
1309 1309
         }
1310 1310
 
1311
-        $table = $plugin_prefix . $post_type . '_detail';
1311
+        $table = $plugin_prefix.$post_type.'_detail';
1312 1312
 
1313 1313
         if (!$file) {
1314 1314
             if (isset($post->featured_image)) {
1315 1315
                 $file = $post->featured_image;
1316 1316
             } else {
1317
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1317
+                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
1318 1318
             }
1319 1319
         }
1320 1320
 
@@ -1333,7 +1333,7 @@  discard block
 block discarded – undo
1333 1333
 
1334 1334
             $file_name = $file_info['basename'];
1335 1335
 
1336
-            $uploads_url = $uploads_baseurl . $sub_dir;
1336
+            $uploads_url = $uploads_baseurl.$sub_dir;
1337 1337
             /*
1338 1338
              * Allows the filter of image src for such things as CDN change.
1339 1339
              *
@@ -1343,8 +1343,8 @@  discard block
 block discarded – undo
1343 1343
              * @param string $uploads_url The server upload directory url.
1344 1344
              * @param string $uploads_baseurl The uploads dir base url.
1345 1345
              */
1346
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1347
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1346
+            $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1347
+            $img_arr['path'] = $uploads_path.'/'.$file_name;
1348 1348
             $width = 0;
1349 1349
             $height = 0;
1350 1350
             if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1387,7 +1387,7 @@  discard block
 block discarded – undo
1387 1387
                 $file_name = $file_info['basename'];
1388 1388
 
1389 1389
                 $img_arr['src'] = $default_img;
1390
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1390
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1391 1391
 
1392 1392
                 $width = 0;
1393 1393
                 $height = 0;
@@ -1404,7 +1404,7 @@  discard block
 block discarded – undo
1404 1404
         }
1405 1405
 
1406 1406
         if (!empty($img_arr))
1407
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1407
+            return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path );
1408 1408
         else
1409 1409
             return false;
1410 1410
     }
@@ -1467,7 +1467,7 @@  discard block
 block discarded – undo
1467 1467
 
1468 1468
         $arrImages = $wpdb->get_results(
1469 1469
             $wpdb->prepare(
1470
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ",
1470
+                "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d".$not_featured." ORDER BY menu_order ASC, ID DESC $limit_q ",
1471 1471
                 array('%image%', $post_id)
1472 1472
             )
1473 1473
         );
@@ -1493,7 +1493,7 @@  discard block
 block discarded – undo
1493 1493
 
1494 1494
                 $file_name = $file_info['basename'];
1495 1495
 
1496
-                $uploads_url = $uploads_baseurl . $sub_dir;
1496
+                $uploads_url = $uploads_baseurl.$sub_dir;
1497 1497
                 /*
1498 1498
                 * Allows the filter of image src for such things as CDN change.
1499 1499
                 *
@@ -1503,8 +1503,8 @@  discard block
 block discarded – undo
1503 1503
                 * @param string $uploads_url The server upload directory url.
1504 1504
                 * @param string $uploads_baseurl The uploads dir base url.
1505 1505
                 */
1506
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1507
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1506
+                $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1507
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1508 1508
                 $width = 0;
1509 1509
                 $height = 0;
1510 1510
                 if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1521,7 +1521,7 @@  discard block
 block discarded – undo
1521 1521
                 $img_arr['content'] = $attechment->content; // add the description to the array
1522 1522
                 $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1523 1523
 
1524
-                $return_arr[] = (object)$img_arr;
1524
+                $return_arr[] = (object) $img_arr;
1525 1525
 
1526 1526
                 $counter++;
1527 1527
             }
@@ -1532,7 +1532,7 @@  discard block
 block discarded – undo
1532 1532
              * @since 1.6.20
1533 1533
              * @param array $return_arr The array of image objects.
1534 1534
              */
1535
-            return apply_filters('geodir_get_images_arr',$return_arr);
1535
+            return apply_filters('geodir_get_images_arr', $return_arr);
1536 1536
         } else if ($no_images) {
1537 1537
             $default_img = '';
1538 1538
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
@@ -1571,7 +1571,7 @@  discard block
 block discarded – undo
1571 1571
                 $img_arr['title'] = $file_info['filename']; // add the title to the array
1572 1572
                 $img_arr['content'] = $file_info['filename']; // add the description to the array
1573 1573
 
1574
-                $return_arr[] = (object)$img_arr;
1574
+                $return_arr[] = (object) $img_arr;
1575 1575
 
1576 1576
                 /**
1577 1577
                  * Filter the images array so things can be changed.
@@ -1579,7 +1579,7 @@  discard block
 block discarded – undo
1579 1579
                  * @since 1.6.20
1580 1580
                  * @param array $return_arr The array of image objects.
1581 1581
                  */
1582
-                return apply_filters('geodir_get_images_arr',$return_arr);
1582
+                return apply_filters('geodir_get_images_arr', $return_arr);
1583 1583
             } else
1584 1584
                 return false;
1585 1585
         }
@@ -1604,8 +1604,8 @@  discard block
 block discarded – undo
1604 1604
 
1605 1605
         $html = '';
1606 1606
         if (!empty($request)) {
1607
-            if (!is_object($request)){
1608
-                $request = (object)$request;
1607
+            if (!is_object($request)) {
1608
+                $request = (object) $request;
1609 1609
             }
1610 1610
 
1611 1611
             if (isset($request->src) && !isset($request->path)) {
@@ -1619,7 +1619,7 @@  discard block
 block discarded – undo
1619 1619
             $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1620 1620
             $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1621 1621
             if (strpos($img_no_http, $upload_no_http) !== false) {
1622
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1622
+                $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path);
1623 1623
             }
1624 1624
             
1625 1625
             $width = 0;
@@ -1634,7 +1634,7 @@  discard block
 block discarded – undo
1634 1634
             $image->width = $width;
1635 1635
             $image->height = $height;
1636 1636
 
1637
-            $max_size = (object)geodir_get_imagesize($size);
1637
+            $max_size = (object) geodir_get_imagesize($size);
1638 1638
 
1639 1639
             if (!is_wp_error($max_size)) {
1640 1640
                 if ($image->width) {
@@ -1646,15 +1646,15 @@  discard block
 block discarded – undo
1646 1646
                         $width_per = 100;
1647 1647
                 }
1648 1648
 
1649
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1650
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1649
+                if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
1650
+                    $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'"  /></div>';
1651 1651
                 } else {
1652
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1653
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1654
-                    }else{
1652
+                    if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) {
1653
+                        $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>';
1654
+                    } else {
1655 1655
                         //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1656 1656
                         //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1657
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1657
+                        $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1658 1658
 
1659 1659
                     }
1660 1660
 
@@ -1690,15 +1690,15 @@  discard block
 block discarded – undo
1690 1690
 
1691 1691
         $post_type = get_post_type($post_id);
1692 1692
 
1693
-        $table = $plugin_prefix . $post_type . '_detail';
1693
+        $table = $plugin_prefix.$post_type.'_detail';
1694 1694
 
1695 1695
         if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1696 1696
 
1697
-            if ($taxonomy == $post_type . '_tags') {
1697
+            if ($taxonomy == $post_type.'_tags') {
1698 1698
                 if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1699 1699
                     geodir_save_post_meta($post_id, 'post_tags', $terms);
1700 1700
                 }
1701
-            } elseif ($taxonomy == $post_type . 'category') {
1701
+            } elseif ($taxonomy == $post_type.'category') {
1702 1702
                 $srcharr = array('"', '\\');
1703 1703
                 $replarr = array("&quot;", '');
1704 1704
 
@@ -1720,7 +1720,7 @@  discard block
 block discarded – undo
1720 1720
 
1721 1721
                     $wpdb->get_var(
1722 1722
                         $wpdb->prepare(
1723
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1723
+                            "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ",
1724 1724
                             $cat_ids_array_del
1725 1725
                         )
1726 1726
                     );
@@ -1728,7 +1728,7 @@  discard block
 block discarded – undo
1728 1728
 
1729 1729
                     $post_term = $wpdb->get_col(
1730 1730
                         $wpdb->prepare(
1731
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1731
+                            "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1732 1732
                             $cat_ids_array
1733 1733
                         )
1734 1734
                     );
@@ -1750,16 +1750,16 @@  discard block
 block discarded – undo
1750 1750
                         $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1751 1751
                         $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1752 1752
 
1753
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1754
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1753
+                        $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1754
+                        $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true);
1755 1755
 
1756 1756
                         $json = '{';
1757
-                        $json .= '"id":"' . $post_id . '",';
1758
-                        $json .= '"lat_pos": "' . $lat . '",';
1759
-                        $json .= '"long_pos": "' . $lng . '",';
1760
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1761
-                        $json .= '"icon":"' . $term_icon . '",';
1762
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1757
+                        $json .= '"id":"'.$post_id.'",';
1758
+                        $json .= '"lat_pos": "'.$lat.'",';
1759
+                        $json .= '"long_pos": "'.$lng.'",';
1760
+                        $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",';
1761
+                        $json .= '"icon":"'.$term_icon.'",';
1762
+                        $json .= '"group":"catgroup'.$cat_id.'"';
1763 1763
                         $json .= '}';
1764 1764
 
1765 1765
 
@@ -1767,9 +1767,9 @@  discard block
 block discarded – undo
1767 1767
                             $post_marker_json = $json;
1768 1768
 
1769 1769
 
1770
-                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1770
+                        if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".GEODIR_ICON_TABLE." WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
1771 1771
 
1772
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1772
+                            $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
1773 1773
 										post_title = %s,
1774 1774
 										json = %s
1775 1775
 										WHERE post_id = %d AND cat_id = %d ",
@@ -1777,7 +1777,7 @@  discard block
 block discarded – undo
1777 1777
 
1778 1778
                         } else {
1779 1779
 
1780
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1780
+                            $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
1781 1781
 										post_id = %d,
1782 1782
 										post_title = %s,
1783 1783
 										cat_id = %d,
@@ -1795,17 +1795,17 @@  discard block
 block discarded – undo
1795 1795
                 if (!empty($post_term) && is_array($post_term)) {
1796 1796
                     $categories = implode(',', $post_term);
1797 1797
 
1798
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1798
+                    if ($categories != '' && $categories != 0) $categories = ','.$categories.',';
1799 1799
 
1800 1800
                     if (empty($post_marker_json))
1801 1801
                         $post_marker_json = isset($json) ? $json : '';
1802 1802
 
1803
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1803
+                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
1804 1804
 
1805 1805
                         $wpdb->query(
1806 1806
                             $wpdb->prepare(
1807
-                                "UPDATE " . $table . " SET
1808
-								" . $taxonomy . " = %s,
1807
+                                "UPDATE ".$table." SET
1808
+								" . $taxonomy." = %s,
1809 1809
 								marker_json = %s
1810 1810
 								where post_id = %d",
1811 1811
                                 array($categories, $post_marker_json, $post_id)
@@ -1826,7 +1826,7 @@  discard block
 block discarded – undo
1826 1826
 
1827 1827
                                     $wpdb->query(
1828 1828
                                         $wpdb->prepare(
1829
-                                            "UPDATE " . $table . " SET
1829
+                                            "UPDATE ".$table." SET
1830 1830
 											default_category = %s
1831 1831
 											where post_id = %d",
1832 1832
                                             array($categories[0], $post_id)
@@ -1851,9 +1851,9 @@  discard block
 block discarded – undo
1851 1851
 
1852 1852
                         $wpdb->query(
1853 1853
                             $wpdb->prepare(
1854
-                                "INSERT INTO " . $table . " SET
1854
+                                "INSERT INTO ".$table." SET
1855 1855
 								post_id = %d,
1856
-								" . $taxonomy . " = %s,
1856
+								" . $taxonomy." = %s,
1857 1857
 								marker_json = %s ",
1858 1858
 
1859 1859
                                 array($post_id, $categories, $post_marker_json)
@@ -1985,7 +1985,7 @@  discard block
 block discarded – undo
1985 1985
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
1986 1986
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1987 1987
                             <?php
1988
-                            }else{
1988
+                            } else {
1989 1989
                                 echo '<div class="geodir-bubble_image"></div>';
1990 1990
                             }
1991 1991
                         } else {
@@ -1993,7 +1993,7 @@  discard block
 block discarded – undo
1993 1993
                                 ?>
1994 1994
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1995 1995
                             <?php
1996
-                            }else{
1996
+                            } else {
1997 1997
                                 echo '<div class="geodir-bubble_image"></div>';
1998 1998
                             }
1999 1999
                         }
@@ -2023,7 +2023,7 @@  discard block
 block discarded – undo
2023 2023
                              * @param object $postinfo_obj The posts info as an object.
2024 2024
                              * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
2025 2025
                              */
2026
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
2026
+                            do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
2027 2027
                             ?>
2028 2028
                         </div>
2029 2029
                         <?php
@@ -2033,9 +2033,9 @@  discard block
 block discarded – undo
2033 2033
                             <div class="geodir-bubble-meta-fade"></div>
2034 2034
                             <div class="geodir-bubble-meta-bottom">
2035 2035
                                 <?php if ($rating_star != '') { ?>
2036
-                                <span class="geodir-bubble-rating"><?php echo $rating_star;?></span>
2036
+                                <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span>
2037 2037
                                 <?php } ?>
2038
-                                <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span>
2038
+                                <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span>
2039 2039
                                 <span class="geodir-bubble-reviews">
2040 2040
                                     <a href="<?php echo get_comments_link($ID); ?>" class="geodir-pcomments"><i class="fa fa-comments"></i> <?php echo get_comments_number($ID); ?></a>
2041 2041
                                 </span>
@@ -2097,11 +2097,11 @@  discard block
 block discarded – undo
2097 2097
 
2098 2098
         $post_type = get_post_type($post_id);
2099 2099
 
2100
-        $table = $plugin_prefix . $post_type . '_detail';
2100
+        $table = $plugin_prefix.$post_type.'_detail';
2101 2101
 
2102 2102
         $wpdb->query(
2103 2103
             $wpdb->prepare(
2104
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2104
+                "UPDATE ".$table." SET post_status=%s WHERE post_id=%d",
2105 2105
                 array($status, $post_id)
2106 2106
             )
2107 2107
         );
@@ -2173,18 +2173,18 @@  discard block
 block discarded – undo
2173 2173
 
2174 2174
         $post_type = get_post_type($post_id);
2175 2175
 
2176
-        $table = $plugin_prefix . $post_type . '_detail';
2176
+        $table = $plugin_prefix.$post_type.'_detail';
2177 2177
 
2178 2178
         $wpdb->query(
2179 2179
             $wpdb->prepare(
2180
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2180
+                "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d",
2181 2181
                 array($updatingpost, $temppost)
2182 2182
             )
2183 2183
         );
2184 2184
 
2185 2185
         $wpdb->query(
2186 2186
             $wpdb->prepare(
2187
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2187
+                "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2188 2188
                 array($updatingpost, $temppost)
2189 2189
             )
2190 2190
         );
@@ -2193,7 +2193,7 @@  discard block
 block discarded – undo
2193 2193
 
2194 2194
         $wpdb->query(
2195 2195
             $wpdb->prepare(
2196
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2196
+                "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2197 2197
                 array($updatingpost, $temppost)
2198 2198
             )
2199 2199
         );
@@ -2231,12 +2231,12 @@  discard block
 block discarded – undo
2231 2231
         if (!in_array($post_type, $all_postypes))
2232 2232
             return false;
2233 2233
 
2234
-        $table = $plugin_prefix . $post_type . '_detail';
2234
+        $table = $plugin_prefix.$post_type.'_detail';
2235 2235
 
2236 2236
         /* Delete custom post meta*/
2237 2237
         $wpdb->query(
2238 2238
             $wpdb->prepare(
2239
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2239
+                "DELETE FROM ".$table." WHERE `post_id` = %d",
2240 2240
                 array($deleted_postid)
2241 2241
             )
2242 2242
         );
@@ -2245,7 +2245,7 @@  discard block
 block discarded – undo
2245 2245
 
2246 2246
         $wpdb->query(
2247 2247
             $wpdb->prepare(
2248
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2248
+                "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d",
2249 2249
                 array($deleted_postid)
2250 2250
             )
2251 2251
         );
@@ -2255,7 +2255,7 @@  discard block
 block discarded – undo
2255 2255
 
2256 2256
         $wpdb->query(
2257 2257
             $wpdb->prepare(
2258
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2258
+                "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d",
2259 2259
                 array($deleted_postid)
2260 2260
             )
2261 2261
         );
@@ -2327,7 +2327,7 @@  discard block
 block discarded – undo
2327 2327
          */
2328 2328
         do_action('geodir_before_add_from_favorite', $post_id);
2329 2329
 
2330
-        echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>';
2330
+        echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>';
2331 2331
 
2332 2332
         /**
2333 2333
          * Called after adding the post from favourites.
@@ -2406,7 +2406,7 @@  discard block
 block discarded – undo
2406 2406
          */
2407 2407
         do_action('geodir_before_remove_from_favorite', $post_id);
2408 2408
 
2409
-        echo '<a href="javascript:void(0);"  title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>';
2409
+        echo '<a href="javascript:void(0);"  title="'.$add_favourite_text.'" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>';
2410 2410
 
2411 2411
         /**
2412 2412
          * Called after removing the post from favourites.
@@ -2501,24 +2501,24 @@  discard block
 block discarded – undo
2501 2501
             $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2502 2502
 
2503 2503
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2504
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2504
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"  ><a
2505 2505
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2506
-                onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2507
-                title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2506
+                onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');"
2507
+                title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?>
2508 2508
             </a>   </span><?php
2509 2509
 
2510 2510
         } else {
2511 2511
 
2512 2512
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2513
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2513
+                $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\'';
2514 2514
             } else
2515
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2515
+                $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
2516 2516
 
2517
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2517
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon"
2518 2518
                                                                                         href="javascript:void(0);"
2519
-                                                                                        onclick="<?php echo $script_text;?>"
2520
-                                                                                        title="<?php echo $add_favourite_text;?>"><i
2521
-                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2519
+                                                                                        onclick="<?php echo $script_text; ?>"
2520
+                                                                                        title="<?php echo $add_favourite_text; ?>"><i
2521
+                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span>
2522 2522
         <?php }
2523 2523
     }
2524 2524
 }
@@ -2548,7 +2548,7 @@  discard block
 block discarded – undo
2548 2548
 
2549 2549
             $post_type = $taxonomy_obj->object_type[0];
2550 2550
 
2551
-            $table = $plugin_prefix . $post_type . '_detail';
2551
+            $table = $plugin_prefix.$post_type.'_detail';
2552 2552
 
2553 2553
             /**
2554 2554
              * Filter to modify the 'join' query
@@ -2571,8 +2571,8 @@  discard block
 block discarded – undo
2571 2571
             $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2572 2572
 
2573 2573
             $count_query = "SELECT count(post_id) FROM
2574
-							" . $table . " as pd " . $join . "
2575
-							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2574
+							" . $table." as pd ".$join."
2575
+							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
2576 2576
 
2577 2577
             $cat_post_count = $wpdb->get_var($count_query);
2578 2578
             if (empty($cat_post_count) || is_wp_error($cat_post_count))
@@ -2655,7 +2655,7 @@  discard block
 block discarded – undo
2655 2655
     global $post;
2656 2656
     $all_postypes = geodir_get_posttypes();
2657 2657
     if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2658
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2658
+        return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>';
2659 2659
     }
2660 2660
 
2661 2661
     return $more;
@@ -2682,14 +2682,14 @@  discard block
 block discarded – undo
2682 2682
     if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2683 2683
 
2684 2684
         $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2685
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2685
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
2686 2686
 
2687 2687
         $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2688
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2688
+        $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png';
2689 2689
 
2690 2690
         $posts = $wpdb->get_results(
2691 2691
             $wpdb->prepare(
2692
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2692
+                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ",
2693 2693
                 array($term_id, $taxonomy)
2694 2694
             )
2695 2695
         );
@@ -2701,19 +2701,19 @@  discard block
 block discarded – undo
2701 2701
                 $lng = $post_obj->post_longitude;
2702 2702
 
2703 2703
                 $json = '{';
2704
-                $json .= '"id":"' . $post_obj->post_id . '",';
2705
-                $json .= '"lat_pos": "' . $lat . '",';
2706
-                $json .= '"long_pos": "' . $lng . '",';
2707
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2708
-                $json .= '"icon":"' . $term_icon . '",';
2709
-                $json .= '"group":"catgroup' . $term_id . '"';
2704
+                $json .= '"id":"'.$post_obj->post_id.'",';
2705
+                $json .= '"lat_pos": "'.$lat.'",';
2706
+                $json .= '"long_pos": "'.$lng.'",';
2707
+                $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",';
2708
+                $json .= '"icon":"'.$term_icon.'",';
2709
+                $json .= '"group":"catgroup'.$term_id.'"';
2710 2710
                 $json .= '}';
2711 2711
 
2712 2712
                 if ($post_obj->default_category == $term_id) {
2713 2713
 
2714 2714
                     $wpdb->query(
2715 2715
                         $wpdb->prepare(
2716
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2716
+                            "UPDATE ".$table." SET marker_json = %s where post_id = %d",
2717 2717
                             array($json, $post_obj->post_id)
2718 2718
                         )
2719 2719
                     );
@@ -2721,7 +2721,7 @@  discard block
 block discarded – undo
2721 2721
 
2722 2722
                 $wpdb->query(
2723 2723
                     $wpdb->prepare(
2724
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2724
+                        "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d",
2725 2725
                         array($json, $post_obj->post_id, $term_id)
2726 2726
                     )
2727 2727
                 );
@@ -2845,7 +2845,7 @@  discard block
 block discarded – undo
2845 2845
 //	print_r($uploads ) ;
2846 2846
     $post_first_image = $wpdb->get_results(
2847 2847
         $wpdb->prepare(
2848
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2848
+            "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1  ", array($post_id)
2849 2849
         )
2850 2850
     );
2851 2851
 
@@ -2866,9 +2866,9 @@  discard block
 block discarded – undo
2866 2866
 
2867 2867
         $post_type = get_post_type($post_id);
2868 2868
 
2869
-        $table_name = $plugin_prefix . $post_type . '_detail';
2869
+        $table_name = $plugin_prefix.$post_type.'_detail';
2870 2870
 
2871
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2871
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
2872 2872
 
2873 2873
         $new_attachment_name = basename($post_first_image[0]->file);
2874 2874
 
@@ -2881,11 +2881,11 @@  discard block
 block discarded – undo
2881 2881
                 wp_delete_attachment($post_thumbnail_id);
2882 2882
 
2883 2883
             }
2884
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2884
+            $filename = $uploads['basedir'].$post_first_image[0]->file;
2885 2885
 
2886 2886
             $attachment = array(
2887 2887
                 'post_mime_type' => $post_first_image[0]->mime_type,
2888
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2888
+                'guid' => $uploads['baseurl'].$post_first_image[0]->file,
2889 2889
                 'post_parent' => $post_id,
2890 2890
                 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2891 2891
                 'post_content' => ''
@@ -2898,7 +2898,7 @@  discard block
 block discarded – undo
2898 2898
 
2899 2899
                 set_post_thumbnail($post_id, $id);
2900 2900
 
2901
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2901
+                require_once(ABSPATH.'wp-admin/includes/image.php');
2902 2902
                 wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2903 2903
 
2904 2904
             }
@@ -2931,35 +2931,35 @@  discard block
 block discarded – undo
2931 2931
         $post_id = absint($_POST['post_id']);
2932 2932
         $upload_dir = wp_upload_dir();
2933 2933
         $post_type = get_post_type($_POST['post_id']);
2934
-        $table = $plugin_prefix . $post_type . '_detail';
2934
+        $table = $plugin_prefix.$post_type.'_detail';
2935 2935
 
2936 2936
         $post_arr = $wpdb->get_results($wpdb->prepare(
2937
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2937
+            "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2938 2938
             array($post_id)
2939 2939
         )
2940 2940
             , ARRAY_A);
2941 2941
 
2942 2942
         $arrImages = $wpdb->get_results(
2943 2943
             $wpdb->prepare(
2944
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2944
+                "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2945 2945
                 array('%image%', $post_id)
2946 2946
             )
2947 2947
         );
2948 2948
         if ($arrImages) {
2949 2949
             $image_arr = array();
2950 2950
             foreach ($arrImages as $img) {
2951
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2951
+                $image_arr[] = $upload_dir['baseurl'].$img->file;
2952 2952
             }
2953 2953
             $comma_separated = implode(",", $image_arr);
2954 2954
             $post_arr[0]['post_images'] = $comma_separated;
2955 2955
         }
2956 2956
 
2957 2957
 
2958
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2958
+        $cats = $post_arr[0][$post_arr[0]['post_type'].'category'];
2959 2959
         $cat_arr = array_filter(explode(",", $cats));
2960 2960
         $trans_cat = array();
2961 2961
         foreach ($cat_arr as $cat) {
2962
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2962
+            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false);
2963 2963
         }
2964 2964
 
2965 2965
 
@@ -3001,7 +3001,7 @@  discard block
 block discarded – undo
3001 3001
 
3002 3002
     $get_data = $wpdb->get_results(
3003 3003
         $wpdb->prepare(
3004
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
3004
+            "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'",
3005 3005
             array($listing_type)
3006 3006
         )
3007 3007
     );
@@ -3014,12 +3014,12 @@  discard block
 block discarded – undo
3014 3014
 
3015 3015
                 $extra_fields = unserialize($data->extra_fields);
3016 3016
 
3017
-                $prefix = $data->htmlvar_name . '_';
3017
+                $prefix = $data->htmlvar_name.'_';
3018 3018
 
3019
-                $fields_info[$prefix . 'address'] = $data->field_type;
3019
+                $fields_info[$prefix.'address'] = $data->field_type;
3020 3020
 
3021 3021
                 if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
3022
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
3022
+                    $fields_info[$prefix.'zip'] = $data->field_type;
3023 3023
 
3024 3024
             } else {
3025 3025
 
@@ -3117,13 +3117,13 @@  discard block
 block discarded – undo
3117 3117
  * @since 1.4.9
3118 3118
  * @package GeoDirectory
3119 3119
  */
3120
-function geodir_fb_like_thumbnail(){
3120
+function geodir_fb_like_thumbnail() {
3121 3121
 
3122 3122
     // return if not a single post
3123
-    if(!is_single()){return;}
3123
+    if (!is_single()) {return; }
3124 3124
 
3125 3125
     global $post;
3126
-    if(isset($post->featured_image) && $post->featured_image){
3126
+    if (isset($post->featured_image) && $post->featured_image) {
3127 3127
         $upload_dir = wp_upload_dir();
3128 3128
         $thumb = $upload_dir['baseurl'].$post->featured_image;
3129 3129
         echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
Please login to merge, or discard this patch.
Braces   +171 added lines, -121 removed lines patch added patch discarded remove patch
@@ -21,12 +21,13 @@  discard block
 block discarded – undo
21 21
 {
22 22
 
23 23
     $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
24
+    if (!empty($post_cat_ids)) {
25
+            $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+    }
26 27
 
27 28
     if (!isset($default_cat) || empty($default_cat)) {
28 29
         $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
+    } else{
30 31
         if(!is_int($default_cat)){
31 32
             $category = get_term_by('name', $default_cat, $taxonomy);
32 33
             if(isset($category->term_id)){
@@ -384,8 +385,9 @@  discard block
 block discarded – undo
384 385
             } elseif (trim($type) == 'file') {
385 386
                 if (isset($request_info[$name])) {
386 387
                     $request_files = array();
387
-                    if ($request_info[$name] != '')
388
-                        $request_files = explode(",", $request_info[$name]);
388
+                    if ($request_info[$name] != '') {
389
+                                            $request_files = explode(",", $request_info[$name]);
390
+                    }
389 391
 
390 392
                     $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
391 393
                     geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
@@ -412,7 +414,7 @@  discard block
 block discarded – undo
412 414
 
413 415
                             $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
414 416
 
415
-                        }else{
417
+                        } else{
416 418
                             $post_htmlvar_value = $request_info[$name];
417 419
                         }
418 420
 
@@ -452,15 +454,17 @@  discard block
 block discarded – undo
452 454
 
453 455
             foreach ($request_info['post_category'] as $taxonomy => $cat) {
454 456
 
455
-                if ($dummy)
456
-                    $post_category = $cat;
457
-                else {
457
+                if ($dummy) {
458
+                                    $post_category = $cat;
459
+                } else {
458 460
 
459
-                    if (!is_array($cat) && strstr($cat, ','))
460
-                        $cat = explode(',', $cat);
461
+                    if (!is_array($cat) && strstr($cat, ',')) {
462
+                                            $cat = explode(',', $cat);
463
+                    }
461 464
 
462
-                    if (!empty($cat) && is_array($cat))
463
-                        $post_category = array_map('intval', $cat);
465
+                    if (!empty($cat) && is_array($cat)) {
466
+                                            $post_category = array_map('intval', $cat);
467
+                    }
464 468
                 }
465 469
 
466 470
                 wp_set_object_terms($last_post_id, $post_category, $taxonomy);
@@ -478,11 +482,13 @@  discard block
 block discarded – undo
478 482
         if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
479 483
             $post_tags = explode(",", $request_info['post_tags']);
480 484
         } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
481
-            if ($dummy)
482
-                $post_tags = $request_info['post_tags'];
485
+            if ($dummy) {
486
+                            $post_tags = $request_info['post_tags'];
487
+            }
483 488
         } else {
484
-            if ($dummy)
485
-                $post_tags = array($request_info['post_title']);
489
+            if ($dummy) {
490
+                            $post_tags = array($request_info['post_title']);
491
+            }
486 492
         }
487 493
 
488 494
         if (is_array($post_tags)) {
@@ -569,15 +575,17 @@  discard block
 block discarded – undo
569 575
 
570 576
     global $wpdb, $plugin_prefix, $post, $post_info;
571 577
 
572
-    if ($post_id == '' && !empty($post))
573
-        $post_id = $post->ID;
578
+    if ($post_id == '' && !empty($post)) {
579
+            $post_id = $post->ID;
580
+    }
574 581
 
575 582
     $post_type = get_post_type($post_id);
576 583
 
577 584
     $all_postypes = geodir_get_posttypes();
578 585
 
579
-    if (!in_array($post_type, $all_postypes))
580
-        return false;
586
+    if (!in_array($post_type, $all_postypes)) {
587
+            return false;
588
+    }
581 589
 
582 590
     $table = $plugin_prefix . $post_type . '_detail';
583 591
 
@@ -737,8 +745,9 @@  discard block
 block discarded – undo
737 745
             do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
738 746
 
739 747
             return true;
740
-        } else
741
-            return false;
748
+        } else {
749
+                    return false;
750
+        }
742 751
 
743 752
     }
744 753
 }
@@ -792,8 +801,9 @@  discard block
 block discarded – undo
792 801
             }
793 802
 
794 803
 
795
-        } else
796
-            return false;
804
+        } else {
805
+                    return false;
806
+        }
797 807
     }
798 808
 }
799 809
 
@@ -824,8 +834,9 @@  discard block
 block discarded – undo
824 834
             $post_meta_set_query = '';
825 835
 
826 836
             foreach ($postmeta as $mkey) {
827
-                if ($mval != '')
828
-                    $post_meta_set_query .= $mkey . " = '', ";
837
+                if ($mval != '') {
838
+                                    $post_meta_set_query .= $mkey . " = '', ";
839
+                }
829 840
             }
830 841
 
831 842
             $post_meta_set_query = trim($post_meta_set_query, ", ");
@@ -859,8 +870,9 @@  discard block
 block discarded – undo
859 870
                 return true;
860 871
             }
861 872
 
862
-        } else
863
-            return false;
873
+        } else {
874
+                    return false;
875
+        }
864 876
     }
865 877
 }
866 878
 
@@ -890,8 +902,9 @@  discard block
 block discarded – undo
890 902
 
891 903
         $post_type = get_post_type($post_id);
892 904
 
893
-        if (!in_array($post_type, $all_postypes))
894
-            return false;
905
+        if (!in_array($post_type, $all_postypes)) {
906
+                    return false;
907
+        }
895 908
 
896 909
         $table = $plugin_prefix . $post_type . '_detail';
897 910
 
@@ -899,8 +912,9 @@  discard block
 block discarded – undo
899 912
             $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
900 913
             if ($meta_value && $meta_value !== '') {
901 914
                 return maybe_serialize($meta_value);
902
-            } else
903
-                return $meta_value;
915
+            } else {
916
+                            return $meta_value;
917
+            }
904 918
         } else {
905 919
             return false;
906 920
         }
@@ -1034,7 +1048,7 @@  discard block
 block discarded – undo
1034 1048
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1035 1049
                                 $new_name = basename($uploaded['file']);
1036 1050
                                 $uploaded_file = $uploaded;
1037
-                            }else{
1051
+                            } else{
1038 1052
                                 print_r($uploaded);exit;
1039 1053
                             }
1040 1054
                             $external_img = false;
@@ -1059,8 +1073,9 @@  discard block
 block discarded – undo
1059 1073
                                 $file_path = $curr_img_dir . '/' . $filename;
1060 1074
                             }
1061 1075
 
1062
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1063
-                                unlink($img_path);
1076
+                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) {
1077
+                                                            unlink($img_path);
1078
+                            }
1064 1079
                         }
1065 1080
 
1066 1081
                         if (!empty($uploaded_file)) {
@@ -1089,8 +1104,9 @@  discard block
 block discarded – undo
1089 1104
                             $attachment_set = '';
1090 1105
 
1091 1106
                             foreach ($attachment as $key => $val) {
1092
-                                if ($val != '')
1093
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1107
+                                if ($val != '') {
1108
+                                                                    $attachment_set .= $key . " = '" . $val . "', ";
1109
+                                }
1094 1110
                             }
1095 1111
 
1096 1112
                             $attachment_set = trim($attachment_set, ", ");
@@ -1115,8 +1131,9 @@  discard block
 block discarded – undo
1115 1131
                         )
1116 1132
                     );
1117 1133
 
1118
-                    if ($menu_order == 1)
1119
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1134
+                    if ($menu_order == 1) {
1135
+                                            $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1136
+                    }
1120 1137
 
1121 1138
                 }
1122 1139
 
@@ -1157,8 +1174,9 @@  discard block
 block discarded – undo
1157 1174
 
1158 1175
         $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1159 1176
 
1160
-        if (!empty($invalid_files))
1161
-            geodir_remove_attachments($invalid_files);
1177
+        if (!empty($invalid_files)) {
1178
+                    geodir_remove_attachments($invalid_files);
1179
+        }
1162 1180
     }
1163 1181
 
1164 1182
 }
@@ -1211,16 +1229,19 @@  discard block
 block discarded – undo
1211 1229
 function geodir_delete_directory($dirname)
1212 1230
 {
1213 1231
     $dir_handle = '';
1214
-    if (is_dir($dirname))
1215
-        $dir_handle = opendir($dirname);
1216
-    if (!$dir_handle)
1217
-        return false;
1232
+    if (is_dir($dirname)) {
1233
+            $dir_handle = opendir($dirname);
1234
+    }
1235
+    if (!$dir_handle) {
1236
+            return false;
1237
+    }
1218 1238
     while ($file = readdir($dir_handle)) {
1219 1239
         if ($file != "." && $file != "..") {
1220
-            if (!is_dir($dirname . "/" . $file))
1221
-                unlink($dirname . "/" . $file);
1222
-            else
1223
-                geodir_delete_directory($dirname . '/' . $file);
1240
+            if (!is_dir($dirname . "/" . $file)) {
1241
+                            unlink($dirname . "/" . $file);
1242
+            } else {
1243
+                            geodir_delete_directory($dirname . '/' . $file);
1244
+            }
1224 1245
         }
1225 1246
     }
1226 1247
     closedir($dir_handle);
@@ -1249,8 +1270,9 @@  discard block
 block discarded – undo
1249 1270
             foreach ($postcurr_images as $postimg) {
1250 1271
                 $image_name_arr = explode('/', $postimg->src);
1251 1272
                 $filename = end($image_name_arr);
1252
-                if (file_exists($uploads_dir . '/' . $filename))
1253
-                    unlink($uploads_dir . '/' . $filename);
1273
+                if (file_exists($uploads_dir . '/' . $filename)) {
1274
+                                    unlink($uploads_dir . '/' . $filename);
1275
+                }
1254 1276
             }
1255 1277
 
1256 1278
         } // endif
@@ -1369,9 +1391,9 @@  discard block
 block discarded – undo
1369 1391
                 $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1370 1392
             }
1371 1393
 
1372
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1373
-                $default_img = $default_catimg['src'];
1374
-            elseif ($no_image) {
1394
+            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) {
1395
+                            $default_img = $default_catimg['src'];
1396
+            } elseif ($no_image) {
1375 1397
                 $default_img = get_option('geodir_listing_no_img');
1376 1398
             }
1377 1399
 
@@ -1403,10 +1425,13 @@  discard block
 block discarded – undo
1403 1425
             }
1404 1426
         }
1405 1427
 
1406
-        if (!empty($img_arr))
1407
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1408
-        else
1409
-            return false;
1428
+        if (!empty($img_arr)) {
1429
+                    return (object)$img_arr;
1430
+        }
1431
+        //return (object)array( 'src' => $file_url, 'path' => $file_path );
1432
+        else {
1433
+                    return false;
1434
+        }
1410 1435
     }
1411 1436
 }
1412 1437
 
@@ -1433,8 +1458,9 @@  discard block
 block discarded – undo
1433 1458
             echo $html;
1434 1459
         } elseif (!empty($html)) {
1435 1460
             return $html;
1436
-        } else
1437
-            return false;
1461
+        } else {
1462
+                    return false;
1463
+        }
1438 1464
     }
1439 1465
 }
1440 1466
 
@@ -1462,8 +1488,9 @@  discard block
 block discarded – undo
1462 1488
         }
1463 1489
         $not_featured = '';
1464 1490
         $sub_dir = '';
1465
-        if (!$add_featured)
1466
-            $not_featured = " AND is_featured = 0 ";
1491
+        if (!$add_featured) {
1492
+                    $not_featured = " AND is_featured = 0 ";
1493
+        }
1467 1494
 
1468 1495
         $arrImages = $wpdb->get_results(
1469 1496
             $wpdb->prepare(
@@ -1484,8 +1511,9 @@  discard block
 block discarded – undo
1484 1511
 
1485 1512
                 $file_info = pathinfo($attechment->file);
1486 1513
 
1487
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1488
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1514
+                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1515
+                                    $sub_dir = stripslashes_deep($file_info['dirname']);
1516
+                }
1489 1517
 
1490 1518
                 $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1491 1519
                 $uploads_baseurl = $uploads['baseurl'];
@@ -1537,9 +1565,9 @@  discard block
 block discarded – undo
1537 1565
             $default_img = '';
1538 1566
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1539 1567
             $post_type = get_post_type($post_id);
1540
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1541
-                $default_img = $default_catimg['src'];
1542
-            elseif ($no_images) {
1568
+            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) {
1569
+                            $default_img = $default_catimg['src'];
1570
+            } elseif ($no_images) {
1543 1571
                 $default_img = get_option('geodir_listing_no_img');
1544 1572
             }
1545 1573
 
@@ -1580,8 +1608,9 @@  discard block
 block discarded – undo
1580 1608
                  * @param array $return_arr The array of image objects.
1581 1609
                  */
1582 1610
                 return apply_filters('geodir_get_images_arr',$return_arr);
1583
-            } else
1584
-                return false;
1611
+            } else {
1612
+                            return false;
1613
+            }
1585 1614
         }
1586 1615
     }
1587 1616
 }
@@ -1642,8 +1671,9 @@  discard block
 block discarded – undo
1642 1671
                         $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1643 1672
                     } else if ($image->width < ($max_size->h)) {
1644 1673
                         $width_per = round((($image->width / $max_size->w) * 100), 2);
1645
-                    } else
1646
-                        $width_per = 100;
1674
+                    } else {
1675
+                                            $width_per = 100;
1676
+                    }
1647 1677
                 }
1648 1678
 
1649 1679
                 if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
@@ -1651,7 +1681,7 @@  discard block
 block discarded – undo
1651 1681
                 } else {
1652 1682
                     if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1653 1683
                         $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1654
-                    }else{
1684
+                    } else{
1655 1685
                         //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1656 1686
                         //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1657 1687
                         $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
@@ -1666,8 +1696,9 @@  discard block
 block discarded – undo
1666 1696
             echo $html;
1667 1697
         } elseif (!empty($html)) {
1668 1698
             return $html;
1669
-        } else
1670
-            return false;
1699
+        } else {
1700
+                    return false;
1701
+        }
1671 1702
     }
1672 1703
 }
1673 1704
 
@@ -1705,8 +1736,9 @@  discard block
 block discarded – undo
1705 1736
                 $post_obj = get_post($post_id);
1706 1737
 
1707 1738
                 $cat_ids = array('0');
1708
-                if (is_array($tt_ids))
1709
-                    $cat_ids = $tt_ids;
1739
+                if (is_array($tt_ids)) {
1740
+                                    $cat_ids = $tt_ids;
1741
+                }
1710 1742
 
1711 1743
 
1712 1744
                 if (!empty($cat_ids)) {
@@ -1763,8 +1795,9 @@  discard block
 block discarded – undo
1763 1795
                         $json .= '}';
1764 1796
 
1765 1797
 
1766
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1767
-                            $post_marker_json = $json;
1798
+                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) {
1799
+                                                    $post_marker_json = $json;
1800
+                        }
1768 1801
 
1769 1802
 
1770 1803
                         if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
@@ -1795,10 +1828,13 @@  discard block
 block discarded – undo
1795 1828
                 if (!empty($post_term) && is_array($post_term)) {
1796 1829
                     $categories = implode(',', $post_term);
1797 1830
 
1798
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1831
+                    if ($categories != '' && $categories != 0) {
1832
+                    	$categories = ',' . $categories . ',';
1833
+                    }
1799 1834
 
1800
-                    if (empty($post_marker_json))
1801
-                        $post_marker_json = isset($json) ? $json : '';
1835
+                    if (empty($post_marker_json)) {
1836
+                                            $post_marker_json = isset($json) ? $json : '';
1837
+                    }
1802 1838
 
1803 1839
                     if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1804 1840
 
@@ -1837,8 +1873,9 @@  discard block
 block discarded – undo
1837 1873
 
1838 1874
                                 }
1839 1875
 
1840
-                                if ($default_category == '')
1841
-                                    $default_category = $categories[0];
1876
+                                if ($default_category == '') {
1877
+                                                                    $default_category = $categories[0];
1878
+                                }
1842 1879
 
1843 1880
                                 geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1844 1881
 
@@ -1985,7 +2022,7 @@  discard block
 block discarded – undo
1985 2022
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
1986 2023
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1987 2024
                             <?php
1988
-                            }else{
2025
+                            } else{
1989 2026
                                 echo '<div class="geodir-bubble_image"></div>';
1990 2027
                             }
1991 2028
                         } else {
@@ -1993,7 +2030,7 @@  discard block
 block discarded – undo
1993 2030
                                 ?>
1994 2031
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1995 2032
                             <?php
1996
-                            }else{
2033
+                            } else{
1997 2034
                                 echo '<div class="geodir-bubble_image"></div>';
1998 2035
                             }
1999 2036
                         }
@@ -2074,10 +2111,11 @@  discard block
 block discarded – undo
2074 2111
      */
2075 2112
     function geodir_new_post_default_status()
2076 2113
     {
2077
-        if (get_option('geodir_new_post_default_status'))
2078
-            return get_option('geodir_new_post_default_status');
2079
-        else
2080
-            return 'publish';
2114
+        if (get_option('geodir_new_post_default_status')) {
2115
+                    return get_option('geodir_new_post_default_status');
2116
+        } else {
2117
+                    return 'publish';
2118
+        }
2081 2119
 
2082 2120
     }
2083 2121
 }
@@ -2228,8 +2266,9 @@  discard block
 block discarded – undo
2228 2266
 
2229 2267
         $all_postypes = geodir_get_posttypes();
2230 2268
 
2231
-        if (!in_array($post_type, $all_postypes))
2232
-            return false;
2269
+        if (!in_array($post_type, $all_postypes)) {
2270
+                    return false;
2271
+        }
2233 2272
 
2234 2273
         $table = $plugin_prefix . $post_type . '_detail';
2235 2274
 
@@ -2497,8 +2536,9 @@  discard block
 block discarded – undo
2497 2536
         $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2498 2537
 
2499 2538
         $user_meta_data = '';
2500
-        if (isset($current_user->data->ID))
2501
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2539
+        if (isset($current_user->data->ID)) {
2540
+                    $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2541
+        }
2502 2542
 
2503 2543
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2504 2544
             ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
@@ -2511,8 +2551,9 @@  discard block
 block discarded – undo
2511 2551
 
2512 2552
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2513 2553
                 $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2514
-            } else
2515
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2554
+            } else {
2555
+                            $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2556
+            }
2516 2557
 
2517 2558
             ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2518 2559
                                                                                         href="javascript:void(0);"
@@ -2575,14 +2616,16 @@  discard block
 block discarded – undo
2575 2616
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2576 2617
 
2577 2618
             $cat_post_count = $wpdb->get_var($count_query);
2578
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2579
-                $cat_post_count = 0;
2619
+            if (empty($cat_post_count) || is_wp_error($cat_post_count)) {
2620
+                            $cat_post_count = 0;
2621
+            }
2580 2622
 
2581 2623
             return $cat_post_count;
2582 2624
 
2583
-        } else
2584
-
2585
-            return $term->count;
2625
+        } else {
2626
+        
2627
+            return $term->count;
2628
+        }
2586 2629
     }
2587 2630
     return false;
2588 2631
 
@@ -2629,13 +2672,15 @@  discard block
 block discarded – undo
2629 2672
 		return $length;
2630 2673
 	}
2631 2674
 	
2632
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2633
-        $length = get_option('geodir_desc_word_limit');
2634
-    elseif (get_query_var('excerpt_length'))
2635
-        $length = get_query_var('excerpt_length');
2675
+    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) {
2676
+            $length = get_option('geodir_desc_word_limit');
2677
+    } elseif (get_query_var('excerpt_length')) {
2678
+            $length = get_query_var('excerpt_length');
2679
+    }
2636 2680
 
2637
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2638
-        $length = get_option('geodir_author_desc_word_limit');
2681
+    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) {
2682
+            $length = get_option('geodir_author_desc_word_limit');
2683
+    }
2639 2684
 
2640 2685
     return $length;
2641 2686
 }
@@ -2768,10 +2813,11 @@  discard block
 block discarded – undo
2768 2813
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2769 2814
 {
2770 2815
     $listing_author_id = geodir_get_listing_author($listing_id);
2771
-    if ($listing_author_id == $user_id)
2772
-        return true;
2773
-    else
2774
-        return false;
2816
+    if ($listing_author_id == $user_id) {
2817
+            return true;
2818
+    } else {
2819
+            return false;
2820
+    }
2775 2821
 
2776 2822
 }
2777 2823
 
@@ -2820,10 +2866,11 @@  discard block
 block discarded – undo
2820 2866
     $pattern = '/-\d+x\d+\./';
2821 2867
     preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2822 2868
 
2823
-    if (empty($matches))
2824
-        return '';
2825
-    else
2826
-        return $file;
2869
+    if (empty($matches)) {
2870
+            return '';
2871
+    } else {
2872
+            return $file;
2873
+    }
2827 2874
 
2828 2875
 }
2829 2876
 
@@ -2908,8 +2955,9 @@  discard block
 block discarded – undo
2908 2955
     } else {
2909 2956
         //set_post_thumbnail($post_id,-1);
2910 2957
 
2911
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2912
-            wp_delete_attachment($post_thumbnail_id);
2958
+        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2959
+                    wp_delete_attachment($post_thumbnail_id);
2960
+        }
2913 2961
 
2914 2962
     }
2915 2963
 }
@@ -2994,8 +3042,9 @@  discard block
 block discarded – undo
2994 3042
 
2995 3043
     global $wpdb;
2996 3044
 
2997
-    if ($listing_type == '')
2998
-        $listing_type = 'gd_place';
3045
+    if ($listing_type == '') {
3046
+            $listing_type = 'gd_place';
3047
+    }
2999 3048
 
3000 3049
     $fields_info = array();
3001 3050
 
@@ -3018,8 +3067,9 @@  discard block
 block discarded – undo
3018 3067
 
3019 3068
                 $fields_info[$prefix . 'address'] = $data->field_type;
3020 3069
 
3021
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
3022
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
3070
+                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
3071
+                                    $fields_info[$prefix . 'zip'] = $data->field_type;
3072
+                }
3023 3073
 
3024 3074
             } else {
3025 3075
 
Please login to merge, or discard this patch.
geodirectory-functions/map-functions/get_markers.php 2 patches
Indentation   +343 added lines, -343 removed lines patch added patch discarded remove patch
@@ -7,61 +7,61 @@  discard block
 block discarded – undo
7 7
  */
8 8
  
9 9
 if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'homemap_catlist') {
10
-    global $gd_session;
11
-    $gd_post_type = sanitize_text_field($_REQUEST['post_type']);
12
-    $gd_session->set('homemap_catlist_ptype', $gd_post_type);
13
-    $post_taxonomy = geodir_get_taxonomies($gd_post_type);
14
-    $map_canvas_name = sanitize_text_field($_REQUEST['map_canvas']);
15
-    $child_collapse = (bool)$_REQUEST['child_collapse'];
16
-    echo home_map_taxonomy_walker($post_taxonomy, 0, true, 0, $map_canvas_name, $child_collapse, true);
17
-    die;
10
+	global $gd_session;
11
+	$gd_post_type = sanitize_text_field($_REQUEST['post_type']);
12
+	$gd_session->set('homemap_catlist_ptype', $gd_post_type);
13
+	$post_taxonomy = geodir_get_taxonomies($gd_post_type);
14
+	$map_canvas_name = sanitize_text_field($_REQUEST['map_canvas']);
15
+	$child_collapse = (bool)$_REQUEST['child_collapse'];
16
+	echo home_map_taxonomy_walker($post_taxonomy, 0, true, 0, $map_canvas_name, $child_collapse, true);
17
+	die;
18 18
 }
19 19
 
20 20
 // Send the content-type header with correct encoding
21 21
 header("Content-type: text/javascript; charset=utf-8");
22 22
 
23 23
 if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'cat') { // Retrives markers data for categories
24
-    echo get_markers();
25
-    exit;
24
+	echo get_markers();
25
+	exit;
26 26
 } else if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'info') { // Retrives marker info window html
27
-    /**
28
-     * @global object $wpdb WordPress Database object.
29
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
30
-     * @global object $gd_session GeoDirectory Session object.
31
-     */
32
-    global $wpdb, $plugin_prefix, $gd_session;
33
-
34
-    if ($_REQUEST['m_id'] != '') {
35
-        $pid = (int)$_REQUEST['m_id'];
36
-    } else {
37
-        echo __('No marker data found', 'geodirectory');
38
-        exit;
39
-    }
40
-
41
-    if (isset($_REQUEST['post_preview']) && $_REQUEST['post_preview'] != '' && $gd_ses_listing = $gd_session->get('listing')) {
42
-        $post = (object)$gd_ses_listing;
43
-        echo geodir_get_infowindow_html($post, $_REQUEST['post_preview']);
44
-    } else {
45
-        $geodir_post_type = get_post_type($pid);
46
-
47
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
48
-
49
-        $sql = $wpdb->prepare("SELECT * FROM " . $table . " WHERE post_id = %d", array($pid));
50
-
51
-        $postinfo = $wpdb->get_results($sql);
52
-
53
-        $data_arr = array();
54
-
55
-        if ($postinfo) {
56
-            $srcharr = array("'", "/", "-", '"', '\\');
57
-            $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
58
-
59
-            foreach ($postinfo as $postinfo_obj) {
60
-                echo geodir_get_infowindow_html($postinfo_obj);
61
-            }
62
-        }
63
-    }
64
-    exit;
27
+	/**
28
+	 * @global object $wpdb WordPress Database object.
29
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
30
+	 * @global object $gd_session GeoDirectory Session object.
31
+	 */
32
+	global $wpdb, $plugin_prefix, $gd_session;
33
+
34
+	if ($_REQUEST['m_id'] != '') {
35
+		$pid = (int)$_REQUEST['m_id'];
36
+	} else {
37
+		echo __('No marker data found', 'geodirectory');
38
+		exit;
39
+	}
40
+
41
+	if (isset($_REQUEST['post_preview']) && $_REQUEST['post_preview'] != '' && $gd_ses_listing = $gd_session->get('listing')) {
42
+		$post = (object)$gd_ses_listing;
43
+		echo geodir_get_infowindow_html($post, $_REQUEST['post_preview']);
44
+	} else {
45
+		$geodir_post_type = get_post_type($pid);
46
+
47
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
48
+
49
+		$sql = $wpdb->prepare("SELECT * FROM " . $table . " WHERE post_id = %d", array($pid));
50
+
51
+		$postinfo = $wpdb->get_results($sql);
52
+
53
+		$data_arr = array();
54
+
55
+		if ($postinfo) {
56
+			$srcharr = array("'", "/", "-", '"', '\\');
57
+			$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
58
+
59
+			foreach ($postinfo as $postinfo_obj) {
60
+				echo geodir_get_infowindow_html($postinfo_obj);
61
+			}
62
+		}
63
+	}
64
+	exit;
65 65
 }
66 66
 
67 67
 /**
@@ -80,80 +80,80 @@  discard block
 block discarded – undo
80 80
  */
81 81
 function get_markers() {
82 82
 
83
-    global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes,$gd_session;
83
+	global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes,$gd_session;
84 84
 
85
-    $search = '';
86
-    $main_query_array;
85
+	$search = '';
86
+	$main_query_array;
87 87
 
88
-    $srcharr = array("'", "/", "-", '"', '\\', '&#39;');
89
-    $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '', "&prime;");
88
+	$srcharr = array("'", "/", "-", '"', '\\', '&#39;');
89
+	$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '', "&prime;");
90 90
 
91
-    $post_type = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : 'gd_place';
91
+	$post_type = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : 'gd_place';
92 92
 
93
-    $map_cat_ids_array = array('0');
94
-    $cat_find_array = array(" FIND_IN_SET(%d, pd." . $post_type . "category)");
93
+	$map_cat_ids_array = array('0');
94
+	$cat_find_array = array(" FIND_IN_SET(%d, pd." . $post_type . "category)");
95 95
 
96 96
 
97
-    $field_default_cat = '';
98
-    if (isset($_REQUEST['cat_id']) && $_REQUEST['cat_id'] != '') {
99
-        $map_cat_arr = trim($_REQUEST['cat_id'], ',');
97
+	$field_default_cat = '';
98
+	if (isset($_REQUEST['cat_id']) && $_REQUEST['cat_id'] != '') {
99
+		$map_cat_arr = trim($_REQUEST['cat_id'], ',');
100 100
 
101
-        if (!empty($map_cat_arr)) {
102
-            $field_default_cat .= "WHEN (default_category IN (" . $map_cat_arr . ")) THEN default_category ";
101
+		if (!empty($map_cat_arr)) {
102
+			$field_default_cat .= "WHEN (default_category IN (" . $map_cat_arr . ")) THEN default_category ";
103 103
 
104
-            $map_cat_ids_array = explode(',', $map_cat_arr);
105
-            $cat_find_array = array();
106
-            foreach ($map_cat_ids_array as $cat_id) {
107
-                $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `" . $post_type . "category`) > 0) THEN $cat_id ";
108
-                $cat_find_array[] = " FIND_IN_SET(%d, pd." . $post_type . "category)";
109
-                $main_query_array[] = $cat_id;
110
-            }
104
+			$map_cat_ids_array = explode(',', $map_cat_arr);
105
+			$cat_find_array = array();
106
+			foreach ($map_cat_ids_array as $cat_id) {
107
+				$field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `" . $post_type . "category`) > 0) THEN $cat_id ";
108
+				$cat_find_array[] = " FIND_IN_SET(%d, pd." . $post_type . "category)";
109
+				$main_query_array[] = $cat_id;
110
+			}
111 111
 
112
-        }
113
-    }
112
+		}
113
+	}
114 114
 
115
-    if (!empty($field_default_cat))
116
-        $field_default_cat = '';
115
+	if (!empty($field_default_cat))
116
+		$field_default_cat = '';
117 117
 
118
-    if (!empty($cat_find_array))
119
-        $search .= "AND (" . implode(' OR ', $cat_find_array) . ")";
118
+	if (!empty($cat_find_array))
119
+		$search .= "AND (" . implode(' OR ', $cat_find_array) . ")";
120 120
 
121
-    $main_query_array = $map_cat_ids_array;
121
+	$main_query_array = $map_cat_ids_array;
122 122
   
123
-    if (isset($_REQUEST['search']) && !empty($_REQUEST['search']) && $_REQUEST['search'] != __('Title', 'geodirectory')) {
124
-        $search .= " AND p.post_title LIKE %s";
125
-        $main_query_array[] = "%" . $_REQUEST['search'] . "%";
126
-    }
127
-
128
-    /**
129
-     * Filter the marker query search SQL, values are replaces with %s or %d.
130
-     *
131
-     * @since 1.5.3
132
-     *
133
-     * @param string $search The SQL query for search/where.
134
-     */
135
-    $search = apply_filters('geodir_marker_search', $search);
136
-    /**
137
-     * Filter the marker query search SQL values %s and %d, this is an array of values.
138
-     *
139
-     * @since 1.5.3
140
-     *
141
-     * @param array $main_query_array The SQL query values for search/where.
142
-     */
143
-    $main_query_array = apply_filters('geodir_marker_main_query_array', $main_query_array);
144
-
145
-    $gd_posttype = '';
146
-    if (isset($_REQUEST['gd_posttype']) && $_REQUEST['gd_posttype'] != '') {
147
-        $table = $plugin_prefix . $_REQUEST['gd_posttype'] . '_detail';
148
-        $gd_posttype = " AND p.post_type = %s";
149
-        $main_query_array[] = $_REQUEST['gd_posttype'];
150
-
151
-    } else
152
-        $table = $plugin_prefix . 'gd_place_detail';
153
-
154
-    $join = ", " . $table . " AS pd ";
155
-
156
-    /**
123
+	if (isset($_REQUEST['search']) && !empty($_REQUEST['search']) && $_REQUEST['search'] != __('Title', 'geodirectory')) {
124
+		$search .= " AND p.post_title LIKE %s";
125
+		$main_query_array[] = "%" . $_REQUEST['search'] . "%";
126
+	}
127
+
128
+	/**
129
+	 * Filter the marker query search SQL, values are replaces with %s or %d.
130
+	 *
131
+	 * @since 1.5.3
132
+	 *
133
+	 * @param string $search The SQL query for search/where.
134
+	 */
135
+	$search = apply_filters('geodir_marker_search', $search);
136
+	/**
137
+	 * Filter the marker query search SQL values %s and %d, this is an array of values.
138
+	 *
139
+	 * @since 1.5.3
140
+	 *
141
+	 * @param array $main_query_array The SQL query values for search/where.
142
+	 */
143
+	$main_query_array = apply_filters('geodir_marker_main_query_array', $main_query_array);
144
+
145
+	$gd_posttype = '';
146
+	if (isset($_REQUEST['gd_posttype']) && $_REQUEST['gd_posttype'] != '') {
147
+		$table = $plugin_prefix . $_REQUEST['gd_posttype'] . '_detail';
148
+		$gd_posttype = " AND p.post_type = %s";
149
+		$main_query_array[] = $_REQUEST['gd_posttype'];
150
+
151
+	} else
152
+		$table = $plugin_prefix . 'gd_place_detail';
153
+
154
+	$join = ", " . $table . " AS pd ";
155
+
156
+	/**
157 157
 	 * Filter the SQL JOIN clause for the markers data
158 158
 	 *
159 159
 	 * @since 1.0.0
@@ -170,16 +170,16 @@  discard block
 block discarded – undo
170 170
 	 * @param string $search Row of searched fields to use in WHERE clause.
171 171
 	 */
172 172
 	$search = apply_filters('geodir_home_map_listing_where', $search);
173
-    $search = str_replace(array("'%", "%'"), array("'%%", "%%'"), $search);
174
-    $cat_type = $post_type . 'category';
175
-    if ($post_type == 'gd_event') {
176
-        $event_select = ", pd.recurring_dates, pd.is_recurring";
177
-    } else {
178
-        $event_select = "";
179
-    }
180
-
181
-    $sql_select = 'SELECT pd.default_category, pd.' . $cat_type . ', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude' . $event_select;
182
-    /**
173
+	$search = str_replace(array("'%", "%'"), array("'%%", "%%'"), $search);
174
+	$cat_type = $post_type . 'category';
175
+	if ($post_type == 'gd_event') {
176
+		$event_select = ", pd.recurring_dates, pd.is_recurring";
177
+	} else {
178
+		$event_select = "";
179
+	}
180
+
181
+	$sql_select = 'SELECT pd.default_category, pd.' . $cat_type . ', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude' . $event_select;
182
+	/**
183 183
 	 * Filter the SQL SELECT clause to retrive fields data
184 184
 	 *
185 185
 	 * @since 1.0.0
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	$groupby = apply_filters('geodir_home_map_listing_groupby', $groupby);
200 200
 
201
-    $catsql = $wpdb->prepare("$select $field_default_cat FROM " . $wpdb->posts . " as p" . $join . " WHERE p.ID = pd.post_id AND p.post_status = 'publish' " . $search . $gd_posttype . $groupby , $main_query_array);
201
+	$catsql = $wpdb->prepare("$select $field_default_cat FROM " . $wpdb->posts . " as p" . $join . " WHERE p.ID = pd.post_id AND p.post_status = 'publish' " . $search . $gd_posttype . $groupby , $main_query_array);
202 202
     
203 203
 	/**
204 204
 	 * Filter the SQL query to retrive markers data
@@ -214,265 +214,265 @@  discard block
 block discarded – undo
214 214
 //    print_r($gd_session);
215 215
 //    print_r($_SESSION);
216 216
 
217
-    $catinfo = $wpdb->get_results($catsql);
217
+	$catinfo = $wpdb->get_results($catsql);
218 218
 	
219
-    $cat_content_info = array();
220
-    $content_data = array();
221
-    $post_ids = array();
222
-
223
-    /**
224
-     * Called before marker data is processed into JSON.
225
-     *
226
-     * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers.
227
-     *
228
-     * @since 1.5.3
229
-     * @param object $catinfo The posts object containing all marker data.
230
-     * @see 'geodir_after_marker_post_process'
231
-     */
232
-    $catinfo = apply_filters('geodir_before_marker_post_process', $catinfo);
233
-
234
-    /**
235
-     * Called before marker data is processed into JSON.
236
-     *
237
-     * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers.
238
-     *
239
-     * @since 1.4.9
240
-     * @param object $catinfo The posts object containing all marker data.
241
-     * @see 'geodir_after_marker_post_process'
242
-     */
243
-    do_action('geodir_before_marker_post_process_action', $catinfo);
244
-
245
-    // Sort any posts into a ajax array
246
-    if (!empty($catinfo)) {
247
-        $geodir_cat_icons = geodir_get_term_icon();
248
-        global $geodir_date_time_format, $geodir_date_format, $geodir_time_format;
249
-
250
-        $today = strtotime(date_i18n('Y-m-d'));
251
-        $show_dates = $post_type == 'gd_event' ? (int)get_option('geodir_event_infowindow_dates_count', 1) : 0;
219
+	$cat_content_info = array();
220
+	$content_data = array();
221
+	$post_ids = array();
222
+
223
+	/**
224
+	 * Called before marker data is processed into JSON.
225
+	 *
226
+	 * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers.
227
+	 *
228
+	 * @since 1.5.3
229
+	 * @param object $catinfo The posts object containing all marker data.
230
+	 * @see 'geodir_after_marker_post_process'
231
+	 */
232
+	$catinfo = apply_filters('geodir_before_marker_post_process', $catinfo);
233
+
234
+	/**
235
+	 * Called before marker data is processed into JSON.
236
+	 *
237
+	 * Called before marker data is processed into JSON, this action can be used to change the format or add/remove markers.
238
+	 *
239
+	 * @since 1.4.9
240
+	 * @param object $catinfo The posts object containing all marker data.
241
+	 * @see 'geodir_after_marker_post_process'
242
+	 */
243
+	do_action('geodir_before_marker_post_process_action', $catinfo);
244
+
245
+	// Sort any posts into a ajax array
246
+	if (!empty($catinfo)) {
247
+		$geodir_cat_icons = geodir_get_term_icon();
248
+		global $geodir_date_time_format, $geodir_date_format, $geodir_time_format;
249
+
250
+		$today = strtotime(date_i18n('Y-m-d'));
251
+		$show_dates = $post_type == 'gd_event' ? (int)get_option('geodir_event_infowindow_dates_count', 1) : 0;
252 252
         
253
-        foreach ($catinfo as $catinfo_obj) {
254
-            $post_title = $catinfo_obj->post_title;
253
+		foreach ($catinfo as $catinfo_obj) {
254
+			$post_title = $catinfo_obj->post_title;
255 255
             
256
-            if ($post_type == 'gd_event' && !empty($catinfo_obj->recurring_dates) && $show_dates > 0) {
257
-                $event_dates = '';
258
-                $recurring_data = isset($catinfo_obj->recurring_dates) ? maybe_unserialize($catinfo_obj->recurring_dates) : array();
256
+			if ($post_type == 'gd_event' && !empty($catinfo_obj->recurring_dates) && $show_dates > 0) {
257
+				$event_dates = '';
258
+				$recurring_data = isset($catinfo_obj->recurring_dates) ? maybe_unserialize($catinfo_obj->recurring_dates) : array();
259 259
 
260
-                $post_info = geodir_get_post_info($catinfo_obj->post_id);
260
+				$post_info = geodir_get_post_info($catinfo_obj->post_id);
261 261
                 
262
-                if (!empty($catinfo_obj->is_recurring) && !empty($recurring_data) && !empty($recurring_data['is_recurring']) && geodir_event_recurring_pkg($post_info)) {
263
-                    $starttimes = '';
264
-                    $endtimes = '';
265
-                    $astarttimes = array();
266
-                    $aendtimes = array();
267
-                    if ( !isset( $recurring_data['repeat_type'] ) ) {
268
-                        $recurring_data['repeat_type'] = 'custom';
269
-                    }
270
-                    $repeat_type = isset( $recurring_data['repeat_type'] ) && in_array( $recurring_data['repeat_type'], array( 'day', 'week', 'month', 'year', 'custom' ) ) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom
271
-                    $different_times = isset( $recurring_data['different_times'] ) && !empty( $recurring_data['different_times'] ) ? true : false;
262
+				if (!empty($catinfo_obj->is_recurring) && !empty($recurring_data) && !empty($recurring_data['is_recurring']) && geodir_event_recurring_pkg($post_info)) {
263
+					$starttimes = '';
264
+					$endtimes = '';
265
+					$astarttimes = array();
266
+					$aendtimes = array();
267
+					if ( !isset( $recurring_data['repeat_type'] ) ) {
268
+						$recurring_data['repeat_type'] = 'custom';
269
+					}
270
+					$repeat_type = isset( $recurring_data['repeat_type'] ) && in_array( $recurring_data['repeat_type'], array( 'day', 'week', 'month', 'year', 'custom' ) ) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom
271
+					$different_times = isset( $recurring_data['different_times'] ) && !empty( $recurring_data['different_times'] ) ? true : false;
272 272
         
273
-                    $recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
273
+					$recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
274 274
                     
275
-                    if ( !empty( $recurring_dates ) ) {
276
-                        if ( empty( $recurring_data['all_day'] ) ) {
277
-                            if ( $repeat_type == 'custom' && $different_times ) {
278
-                                $astarttimes = isset( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array();
279
-                                $aendtimes = isset( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array();
280
-                            } else {
281
-                                $starttimes = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : '';
282
-                                $endtimes = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : '';
283
-                            }
284
-                        }
275
+					if ( !empty( $recurring_dates ) ) {
276
+						if ( empty( $recurring_data['all_day'] ) ) {
277
+							if ( $repeat_type == 'custom' && $different_times ) {
278
+								$astarttimes = isset( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array();
279
+								$aendtimes = isset( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array();
280
+							} else {
281
+								$starttimes = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : '';
282
+								$endtimes = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : '';
283
+							}
284
+						}
285 285
                         
286
-                        $e = 0;
287
-                        foreach( $recurring_dates as $key => $date ) {
288
-                            if ( $repeat_type == 'custom' && $different_times ) {
289
-                                if ( !empty( $astarttimes ) && isset( $astarttimes[$key] ) ) {
290
-                                    $starttimes = $astarttimes[$key];
291
-                                    $endtimes = $aendtimes[$key];
292
-                                } else {
293
-                                    $starttimes = '';
294
-                                    $endtimes = '';
295
-                                }
296
-                            }
286
+						$e = 0;
287
+						foreach( $recurring_dates as $key => $date ) {
288
+							if ( $repeat_type == 'custom' && $different_times ) {
289
+								if ( !empty( $astarttimes ) && isset( $astarttimes[$key] ) ) {
290
+									$starttimes = $astarttimes[$key];
291
+									$endtimes = $aendtimes[$key];
292
+								} else {
293
+									$starttimes = '';
294
+									$endtimes = '';
295
+								}
296
+							}
297 297
                             
298
-                            $duration = isset( $recurring_data['duration_x'] ) && (int)$recurring_data['duration_x'] > 0 ? (int)$recurring_data['duration_x'] : 1;
299
-                            $duration--;
300
-                            $enddate = date_i18n( 'Y-m-d', strtotime( $date . ' + ' . $duration . ' day' ) );
298
+							$duration = isset( $recurring_data['duration_x'] ) && (int)$recurring_data['duration_x'] > 0 ? (int)$recurring_data['duration_x'] : 1;
299
+							$duration--;
300
+							$enddate = date_i18n( 'Y-m-d', strtotime( $date . ' + ' . $duration . ' day' ) );
301 301
                             
302
-                            // Hide past dates
303
-                            if ( strtotime( $enddate ) < $today ) {
304
-                                continue;
305
-                            }
302
+							// Hide past dates
303
+							if ( strtotime( $enddate ) < $today ) {
304
+								continue;
305
+							}
306 306
                                     
307
-                            $sdate = strtotime( $date . ' ' . $starttimes );
308
-                            $edate = strtotime( $enddate . ' ' . $endtimes );
307
+							$sdate = strtotime( $date . ' ' . $starttimes );
308
+							$edate = strtotime( $enddate . ' ' . $endtimes );
309 309
                                         
310
-                            $start_date = date_i18n( $geodir_date_time_format, $sdate );
311
-                            $end_date = date_i18n( $geodir_date_time_format, $edate );
310
+							$start_date = date_i18n( $geodir_date_time_format, $sdate );
311
+							$end_date = date_i18n( $geodir_date_time_format, $edate );
312 312
                             
313
-                            $same_day = false;
314
-                            $full_day = false;
315
-                            $same_datetime = false;
313
+							$same_day = false;
314
+							$full_day = false;
315
+							$same_datetime = false;
316 316
                             
317
-                            if ( $starttimes == $endtimes && ( $starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00' ) ) {
318
-                                $full_day = true;
319
-                            }
317
+							if ( $starttimes == $endtimes && ( $starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00' ) ) {
318
+								$full_day = true;
319
+							}
320 320
                             
321
-                            if ( $start_date == $end_date && $full_day ) {
322
-                                $same_datetime = true;
323
-                            }
324
-
325
-                            $link_date = date_i18n( 'Y-m-d', $sdate );
326
-                            $title_date = date_i18n( $geodir_date_format, $sdate );
327
-                            if ( $full_day ) {
328
-                                $start_date = $title_date;
329
-                                $end_date = date_i18n( $geodir_date_format, $edate );
330
-                            }
321
+							if ( $start_date == $end_date && $full_day ) {
322
+								$same_datetime = true;
323
+							}
324
+
325
+							$link_date = date_i18n( 'Y-m-d', $sdate );
326
+							$title_date = date_i18n( $geodir_date_format, $sdate );
327
+							if ( $full_day ) {
328
+								$start_date = $title_date;
329
+								$end_date = date_i18n( $geodir_date_format, $edate );
330
+							}
331 331
                             
332
-                            if ( !$same_datetime && !$full_day && date_i18n( 'Y-m-d', $sdate ) == date_i18n( 'Y-m-d', $edate ) ) {
333
-                                $same_day = true;
332
+							if ( !$same_datetime && !$full_day && date_i18n( 'Y-m-d', $sdate ) == date_i18n( 'Y-m-d', $edate ) ) {
333
+								$same_day = true;
334 334
                                 
335
-                                $start_date .= ' - ' . date_i18n( $geodir_time_format, $edate );
336
-                            }
335
+								$start_date .= ' - ' . date_i18n( $geodir_time_format, $edate );
336
+							}
337 337
                             
338
-                            $event_dates .= ' :: ' . $start_date;
338
+							$event_dates .= ' :: ' . $start_date;
339 339
                         
340
-                            if ( !$same_day && !$same_datetime ) {
341
-                                $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date;
342
-                            }
340
+							if ( !$same_day && !$same_datetime ) {
341
+								$event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date;
342
+							}
343 343
                             
344
-                            $e++;
344
+							$e++;
345 345
                             
346
-                            if ($show_dates > 0 && $e == $show_dates) { // only show 3 event dates
347
-                                break;
348
-                            }
349
-                        }
350
-                    }
351
-                } else {
352
-                    $start_date = isset( $recurring_data['event_start'] ) ? $recurring_data['event_start'] : '';
353
-                    $end_date = isset( $recurring_data['event_end'] ) ? $recurring_data['event_end'] : $start_date;
354
-                    $all_day = isset( $recurring_data['all_day'] ) && !empty( $recurring_data['all_day'] ) ? true : false;
355
-                    $starttime = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : '';
356
-                    $endtime = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : '';
346
+							if ($show_dates > 0 && $e == $show_dates) { // only show 3 event dates
347
+								break;
348
+							}
349
+						}
350
+					}
351
+				} else {
352
+					$start_date = isset( $recurring_data['event_start'] ) ? $recurring_data['event_start'] : '';
353
+					$end_date = isset( $recurring_data['event_end'] ) ? $recurring_data['event_end'] : $start_date;
354
+					$all_day = isset( $recurring_data['all_day'] ) && !empty( $recurring_data['all_day'] ) ? true : false;
355
+					$starttime = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : '';
356
+					$endtime = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : '';
357 357
                 
358
-                    $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
359
-                    $starttimes = isset( $recurring_data['starttimes'] ) && !empty( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array();
360
-                    $endtimes = isset( $recurring_data['endtimes'] ) && !empty( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array();
358
+					$event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
359
+					$starttimes = isset( $recurring_data['starttimes'] ) && !empty( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array();
360
+					$endtimes = isset( $recurring_data['endtimes'] ) && !empty( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array();
361 361
                     
362
-                    if ( !geodir_event_is_date( $start_date ) && !empty( $event_recurring_dates ) ) {
363
-                        $start_date = $event_recurring_dates[0];
364
-                    }
362
+					if ( !geodir_event_is_date( $start_date ) && !empty( $event_recurring_dates ) ) {
363
+						$start_date = $event_recurring_dates[0];
364
+					}
365 365
                                 
366
-                    if ( strtotime( $end_date ) < strtotime( $start_date ) ) {
367
-                        $end_date = $start_date;
368
-                    }
366
+					if ( strtotime( $end_date ) < strtotime( $start_date ) ) {
367
+						$end_date = $start_date;
368
+					}
369 369
                     
370
-                    if ($end_date != '' && strtotime($end_date) >= $today) {
371
-                        if ( $starttime == '' && !empty( $starttimes ) ) {
372
-                            $starttime = $starttimes[0];
373
-                            $endtime = $endtimes[0];
374
-                        }
370
+					if ($end_date != '' && strtotime($end_date) >= $today) {
371
+						if ( $starttime == '' && !empty( $starttimes ) ) {
372
+							$starttime = $starttimes[0];
373
+							$endtime = $endtimes[0];
374
+						}
375 375
                         
376
-                        $same_day = false;
377
-                        $one_day = false;
378
-                        if ( $start_date == $end_date && $all_day ) {
379
-                            $one_day = true;
380
-                        }
381
-
382
-                        if ( $all_day ) {
383
-                            $start_datetime = strtotime( $start_date );
384
-                            $end_datetime = strtotime( $end_date );
376
+						$same_day = false;
377
+						$one_day = false;
378
+						if ( $start_date == $end_date && $all_day ) {
379
+							$one_day = true;
380
+						}
381
+
382
+						if ( $all_day ) {
383
+							$start_datetime = strtotime( $start_date );
384
+							$end_datetime = strtotime( $end_date );
385 385
                             
386
-                            $start_date = date_i18n( $geodir_date_format, $start_datetime );
387
-                            $end_date = date_i18n( $geodir_date_format, $end_datetime );
388
-                            if ( $start_date == $end_date ) {
389
-                                $one_day = true;
390
-                            }
391
-                        } else {
392
-                            if ( $start_date == $end_date && $starttime == $endtime ) {
393
-                                $end_date = date_i18n( 'Y-m-d', strtotime( $start_date . ' ' . $starttime . ' +1 day' ) );
394
-                                $one_day = false;
395
-                            }
396
-                            $start_datetime = strtotime( $start_date . ' ' . $starttime );
397
-                            $end_datetime = strtotime( $end_date . ' ' . $endtime );
386
+							$start_date = date_i18n( $geodir_date_format, $start_datetime );
387
+							$end_date = date_i18n( $geodir_date_format, $end_datetime );
388
+							if ( $start_date == $end_date ) {
389
+								$one_day = true;
390
+							}
391
+						} else {
392
+							if ( $start_date == $end_date && $starttime == $endtime ) {
393
+								$end_date = date_i18n( 'Y-m-d', strtotime( $start_date . ' ' . $starttime . ' +1 day' ) );
394
+								$one_day = false;
395
+							}
396
+							$start_datetime = strtotime( $start_date . ' ' . $starttime );
397
+							$end_datetime = strtotime( $end_date . ' ' . $endtime );
398 398
                             
399
-                            $start_date = date_i18n( $geodir_date_time_format, $start_datetime );
400
-                            $end_date = date_i18n( $geodir_date_time_format, $end_datetime );
401
-                        }
399
+							$start_date = date_i18n( $geodir_date_time_format, $start_datetime );
400
+							$end_date = date_i18n( $geodir_date_time_format, $end_datetime );
401
+						}
402 402
 
403
-                        if ( !$one_day && date_i18n( 'Y-m-d', $start_datetime ) == date_i18n( 'Y-m-d', $end_datetime ) ) {
404
-                            $same_day = true;
403
+						if ( !$one_day && date_i18n( 'Y-m-d', $start_datetime ) == date_i18n( 'Y-m-d', $end_datetime ) ) {
404
+							$same_day = true;
405 405
                             
406
-                            $start_date .= ' - ' . date_i18n( $geodir_time_format, $end_datetime );
407
-                        }
406
+							$start_date .= ' - ' . date_i18n( $geodir_time_format, $end_datetime );
407
+						}
408 408
                         
409
-                        $event_dates .= ' :: ' . $start_date;
409
+						$event_dates .= ' :: ' . $start_date;
410 410
                         
411
-                        if ( !$same_day && !$one_day ) {
412
-                            $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date;
413
-                        }
414
-                    }
415
-                }
416
-
417
-                if (empty($event_dates)) {
418
-                    continue;
419
-                }
411
+						if ( !$same_day && !$one_day ) {
412
+							$event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date;
413
+						}
414
+					}
415
+				}
416
+
417
+				if (empty($event_dates)) {
418
+					continue;
419
+				}
420 420
                 
421
-                $post_title .= $event_dates;
422
-            }
421
+				$post_title .= $event_dates;
422
+			}
423 423
 
424
-            $map_cat_ids_array;
425
-            $default_cat = isset($catinfo_obj->default_category) ? $catinfo_obj->default_category : '';
424
+			$map_cat_ids_array;
425
+			$default_cat = isset($catinfo_obj->default_category) ? $catinfo_obj->default_category : '';
426 426
 
427
-            // if single cat lets just show that icon
428
-            if(is_array($map_cat_ids_array) && count($map_cat_ids_array)==1){
429
-                $default_cat = (int)$map_cat_ids_array[0];
430
-            }
427
+			// if single cat lets just show that icon
428
+			if(is_array($map_cat_ids_array) && count($map_cat_ids_array)==1){
429
+				$default_cat = (int)$map_cat_ids_array[0];
430
+			}
431 431
 
432
-            $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$default_cat]) ? $geodir_cat_icons[$default_cat] : '';
433
-            $mark_extra = (isset($catinfo_obj->marker_extra)) ? $catinfo_obj->marker_extra : '';
434
-            $title = str_replace($srcharr, $replarr, $post_title);
432
+			$icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$default_cat]) ? $geodir_cat_icons[$default_cat] : '';
433
+			$mark_extra = (isset($catinfo_obj->marker_extra)) ? $catinfo_obj->marker_extra : '';
434
+			$title = str_replace($srcharr, $replarr, $post_title);
435 435
             
436
-            if ($icon != '') {
437
-                $gd_marker_sizes = empty($gd_marker_sizes) ? array() : $gd_marker_sizes;
436
+			if ($icon != '') {
437
+				$gd_marker_sizes = empty($gd_marker_sizes) ? array() : $gd_marker_sizes;
438 438
                 
439
-                if (isset($gd_marker_sizes[$icon])) {
440
-                    $icon_size = $gd_marker_sizes[$icon];
441
-                } else {
442
-                    $icon_size = geodir_get_marker_size($icon);
443
-                    $gd_marker_sizes[$icon] = $icon_size;
444
-                }               
445
-            } else {
446
-                $icon_size = array('w' => 36, 'h' => 45);
447
-            }
448
-
449
-            $content_data[] = '{"id":"' . $catinfo_obj->post_id . '","t": "' . $title . '","lt": "' . $catinfo_obj->post_latitude . '","ln": "' . $catinfo_obj->post_longitude . '","mk_id":"' . $catinfo_obj->post_id . '_' . $default_cat . '","i":"' . $icon . '","w":"' . $icon_size['w'] . '","h":"' . $icon_size['h'] . '"'.$mark_extra.'}';
450
-            $post_ids[] = $catinfo_obj->post_id;
451
-        }
452
-    }
453
-
454
-    /**
455
-     * Called after marker data is processed into JSON.
456
-     *
457
-     * Called after marker data is processed into JSON, this action can be used to change the format or add/remove markers.
458
-     *
459
-     * @since 1.4.9
460
-     * @param array $content_data The array containing all markers in JSON format.
461
-     * @param object $catinfo The posts object containing all marker data.
462
-     * @see 'geodir_before_marker_post_process'
463
-     */
464
-    do_action('geodir_after_marker_post_process', $content_data, $catinfo);
465
-
466
-    if (!empty($content_data)) {
467
-        $cat_content_info[] = implode(',', $content_data);
468
-    }
469
-
470
-    $totalcount = count(array_unique($post_ids));
471
-
472
-    if (!empty($cat_content_info)) {
473
-        return '[{"totalcount":"' . $totalcount . '",' . substr(implode(',', $cat_content_info), 1) . ']';
474
-    }
475
-    else {
476
-        return '[{"totalcount":"0"}]';
477
-    }
439
+				if (isset($gd_marker_sizes[$icon])) {
440
+					$icon_size = $gd_marker_sizes[$icon];
441
+				} else {
442
+					$icon_size = geodir_get_marker_size($icon);
443
+					$gd_marker_sizes[$icon] = $icon_size;
444
+				}               
445
+			} else {
446
+				$icon_size = array('w' => 36, 'h' => 45);
447
+			}
448
+
449
+			$content_data[] = '{"id":"' . $catinfo_obj->post_id . '","t": "' . $title . '","lt": "' . $catinfo_obj->post_latitude . '","ln": "' . $catinfo_obj->post_longitude . '","mk_id":"' . $catinfo_obj->post_id . '_' . $default_cat . '","i":"' . $icon . '","w":"' . $icon_size['w'] . '","h":"' . $icon_size['h'] . '"'.$mark_extra.'}';
450
+			$post_ids[] = $catinfo_obj->post_id;
451
+		}
452
+	}
453
+
454
+	/**
455
+	 * Called after marker data is processed into JSON.
456
+	 *
457
+	 * Called after marker data is processed into JSON, this action can be used to change the format or add/remove markers.
458
+	 *
459
+	 * @since 1.4.9
460
+	 * @param array $content_data The array containing all markers in JSON format.
461
+	 * @param object $catinfo The posts object containing all marker data.
462
+	 * @see 'geodir_before_marker_post_process'
463
+	 */
464
+	do_action('geodir_after_marker_post_process', $content_data, $catinfo);
465
+
466
+	if (!empty($content_data)) {
467
+		$cat_content_info[] = implode(',', $content_data);
468
+	}
469
+
470
+	$totalcount = count(array_unique($post_ids));
471
+
472
+	if (!empty($cat_content_info)) {
473
+		return '[{"totalcount":"' . $totalcount . '",' . substr(implode(',', $cat_content_info), 1) . ']';
474
+	}
475
+	else {
476
+		return '[{"totalcount":"0"}]';
477
+	}
478 478
 }
479 479
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +83 added lines, -83 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     $gd_session->set('homemap_catlist_ptype', $gd_post_type);
13 13
     $post_taxonomy = geodir_get_taxonomies($gd_post_type);
14 14
     $map_canvas_name = sanitize_text_field($_REQUEST['map_canvas']);
15
-    $child_collapse = (bool)$_REQUEST['child_collapse'];
15
+    $child_collapse = (bool) $_REQUEST['child_collapse'];
16 16
     echo home_map_taxonomy_walker($post_taxonomy, 0, true, 0, $map_canvas_name, $child_collapse, true);
17 17
     die;
18 18
 }
@@ -32,21 +32,21 @@  discard block
 block discarded – undo
32 32
     global $wpdb, $plugin_prefix, $gd_session;
33 33
 
34 34
     if ($_REQUEST['m_id'] != '') {
35
-        $pid = (int)$_REQUEST['m_id'];
35
+        $pid = (int) $_REQUEST['m_id'];
36 36
     } else {
37 37
         echo __('No marker data found', 'geodirectory');
38 38
         exit;
39 39
     }
40 40
 
41 41
     if (isset($_REQUEST['post_preview']) && $_REQUEST['post_preview'] != '' && $gd_ses_listing = $gd_session->get('listing')) {
42
-        $post = (object)$gd_ses_listing;
42
+        $post = (object) $gd_ses_listing;
43 43
         echo geodir_get_infowindow_html($post, $_REQUEST['post_preview']);
44 44
     } else {
45 45
         $geodir_post_type = get_post_type($pid);
46 46
 
47
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
47
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
48 48
 
49
-        $sql = $wpdb->prepare("SELECT * FROM " . $table . " WHERE post_id = %d", array($pid));
49
+        $sql = $wpdb->prepare("SELECT * FROM ".$table." WHERE post_id = %d", array($pid));
50 50
 
51 51
         $postinfo = $wpdb->get_results($sql);
52 52
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
  */
81 81
 function get_markers() {
82 82
 
83
-    global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes,$gd_session;
83
+    global $wpdb, $plugin_prefix, $geodir_cat_icons, $gd_marker_sizes, $gd_session;
84 84
 
85 85
     $search = '';
86 86
     $main_query_array;
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     $post_type = isset($_REQUEST['gd_posttype']) ? $_REQUEST['gd_posttype'] : 'gd_place';
92 92
 
93 93
     $map_cat_ids_array = array('0');
94
-    $cat_find_array = array(" FIND_IN_SET(%d, pd." . $post_type . "category)");
94
+    $cat_find_array = array(" FIND_IN_SET(%d, pd.".$post_type."category)");
95 95
 
96 96
 
97 97
     $field_default_cat = '';
@@ -99,13 +99,13 @@  discard block
 block discarded – undo
99 99
         $map_cat_arr = trim($_REQUEST['cat_id'], ',');
100 100
 
101 101
         if (!empty($map_cat_arr)) {
102
-            $field_default_cat .= "WHEN (default_category IN (" . $map_cat_arr . ")) THEN default_category ";
102
+            $field_default_cat .= "WHEN (default_category IN (".$map_cat_arr.")) THEN default_category ";
103 103
 
104 104
             $map_cat_ids_array = explode(',', $map_cat_arr);
105 105
             $cat_find_array = array();
106 106
             foreach ($map_cat_ids_array as $cat_id) {
107
-                $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `" . $post_type . "category`) > 0) THEN $cat_id ";
108
-                $cat_find_array[] = " FIND_IN_SET(%d, pd." . $post_type . "category)";
107
+                $field_default_cat .= "WHEN (FIND_IN_SET($cat_id, `".$post_type."category`) > 0) THEN $cat_id ";
108
+                $cat_find_array[] = " FIND_IN_SET(%d, pd.".$post_type."category)";
109 109
                 $main_query_array[] = $cat_id;
110 110
             }
111 111
 
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
         $field_default_cat = '';
117 117
 
118 118
     if (!empty($cat_find_array))
119
-        $search .= "AND (" . implode(' OR ', $cat_find_array) . ")";
119
+        $search .= "AND (".implode(' OR ', $cat_find_array).")";
120 120
 
121 121
     $main_query_array = $map_cat_ids_array;
122 122
   
123 123
     if (isset($_REQUEST['search']) && !empty($_REQUEST['search']) && $_REQUEST['search'] != __('Title', 'geodirectory')) {
124 124
         $search .= " AND p.post_title LIKE %s";
125
-        $main_query_array[] = "%" . $_REQUEST['search'] . "%";
125
+        $main_query_array[] = "%".$_REQUEST['search']."%";
126 126
     }
127 127
 
128 128
     /**
@@ -144,14 +144,14 @@  discard block
 block discarded – undo
144 144
 
145 145
     $gd_posttype = '';
146 146
     if (isset($_REQUEST['gd_posttype']) && $_REQUEST['gd_posttype'] != '') {
147
-        $table = $plugin_prefix . $_REQUEST['gd_posttype'] . '_detail';
147
+        $table = $plugin_prefix.$_REQUEST['gd_posttype'].'_detail';
148 148
         $gd_posttype = " AND p.post_type = %s";
149 149
         $main_query_array[] = $_REQUEST['gd_posttype'];
150 150
 
151 151
     } else
152
-        $table = $plugin_prefix . 'gd_place_detail';
152
+        $table = $plugin_prefix.'gd_place_detail';
153 153
 
154
-    $join = ", " . $table . " AS pd ";
154
+    $join = ", ".$table." AS pd ";
155 155
 
156 156
     /**
157 157
 	 * Filter the SQL JOIN clause for the markers data
@@ -171,14 +171,14 @@  discard block
 block discarded – undo
171 171
 	 */
172 172
 	$search = apply_filters('geodir_home_map_listing_where', $search);
173 173
     $search = str_replace(array("'%", "%'"), array("'%%", "%%'"), $search);
174
-    $cat_type = $post_type . 'category';
174
+    $cat_type = $post_type.'category';
175 175
     if ($post_type == 'gd_event') {
176 176
         $event_select = ", pd.recurring_dates, pd.is_recurring";
177 177
     } else {
178 178
         $event_select = "";
179 179
     }
180 180
 
181
-    $sql_select = 'SELECT pd.default_category, pd.' . $cat_type . ', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude' . $event_select;
181
+    $sql_select = 'SELECT pd.default_category, pd.'.$cat_type.', pd.post_title, pd.post_id, pd.post_latitude, pd.post_longitude'.$event_select;
182 182
     /**
183 183
 	 * Filter the SQL SELECT clause to retrive fields data
184 184
 	 *
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 	 */
199 199
 	$groupby = apply_filters('geodir_home_map_listing_groupby', $groupby);
200 200
 
201
-    $catsql = $wpdb->prepare("$select $field_default_cat FROM " . $wpdb->posts . " as p" . $join . " WHERE p.ID = pd.post_id AND p.post_status = 'publish' " . $search . $gd_posttype . $groupby , $main_query_array);
201
+    $catsql = $wpdb->prepare("$select $field_default_cat FROM ".$wpdb->posts." as p".$join." WHERE p.ID = pd.post_id AND p.post_status = 'publish' ".$search.$gd_posttype.$groupby, $main_query_array);
202 202
     
203 203
 	/**
204 204
 	 * Filter the SQL query to retrive markers data
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
         global $geodir_date_time_format, $geodir_date_format, $geodir_time_format;
249 249
 
250 250
         $today = strtotime(date_i18n('Y-m-d'));
251
-        $show_dates = $post_type == 'gd_event' ? (int)get_option('geodir_event_infowindow_dates_count', 1) : 0;
251
+        $show_dates = $post_type == 'gd_event' ? (int) get_option('geodir_event_infowindow_dates_count', 1) : 0;
252 252
         
253 253
         foreach ($catinfo as $catinfo_obj) {
254 254
             $post_title = $catinfo_obj->post_title;
@@ -264,29 +264,29 @@  discard block
 block discarded – undo
264 264
                     $endtimes = '';
265 265
                     $astarttimes = array();
266 266
                     $aendtimes = array();
267
-                    if ( !isset( $recurring_data['repeat_type'] ) ) {
267
+                    if (!isset($recurring_data['repeat_type'])) {
268 268
                         $recurring_data['repeat_type'] = 'custom';
269 269
                     }
270
-                    $repeat_type = isset( $recurring_data['repeat_type'] ) && in_array( $recurring_data['repeat_type'], array( 'day', 'week', 'month', 'year', 'custom' ) ) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom
271
-                    $different_times = isset( $recurring_data['different_times'] ) && !empty( $recurring_data['different_times'] ) ? true : false;
270
+                    $repeat_type = isset($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'year'; // day, week, month, year, custom
271
+                    $different_times = isset($recurring_data['different_times']) && !empty($recurring_data['different_times']) ? true : false;
272 272
         
273 273
                     $recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
274 274
                     
275
-                    if ( !empty( $recurring_dates ) ) {
276
-                        if ( empty( $recurring_data['all_day'] ) ) {
277
-                            if ( $repeat_type == 'custom' && $different_times ) {
278
-                                $astarttimes = isset( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array();
279
-                                $aendtimes = isset( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array();
275
+                    if (!empty($recurring_dates)) {
276
+                        if (empty($recurring_data['all_day'])) {
277
+                            if ($repeat_type == 'custom' && $different_times) {
278
+                                $astarttimes = isset($recurring_data['starttimes']) ? $recurring_data['starttimes'] : array();
279
+                                $aendtimes = isset($recurring_data['endtimes']) ? $recurring_data['endtimes'] : array();
280 280
                             } else {
281
-                                $starttimes = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : '';
282
-                                $endtimes = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : '';
281
+                                $starttimes = isset($recurring_data['starttime']) ? $recurring_data['starttime'] : '';
282
+                                $endtimes = isset($recurring_data['endtime']) ? $recurring_data['endtime'] : '';
283 283
                             }
284 284
                         }
285 285
                         
286 286
                         $e = 0;
287
-                        foreach( $recurring_dates as $key => $date ) {
288
-                            if ( $repeat_type == 'custom' && $different_times ) {
289
-                                if ( !empty( $astarttimes ) && isset( $astarttimes[$key] ) ) {
287
+                        foreach ($recurring_dates as $key => $date) {
288
+                            if ($repeat_type == 'custom' && $different_times) {
289
+                                if (!empty($astarttimes) && isset($astarttimes[$key])) {
290 290
                                     $starttimes = $astarttimes[$key];
291 291
                                     $endtimes = $aendtimes[$key];
292 292
                                 } else {
@@ -295,50 +295,50 @@  discard block
 block discarded – undo
295 295
                                 }
296 296
                             }
297 297
                             
298
-                            $duration = isset( $recurring_data['duration_x'] ) && (int)$recurring_data['duration_x'] > 0 ? (int)$recurring_data['duration_x'] : 1;
298
+                            $duration = isset($recurring_data['duration_x']) && (int) $recurring_data['duration_x'] > 0 ? (int) $recurring_data['duration_x'] : 1;
299 299
                             $duration--;
300
-                            $enddate = date_i18n( 'Y-m-d', strtotime( $date . ' + ' . $duration . ' day' ) );
300
+                            $enddate = date_i18n('Y-m-d', strtotime($date.' + '.$duration.' day'));
301 301
                             
302 302
                             // Hide past dates
303
-                            if ( strtotime( $enddate ) < $today ) {
303
+                            if (strtotime($enddate) < $today) {
304 304
                                 continue;
305 305
                             }
306 306
                                     
307
-                            $sdate = strtotime( $date . ' ' . $starttimes );
308
-                            $edate = strtotime( $enddate . ' ' . $endtimes );
307
+                            $sdate = strtotime($date.' '.$starttimes);
308
+                            $edate = strtotime($enddate.' '.$endtimes);
309 309
                                         
310
-                            $start_date = date_i18n( $geodir_date_time_format, $sdate );
311
-                            $end_date = date_i18n( $geodir_date_time_format, $edate );
310
+                            $start_date = date_i18n($geodir_date_time_format, $sdate);
311
+                            $end_date = date_i18n($geodir_date_time_format, $edate);
312 312
                             
313 313
                             $same_day = false;
314 314
                             $full_day = false;
315 315
                             $same_datetime = false;
316 316
                             
317
-                            if ( $starttimes == $endtimes && ( $starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00' ) ) {
317
+                            if ($starttimes == $endtimes && ($starttimes == '' || $starttimes == '00:00:00' || $starttimes == '00:00')) {
318 318
                                 $full_day = true;
319 319
                             }
320 320
                             
321
-                            if ( $start_date == $end_date && $full_day ) {
321
+                            if ($start_date == $end_date && $full_day) {
322 322
                                 $same_datetime = true;
323 323
                             }
324 324
 
325
-                            $link_date = date_i18n( 'Y-m-d', $sdate );
326
-                            $title_date = date_i18n( $geodir_date_format, $sdate );
327
-                            if ( $full_day ) {
325
+                            $link_date = date_i18n('Y-m-d', $sdate);
326
+                            $title_date = date_i18n($geodir_date_format, $sdate);
327
+                            if ($full_day) {
328 328
                                 $start_date = $title_date;
329
-                                $end_date = date_i18n( $geodir_date_format, $edate );
329
+                                $end_date = date_i18n($geodir_date_format, $edate);
330 330
                             }
331 331
                             
332
-                            if ( !$same_datetime && !$full_day && date_i18n( 'Y-m-d', $sdate ) == date_i18n( 'Y-m-d', $edate ) ) {
332
+                            if (!$same_datetime && !$full_day && date_i18n('Y-m-d', $sdate) == date_i18n('Y-m-d', $edate)) {
333 333
                                 $same_day = true;
334 334
                                 
335
-                                $start_date .= ' - ' . date_i18n( $geodir_time_format, $edate );
335
+                                $start_date .= ' - '.date_i18n($geodir_time_format, $edate);
336 336
                             }
337 337
                             
338
-                            $event_dates .= ' :: ' . $start_date;
338
+                            $event_dates .= ' :: '.$start_date;
339 339
                         
340
-                            if ( !$same_day && !$same_datetime ) {
341
-                                $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date;
340
+                            if (!$same_day && !$same_datetime) {
341
+                                $event_dates .= ' '.__('to', 'geodirectory').' '.$end_date;
342 342
                             }
343 343
                             
344 344
                             $e++;
@@ -349,67 +349,67 @@  discard block
 block discarded – undo
349 349
                         }
350 350
                     }
351 351
                 } else {
352
-                    $start_date = isset( $recurring_data['event_start'] ) ? $recurring_data['event_start'] : '';
353
-                    $end_date = isset( $recurring_data['event_end'] ) ? $recurring_data['event_end'] : $start_date;
354
-                    $all_day = isset( $recurring_data['all_day'] ) && !empty( $recurring_data['all_day'] ) ? true : false;
355
-                    $starttime = isset( $recurring_data['starttime'] ) ? $recurring_data['starttime'] : '';
356
-                    $endtime = isset( $recurring_data['endtime'] ) ? $recurring_data['endtime'] : '';
352
+                    $start_date = isset($recurring_data['event_start']) ? $recurring_data['event_start'] : '';
353
+                    $end_date = isset($recurring_data['event_end']) ? $recurring_data['event_end'] : $start_date;
354
+                    $all_day = isset($recurring_data['all_day']) && !empty($recurring_data['all_day']) ? true : false;
355
+                    $starttime = isset($recurring_data['starttime']) ? $recurring_data['starttime'] : '';
356
+                    $endtime = isset($recurring_data['endtime']) ? $recurring_data['endtime'] : '';
357 357
                 
358
-                    $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
359
-                    $starttimes = isset( $recurring_data['starttimes'] ) && !empty( $recurring_data['starttimes'] ) ? $recurring_data['starttimes'] : array();
360
-                    $endtimes = isset( $recurring_data['endtimes'] ) && !empty( $recurring_data['endtimes'] ) ? $recurring_data['endtimes'] : array();
358
+                    $event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
359
+                    $starttimes = isset($recurring_data['starttimes']) && !empty($recurring_data['starttimes']) ? $recurring_data['starttimes'] : array();
360
+                    $endtimes = isset($recurring_data['endtimes']) && !empty($recurring_data['endtimes']) ? $recurring_data['endtimes'] : array();
361 361
                     
362
-                    if ( !geodir_event_is_date( $start_date ) && !empty( $event_recurring_dates ) ) {
362
+                    if (!geodir_event_is_date($start_date) && !empty($event_recurring_dates)) {
363 363
                         $start_date = $event_recurring_dates[0];
364 364
                     }
365 365
                                 
366
-                    if ( strtotime( $end_date ) < strtotime( $start_date ) ) {
366
+                    if (strtotime($end_date) < strtotime($start_date)) {
367 367
                         $end_date = $start_date;
368 368
                     }
369 369
                     
370 370
                     if ($end_date != '' && strtotime($end_date) >= $today) {
371
-                        if ( $starttime == '' && !empty( $starttimes ) ) {
371
+                        if ($starttime == '' && !empty($starttimes)) {
372 372
                             $starttime = $starttimes[0];
373 373
                             $endtime = $endtimes[0];
374 374
                         }
375 375
                         
376 376
                         $same_day = false;
377 377
                         $one_day = false;
378
-                        if ( $start_date == $end_date && $all_day ) {
378
+                        if ($start_date == $end_date && $all_day) {
379 379
                             $one_day = true;
380 380
                         }
381 381
 
382
-                        if ( $all_day ) {
383
-                            $start_datetime = strtotime( $start_date );
384
-                            $end_datetime = strtotime( $end_date );
382
+                        if ($all_day) {
383
+                            $start_datetime = strtotime($start_date);
384
+                            $end_datetime = strtotime($end_date);
385 385
                             
386
-                            $start_date = date_i18n( $geodir_date_format, $start_datetime );
387
-                            $end_date = date_i18n( $geodir_date_format, $end_datetime );
388
-                            if ( $start_date == $end_date ) {
386
+                            $start_date = date_i18n($geodir_date_format, $start_datetime);
387
+                            $end_date = date_i18n($geodir_date_format, $end_datetime);
388
+                            if ($start_date == $end_date) {
389 389
                                 $one_day = true;
390 390
                             }
391 391
                         } else {
392
-                            if ( $start_date == $end_date && $starttime == $endtime ) {
393
-                                $end_date = date_i18n( 'Y-m-d', strtotime( $start_date . ' ' . $starttime . ' +1 day' ) );
392
+                            if ($start_date == $end_date && $starttime == $endtime) {
393
+                                $end_date = date_i18n('Y-m-d', strtotime($start_date.' '.$starttime.' +1 day'));
394 394
                                 $one_day = false;
395 395
                             }
396
-                            $start_datetime = strtotime( $start_date . ' ' . $starttime );
397
-                            $end_datetime = strtotime( $end_date . ' ' . $endtime );
396
+                            $start_datetime = strtotime($start_date.' '.$starttime);
397
+                            $end_datetime = strtotime($end_date.' '.$endtime);
398 398
                             
399
-                            $start_date = date_i18n( $geodir_date_time_format, $start_datetime );
400
-                            $end_date = date_i18n( $geodir_date_time_format, $end_datetime );
399
+                            $start_date = date_i18n($geodir_date_time_format, $start_datetime);
400
+                            $end_date = date_i18n($geodir_date_time_format, $end_datetime);
401 401
                         }
402 402
 
403
-                        if ( !$one_day && date_i18n( 'Y-m-d', $start_datetime ) == date_i18n( 'Y-m-d', $end_datetime ) ) {
403
+                        if (!$one_day && date_i18n('Y-m-d', $start_datetime) == date_i18n('Y-m-d', $end_datetime)) {
404 404
                             $same_day = true;
405 405
                             
406
-                            $start_date .= ' - ' . date_i18n( $geodir_time_format, $end_datetime );
406
+                            $start_date .= ' - '.date_i18n($geodir_time_format, $end_datetime);
407 407
                         }
408 408
                         
409
-                        $event_dates .= ' :: ' . $start_date;
409
+                        $event_dates .= ' :: '.$start_date;
410 410
                         
411
-                        if ( !$same_day && !$one_day ) {
412
-                            $event_dates .= ' ' . __( 'to', 'geodirectory' ) . ' ' . $end_date;
411
+                        if (!$same_day && !$one_day) {
412
+                            $event_dates .= ' '.__('to', 'geodirectory').' '.$end_date;
413 413
                         }
414 414
                     }
415 415
                 }
@@ -425,8 +425,8 @@  discard block
 block discarded – undo
425 425
             $default_cat = isset($catinfo_obj->default_category) ? $catinfo_obj->default_category : '';
426 426
 
427 427
             // if single cat lets just show that icon
428
-            if(is_array($map_cat_ids_array) && count($map_cat_ids_array)==1){
429
-                $default_cat = (int)$map_cat_ids_array[0];
428
+            if (is_array($map_cat_ids_array) && count($map_cat_ids_array) == 1) {
429
+                $default_cat = (int) $map_cat_ids_array[0];
430 430
             }
431 431
 
432 432
             $icon = !empty($geodir_cat_icons) && isset($geodir_cat_icons[$default_cat]) ? $geodir_cat_icons[$default_cat] : '';
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
                 $icon_size = array('w' => 36, 'h' => 45);
447 447
             }
448 448
 
449
-            $content_data[] = '{"id":"' . $catinfo_obj->post_id . '","t": "' . $title . '","lt": "' . $catinfo_obj->post_latitude . '","ln": "' . $catinfo_obj->post_longitude . '","mk_id":"' . $catinfo_obj->post_id . '_' . $default_cat . '","i":"' . $icon . '","w":"' . $icon_size['w'] . '","h":"' . $icon_size['h'] . '"'.$mark_extra.'}';
449
+            $content_data[] = '{"id":"'.$catinfo_obj->post_id.'","t": "'.$title.'","lt": "'.$catinfo_obj->post_latitude.'","ln": "'.$catinfo_obj->post_longitude.'","mk_id":"'.$catinfo_obj->post_id.'_'.$default_cat.'","i":"'.$icon.'","w":"'.$icon_size['w'].'","h":"'.$icon_size['h'].'"'.$mark_extra.'}';
450 450
             $post_ids[] = $catinfo_obj->post_id;
451 451
         }
452 452
     }
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
     $totalcount = count(array_unique($post_ids));
471 471
 
472 472
     if (!empty($cat_content_info)) {
473
-        return '[{"totalcount":"' . $totalcount . '",' . substr(implode(',', $cat_content_info), 1) . ']';
473
+        return '[{"totalcount":"'.$totalcount.'",'.substr(implode(',', $cat_content_info), 1).']';
474 474
     }
475 475
     else {
476 476
         return '[{"totalcount":"0"}]';
Please login to merge, or discard this patch.