Test Failed
Push — master ( 0cf57c...361012 )
by Stiofan
17:30
created
geodirectory-functions/general_functions.php 1 patch
Spacing   +1318 added lines, -1318 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' && ( get_option( 'geodir_notify_post_submit' ) || get_option( 'geodir_notify_post_submit', '-1' ) == '-1' ) ) {
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' && (get_option('geodir_notify_post_submit') || get_option('geodir_notify_post_submit', '-1') == '-1')) {
1029
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1030
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1031 1031
 
1032
-			$search_array  = array(
1032
+			$search_array = array(
1033 1033
 				'[#listing_link#]',
1034 1034
 				'[#site_name_url#]',
1035 1035
 				'[#post_id#]',
@@ -1065,7 +1065,7 @@  discard block
 block discarded – undo
1065 1065
 				$user_login,
1066 1066
 				$post_author_email,
1067 1067
 			);
1068
-			$message       = str_replace( $search_array, $replace_array, $message );
1068
+			$message       = str_replace($search_array, $replace_array, $message);
1069 1069
 
1070 1070
 			$search_array  = array(
1071 1071
 				'[#listing_link#]',
@@ -1097,26 +1097,26 @@  discard block
 block discarded – undo
1097 1097
 				$user_login,
1098 1098
 				$post_author_email,
1099 1099
 			);
1100
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1100
+			$subject = str_replace($search_array, $replace_array, $subject);
1101 1101
 
1102 1102
 			$subject .= ' - ADMIN BCC COPY';
1103 1103
 			$admin_bcc = true;
1104 1104
 
1105
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1105
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1106 1106
 			$subject .= ' - ADMIN BCC COPY';
1107 1107
 			$admin_bcc = true;
1108
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1108
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1109 1109
 			$subject .= ' - ADMIN BCC COPY';
1110 1110
 			$admin_bcc = true;
1111
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1111
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1112 1112
 			$subject .= ' - ADMIN BCC COPY';
1113 1113
 			$admin_bcc = true;
1114
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1114
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1115 1115
 			$subject .= ' - ADMIN BCC COPY';
1116 1116
 			$admin_bcc = true;
1117 1117
 		}
1118 1118
 
1119
-		if ( $admin_bcc === true ) {
1119
+		if ($admin_bcc === true) {
1120 1120
 
1121 1121
 			/**
1122 1122
 			 * Filter the client email subject.
@@ -1136,7 +1136,7 @@  discard block
 block discarded – undo
1136 1136
 			 * @param string $post_id       The post ID.
1137 1137
 			 * @param string $user_id       The user ID.
1138 1138
 			 */
1139
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1139
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1140 1140
 			/**
1141 1141
 			 * Filter the client email message.
1142 1142
 			 *
@@ -1155,23 +1155,23 @@  discard block
 block discarded – undo
1155 1155
 			 * @param string $post_id       The post ID.
1156 1156
 			 * @param string $user_id       The user ID.
1157 1157
 			 */
1158
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1158
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1159 1159
 
1160 1160
 
1161
-			$sent = wp_mail( $to, $subject, $message, $headers );
1161
+			$sent = wp_mail($to, $subject, $message, $headers);
1162 1162
 
1163
-			if ( ! $sent ) {
1164
-				if ( is_array( $to ) ) {
1165
-					$to = implode( ',', $to );
1163
+			if (!$sent) {
1164
+				if (is_array($to)) {
1165
+					$to = implode(',', $to);
1166 1166
 				}
1167 1167
 				$log_message = sprintf(
1168
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1168
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1169 1169
 					$message_type,
1170
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1170
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1171 1171
 					$to,
1172 1172
 					$subject
1173 1173
 				);
1174
-				geodir_error_log( $log_message );
1174
+				geodir_error_log($log_message);
1175 1175
 			}
1176 1176
 		}
1177 1177
 
@@ -1187,51 +1187,51 @@  discard block
 block discarded – undo
1187 1187
  */
1188 1188
 function geodir_taxonomy_breadcrumb() {
1189 1189
 
1190
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1190
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1191 1191
 	$parent = $term->parent;
1192 1192
 
1193
-	while ( $parent ):
1193
+	while ($parent):
1194 1194
 		$parents[]  = $parent;
1195
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1195
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1196 1196
 		$parent     = $new_parent->parent;
1197 1197
 	endwhile;
1198 1198
 
1199
-	if ( ! empty( $parents ) ):
1200
-		$parents = array_reverse( $parents );
1199
+	if (!empty($parents)):
1200
+		$parents = array_reverse($parents);
1201 1201
 
1202
-		foreach ( $parents as $parent ):
1203
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1204
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1205
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1202
+		foreach ($parents as $parent):
1203
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1204
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1205
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1206 1206
 		endforeach;
1207 1207
 
1208 1208
 	endif;
1209 1209
 
1210
-	echo '<li> > ' . $term->name . '</li>';
1210
+	echo '<li> > '.$term->name.'</li>';
1211 1211
 }
1212 1212
 
1213
-function geodir_wpml_post_type_archive_link($link, $post_type){
1213
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1214 1214
 	if (geodir_is_wpml()) {
1215
-		$post_types   = get_option( 'geodir_post_types' );
1215
+		$post_types = get_option('geodir_post_types');
1216 1216
 		
1217
-		if ( isset( $post_types[ $post_type ] ) ) {
1218
-			$slug = $post_types[ $post_type ]['rewrite']['slug'];
1217
+		if (isset($post_types[$post_type])) {
1218
+			$slug = $post_types[$post_type]['rewrite']['slug'];
1219 1219
 
1220 1220
 			// Alter the CPT slug if WPML is set to do so
1221
-			if ( geodir_wpml_is_post_type_translated( $post_type ) ) {
1222
-				if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1221
+			if (geodir_wpml_is_post_type_translated($post_type)) {
1222
+				if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1223 1223
 
1224 1224
 					$org_slug = $slug;
1225
-					$slug     = apply_filters( 'wpml_translate_single_string',
1225
+					$slug     = apply_filters('wpml_translate_single_string',
1226 1226
 						$slug,
1227 1227
 						'WordPress',
1228
-						'URL slug: ' . $slug,
1229
-						$language_code );
1228
+						'URL slug: '.$slug,
1229
+						$language_code);
1230 1230
                     
1231
-					if ( ! $slug ) {
1231
+					if (!$slug) {
1232 1232
 						$slug = $org_slug;
1233 1233
 					} else {
1234
-						$link = str_replace( $org_slug, $slug, $link );
1234
+						$link = str_replace($org_slug, $slug, $link);
1235 1235
 					}
1236 1236
 				}
1237 1237
 			}
@@ -1240,7 +1240,7 @@  discard block
 block discarded – undo
1240 1240
 
1241 1241
 	return $link;
1242 1242
 }
1243
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1243
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1244 1244
 
1245 1245
 /**
1246 1246
  * Main function that generates breadcrumb for all pages.
@@ -1261,9 +1261,9 @@  discard block
 block discarded – undo
1261 1261
 	 *
1262 1262
 	 * @since 1.0.0
1263 1263
 	 */
1264
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1264
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1265 1265
 
1266
-	if ( ! geodir_is_page( 'home' ) ) {
1266
+	if (!geodir_is_page('home')) {
1267 1267
 		$breadcrumb    = '';
1268 1268
 		$url_categoris = '';
1269 1269
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1272,167 +1272,167 @@  discard block
 block discarded – undo
1272 1272
 		 *
1273 1273
 		 * @since 1.0.0
1274 1274
 		 */
1275
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1275
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1276 1276
 
1277 1277
 		$gd_post_type   = geodir_get_current_posttype();
1278
-		$post_type_info = get_post_type_object( $gd_post_type );
1278
+		$post_type_info = get_post_type_object($gd_post_type);
1279 1279
 
1280
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1280
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1281 1281
 
1282
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1282
+		$listing_link = get_post_type_archive_link($gd_post_type);
1283 1283
 
1284
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1285
-		$listing_link = rtrim( $listing_link, '/' );
1284
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1285
+		$listing_link = rtrim($listing_link, '/');
1286 1286
 		$listing_link .= '/';
1287 1287
 
1288 1288
 		$post_type_for_location_link = $listing_link;
1289
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1289
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1290 1290
 
1291 1291
 		global $wp, $gd_session;
1292 1292
 		$location_link = $post_type_for_location_link;
1293 1293
 
1294
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1294
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1295 1295
 			global $post;
1296
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1297
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1296
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1297
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1298 1298
 
1299
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1299
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1300 1300
 				$location_terms = array(
1301 1301
 					'gd_country' => $post->country_slug,
1302 1302
 					'gd_region'  => $post->region_slug,
1303 1303
 					'gd_city'    => $post->city_slug
1304 1304
 				);
1305 1305
 
1306
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1306
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1307 1307
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1308 1308
 				}
1309 1309
 			}
1310 1310
 
1311
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1311
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1312 1312
 
1313 1313
 			$hide_url_part = array();
1314
-			if ( $location_manager ) {
1315
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1316
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1317
-
1318
-				if ( $hide_region_part && $hide_country_part ) {
1319
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1320
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1321
-					$hide_url_part = array( 'gd_region' );
1322
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1323
-					$hide_url_part = array( 'gd_country' );
1314
+			if ($location_manager) {
1315
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1316
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1317
+
1318
+				if ($hide_region_part && $hide_country_part) {
1319
+					$hide_url_part = array('gd_country', 'gd_region');
1320
+				} else if ($hide_region_part && !$hide_country_part) {
1321
+					$hide_url_part = array('gd_region');
1322
+				} else if (!$hide_region_part && $hide_country_part) {
1323
+					$hide_url_part = array('gd_country');
1324 1324
 				}
1325 1325
 			}
1326 1326
 
1327 1327
 			$hide_text_part = array();
1328
-			if ( $geodir_show_location_url == 'country_city' ) {
1329
-				$hide_text_part = array( 'gd_region' );
1328
+			if ($geodir_show_location_url == 'country_city') {
1329
+				$hide_text_part = array('gd_region');
1330 1330
 
1331
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1332
-					unset( $location_terms['gd_region'] );
1331
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1332
+					unset($location_terms['gd_region']);
1333 1333
 				}
1334
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1335
-				$hide_text_part = array( 'gd_country' );
1334
+			} else if ($geodir_show_location_url == 'region_city') {
1335
+				$hide_text_part = array('gd_country');
1336 1336
 
1337
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1338
-					unset( $location_terms['gd_country'] );
1337
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1338
+					unset($location_terms['gd_country']);
1339 1339
 				}
1340
-			} else if ( $geodir_show_location_url == 'city' ) {
1341
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1340
+			} else if ($geodir_show_location_url == 'city') {
1341
+				$hide_text_part = array('gd_country', 'gd_region');
1342 1342
 
1343
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1344
-					unset( $location_terms['gd_country'] );
1343
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1344
+					unset($location_terms['gd_country']);
1345 1345
 				}
1346
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1347
-					unset( $location_terms['gd_region'] );
1346
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1347
+					unset($location_terms['gd_region']);
1348 1348
 				}
1349 1349
 			}
1350 1350
 
1351 1351
 			$is_location_last = '';
1352 1352
 			$is_taxonomy_last = '';
1353 1353
 			$breadcrumb .= '<li>';
1354
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1355
-				$gd_taxonomy = $gd_post_type . 'category';
1356
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1357
-				$gd_taxonomy = $gd_post_type . '_tags';
1354
+			if (get_query_var($gd_post_type.'category')) {
1355
+				$gd_taxonomy = $gd_post_type.'category';
1356
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1357
+				$gd_taxonomy = $gd_post_type.'_tags';
1358 1358
 			}
1359 1359
 
1360
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1361
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1360
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1361
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1362 1362
 				$is_location_last = false;
1363 1363
 			} else {
1364 1364
 				$is_location_last = true;
1365 1365
 			}
1366 1366
 
1367
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1367
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1368 1368
 				$is_taxonomy_last = true;
1369 1369
 			} else {
1370 1370
 				$is_taxonomy_last = false;
1371 1371
 			}
1372 1372
 
1373
-			if ( ! empty( $location_terms ) ) {
1374
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1373
+			if (!empty($location_terms)) {
1374
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1375 1375
 
1376
-				foreach ( $location_terms as $key => $location_term ) {
1377
-					if ( $location_term != '' ) {
1378
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1376
+				foreach ($location_terms as $key => $location_term) {
1377
+					if ($location_term != '') {
1378
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1379 1379
 							continue;
1380 1380
 						}
1381 1381
 
1382
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1383
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1384
-						$gd_location_link_text = geodir_utf8_ucfirst( $gd_location_link_text );
1382
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1383
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1384
+						$gd_location_link_text = geodir_utf8_ucfirst($gd_location_link_text);
1385 1385
 
1386 1386
 						$location_term_actual_country = '';
1387 1387
 						$location_term_actual_region  = '';
1388 1388
 						$location_term_actual_city    = '';
1389 1389
 						$location_term_actual_neighbourhood = '';
1390
-						if ( $geodir_get_locations ) {
1391
-							if ( $key == 'gd_country' ) {
1392
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1393
-							} else if ( $key == 'gd_region' ) {
1394
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1395
-							} else if ( $key == 'gd_city' ) {
1396
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1397
-							} else if ( $key == 'gd_neighbourhood' ) {
1398
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1390
+						if ($geodir_get_locations) {
1391
+							if ($key == 'gd_country') {
1392
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1393
+							} else if ($key == 'gd_region') {
1394
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1395
+							} else if ($key == 'gd_city') {
1396
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1397
+							} else if ($key == 'gd_neighbourhood') {
1398
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1399 1399
 							}
1400 1400
 						} else {
1401 1401
 							$location_info = geodir_get_location();
1402 1402
 
1403
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1404
-								if ( $key == 'gd_country' ) {
1405
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1406
-								} else if ( $key == 'gd_region' ) {
1407
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1408
-								} else if ( $key == 'gd_city' ) {
1409
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1403
+							if (!empty($location_info) && isset($location_info->location_id)) {
1404
+								if ($key == 'gd_country') {
1405
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1406
+								} else if ($key == 'gd_region') {
1407
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1408
+								} else if ($key == 'gd_city') {
1409
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1410 1410
 								}
1411 1411
 							}
1412 1412
 						}
1413 1413
 
1414
-						if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1415
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1416
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1417
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1418
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1419
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1420
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1421
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1414
+						if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1415
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1416
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1417
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1418
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1419
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1420
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1421
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1422 1422
 						} else {
1423
-							if ( get_option( 'permalink_structure' ) != '' ) {
1424
-								$location_link .= $location_term . '/';
1423
+							if (get_option('permalink_structure') != '') {
1424
+								$location_link .= $location_term.'/';
1425 1425
 							} else {
1426
-								$location_link .= "&$key=" . $location_term;
1426
+								$location_link .= "&$key=".$location_term;
1427 1427
 							}
1428 1428
 
1429
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1429
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1430 1430
 								$gd_location_link_text = $location_term_actual_country;
1431
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1431
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1432 1432
 								$gd_location_link_text = $location_term_actual_region;
1433
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1433
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1434 1434
 								$gd_location_link_text = $location_term_actual_city;
1435
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1435
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1436 1436
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1437 1437
 							}
1438 1438
 
@@ -1442,77 +1442,77 @@  discard block
 block discarded – undo
1442 1442
                             }
1443 1443
                             */
1444 1444
 
1445
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1445
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1446 1446
 						}
1447 1447
 					}
1448 1448
 				}
1449 1449
 			}
1450 1450
 
1451
-			if ( ! empty( $gd_taxonomy ) ) {
1451
+			if (!empty($gd_taxonomy)) {
1452 1452
 				$term_index = 1;
1453 1453
 
1454 1454
 				//if(get_option('geodir_add_categories_url'))
1455 1455
 				{
1456
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1457
-						$cat_link = $listing_link . 'tags/';
1456
+					if (get_query_var($gd_post_type.'_tags')) {
1457
+						$cat_link = $listing_link.'tags/';
1458 1458
 					} else {
1459 1459
 						$cat_link = $listing_link;
1460 1460
 					}
1461 1461
 
1462
-					foreach ( $location_terms as $key => $location_term ) {
1463
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1462
+					foreach ($location_terms as $key => $location_term) {
1463
+						if ($location_manager && in_array($key, $hide_url_part)) {
1464 1464
 							continue;
1465 1465
 						}
1466 1466
 
1467
-						if ( $location_term != '' ) {
1468
-							if ( get_option( 'permalink_structure' ) != '' ) {
1469
-								$cat_link .= $location_term . '/';
1467
+						if ($location_term != '') {
1468
+							if (get_option('permalink_structure') != '') {
1469
+								$cat_link .= $location_term.'/';
1470 1470
 							}
1471 1471
 						}
1472 1472
 					}
1473 1473
 
1474
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1475
-					foreach ( $term_array as $term ) {
1476
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1477
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1474
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1475
+					foreach ($term_array as $term) {
1476
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1477
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1478 1478
 
1479 1479
 						// get term actual name
1480
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1481
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1482
-							$term_link_text = urldecode( $term_info['name'] );
1480
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1481
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1482
+							$term_link_text = urldecode($term_info['name']);
1483 1483
 						} else {
1484 1484
 							continue;
1485 1485
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1486 1486
 						}
1487 1487
 
1488
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1489
-							$breadcrumb .= $separator . $term_link_text;
1488
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1489
+							$breadcrumb .= $separator.$term_link_text;
1490 1490
 						} else {
1491
-							$cat_link .= $term . '/';
1492
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1491
+							$cat_link .= $term.'/';
1492
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1493 1493
 						}
1494
-						$term_index ++;
1494
+						$term_index++;
1495 1495
 					}
1496 1496
 				}
1497 1497
 
1498 1498
 
1499 1499
 			}
1500 1500
 
1501
-			if ( geodir_is_page( 'detail' ) ) {
1502
-				$breadcrumb .= $separator . get_the_title();
1501
+			if (geodir_is_page('detail')) {
1502
+				$breadcrumb .= $separator.get_the_title();
1503 1503
 			}
1504 1504
 
1505 1505
 			$breadcrumb .= '</li>';
1506 1506
 
1507 1507
 
1508
-		} elseif ( geodir_is_page( 'author' ) ) {
1508
+		} elseif (geodir_is_page('author')) {
1509 1509
 			$dashboard_post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : $gd_post_type;
1510 1510
 			$user_id             = get_current_user_id();
1511
-			$author_link         = get_author_posts_url( $user_id );
1512
-			$default_author_link = geodir_getlink( $author_link, array(
1511
+			$author_link         = get_author_posts_url($user_id);
1512
+			$default_author_link = geodir_getlink($author_link, array(
1513 1513
 				'geodir_dashbord' => 'true',
1514 1514
 				'stype'           => $dashboard_post_type
1515
-			), false );
1515
+			), false);
1516 1516
 
1517 1517
 			/**
1518 1518
 			 * Filter author page link.
@@ -1522,16 +1522,16 @@  discard block
 block discarded – undo
1522 1522
 			 * @param string $default_author_link Default author link.
1523 1523
 			 * @param int $user_id                Author ID.
1524 1524
 			 */
1525
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1525
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1526 1526
 
1527 1527
 			$breadcrumb .= '<li>';
1528
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1528
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1529 1529
 
1530
-			if ( isset( $_REQUEST['list'] ) ) {
1531
-				$author_link = geodir_getlink( $author_link, array(
1530
+			if (isset($_REQUEST['list'])) {
1531
+				$author_link = geodir_getlink($author_link, array(
1532 1532
 					'geodir_dashbord' => 'true',
1533 1533
 					'stype'           => $_REQUEST['stype']
1534
-				), false );
1534
+				), false);
1535 1535
 
1536 1536
 				/**
1537 1537
 				 * Filter author page link.
@@ -1542,64 +1542,64 @@  discard block
 block discarded – undo
1542 1542
 				 * @param int $user_id        Author ID.
1543 1543
 				 * @param string $_REQUEST    ['stype'] Post type.
1544 1544
 				 */
1545
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1545
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1546 1546
 
1547
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1548
-				if($_REQUEST['list']=='favourite'){
1549
-					$breadcrumb .= $separator . MY_FAVOURITE_TEXT;
1547
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1548
+				if ($_REQUEST['list'] == 'favourite') {
1549
+					$breadcrumb .= $separator.MY_FAVOURITE_TEXT;
1550 1550
 				}
1551 1551
 
1552 1552
 			} else {
1553
-				$breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' );
1553
+				$breadcrumb .= $separator.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory');
1554 1554
 			}
1555 1555
 
1556 1556
 			$breadcrumb .= '</li>';
1557
-		} elseif ( is_category() || is_single() ) {
1557
+		} elseif (is_category() || is_single()) {
1558 1558
 			$category = get_the_category();
1559
-			if ( is_category() ) {
1560
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1559
+			if (is_category()) {
1560
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1561 1561
 			}
1562
-			if ( is_single() ) {
1563
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1564
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1562
+			if (is_single()) {
1563
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1564
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1565 1565
 			}
1566 1566
 			/* End of my version ##################################################### */
1567
-		} else if ( is_page() ) {
1567
+		} else if (is_page()) {
1568 1568
 			$page_title = get_the_title();
1569 1569
 
1570
-			if ( geodir_is_page( 'location' ) ) {
1570
+			if (geodir_is_page('location')) {
1571 1571
 				$location_page_id = geodir_location_page_id();
1572
-				$loc_post         = get_post( $location_page_id );
1572
+				$loc_post         = get_post($location_page_id);
1573 1573
 				$post_name        = $loc_post->post_name;
1574
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1575
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1574
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1575
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1576 1576
 			}
1577 1577
 
1578
-			$breadcrumb .= '<li>' . $separator;
1579
-			$breadcrumb .= stripslashes_deep( $page_title );
1578
+			$breadcrumb .= '<li>'.$separator;
1579
+			$breadcrumb .= stripslashes_deep($page_title);
1580 1580
 			$breadcrumb .= '</li>';
1581
-		} else if ( is_tag() ) {
1582
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1583
-		} else if ( is_day() ) {
1584
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1585
-			the_time( 'F jS, Y' );
1581
+		} else if (is_tag()) {
1582
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1583
+		} else if (is_day()) {
1584
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1585
+			the_time('F jS, Y');
1586 1586
 			$breadcrumb .= '</li>';
1587
-		} else if ( is_month() ) {
1588
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1589
-			the_time( 'F, Y' );
1587
+		} else if (is_month()) {
1588
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1589
+			the_time('F, Y');
1590 1590
 			$breadcrumb .= '</li>';
1591
-		} else if ( is_year() ) {
1592
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1593
-			the_time( 'Y' );
1591
+		} else if (is_year()) {
1592
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1593
+			the_time('Y');
1594 1594
 			$breadcrumb .= '</li>';
1595
-		} else if ( is_author() ) {
1596
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1595
+		} else if (is_author()) {
1596
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1597 1597
 			$breadcrumb .= '</li>';
1598
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1599
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1598
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1599
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1600 1600
 			$breadcrumb .= '</li>';
1601
-		} else if ( is_search() ) {
1602
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1601
+		} else if (is_search()) {
1602
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1603 1603
 			$breadcrumb .= '</li>';
1604 1604
 		}
1605 1605
 		$breadcrumb .= '</ul></div>';
@@ -1612,13 +1612,13 @@  discard block
 block discarded – undo
1612 1612
 		 * @param string $breadcrumb Breadcrumb HTML.
1613 1613
 		 * @param string $separator  Breadcrumb separator.
1614 1614
 		 */
1615
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1615
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1616 1616
 	}
1617 1617
 }
1618 1618
 
1619 1619
 
1620
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1621
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1620
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1621
+if (!function_exists('geodir_allow_wpadmin')) {
1622 1622
 	/**
1623 1623
 	 * Allow only admins to access wp-admin.
1624 1624
 	 *
@@ -1630,12 +1630,12 @@  discard block
 block discarded – undo
1630 1630
 	 */
1631 1631
 	function geodir_allow_wpadmin() {
1632 1632
 		global $wpdb;
1633
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1633
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1634 1634
 		{
1635
-			if ( current_user_can( 'administrator' ) ) {
1635
+			if (current_user_can('administrator')) {
1636 1636
 			} else {
1637 1637
 
1638
-				wp_redirect( home_url() );
1638
+				wp_redirect(home_url());
1639 1639
 				exit;
1640 1640
 			}
1641 1641
 
@@ -1654,23 +1654,23 @@  discard block
 block discarded – undo
1654 1654
  *
1655 1655
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1656 1656
  */
1657
-function fetch_remote_file( $url ) {
1657
+function fetch_remote_file($url) {
1658 1658
 	// extract the file name and extension from the url
1659
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1660
-	$file_name = basename( $url );
1661
-	if ( strpos( $file_name, '?' ) !== false ) {
1662
-		list( $file_name ) = explode( '?', $file_name );
1659
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1660
+	$file_name = basename($url);
1661
+	if (strpos($file_name, '?') !== false) {
1662
+		list($file_name) = explode('?', $file_name);
1663 1663
 	}
1664 1664
 	$dummy        = false;
1665 1665
 	$add_to_cache = false;
1666 1666
 	$key          = null;
1667
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1667
+	if (strpos($url, '/dummy/') !== false) {
1668 1668
 		$dummy = true;
1669
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1670
-		$value = get_transient( 'cached_dummy_images' );
1671
-		if ( $value ) {
1672
-			if ( isset( $value[ $key ] ) ) {
1673
-				return $value[ $key ];
1669
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1670
+		$value = get_transient('cached_dummy_images');
1671
+		if ($value) {
1672
+			if (isset($value[$key])) {
1673
+				return $value[$key];
1674 1674
 			} else {
1675 1675
 				$add_to_cache = true;
1676 1676
 			}
@@ -1681,62 +1681,62 @@  discard block
 block discarded – undo
1681 1681
 
1682 1682
 	// get placeholder file in the upload dir with a unique, sanitized filename
1683 1683
 
1684
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1684
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1685 1685
 
1686
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1687
-	if ( $upload['error'] ) {
1688
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1686
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1687
+	if ($upload['error']) {
1688
+		return new WP_Error('upload_dir_error', $upload['error']);
1689 1689
 	}
1690 1690
 
1691 1691
 
1692
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1692
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1693 1693
 
1694 1694
 	// fetch the remote url and write it to the placeholder file
1695
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1695
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1696 1696
 
1697 1697
 	$log_message = '';
1698
-	if ( is_wp_error( $headers ) ) {
1699
-		echo 'file: ' . $url;
1698
+	if (is_wp_error($headers)) {
1699
+		echo 'file: '.$url;
1700 1700
 
1701
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1701
+		return new WP_Error('import_file_error', $headers->get_error_message());
1702 1702
 	}
1703 1703
 
1704 1704
 	// clear cache to make compat with EWWW Image Optimizer
1705
-	if(defined( 'EWWW_IMAGE_OPTIMIZER_PLUGIN_FILE')){
1705
+	if (defined('EWWW_IMAGE_OPTIMIZER_PLUGIN_FILE')) {
1706 1706
 		clearstatcache();
1707 1707
 	}
1708
-	$filesize = filesize( $upload['file'] );
1708
+	$filesize = filesize($upload['file']);
1709 1709
 	// request failed
1710
-	if ( ! $headers ) {
1711
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1710
+	if (!$headers) {
1711
+		$log_message = __('Remote server did not respond', 'geodirectory');
1712 1712
 	} // make sure the fetch was successful
1713
-	elseif ( $headers['response']['code'] != '200' ) {
1714
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1715
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1716
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1717
-	} elseif ( 0 == $filesize ) {
1718
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1719
-	}
1720
-
1721
-	if ( $log_message ) {
1722
-		$del = unlink( $upload['file'] );
1723
-		if ( ! $del ) {
1724
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1713
+	elseif ($headers['response']['code'] != '200') {
1714
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1715
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1716
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1717
+	} elseif (0 == $filesize) {
1718
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1719
+	}
1720
+
1721
+	if ($log_message) {
1722
+		$del = unlink($upload['file']);
1723
+		if (!$del) {
1724
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1725 1725
 		}
1726 1726
 
1727
-		return new WP_Error( 'import_file_error', $log_message );
1727
+		return new WP_Error('import_file_error', $log_message);
1728 1728
 	}
1729 1729
 
1730
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1731
-		$images = get_transient( 'cached_dummy_images' );
1732
-		if ( is_array( $images ) ) {
1733
-			$images[ $key ] = $upload;
1730
+	if ($dummy && $add_to_cache && is_array($upload)) {
1731
+		$images = get_transient('cached_dummy_images');
1732
+		if (is_array($images)) {
1733
+			$images[$key] = $upload;
1734 1734
 		} else {
1735
-			$images = array( $key => $upload );
1735
+			$images = array($key => $upload);
1736 1736
 		}
1737 1737
 
1738 1738
 		//setting the cache using the WP Transient API
1739
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1739
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1740 1740
 	}
1741 1741
 
1742 1742
 	return $upload;
@@ -1750,12 +1750,12 @@  discard block
 block discarded – undo
1750 1750
  * @return string|void Max upload size.
1751 1751
  */
1752 1752
 function geodir_max_upload_size() {
1753
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1753
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1754 1754
 
1755
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1756
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1755
+	if ($max_filesize > 0 && $max_filesize < 1) {
1756
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1757 1757
 	} else {
1758
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1758
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1759 1759
 	}
1760 1760
 
1761 1761
 	/**
@@ -1765,7 +1765,7 @@  discard block
 block discarded – undo
1765 1765
 	 *
1766 1766
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1767 1767
 	 */
1768
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1768
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1769 1769
 }
1770 1770
 
1771 1771
 /**
@@ -1778,8 +1778,8 @@  discard block
 block discarded – undo
1778 1778
  * @return bool If dummy folder exists returns true, else false.
1779 1779
  */
1780 1780
 function geodir_dummy_folder_exists() {
1781
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1782
-	if ( ! is_dir( $path ) ) {
1781
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1782
+	if (!is_dir($path)) {
1783 1783
 		return false;
1784 1784
 	} else {
1785 1785
 		return true;
@@ -1798,17 +1798,17 @@  discard block
 block discarded – undo
1798 1798
  *
1799 1799
  * @return object Author info.
1800 1800
  */
1801
-function geodir_get_author_info( $aid ) {
1801
+function geodir_get_author_info($aid) {
1802 1802
 	global $wpdb;
1803 1803
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1804
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1805
-	$info    = $wpdb->get_results( $infosql );
1806
-	if ( $info ) {
1804
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1805
+	$info    = $wpdb->get_results($infosql);
1806
+	if ($info) {
1807 1807
 		return $info[0];
1808 1808
 	}
1809 1809
 }
1810 1810
 
1811
-if ( ! function_exists( 'adminEmail' ) ) {
1811
+if (!function_exists('adminEmail')) {
1812 1812
 	/**
1813 1813
 	 * Send emails to client on post submission, renew etc.
1814 1814
 	 *
@@ -1821,67 +1821,67 @@  discard block
 block discarded – undo
1821 1821
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1822 1822
 	 * @param string $custom_1     Custom data to be sent.
1823 1823
 	 */
1824
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1824
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1825 1825
 		global $wpdb;
1826
-		if ( $message_type == 'expiration' ) {
1827
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1828
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1829
-		} elseif ( $message_type == 'post_submited' ) {
1830
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1831
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1832
-		} elseif ( $message_type == 'renew' ) {
1833
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1834
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1835
-		} elseif ( $message_type == 'upgrade' ) {
1836
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1837
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1838
-		} elseif ( $message_type == 'claim_approved' ) {
1839
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1840
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1841
-		} elseif ( $message_type == 'claim_rejected' ) {
1842
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1843
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1844
-		} elseif ( $message_type == 'claim_requested' ) {
1845
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1846
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1847
-		} elseif ( $message_type == 'auto_claim' ) {
1848
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1849
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1850
-		} elseif ( $message_type == 'payment_success' ) {
1851
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1852
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1853
-		} elseif ( $message_type == 'payment_fail' ) {
1854
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1855
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1826
+		if ($message_type == 'expiration') {
1827
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1828
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1829
+		} elseif ($message_type == 'post_submited') {
1830
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1831
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1832
+		} elseif ($message_type == 'renew') {
1833
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1834
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1835
+		} elseif ($message_type == 'upgrade') {
1836
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1837
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1838
+		} elseif ($message_type == 'claim_approved') {
1839
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1840
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1841
+		} elseif ($message_type == 'claim_rejected') {
1842
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1843
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1844
+		} elseif ($message_type == 'claim_requested') {
1845
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1846
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1847
+		} elseif ($message_type == 'auto_claim') {
1848
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1849
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1850
+		} elseif ($message_type == 'payment_success') {
1851
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1852
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1853
+		} elseif ($message_type == 'payment_fail') {
1854
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1855
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1856 1856
 		}
1857 1857
 		$transaction_details = $custom_1;
1858
-		$fromEmail           = get_option( 'site_email' );
1858
+		$fromEmail           = get_option('site_email');
1859 1859
 		$fromEmailName       = get_site_emailName();
1860 1860
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1861
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1861
+		$pkg_limit            = get_property_price_info_listing($page_id);
1862 1862
 		$alivedays            = $pkg_limit['days'];
1863
-		$productlink          = get_permalink( $page_id );
1864
-		$post_info            = get_post( $page_id );
1865
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1866
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1863
+		$productlink          = get_permalink($page_id);
1864
+		$post_info            = get_post($page_id);
1865
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1866
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1867 1867
 		$loginurl             = geodir_login_url();
1868
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1868
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1869 1869
 		$siteurl              = home_url();
1870
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1871
-		$user_info            = get_userdata( $user_id );
1870
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1871
+		$user_info            = get_userdata($user_id);
1872 1872
 		$user_email           = $user_info->user_email;
1873
-		$display_name         = geodir_get_client_name( $user_id );
1873
+		$display_name         = geodir_get_client_name($user_id);
1874 1874
 		$user_login           = $user_info->user_login;
1875
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1876
-		if ( $number_of_grace_days == '' ) {
1875
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1876
+		if ($number_of_grace_days == '') {
1877 1877
 			$number_of_grace_days = 1;
1878 1878
 		}
1879
-		if ( $post_info->post_type == 'event' ) {
1879
+		if ($post_info->post_type == 'event') {
1880 1880
 			$post_type = 'event';
1881 1881
 		} else {
1882 1882
 			$post_type = 'listing';
1883 1883
 		}
1884
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1884
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1885 1885
 		$search_array   = array(
1886 1886
 			'[#client_name#]',
1887 1887
 			'[#listing_link#]',
@@ -1897,7 +1897,7 @@  discard block
 block discarded – undo
1897 1897
 			'[#site_name#]',
1898 1898
 			'[#transaction_details#]'
1899 1899
 		);
1900
-		$replace_array  = array(
1900
+		$replace_array = array(
1901 1901
 			$display_name,
1902 1902
 			$listingLink,
1903 1903
 			$post_date,
@@ -1912,13 +1912,13 @@  discard block
 block discarded – undo
1912 1912
 			$fromEmailName,
1913 1913
 			$transaction_details
1914 1914
 		);
1915
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1916
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1915
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1916
+		$subject        = str_replace($search_array, $replace_array, $subject);
1917 1917
 		
1918 1918
 		
1919
-		$headers  = array();
1919
+		$headers = array();
1920 1920
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1921
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1921
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1922 1922
 
1923 1923
 		$to      = $fromEmail;
1924 1924
 		$message = $client_message;
@@ -1936,7 +1936,7 @@  discard block
 block discarded – undo
1936 1936
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1937 1937
 		 * @param string $custom_1     Custom data to be sent.
1938 1938
 		 */
1939
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1939
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1940 1940
 		/**
1941 1941
 		 * Filter the admin email subject.
1942 1942
 		 *
@@ -1949,7 +1949,7 @@  discard block
 block discarded – undo
1949 1949
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1950 1950
 		 * @param string $custom_1     Custom data to be sent.
1951 1951
 		 */
1952
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1952
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1953 1953
 		/**
1954 1954
 		 * Filter the admin email message.
1955 1955
 		 *
@@ -1962,7 +1962,7 @@  discard block
 block discarded – undo
1962 1962
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1963 1963
 		 * @param string $custom_1     Custom data to be sent.
1964 1964
 		 */
1965
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1965
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1966 1966
 		/**
1967 1967
 		 * Filter the admin email headers.
1968 1968
 		 *
@@ -1975,22 +1975,22 @@  discard block
 block discarded – undo
1975 1975
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1976 1976
 		 * @param string $custom_1     Custom data to be sent.
1977 1977
 		 */
1978
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1978
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1979 1979
 
1980 1980
 
1981
-		$sent = wp_mail( $to, $subject, $message, $headers );
1982
-		if ( ! $sent ) {
1983
-			if ( is_array( $to ) ) {
1984
-				$to = implode( ',', $to );
1981
+		$sent = wp_mail($to, $subject, $message, $headers);
1982
+		if (!$sent) {
1983
+			if (is_array($to)) {
1984
+				$to = implode(',', $to);
1985 1985
 			}
1986 1986
 			$log_message = sprintf(
1987
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1987
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1988 1988
 				$message_type,
1989
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1989
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1990 1990
 				$to,
1991 1991
 				$subject
1992 1992
 			);
1993
-			geodir_error_log( $log_message );
1993
+			geodir_error_log($log_message);
1994 1994
 		}
1995 1995
 	}
1996 1996
 }
@@ -2010,12 +2010,12 @@  discard block
 block discarded – undo
2010 2010
  *
2011 2011
  * @return array Category IDs.
2012 2012
  */
2013
-function gd_lang_object_ids( $ids_array, $type ) {
2014
-	if ( geodir_is_wpml() ) {
2013
+function gd_lang_object_ids($ids_array, $type) {
2014
+	if (geodir_is_wpml()) {
2015 2015
 		$res = array();
2016
-		foreach ( $ids_array as $id ) {
2017
-			$xlat = geodir_wpml_object_id( $id, $type, false );
2018
-			if ( ! is_null( $xlat ) ) {
2016
+		foreach ($ids_array as $id) {
2017
+			$xlat = geodir_wpml_object_id($id, $type, false);
2018
+			if (!is_null($xlat)) {
2019 2019
 				$res[] = $xlat;
2020 2020
 			}
2021 2021
 		}
@@ -2039,20 +2039,20 @@  discard block
 block discarded – undo
2039 2039
  *
2040 2040
  * @return array Modified Body CSS classes.
2041 2041
  */
2042
-function geodir_custom_posts_body_class( $classes ) {
2042
+function geodir_custom_posts_body_class($classes) {
2043 2043
 	global $wpdb, $wp;
2044
-	$post_types = geodir_get_posttypes( 'object' );
2045
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2044
+	$post_types = geodir_get_posttypes('object');
2045
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2046 2046
 		$classes[] = 'geodir_custom_posts';
2047 2047
 	}
2048 2048
 
2049 2049
 	// fix body class for signup page
2050
-	if ( geodir_is_page( 'login' ) ) {
2050
+	if (geodir_is_page('login')) {
2051 2051
 		$new_classes   = array();
2052 2052
 		$new_classes[] = 'signup page-geodir-signup';
2053
-		if ( ! empty( $classes ) ) {
2054
-			foreach ( $classes as $class ) {
2055
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2053
+		if (!empty($classes)) {
2054
+			foreach ($classes as $class) {
2055
+				if ($class && $class != 'home' && $class != 'blog') {
2056 2056
 					$new_classes[] = $class;
2057 2057
 				}
2058 2058
 			}
@@ -2060,14 +2060,14 @@  discard block
 block discarded – undo
2060 2060
 		$classes = $new_classes;
2061 2061
 	}
2062 2062
 
2063
-	if ( geodir_is_geodir_page() ) {
2063
+	if (geodir_is_geodir_page()) {
2064 2064
 		$classes[] = 'geodir-page';
2065 2065
 	}
2066 2066
 
2067 2067
 	return $classes;
2068 2068
 }
2069 2069
 
2070
-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
2070
+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
2071 2071
 
2072 2072
 
2073 2073
 /**
@@ -2083,7 +2083,7 @@  discard block
 block discarded – undo
2083 2083
 	 *
2084 2084
 	 * @since 1.0.0
2085 2085
 	 */
2086
-	return apply_filters( 'geodir_map_zoom_level', array(
2086
+	return apply_filters('geodir_map_zoom_level', array(
2087 2087
 		1,
2088 2088
 		2,
2089 2089
 		3,
@@ -2103,7 +2103,7 @@  discard block
 block discarded – undo
2103 2103
 		17,
2104 2104
 		18,
2105 2105
 		19
2106
-	) );
2106
+	));
2107 2107
 
2108 2108
 }
2109 2109
 
@@ -2116,12 +2116,12 @@  discard block
 block discarded – undo
2116 2116
  *
2117 2117
  * @param string $geodir_option_name Option key.
2118 2118
  */
2119
-function geodir_option_version_backup( $geodir_option_name ) {
2119
+function geodir_option_version_backup($geodir_option_name) {
2120 2120
 	$version_date  = time();
2121
-	$geodir_option = get_option( $geodir_option_name );
2121
+	$geodir_option = get_option($geodir_option_name);
2122 2122
 
2123
-	if ( ! empty( $geodir_option ) ) {
2124
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2123
+	if (!empty($geodir_option)) {
2124
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2125 2125
 	}
2126 2126
 }
2127 2127
 
@@ -2135,10 +2135,10 @@  discard block
 block discarded – undo
2135 2135
  *
2136 2136
  * @return int Page ID.
2137 2137
  */
2138
-function get_page_id_geodir_add_listing_page( $page_id ) {
2139
-	if ( geodir_wpml_multilingual_status() ) {
2138
+function get_page_id_geodir_add_listing_page($page_id) {
2139
+	if (geodir_wpml_multilingual_status()) {
2140 2140
 		$post_type = 'post_page';
2141
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2141
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2142 2142
 	}
2143 2143
 
2144 2144
 	return $page_id;
@@ -2152,7 +2152,7 @@  discard block
 block discarded – undo
2152 2152
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2153 2153
  */
2154 2154
 function geodir_wpml_multilingual_status() {
2155
-	if ( geodir_is_wpml() ) {
2155
+	if (geodir_is_wpml()) {
2156 2156
 		return true;
2157 2157
 	}
2158 2158
 
@@ -2170,19 +2170,19 @@  discard block
 block discarded – undo
2170 2170
  *
2171 2171
  * @return int Element ID when exists. Else the page id.
2172 2172
  */
2173
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2173
+function geodir_get_wpml_element_id($page_id, $post_type) {
2174 2174
 	global $sitepress;
2175
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2176
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2175
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2176
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2177 2177
 
2178
-		if ( $trid > 0 ) {
2179
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2178
+		if ($trid > 0) {
2179
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2180 2180
 
2181 2181
 			$lang = $sitepress->get_current_language();
2182 2182
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2183 2183
 
2184
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2185
-				$page_id = $translations[ $lang ]->element_id;
2184
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2185
+				$page_id = $translations[$lang]->element_id;
2186 2186
 			}
2187 2187
 		}
2188 2188
 	}
@@ -2199,15 +2199,15 @@  discard block
 block discarded – undo
2199 2199
  */
2200 2200
 function geodir_wpml_check_element_id() {
2201 2201
 	global $sitepress;
2202
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2202
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2203 2203
 		$el_type      = 'post_page';
2204
-		$el_id        = get_option( 'geodir_add_listing_page' );
2204
+		$el_id        = get_option('geodir_add_listing_page');
2205 2205
 		$default_lang = $sitepress->get_default_language();
2206
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2206
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2207 2207
 
2208
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2209
-			if ( ! $el_details->source_language_code ) {
2210
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2208
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2209
+			if (!$el_details->source_language_code) {
2210
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2211 2211
 				$sitepress->icl_translations_cache->clear();
2212 2212
 			}
2213 2213
 		}
@@ -2227,44 +2227,44 @@  discard block
 block discarded – undo
2227 2227
  *
2228 2228
  * @return string Orderby SQL.
2229 2229
  */
2230
-function geodir_widget_listings_get_order( $query_args ) {
2230
+function geodir_widget_listings_get_order($query_args) {
2231 2231
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2232 2232
 
2233 2233
 	$query_args = $gd_query_args_widgets;
2234
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2235
-		return $wpdb->posts . ".post_date DESC, ";
2234
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2235
+		return $wpdb->posts.".post_date DESC, ";
2236 2236
 	}
2237 2237
 
2238
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2239
-	$table     = $plugin_prefix . $post_type . '_detail';
2238
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2239
+	$table     = $plugin_prefix.$post_type.'_detail';
2240 2240
 
2241
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2241
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2242 2242
 
2243
-	switch ( $sort_by ) {
2243
+	switch ($sort_by) {
2244 2244
 		case 'latest':
2245 2245
 		case 'newest':
2246
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2246
+			$orderby = $wpdb->posts.".post_date DESC, ";
2247 2247
 			break;
2248 2248
 		case 'featured':
2249
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2249
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2250 2250
 			break;
2251 2251
 		case 'az':
2252
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2252
+			$orderby = $wpdb->posts.".post_title ASC, ";
2253 2253
 			break;
2254 2254
 		case 'high_review':
2255
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2255
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2256 2256
 			break;
2257 2257
 		case 'high_rating':
2258
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2258
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2259 2259
 			break;
2260 2260
 		case 'random':
2261 2261
 			$orderby = "RAND(), ";
2262 2262
 			break;
2263 2263
 		default:
2264
-			if ( $custom_orderby = geodir_prepare_custom_sorting( $sort_by, $table ) ) {
2265
-				$orderby = $custom_orderby . ", ";
2264
+			if ($custom_orderby = geodir_prepare_custom_sorting($sort_by, $table)) {
2265
+				$orderby = $custom_orderby.", ";
2266 2266
 			} else {
2267
-				$orderby = $wpdb->posts . ".post_title ASC, ";
2267
+				$orderby = $wpdb->posts.".post_title ASC, ";
2268 2268
 			}
2269 2269
 			break;
2270 2270
 	}
@@ -2289,16 +2289,16 @@  discard block
 block discarded – undo
2289 2289
  *
2290 2290
  * @return mixed Result object.
2291 2291
  */
2292
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2292
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2293 2293
 	global $wpdb, $plugin_prefix, $table_prefix;
2294 2294
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2295 2295
 	$gd_query_args_widgets            = $query_args;
2296 2296
 
2297
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2298
-	$table     = $plugin_prefix . $post_type . '_detail';
2299
-	$supports_wpml = geodir_wpml_is_post_type_translated( $post_type );
2297
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2298
+	$table     = $plugin_prefix.$post_type.'_detail';
2299
+	$supports_wpml = geodir_wpml_is_post_type_translated($post_type);
2300 2300
 
2301
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2301
+	$fields = $wpdb->posts.".*, ".$table.".*";
2302 2302
 	/**
2303 2303
 	 * Filter widget listing fields string part that is being used for query.
2304 2304
 	 *
@@ -2308,17 +2308,17 @@  discard block
 block discarded – undo
2308 2308
 	 * @param string $table     Table name.
2309 2309
 	 * @param string $post_type Post type.
2310 2310
 	 */
2311
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2311
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2312 2312
 
2313
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2313
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2314 2314
 
2315 2315
 	########### WPML ###########
2316 2316
 
2317
-	if ( $supports_wpml ) {
2317
+	if ($supports_wpml) {
2318 2318
 		global $sitepress;
2319 2319
 		$lang_code = ICL_LANGUAGE_CODE;
2320
-		if ( $lang_code ) {
2321
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2320
+		if ($lang_code) {
2321
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2322 2322
 		}
2323 2323
 	}
2324 2324
 
@@ -2332,15 +2332,15 @@  discard block
 block discarded – undo
2332 2332
 	 * @param string $join      Join clause string.
2333 2333
 	 * @param string $post_type Post type.
2334 2334
 	 */
2335
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2335
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2336 2336
 
2337
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2337
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2338 2338
 
2339
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2339
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2340 2340
 
2341 2341
 	########### WPML ###########
2342
-	if ( $supports_wpml ) {
2343
-		if ( $lang_code ) {
2342
+	if ($supports_wpml) {
2343
+		if ($lang_code) {
2344 2344
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2345 2345
 		}
2346 2346
 	}
@@ -2353,8 +2353,8 @@  discard block
 block discarded – undo
2353 2353
 	 * @param string $where     Where clause string.
2354 2354
 	 * @param string $post_type Post type.
2355 2355
 	 */
2356
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2357
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2356
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2357
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2358 2358
 
2359 2359
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without
2360 2360
 	/**
@@ -2365,15 +2365,15 @@  discard block
 block discarded – undo
2365 2365
 	 * @param string $groupby   Group by clause string.
2366 2366
 	 * @param string $post_type Post type.
2367 2367
 	 */
2368
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2368
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2369 2369
 
2370
-	if ( $count_only ) {
2371
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2372
-			" . $join . "
2370
+	if ($count_only) {
2371
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2372
+			" . $join."
2373 2373
 			" . $where;
2374
-		$rows = (int) $wpdb->get_var( $sql );
2374
+		$rows = (int) $wpdb->get_var($sql);
2375 2375
 	} else {
2376
-		$orderby = geodir_widget_listings_get_order( $query_args );
2376
+		$orderby = geodir_widget_listings_get_order($query_args);
2377 2377
 		/**
2378 2378
 		 * Filter widget listing orderby clause string part that is being used for query.
2379 2379
 		 *
@@ -2383,33 +2383,33 @@  discard block
 block discarded – undo
2383 2383
 		 * @param string $table     Table name.
2384 2384
 		 * @param string $post_type Post type.
2385 2385
 		 */
2386
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2386
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2387 2387
 		
2388 2388
 		$second_orderby = array();
2389
-		if ( strpos( $orderby, strtolower( $table . ".is_featured" )  ) === false ) {
2390
-			$second_orderby[] = $table . ".is_featured ASC";
2389
+		if (strpos($orderby, strtolower($table.".is_featured")) === false) {
2390
+			$second_orderby[] = $table.".is_featured ASC";
2391 2391
 		}
2392 2392
 		
2393
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_date" )  ) === false ) {
2394
-			$second_orderby[] = $wpdb->posts . ".post_date DESC";
2393
+		if (strpos($orderby, strtolower($wpdb->posts.".post_date")) === false) {
2394
+			$second_orderby[] = $wpdb->posts.".post_date DESC";
2395 2395
 		}
2396 2396
 		
2397
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_title" )  ) === false ) {
2398
-			$second_orderby[] = $wpdb->posts . ".post_title ASC";
2397
+		if (strpos($orderby, strtolower($wpdb->posts.".post_title")) === false) {
2398
+			$second_orderby[] = $wpdb->posts.".post_title ASC";
2399 2399
 		}
2400 2400
 		
2401
-		if ( !empty( $second_orderby ) ) {
2402
-			$orderby .= implode( ', ', $second_orderby );
2401
+		if (!empty($second_orderby)) {
2402
+			$orderby .= implode(', ', $second_orderby);
2403 2403
 		}
2404 2404
 		
2405
-		if ( !empty( $orderby ) ) {
2406
-			$orderby = trim( $orderby );
2407
-			$orderby = rtrim( $orderby, "," );
2405
+		if (!empty($orderby)) {
2406
+			$orderby = trim($orderby);
2407
+			$orderby = rtrim($orderby, ",");
2408 2408
 		}
2409 2409
 		
2410
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2410
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2411 2411
 
2412
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2412
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2413 2413
 		/**
2414 2414
 		 * Filter widget listing limit that is being used for query.
2415 2415
 		 *
@@ -2418,27 +2418,27 @@  discard block
 block discarded – undo
2418 2418
 		 * @param int $limit        Query results limit.
2419 2419
 		 * @param string $post_type Post type.
2420 2420
 		 */
2421
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2421
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2422 2422
 
2423
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2424
-		if ( ! $page ) {
2423
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2424
+		if (!$page) {
2425 2425
 			$page = 1;
2426 2426
 		}
2427 2427
 
2428
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2428
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2429 2429
 
2430 2430
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2431
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2432
-			" . $join . "
2433
-			" . $where . "
2434
-			" . $groupby . "
2435
-			" . $orderby . "
2431
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2432
+			" . $join."
2433
+			" . $where."
2434
+			" . $groupby."
2435
+			" . $orderby."
2436 2436
 			" . $limit;
2437
-		$rows = $wpdb->get_results( $sql );
2437
+		$rows = $wpdb->get_results($sql);
2438 2438
 	}
2439 2439
 
2440
-	unset( $GLOBALS['gd_query_args_widgets'] );
2441
-	unset( $gd_query_args_widgets );
2440
+	unset($GLOBALS['gd_query_args_widgets']);
2441
+	unset($gd_query_args_widgets);
2442 2442
 
2443 2443
 	return $rows;
2444 2444
 }
@@ -2455,11 +2455,11 @@  discard block
 block discarded – undo
2455 2455
  *
2456 2456
  * @return string Modified fields SQL.
2457 2457
  */
2458
-function geodir_function_widget_listings_fields( $fields ) {
2458
+function geodir_function_widget_listings_fields($fields) {
2459 2459
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2460 2460
 
2461 2461
 	$query_args = $gd_query_args_widgets;
2462
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2462
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2463 2463
 		return $fields;
2464 2464
 	}
2465 2465
 
@@ -2478,24 +2478,24 @@  discard block
 block discarded – undo
2478 2478
  *
2479 2479
  * @return string Modified join clause SQL.
2480 2480
  */
2481
-function geodir_function_widget_listings_join( $join ) {
2481
+function geodir_function_widget_listings_join($join) {
2482 2482
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2483 2483
 
2484 2484
 	$query_args = $gd_query_args_widgets;
2485
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2485
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2486 2486
 		return $join;
2487 2487
 	}
2488 2488
 
2489
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2490
-	$table     = $plugin_prefix . $post_type . '_detail';
2489
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2490
+	$table     = $plugin_prefix.$post_type.'_detail';
2491 2491
 
2492
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2493
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2492
+	if (!empty($query_args['with_pics_only'])) {
2493
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2494 2494
 	}
2495 2495
 
2496
-	if ( ! empty( $query_args['tax_query'] ) ) {
2497
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2498
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2496
+	if (!empty($query_args['tax_query'])) {
2497
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2498
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2499 2499
 			$join .= $tax_queries['join'];
2500 2500
 		}
2501 2501
 	}
@@ -2516,67 +2516,67 @@  discard block
 block discarded – undo
2516 2516
  *
2517 2517
  * @return string Modified where clause SQL.
2518 2518
  */
2519
-function geodir_function_widget_listings_where( $where ) {
2519
+function geodir_function_widget_listings_where($where) {
2520 2520
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2521 2521
 
2522 2522
 	$query_args = $gd_query_args_widgets;
2523
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2523
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2524 2524
 		return $where;
2525 2525
 	}
2526
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2527
-	$table     = $plugin_prefix . $post_type . '_detail';
2526
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2527
+	$table     = $plugin_prefix.$post_type.'_detail';
2528 2528
 
2529
-	if ( ! empty( $query_args ) ) {
2530
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2531
-			$where = geodir_default_location_where( $where, $table );
2529
+	if (!empty($query_args)) {
2530
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2531
+			$where = geodir_default_location_where($where, $table);
2532 2532
 		}
2533 2533
 
2534
-		if ( ! empty( $query_args['post_author'] ) ) {
2535
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2534
+		if (!empty($query_args['post_author'])) {
2535
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2536 2536
 		}
2537 2537
 
2538
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2539
-			$where .= " AND " . $table . ".is_featured = '1'";
2538
+		if (!empty($query_args['show_featured_only'])) {
2539
+			$where .= " AND ".$table.".is_featured = '1'";
2540 2540
 		}
2541 2541
 
2542
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2543
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2542
+		if (!empty($query_args['show_special_only'])) {
2543
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2544 2544
 		}
2545 2545
 
2546
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2547
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2546
+		if (!empty($query_args['with_pics_only'])) {
2547
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2548 2548
 		}
2549 2549
 
2550
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2551
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2550
+		if (!empty($query_args['featured_image_only'])) {
2551
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2552 2552
 		}
2553 2553
 
2554
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2555
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2554
+		if (!empty($query_args['with_videos_only'])) {
2555
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2556 2556
 		}
2557 2557
         
2558
-		if ( ! empty( $query_args['show_favorites_only'] ) ) {
2558
+		if (!empty($query_args['show_favorites_only'])) {
2559 2559
 			$user_favorites = '-1';
2560 2560
 			
2561
-			if ( !empty( $query_args['favorites_by_user'] ) ) {
2561
+			if (!empty($query_args['favorites_by_user'])) {
2562 2562
 
2563 2563
 				$site_id = '';
2564
-				if ( is_multisite() ) {
2564
+				if (is_multisite()) {
2565 2565
 					$blog_id = get_current_blog_id();
2566
-					if($blog_id && $blog_id!='1'){$site_id  = '_' . $blog_id ;}
2566
+					if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; }
2567 2567
 				}
2568 2568
 				
2569
-				$user_favorites = geodir_get_user_favourites( (int)$query_args['favorites_by_user'] );
2569
+				$user_favorites = geodir_get_user_favourites((int) $query_args['favorites_by_user']);
2570 2570
 				$user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
2571 2571
 			}
2572 2572
 			
2573
-			$where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
2573
+			$where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
2574 2574
 		}
2575 2575
 
2576
-		if ( ! empty( $query_args['tax_query'] ) ) {
2577
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2576
+		if (!empty($query_args['tax_query'])) {
2577
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2578 2578
 
2579
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2579
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2580 2580
 				$where .= $tax_queries['where'];
2581 2581
 			}
2582 2582
 		}
@@ -2597,11 +2597,11 @@  discard block
 block discarded – undo
2597 2597
  *
2598 2598
  * @return string Modified orderby clause SQL.
2599 2599
  */
2600
-function geodir_function_widget_listings_orderby( $orderby ) {
2600
+function geodir_function_widget_listings_orderby($orderby) {
2601 2601
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2602 2602
 
2603 2603
 	$query_args = $gd_query_args_widgets;
2604
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2604
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2605 2605
 		return $orderby;
2606 2606
 	}
2607 2607
 
@@ -2620,15 +2620,15 @@  discard block
 block discarded – undo
2620 2620
  *
2621 2621
  * @return int Query limit.
2622 2622
  */
2623
-function geodir_function_widget_listings_limit( $limit ) {
2623
+function geodir_function_widget_listings_limit($limit) {
2624 2624
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2625 2625
 
2626 2626
 	$query_args = $gd_query_args_widgets;
2627
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2627
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2628 2628
 		return $limit;
2629 2629
 	}
2630 2630
 
2631
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2631
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2632 2632
 		$limit = (int) $query_args['posts_per_page'];
2633 2633
 	}
2634 2634
 
@@ -2646,12 +2646,12 @@  discard block
 block discarded – undo
2646 2646
  *
2647 2647
  * @return int Large size width.
2648 2648
  */
2649
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2650
-	$large_size_w = get_option( 'large_size_w' );
2649
+function geodir_media_image_large_width($default = 800, $params = '') {
2650
+	$large_size_w = get_option('large_size_w');
2651 2651
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2652
-	$large_size_w = absint( $large_size_w );
2652
+	$large_size_w = absint($large_size_w);
2653 2653
 
2654
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2654
+	if (!get_option('geodir_use_wp_media_large_size')) {
2655 2655
 		$large_size_w = 800;
2656 2656
 	}
2657 2657
 
@@ -2664,7 +2664,7 @@  discard block
 block discarded – undo
2664 2664
 	 * @param int $default         Default width.
2665 2665
 	 * @param string|array $params Image parameters.
2666 2666
 	 */
2667
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2667
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2668 2668
 
2669 2669
 	return $large_size_w;
2670 2670
 }
@@ -2680,12 +2680,12 @@  discard block
 block discarded – undo
2680 2680
  *
2681 2681
  * @return int Large size height.
2682 2682
  */
2683
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2684
-	$large_size_h = get_option( 'large_size_h' );
2683
+function geodir_media_image_large_height($default = 800, $params = '') {
2684
+	$large_size_h = get_option('large_size_h');
2685 2685
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2686
-	$large_size_h = absint( $large_size_h );
2686
+	$large_size_h = absint($large_size_h);
2687 2687
 
2688
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2688
+	if (!get_option('geodir_use_wp_media_large_size')) {
2689 2689
 		$large_size_h = 800;
2690 2690
 	}
2691 2691
 
@@ -2698,7 +2698,7 @@  discard block
 block discarded – undo
2698 2698
 	 * @param int $default         Default height.
2699 2699
 	 * @param string|array $params Image parameters.
2700 2700
 	 */
2701
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2701
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2702 2702
 
2703 2703
 	return $large_size_h;
2704 2704
 }
@@ -2715,8 +2715,8 @@  discard block
 block discarded – undo
2715 2715
  *
2716 2716
  * @return string Sanitized name.
2717 2717
  */
2718
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2719
-	if ( $name == '' ) {
2718
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2719
+	if ($name == '') {
2720 2720
 		return null;
2721 2721
 	}
2722 2722
 
@@ -2725,13 +2725,13 @@  discard block
 block discarded – undo
2725 2725
 	$type = $type == 'gd_city' ? 'city' : $type;
2726 2726
 
2727 2727
 	$return = $name;
2728
-	if ( function_exists( 'get_actual_location_name' ) ) {
2729
-		$return = get_actual_location_name( $type, $name, $translate );
2728
+	if (function_exists('get_actual_location_name')) {
2729
+		$return = get_actual_location_name($type, $name, $translate);
2730 2730
 	} else {
2731
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2732
-		$return = preg_replace( '/[_-]/', ' ', $return );
2733
-		$return = geodir_ucwords( $return );
2734
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2731
+		$return = preg_replace('/-(\d+)$/', '', $return);
2732
+		$return = preg_replace('/[_-]/', ' ', $return);
2733
+		$return = geodir_ucwords($return);
2734
+		$return = $translate ? __($return, 'geodirectory') : $return;
2735 2735
 	}
2736 2736
 
2737 2737
 	return $return;
@@ -2749,26 +2749,26 @@  discard block
 block discarded – undo
2749 2749
  *
2750 2750
  * @param int $number Comments number.
2751 2751
  */
2752
-function geodir_comments_number( $number ) {
2752
+function geodir_comments_number($number) {
2753 2753
 	global $post;
2754 2754
 	
2755
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2755
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2756 2756
 		$number = get_comments_number();
2757 2757
 		
2758
-		if ( $number > 1 ) {
2759
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2760
-		} elseif ( $number == 0 || $number == '' ) {
2761
-			$output = __( 'No Comments', 'geodirectory' );
2758
+		if ($number > 1) {
2759
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2760
+		} elseif ($number == 0 || $number == '') {
2761
+			$output = __('No Comments', 'geodirectory');
2762 2762
 		} else { // must be one
2763
-			$output = __( '1 Comment', 'geodirectory' );
2763
+			$output = __('1 Comment', 'geodirectory');
2764 2764
 		}
2765 2765
 	} else {    
2766
-		if ( $number > 1 ) {
2767
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2768
-		} elseif ( $number == 0 || $number == '' ) {
2769
-			$output = __( 'No Reviews', 'geodirectory' );
2766
+		if ($number > 1) {
2767
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2768
+		} elseif ($number == 0 || $number == '') {
2769
+			$output = __('No Reviews', 'geodirectory');
2770 2770
 		} else { // must be one
2771
-			$output = __( '1 Review', 'geodirectory' );
2771
+			$output = __('1 Review', 'geodirectory');
2772 2772
 		}
2773 2773
 	}
2774 2774
 	
@@ -2785,18 +2785,18 @@  discard block
 block discarded – undo
2785 2785
  */
2786 2786
 function is_page_geodir_home() {
2787 2787
 	global $wpdb;
2788
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2789
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2790
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2788
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2789
+	if (function_exists('geodir_location_geo_home_link')) {
2790
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2791 2791
 	}
2792
-	$home_url = home_url( '', 'http' );
2793
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2794
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2792
+	$home_url = home_url('', 'http');
2793
+	if (function_exists('geodir_location_geo_home_link')) {
2794
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2795 2795
 	}
2796
-	$home_url = str_replace( "www.", "", $home_url );
2797
-	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' ) ) ) {
2796
+	$home_url = str_replace("www.", "", $home_url);
2797
+	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'))) {
2798 2798
 		return true;
2799
-	} 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' ) ) {
2799
+	} 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')) {
2800 2800
 		return true;
2801 2801
 	} else {
2802 2802
 		return false;
@@ -2816,18 +2816,18 @@  discard block
 block discarded – undo
2816 2816
  *
2817 2817
  * @return string The canonical URL.
2818 2818
  */
2819
-function geodir_wpseo_homepage_canonical( $url ) {
2819
+function geodir_wpseo_homepage_canonical($url) {
2820 2820
 	global $post;
2821 2821
 
2822
-	if ( is_page_geodir_home() ) {
2822
+	if (is_page_geodir_home()) {
2823 2823
 		return home_url();
2824 2824
 	}
2825 2825
 
2826 2826
 	return $url;
2827 2827
 }
2828 2828
 
2829
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2830
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2829
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2830
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2831 2831
 
2832 2832
 /**
2833 2833
  * Add extra fields to google maps script call.
@@ -2840,20 +2840,20 @@  discard block
 block discarded – undo
2840 2840
  *
2841 2841
  * @return string Modified extra string.
2842 2842
  */
2843
-function geodir_googlemap_script_extra_details_page( $extra ) {
2843
+function geodir_googlemap_script_extra_details_page($extra) {
2844 2844
 	global $post;
2845 2845
 	$add_google_places_api = false;
2846
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2846
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2847 2847
 		$add_google_places_api = true;
2848 2848
 	}
2849
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2849
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2850 2850
 		$extra .= "&amp;libraries=places";
2851 2851
 	}
2852 2852
 
2853 2853
 	return $extra;
2854 2854
 }
2855 2855
 
2856
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2856
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2857 2857
 
2858 2858
 
2859 2859
 /**
@@ -2872,122 +2872,122 @@  discard block
 block discarded – undo
2872 2872
  *                                          after_widget.
2873 2873
  * @param array|string $instance            The settings for the particular instance of the widget.
2874 2874
  */
2875
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2875
+function geodir_popular_post_category_output($args = '', $instance = '') {
2876 2876
 	// prints the widget
2877 2877
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2878
-	extract( $args, EXTR_SKIP );
2878
+	extract($args, EXTR_SKIP);
2879 2879
 
2880 2880
 	echo $before_widget;
2881 2881
 
2882 2882
 	/** This filter is documented in geodirectory_widgets.php */
2883
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2883
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2884 2884
 
2885 2885
 	$gd_post_type = geodir_get_current_posttype();
2886 2886
 
2887
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2887
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2888 2888
 	if (!isset($category_restrict)) {
2889 2889
 		$category_restrict = false;
2890 2890
 	}
2891
-	if ( ! empty( $gd_post_type ) ) {
2891
+	if (!empty($gd_post_type)) {
2892 2892
 		$default_post_type = $gd_post_type;
2893
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2893
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2894 2894
 		$default_post_type = $instance['default_post_type'];
2895 2895
 	} else {
2896 2896
 		$all_gd_post_type  = geodir_get_posttypes();
2897
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2897
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2898 2898
 	}
2899
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2899
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2900 2900
 
2901 2901
 	$taxonomy = array();
2902
-	if ( ! empty( $gd_post_type ) ) {
2903
-		$taxonomy[] = $gd_post_type . "category";
2902
+	if (!empty($gd_post_type)) {
2903
+		$taxonomy[] = $gd_post_type."category";
2904 2904
 	} else {
2905
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2905
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2906 2906
 	}
2907 2907
 
2908 2908
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2909 2909
 
2910
-	$term_args = array( 'taxonomy' => $taxonomy );
2911
-	if ( $parent_only ) {
2910
+	$term_args = array('taxonomy' => $taxonomy);
2911
+	if ($parent_only) {
2912 2912
 		$term_args['parent'] = 0;
2913 2913
 	}
2914 2914
 
2915
-	$terms   = get_terms( $term_args );
2915
+	$terms   = get_terms($term_args);
2916 2916
 	$a_terms = array();
2917 2917
 	$b_terms = array();
2918 2918
 
2919
-	foreach ( $terms as $term ) {
2920
-		if ( $term->count > 0 ) {
2921
-			$a_terms[ $term->taxonomy ][] = $term;
2919
+	foreach ($terms as $term) {
2920
+		if ($term->count > 0) {
2921
+			$a_terms[$term->taxonomy][] = $term;
2922 2922
 		}
2923 2923
 	}
2924 2924
 
2925
-	if ( ! empty( $a_terms ) ) {
2925
+	if (!empty($a_terms)) {
2926 2926
 		// Sort CPT taxonomies in categories widget.
2927
-		if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
2927
+		if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
2928 2928
 			$gd_post_types = geodir_get_posttypes();
2929 2929
 			$sort_taxonomies = array();
2930 2930
 			
2931
-			foreach ( $gd_post_types as $gd_post_type ) {
2932
-				$taxonomy_name = $gd_post_type . 'category';
2931
+			foreach ($gd_post_types as $gd_post_type) {
2932
+				$taxonomy_name = $gd_post_type.'category';
2933 2933
 				
2934
-				if ( !empty( $a_terms[$taxonomy_name] ) ) {
2934
+				if (!empty($a_terms[$taxonomy_name])) {
2935 2935
 					$sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name];
2936 2936
 				}
2937 2937
 			}
2938
-			$a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms;
2938
+			$a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms;
2939 2939
 		}
2940 2940
 
2941 2941
 		$sort_by = apply_filters('geodir_pp_category_sort', 'count');
2942
-		foreach ( $a_terms as $b_key => $b_val ) {
2943
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, $sort_by );
2942
+		foreach ($a_terms as $b_key => $b_val) {
2943
+			$b_terms[$b_key] = geodir_sort_terms($b_val, $sort_by);
2944 2944
 		}
2945 2945
 
2946
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2946
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2947 2947
 
2948 2948
 		$tax_change_output = '';
2949
-		if ( count( $b_terms ) > 1 ) {
2950
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2951
-			foreach ( $b_terms as $key => $val ) {
2952
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2953
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2954
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2949
+		if (count($b_terms) > 1) {
2950
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2951
+			foreach ($b_terms as $key => $val) {
2952
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2953
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2954
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2955 2955
 			}
2956 2956
 			$tax_change_output .= "</select>";
2957 2957
 		}
2958 2958
 
2959
-		if ( ! empty( $b_terms ) ) {
2960
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2961
-			global $cat_count;//make global so we can change via function
2959
+		if (!empty($b_terms)) {
2960
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2961
+			global $cat_count; //make global so we can change via function
2962 2962
 			$cat_count = 0;
2963 2963
 			?>
2964 2964
 			<div class="geodir-category-list-in clearfix">
2965 2965
 				<div class="geodir-cat-list clearfix">
2966 2966
 					<?php
2967
-					echo $before_title . __( $title ) . $after_title;
2967
+					echo $before_title.__($title).$after_title;
2968 2968
 
2969 2969
 					echo $tax_change_output;
2970 2970
 
2971 2971
 					echo '<ul class="geodir-popular-cat-list">';
2972 2972
 
2973
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2973
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2974 2974
 
2975 2975
 					echo '</ul>';
2976 2976
 					?>
2977 2977
 				</div>
2978 2978
 				<?php
2979
-				if ( empty( $category_restrict ) ) { 
2979
+				if (empty($category_restrict)) { 
2980 2980
 					$hide = '';
2981
-					if ( $cat_count < $category_limit ) {
2981
+					if ($cat_count < $category_limit) {
2982 2982
 						$hide = 'style="display:none;"';
2983 2983
 					}
2984 2984
 					echo "<div class='geodir-cat-list-more' $hide >";
2985
-					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2986
-					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2985
+					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2986
+					echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2987 2987
 					echo "</div>";
2988 2988
 				}
2989 2989
 				/* add scripts */
2990
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2990
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2991 2991
 				?>
2992 2992
 			</div>
2993 2993
 			<?php
@@ -3007,28 +3007,28 @@  discard block
 block discarded – undo
3007 3007
  * @param int $category_limit               Number of categories to display by default.
3008 3008
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
3009 3009
  */
3010
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
3010
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
3011 3011
 	global $geodir_post_category_str, $cat_count;
3012 3012
 	$term_icons = geodir_get_term_icon();
3013 3013
 
3014 3014
 	$geodir_post_category_str = array();
3015 3015
 
3016 3016
 
3017
-	foreach ( $terms as $cat ) {
3018
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
3019
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
3017
+	foreach ($terms as $cat) {
3018
+		$post_type     = str_replace("category", "", $cat->taxonomy);
3019
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
3020 3020
 
3021
-		$cat_count ++;
3021
+		$cat_count++;
3022 3022
 
3023
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
3023
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
3024 3024
 
3025
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3026
-		if($category_restrict && $cat_count > $category_limit ){
3025
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3026
+		if ($category_restrict && $cat_count > $category_limit) {
3027 3027
 			continue;
3028 3028
 		}
3029 3029
 		$total_post = $cat->count;
3030 3030
 
3031
-		$term_link = get_term_link( $cat, $cat->taxonomy );
3031
+		$term_link = get_term_link($cat, $cat->taxonomy);
3032 3032
 		/**
3033 3033
 		 * Filer the category term link.
3034 3034
 		 *
@@ -3038,11 +3038,11 @@  discard block
 block discarded – undo
3038 3038
 		 * @param int $cat          ->term_id The term id.
3039 3039
 		 * @param string $post_type Wordpress post type.
3040 3040
 		 */
3041
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
3041
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
3042 3042
 
3043
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
3044
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
3045
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
3043
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
3044
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
3045
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
3046 3046
 		echo '</a></li>';
3047 3047
 	}
3048 3048
 }
@@ -3057,14 +3057,14 @@  discard block
 block discarded – undo
3057 3057
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3058 3058
  * @param array|string $instance The settings for the particular instance of the widget.
3059 3059
  */
3060
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3060
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3061 3061
 	// prints the widget
3062
-	extract( $args, EXTR_SKIP );
3062
+	extract($args, EXTR_SKIP);
3063 3063
 
3064 3064
 	echo $before_widget;
3065 3065
 
3066 3066
 	/** This filter is documented in geodirectory_widgets.php */
3067
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3067
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3068 3068
 	/**
3069 3069
 	 * Filter the widget post type.
3070 3070
 	 *
@@ -3072,7 +3072,7 @@  discard block
 block discarded – undo
3072 3072
 	 *
3073 3073
 	 * @param string $instance ['post_type'] Post type of listing.
3074 3074
 	 */
3075
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3075
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3076 3076
 	/**
3077 3077
 	 * Filter the widget's term.
3078 3078
 	 *
@@ -3080,7 +3080,7 @@  discard block
 block discarded – undo
3080 3080
 	 *
3081 3081
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3082 3082
 	 */
3083
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3083
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3084 3084
 	/**
3085 3085
 	 * Filter widget's "add_location_filter" value.
3086 3086
 	 *
@@ -3088,7 +3088,7 @@  discard block
 block discarded – undo
3088 3088
 	 *
3089 3089
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3090 3090
 	 */
3091
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3091
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3092 3092
 	/**
3093 3093
 	 * Filter the widget listings limit.
3094 3094
 	 *
@@ -3096,7 +3096,7 @@  discard block
 block discarded – undo
3096 3096
 	 *
3097 3097
 	 * @param string $instance ['post_number'] Number of listings to display.
3098 3098
 	 */
3099
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3099
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3100 3100
 	/**
3101 3101
 	 * Filter the widget listings limit shown at one time.
3102 3102
 	 *
@@ -3104,7 +3104,7 @@  discard block
 block discarded – undo
3104 3104
 	 *
3105 3105
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3106 3106
 	 */
3107
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3107
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3108 3108
 	/**
3109 3109
 	 * Filter the widget slide width.
3110 3110
 	 *
@@ -3112,7 +3112,7 @@  discard block
 block discarded – undo
3112 3112
 	 *
3113 3113
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3114 3114
 	 */
3115
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3115
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3116 3116
 	/**
3117 3117
 	 * Filter widget's "show title" value.
3118 3118
 	 *
@@ -3120,7 +3120,7 @@  discard block
 block discarded – undo
3120 3120
 	 *
3121 3121
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3122 3122
 	 */
3123
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3123
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3124 3124
 	/**
3125 3125
 	 * Filter widget's "slideshow" value.
3126 3126
 	 *
@@ -3128,7 +3128,7 @@  discard block
 block discarded – undo
3128 3128
 	 *
3129 3129
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3130 3130
 	 */
3131
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3131
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3132 3132
 	/**
3133 3133
 	 * Filter widget's "animationLoop" value.
3134 3134
 	 *
@@ -3136,7 +3136,7 @@  discard block
 block discarded – undo
3136 3136
 	 *
3137 3137
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3138 3138
 	 */
3139
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3139
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3140 3140
 	/**
3141 3141
 	 * Filter widget's "directionNav" value.
3142 3142
 	 *
@@ -3144,7 +3144,7 @@  discard block
 block discarded – undo
3144 3144
 	 *
3145 3145
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3146 3146
 	 */
3147
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3147
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3148 3148
 	/**
3149 3149
 	 * Filter widget's "slideshowSpeed" value.
3150 3150
 	 *
@@ -3152,7 +3152,7 @@  discard block
 block discarded – undo
3152 3152
 	 *
3153 3153
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3154 3154
 	 */
3155
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3155
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3156 3156
 	/**
3157 3157
 	 * Filter widget's "animationSpeed" value.
3158 3158
 	 *
@@ -3160,7 +3160,7 @@  discard block
 block discarded – undo
3160 3160
 	 *
3161 3161
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3162 3162
 	 */
3163
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3163
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3164 3164
 	/**
3165 3165
 	 * Filter widget's "animation" value.
3166 3166
 	 *
@@ -3168,7 +3168,7 @@  discard block
 block discarded – undo
3168 3168
 	 *
3169 3169
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3170 3170
 	 */
3171
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3171
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3172 3172
 	/**
3173 3173
 	 * Filter widget's "list_sort" type.
3174 3174
 	 *
@@ -3176,10 +3176,10 @@  discard block
 block discarded – undo
3176 3176
 	 *
3177 3177
 	 * @param string $instance ['list_sort'] Listing sort by type.
3178 3178
 	 */
3179
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3180
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3179
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3180
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3181 3181
 
3182
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3182
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3183 3183
 	?>
3184 3184
 		<script type="text/javascript">
3185 3185
 		jQuery(window).load(function () {
@@ -3198,7 +3198,7 @@  discard block
 block discarded – undo
3198 3198
 				itemWidth: 75,
3199 3199
 				itemMargin: 5,
3200 3200
 				asNavFor: '#geodir_widget_slider',
3201
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3201
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3202 3202
 				start: function (slider) {
3203 3203
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3204 3204
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3206,19 +3206,19 @@  discard block
 block discarded – undo
3206 3206
 			});
3207 3207
 			
3208 3208
 			jQuery('#geodir_widget_slider').flexslider({
3209
-				animation: "<?php echo $animation;?>",
3209
+				animation: "<?php echo $animation; ?>",
3210 3210
 				selector: ".geodir-slides > li",
3211 3211
 				namespace: "geodir-",
3212 3212
 				controlNav: true,
3213
-				animationLoop: <?php echo $animationLoop;?>,
3214
-				slideshow: <?php echo $slideshow;?>,
3215
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3216
-				animationSpeed: <?php echo $animationSpeed;?>,
3217
-				directionNav: <?php echo $directionNav;?>,
3218
-				maxItems: <?php echo $max_show;?>,
3213
+				animationLoop: <?php echo $animationLoop; ?>,
3214
+				slideshow: <?php echo $slideshow; ?>,
3215
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3216
+				animationSpeed: <?php echo $animationSpeed; ?>,
3217
+				directionNav: <?php echo $directionNav; ?>,
3218
+				maxItems: <?php echo $max_show; ?>,
3219 3219
 				move: 1,
3220
-				<?php if ( $slide_width ) {
3221
-				echo "itemWidth: " . $slide_width . ",";
3220
+				<?php if ($slide_width) {
3221
+				echo "itemWidth: ".$slide_width.",";
3222 3222
 			}?>
3223 3223
 				sync: "#geodir_widget_carousel",
3224 3224
 				start: function (slider) {
@@ -3229,7 +3229,7 @@  discard block
 block discarded – undo
3229 3229
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3230 3230
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3231 3231
 				},
3232
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3232
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3233 3233
 			});
3234 3234
 		});
3235 3235
 	</script>
@@ -3242,62 +3242,62 @@  discard block
 block discarded – undo
3242 3242
 		'order_by'       => $list_sort
3243 3243
 	);
3244 3244
 
3245
-	if ( $show_featured_only ) {
3245
+	if ($show_featured_only) {
3246 3246
 		$query_args['show_featured_only'] = 1;
3247 3247
 	}
3248 3248
 
3249
-	if ( $category != 0 || $category != '' ) {
3250
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3249
+	if ($category != 0 || $category != '') {
3250
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3251 3251
 		$tax_query         = array(
3252 3252
 			'taxonomy' => $category_taxonomy[0],
3253 3253
 			'field'    => 'id',
3254 3254
 			'terms'    => $category
3255 3255
 		);
3256 3256
 
3257
-		$query_args['tax_query'] = array( $tax_query );
3257
+		$query_args['tax_query'] = array($tax_query);
3258 3258
 	}
3259 3259
 
3260 3260
 	// we want listings with featured image only
3261 3261
 	$query_args['featured_image_only'] = 1;
3262 3262
 
3263
-	if ( $post_type == 'gd_event' ) {
3263
+	if ($post_type == 'gd_event') {
3264 3264
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3265 3265
 	}// show only upcoming events
3266 3266
 
3267
-	$widget_listings = geodir_get_widget_listings( $query_args );
3268
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3269
-		if ( $title ) {
3270
-			echo $before_title . $title . $after_title;
3267
+	$widget_listings = geodir_get_widget_listings($query_args);
3268
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3269
+		if ($title) {
3270
+			echo $before_title.$title.$after_title;
3271 3271
 		}
3272 3272
 
3273 3273
 		global $post;
3274 3274
 
3275
-		$current_post = $post;// keep current post info
3275
+		$current_post = $post; // keep current post info
3276 3276
 
3277 3277
 		$widget_main_slides = '';
3278 3278
 		$nav_slides         = '';
3279 3279
 		$widget_slides      = 0;
3280 3280
 
3281
-		foreach ( $widget_listings as $widget_listing ) {
3281
+		foreach ($widget_listings as $widget_listing) {
3282 3282
 			global $gd_widget_listing_type;
3283 3283
 			$post         = $widget_listing;
3284
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3284
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3285 3285
 
3286
-			if ( ! empty( $widget_image ) ) {
3287
-				if ( $widget_image->height >= 200 ) {
3286
+			if (!empty($widget_image)) {
3287
+				if ($widget_image->height >= 200) {
3288 3288
 					$widget_spacer_height = 0;
3289 3289
 				} else {
3290
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3290
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3291 3291
 				}
3292 3292
 
3293
-				$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" />';
3293
+				$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" />';
3294 3294
 
3295 3295
 				$title = '';
3296
-				if ( $show_title ) {
3297
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3296
+				if ($show_title) {
3297
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3298 3298
 					$post_id        = $post->ID;
3299
-					$post_permalink = get_permalink( $post->ID );
3300
-					$post_title     = get_the_title( $post->ID );
3299
+					$post_permalink = get_permalink($post->ID);
3300
+					$post_title     = get_the_title($post->ID);
3301 3301
 					/**
3302 3302
 					 * Filter the listing slider widget title.
3303 3303
 					 *
@@ -3308,12 +3308,12 @@  discard block
 block discarded – undo
3308 3308
 					 * @param string $post_permalink The post permalink url.
3309 3309
 					 * @param string $post_title     The post title text.
3310 3310
 					 */
3311
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3311
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3312 3312
 				}
3313 3313
 
3314
-				$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>';
3315
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3316
-				$widget_slides ++;
3314
+				$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>';
3315
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3316
+				$widget_slides++;
3317 3317
 			}
3318 3318
 		}
3319 3319
 		?>
@@ -3322,7 +3322,7 @@  discard block
 block discarded – undo
3322 3322
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3323 3323
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3324 3324
 			</div>
3325
-			<?php if ( $widget_slides > 1 ) { ?>
3325
+			<?php if ($widget_slides > 1) { ?>
3326 3326
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3327 3327
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3328 3328
 				</div>
@@ -3330,7 +3330,7 @@  discard block
 block discarded – undo
3330 3330
 		</div>
3331 3331
 		<?php
3332 3332
 		$GLOBALS['post'] = $current_post;
3333
-		setup_postdata( $current_post );
3333
+		setup_postdata($current_post);
3334 3334
 	}
3335 3335
 	echo $after_widget;
3336 3336
 }
@@ -3346,50 +3346,50 @@  discard block
 block discarded – undo
3346 3346
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3347 3347
  * @param array|string $instance The settings for the particular instance of the widget.
3348 3348
  */
3349
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3349
+function geodir_loginwidget_output($args = '', $instance = '') {
3350 3350
 	//print_r($args);
3351 3351
 	//print_r($instance);
3352 3352
 	// prints the widget
3353
-	extract( $args, EXTR_SKIP );
3353
+	extract($args, EXTR_SKIP);
3354 3354
 
3355 3355
 	/** This filter is documented in geodirectory_widgets.php */
3356
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3356
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3357 3357
 
3358 3358
 	echo $before_widget;
3359
-	echo $before_title . $title . $after_title;
3359
+	echo $before_title.$title.$after_title;
3360 3360
 
3361 3361
 //	global $gd_session;
3362 3362
 //	print_r($gd_session);
3363 3363
 //	print_r($_SESSION);
3364 3364
 
3365
-	if ( is_user_logged_in() ) {
3365
+	if (is_user_logged_in()) {
3366 3366
 		global $current_user;
3367 3367
 
3368
-		$author_link = get_author_posts_url( $current_user->data->ID );
3369
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3368
+		$author_link = get_author_posts_url($current_user->data->ID);
3369
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3370 3370
 
3371 3371
 		echo '<ul class="geodir-loginbox-list">';
3372 3372
 		ob_start();
3373 3373
 		?>
3374 3374
 		<li><a class="signin"
3375
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3375
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3376 3376
 		<?php
3377
-		$post_types                           = geodir_get_posttypes( 'object' );
3378
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3379
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3377
+		$post_types                           = geodir_get_posttypes('object');
3378
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3379
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3380 3380
 
3381
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3381
+		if (!empty($show_add_listing_post_types_main_nav)) {
3382 3382
 			$addlisting_links = '';
3383
-			foreach ( $post_types as $key => $postobj ) {
3383
+			foreach ($post_types as $key => $postobj) {
3384 3384
 
3385
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3385
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3386 3386
 
3387
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3387
+					if ($add_link = geodir_get_addlisting_link($key)) {
3388 3388
 
3389 3389
 						$name = $postobj->labels->name;
3390 3390
 
3391 3391
 						$selected = '';
3392
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3392
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3393 3393
 							$selected = 'selected="selected"';
3394 3394
 						}
3395 3395
 
@@ -3402,23 +3402,23 @@  discard block
 block discarded – undo
3402 3402
 						 * @param string $key       Add listing array key.
3403 3403
 						 * @param int $current_user ->ID Current user ID.
3404 3404
 						 */
3405
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3406
-						$name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID );
3405
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3406
+						$name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
3407 3407
 
3408
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3408
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3409 3409
 
3410 3410
 					}
3411 3411
 				}
3412 3412
 
3413 3413
 			}
3414 3414
 
3415
-			if ( $addlisting_links != '' ) { ?>
3415
+			if ($addlisting_links != '') { ?>
3416 3416
 
3417 3417
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3418 3418
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3419
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3419
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3420 3420
 						<option value="" disabled="disabled" selected="selected"
3421
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3421
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3422 3422
 						<?php echo $addlisting_links; ?>
3423 3423
 					</select></li> <?php
3424 3424
 
@@ -3426,24 +3426,24 @@  discard block
 block discarded – undo
3426 3426
 
3427 3427
 		}
3428 3428
 		// My Favourites in Dashboard
3429
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3429
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3430 3430
 		$user_favourite                    = geodir_user_favourite_listing_count();
3431 3431
 
3432
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3432
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3433 3433
 			$favourite_links = '';
3434 3434
 
3435
-			foreach ( $post_types as $key => $postobj ) {
3436
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3435
+			foreach ($post_types as $key => $postobj) {
3436
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3437 3437
 					$name           = $postobj->labels->name;
3438 3438
 					$fav_author_link = apply_filters('gd_dash_fav_author_link', $author_link, $current_user->data->ID);
3439
-					$post_type_link = geodir_getlink( $fav_author_link, array(
3439
+					$post_type_link = geodir_getlink($fav_author_link, array(
3440 3440
 						'stype' => $key,
3441 3441
 						'list'  => 'favourite'
3442
-					), false );
3442
+					), false);
3443 3443
 
3444 3444
 					$selected = '';
3445 3445
 
3446
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3446
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3447 3447
 						$selected = 'selected="selected"';
3448 3448
 					}
3449 3449
 					/**
@@ -3455,20 +3455,20 @@  discard block
 block discarded – undo
3455 3455
 					 * @param string $key            Favorite listing array key.
3456 3456
 					 * @param int $current_user      ->ID Current user ID.
3457 3457
 					 */
3458
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3458
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3459 3459
 
3460
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3460
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3461 3461
 				}
3462 3462
 			}
3463 3463
 
3464
-			if ( $favourite_links != '' ) {
3464
+			if ($favourite_links != '') {
3465 3465
 				?>
3466 3466
 				<li>
3467 3467
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3468 3468
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3469
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3469
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3470 3470
 						<option value="" disabled="disabled" selected="selected"
3471
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3471
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3472 3472
 						<?php echo $favourite_links; ?>
3473 3473
 					</select>
3474 3474
 				</li>
@@ -3477,20 +3477,20 @@  discard block
 block discarded – undo
3477 3477
 		}
3478 3478
 
3479 3479
 
3480
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3480
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3481 3481
 		$user_listing                     = geodir_user_post_listing_count();
3482 3482
 
3483
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3483
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3484 3484
 			$listing_links = '';
3485 3485
 
3486
-			foreach ( $post_types as $key => $postobj ) {
3487
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3486
+			foreach ($post_types as $key => $postobj) {
3487
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3488 3488
 					$name         = $postobj->labels->name;
3489 3489
 					$listing_author_link = apply_filters('gd_dash_listing_author_link', $author_link, $current_user->data->ID);
3490
-					$listing_link = geodir_getlink( $listing_author_link, array( 'stype' => $key ), false );
3490
+					$listing_link = geodir_getlink($listing_author_link, array('stype' => $key), false);
3491 3491
 
3492 3492
 					$selected = '';
3493
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3493
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3494 3494
 						$selected = 'selected="selected"';
3495 3495
 					}
3496 3496
 
@@ -3503,20 +3503,20 @@  discard block
 block discarded – undo
3503 3503
 					 * @param string $key          My listing array key.
3504 3504
 					 * @param int $current_user    ->ID Current user ID.
3505 3505
 					 */
3506
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3506
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3507 3507
 
3508
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3508
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3509 3509
 				}
3510 3510
 			}
3511 3511
 
3512
-			if ( $listing_links != '' ) {
3512
+			if ($listing_links != '') {
3513 3513
 				?>
3514 3514
 				<li>
3515 3515
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3516 3516
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3517
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3517
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3518 3518
 						<option value="" disabled="disabled" selected="selected"
3519
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3519
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3520 3520
 						<?php echo $listing_links; ?>
3521 3521
 					</select>
3522 3522
 				</li>
@@ -3532,7 +3532,7 @@  discard block
 block discarded – undo
3532 3532
 		 *
3533 3533
 		 * @param string $dashboard_link Dashboard links HTML.
3534 3534
 		 */
3535
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3535
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3536 3536
 		echo '</ul>';
3537 3537
 
3538 3538
 		/**
@@ -3540,7 +3540,7 @@  discard block
 block discarded – undo
3540 3540
 		 *
3541 3541
 		 * @since 1.6.6
3542 3542
 		 */
3543
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3543
+		do_action('geodir_after_loginwidget_form_logged_in');
3544 3544
 
3545 3545
 
3546 3546
 	} else {
@@ -3555,18 +3555,18 @@  discard block
 block discarded – undo
3555 3555
 		<form name="loginform" class="loginform1"
3556 3556
 		      action="<?php echo geodir_login_url(); ?>"
3557 3557
 		      method="post">
3558
-			<div class="geodir_form_row"><input placeholder="<?php echo apply_filters('gd_login_wid_login_placeholder', __( 'Email', 'geodirectory' )); ?>" name="<?php echo apply_filters('gd_login_wid_login_name', 'log'); ?>"
3558
+			<div class="geodir_form_row"><input placeholder="<?php echo apply_filters('gd_login_wid_login_placeholder', __('Email', 'geodirectory')); ?>" name="<?php echo apply_filters('gd_login_wid_login_name', 'log'); ?>"
3559 3559
 			                                    type="text" class="textfield user_login1"/> <span
3560 3560
 					class="user_loginInfo"></span></div>
3561
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3561
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3562 3562
 			                                    name="<?php echo apply_filters('gd_login_wid_login_pwd', 'pwd'); ?>" type="password"
3563 3563
 			                                    class="textfield user_pass1 input-text"/><span
3564 3564
 					class="user_passInfo"></span></div>
3565 3565
 
3566
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3566
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3567 3567
 			<input type="hidden" name="testcookie" value="1"/>
3568 3568
 
3569
-				<?php do_action( 'login_form' ); ?>
3569
+				<?php do_action('login_form'); ?>
3570 3570
 
3571 3571
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3572 3572
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3578,11 +3578,11 @@  discard block
 block discarded – undo
3578 3578
 					 *
3579 3579
 					 * @since 1.0.0
3580 3580
 					 */
3581
-					$is_enable_signup = get_option( 'users_can_register' );
3581
+					$is_enable_signup = get_option('users_can_register');
3582 3582
 					
3583
-					if ( $is_enable_signup ) {
3583
+					if ($is_enable_signup) {
3584 3584
 					?>
3585
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3585
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3586 3586
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3587 3587
 
3588 3588
 					<?php
@@ -3593,7 +3593,7 @@  discard block
 block discarded – undo
3593 3593
 					 * @since 1.0.0
3594 3594
 					 */
3595 3595
 					?>
3596
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3596
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3597 3597
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3598 3598
 		</form>
3599 3599
 		<?php
@@ -3602,7 +3602,7 @@  discard block
 block discarded – undo
3602 3602
 		 *
3603 3603
 		 * @since 1.6.6
3604 3604
 		 */
3605
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3605
+		do_action('geodir_after_loginwidget_form_logged_out');
3606 3606
 	}
3607 3607
 
3608 3608
 	echo $after_widget;
@@ -3625,14 +3625,14 @@  discard block
 block discarded – undo
3625 3625
  *                                         after_widget.
3626 3626
  * @param array|string $instance           The settings for the particular instance of the widget.
3627 3627
  */
3628
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3628
+function geodir_popular_postview_output($args = '', $instance = '') {
3629 3629
 	global $gd_session;
3630 3630
 
3631 3631
 	// prints the widget
3632
-	extract( $args, EXTR_SKIP );
3632
+	extract($args, EXTR_SKIP);
3633 3633
 
3634 3634
 	/** This filter is documented in geodirectory_widgets.php */
3635
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3635
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3636 3636
 	/**
3637 3637
 	 * Filter the widget post type.
3638 3638
 	 *
@@ -3640,7 +3640,7 @@  discard block
 block discarded – undo
3640 3640
 	 *
3641 3641
 	 * @param string $instance ['post_type'] Post type of listing.
3642 3642
 	 */
3643
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3643
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3644 3644
 	/**
3645 3645
 	 * Filter the widget's term.
3646 3646
 	 *
@@ -3648,7 +3648,7 @@  discard block
 block discarded – undo
3648 3648
 	 *
3649 3649
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3650 3650
 	 */
3651
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3651
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3652 3652
 	/**
3653 3653
 	 * Filter the widget listings limit.
3654 3654
 	 *
@@ -3656,7 +3656,7 @@  discard block
 block discarded – undo
3656 3656
 	 *
3657 3657
 	 * @param string $instance ['post_number'] Number of listings to display.
3658 3658
 	 */
3659
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3659
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3660 3660
 	/**
3661 3661
 	 * Filter widget's "layout" type.
3662 3662
 	 *
@@ -3664,7 +3664,7 @@  discard block
 block discarded – undo
3664 3664
 	 *
3665 3665
 	 * @param string $instance ['layout'] Widget layout type.
3666 3666
 	 */
3667
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3667
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3668 3668
 	/**
3669 3669
 	 * Filter widget's "add_location_filter" value.
3670 3670
 	 *
@@ -3672,7 +3672,7 @@  discard block
 block discarded – undo
3672 3672
 	 *
3673 3673
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3674 3674
 	 */
3675
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3675
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3676 3676
 	/**
3677 3677
 	 * Filter widget's listing width.
3678 3678
 	 *
@@ -3680,7 +3680,7 @@  discard block
 block discarded – undo
3680 3680
 	 *
3681 3681
 	 * @param string $instance ['listing_width'] Listing width.
3682 3682
 	 */
3683
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3683
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3684 3684
 	/**
3685 3685
 	 * Filter widget's "list_sort" type.
3686 3686
 	 *
@@ -3688,36 +3688,36 @@  discard block
 block discarded – undo
3688 3688
 	 *
3689 3689
 	 * @param string $instance ['list_sort'] Listing sort by type.
3690 3690
 	 */
3691
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3692
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3691
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3692
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3693 3693
 
3694 3694
 	// set post type to current viewing post type
3695
-	if ( $use_viewing_post_type ) {
3695
+	if ($use_viewing_post_type) {
3696 3696
 		$current_post_type = geodir_get_current_posttype();
3697
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3697
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3698 3698
 			$post_type = $current_post_type;
3699 3699
 			$category  = array(); // old post type category will not work for current changed post type
3700 3700
 		}
3701 3701
 	}
3702 3702
 	// replace widget title dynamically
3703
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3704
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3703
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3704
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3705 3705
 
3706
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3707
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3706
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3707
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3708 3708
     
3709 3709
 	$categories = $category;
3710
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3711
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3710
+	if (!empty($category) && $category[0] != '0') {
3711
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3712 3712
 		
3713 3713
 		######### WPML #########
3714
-		if ( geodir_wpml_is_taxonomy_translated( $category_taxonomy[0] ) ) {
3715
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3714
+		if (geodir_wpml_is_taxonomy_translated($category_taxonomy[0])) {
3715
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3716 3716
 		}
3717 3717
 		######### WPML #########
3718 3718
 	}
3719 3719
 
3720
-	if ( isset( $instance['character_count'] ) ) {
3720
+	if (isset($instance['character_count'])) {
3721 3721
 		/**
3722 3722
 		 * Filter the widget's excerpt character count.
3723 3723
 		 *
@@ -3725,38 +3725,38 @@  discard block
 block discarded – undo
3725 3725
 		 *
3726 3726
 		 * @param int $instance ['character_count'] Excerpt character count.
3727 3727
 		 */
3728
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3728
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3729 3729
 	} else {
3730 3730
 		$character_count = '';
3731 3731
 	}
3732 3732
 
3733
-	if ( empty( $title ) || $title == 'All' ) {
3734
-		$post_type_name = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3735
-		$title = !empty( $title ) ? wp_sprintf( __( 'All %s', 'geodirectory' ), $post_type_name ) : $post_type_name;
3733
+	if (empty($title) || $title == 'All') {
3734
+		$post_type_name = __(get_post_type_plural_label($post_type), 'geodirectory');
3735
+		$title = !empty($title) ? wp_sprintf(__('All %s', 'geodirectory'), $post_type_name) : $post_type_name;
3736 3736
 	}
3737 3737
 
3738 3738
 	$location_url = array();
3739
-	$city         = get_query_var( 'gd_city' );
3740
-	if ( ! empty( $city ) ) {
3741
-		$country = get_query_var( 'gd_country' );
3742
-		$region  = get_query_var( 'gd_region' );
3739
+	$city         = get_query_var('gd_city');
3740
+	if (!empty($city)) {
3741
+		$country = get_query_var('gd_country');
3742
+		$region  = get_query_var('gd_region');
3743 3743
 
3744
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3744
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3745 3745
 
3746
-		if ( $geodir_show_location_url == 'all' ) {
3747
-			if ( $country != '' ) {
3746
+		if ($geodir_show_location_url == 'all') {
3747
+			if ($country != '') {
3748 3748
 				$location_url[] = $country;
3749 3749
 			}
3750 3750
 
3751
-			if ( $region != '' ) {
3751
+			if ($region != '') {
3752 3752
 				$location_url[] = $region;
3753 3753
 			}
3754
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3755
-			if ( $country != '' ) {
3754
+		} else if ($geodir_show_location_url == 'country_city') {
3755
+			if ($country != '') {
3756 3756
 				$location_url[] = $country;
3757 3757
 			}
3758
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3759
-			if ( $region != '' ) {
3758
+		} else if ($geodir_show_location_url == 'region_city') {
3759
+			if ($region != '') {
3760 3760
 				$location_url[] = $region;
3761 3761
 			}
3762 3762
 		}
@@ -3764,54 +3764,54 @@  discard block
 block discarded – undo
3764 3764
 		$location_url[] = $city;
3765 3765
 	}
3766 3766
 
3767
-	$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
3768
-	$location_url  = implode( '/', $location_url );
3767
+	$location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
3768
+	$location_url  = implode('/', $location_url);
3769 3769
 	$skip_location = false;
3770
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3770
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3771 3771
 		$skip_location = true;
3772
-		$gd_session->un_set( 'gd_multi_location' );
3772
+		$gd_session->un_set('gd_multi_location');
3773 3773
 	}
3774 3774
 
3775
-	if ( $location_allowed && $add_location_filter && $gd_session->get( 'all_near_me' ) && geodir_is_page( 'location' ) ) {
3776
-		$viewall_url = add_query_arg( array( 
3775
+	if ($location_allowed && $add_location_filter && $gd_session->get('all_near_me') && geodir_is_page('location')) {
3776
+		$viewall_url = add_query_arg(array( 
3777 3777
 			'geodir_search' => 1, 
3778 3778
 			'stype' => $post_type,
3779 3779
 			's' => '',
3780
-			'snear' => __( 'Near:', 'geodiradvancesearch' ) . ' ' . __( 'Me', 'geodiradvancesearch' ),
3781
-			'sgeo_lat' => $gd_session->get( 'user_lat' ),
3782
-			'sgeo_lon' => $gd_session->get( 'user_lon' )
3783
-		), geodir_search_page_base_url() );
3780
+			'snear' => __('Near:', 'geodiradvancesearch').' '.__('Me', 'geodiradvancesearch'),
3781
+			'sgeo_lat' => $gd_session->get('user_lat'),
3782
+			'sgeo_lon' => $gd_session->get('user_lon')
3783
+		), geodir_search_page_base_url());
3784 3784
 
3785
-		if ( ! empty( $category ) && !in_array( '0', $category ) ) {
3786
-			$viewall_url = add_query_arg( array( 's' . $post_type . 'category' => $category ), $viewall_url );
3785
+		if (!empty($category) && !in_array('0', $category)) {
3786
+			$viewall_url = add_query_arg(array('s'.$post_type.'category' => $category), $viewall_url);
3787 3787
 		}
3788 3788
 	} else {
3789
-		if ( get_option( 'permalink_structure' ) ) {
3790
-			$viewall_url = get_post_type_archive_link( $post_type );
3789
+		if (get_option('permalink_structure')) {
3790
+			$viewall_url = get_post_type_archive_link($post_type);
3791 3791
 		} else {
3792
-			$viewall_url = get_post_type_archive_link( $post_type );
3792
+			$viewall_url = get_post_type_archive_link($post_type);
3793 3793
 		}
3794 3794
 
3795
-		if ( ! empty( $category ) && $category[0] != '0' ) {
3795
+		if (!empty($category) && $category[0] != '0') {
3796 3796
 			global $geodir_add_location_url;
3797 3797
 
3798 3798
 			$geodir_add_location_url = '0';
3799 3799
 
3800
-			if ( $add_location_filter != '0' ) {
3800
+			if ($add_location_filter != '0') {
3801 3801
 				$geodir_add_location_url = '1';
3802 3802
 			}
3803 3803
 
3804
-			$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3804
+			$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3805 3805
 
3806 3806
 			$geodir_add_location_url = null;
3807 3807
 		}
3808 3808
 	}
3809 3809
 
3810
-	if ( $skip_location ) {
3811
-		$gd_session->set( 'gd_multi_location', 1 );
3810
+	if ($skip_location) {
3811
+		$gd_session->set('gd_multi_location', 1);
3812 3812
 	}
3813 3813
 
3814
-	if ( is_wp_error( $viewall_url ) ) {
3814
+	if (is_wp_error($viewall_url)) {
3815 3815
 		$viewall_url = '';
3816 3816
 	}
3817 3817
 
@@ -3823,43 +3823,43 @@  discard block
 block discarded – undo
3823 3823
 		'order_by'       => $list_sort
3824 3824
 	);
3825 3825
 
3826
-	if ( $character_count ) {
3826
+	if ($character_count) {
3827 3827
 		$query_args['excerpt_length'] = $character_count;
3828 3828
 	}
3829 3829
 
3830
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3830
+	if (!empty($instance['show_featured_only'])) {
3831 3831
 		$query_args['show_featured_only'] = 1;
3832 3832
 	}
3833 3833
 
3834
-	if ( ! empty( $instance['show_special_only'] ) ) {
3834
+	if (!empty($instance['show_special_only'])) {
3835 3835
 		$query_args['show_special_only'] = 1;
3836 3836
 	}
3837 3837
 
3838
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3838
+	if (!empty($instance['with_pics_only'])) {
3839 3839
 		$query_args['with_pics_only']      = 0;
3840 3840
 		$query_args['featured_image_only'] = 1;
3841 3841
 	}
3842 3842
 
3843
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3843
+	if (!empty($instance['with_videos_only'])) {
3844 3844
 		$query_args['with_videos_only'] = 1;
3845 3845
 	}
3846
-	$hide_if_empty = ! empty( $instance['hide_if_empty'] ) ? true : false;
3846
+	$hide_if_empty = !empty($instance['hide_if_empty']) ? true : false;
3847 3847
 
3848
-	if ( ! empty( $categories ) && $categories[0] != '0' && !empty( $category_taxonomy ) ) {
3848
+	if (!empty($categories) && $categories[0] != '0' && !empty($category_taxonomy)) {
3849 3849
 		$tax_query = array(
3850 3850
 			'taxonomy' => $category_taxonomy[0],
3851 3851
 			'field'    => 'id',
3852 3852
 			'terms'    => $category
3853 3853
 		);
3854 3854
 
3855
-		$query_args['tax_query'] = array( $tax_query );
3855
+		$query_args['tax_query'] = array($tax_query);
3856 3856
 	}
3857 3857
 
3858 3858
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3859 3859
 
3860
-	$widget_listings = geodir_get_widget_listings( $query_args );
3860
+	$widget_listings = geodir_get_widget_listings($query_args);
3861 3861
     
3862
-	if ( $hide_if_empty && empty( $widget_listings ) ) {
3862
+	if ($hide_if_empty && empty($widget_listings)) {
3863 3863
 		return;
3864 3864
 	}
3865 3865
     
@@ -3874,11 +3874,11 @@  discard block
 block discarded – undo
3874 3874
 		 *
3875 3875
 		 * @since 1.0.0
3876 3876
 		 */
3877
-		do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3877
+		do_action('geodir_before_view_all_link_in_widget'); ?>
3878 3878
 		<div class="geodir_list_heading clearfix">
3879
-			<?php echo $before_title . $title . $after_title; ?>
3879
+			<?php echo $before_title.$title.$after_title; ?>
3880 3880
 			<a href="<?php echo $viewall_url; ?>"
3881
-			   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3881
+			   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3882 3882
 		</div>
3883 3883
 		<?php
3884 3884
 		/**
@@ -3886,10 +3886,10 @@  discard block
 block discarded – undo
3886 3886
 		 *
3887 3887
 		 * @since 1.0.0
3888 3888
 		 */
3889
-		do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3889
+		do_action('geodir_after_view_all_link_in_widget'); ?>
3890 3890
 		<?php
3891
-		if ( strstr( $layout, 'gridview' ) ) {
3892
-			$listing_view_exp        = explode( '_', $layout );
3891
+		if (strstr($layout, 'gridview')) {
3892
+			$listing_view_exp        = explode('_', $layout);
3893 3893
 			$gridview_columns_widget = $layout;
3894 3894
 			$layout                  = $listing_view_exp[0];
3895 3895
 		} else {
@@ -3900,8 +3900,8 @@  discard block
 block discarded – undo
3900 3900
 		 *
3901 3901
 		 * @since 1.0.0
3902 3902
 		 */
3903
-		$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3904
-		if ( ! isset( $character_count ) ) {
3903
+		$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3904
+		if (!isset($character_count)) {
3905 3905
 			/**
3906 3906
 			 * Filter the widget's excerpt character count.
3907 3907
 			 *
@@ -3909,7 +3909,7 @@  discard block
 block discarded – undo
3909 3909
 			 *
3910 3910
 			 * @param int $instance ['character_count'] Excerpt character count.
3911 3911
 			 */
3912
-			$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3912
+			$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3913 3913
 		}
3914 3914
 
3915 3915
 		global $post, $map_jason, $map_canvas_arr;
@@ -3924,13 +3924,13 @@  discard block
 block discarded – undo
3924 3924
 		 *
3925 3925
 		 * @since 1.0.0
3926 3926
 		 */
3927
-		include( $template );
3927
+		include($template);
3928 3928
 
3929 3929
 		$geodir_is_widget_listing = false;
3930 3930
 
3931 3931
 		$GLOBALS['post'] = $current_post;
3932
-		if ( ! empty( $current_post ) ) {
3933
-			setup_postdata( $current_post );
3932
+		if (!empty($current_post)) {
3933
+			setup_postdata($current_post);
3934 3934
 		}
3935 3935
 		$map_jason      = $current_map_jason;
3936 3936
 		$map_canvas_arr = $current_map_canvas_arr;
@@ -3959,12 +3959,12 @@  discard block
 block discarded – undo
3959 3959
  *
3960 3960
  * @return int Reviews count.
3961 3961
  */
3962
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3962
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3963 3963
 	global $wpdb, $plugin_prefix;
3964 3964
 
3965
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3965
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3966 3966
 
3967
-	$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 . ")";
3967
+	$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.")";
3968 3968
 
3969 3969
 	/**
3970 3970
 	 * Filter count review sql query.
@@ -3976,9 +3976,9 @@  discard block
 block discarded – undo
3976 3976
 	 * @param int $taxonomy     The taxonomy Id.
3977 3977
 	 * @param string $post_type The post type.
3978 3978
 	 */
3979
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3979
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3980 3980
 
3981
-	$count = $wpdb->get_var( $sql );
3981
+	$count = $wpdb->get_var($sql);
3982 3982
 
3983 3983
 	return $count;
3984 3984
 }
@@ -3996,7 +3996,7 @@  discard block
 block discarded – undo
3996 3996
  *
3997 3997
  * @return array Term array data.
3998 3998
  */
3999
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3999
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
4000 4000
 	/**
4001 4001
 	 * Filter review count option data.
4002 4002
 	 *
@@ -4006,78 +4006,78 @@  discard block
 block discarded – undo
4006 4006
 	 * @param bool $force_update Force update option value?. Default.false.
4007 4007
 	 * @param int $post_ID       The post id to update if any.
4008 4008
 	 */
4009
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
4010
-	if ( ! empty( $option_data ) ) {
4009
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
4010
+	if (!empty($option_data)) {
4011 4011
 		return $option_data;
4012 4012
 	}
4013 4013
 
4014
-	$option_data = get_option( 'geodir_global_review_count' );
4014
+	$option_data = get_option('geodir_global_review_count');
4015 4015
 
4016
-	if ( ! $option_data || $force_update ) {
4017
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
4016
+	if (!$option_data || $force_update) {
4017
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
4018 4018
 			global $gd_session;
4019 4019
 			$term_array = (array) $option_data;
4020
-			$post_type  = get_post_type( $post_ID );
4021
-			$taxonomy   = $post_type . 'category';
4022
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
4023
-
4024
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
4025
-				foreach ( $terms as $term_id ) {
4026
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4027
-					$children               = get_term_children( $term_id, $taxonomy );
4028
-					$term_array[ $term_id ] = $count;
4020
+			$post_type  = get_post_type($post_ID);
4021
+			$taxonomy   = $post_type.'category';
4022
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
4023
+
4024
+			if (!empty($terms) && !is_wp_error($terms)) {
4025
+				foreach ($terms as $term_id) {
4026
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4027
+					$children               = get_term_children($term_id, $taxonomy);
4028
+					$term_array[$term_id] = $count;
4029 4029
 				}
4030 4030
 			}
4031 4031
 
4032
-			$session_listing = $gd_session->get( 'listing' );
4032
+			$session_listing = $gd_session->get('listing');
4033 4033
 
4034 4034
 			$terms = array();
4035
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
4036
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
4037
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
4038
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
4035
+			if (isset($_POST['post_category'][$taxonomy])) {
4036
+				$terms = (array) $_POST['post_category'][$taxonomy];
4037
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
4038
+				$terms = (array) $session_listing['post_category'][$taxonomy];
4039 4039
 			}
4040 4040
 
4041
-			if ( ! empty( $terms ) ) {
4042
-				foreach ( $terms as $term_id ) {
4043
-					if ( $term_id > 0 ) {
4044
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
4045
-						$children               = get_term_children( $term_id, $taxonomy );
4046
-						$term_array[ $term_id ] = $count;
4041
+			if (!empty($terms)) {
4042
+				foreach ($terms as $term_id) {
4043
+					if ($term_id > 0) {
4044
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
4045
+						$children               = get_term_children($term_id, $taxonomy);
4046
+						$term_array[$term_id] = $count;
4047 4047
 					}
4048 4048
 				}
4049 4049
 			}
4050 4050
 		} else { // Update reviews count for all post categories.
4051 4051
 			$term_array = array();
4052 4052
 			$post_types = geodir_get_posttypes();
4053
-			foreach ( $post_types as $post_type ) {
4053
+			foreach ($post_types as $post_type) {
4054 4054
 
4055
-				$taxonomy = geodir_get_taxonomies( $post_type );
4055
+				$taxonomy = geodir_get_taxonomies($post_type);
4056 4056
 				$taxonomy = $taxonomy[0];
4057 4057
 
4058 4058
 				$args = array(
4059 4059
 					'hide_empty' => false
4060 4060
 				);
4061 4061
 
4062
-				$terms = get_terms( $taxonomy, $args );
4062
+				$terms = get_terms($taxonomy, $args);
4063 4063
 
4064
-				foreach ( $terms as $term ) {
4065
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
4066
-					$children = get_term_children( $term->term_id, $taxonomy );
4064
+				foreach ($terms as $term) {
4065
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
4066
+					$children = get_term_children($term->term_id, $taxonomy);
4067 4067
 					/*if ( is_array( $children ) ) {
4068 4068
                         foreach ( $children as $child_id ) {
4069 4069
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
4070 4070
                             $count = $count + $child_count;
4071 4071
                         }
4072 4072
                     }*/
4073
-					$term_array[ $term->term_id ] = $count;
4073
+					$term_array[$term->term_id] = $count;
4074 4074
 				}
4075 4075
 			}
4076 4076
 		}
4077 4077
 
4078
-		update_option( 'geodir_global_review_count', $term_array );
4078
+		update_option('geodir_global_review_count', $term_array);
4079 4079
 		//clear cache
4080
-		wp_cache_delete( 'geodir_global_review_count' );
4080
+		wp_cache_delete('geodir_global_review_count');
4081 4081
 
4082 4082
 		return $term_array;
4083 4083
 	} else {
@@ -4093,39 +4093,39 @@  discard block
 block discarded – undo
4093 4093
  * @package GeoDirectory
4094 4094
  * @return bool
4095 4095
  */
4096
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4097
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4096
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4097
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4098 4098
 		return; // do not run if importing listings
4099 4099
 	}
4100 4100
 
4101
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4101
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4102 4102
 		return;
4103 4103
 	}
4104 4104
 
4105 4105
 	$post_ID = 0;
4106
-	if ( ! empty( $post ) ) {
4107
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4106
+	if (!empty($post)) {
4107
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4108 4108
 			return;
4109 4109
 		}
4110 4110
 
4111
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4111
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4112 4112
 			return;
4113 4113
 		}
4114 4114
 
4115
-		if ( ! empty( $post->ID ) ) {
4115
+		if (!empty($post->ID)) {
4116 4116
 			$post_ID = $post->ID;
4117 4117
 		}
4118 4118
 	}
4119 4119
 
4120
-	if ( $new_status != $old_status ) {
4121
-		geodir_count_reviews_by_terms( true, $post_ID );
4120
+	if ($new_status != $old_status) {
4121
+		geodir_count_reviews_by_terms(true, $post_ID);
4122 4122
 	}
4123 4123
 
4124 4124
 	return true;
4125 4125
 }
4126 4126
 
4127
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4128
-	geodir_count_reviews_by_terms( true, $post_id );
4127
+function geodir_term_review_count_force_update_single_post($post_id) {
4128
+	geodir_count_reviews_by_terms(true, $post_id);
4129 4129
 }
4130 4130
 
4131 4131
 /*-----------------------------------------------------------------------------------*/
@@ -4142,11 +4142,11 @@  discard block
 block discarded – undo
4142 4142
  *
4143 4143
  * @return int Post count.
4144 4144
  */
4145
-function geodir_count_posts_by_term( $data, $term ) {
4145
+function geodir_count_posts_by_term($data, $term) {
4146 4146
 
4147
-	if ( $data ) {
4148
-		if ( isset( $data[ $term->term_id ] ) ) {
4149
-			return $data[ $term->term_id ];
4147
+	if ($data) {
4148
+		if (isset($data[$term->term_id])) {
4149
+			return $data[$term->term_id];
4150 4150
 		} else {
4151 4151
 			return 0;
4152 4152
 		}
@@ -4163,8 +4163,8 @@  discard block
 block discarded – undo
4163 4163
  * param array $terms An array of term objects.
4164 4164
  * @return array Sorted terms array.
4165 4165
  */
4166
-function geodir_sort_terms_by_count( $terms ) {
4167
-	usort( $terms, "geodir_sort_by_count_obj" );
4166
+function geodir_sort_terms_by_count($terms) {
4167
+	usort($terms, "geodir_sort_by_count_obj");
4168 4168
 
4169 4169
 	return $terms;
4170 4170
 }
@@ -4179,8 +4179,8 @@  discard block
 block discarded – undo
4179 4179
  *
4180 4180
  * @return array Sorted terms array.
4181 4181
  */
4182
-function geodir_sort_terms_by_review_count( $terms ) {
4183
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4182
+function geodir_sort_terms_by_review_count($terms) {
4183
+	usort($terms, "geodir_sort_by_review_count_obj");
4184 4184
 
4185 4185
 	return $terms;
4186 4186
 }
@@ -4196,12 +4196,12 @@  discard block
 block discarded – undo
4196 4196
  *
4197 4197
  * @return array Sorted terms array.
4198 4198
  */
4199
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4200
-	if ( $sort == 'count' ) {
4201
-		return geodir_sort_terms_by_count( $terms );
4199
+function geodir_sort_terms($terms, $sort = 'count') {
4200
+	if ($sort == 'count') {
4201
+		return geodir_sort_terms_by_count($terms);
4202 4202
 	}
4203
-	if ( $sort == 'review_count' ) {
4204
-		return geodir_sort_terms_by_review_count( $terms );
4203
+	if ($sort == 'review_count') {
4204
+		return geodir_sort_terms_by_review_count($terms);
4205 4205
 	}
4206 4206
 	return $terms;
4207 4207
 }
@@ -4220,7 +4220,7 @@  discard block
 block discarded – undo
4220 4220
  *
4221 4221
  * @return bool
4222 4222
  */
4223
-function geodir_sort_by_count( $a, $b ) {
4223
+function geodir_sort_by_count($a, $b) {
4224 4224
 	return $a['count'] < $b['count'];
4225 4225
 }
4226 4226
 
@@ -4235,7 +4235,7 @@  discard block
 block discarded – undo
4235 4235
  *
4236 4236
  * @return bool
4237 4237
  */
4238
-function geodir_sort_by_count_obj( $a, $b ) {
4238
+function geodir_sort_by_count_obj($a, $b) {
4239 4239
 	return $a->count < $b->count;
4240 4240
 }
4241 4241
 
@@ -4250,7 +4250,7 @@  discard block
 block discarded – undo
4250 4250
  *
4251 4251
  * @return bool
4252 4252
  */
4253
-function geodir_sort_by_review_count_obj( $a, $b ) {
4253
+function geodir_sort_by_review_count_obj($a, $b) {
4254 4254
 	return $a->review_count < $b->review_count;
4255 4255
 }
4256 4256
 
@@ -4267,35 +4267,35 @@  discard block
 block discarded – undo
4267 4267
 	 * @since   1.4.2
4268 4268
 	 * @package GeoDirectory
4269 4269
 	 */
4270
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4270
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4271 4271
 
4272
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4273
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4272
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4273
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4274 4274
 
4275 4275
 	/**
4276 4276
 	 * Define language constants.
4277 4277
 	 *
4278 4278
 	 * @since 1.0.0
4279 4279
 	 */
4280
-	require_once( geodir_plugin_path() . '/language.php' );
4280
+	require_once(geodir_plugin_path().'/language.php');
4281 4281
 
4282
-	$language_file = geodir_plugin_path() . '/db-language.php';
4282
+	$language_file = geodir_plugin_path().'/db-language.php';
4283 4283
 
4284 4284
 	// Load language string file if not created yet
4285
-	if ( ! file_exists( $language_file ) ) {
4285
+	if (!file_exists($language_file)) {
4286 4286
 		geodirectory_load_db_language();
4287 4287
 	}
4288 4288
 
4289
-	if ( file_exists( $language_file ) ) {
4289
+	if (file_exists($language_file)) {
4290 4290
 		/**
4291 4291
 		 * Language strings from database.
4292 4292
 		 *
4293 4293
 		 * @since 1.4.2
4294 4294
 		 */
4295 4295
 		try {
4296
-			require_once( $language_file );
4297
-		} catch ( Exception $e ) {
4298
-			error_log( 'Language Error: ' . $e->getMessage() );
4296
+			require_once($language_file);
4297
+		} catch (Exception $e) {
4298
+			error_log('Language Error: '.$e->getMessage());
4299 4299
 		}
4300 4300
 	}
4301 4301
 }
@@ -4312,19 +4312,19 @@  discard block
 block discarded – undo
4312 4312
  */
4313 4313
 function geodirectory_load_db_language() {
4314 4314
 	global $wp_filesystem;
4315
-	if ( empty( $wp_filesystem ) ) {
4316
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4315
+	if (empty($wp_filesystem)) {
4316
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4317 4317
 		WP_Filesystem();
4318 4318
 		global $wp_filesystem;
4319 4319
 	}
4320 4320
 
4321
-	$language_file = geodir_plugin_path() . '/db-language.php';
4321
+	$language_file = geodir_plugin_path().'/db-language.php';
4322 4322
 
4323
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4323
+	if (is_file($language_file) && !is_writable($language_file)) {
4324 4324
 		return false;
4325 4325
 	} // Not possible to create.
4326 4326
 
4327
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4327
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4328 4328
 		return false;
4329 4329
 	} // Not possible to create.
4330 4330
 
@@ -4338,9 +4338,9 @@  discard block
 block discarded – undo
4338 4338
 	 *
4339 4339
 	 * @param array $contents_strings Array of strings.
4340 4340
 	 */
4341
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4341
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4342 4342
 
4343
-	$contents_strings = array_unique( $contents_strings );
4343
+	$contents_strings = array_unique($contents_strings);
4344 4344
 
4345 4345
 	$contents_head   = array();
4346 4346
 	$contents_head[] = "<?php";
@@ -4357,21 +4357,21 @@  discard block
 block discarded – undo
4357 4357
 	$contents_foot[] = "";
4358 4358
 	$contents_foot[] = "";
4359 4359
 
4360
-	$contents = implode( PHP_EOL, $contents_head );
4360
+	$contents = implode(PHP_EOL, $contents_head);
4361 4361
 
4362
-	if ( ! empty( $contents_strings ) ) {
4363
-		foreach ( $contents_strings as $string ) {
4364
-			if ( is_scalar( $string ) && $string != '' ) {
4365
-				$string = str_replace( "'", "\'", $string );
4366
-				geodir_wpml_register_string( $string );
4367
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4362
+	if (!empty($contents_strings)) {
4363
+		foreach ($contents_strings as $string) {
4364
+			if (is_scalar($string) && $string != '') {
4365
+				$string = str_replace("'", "\'", $string);
4366
+				geodir_wpml_register_string($string);
4367
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4368 4368
 			}
4369 4369
 		}
4370 4370
 	}
4371 4371
 
4372
-	$contents .= implode( PHP_EOL, $contents_foot );
4372
+	$contents .= implode(PHP_EOL, $contents_foot);
4373 4373
 
4374
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4374
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4375 4375
 		return false;
4376 4376
 	} // Failure; could not write file.
4377 4377
 
@@ -4392,49 +4392,49 @@  discard block
 block discarded – undo
4392 4392
  *
4393 4393
  * @return array Translation texts.
4394 4394
  */
4395
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4395
+function geodir_load_custom_field_translation($translation_texts = array()) {
4396 4396
 	global $wpdb;
4397 4397
 
4398 4398
 	// Custom fields table
4399
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4400
-	$rows = $wpdb->get_results( $sql );
4399
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4400
+	$rows = $wpdb->get_results($sql);
4401 4401
 
4402
-	if ( ! empty( $rows ) ) {
4403
-		foreach ( $rows as $row ) {
4404
-			if ( ! empty( $row->admin_title ) ) {
4405
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4402
+	if (!empty($rows)) {
4403
+		foreach ($rows as $row) {
4404
+			if (!empty($row->admin_title)) {
4405
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4406 4406
 			}
4407 4407
 
4408
-			if ( ! empty( $row->admin_desc ) ) {
4409
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4408
+			if (!empty($row->admin_desc)) {
4409
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4410 4410
 			}
4411 4411
 
4412
-			if ( ! empty( $row->site_title ) ) {
4413
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4412
+			if (!empty($row->site_title)) {
4413
+				$translation_texts[] = stripslashes_deep($row->site_title);
4414 4414
 			}
4415 4415
 
4416
-			if ( ! empty( $row->clabels ) ) {
4417
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4416
+			if (!empty($row->clabels)) {
4417
+				$translation_texts[] = stripslashes_deep($row->clabels);
4418 4418
 			}
4419 4419
 
4420
-			if ( ! empty( $row->required_msg ) ) {
4421
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4420
+			if (!empty($row->required_msg)) {
4421
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4422 4422
 			}
4423 4423
             
4424
-			if ( ! empty( $row->validation_msg ) ) {
4425
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4424
+			if (!empty($row->validation_msg)) {
4425
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4426 4426
 			}
4427 4427
 
4428
-			if ( ! empty( $row->default_value ) ) {
4429
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4428
+			if (!empty($row->default_value)) {
4429
+				$translation_texts[] = stripslashes_deep($row->default_value);
4430 4430
 			}
4431 4431
 
4432
-			if ( ! empty( $row->option_values ) ) {
4433
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4432
+			if (!empty($row->option_values)) {
4433
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4434 4434
 
4435
-				if ( ! empty( $option_values ) ) {
4436
-					foreach ( $option_values as $option_value ) {
4437
-						if ( ! empty( $option_value['label'] ) ) {
4435
+				if (!empty($option_values)) {
4436
+					foreach ($option_values as $option_value) {
4437
+						if (!empty($option_value['label'])) {
4438 4438
 							$translation_texts[] = $option_value['label'];
4439 4439
 						}
4440 4440
 					}
@@ -4444,56 +4444,56 @@  discard block
 block discarded – undo
4444 4444
 	}
4445 4445
 
4446 4446
 	// Custom sorting fields table
4447
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4448
-	$rows = $wpdb->get_results( $sql );
4447
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4448
+	$rows = $wpdb->get_results($sql);
4449 4449
 
4450
-	if ( ! empty( $rows ) ) {
4451
-		foreach ( $rows as $row ) {
4452
-			if ( ! empty( $row->site_title ) ) {
4453
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4450
+	if (!empty($rows)) {
4451
+		foreach ($rows as $row) {
4452
+			if (!empty($row->site_title)) {
4453
+				$translation_texts[] = stripslashes_deep($row->site_title);
4454 4454
 			}
4455 4455
 
4456
-			if ( ! empty( $row->asc_title ) ) {
4457
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4456
+			if (!empty($row->asc_title)) {
4457
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4458 4458
 			}
4459 4459
 
4460
-			if ( ! empty( $row->desc_title ) ) {
4461
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4460
+			if (!empty($row->desc_title)) {
4461
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4462 4462
 			}
4463 4463
 		}
4464 4464
 	}
4465 4465
 
4466 4466
 	// Advance search filter fields table
4467
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4468
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4469
-		$rows = $wpdb->get_results( $sql );
4470
-
4471
-		if ( ! empty( $rows ) ) {
4472
-			foreach ( $rows as $row ) {
4473
-				if ( ! empty( $row->field_site_name ) ) {
4474
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4467
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4468
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4469
+		$rows = $wpdb->get_results($sql);
4470
+
4471
+		if (!empty($rows)) {
4472
+			foreach ($rows as $row) {
4473
+				if (!empty($row->field_site_name)) {
4474
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4475 4475
 				}
4476 4476
 
4477
-				if ( ! empty( $row->front_search_title ) ) {
4478
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4477
+				if (!empty($row->front_search_title)) {
4478
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4479 4479
 				}
4480 4480
 
4481
-				if ( ! empty( $row->first_search_text ) ) {
4482
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4481
+				if (!empty($row->first_search_text)) {
4482
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4483 4483
 				}
4484 4484
 
4485
-				if ( ! empty( $row->last_search_text ) ) {
4486
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4485
+				if (!empty($row->last_search_text)) {
4486
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4487 4487
 				}
4488 4488
 
4489
-				if ( ! empty( $row->field_desc ) ) {
4490
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4489
+				if (!empty($row->field_desc)) {
4490
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4491 4491
 				}
4492 4492
 			}
4493 4493
 		}
4494 4494
 	}
4495 4495
 
4496
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4496
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4497 4497
 
4498 4498
 	return $translation_texts;
4499 4499
 }
@@ -4515,7 +4515,7 @@  discard block
 block discarded – undo
4515 4515
 	 *
4516 4516
 	 * @param array $geodir_allowed_mime_types and file extensions.
4517 4517
 	 */
4518
-	return apply_filters( 'geodir_allowed_mime_types', array(
4518
+	return apply_filters('geodir_allowed_mime_types', array(
4519 4519
 			'Image'       => array( // Image formats.
4520 4520
 				'jpg'  => 'image/jpeg',
4521 4521
 				'jpe'  => 'image/jpeg',
@@ -4584,18 +4584,18 @@  discard block
 block discarded – undo
4584 4584
  *
4585 4585
  * @return string User display name.
4586 4586
  */
4587
-function geodir_get_client_name( $user_id ) {
4587
+function geodir_get_client_name($user_id) {
4588 4588
 	$client_name = '';
4589 4589
 
4590
-	$user_data = get_userdata( $user_id );
4590
+	$user_data = get_userdata($user_id);
4591 4591
 
4592
-	if ( ! empty( $user_data ) ) {
4593
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4594
-			$client_name = trim( $user_data->display_name );
4595
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4596
-			$client_name = trim( $user_data->user_nicename );
4592
+	if (!empty($user_data)) {
4593
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4594
+			$client_name = trim($user_data->display_name);
4595
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4596
+			$client_name = trim($user_data->user_nicename);
4597 4597
 		} else {
4598
-			$client_name = trim( $user_data->user_login );
4598
+			$client_name = trim($user_data->user_login);
4599 4599
 		}
4600 4600
 	}
4601 4601
 
@@ -4603,17 +4603,17 @@  discard block
 block discarded – undo
4603 4603
 }
4604 4604
 
4605 4605
 
4606
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4606
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4607 4607
 /*
4608 4608
  * Add location variables to wpseo replacements.
4609 4609
  *
4610 4610
  * @since 1.5.4
4611 4611
  */
4612
-function geodir_wpseo_replacements( $vars ) {
4612
+function geodir_wpseo_replacements($vars) {
4613 4613
 
4614 4614
 	// location variables
4615 4615
 	$gd_post_type   = geodir_get_current_posttype();
4616
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4616
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4617 4617
 	/**
4618 4618
 	 * Filter the title variables location variables array
4619 4619
 	 *
@@ -4623,7 +4623,7 @@  discard block
 block discarded – undo
4623 4623
 	 * @param array $location_array The array of location variables.
4624 4624
 	 * @param array $vars           The page title variables.
4625 4625
 	 */
4626
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4626
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4627 4627
 
4628 4628
 
4629 4629
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4638,13 +4638,13 @@  discard block
 block discarded – undo
4638 4638
 	 * @param string $vars          The title with variables.
4639 4639
 	 * @param array $location_array The array of location variables.
4640 4640
 	 */
4641
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4641
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4642 4642
 }
4643 4643
 
4644 4644
 
4645
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4646
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4647
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4645
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4646
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4647
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4648 4648
 
4649 4649
 /**
4650 4650
  * Filter the title variables.
@@ -4686,14 +4686,14 @@  discard block
 block discarded – undo
4686 4686
  *
4687 4687
  * @return string Title after filtered variables.
4688 4688
  */
4689
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4689
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4690 4690
 	global $wp, $post;
4691 4691
 
4692
-	if ( ! $gd_page || ! $title ) {
4692
+	if (!$gd_page || !$title) {
4693 4693
 		return $title; // if no a GD page then bail.
4694 4694
 	}
4695 4695
 
4696
-	if ( $sep == '' ) {
4696
+	if ($sep == '') {
4697 4697
 		/**
4698 4698
 		 * Filter the page title separator.
4699 4699
 		 *
@@ -4702,100 +4702,100 @@  discard block
 block discarded – undo
4702 4702
 		 *
4703 4703
 		 * @param string $sep The separator, default: `|`.
4704 4704
 		 */
4705
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4705
+		$sep = apply_filters('geodir_page_title_separator', '|');
4706 4706
 	}
4707 4707
 
4708
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4709
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4708
+	if (strpos($title, '%%title%%') !== false) {
4709
+		$title = str_replace("%%title%%", $post->post_title, $title);
4710 4710
 	}
4711 4711
 
4712
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4713
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4712
+	if (strpos($title, '%%sitename%%') !== false) {
4713
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4714 4714
 	}
4715 4715
 
4716
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4717
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4716
+	if (strpos($title, '%%sitedesc%%') !== false) {
4717
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4718 4718
 	}
4719 4719
 
4720
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4721
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4720
+	if (strpos($title, '%%excerpt%%') !== false) {
4721
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4722 4722
 	}
4723 4723
 
4724
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4725
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4726
-	} else if ( $gd_page == 'add-listing' ) {
4727
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4728
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4729
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4724
+	if ($gd_page == 'search' || $gd_page == 'author') {
4725
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4726
+	} else if ($gd_page == 'add-listing') {
4727
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4728
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4729
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4730 4730
 		$post_type = $post->post_type;
4731 4731
 	} else {
4732
-		$post_type = get_query_var( 'post_type' );
4732
+		$post_type = get_query_var('post_type');
4733 4733
 	}
4734 4734
 
4735
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4735
+	if (strpos($title, '%%pt_single%%') !== false) {
4736 4736
 		$singular_name = '';
4737
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4738
-			$singular_name = __( $singular_name, 'geodirectory' );
4737
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4738
+			$singular_name = __($singular_name, 'geodirectory');
4739 4739
 		}
4740 4740
 
4741
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4741
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4742 4742
 	}
4743 4743
 
4744
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4744
+	if (strpos($title, '%%pt_plural%%') !== false) {
4745 4745
 		$plural_name = '';
4746
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4747
-			$plural_name = __( $plural_name, 'geodirectory' );
4746
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4747
+			$plural_name = __($plural_name, 'geodirectory');
4748 4748
 		}
4749 4749
 
4750
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4750
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4751 4751
 	}
4752 4752
 
4753
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4753
+	if (strpos($title, '%%category%%') !== false) {
4754 4754
 		$cat_name = '';
4755 4755
 
4756
-		if ( $gd_page == 'detail' ) {
4757
-			if ( $post->default_category ) {
4758
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4759
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4756
+		if ($gd_page == 'detail') {
4757
+			if ($post->default_category) {
4758
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4759
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4760 4760
 			}
4761
-		} else if ( $gd_page == 'listing' ) {
4761
+		} else if ($gd_page == 'listing') {
4762 4762
 			$queried_object = get_queried_object();
4763
-			if ( isset( $queried_object->name ) ) {
4763
+			if (isset($queried_object->name)) {
4764 4764
 				$cat_name = $queried_object->name;
4765 4765
 			}
4766 4766
 		}
4767
-		$title = str_replace( "%%category%%", $cat_name, $title );
4767
+		$title = str_replace("%%category%%", $cat_name, $title);
4768 4768
 	}
4769 4769
 
4770
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4770
+	if (strpos($title, '%%tag%%') !== false) {
4771 4771
 		$cat_name = '';
4772 4772
 
4773
-		if ( $gd_page == 'detail' ) {
4774
-			if ( $post->default_category ) {
4775
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4776
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4773
+		if ($gd_page == 'detail') {
4774
+			if ($post->default_category) {
4775
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4776
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4777 4777
 			}
4778
-		} else if ( $gd_page == 'listing' ) {
4778
+		} else if ($gd_page == 'listing') {
4779 4779
 			$queried_object = get_queried_object();
4780
-			if ( isset( $queried_object->name ) ) {
4780
+			if (isset($queried_object->name)) {
4781 4781
 				$cat_name = $queried_object->name;
4782 4782
 			}
4783 4783
 		}
4784
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4784
+		$title = str_replace("%%tag%%", $cat_name, $title);
4785 4785
 	}
4786 4786
 
4787
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4788
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4789
-		$title = str_replace( "%%id%%", $ID, $title );
4787
+	if (strpos($title, '%%id%%') !== false) {
4788
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4789
+		$title = str_replace("%%id%%", $ID, $title);
4790 4790
 	}
4791 4791
 
4792
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4793
-		$title = str_replace( "%%sep%%", $sep, $title );
4792
+	if (strpos($title, '%%sep%%') !== false) {
4793
+		$title = str_replace("%%sep%%", $sep, $title);
4794 4794
 	}
4795 4795
 
4796 4796
 	// location variables
4797 4797
 	$gd_post_type   = geodir_get_current_posttype();
4798
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4798
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4799 4799
 	
4800 4800
 	/**
4801 4801
 	 * Filter the title variables location variables array
@@ -4808,20 +4808,20 @@  discard block
 block discarded – undo
4808 4808
 	 * @param string $gd_page       The page being filtered.
4809 4809
 	 * @param string $sep           The separator, default: `|`.
4810 4810
 	 */
4811
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4811
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4812 4812
 	
4813
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4814
-		if ( get_query_var( 'gd_country_full' ) ) {
4815
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4813
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4814
+		if (get_query_var('gd_country_full')) {
4815
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4816 4816
 		}
4817
-		if ( get_query_var( 'gd_region_full' ) ) {
4818
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4817
+		if (get_query_var('gd_region_full')) {
4818
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4819 4819
 		}
4820
-		if ( get_query_var( 'gd_city_full' ) ) {
4821
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4820
+		if (get_query_var('gd_city_full')) {
4821
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4822 4822
 		}
4823
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4824
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4823
+		if (get_query_var('gd_neighbourhood_full')) {
4824
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4825 4825
 		}
4826 4826
 	}
4827 4827
 	
@@ -4836,57 +4836,57 @@  discard block
 block discarded – undo
4836 4836
 	 * @param string $gd_page       The page being filtered.
4837 4837
 	 * @param string $sep           The separator, default: `|`.
4838 4838
 	 */
4839
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4839
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4840 4840
 	
4841
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4841
+	if (strpos($title, '%%search_term%%') !== false) {
4842 4842
 		$search_term = '';
4843
-		if ( isset( $_REQUEST['s'] ) ) {
4844
-			$search_term = esc_attr( $_REQUEST['s'] );
4843
+		if (isset($_REQUEST['s'])) {
4844
+			$search_term = esc_attr($_REQUEST['s']);
4845 4845
 		}
4846
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4846
+		$title = str_replace("%%search_term%%", $search_term, $title);
4847 4847
 	}
4848 4848
 
4849
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4849
+	if (strpos($title, '%%search_near%%') !== false) {
4850 4850
 		$search_term = '';
4851
-		if ( isset( $_REQUEST['snear'] ) ) {
4852
-			$search_term = esc_attr( $_REQUEST['snear'] );
4851
+		if (isset($_REQUEST['snear'])) {
4852
+			$search_term = esc_attr($_REQUEST['snear']);
4853 4853
 		}
4854
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4854
+		$title = str_replace("%%search_near%%", $search_term, $title);
4855 4855
 	}
4856 4856
 
4857
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4858
-		if ( is_author() ) {
4859
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4857
+	if (strpos($title, '%%name%%') !== false) {
4858
+		if (is_author()) {
4859
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4860 4860
 			$author_name = $curauth->display_name;
4861 4861
 		} else {
4862 4862
 			$author_name = get_the_author();
4863 4863
 		}
4864
-		if ( ! $author_name || $author_name === '' ) {
4864
+		if (!$author_name || $author_name === '') {
4865 4865
 			$queried_object = get_queried_object();
4866 4866
 
4867
-			if ( isset( $queried_object->data->user_nicename ) ) {
4867
+			if (isset($queried_object->data->user_nicename)) {
4868 4868
 				$author_name = $queried_object->data->display_name;
4869 4869
 			}
4870 4870
 		}
4871
-		$title = str_replace( "%%name%%", $author_name, $title );
4871
+		$title = str_replace("%%name%%", $author_name, $title);
4872 4872
 	}
4873 4873
 
4874
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4875
-		$page  = geodir_title_meta_page( $sep );
4876
-		$title = str_replace( "%%page%%", $page, $title );
4874
+	if (strpos($title, '%%page%%') !== false) {
4875
+		$page  = geodir_title_meta_page($sep);
4876
+		$title = str_replace("%%page%%", $page, $title);
4877 4877
 	}
4878
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4878
+	if (strpos($title, '%%pagenumber%%') !== false) {
4879 4879
 		$pagenumber = geodir_title_meta_pagenumber();
4880
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4880
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4881 4881
 	}
4882
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4882
+	if (strpos($title, '%%pagetotal%%') !== false) {
4883 4883
 		$pagetotal = geodir_title_meta_pagetotal();
4884
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4884
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4885 4885
 	}
4886 4886
 
4887
-	$title = wptexturize( $title );
4888
-	$title = convert_chars( $title );
4889
-	$title = esc_html( $title );
4887
+	$title = wptexturize($title);
4888
+	$title = convert_chars($title);
4889
+	$title = esc_html($title);
4890 4890
 
4891 4891
 	/**
4892 4892
 	 * Filter the title variables after standard ones have been filtered.
@@ -4900,7 +4900,7 @@  discard block
 block discarded – undo
4900 4900
 	 * @param string $sep           The separator, default: `|`.
4901 4901
 	 */
4902 4902
 
4903
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4903
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4904 4904
 }
4905 4905
 
4906 4906
 /**
@@ -4913,82 +4913,82 @@  discard block
 block discarded – undo
4913 4913
  *
4914 4914
  * @return array Translation texts.
4915 4915
  */
4916
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4917
-	$gd_post_types = geodir_get_posttypes( 'array' );
4916
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4917
+	$gd_post_types = geodir_get_posttypes('array');
4918 4918
 
4919
-	if ( ! empty( $gd_post_types ) ) {
4920
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4921
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4922
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4923
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4919
+	if (!empty($gd_post_types)) {
4920
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4921
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4922
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4923
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4924 4924
 
4925
-			if ( ! empty( $labels ) ) {
4926
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4925
+			if (!empty($labels)) {
4926
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4927 4927
 					$translation_texts[] = $labels['name'];
4928 4928
 				}
4929
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4929
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4930 4930
 					$translation_texts[] = $labels['singular_name'];
4931 4931
 				}
4932
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4932
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4933 4933
 					$translation_texts[] = $labels['add_new'];
4934 4934
 				}
4935
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4935
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4936 4936
 					$translation_texts[] = $labels['add_new_item'];
4937 4937
 				}
4938
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4938
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4939 4939
 					$translation_texts[] = $labels['edit_item'];
4940 4940
 				}
4941
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4941
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4942 4942
 					$translation_texts[] = $labels['new_item'];
4943 4943
 				}
4944
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4944
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4945 4945
 					$translation_texts[] = $labels['view_item'];
4946 4946
 				}
4947
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4947
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4948 4948
 					$translation_texts[] = $labels['search_items'];
4949 4949
 				}
4950
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4950
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4951 4951
 					$translation_texts[] = $labels['not_found'];
4952 4952
 				}
4953
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4953
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4954 4954
 					$translation_texts[] = $labels['not_found_in_trash'];
4955 4955
 				}
4956
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4956
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4957 4957
 					$translation_texts[] = $labels['label_post_profile'];
4958 4958
 				}
4959
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4959
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4960 4960
 					$translation_texts[] = $labels['label_post_info'];
4961 4961
 				}
4962
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4962
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4963 4963
 					$translation_texts[] = $labels['label_post_images'];
4964 4964
 				}
4965
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4965
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4966 4966
 					$translation_texts[] = $labels['label_post_map'];
4967 4967
 				}
4968
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4968
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4969 4969
 					$translation_texts[] = $labels['label_reviews'];
4970 4970
 				}
4971
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4971
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4972 4972
 					$translation_texts[] = $labels['label_related_listing'];
4973 4973
 				}
4974 4974
 			}
4975 4975
 
4976
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4977
-				$translation_texts[] = normalize_whitespace( $description );
4976
+			if ($description != '' && !in_array($description, $translation_texts)) {
4977
+				$translation_texts[] = normalize_whitespace($description);
4978 4978
 			}
4979 4979
 
4980
-			if ( ! empty( $seo ) ) {
4981
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4982
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4980
+			if (!empty($seo)) {
4981
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4982
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4983 4983
 				}
4984 4984
 
4985
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4986
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4985
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4986
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4987 4987
 				}
4988 4988
 			}
4989 4989
 		}
4990 4990
 	}
4991
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4991
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4992 4992
 
4993 4993
 	return $translation_texts;
4994 4994
 }
@@ -5003,27 +5003,27 @@  discard block
 block discarded – undo
5003 5003
  *
5004 5004
  * @return array Location terms.
5005 5005
  */
5006
-function geodir_remove_location_terms( $location_terms = array() ) {
5007
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
5006
+function geodir_remove_location_terms($location_terms = array()) {
5007
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
5008 5008
 
5009
-	if ( ! empty( $location_terms ) && $location_manager ) {
5010
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
5011
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
5009
+	if (!empty($location_terms) && $location_manager) {
5010
+		$hide_country_part = get_option('geodir_location_hide_country_part');
5011
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
5012 5012
 
5013
-		if ( $hide_region_part && $hide_country_part ) {
5014
-			if ( isset( $location_terms['gd_country'] ) ) {
5015
-				unset( $location_terms['gd_country'] );
5013
+		if ($hide_region_part && $hide_country_part) {
5014
+			if (isset($location_terms['gd_country'])) {
5015
+				unset($location_terms['gd_country']);
5016 5016
 			}
5017
-			if ( isset( $location_terms['gd_region'] ) ) {
5018
-				unset( $location_terms['gd_region'] );
5017
+			if (isset($location_terms['gd_region'])) {
5018
+				unset($location_terms['gd_region']);
5019 5019
 			}
5020
-		} else if ( $hide_region_part && ! $hide_country_part ) {
5021
-			if ( isset( $location_terms['gd_region'] ) ) {
5022
-				unset( $location_terms['gd_region'] );
5020
+		} else if ($hide_region_part && !$hide_country_part) {
5021
+			if (isset($location_terms['gd_region'])) {
5022
+				unset($location_terms['gd_region']);
5023 5023
 			}
5024
-		} else if ( ! $hide_region_part && $hide_country_part ) {
5025
-			if ( isset( $location_terms['gd_country'] ) ) {
5026
-				unset( $location_terms['gd_country'] );
5024
+		} else if (!$hide_region_part && $hide_country_part) {
5025
+			if (isset($location_terms['gd_country'])) {
5026
+				unset($location_terms['gd_country']);
5027 5027
 			}
5028 5028
 		}
5029 5029
 	}
@@ -5034,7 +5034,7 @@  discard block
 block discarded – undo
5034 5034
 	 * @since 1.6.22
5035 5035
 	 * @param array $location_terms The array of location terms.
5036 5036
 	 */
5037
-	return apply_filters('geodir_remove_location_terms',$location_terms);
5037
+	return apply_filters('geodir_remove_location_terms', $location_terms);
5038 5038
 }
5039 5039
 
5040 5040
 /**
@@ -5051,32 +5051,32 @@  discard block
 block discarded – undo
5051 5051
  * @param WP_Post $post Post object.
5052 5052
  * @param bool $update  Whether this is an existing listing being updated or not.
5053 5053
  */
5054
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
5054
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
5055 5055
 	global $gd_set_listing_edited;
5056 5056
 	
5057
-	if ( ! $update ) {
5057
+	if (!$update) {
5058 5058
 		return;
5059 5059
 	}
5060 5060
 
5061
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5062
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5061
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5062
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5063 5063
 	$inline_save = $action == 'inline-save' ? true : false;
5064 5064
 
5065
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5065
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5066 5066
 		return;
5067 5067
 	}
5068 5068
 
5069
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5069
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5070 5070
 		return;
5071 5071
 	}
5072 5072
 
5073 5073
 	$user_id = (int) get_current_user_id();
5074 5074
 
5075
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5076
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5075
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5076
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5077 5077
 
5078
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_set_listing_edited[$post_ID] ) ) {
5079
-			if ( !empty( $gd_set_listing_edited ) ) {
5078
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_set_listing_edited[$post_ID])) {
5079
+			if (!empty($gd_set_listing_edited)) {
5080 5080
 				$gd_set_listing_edited = array();
5081 5081
 			}
5082 5082
 			$gd_set_listing_edited[$post_ID] = true;
@@ -5094,14 +5094,14 @@  discard block
 block discarded – undo
5094 5094
  *
5095 5095
  * @return string|null The current page start & end numbering.
5096 5096
  */
5097
-function geodir_title_meta_page( $sep ) {
5097
+function geodir_title_meta_page($sep) {
5098 5098
 	$replacement = null;
5099 5099
 
5100
-	$max = geodir_title_meta_pagenumbering( 'max' );
5101
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5100
+	$max = geodir_title_meta_pagenumbering('max');
5101
+	$nr  = geodir_title_meta_pagenumbering('nr');
5102 5102
 
5103
-	if ( $max > 1 && $nr > 1 ) {
5104
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5103
+	if ($max > 1 && $nr > 1) {
5104
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5105 5105
 	}
5106 5106
 
5107 5107
 	return $replacement;
@@ -5118,8 +5118,8 @@  discard block
 block discarded – undo
5118 5118
 function geodir_title_meta_pagenumber() {
5119 5119
 	$replacement = null;
5120 5120
 
5121
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5122
-	if ( isset( $nr ) && $nr > 0 ) {
5121
+	$nr = geodir_title_meta_pagenumbering('nr');
5122
+	if (isset($nr) && $nr > 0) {
5123 5123
 		$replacement = (string) $nr;
5124 5124
 	}
5125 5125
 
@@ -5137,8 +5137,8 @@  discard block
 block discarded – undo
5137 5137
 function geodir_title_meta_pagetotal() {
5138 5138
 	$replacement = null;
5139 5139
 
5140
-	$max = geodir_title_meta_pagenumbering( 'max' );
5141
-	if ( isset( $max ) && $max > 0 ) {
5140
+	$max = geodir_title_meta_pagenumbering('max');
5141
+	if (isset($max) && $max > 0) {
5142 5142
 		$replacement = (string) $max;
5143 5143
 	}
5144 5144
 
@@ -5158,36 +5158,36 @@  discard block
 block discarded – undo
5158 5158
  *
5159 5159
  * @return int|null The current page numbering.
5160 5160
  */
5161
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5161
+function geodir_title_meta_pagenumbering($request = 'nr') {
5162 5162
 	global $wp_query, $post;
5163 5163
 	$max_num_pages = null;
5164 5164
 	$page_number   = null;
5165 5165
 
5166 5166
 	$max_num_pages = 1;
5167 5167
 
5168
-	if ( ! is_singular() ) {
5169
-		$page_number = get_query_var( 'paged' );
5170
-		if ( $page_number === 0 || $page_number === '' ) {
5168
+	if (!is_singular()) {
5169
+		$page_number = get_query_var('paged');
5170
+		if ($page_number === 0 || $page_number === '') {
5171 5171
 			$page_number = 1;
5172 5172
 		}
5173 5173
 
5174
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5174
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5175 5175
 			$max_num_pages = $wp_query->max_num_pages;
5176 5176
 		}
5177 5177
 	} else {
5178
-		$page_number = get_query_var( 'page' );
5179
-		if ( $page_number === 0 || $page_number === '' ) {
5178
+		$page_number = get_query_var('page');
5179
+		if ($page_number === 0 || $page_number === '') {
5180 5180
 			$page_number = 1;
5181 5181
 		}
5182 5182
 
5183
-		if ( isset( $post->post_content ) ) {
5184
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5183
+		if (isset($post->post_content)) {
5184
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5185 5185
 		}
5186 5186
 	}
5187 5187
 
5188 5188
 	$return = null;
5189 5189
 
5190
-	switch ( $request ) {
5190
+	switch ($request) {
5191 5191
 		case 'nr':
5192 5192
 			$return = $page_number;
5193 5193
 			break;
@@ -5208,14 +5208,14 @@  discard block
 block discarded – undo
5208 5208
  *
5209 5209
  * @return array Terms.
5210 5210
  */
5211
-function geodir_filter_empty_terms( $terms ) {
5212
-	if ( empty( $terms ) ) {
5211
+function geodir_filter_empty_terms($terms) {
5212
+	if (empty($terms)) {
5213 5213
 		return $terms;
5214 5214
 	}
5215 5215
 
5216 5216
 	$return = array();
5217
-	foreach ( $terms as $term ) {
5218
-		if ( isset( $term->count ) && $term->count > 0 ) {
5217
+	foreach ($terms as $term) {
5218
+		if (isset($term->count) && $term->count > 0) {
5219 5219
 			$return[] = $term;
5220 5220
 		} else {
5221 5221
 			/**
@@ -5226,7 +5226,7 @@  discard block
 block discarded – undo
5226 5226
 			 * @param array $return The array of terms to return.
5227 5227
 			 * @param object $term  The term object.
5228 5228
 			 */
5229
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5229
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5230 5230
 		}
5231 5231
 	}
5232 5232
 
@@ -5243,15 +5243,15 @@  discard block
 block discarded – undo
5243 5243
  *
5244 5244
  * @return array
5245 5245
  */
5246
-function geodir_remove_hentry( $class ) {
5247
-	if ( geodir_is_page( 'detail' ) ) {
5248
-		$class = array_diff( $class, array( 'hentry' ) );
5246
+function geodir_remove_hentry($class) {
5247
+	if (geodir_is_page('detail')) {
5248
+		$class = array_diff($class, array('hentry'));
5249 5249
 	}
5250 5250
 
5251 5251
 	return $class;
5252 5252
 }
5253 5253
 
5254
-add_filter( 'post_class', 'geodir_remove_hentry' );
5254
+add_filter('post_class', 'geodir_remove_hentry');
5255 5255
 
5256 5256
 /**
5257 5257
  * Registers a individual text string for WPML translation.
@@ -5263,8 +5263,8 @@  discard block
 block discarded – undo
5263 5263
  * @param string $domain The plugin domain. Default geodirectory.
5264 5264
  * @param string $name The name of the string which helps to know what's being translated.
5265 5265
  */
5266
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5267
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5266
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5267
+    do_action('wpml_register_single_string', $domain, $name, $string);
5268 5268
 }
5269 5269
 
5270 5270
 /**
@@ -5279,8 +5279,8 @@  discard block
 block discarded – undo
5279 5279
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5280 5280
  * @return string The translated string.
5281 5281
  */
5282
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5283
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5282
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5283
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5284 5284
 }
5285 5285
 
5286 5286
 /**
@@ -5295,19 +5295,19 @@  discard block
 block discarded – undo
5295 5295
  * @param int $post_ID  Post ID.
5296 5296
  * @param array $data Post data.
5297 5297
  */
5298
-function geodir_send_listing_edited_notification( $post_ID, $data ) {
5298
+function geodir_send_listing_edited_notification($post_ID, $data) {
5299 5299
     global $gd_notified_edited, $gd_set_listing_edited;
5300 5300
     
5301
-    if ( !empty( $gd_set_listing_edited[ $post_ID ] ) && empty( $gd_notified_edited[ $post_ID ] ) ) {
5302
-        if ( !empty( $gd_notified_edited ) ) {
5301
+    if (!empty($gd_set_listing_edited[$post_ID]) && empty($gd_notified_edited[$post_ID])) {
5302
+        if (!empty($gd_notified_edited)) {
5303 5303
             $gd_notified_edited = array();
5304 5304
         }
5305
-        $gd_notified_edited[ $post_ID ] = true;
5305
+        $gd_notified_edited[$post_ID] = true;
5306 5306
         
5307
-        $from_email   = get_option( 'site_email' );
5307
+        $from_email   = get_option('site_email');
5308 5308
         $from_name    = get_site_emailName();
5309
-        $to_email     = get_option( 'admin_email' );
5310
-        $to_name      = get_option( 'name' );
5309
+        $to_email     = get_option('admin_email');
5310
+        $to_name      = get_option('name');
5311 5311
         $message_type = 'listing_edited';
5312 5312
 
5313 5313
         $notify_edited = true;
@@ -5319,11 +5319,11 @@  discard block
 block discarded – undo
5319 5319
          * @param bool $notify_edited Notify on listing edited by author?
5320 5320
          * @param object $post        The current post object.
5321 5321
          */
5322
-        $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post_ID );
5322
+        $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post_ID);
5323 5323
 
5324
-        if ( $notify_edited ) {
5325
-            geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5324
+        if ($notify_edited) {
5325
+            geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5326 5326
         }
5327 5327
     }
5328 5328
 }
5329
-add_action( 'geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2 );
5330 5329
\ No newline at end of file
5330
+add_action('geodir_after_save_listing', 'geodir_send_listing_edited_notification', 1000, 2);
5331 5331
\ No newline at end of file
Please login to merge, or discard this patch.