Test Failed
Push — master ( c75bcd...10f8fe )
by
unknown
04:21
created
geodirectory-functions/general_functions.php 1 patch
Spacing   +1271 added lines, -1271 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,10 +27,10 @@  discard block
 block discarded – undo
27 27
  */
28 28
 function geodir_plugin_url() {
29 29
 
30
-	if ( is_ssl() ) :
31
-		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
30
+	if (is_ssl()) :
31
+		return str_replace('http://', 'https://', WP_PLUGIN_URL)."/".plugin_basename(dirname(dirname(__FILE__)));
32 32
 	else :
33
-		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
33
+		return WP_PLUGIN_URL."/".plugin_basename(dirname(dirname(__FILE__)));
34 34
 	endif;
35 35
 }
36 36
 
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
46 46
  */
47 47
 function geodir_plugin_path() {
48
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
49
-		return dirname( dirname( __FILE__ ) );
48
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
49
+		return dirname(dirname(__FILE__));
50 50
 	} else {
51
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
51
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
52 52
 	}
53 53
 }
54 54
 
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
  * @return bool true or false.
64 64
  * @todo    check if this is faster than normal WP check and remove if not.
65 65
  */
66
-function geodir_is_plugin_active( $plugin ) {
67
-	$active_plugins = get_option( 'active_plugins' );
68
-	foreach ( $active_plugins as $key => $active_plugin ) {
69
-		if ( strstr( $active_plugin, $plugin ) ) {
66
+function geodir_is_plugin_active($plugin) {
67
+	$active_plugins = get_option('active_plugins');
68
+	foreach ($active_plugins as $key => $active_plugin) {
69
+		if (strstr($active_plugin, $plugin)) {
70 70
 			return true;
71 71
 		}
72 72
 	}
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return bool|int|string the formatted date.
90 90
  */
91
-function geodir_get_formated_date( $date ) {
92
-	return mysql2date( get_option( 'date_format' ), $date );
91
+function geodir_get_formated_date($date) {
92
+	return mysql2date(get_option('date_format'), $date);
93 93
 }
94 94
 
95 95
 /**
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * @return bool|int|string the formatted time.
107 107
  */
108
-function geodir_get_formated_time( $time ) {
109
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
108
+function geodir_get_formated_time($time) {
109
+	return mysql2date(get_option('time_format'), $time, $translate = true);
110 110
 }
111 111
 
112 112
 
@@ -124,35 +124,35 @@  discard block
 block discarded – undo
124 124
  *
125 125
  * @return string Formatted link.
126 126
  */
127
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
128
-	if ( $use_existing_arguments ) {
127
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
128
+	if ($use_existing_arguments) {
129 129
 		$params = $params + $_GET;
130 130
 	}
131
-	if ( ! $params ) {
131
+	if (!$params) {
132 132
 		return $url;
133 133
 	}
134 134
 	$link = $url;
135
-	if ( strpos( $link, '?' ) === false ) {
135
+	if (strpos($link, '?') === false) {
136 136
 		$link .= '?';
137 137
 	} //If there is no '?' add one at the end
138
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
138
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
139 139
 		$link .= '&';
140 140
 	} //If there is no '&' at the END, add one.
141
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
141
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
142 142
 		$link .= '&';
143 143
 	} //If there is no '&' at the END, add one.
144 144
 
145 145
 	$params_arr = array();
146
-	foreach ( $params as $key => $value ) {
147
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
148
-			foreach ( $value as $val ) {
149
-				$params_arr[] = $key . '[]=' . urlencode( $val );
146
+	foreach ($params as $key => $value) {
147
+		if (gettype($value) == 'array') { //Handle array data properly
148
+			foreach ($value as $val) {
149
+				$params_arr[] = $key.'[]='.urlencode($val);
150 150
 			}
151 151
 		} else {
152
-			$params_arr[] = $key . '=' . urlencode( $value );
152
+			$params_arr[] = $key.'='.urlencode($value);
153 153
 		}
154 154
 	}
155
-	$link .= implode( '&', $params_arr );
155
+	$link .= implode('&', $params_arr);
156 156
 
157 157
 	return $link;
158 158
 }
@@ -169,18 +169,18 @@  discard block
 block discarded – undo
169 169
  *
170 170
  * @return string Listing page url if valid. Otherwise home url will be returned.
171 171
  */
172
-function geodir_get_addlisting_link( $post_type = '' ) {
172
+function geodir_get_addlisting_link($post_type = '') {
173 173
 	global $wpdb;
174 174
 
175 175
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
176 176
 	$check_pkg = 1;
177
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
177
+	if (post_type_exists($post_type) && $check_pkg) {
178 178
 
179
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
179
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
180 180
 
181
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
181
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
182 182
 	} else {
183
-		return get_bloginfo( 'url' );
183
+		return get_bloginfo('url');
184 184
 	}
185 185
 }
186 186
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 	if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
209 209
 		// To build the entire URI we need to prepend the protocol, and the http host
210 210
 		// to the URI string.
211
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
211
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
212 212
 	} else {
213 213
 		/*
214 214
 		 * Since we do not have REQUEST_URI to work with, we will assume we are
@@ -217,11 +217,11 @@  discard block
 block discarded – undo
217 217
 		 *
218 218
 		 * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
219 219
 		 */
220
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
220
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
221 221
 		
222 222
 		// If the query string exists append it to the URI string
223 223
 		if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
224
-			$pageURL .= '?' . $_SERVER['QUERY_STRING'];
224
+			$pageURL .= '?'.$_SERVER['QUERY_STRING'];
225 225
 		}
226 226
 	}
227 227
 	
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 	 *
233 233
 	 * @param string $pageURL The URL of the current page.
234 234
 	 */
235
-	return apply_filters( 'geodir_curPageURL', $pageURL );
235
+	return apply_filters('geodir_curPageURL', $pageURL);
236 236
 }
237 237
 
238 238
 /**
@@ -247,12 +247,12 @@  discard block
 block discarded – undo
247 247
  *
248 248
  * @return string Cleaned variable.
249 249
  */
250
-function geodir_clean( $string ) {
250
+function geodir_clean($string) {
251 251
 
252
-	$string = trim( strip_tags( stripslashes( $string ) ) );
253
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
254
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
255
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
252
+	$string = trim(strip_tags(stripslashes($string)));
253
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
254
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
255
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
256 256
 
257 257
 	return $string;
258 258
 }
@@ -266,13 +266,13 @@  discard block
 block discarded – undo
266 266
  */
267 267
 function geodir_get_weekday() {
268 268
 	return array(
269
-		__( 'Sunday', 'geodirectory' ),
270
-		__( 'Monday', 'geodirectory' ),
271
-		__( 'Tuesday', 'geodirectory' ),
272
-		__( 'Wednesday', 'geodirectory' ),
273
-		__( 'Thursday', 'geodirectory' ),
274
-		__( 'Friday', 'geodirectory' ),
275
-		__( 'Saturday', 'geodirectory' )
269
+		__('Sunday', 'geodirectory'),
270
+		__('Monday', 'geodirectory'),
271
+		__('Tuesday', 'geodirectory'),
272
+		__('Wednesday', 'geodirectory'),
273
+		__('Thursday', 'geodirectory'),
274
+		__('Friday', 'geodirectory'),
275
+		__('Saturday', 'geodirectory')
276 276
 	);
277 277
 }
278 278
 
@@ -285,11 +285,11 @@  discard block
 block discarded – undo
285 285
  */
286 286
 function geodir_get_weeks() {
287 287
 	return array(
288
-		__( 'First', 'geodirectory' ),
289
-		__( 'Second', 'geodirectory' ),
290
-		__( 'Third', 'geodirectory' ),
291
-		__( 'Fourth', 'geodirectory' ),
292
-		__( 'Last', 'geodirectory' )
288
+		__('First', 'geodirectory'),
289
+		__('Second', 'geodirectory'),
290
+		__('Third', 'geodirectory'),
291
+		__('Fourth', 'geodirectory'),
292
+		__('Last', 'geodirectory')
293 293
 	);
294 294
 }
295 295
 
@@ -308,112 +308,112 @@  discard block
 block discarded – undo
308 308
  *
309 309
  * @return bool If valid returns true. Otherwise false.
310 310
  */
311
-function geodir_is_page( $gdpage = '' ) {
311
+function geodir_is_page($gdpage = '') {
312 312
 
313 313
 	global $wp_query, $post, $wp;
314 314
 	//if(!is_admin()):
315 315
 
316
-	switch ( $gdpage ):
316
+	switch ($gdpage):
317 317
 		case 'add-listing':
318 318
 
319
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
319
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
320 320
 				return true;
321
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
321
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
322 322
 				return true;
323 323
 			}
324 324
 
325 325
 			break;
326 326
 		case 'preview':
327
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
328
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
327
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
328
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
329 329
 			) {
330 330
 				return true;
331 331
 			}
332 332
 			break;
333 333
 		case 'listing-success':
334
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
334
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
335 335
 				return true;
336 336
 			}
337 337
 			break;
338 338
 		case 'detail':
339
-			$post_type = get_query_var( 'post_type' );
340
-			if ( is_array( $post_type ) ) {
341
-				$post_type = reset( $post_type );
339
+			$post_type = get_query_var('post_type');
340
+			if (is_array($post_type)) {
341
+				$post_type = reset($post_type);
342 342
 			}
343
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
343
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
344 344
 				return true;
345 345
 			}
346 346
 			break;
347 347
 		case 'pt':
348
-			$post_type = get_query_var( 'post_type' );
349
-			if ( is_array( $post_type ) ) {
350
-				$post_type = reset( $post_type );
348
+			$post_type = get_query_var('post_type');
349
+			if (is_array($post_type)) {
350
+				$post_type = reset($post_type);
351 351
 			}
352
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
352
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
353 353
 				return true;
354 354
 			}
355 355
 
356 356
 			break;
357 357
 		case 'listing':
358
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
358
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
359 359
 				global $current_term, $taxonomy, $term;
360 360
 
361 361
 				return true;
362 362
 			}
363
-			$post_type = get_query_var( 'post_type' );
364
-			if ( is_array( $post_type ) ) {
365
-				$post_type = reset( $post_type );
363
+			$post_type = get_query_var('post_type');
364
+			if (is_array($post_type)) {
365
+				$post_type = reset($post_type);
366 366
 			}
367
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
367
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
368 368
 				return true;
369 369
 			}
370 370
 
371 371
 			break;
372 372
 		case 'home':
373 373
 
374
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
374
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
375 375
 				return true;
376 376
 			}
377 377
 
378 378
 			break;
379 379
 		case 'location':
380
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
380
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
381 381
 				return true;
382 382
 			}
383 383
 			break;
384 384
 		case 'author':
385
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
385
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
386 386
 				return true;
387 387
 			}
388 388
 
389
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
390
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
389
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
390
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
391 391
 					return true;
392 392
 				}
393 393
 			}
394 394
 			break;
395 395
 		case 'search':
396
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
396
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
397 397
 				return true;
398 398
 			}
399 399
 			break;
400 400
 		case 'info':
401
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
401
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
402 402
 				return true;
403 403
 			}
404 404
 			break;
405 405
 		case 'login':
406
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
406
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
407 407
 				return true;
408 408
 			}
409 409
 			break;
410 410
 		case 'checkout':
411
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
411
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
412 412
 				return true;
413 413
 			}
414 414
 			break;
415 415
 		case 'invoices':
416
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
416
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
417 417
 				return true;
418 418
 			}
419 419
 			break;
@@ -438,25 +438,25 @@  discard block
 block discarded – undo
438 438
  *
439 439
  * @param object $wp WordPress object.
440 440
  */
441
-function geodir_set_is_geodir_page( $wp ) {
442
-	if ( ! is_admin() ) {
441
+function geodir_set_is_geodir_page($wp) {
442
+	if (!is_admin()) {
443 443
 		//$wp->query_vars['gd_is_geodir_page'] = false;
444 444
 		//print_r()
445
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
445
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
446 446
 				'preview',
447 447
 				'page',
448 448
 				'paged',
449 449
 				'cpage'
450
-			) )
450
+			))
451 451
 		) {
452
-			if ( geodir_is_page( 'home' ) ) {
452
+			if (geodir_is_page('home')) {
453 453
 				$wp->query_vars['gd_is_geodir_page'] = true;
454 454
 			}
455 455
 
456 456
 
457 457
 		}
458 458
 
459
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
459
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
460 460
 			if (
461 461
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
462 462
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -465,26 +465,26 @@  discard block
 block discarded – undo
465 465
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
466 466
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
467 467
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
468
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
469
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
468
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
469
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
470 470
 			) {
471 471
 				$wp->query_vars['gd_is_geodir_page'] = true;
472 472
 			}
473 473
 		}
474 474
 
475
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
476
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
475
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
476
+			$page = get_page_by_path($wp->query_vars['pagename']);
477 477
 
478
-			if ( ! empty( $page ) && (
478
+			if (!empty($page) && (
479 479
 					$page->ID == geodir_add_listing_page_id()
480 480
 					|| $page->ID == geodir_preview_page_id()
481 481
 					|| $page->ID == geodir_success_page_id()
482 482
 					|| $page->ID == geodir_location_page_id()
483
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
484
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
485
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
486
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
487
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
483
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
484
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
485
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
486
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
487
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
488 488
 				)
489 489
 			) {
490 490
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -492,20 +492,20 @@  discard block
 block discarded – undo
492 492
 		}
493 493
 
494 494
 
495
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
495
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
496 496
 			$requested_post_type = $wp->query_vars['post_type'];
497 497
 			// check if this post type is geodirectory post types
498 498
 			$post_type_array = geodir_get_posttypes();
499
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
499
+			if (in_array($requested_post_type, $post_type_array)) {
500 500
 				$wp->query_vars['gd_is_geodir_page'] = true;
501 501
 			}
502 502
 		}
503 503
 
504
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
505
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
506
-			if ( ! empty( $geodir_taxonomis ) ) {
507
-				foreach ( $geodir_taxonomis as $taxonomy ) {
508
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
504
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
505
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
506
+			if (!empty($geodir_taxonomis)) {
507
+				foreach ($geodir_taxonomis as $taxonomy) {
508
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
509 509
 						$wp->query_vars['gd_is_geodir_page'] = true;
510 510
 						break;
511 511
 					}
@@ -514,20 +514,20 @@  discard block
 block discarded – undo
514 514
 
515 515
 		}
516 516
 
517
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
517
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
518 518
 			$wp->query_vars['gd_is_geodir_page'] = true;
519 519
 		}
520 520
 
521 521
 
522
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
522
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
523 523
 			$wp->query_vars['gd_is_geodir_page'] = true;
524 524
 		}
525 525
 
526 526
 
527 527
 //check if homepage
528
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
529
-		     && ! isset( $wp->query_vars['page_id'] )
530
-		     && ! isset( $wp->query_vars['pagename'] )
528
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
529
+		     && !isset($wp->query_vars['page_id'])
530
+		     && !isset($wp->query_vars['pagename'])
531 531
 		     && is_page_geodir_home()
532 532
 		) {
533 533
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -551,14 +551,14 @@  discard block
 block discarded – undo
551 551
  */
552 552
 function geodir_is_geodir_page() {
553 553
 	global $wp;
554
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
554
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
555 555
 		return true;
556 556
 	} else {
557 557
 		return false;
558 558
 	}
559 559
 }
560 560
 
561
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
561
+if (!function_exists('geodir_get_imagesize')) {
562 562
 	/**
563 563
 	 * Get image size using the size key .
564 564
 	 *
@@ -569,13 +569,13 @@  discard block
 block discarded – undo
569 569
 	 *
570 570
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
571 571
 	 */
572
-	function geodir_get_imagesize( $size = '' ) {
572
+	function geodir_get_imagesize($size = '') {
573 573
 
574 574
 		$imagesizes = array(
575
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
576
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
577
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
578
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
575
+			'list-thumb'   => array('w' => 283, 'h' => 188),
576
+			'thumbnail'    => array('w' => 125, 'h' => 125),
577
+			'widget-thumb' => array('w' => 50, 'h' => 50),
578
+			'slider-thumb' => array('w' => 100, 'h' => 100)
579 579
 		);
580 580
 
581 581
 		/**
@@ -585,9 +585,9 @@  discard block
 block discarded – undo
585 585
 		 *
586 586
 		 * @param array $imagesizes Image size array.
587 587
 		 */
588
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
588
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
589 589
 
590
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
590
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
591 591
 			/**
592 592
 			 * Filters image size of the passed key.
593 593
 			 *
@@ -595,11 +595,11 @@  discard block
 block discarded – undo
595 595
 			 *
596 596
 			 * @param array $imagesizes [$size] Image size array of the passed key.
597 597
 			 */
598
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
598
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
599 599
 
600
-		} elseif ( ! empty( $size ) ) {
600
+		} elseif (!empty($size)) {
601 601
 
602
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
602
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
603 603
 
604 604
 		}
605 605
 
@@ -623,7 +623,7 @@  discard block
 block discarded – undo
623 623
 */
624 624
 
625 625
 
626
-if ( ! function_exists( 'createRandomString' ) ) {
626
+if (!function_exists('createRandomString')) {
627 627
 	/**
628 628
 	 * Creates random string.
629 629
 	 *
@@ -633,21 +633,21 @@  discard block
 block discarded – undo
633 633
 	 */
634 634
 	function createRandomString() {
635 635
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
636
-		srand( (double) microtime() * 1000000 );
636
+		srand((double) microtime() * 1000000);
637 637
 		$i       = 0;
638 638
 		$rstring = '';
639
-		while ( $i <= 25 ) {
639
+		while ($i <= 25) {
640 640
 			$num     = rand() % 33;
641
-			$tmp     = substr( $chars, $num, 1 );
642
-			$rstring = $rstring . $tmp;
643
-			$i ++;
641
+			$tmp     = substr($chars, $num, 1);
642
+			$rstring = $rstring.$tmp;
643
+			$i++;
644 644
 		}
645 645
 
646 646
 		return $rstring;
647 647
 	}
648 648
 }
649 649
 
650
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
650
+if (!function_exists('geodir_getDistanceRadius')) {
651 651
 	/**
652 652
 	 * Calculates the distance radius.
653 653
 	 *
@@ -658,9 +658,9 @@  discard block
 block discarded – undo
658 658
 	 *
659 659
 	 * @return float The mean radius.
660 660
 	 */
661
-	function geodir_getDistanceRadius( $uom = 'km' ) {
661
+	function geodir_getDistanceRadius($uom = 'km') {
662 662
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
663
-		switch ( geodir_strtolower( $uom ) ):
663
+		switch (geodir_strtolower($uom)):
664 664
 			case 'km'    :
665 665
 				$earthMeanRadius = 6371.009; // km
666 666
 				break;
@@ -692,7 +692,7 @@  discard block
 block discarded – undo
692 692
 }
693 693
 
694 694
 
695
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
695
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
696 696
 	/**
697 697
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
698 698
 	 *
@@ -705,17 +705,17 @@  discard block
 block discarded – undo
705 705
 	 *
706 706
 	 * @return float The distance.
707 707
 	 */
708
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
708
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
709 709
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
710 710
 
711
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
711
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
712 712
 
713
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
714
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
715
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
716
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
717
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
718
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
713
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
714
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
715
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
716
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
717
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
718
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
719 719
 		$distance       = $earthMeanRadius * $c;
720 720
 
721 721
 		return $distance;
@@ -724,7 +724,7 @@  discard block
 block discarded – undo
724 724
 }
725 725
 
726 726
 
727
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
727
+if (!function_exists('geodir_sendEmail')) {
728 728
 	/**
729 729
 	 * The main function that send transactional emails using the args provided.
730 730
 	 *
@@ -743,93 +743,93 @@  discard block
 block discarded – undo
743 743
 	 * @param string $post_id       The post ID.
744 744
 	 * @param string $user_id       The user ID.
745 745
 	 */
746
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
746
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
747 747
 		$login_details = '';
748 748
 
749 749
 		// strip slashes from subject & message text
750
-		$to_subject = stripslashes_deep( $to_subject );
751
-		$to_message = stripslashes_deep( $to_message );
750
+		$to_subject = stripslashes_deep($to_subject);
751
+		$to_message = stripslashes_deep($to_message);
752 752
 
753
-		if ( $message_type == 'send_friend' ) {
754
-			$subject = get_option( 'geodir_email_friend_subject' );
755
-			$message = get_option( 'geodir_email_friend_content' );
756
-		} elseif ( $message_type == 'send_enquiry' ) {
757
-			$subject = get_option( 'geodir_email_enquiry_subject' );
758
-			$message = get_option( 'geodir_email_enquiry_content' );
753
+		if ($message_type == 'send_friend') {
754
+			$subject = get_option('geodir_email_friend_subject');
755
+			$message = get_option('geodir_email_friend_content');
756
+		} elseif ($message_type == 'send_enquiry') {
757
+			$subject = get_option('geodir_email_enquiry_subject');
758
+			$message = get_option('geodir_email_enquiry_content');
759 759
 
760 760
 			// change to name in some cases
761
-			$post_author = get_post_field( 'post_author', $post_id );
762
-			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
763
-				$toEmailName = __('Business Owner','geodirectory');
764
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
765
-				$toEmailName = __('Business Owner','geodirectory');
761
+			$post_author = get_post_field('post_author', $post_id);
762
+			if (is_super_admin($post_author)) {// if admin probably not the post author so change name
763
+				$toEmailName = __('Business Owner', 'geodirectory');
764
+			}elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
765
+				$toEmailName = __('Business Owner', 'geodirectory');
766 766
 			}
767 767
 
768 768
 
769
-		} elseif ( $message_type == 'forgot_password' ) {
770
-			$subject       = get_option( 'geodir_forgot_password_subject' );
771
-			$message       = get_option( 'geodir_forgot_password_content' );
769
+		} elseif ($message_type == 'forgot_password') {
770
+			$subject       = get_option('geodir_forgot_password_subject');
771
+			$message       = get_option('geodir_forgot_password_content');
772 772
 			$login_details = $to_message;
773
-		} elseif ( $message_type == 'registration' ) {
774
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
775
-			$message       = get_option( 'geodir_registration_success_email_content' );
773
+		} elseif ($message_type == 'registration') {
774
+			$subject       = get_option('geodir_registration_success_email_subject');
775
+			$message       = get_option('geodir_registration_success_email_content');
776 776
 			$login_details = $to_message;
777
-		} elseif ( $message_type == 'post_submit' ) {
778
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
779
-			$message = get_option( 'geodir_post_submited_success_email_content' );
780
-		} elseif ( $message_type == 'listing_published' ) {
781
-			$subject = get_option( 'geodir_post_published_email_subject' );
782
-			$message = get_option( 'geodir_post_published_email_content' );
783
-		} elseif ( $message_type == 'listing_edited' ) {
784
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
785
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
777
+		} elseif ($message_type == 'post_submit') {
778
+			$subject = get_option('geodir_post_submited_success_email_subject');
779
+			$message = get_option('geodir_post_submited_success_email_content');
780
+		} elseif ($message_type == 'listing_published') {
781
+			$subject = get_option('geodir_post_published_email_subject');
782
+			$message = get_option('geodir_post_published_email_content');
783
+		} elseif ($message_type == 'listing_edited') {
784
+			$subject = get_option('geodir_post_edited_email_subject_admin');
785
+			$message = get_option('geodir_post_edited_email_content_admin');
786 786
 		}
787 787
 
788
-		if ( ! empty( $subject ) ) {
789
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
788
+		if (!empty($subject)) {
789
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
790 790
 		}
791 791
 
792
-		if ( ! empty( $message ) ) {
793
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
792
+		if (!empty($message)) {
793
+			$message = __(stripslashes_deep($message), 'geodirectory');
794 794
 		}
795 795
 
796
-		$to_message        = nl2br( $to_message );
797
-		$sitefromEmail     = get_option( 'site_email' );
796
+		$to_message        = nl2br($to_message);
797
+		$sitefromEmail     = get_option('site_email');
798 798
 		$sitefromEmailName = get_site_emailName();
799
-		$productlink       = get_permalink( $post_id );
799
+		$productlink       = get_permalink($post_id);
800 800
 
801 801
 		$user_login = '';
802
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
802
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
803 803
 			$user_login = $user_info->user_login;
804 804
 		}
805 805
 
806 806
 		$posted_date = '';
807 807
 		$listingLink = '';
808 808
 
809
-		$post_info = get_post( $post_id );
809
+		$post_info = get_post($post_id);
810 810
 
811
-		if ( $post_info ) {
811
+		if ($post_info) {
812 812
 			$posted_date = $post_info->post_date;
813
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
813
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
814 814
 		}
815 815
 		$siteurl       = home_url();
816
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
816
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
817 817
 		$loginurl      = geodir_login_url();
818
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
818
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
819 819
 
820
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
821
-		$post_author_name = geodir_get_client_name( $post_author_id );
822
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
820
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
821
+		$post_author_name = geodir_get_client_name($post_author_id);
822
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
823 823
 
824
-		if ( $fromEmail == '' ) {
825
-			$fromEmail = get_option( 'site_email' );
824
+		if ($fromEmail == '') {
825
+			$fromEmail = get_option('site_email');
826 826
 		}
827 827
 
828
-		if ( $fromEmailName == '' ) {
829
-			$fromEmailName = get_option( 'site_email_name' );
828
+		if ($fromEmailName == '') {
829
+			$fromEmailName = get_option('site_email_name');
830 830
 		}
831 831
 
832
-		$search_array  = array(
832
+		$search_array = array(
833 833
 			'[#listing_link#]',
834 834
 			'[#site_name_url#]',
835 835
 			'[#post_id#]',
@@ -869,7 +869,7 @@  discard block
 block discarded – undo
869 869
 			$post_author_name,
870 870
 			$current_date
871 871
 		);
872
-		$message       = str_replace( $search_array, $replace_array, $message );
872
+		$message       = str_replace($search_array, $replace_array, $message);
873 873
 
874 874
 		$search_array  = array(
875 875
 			'[#listing_link#]',
@@ -905,12 +905,12 @@  discard block
 block discarded – undo
905 905
 			$post_author_name,
906 906
 			$current_date
907 907
 		);
908
-		$subject       = str_replace( $search_array, $replace_array, $subject );
908
+		$subject = str_replace($search_array, $replace_array, $subject);
909 909
 
910
-		$headers =  array();
910
+		$headers = array();
911 911
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
912
-		$headers[] = "Reply-To: " . $fromEmail;
913
-		$headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>';
912
+		$headers[] = "Reply-To: ".$fromEmail;
913
+		$headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>';
914 914
 
915 915
 		$to = $toEmail;
916 916
 
@@ -932,7 +932,7 @@  discard block
 block discarded – undo
932 932
 		 * @param string $post_id       The post ID.
933 933
 		 * @param string $user_id       The user ID.
934 934
 		 */
935
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
935
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
936 936
 		/**
937 937
 		 * Filter the client email subject.
938 938
 		 *
@@ -951,7 +951,7 @@  discard block
 block discarded – undo
951 951
 		 * @param string $post_id       The post ID.
952 952
 		 * @param string $user_id       The user ID.
953 953
 		 */
954
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
954
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
955 955
 		/**
956 956
 		 * Filter the client email message.
957 957
 		 *
@@ -970,7 +970,7 @@  discard block
 block discarded – undo
970 970
 		 * @param string $post_id       The post ID.
971 971
 		 * @param string $user_id       The user ID.
972 972
 		 */
973
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
973
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
974 974
 		/**
975 975
 		 * Filter the client email headers.
976 976
 		 *
@@ -989,39 +989,39 @@  discard block
 block discarded – undo
989 989
 		 * @param string $post_id       The post ID.
990 990
 		 * @param string $user_id       The user ID.
991 991
 		 */
992
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
992
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
993 993
 
994
-		$sent = wp_mail( $to, $subject, $message, $headers );
994
+		$sent = wp_mail($to, $subject, $message, $headers);
995 995
 
996
-		if ( ! $sent ) {
997
-			if ( is_array( $to ) ) {
998
-				$to = implode( ',', $to );
996
+		if (!$sent) {
997
+			if (is_array($to)) {
998
+				$to = implode(',', $to);
999 999
 			}
1000 1000
 			$log_message = sprintf(
1001
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1001
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1002 1002
 				$message_type,
1003
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1003
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1004 1004
 				$to,
1005 1005
 				$subject
1006 1006
 			);
1007
-			geodir_error_log( $log_message );
1007
+			geodir_error_log($log_message);
1008 1008
 		}
1009 1009
 
1010 1010
 		///////// ADMIN BCC EMIALS
1011
-		$adminEmail = get_bloginfo( 'admin_email' );
1011
+		$adminEmail = get_bloginfo('admin_email');
1012 1012
 		$to         = $adminEmail;
1013 1013
 
1014 1014
 		$admin_bcc = false;
1015
-		if ( $message_type == 'registration' ) {
1016
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1017
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1018
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1015
+		if ($message_type == 'registration') {
1016
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1017
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1018
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1019 1019
 		}
1020
-		if ( $message_type == 'post_submit' ) {
1021
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1022
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1020
+		if ($message_type == 'post_submit') {
1021
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1022
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1023 1023
 
1024
-			$search_array  = array(
1024
+			$search_array = array(
1025 1025
 				'[#listing_link#]',
1026 1026
 				'[#site_name_url#]',
1027 1027
 				'[#post_id#]',
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
 				$user_login,
1054 1054
 				$user_login
1055 1055
 			);
1056
-			$message       = str_replace( $search_array, $replace_array, $message );
1056
+			$message       = str_replace($search_array, $replace_array, $message);
1057 1057
 
1058 1058
 			$search_array  = array(
1059 1059
 				'[#listing_link#]',
@@ -1081,26 +1081,26 @@  discard block
 block discarded – undo
1081 1081
 				$user_login,
1082 1082
 				$user_login
1083 1083
 			);
1084
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1084
+			$subject = str_replace($search_array, $replace_array, $subject);
1085 1085
 
1086 1086
 			$subject .= ' - ADMIN BCC COPY';
1087 1087
 			$admin_bcc = true;
1088 1088
 
1089
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1089
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1090 1090
 			$subject .= ' - ADMIN BCC COPY';
1091 1091
 			$admin_bcc = true;
1092
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1092
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1093 1093
 			$subject .= ' - ADMIN BCC COPY';
1094 1094
 			$admin_bcc = true;
1095
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1095
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1096 1096
 			$subject .= ' - ADMIN BCC COPY';
1097 1097
 			$admin_bcc = true;
1098
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1098
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1099 1099
 			$subject .= ' - ADMIN BCC COPY';
1100 1100
 			$admin_bcc = true;
1101 1101
 		}
1102 1102
 
1103
-		if ( $admin_bcc === true ) {
1103
+		if ($admin_bcc === true) {
1104 1104
 
1105 1105
 			/**
1106 1106
 			 * Filter the client email subject.
@@ -1120,7 +1120,7 @@  discard block
 block discarded – undo
1120 1120
 			 * @param string $post_id       The post ID.
1121 1121
 			 * @param string $user_id       The user ID.
1122 1122
 			 */
1123
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1123
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1124 1124
 			/**
1125 1125
 			 * Filter the client email message.
1126 1126
 			 *
@@ -1139,23 +1139,23 @@  discard block
 block discarded – undo
1139 1139
 			 * @param string $post_id       The post ID.
1140 1140
 			 * @param string $user_id       The user ID.
1141 1141
 			 */
1142
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1142
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1143 1143
 
1144 1144
 
1145
-			$sent = wp_mail( $to, $subject, $message, $headers );
1145
+			$sent = wp_mail($to, $subject, $message, $headers);
1146 1146
 
1147
-			if ( ! $sent ) {
1148
-				if ( is_array( $to ) ) {
1149
-					$to = implode( ',', $to );
1147
+			if (!$sent) {
1148
+				if (is_array($to)) {
1149
+					$to = implode(',', $to);
1150 1150
 				}
1151 1151
 				$log_message = sprintf(
1152
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1152
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1153 1153
 					$message_type,
1154
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1154
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1155 1155
 					$to,
1156 1156
 					$subject
1157 1157
 				);
1158
-				geodir_error_log( $log_message );
1158
+				geodir_error_log($log_message);
1159 1159
 			}
1160 1160
 		}
1161 1161
 
@@ -1171,49 +1171,49 @@  discard block
 block discarded – undo
1171 1171
  */
1172 1172
 function geodir_taxonomy_breadcrumb() {
1173 1173
 
1174
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1174
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1175 1175
 	$parent = $term->parent;
1176 1176
 
1177
-	while ( $parent ):
1177
+	while ($parent):
1178 1178
 		$parents[]  = $parent;
1179
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1179
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1180 1180
 		$parent     = $new_parent->parent;
1181 1181
 	endwhile;
1182 1182
 
1183
-	if ( ! empty( $parents ) ):
1184
-		$parents = array_reverse( $parents );
1183
+	if (!empty($parents)):
1184
+		$parents = array_reverse($parents);
1185 1185
 
1186
-		foreach ( $parents as $parent ):
1187
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1188
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1189
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1186
+		foreach ($parents as $parent):
1187
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1188
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1189
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1190 1190
 		endforeach;
1191 1191
 
1192 1192
 	endif;
1193 1193
 
1194
-	echo '<li> > ' . $term->name . '</li>';
1194
+	echo '<li> > '.$term->name.'</li>';
1195 1195
 }
1196 1196
 
1197
-function geodir_wpml_post_type_archive_link($link, $post_type){
1197
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1198 1198
 	if (function_exists('icl_object_id')) {
1199
-		$post_types   = get_option( 'geodir_post_types' );
1200
-		$slug         = $post_types[ $post_type ]['rewrite']['slug'];
1199
+		$post_types   = get_option('geodir_post_types');
1200
+		$slug         = $post_types[$post_type]['rewrite']['slug'];
1201 1201
 
1202 1202
 		// Alter the CPT slug if WPML is set to do so
1203
-		if ( function_exists( 'icl_object_id' ) ) {
1204
-			if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1203
+		if (function_exists('icl_object_id')) {
1204
+			if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1205 1205
 
1206 1206
 				$org_slug = $slug;
1207
-				$slug     = apply_filters( 'wpml_translate_single_string',
1207
+				$slug     = apply_filters('wpml_translate_single_string',
1208 1208
 					$slug,
1209 1209
 					'WordPress',
1210
-					'URL slug: ' . $slug,
1211
-					$language_code );
1210
+					'URL slug: '.$slug,
1211
+					$language_code);
1212 1212
                     
1213
-				if ( ! $slug ) {
1213
+				if (!$slug) {
1214 1214
 					$slug = $org_slug;
1215 1215
 				} else {
1216
-					$link = str_replace( $org_slug, $slug, $link );
1216
+					$link = str_replace($org_slug, $slug, $link);
1217 1217
 				}
1218 1218
 			}
1219 1219
 		}
@@ -1221,7 +1221,7 @@  discard block
 block discarded – undo
1221 1221
 
1222 1222
 	return $link;
1223 1223
 }
1224
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1224
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1225 1225
 
1226 1226
 /**
1227 1227
  * Main function that generates breadcrumb for all pages.
@@ -1242,9 +1242,9 @@  discard block
 block discarded – undo
1242 1242
 	 *
1243 1243
 	 * @since 1.0.0
1244 1244
 	 */
1245
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1245
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1246 1246
 
1247
-	if ( ! geodir_is_page( 'home' ) ) {
1247
+	if (!geodir_is_page('home')) {
1248 1248
 		$breadcrumb    = '';
1249 1249
 		$url_categoris = '';
1250 1250
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1253,167 +1253,167 @@  discard block
 block discarded – undo
1253 1253
 		 *
1254 1254
 		 * @since 1.0.0
1255 1255
 		 */
1256
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1256
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1257 1257
 
1258 1258
 		$gd_post_type   = geodir_get_current_posttype();
1259
-		$post_type_info = get_post_type_object( $gd_post_type );
1259
+		$post_type_info = get_post_type_object($gd_post_type);
1260 1260
 
1261
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1261
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1262 1262
 
1263
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1263
+		$listing_link = get_post_type_archive_link($gd_post_type);
1264 1264
 
1265
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1266
-		$listing_link = rtrim( $listing_link, '/' );
1265
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1266
+		$listing_link = rtrim($listing_link, '/');
1267 1267
 		$listing_link .= '/';
1268 1268
 
1269 1269
 		$post_type_for_location_link = $listing_link;
1270
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1270
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1271 1271
 
1272 1272
 		global $wp, $gd_session;
1273 1273
 		$location_link = $post_type_for_location_link;
1274 1274
 
1275
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1275
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1276 1276
 			global $post;
1277
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1278
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1277
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1278
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1279 1279
 
1280
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1280
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1281 1281
 				$location_terms = array(
1282 1282
 					'gd_country' => $post->country_slug,
1283 1283
 					'gd_region'  => $post->region_slug,
1284 1284
 					'gd_city'    => $post->city_slug
1285 1285
 				);
1286 1286
 
1287
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1287
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1288 1288
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1289 1289
 				}
1290 1290
 			}
1291 1291
 
1292
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1292
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1293 1293
 
1294 1294
 			$hide_url_part = array();
1295
-			if ( $location_manager ) {
1296
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1297
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1298
-
1299
-				if ( $hide_region_part && $hide_country_part ) {
1300
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1301
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1302
-					$hide_url_part = array( 'gd_region' );
1303
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1304
-					$hide_url_part = array( 'gd_country' );
1295
+			if ($location_manager) {
1296
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1297
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1298
+
1299
+				if ($hide_region_part && $hide_country_part) {
1300
+					$hide_url_part = array('gd_country', 'gd_region');
1301
+				} else if ($hide_region_part && !$hide_country_part) {
1302
+					$hide_url_part = array('gd_region');
1303
+				} else if (!$hide_region_part && $hide_country_part) {
1304
+					$hide_url_part = array('gd_country');
1305 1305
 				}
1306 1306
 			}
1307 1307
 
1308 1308
 			$hide_text_part = array();
1309
-			if ( $geodir_show_location_url == 'country_city' ) {
1310
-				$hide_text_part = array( 'gd_region' );
1309
+			if ($geodir_show_location_url == 'country_city') {
1310
+				$hide_text_part = array('gd_region');
1311 1311
 
1312
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1313
-					unset( $location_terms['gd_region'] );
1312
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1313
+					unset($location_terms['gd_region']);
1314 1314
 				}
1315
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1316
-				$hide_text_part = array( 'gd_country' );
1315
+			} else if ($geodir_show_location_url == 'region_city') {
1316
+				$hide_text_part = array('gd_country');
1317 1317
 
1318
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1319
-					unset( $location_terms['gd_country'] );
1318
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1319
+					unset($location_terms['gd_country']);
1320 1320
 				}
1321
-			} else if ( $geodir_show_location_url == 'city' ) {
1322
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1321
+			} else if ($geodir_show_location_url == 'city') {
1322
+				$hide_text_part = array('gd_country', 'gd_region');
1323 1323
 
1324
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1325
-					unset( $location_terms['gd_country'] );
1324
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1325
+					unset($location_terms['gd_country']);
1326 1326
 				}
1327
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1328
-					unset( $location_terms['gd_region'] );
1327
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1328
+					unset($location_terms['gd_region']);
1329 1329
 				}
1330 1330
 			}
1331 1331
 
1332 1332
 			$is_location_last = '';
1333 1333
 			$is_taxonomy_last = '';
1334 1334
 			$breadcrumb .= '<li>';
1335
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1336
-				$gd_taxonomy = $gd_post_type . 'category';
1337
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1338
-				$gd_taxonomy = $gd_post_type . '_tags';
1335
+			if (get_query_var($gd_post_type.'category')) {
1336
+				$gd_taxonomy = $gd_post_type.'category';
1337
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1338
+				$gd_taxonomy = $gd_post_type.'_tags';
1339 1339
 			}
1340 1340
 
1341
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1342
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1341
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1342
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1343 1343
 				$is_location_last = false;
1344 1344
 			} else {
1345 1345
 				$is_location_last = true;
1346 1346
 			}
1347 1347
 
1348
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1348
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1349 1349
 				$is_taxonomy_last = true;
1350 1350
 			} else {
1351 1351
 				$is_taxonomy_last = false;
1352 1352
 			}
1353 1353
 
1354
-			if ( ! empty( $location_terms ) ) {
1355
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1354
+			if (!empty($location_terms)) {
1355
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1356 1356
 
1357
-				foreach ( $location_terms as $key => $location_term ) {
1358
-					if ( $location_term != '' ) {
1359
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1357
+				foreach ($location_terms as $key => $location_term) {
1358
+					if ($location_term != '') {
1359
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1360 1360
 							continue;
1361 1361
 						}
1362 1362
 
1363
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1364
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1365
-						$gd_location_link_text = ucfirst( $gd_location_link_text );
1363
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1364
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1365
+						$gd_location_link_text = ucfirst($gd_location_link_text);
1366 1366
 
1367 1367
 						$location_term_actual_country = '';
1368 1368
 						$location_term_actual_region  = '';
1369 1369
 						$location_term_actual_city    = '';
1370 1370
 						$location_term_actual_neighbourhood = '';
1371
-						if ( $geodir_get_locations ) {
1372
-							if ( $key == 'gd_country' ) {
1373
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1374
-							} else if ( $key == 'gd_region' ) {
1375
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1376
-							} else if ( $key == 'gd_city' ) {
1377
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1378
-							} else if ( $key == 'gd_neighbourhood' ) {
1379
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1371
+						if ($geodir_get_locations) {
1372
+							if ($key == 'gd_country') {
1373
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1374
+							} else if ($key == 'gd_region') {
1375
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1376
+							} else if ($key == 'gd_city') {
1377
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1378
+							} else if ($key == 'gd_neighbourhood') {
1379
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1380 1380
 							}
1381 1381
 						} else {
1382 1382
 							$location_info = geodir_get_location();
1383 1383
 
1384
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1385
-								if ( $key == 'gd_country' ) {
1386
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1387
-								} else if ( $key == 'gd_region' ) {
1388
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1389
-								} else if ( $key == 'gd_city' ) {
1390
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1384
+							if (!empty($location_info) && isset($location_info->location_id)) {
1385
+								if ($key == 'gd_country') {
1386
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1387
+								} else if ($key == 'gd_region') {
1388
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1389
+								} else if ($key == 'gd_city') {
1390
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1391 1391
 								}
1392 1392
 							}
1393 1393
 						}
1394 1394
 
1395
-						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'] != '' ) ) {
1396
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1397
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1398
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1399
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1400
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1401
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1402
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1395
+						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'] != '')) {
1396
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1397
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1398
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1399
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1400
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1401
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1402
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1403 1403
 						} else {
1404
-							if ( get_option( 'permalink_structure' ) != '' ) {
1405
-								$location_link .= $location_term . '/';
1404
+							if (get_option('permalink_structure') != '') {
1405
+								$location_link .= $location_term.'/';
1406 1406
 							} else {
1407
-								$location_link .= "&$key=" . $location_term;
1407
+								$location_link .= "&$key=".$location_term;
1408 1408
 							}
1409 1409
 
1410
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1410
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1411 1411
 								$gd_location_link_text = $location_term_actual_country;
1412
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1412
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1413 1413
 								$gd_location_link_text = $location_term_actual_region;
1414
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1414
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1415 1415
 								$gd_location_link_text = $location_term_actual_city;
1416
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1416
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1417 1417
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1418 1418
 							}
1419 1419
 
@@ -1423,76 +1423,76 @@  discard block
 block discarded – undo
1423 1423
                             }
1424 1424
                             */
1425 1425
 
1426
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1426
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1427 1427
 						}
1428 1428
 					}
1429 1429
 				}
1430 1430
 			}
1431 1431
 
1432
-			if ( ! empty( $gd_taxonomy ) ) {
1432
+			if (!empty($gd_taxonomy)) {
1433 1433
 				$term_index = 1;
1434 1434
 
1435 1435
 				//if(get_option('geodir_add_categories_url'))
1436 1436
 				{
1437
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1438
-						$cat_link = $listing_link . 'tags/';
1437
+					if (get_query_var($gd_post_type.'_tags')) {
1438
+						$cat_link = $listing_link.'tags/';
1439 1439
 					} else {
1440 1440
 						$cat_link = $listing_link;
1441 1441
 					}
1442 1442
 
1443
-					foreach ( $location_terms as $key => $location_term ) {
1444
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1443
+					foreach ($location_terms as $key => $location_term) {
1444
+						if ($location_manager && in_array($key, $hide_url_part)) {
1445 1445
 							continue;
1446 1446
 						}
1447 1447
 
1448
-						if ( $location_term != '' ) {
1449
-							if ( get_option( 'permalink_structure' ) != '' ) {
1450
-								$cat_link .= $location_term . '/';
1448
+						if ($location_term != '') {
1449
+							if (get_option('permalink_structure') != '') {
1450
+								$cat_link .= $location_term.'/';
1451 1451
 							}
1452 1452
 						}
1453 1453
 					}
1454 1454
 
1455
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1456
-					foreach ( $term_array as $term ) {
1457
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1458
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1455
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1456
+					foreach ($term_array as $term) {
1457
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1458
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1459 1459
 
1460 1460
 						// get term actual name
1461
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1462
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1463
-							$term_link_text = urldecode( $term_info['name'] );
1461
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1462
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1463
+							$term_link_text = urldecode($term_info['name']);
1464 1464
 						} else {
1465 1465
 							continue;
1466 1466
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1467 1467
 						}
1468 1468
 
1469
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1470
-							$breadcrumb .= $separator . $term_link_text;
1469
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1470
+							$breadcrumb .= $separator.$term_link_text;
1471 1471
 						} else {
1472
-							$cat_link .= $term . '/';
1473
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1472
+							$cat_link .= $term.'/';
1473
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1474 1474
 						}
1475
-						$term_index ++;
1475
+						$term_index++;
1476 1476
 					}
1477 1477
 				}
1478 1478
 
1479 1479
 
1480 1480
 			}
1481 1481
 
1482
-			if ( geodir_is_page( 'detail' ) ) {
1483
-				$breadcrumb .= $separator . get_the_title();
1482
+			if (geodir_is_page('detail')) {
1483
+				$breadcrumb .= $separator.get_the_title();
1484 1484
 			}
1485 1485
 
1486 1486
 			$breadcrumb .= '</li>';
1487 1487
 
1488 1488
 
1489
-		} elseif ( geodir_is_page( 'author' ) ) {
1489
+		} elseif (geodir_is_page('author')) {
1490 1490
 			$user_id             = get_current_user_id();
1491
-			$author_link         = get_author_posts_url( $user_id );
1492
-			$default_author_link = geodir_getlink( $author_link, array(
1491
+			$author_link         = get_author_posts_url($user_id);
1492
+			$default_author_link = geodir_getlink($author_link, array(
1493 1493
 				'geodir_dashbord' => 'true',
1494 1494
 				'stype'           => 'gd_place'
1495
-			), false );
1495
+			), false);
1496 1496
 
1497 1497
 			/**
1498 1498
 			 * Filter author page link.
@@ -1502,16 +1502,16 @@  discard block
 block discarded – undo
1502 1502
 			 * @param string $default_author_link Default author link.
1503 1503
 			 * @param int $user_id                Author ID.
1504 1504
 			 */
1505
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1505
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1506 1506
 
1507 1507
 			$breadcrumb .= '<li>';
1508
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1508
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1509 1509
 
1510
-			if ( isset( $_REQUEST['list'] ) ) {
1511
-				$author_link = geodir_getlink( $author_link, array(
1510
+			if (isset($_REQUEST['list'])) {
1511
+				$author_link = geodir_getlink($author_link, array(
1512 1512
 					'geodir_dashbord' => 'true',
1513 1513
 					'stype'           => $_REQUEST['stype']
1514
-				), false );
1514
+				), false);
1515 1515
 
1516 1516
 				/**
1517 1517
 				 * Filter author page link.
@@ -1522,61 +1522,61 @@  discard block
 block discarded – undo
1522 1522
 				 * @param int $user_id        Author ID.
1523 1523
 				 * @param string $_REQUEST    ['stype'] Post type.
1524 1524
 				 */
1525
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1525
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1526 1526
 
1527
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1528
-				$breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1527
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1528
+				$breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1529 1529
 			} else {
1530
-				$breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' );
1530
+				$breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory');
1531 1531
 			}
1532 1532
 
1533 1533
 			$breadcrumb .= '</li>';
1534
-		} elseif ( is_category() || is_single() ) {
1534
+		} elseif (is_category() || is_single()) {
1535 1535
 			$category = get_the_category();
1536
-			if ( is_category() ) {
1537
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1536
+			if (is_category()) {
1537
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1538 1538
 			}
1539
-			if ( is_single() ) {
1540
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1541
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1539
+			if (is_single()) {
1540
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1541
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1542 1542
 			}
1543 1543
 			/* End of my version ##################################################### */
1544
-		} else if ( is_page() ) {
1544
+		} else if (is_page()) {
1545 1545
 			$page_title = get_the_title();
1546 1546
 
1547
-			if ( geodir_is_page( 'location' ) ) {
1547
+			if (geodir_is_page('location')) {
1548 1548
 				$location_page_id = geodir_location_page_id();
1549
-				$loc_post         = get_post( $location_page_id );
1549
+				$loc_post         = get_post($location_page_id);
1550 1550
 				$post_name        = $loc_post->post_name;
1551
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1552
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1551
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1552
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1553 1553
 			}
1554 1554
 
1555
-			$breadcrumb .= '<li>' . $separator;
1556
-			$breadcrumb .= stripslashes_deep( $page_title );
1555
+			$breadcrumb .= '<li>'.$separator;
1556
+			$breadcrumb .= stripslashes_deep($page_title);
1557 1557
 			$breadcrumb .= '</li>';
1558
-		} else if ( is_tag() ) {
1559
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1560
-		} else if ( is_day() ) {
1561
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1562
-			the_time( 'F jS, Y' );
1558
+		} else if (is_tag()) {
1559
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1560
+		} else if (is_day()) {
1561
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1562
+			the_time('F jS, Y');
1563 1563
 			$breadcrumb .= '</li>';
1564
-		} else if ( is_month() ) {
1565
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1566
-			the_time( 'F, Y' );
1564
+		} else if (is_month()) {
1565
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1566
+			the_time('F, Y');
1567 1567
 			$breadcrumb .= '</li>';
1568
-		} else if ( is_year() ) {
1569
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1570
-			the_time( 'Y' );
1568
+		} else if (is_year()) {
1569
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1570
+			the_time('Y');
1571 1571
 			$breadcrumb .= '</li>';
1572
-		} else if ( is_author() ) {
1573
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1572
+		} else if (is_author()) {
1573
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1574 1574
 			$breadcrumb .= '</li>';
1575
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1576
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1575
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1576
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1577 1577
 			$breadcrumb .= '</li>';
1578
-		} else if ( is_search() ) {
1579
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1578
+		} else if (is_search()) {
1579
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1580 1580
 			$breadcrumb .= '</li>';
1581 1581
 		}
1582 1582
 		$breadcrumb .= '</ul></div>';
@@ -1589,13 +1589,13 @@  discard block
 block discarded – undo
1589 1589
 		 * @param string $breadcrumb Breadcrumb HTML.
1590 1590
 		 * @param string $separator  Breadcrumb separator.
1591 1591
 		 */
1592
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1592
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1593 1593
 	}
1594 1594
 }
1595 1595
 
1596 1596
 
1597
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1598
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1597
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1598
+if (!function_exists('geodir_allow_wpadmin')) {
1599 1599
 	/**
1600 1600
 	 * Allow only admins to access wp-admin.
1601 1601
 	 *
@@ -1607,12 +1607,12 @@  discard block
 block discarded – undo
1607 1607
 	 */
1608 1608
 	function geodir_allow_wpadmin() {
1609 1609
 		global $wpdb;
1610
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1610
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1611 1611
 		{
1612
-			if ( current_user_can( 'administrator' ) ) {
1612
+			if (current_user_can('administrator')) {
1613 1613
 			} else {
1614 1614
 
1615
-				wp_redirect( home_url() );
1615
+				wp_redirect(home_url());
1616 1616
 				exit;
1617 1617
 			}
1618 1618
 
@@ -1631,23 +1631,23 @@  discard block
 block discarded – undo
1631 1631
  *
1632 1632
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1633 1633
  */
1634
-function fetch_remote_file( $url ) {
1634
+function fetch_remote_file($url) {
1635 1635
 	// extract the file name and extension from the url
1636
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1637
-	$file_name = basename( $url );
1638
-	if ( strpos( $file_name, '?' ) !== false ) {
1639
-		list( $file_name ) = explode( '?', $file_name );
1636
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1637
+	$file_name = basename($url);
1638
+	if (strpos($file_name, '?') !== false) {
1639
+		list($file_name) = explode('?', $file_name);
1640 1640
 	}
1641 1641
 	$dummy        = false;
1642 1642
 	$add_to_cache = false;
1643 1643
 	$key          = null;
1644
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1644
+	if (strpos($url, '/dummy/') !== false) {
1645 1645
 		$dummy = true;
1646
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1647
-		$value = get_transient( 'cached_dummy_images' );
1648
-		if ( $value ) {
1649
-			if ( isset( $value[ $key ] ) ) {
1650
-				return $value[ $key ];
1646
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1647
+		$value = get_transient('cached_dummy_images');
1648
+		if ($value) {
1649
+			if (isset($value[$key])) {
1650
+				return $value[$key];
1651 1651
 			} else {
1652 1652
 				$add_to_cache = true;
1653 1653
 			}
@@ -1658,58 +1658,58 @@  discard block
 block discarded – undo
1658 1658
 
1659 1659
 	// get placeholder file in the upload dir with a unique, sanitized filename
1660 1660
 
1661
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1661
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1662 1662
 
1663
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1664
-	if ( $upload['error'] ) {
1665
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1663
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1664
+	if ($upload['error']) {
1665
+		return new WP_Error('upload_dir_error', $upload['error']);
1666 1666
 	}
1667 1667
 
1668 1668
 
1669
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1669
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1670 1670
 
1671 1671
 	// fetch the remote url and write it to the placeholder file
1672
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1672
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1673 1673
 
1674 1674
 	$log_message = '';
1675
-	if ( is_wp_error( $headers ) ) {
1676
-		echo 'file: ' . $url;
1675
+	if (is_wp_error($headers)) {
1676
+		echo 'file: '.$url;
1677 1677
 
1678
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1678
+		return new WP_Error('import_file_error', $headers->get_error_message());
1679 1679
 	}
1680 1680
 
1681
-	$filesize = filesize( $upload['file'] );
1681
+	$filesize = filesize($upload['file']);
1682 1682
 	// request failed
1683
-	if ( ! $headers ) {
1684
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1683
+	if (!$headers) {
1684
+		$log_message = __('Remote server did not respond', 'geodirectory');
1685 1685
 	} // make sure the fetch was successful
1686
-	elseif ( $headers['response']['code'] != '200' ) {
1687
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1688
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1689
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1690
-	} elseif ( 0 == $filesize ) {
1691
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1692
-	}
1693
-
1694
-	if ( $log_message ) {
1695
-		$del = unlink( $upload['file'] );
1696
-		if ( ! $del ) {
1697
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1686
+	elseif ($headers['response']['code'] != '200') {
1687
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1688
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1689
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1690
+	} elseif (0 == $filesize) {
1691
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1692
+	}
1693
+
1694
+	if ($log_message) {
1695
+		$del = unlink($upload['file']);
1696
+		if (!$del) {
1697
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1698 1698
 		}
1699 1699
 
1700
-		return new WP_Error( 'import_file_error', $log_message );
1700
+		return new WP_Error('import_file_error', $log_message);
1701 1701
 	}
1702 1702
 
1703
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1704
-		$images = get_transient( 'cached_dummy_images' );
1705
-		if ( is_array( $images ) ) {
1706
-			$images[ $key ] = $upload;
1703
+	if ($dummy && $add_to_cache && is_array($upload)) {
1704
+		$images = get_transient('cached_dummy_images');
1705
+		if (is_array($images)) {
1706
+			$images[$key] = $upload;
1707 1707
 		} else {
1708
-			$images = array( $key => $upload );
1708
+			$images = array($key => $upload);
1709 1709
 		}
1710 1710
 
1711 1711
 		//setting the cache using the WP Transient API
1712
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1712
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1713 1713
 	}
1714 1714
 
1715 1715
 	return $upload;
@@ -1723,12 +1723,12 @@  discard block
 block discarded – undo
1723 1723
  * @return string|void Max upload size.
1724 1724
  */
1725 1725
 function geodir_max_upload_size() {
1726
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1726
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1727 1727
 
1728
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1729
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1728
+	if ($max_filesize > 0 && $max_filesize < 1) {
1729
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1730 1730
 	} else {
1731
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1731
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1732 1732
 	}
1733 1733
 
1734 1734
 	/**
@@ -1738,7 +1738,7 @@  discard block
 block discarded – undo
1738 1738
 	 *
1739 1739
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1740 1740
 	 */
1741
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1741
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1742 1742
 }
1743 1743
 
1744 1744
 /**
@@ -1751,8 +1751,8 @@  discard block
 block discarded – undo
1751 1751
  * @return bool If dummy folder exists returns true, else false.
1752 1752
  */
1753 1753
 function geodir_dummy_folder_exists() {
1754
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1755
-	if ( ! is_dir( $path ) ) {
1754
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1755
+	if (!is_dir($path)) {
1756 1756
 		return false;
1757 1757
 	} else {
1758 1758
 		return true;
@@ -1771,17 +1771,17 @@  discard block
 block discarded – undo
1771 1771
  *
1772 1772
  * @return object Author info.
1773 1773
  */
1774
-function geodir_get_author_info( $aid ) {
1774
+function geodir_get_author_info($aid) {
1775 1775
 	global $wpdb;
1776 1776
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1777
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1778
-	$info    = $wpdb->get_results( $infosql );
1779
-	if ( $info ) {
1777
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1778
+	$info    = $wpdb->get_results($infosql);
1779
+	if ($info) {
1780 1780
 		return $info[0];
1781 1781
 	}
1782 1782
 }
1783 1783
 
1784
-if ( ! function_exists( 'adminEmail' ) ) {
1784
+if (!function_exists('adminEmail')) {
1785 1785
 	/**
1786 1786
 	 * Send emails to client on post submission, renew etc.
1787 1787
 	 *
@@ -1794,67 +1794,67 @@  discard block
 block discarded – undo
1794 1794
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1795 1795
 	 * @param string $custom_1     Custom data to be sent.
1796 1796
 	 */
1797
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1797
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1798 1798
 		global $wpdb;
1799
-		if ( $message_type == 'expiration' ) {
1800
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1801
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1802
-		} elseif ( $message_type == 'post_submited' ) {
1803
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1804
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1805
-		} elseif ( $message_type == 'renew' ) {
1806
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1807
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1808
-		} elseif ( $message_type == 'upgrade' ) {
1809
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1810
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1811
-		} elseif ( $message_type == 'claim_approved' ) {
1812
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1813
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1814
-		} elseif ( $message_type == 'claim_rejected' ) {
1815
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1816
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1817
-		} elseif ( $message_type == 'claim_requested' ) {
1818
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1819
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1820
-		} elseif ( $message_type == 'auto_claim' ) {
1821
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1822
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1823
-		} elseif ( $message_type == 'payment_success' ) {
1824
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1825
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1826
-		} elseif ( $message_type == 'payment_fail' ) {
1827
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1828
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1799
+		if ($message_type == 'expiration') {
1800
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1801
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1802
+		} elseif ($message_type == 'post_submited') {
1803
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1804
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1805
+		} elseif ($message_type == 'renew') {
1806
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1807
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1808
+		} elseif ($message_type == 'upgrade') {
1809
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1810
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1811
+		} elseif ($message_type == 'claim_approved') {
1812
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1813
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1814
+		} elseif ($message_type == 'claim_rejected') {
1815
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1816
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1817
+		} elseif ($message_type == 'claim_requested') {
1818
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1819
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1820
+		} elseif ($message_type == 'auto_claim') {
1821
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1822
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1823
+		} elseif ($message_type == 'payment_success') {
1824
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1825
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1826
+		} elseif ($message_type == 'payment_fail') {
1827
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1828
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1829 1829
 		}
1830 1830
 		$transaction_details = $custom_1;
1831
-		$fromEmail           = get_option( 'site_email' );
1831
+		$fromEmail           = get_option('site_email');
1832 1832
 		$fromEmailName       = get_site_emailName();
1833 1833
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1834
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1834
+		$pkg_limit            = get_property_price_info_listing($page_id);
1835 1835
 		$alivedays            = $pkg_limit['days'];
1836
-		$productlink          = get_permalink( $page_id );
1837
-		$post_info            = get_post( $page_id );
1838
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1839
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1836
+		$productlink          = get_permalink($page_id);
1837
+		$post_info            = get_post($page_id);
1838
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1839
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1840 1840
 		$loginurl             = geodir_login_url();
1841
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1841
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1842 1842
 		$siteurl              = home_url();
1843
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1844
-		$user_info            = get_userdata( $user_id );
1843
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1844
+		$user_info            = get_userdata($user_id);
1845 1845
 		$user_email           = $user_info->user_email;
1846
-		$display_name         = geodir_get_client_name( $user_id );
1846
+		$display_name         = geodir_get_client_name($user_id);
1847 1847
 		$user_login           = $user_info->user_login;
1848
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1849
-		if ( $number_of_grace_days == '' ) {
1848
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1849
+		if ($number_of_grace_days == '') {
1850 1850
 			$number_of_grace_days = 1;
1851 1851
 		}
1852
-		if ( $post_info->post_type == 'event' ) {
1852
+		if ($post_info->post_type == 'event') {
1853 1853
 			$post_type = 'event';
1854 1854
 		} else {
1855 1855
 			$post_type = 'listing';
1856 1856
 		}
1857
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1857
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1858 1858
 		$search_array   = array(
1859 1859
 			'[#client_name#]',
1860 1860
 			'[#listing_link#]',
@@ -1870,7 +1870,7 @@  discard block
 block discarded – undo
1870 1870
 			'[#site_name#]',
1871 1871
 			'[#transaction_details#]'
1872 1872
 		);
1873
-		$replace_array  = array(
1873
+		$replace_array = array(
1874 1874
 			$display_name,
1875 1875
 			$listingLink,
1876 1876
 			$post_date,
@@ -1885,13 +1885,13 @@  discard block
 block discarded – undo
1885 1885
 			$fromEmailName,
1886 1886
 			$transaction_details
1887 1887
 		);
1888
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1889
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1888
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1889
+		$subject        = str_replace($search_array, $replace_array, $subject);
1890 1890
 		
1891 1891
 		
1892
-		$headers  = array();
1892
+		$headers = array();
1893 1893
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1894
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1894
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1895 1895
 
1896 1896
 		$to      = $fromEmail;
1897 1897
 		$message = $client_message;
@@ -1909,7 +1909,7 @@  discard block
 block discarded – undo
1909 1909
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1910 1910
 		 * @param string $custom_1     Custom data to be sent.
1911 1911
 		 */
1912
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1912
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1913 1913
 		/**
1914 1914
 		 * Filter the admin email subject.
1915 1915
 		 *
@@ -1922,7 +1922,7 @@  discard block
 block discarded – undo
1922 1922
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1923 1923
 		 * @param string $custom_1     Custom data to be sent.
1924 1924
 		 */
1925
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1925
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1926 1926
 		/**
1927 1927
 		 * Filter the admin email message.
1928 1928
 		 *
@@ -1935,7 +1935,7 @@  discard block
 block discarded – undo
1935 1935
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1936 1936
 		 * @param string $custom_1     Custom data to be sent.
1937 1937
 		 */
1938
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1938
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1939 1939
 		/**
1940 1940
 		 * Filter the admin email headers.
1941 1941
 		 *
@@ -1948,22 +1948,22 @@  discard block
 block discarded – undo
1948 1948
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1949 1949
 		 * @param string $custom_1     Custom data to be sent.
1950 1950
 		 */
1951
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1951
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1952 1952
 
1953 1953
 
1954
-		$sent = wp_mail( $to, $subject, $message, $headers );
1955
-		if ( ! $sent ) {
1956
-			if ( is_array( $to ) ) {
1957
-				$to = implode( ',', $to );
1954
+		$sent = wp_mail($to, $subject, $message, $headers);
1955
+		if (!$sent) {
1956
+			if (is_array($to)) {
1957
+				$to = implode(',', $to);
1958 1958
 			}
1959 1959
 			$log_message = sprintf(
1960
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1960
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1961 1961
 				$message_type,
1962
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1962
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1963 1963
 				$to,
1964 1964
 				$subject
1965 1965
 			);
1966
-			geodir_error_log( $log_message );
1966
+			geodir_error_log($log_message);
1967 1967
 		}
1968 1968
 	}
1969 1969
 }
@@ -1983,12 +1983,12 @@  discard block
 block discarded – undo
1983 1983
  *
1984 1984
  * @return array Category IDs.
1985 1985
  */
1986
-function gd_lang_object_ids( $ids_array, $type ) {
1987
-	if ( function_exists( 'icl_object_id' ) ) {
1986
+function gd_lang_object_ids($ids_array, $type) {
1987
+	if (function_exists('icl_object_id')) {
1988 1988
 		$res = array();
1989
-		foreach ( $ids_array as $id ) {
1990
-			$xlat = icl_object_id( $id, $type, false );
1991
-			if ( ! is_null( $xlat ) ) {
1989
+		foreach ($ids_array as $id) {
1990
+			$xlat = icl_object_id($id, $type, false);
1991
+			if (!is_null($xlat)) {
1992 1992
 				$res[] = $xlat;
1993 1993
 			}
1994 1994
 		}
@@ -2012,20 +2012,20 @@  discard block
 block discarded – undo
2012 2012
  *
2013 2013
  * @return array Modified Body CSS classes.
2014 2014
  */
2015
-function geodir_custom_posts_body_class( $classes ) {
2015
+function geodir_custom_posts_body_class($classes) {
2016 2016
 	global $wpdb, $wp;
2017
-	$post_types = geodir_get_posttypes( 'object' );
2018
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2017
+	$post_types = geodir_get_posttypes('object');
2018
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2019 2019
 		$classes[] = 'geodir_custom_posts';
2020 2020
 	}
2021 2021
 
2022 2022
 	// fix body class for signup page
2023
-	if ( geodir_is_page( 'login' ) ) {
2023
+	if (geodir_is_page('login')) {
2024 2024
 		$new_classes   = array();
2025 2025
 		$new_classes[] = 'signup page-geodir-signup';
2026
-		if ( ! empty( $classes ) ) {
2027
-			foreach ( $classes as $class ) {
2028
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2026
+		if (!empty($classes)) {
2027
+			foreach ($classes as $class) {
2028
+				if ($class && $class != 'home' && $class != 'blog') {
2029 2029
 					$new_classes[] = $class;
2030 2030
 				}
2031 2031
 			}
@@ -2033,14 +2033,14 @@  discard block
 block discarded – undo
2033 2033
 		$classes = $new_classes;
2034 2034
 	}
2035 2035
 
2036
-	if ( geodir_is_geodir_page() ) {
2036
+	if (geodir_is_geodir_page()) {
2037 2037
 		$classes[] = 'geodir-page';
2038 2038
 	}
2039 2039
 
2040 2040
 	return $classes;
2041 2041
 }
2042 2042
 
2043
-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
2043
+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
2044 2044
 
2045 2045
 
2046 2046
 /**
@@ -2056,7 +2056,7 @@  discard block
 block discarded – undo
2056 2056
 	 *
2057 2057
 	 * @since 1.0.0
2058 2058
 	 */
2059
-	return apply_filters( 'geodir_map_zoom_level', array(
2059
+	return apply_filters('geodir_map_zoom_level', array(
2060 2060
 		1,
2061 2061
 		2,
2062 2062
 		3,
@@ -2076,7 +2076,7 @@  discard block
 block discarded – undo
2076 2076
 		17,
2077 2077
 		18,
2078 2078
 		19
2079
-	) );
2079
+	));
2080 2080
 
2081 2081
 }
2082 2082
 
@@ -2089,12 +2089,12 @@  discard block
 block discarded – undo
2089 2089
  *
2090 2090
  * @param string $geodir_option_name Option key.
2091 2091
  */
2092
-function geodir_option_version_backup( $geodir_option_name ) {
2092
+function geodir_option_version_backup($geodir_option_name) {
2093 2093
 	$version_date  = time();
2094
-	$geodir_option = get_option( $geodir_option_name );
2094
+	$geodir_option = get_option($geodir_option_name);
2095 2095
 
2096
-	if ( ! empty( $geodir_option ) ) {
2097
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2096
+	if (!empty($geodir_option)) {
2097
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2098 2098
 	}
2099 2099
 }
2100 2100
 
@@ -2108,10 +2108,10 @@  discard block
 block discarded – undo
2108 2108
  *
2109 2109
  * @return int Page ID.
2110 2110
  */
2111
-function get_page_id_geodir_add_listing_page( $page_id ) {
2112
-	if ( geodir_wpml_multilingual_status() ) {
2111
+function get_page_id_geodir_add_listing_page($page_id) {
2112
+	if (geodir_wpml_multilingual_status()) {
2113 2113
 		$post_type = 'post_page';
2114
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2114
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2115 2115
 	}
2116 2116
 
2117 2117
 	return $page_id;
@@ -2125,7 +2125,7 @@  discard block
 block discarded – undo
2125 2125
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2126 2126
  */
2127 2127
 function geodir_wpml_multilingual_status() {
2128
-	if ( function_exists( 'icl_object_id' ) ) {
2128
+	if (function_exists('icl_object_id')) {
2129 2129
 		return true;
2130 2130
 	}
2131 2131
 
@@ -2143,19 +2143,19 @@  discard block
 block discarded – undo
2143 2143
  *
2144 2144
  * @return int Element ID when exists. Else the page id.
2145 2145
  */
2146
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2146
+function geodir_get_wpml_element_id($page_id, $post_type) {
2147 2147
 	global $sitepress;
2148
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2149
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2148
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2149
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2150 2150
 
2151
-		if ( $trid > 0 ) {
2152
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2151
+		if ($trid > 0) {
2152
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2153 2153
 
2154 2154
 			$lang = $sitepress->get_current_language();
2155 2155
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2156 2156
 
2157
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2158
-				$page_id = $translations[ $lang ]->element_id;
2157
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2158
+				$page_id = $translations[$lang]->element_id;
2159 2159
 			}
2160 2160
 		}
2161 2161
 	}
@@ -2172,15 +2172,15 @@  discard block
 block discarded – undo
2172 2172
  */
2173 2173
 function geodir_wpml_check_element_id() {
2174 2174
 	global $sitepress;
2175
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2175
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2176 2176
 		$el_type      = 'post_page';
2177
-		$el_id        = get_option( 'geodir_add_listing_page' );
2177
+		$el_id        = get_option('geodir_add_listing_page');
2178 2178
 		$default_lang = $sitepress->get_default_language();
2179
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2179
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2180 2180
 
2181
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2182
-			if ( ! $el_details->source_language_code ) {
2183
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2181
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2182
+			if (!$el_details->source_language_code) {
2183
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2184 2184
 				$sitepress->icl_translations_cache->clear();
2185 2185
 			}
2186 2186
 		}
@@ -2199,41 +2199,41 @@  discard block
 block discarded – undo
2199 2199
  *
2200 2200
  * @return string Orderby SQL.
2201 2201
  */
2202
-function geodir_widget_listings_get_order( $query_args ) {
2202
+function geodir_widget_listings_get_order($query_args) {
2203 2203
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2204 2204
 
2205 2205
 	$query_args = $gd_query_args_widgets;
2206
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2207
-		return $wpdb->posts . ".post_date DESC, ";
2206
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2207
+		return $wpdb->posts.".post_date DESC, ";
2208 2208
 	}
2209 2209
 
2210
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2211
-	$table     = $plugin_prefix . $post_type . '_detail';
2210
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2211
+	$table     = $plugin_prefix.$post_type.'_detail';
2212 2212
 
2213
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2213
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2214 2214
 
2215
-	switch ( $sort_by ) {
2215
+	switch ($sort_by) {
2216 2216
 		case 'latest':
2217 2217
 		case 'newest':
2218
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2218
+			$orderby = $wpdb->posts.".post_date DESC, ";
2219 2219
 			break;
2220 2220
 		case 'featured':
2221
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2221
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2222 2222
 			break;
2223 2223
 		case 'az':
2224
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2224
+			$orderby = $wpdb->posts.".post_title ASC, ";
2225 2225
 			break;
2226 2226
 		case 'high_review':
2227
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2227
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2228 2228
 			break;
2229 2229
 		case 'high_rating':
2230
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2230
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2231 2231
 			break;
2232 2232
 		case 'random':
2233 2233
 			$orderby = "RAND(), ";
2234 2234
 			break;
2235 2235
 		default:
2236
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2236
+			$orderby = $wpdb->posts.".post_title ASC, ";
2237 2237
 			break;
2238 2238
 	}
2239 2239
 
@@ -2256,15 +2256,15 @@  discard block
 block discarded – undo
2256 2256
  *
2257 2257
  * @return mixed Result object.
2258 2258
  */
2259
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2259
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2260 2260
 	global $wpdb, $plugin_prefix, $table_prefix;
2261 2261
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2262 2262
 	$gd_query_args_widgets            = $query_args;
2263 2263
 
2264
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2265
-	$table     = $plugin_prefix . $post_type . '_detail';
2264
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2265
+	$table     = $plugin_prefix.$post_type.'_detail';
2266 2266
 
2267
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2267
+	$fields = $wpdb->posts.".*, ".$table.".*";
2268 2268
 	/**
2269 2269
 	 * Filter widget listing fields string part that is being used for query.
2270 2270
 	 *
@@ -2274,17 +2274,17 @@  discard block
 block discarded – undo
2274 2274
 	 * @param string $table     Table name.
2275 2275
 	 * @param string $post_type Post type.
2276 2276
 	 */
2277
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2277
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2278 2278
 
2279
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2279
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2280 2280
 
2281 2281
 	########### WPML ###########
2282 2282
 
2283
-	if ( function_exists( 'icl_object_id' ) ) {
2283
+	if (function_exists('icl_object_id')) {
2284 2284
 		global $sitepress;
2285 2285
 		$lang_code = ICL_LANGUAGE_CODE;
2286
-		if ( $lang_code ) {
2287
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2286
+		if ($lang_code) {
2287
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2288 2288
 		}
2289 2289
 	}
2290 2290
 
@@ -2298,15 +2298,15 @@  discard block
 block discarded – undo
2298 2298
 	 * @param string $join      Join clause string.
2299 2299
 	 * @param string $post_type Post type.
2300 2300
 	 */
2301
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2301
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2302 2302
 
2303
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2303
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2304 2304
 
2305
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2305
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2306 2306
 
2307 2307
 	########### WPML ###########
2308
-	if ( function_exists( 'icl_object_id' ) ) {
2309
-		if ( $lang_code ) {
2308
+	if (function_exists('icl_object_id')) {
2309
+		if ($lang_code) {
2310 2310
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2311 2311
 		}
2312 2312
 	}
@@ -2319,8 +2319,8 @@  discard block
 block discarded – undo
2319 2319
 	 * @param string $where     Where clause string.
2320 2320
 	 * @param string $post_type Post type.
2321 2321
 	 */
2322
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2323
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2322
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2323
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2324 2324
 
2325 2325
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster withotu
2326 2326
 	/**
@@ -2331,15 +2331,15 @@  discard block
 block discarded – undo
2331 2331
 	 * @param string $groupby   Group by clause string.
2332 2332
 	 * @param string $post_type Post type.
2333 2333
 	 */
2334
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2334
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2335 2335
 
2336
-	if ( $count_only ) {
2337
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2338
-			" . $join . "
2336
+	if ($count_only) {
2337
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2338
+			" . $join."
2339 2339
 			" . $where;
2340
-		$rows = (int) $wpdb->get_var( $sql );
2340
+		$rows = (int) $wpdb->get_var($sql);
2341 2341
 	} else {
2342
-		$orderby = geodir_widget_listings_get_order( $query_args );
2342
+		$orderby = geodir_widget_listings_get_order($query_args);
2343 2343
 		/**
2344 2344
 		 * Filter widget listing orderby clause string part that is being used for query.
2345 2345
 		 *
@@ -2349,11 +2349,11 @@  discard block
 block discarded – undo
2349 2349
 		 * @param string $table     Table name.
2350 2350
 		 * @param string $post_type Post type.
2351 2351
 		 */
2352
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2353
-		$orderby .= $wpdb->posts . ".post_title ASC";
2354
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2352
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2353
+		$orderby .= $wpdb->posts.".post_title ASC";
2354
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2355 2355
 
2356
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2356
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2357 2357
 		/**
2358 2358
 		 * Filter widget listing limit that is being used for query.
2359 2359
 		 *
@@ -2362,27 +2362,27 @@  discard block
 block discarded – undo
2362 2362
 		 * @param int $limit        Query results limit.
2363 2363
 		 * @param string $post_type Post type.
2364 2364
 		 */
2365
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2365
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2366 2366
 
2367
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2368
-		if ( ! $page ) {
2367
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2368
+		if (!$page) {
2369 2369
 			$page = 1;
2370 2370
 		}
2371 2371
 
2372
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2372
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2373 2373
 
2374 2374
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2375
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2376
-			" . $join . "
2377
-			" . $where . "
2378
-			" . $groupby . "
2379
-			" . $orderby . "
2375
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2376
+			" . $join."
2377
+			" . $where."
2378
+			" . $groupby."
2379
+			" . $orderby."
2380 2380
 			" . $limit;
2381
-		$rows = $wpdb->get_results( $sql );
2381
+		$rows = $wpdb->get_results($sql);
2382 2382
 	}
2383 2383
 
2384
-	unset( $GLOBALS['gd_query_args_widgets'] );
2385
-	unset( $gd_query_args_widgets );
2384
+	unset($GLOBALS['gd_query_args_widgets']);
2385
+	unset($gd_query_args_widgets);
2386 2386
 
2387 2387
 	return $rows;
2388 2388
 }
@@ -2399,11 +2399,11 @@  discard block
 block discarded – undo
2399 2399
  *
2400 2400
  * @return string Modified fields SQL.
2401 2401
  */
2402
-function geodir_function_widget_listings_fields( $fields ) {
2402
+function geodir_function_widget_listings_fields($fields) {
2403 2403
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2404 2404
 
2405 2405
 	$query_args = $gd_query_args_widgets;
2406
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2406
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2407 2407
 		return $fields;
2408 2408
 	}
2409 2409
 
@@ -2422,24 +2422,24 @@  discard block
 block discarded – undo
2422 2422
  *
2423 2423
  * @return string Modified join clause SQL.
2424 2424
  */
2425
-function geodir_function_widget_listings_join( $join ) {
2425
+function geodir_function_widget_listings_join($join) {
2426 2426
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2427 2427
 
2428 2428
 	$query_args = $gd_query_args_widgets;
2429
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2429
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2430 2430
 		return $join;
2431 2431
 	}
2432 2432
 
2433
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2434
-	$table     = $plugin_prefix . $post_type . '_detail';
2433
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2434
+	$table     = $plugin_prefix.$post_type.'_detail';
2435 2435
 
2436
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2437
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2436
+	if (!empty($query_args['with_pics_only'])) {
2437
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2438 2438
 	}
2439 2439
 
2440
-	if ( ! empty( $query_args['tax_query'] ) ) {
2441
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2442
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2440
+	if (!empty($query_args['tax_query'])) {
2441
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2442
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2443 2443
 			$join .= $tax_queries['join'];
2444 2444
 		}
2445 2445
 	}
@@ -2459,49 +2459,49 @@  discard block
 block discarded – undo
2459 2459
  *
2460 2460
  * @return string Modified where clause SQL.
2461 2461
  */
2462
-function geodir_function_widget_listings_where( $where ) {
2462
+function geodir_function_widget_listings_where($where) {
2463 2463
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2464 2464
 
2465 2465
 	$query_args = $gd_query_args_widgets;
2466
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2466
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2467 2467
 		return $where;
2468 2468
 	}
2469
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2470
-	$table     = $plugin_prefix . $post_type . '_detail';
2469
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2470
+	$table     = $plugin_prefix.$post_type.'_detail';
2471 2471
 
2472
-	if ( ! empty( $query_args ) ) {
2473
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2474
-			$where = geodir_default_location_where( $where, $table );
2472
+	if (!empty($query_args)) {
2473
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2474
+			$where = geodir_default_location_where($where, $table);
2475 2475
 		}
2476 2476
 
2477
-		if ( ! empty( $query_args['post_author'] ) ) {
2478
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2477
+		if (!empty($query_args['post_author'])) {
2478
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2479 2479
 		}
2480 2480
 
2481
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2482
-			$where .= " AND " . $table . ".is_featured = '1'";
2481
+		if (!empty($query_args['show_featured_only'])) {
2482
+			$where .= " AND ".$table.".is_featured = '1'";
2483 2483
 		}
2484 2484
 
2485
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2486
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2485
+		if (!empty($query_args['show_special_only'])) {
2486
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2487 2487
 		}
2488 2488
 
2489
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2490
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2489
+		if (!empty($query_args['with_pics_only'])) {
2490
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2491 2491
 		}
2492 2492
 
2493
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2494
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2493
+		if (!empty($query_args['featured_image_only'])) {
2494
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2495 2495
 		}
2496 2496
 
2497
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2498
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2497
+		if (!empty($query_args['with_videos_only'])) {
2498
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2499 2499
 		}
2500 2500
 
2501
-		if ( ! empty( $query_args['tax_query'] ) ) {
2502
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2501
+		if (!empty($query_args['tax_query'])) {
2502
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2503 2503
 
2504
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2504
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2505 2505
 				$where .= $tax_queries['where'];
2506 2506
 			}
2507 2507
 		}
@@ -2522,11 +2522,11 @@  discard block
 block discarded – undo
2522 2522
  *
2523 2523
  * @return string Modified orderby clause SQL.
2524 2524
  */
2525
-function geodir_function_widget_listings_orderby( $orderby ) {
2525
+function geodir_function_widget_listings_orderby($orderby) {
2526 2526
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2527 2527
 
2528 2528
 	$query_args = $gd_query_args_widgets;
2529
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2529
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2530 2530
 		return $orderby;
2531 2531
 	}
2532 2532
 
@@ -2545,15 +2545,15 @@  discard block
 block discarded – undo
2545 2545
  *
2546 2546
  * @return int Query limit.
2547 2547
  */
2548
-function geodir_function_widget_listings_limit( $limit ) {
2548
+function geodir_function_widget_listings_limit($limit) {
2549 2549
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2550 2550
 
2551 2551
 	$query_args = $gd_query_args_widgets;
2552
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2552
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2553 2553
 		return $limit;
2554 2554
 	}
2555 2555
 
2556
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2556
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2557 2557
 		$limit = (int) $query_args['posts_per_page'];
2558 2558
 	}
2559 2559
 
@@ -2571,12 +2571,12 @@  discard block
 block discarded – undo
2571 2571
  *
2572 2572
  * @return int Large size width.
2573 2573
  */
2574
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2575
-	$large_size_w = get_option( 'large_size_w' );
2574
+function geodir_media_image_large_width($default = 800, $params = '') {
2575
+	$large_size_w = get_option('large_size_w');
2576 2576
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2577
-	$large_size_w = absint( $large_size_w );
2577
+	$large_size_w = absint($large_size_w);
2578 2578
 
2579
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2579
+	if (!get_option('geodir_use_wp_media_large_size')) {
2580 2580
 		$large_size_w = 800;
2581 2581
 	}
2582 2582
 
@@ -2589,7 +2589,7 @@  discard block
 block discarded – undo
2589 2589
 	 * @param int $default         Default width.
2590 2590
 	 * @param string|array $params Image parameters.
2591 2591
 	 */
2592
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2592
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2593 2593
 
2594 2594
 	return $large_size_w;
2595 2595
 }
@@ -2605,12 +2605,12 @@  discard block
 block discarded – undo
2605 2605
  *
2606 2606
  * @return int Large size height.
2607 2607
  */
2608
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2609
-	$large_size_h = get_option( 'large_size_h' );
2608
+function geodir_media_image_large_height($default = 800, $params = '') {
2609
+	$large_size_h = get_option('large_size_h');
2610 2610
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2611
-	$large_size_h = absint( $large_size_h );
2611
+	$large_size_h = absint($large_size_h);
2612 2612
 
2613
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2613
+	if (!get_option('geodir_use_wp_media_large_size')) {
2614 2614
 		$large_size_h = 800;
2615 2615
 	}
2616 2616
 
@@ -2623,7 +2623,7 @@  discard block
 block discarded – undo
2623 2623
 	 * @param int $default         Default height.
2624 2624
 	 * @param string|array $params Image parameters.
2625 2625
 	 */
2626
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2626
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2627 2627
 
2628 2628
 	return $large_size_h;
2629 2629
 }
@@ -2640,8 +2640,8 @@  discard block
 block discarded – undo
2640 2640
  *
2641 2641
  * @return string Sanitized name.
2642 2642
  */
2643
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2644
-	if ( $name == '' ) {
2643
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2644
+	if ($name == '') {
2645 2645
 		return null;
2646 2646
 	}
2647 2647
 
@@ -2650,13 +2650,13 @@  discard block
 block discarded – undo
2650 2650
 	$type = $type == 'gd_city' ? 'city' : $type;
2651 2651
 
2652 2652
 	$return = $name;
2653
-	if ( function_exists( 'get_actual_location_name' ) ) {
2654
-		$return = get_actual_location_name( $type, $name, $translate );
2653
+	if (function_exists('get_actual_location_name')) {
2654
+		$return = get_actual_location_name($type, $name, $translate);
2655 2655
 	} else {
2656
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2657
-		$return = preg_replace( '/[_-]/', ' ', $return );
2658
-		$return = geodir_ucwords( $return );
2659
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2656
+		$return = preg_replace('/-(\d+)$/', '', $return);
2657
+		$return = preg_replace('/[_-]/', ' ', $return);
2658
+		$return = geodir_ucwords($return);
2659
+		$return = $translate ? __($return, 'geodirectory') : $return;
2660 2660
 	}
2661 2661
 
2662 2662
 	return $return;
@@ -2671,14 +2671,14 @@  discard block
 block discarded – undo
2671 2671
  *
2672 2672
  * @param int $number Comments number.
2673 2673
  */
2674
-function geodir_comments_number( $number ) {
2674
+function geodir_comments_number($number) {
2675 2675
 
2676
-	if ( $number > 1 ) {
2677
-		$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2678
-	} elseif ( $number == 0 || $number == '' ) {
2679
-		$output = __( 'No Reviews', 'geodirectory' );
2676
+	if ($number > 1) {
2677
+		$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2678
+	} elseif ($number == 0 || $number == '') {
2679
+		$output = __('No Reviews', 'geodirectory');
2680 2680
 	} else { // must be one
2681
-		$output = __( '1 Review', 'geodirectory' );
2681
+		$output = __('1 Review', 'geodirectory');
2682 2682
 	}
2683 2683
 	echo $output;
2684 2684
 }
@@ -2693,18 +2693,18 @@  discard block
 block discarded – undo
2693 2693
  */
2694 2694
 function is_page_geodir_home() {
2695 2695
 	global $wpdb;
2696
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2697
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2698
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2696
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2697
+	if (function_exists('geodir_location_geo_home_link')) {
2698
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2699 2699
 	}
2700
-	$home_url = home_url( '', 'http' );
2701
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2702
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2700
+	$home_url = home_url('', 'http');
2701
+	if (function_exists('geodir_location_geo_home_link')) {
2702
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2703 2703
 	}
2704
-	$home_url = str_replace( "www.", "", $home_url );
2705
-	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' ) ) ) {
2704
+	$home_url = str_replace("www.", "", $home_url);
2705
+	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'))) {
2706 2706
 		return true;
2707
-	} 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' ) ) {
2707
+	} 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')) {
2708 2708
 		return true;
2709 2709
 	} else {
2710 2710
 		return false;
@@ -2724,18 +2724,18 @@  discard block
 block discarded – undo
2724 2724
  *
2725 2725
  * @return string The canonical URL.
2726 2726
  */
2727
-function geodir_wpseo_homepage_canonical( $url ) {
2727
+function geodir_wpseo_homepage_canonical($url) {
2728 2728
 	global $post;
2729 2729
 
2730
-	if ( is_page_geodir_home() ) {
2730
+	if (is_page_geodir_home()) {
2731 2731
 		return home_url();
2732 2732
 	}
2733 2733
 
2734 2734
 	return $url;
2735 2735
 }
2736 2736
 
2737
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2738
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2737
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2738
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2739 2739
 
2740 2740
 /**
2741 2741
  * Add extra fields to google maps script call.
@@ -2748,20 +2748,20 @@  discard block
 block discarded – undo
2748 2748
  *
2749 2749
  * @return string Modified extra string.
2750 2750
  */
2751
-function geodir_googlemap_script_extra_details_page( $extra ) {
2751
+function geodir_googlemap_script_extra_details_page($extra) {
2752 2752
 	global $post;
2753 2753
 	$add_google_places_api = false;
2754
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2754
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2755 2755
 		$add_google_places_api = true;
2756 2756
 	}
2757
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2757
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2758 2758
 		$extra .= "&amp;libraries=places";
2759 2759
 	}
2760 2760
 
2761 2761
 	return $extra;
2762 2762
 }
2763 2763
 
2764
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2764
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2765 2765
 
2766 2766
 
2767 2767
 /**
@@ -2779,104 +2779,104 @@  discard block
 block discarded – undo
2779 2779
  *                                          after_widget.
2780 2780
  * @param array|string $instance            The settings for the particular instance of the widget.
2781 2781
  */
2782
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2782
+function geodir_popular_post_category_output($args = '', $instance = '') {
2783 2783
 	// prints the widget
2784 2784
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2785
-	extract( $args, EXTR_SKIP );
2785
+	extract($args, EXTR_SKIP);
2786 2786
 
2787 2787
 	echo $before_widget;
2788 2788
 
2789 2789
 	/** This filter is documented in geodirectory_widgets.php */
2790
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2790
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2791 2791
 
2792 2792
 	$gd_post_type = geodir_get_current_posttype();
2793 2793
 
2794
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2794
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2795 2795
 	if (!isset($category_restrict)) {
2796 2796
 		$category_restrict = false;
2797 2797
 	}
2798
-	if ( ! empty( $gd_post_type ) ) {
2798
+	if (!empty($gd_post_type)) {
2799 2799
 		$default_post_type = $gd_post_type;
2800
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2800
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2801 2801
 		$default_post_type = $instance['default_post_type'];
2802 2802
 	} else {
2803 2803
 		$all_gd_post_type  = geodir_get_posttypes();
2804
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2804
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2805 2805
 	}
2806
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2806
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2807 2807
 
2808 2808
 	$taxonomy = array();
2809
-	if ( ! empty( $gd_post_type ) ) {
2810
-		$taxonomy[] = $gd_post_type . "category";
2809
+	if (!empty($gd_post_type)) {
2810
+		$taxonomy[] = $gd_post_type."category";
2811 2811
 	} else {
2812
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2812
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2813 2813
 	}
2814 2814
 
2815 2815
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2816 2816
 
2817
-	$term_args = array( 'taxonomy' => $taxonomy );
2818
-	if ( $parent_only ) {
2817
+	$term_args = array('taxonomy' => $taxonomy);
2818
+	if ($parent_only) {
2819 2819
 		$term_args['parent'] = 0;
2820 2820
 	}
2821 2821
 
2822
-	$terms   = get_terms( $term_args );
2822
+	$terms   = get_terms($term_args);
2823 2823
 	$a_terms = array();
2824 2824
 	$b_terms = array();
2825 2825
 
2826
-	foreach ( $terms as $term ) {
2827
-		if ( $term->count > 0 ) {
2828
-			$a_terms[ $term->taxonomy ][] = $term;
2826
+	foreach ($terms as $term) {
2827
+		if ($term->count > 0) {
2828
+			$a_terms[$term->taxonomy][] = $term;
2829 2829
 		}
2830 2830
 	}
2831 2831
 
2832
-	if ( ! empty( $a_terms ) ) {
2833
-		foreach ( $a_terms as $b_key => $b_val ) {
2834
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2832
+	if (!empty($a_terms)) {
2833
+		foreach ($a_terms as $b_key => $b_val) {
2834
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2835 2835
 		}
2836 2836
 
2837
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2837
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2838 2838
 
2839 2839
 		$tax_change_output = '';
2840
-		if ( count( $b_terms ) > 1 ) {
2841
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2842
-			foreach ( $b_terms as $key => $val ) {
2843
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2844
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2845
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2840
+		if (count($b_terms) > 1) {
2841
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2842
+			foreach ($b_terms as $key => $val) {
2843
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2844
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2845
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2846 2846
 			}
2847 2847
 			$tax_change_output .= "</select>";
2848 2848
 		}
2849 2849
 
2850
-		if ( ! empty( $b_terms ) ) {
2851
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2852
-			global $cat_count;//make global so we can change via function
2850
+		if (!empty($b_terms)) {
2851
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2852
+			global $cat_count; //make global so we can change via function
2853 2853
 			$cat_count = 0;
2854 2854
 			?>
2855 2855
 			<div class="geodir-category-list-in clearfix">
2856 2856
 				<div class="geodir-cat-list clearfix">
2857 2857
 					<?php
2858
-					echo $before_title . __( $title ) . $after_title;
2858
+					echo $before_title.__($title).$after_title;
2859 2859
 
2860 2860
 					echo $tax_change_output;
2861 2861
 
2862 2862
 					echo '<ul class="geodir-popular-cat-list">';
2863 2863
 
2864
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2864
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2865 2865
 
2866 2866
 					echo '</ul>';
2867 2867
 					?>
2868 2868
 				</div>
2869 2869
 				<?php
2870 2870
 				$hide = '';
2871
-				if ( $cat_count < $category_limit ) {
2871
+				if ($cat_count < $category_limit) {
2872 2872
 					$hide = 'style="display:none;"';
2873 2873
 				}
2874 2874
 				echo "<div class='geodir-cat-list-more' $hide >";
2875
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2876
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2875
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2876
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2877 2877
 				echo "</div>";
2878 2878
 				/* add scripts */
2879
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2879
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2880 2880
 				?>
2881 2881
 			</div>
2882 2882
 			<?php
@@ -2896,28 +2896,28 @@  discard block
 block discarded – undo
2896 2896
  * @param int $category_limit               Number of categories to display by default.
2897 2897
  * @param bool $category_restrict           If the cat limit shoudl be hidden or not shown.
2898 2898
  */
2899
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2899
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2900 2900
 	global $geodir_post_category_str, $cat_count;
2901 2901
 	$term_icons = geodir_get_term_icon();
2902 2902
 
2903 2903
 	$geodir_post_category_str = array();
2904 2904
 
2905 2905
 
2906
-	foreach ( $terms as $cat ) {
2907
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2908
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2906
+	foreach ($terms as $cat) {
2907
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2908
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2909 2909
 
2910
-		$cat_count ++;
2910
+		$cat_count++;
2911 2911
 
2912
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
2912
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2913 2913
 
2914
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2915
-		if($category_restrict && $cat_count > $category_limit ){
2914
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2915
+		if ($category_restrict && $cat_count > $category_limit) {
2916 2916
 			continue;
2917 2917
 		}
2918 2918
 		$total_post = $cat->count;
2919 2919
 
2920
-		$term_link = get_term_link( $cat, $cat->taxonomy );
2920
+		$term_link = get_term_link($cat, $cat->taxonomy);
2921 2921
 		/**
2922 2922
 		 * Filer the category term link.
2923 2923
 		 *
@@ -2927,11 +2927,11 @@  discard block
 block discarded – undo
2927 2927
 		 * @param int $cat          ->term_id The term id.
2928 2928
 		 * @param string $post_type Wordpress post type.
2929 2929
 		 */
2930
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2930
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
2931 2931
 
2932
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2933
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
2934
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2932
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
2933
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
2934
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
2935 2935
 		echo '</a></li>';
2936 2936
 	}
2937 2937
 }
@@ -2946,14 +2946,14 @@  discard block
 block discarded – undo
2946 2946
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
2947 2947
  * @param array|string $instance The settings for the particular instance of the widget.
2948 2948
  */
2949
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
2949
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
2950 2950
 	// prints the widget
2951
-	extract( $args, EXTR_SKIP );
2951
+	extract($args, EXTR_SKIP);
2952 2952
 
2953 2953
 	echo $before_widget;
2954 2954
 
2955 2955
 	/** This filter is documented in geodirectory_widgets.php */
2956
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2956
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2957 2957
 	/**
2958 2958
 	 * Filter the widget post type.
2959 2959
 	 *
@@ -2961,7 +2961,7 @@  discard block
 block discarded – undo
2961 2961
 	 *
2962 2962
 	 * @param string $instance ['post_type'] Post type of listing.
2963 2963
 	 */
2964
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
2964
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2965 2965
 	/**
2966 2966
 	 * Filter the widget's term.
2967 2967
 	 *
@@ -2969,7 +2969,7 @@  discard block
 block discarded – undo
2969 2969
 	 *
2970 2970
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
2971 2971
 	 */
2972
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
2972
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
2973 2973
 	/**
2974 2974
 	 * Filter widget's "add_location_filter" value.
2975 2975
 	 *
@@ -2977,7 +2977,7 @@  discard block
 block discarded – undo
2977 2977
 	 *
2978 2978
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
2979 2979
 	 */
2980
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
2980
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
2981 2981
 	/**
2982 2982
 	 * Filter the widget listings limit.
2983 2983
 	 *
@@ -2985,7 +2985,7 @@  discard block
 block discarded – undo
2985 2985
 	 *
2986 2986
 	 * @param string $instance ['post_number'] Number of listings to display.
2987 2987
 	 */
2988
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
2988
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
2989 2989
 	/**
2990 2990
 	 * Filter the widget listings limit shown at one time.
2991 2991
 	 *
@@ -2993,7 +2993,7 @@  discard block
 block discarded – undo
2993 2993
 	 *
2994 2994
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
2995 2995
 	 */
2996
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
2996
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
2997 2997
 	/**
2998 2998
 	 * Filter the widget slide width.
2999 2999
 	 *
@@ -3001,7 +3001,7 @@  discard block
 block discarded – undo
3001 3001
 	 *
3002 3002
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3003 3003
 	 */
3004
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3004
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3005 3005
 	/**
3006 3006
 	 * Filter widget's "show title" value.
3007 3007
 	 *
@@ -3009,7 +3009,7 @@  discard block
 block discarded – undo
3009 3009
 	 *
3010 3010
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3011 3011
 	 */
3012
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3012
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3013 3013
 	/**
3014 3014
 	 * Filter widget's "slideshow" value.
3015 3015
 	 *
@@ -3017,7 +3017,7 @@  discard block
 block discarded – undo
3017 3017
 	 *
3018 3018
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3019 3019
 	 */
3020
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3020
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3021 3021
 	/**
3022 3022
 	 * Filter widget's "animationLoop" value.
3023 3023
 	 *
@@ -3025,7 +3025,7 @@  discard block
 block discarded – undo
3025 3025
 	 *
3026 3026
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3027 3027
 	 */
3028
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3028
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3029 3029
 	/**
3030 3030
 	 * Filter widget's "directionNav" value.
3031 3031
 	 *
@@ -3033,7 +3033,7 @@  discard block
 block discarded – undo
3033 3033
 	 *
3034 3034
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3035 3035
 	 */
3036
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3036
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3037 3037
 	/**
3038 3038
 	 * Filter widget's "slideshowSpeed" value.
3039 3039
 	 *
@@ -3041,7 +3041,7 @@  discard block
 block discarded – undo
3041 3041
 	 *
3042 3042
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3043 3043
 	 */
3044
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3044
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3045 3045
 	/**
3046 3046
 	 * Filter widget's "animationSpeed" value.
3047 3047
 	 *
@@ -3049,7 +3049,7 @@  discard block
 block discarded – undo
3049 3049
 	 *
3050 3050
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3051 3051
 	 */
3052
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3052
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3053 3053
 	/**
3054 3054
 	 * Filter widget's "animation" value.
3055 3055
 	 *
@@ -3057,7 +3057,7 @@  discard block
 block discarded – undo
3057 3057
 	 *
3058 3058
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3059 3059
 	 */
3060
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3060
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3061 3061
 	/**
3062 3062
 	 * Filter widget's "list_sort" type.
3063 3063
 	 *
@@ -3065,10 +3065,10 @@  discard block
 block discarded – undo
3065 3065
 	 *
3066 3066
 	 * @param string $instance ['list_sort'] Listing sort by type.
3067 3067
 	 */
3068
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3069
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3068
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3069
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3070 3070
 
3071
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3071
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3072 3072
 	?>
3073 3073
 	<script type="text/javascript">
3074 3074
 		jQuery(window).load(function () {
@@ -3086,23 +3086,23 @@  discard block
 block discarded – undo
3086 3086
 				itemWidth: 75,
3087 3087
 				itemMargin: 5,
3088 3088
 				asNavFor: '#geodir_widget_slider',
3089
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3089
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3090 3090
 			});
3091 3091
 
3092 3092
 			jQuery('#geodir_widget_slider').flexslider({
3093
-				animation: "<?php echo $animation;?>",
3093
+				animation: "<?php echo $animation; ?>",
3094 3094
 				selector: ".geodir-slides > li",
3095 3095
 				namespace: "geodir-",
3096 3096
 				controlNav: true,
3097
-				animationLoop: <?php echo $animationLoop;?>,
3098
-				slideshow: <?php echo $slideshow;?>,
3099
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3100
-				animationSpeed: <?php echo $animationSpeed;?>,
3101
-				directionNav: <?php echo $directionNav;?>,
3102
-				maxItems: <?php echo $max_show;?>,
3097
+				animationLoop: <?php echo $animationLoop; ?>,
3098
+				slideshow: <?php echo $slideshow; ?>,
3099
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3100
+				animationSpeed: <?php echo $animationSpeed; ?>,
3101
+				directionNav: <?php echo $directionNav; ?>,
3102
+				maxItems: <?php echo $max_show; ?>,
3103 3103
 				move: 1,
3104
-				<?php if ( $slide_width ) {
3105
-				echo "itemWidth: " . $slide_width . ",";
3104
+				<?php if ($slide_width) {
3105
+				echo "itemWidth: ".$slide_width.",";
3106 3106
 			}?>
3107 3107
 				sync: "#geodir_widget_carousel",
3108 3108
 				start: function (slider) {
@@ -3114,7 +3114,7 @@  discard block
 block discarded – undo
3114 3114
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3115 3115
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3116 3116
 				},
3117
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3117
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3118 3118
 			});
3119 3119
 		});
3120 3120
 	</script>
@@ -3127,62 +3127,62 @@  discard block
 block discarded – undo
3127 3127
 		'order_by'       => $list_sort
3128 3128
 	);
3129 3129
 
3130
-	if ( $show_featured_only ) {
3130
+	if ($show_featured_only) {
3131 3131
 		$query_args['show_featured_only'] = 1;
3132 3132
 	}
3133 3133
 
3134
-	if ( $category != 0 || $category != '' ) {
3135
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3134
+	if ($category != 0 || $category != '') {
3135
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3136 3136
 		$tax_query         = array(
3137 3137
 			'taxonomy' => $category_taxonomy[0],
3138 3138
 			'field'    => 'id',
3139 3139
 			'terms'    => $category
3140 3140
 		);
3141 3141
 
3142
-		$query_args['tax_query'] = array( $tax_query );
3142
+		$query_args['tax_query'] = array($tax_query);
3143 3143
 	}
3144 3144
 
3145 3145
 	// we want listings with featured image only
3146 3146
 	$query_args['featured_image_only'] = 1;
3147 3147
 
3148
-	if ( $post_type == 'gd_event' ) {
3148
+	if ($post_type == 'gd_event') {
3149 3149
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3150 3150
 	}// show only upcoming events
3151 3151
 
3152
-	$widget_listings = geodir_get_widget_listings( $query_args );
3153
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3154
-		if ( $title ) {
3155
-			echo $before_title . $title . $after_title;
3152
+	$widget_listings = geodir_get_widget_listings($query_args);
3153
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3154
+		if ($title) {
3155
+			echo $before_title.$title.$after_title;
3156 3156
 		}
3157 3157
 
3158 3158
 		global $post;
3159 3159
 
3160
-		$current_post = $post;// keep current post info
3160
+		$current_post = $post; // keep current post info
3161 3161
 
3162 3162
 		$widget_main_slides = '';
3163 3163
 		$nav_slides         = '';
3164 3164
 		$widget_slides      = 0;
3165 3165
 
3166
-		foreach ( $widget_listings as $widget_listing ) {
3166
+		foreach ($widget_listings as $widget_listing) {
3167 3167
 			global $gd_widget_listing_type;
3168 3168
 			$post         = $widget_listing;
3169
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3169
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3170 3170
 
3171
-			if ( ! empty( $widget_image ) ) {
3172
-				if ( $widget_image->height >= 200 ) {
3171
+			if (!empty($widget_image)) {
3172
+				if ($widget_image->height >= 200) {
3173 3173
 					$widget_spacer_height = 0;
3174 3174
 				} else {
3175
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3175
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3176 3176
 				}
3177 3177
 
3178
-				$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" />';
3178
+				$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" />';
3179 3179
 
3180 3180
 				$title = '';
3181
-				if ( $show_title ) {
3182
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3181
+				if ($show_title) {
3182
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3183 3183
 					$post_id        = $post->ID;
3184
-					$post_permalink = get_permalink( $post->ID );
3185
-					$post_title     = get_the_title( $post->ID );
3184
+					$post_permalink = get_permalink($post->ID);
3185
+					$post_title     = get_the_title($post->ID);
3186 3186
 					/**
3187 3187
 					 * Filter the listing slider widget title.
3188 3188
 					 *
@@ -3193,12 +3193,12 @@  discard block
 block discarded – undo
3193 3193
 					 * @param string $post_permalink The post permalink url.
3194 3194
 					 * @param string $post_title     The post title text.
3195 3195
 					 */
3196
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3196
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3197 3197
 				}
3198 3198
 
3199
-				$widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>';
3200
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3201
-				$widget_slides ++;
3199
+				$widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>';
3200
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3201
+				$widget_slides++;
3202 3202
 			}
3203 3203
 		}
3204 3204
 		?>
@@ -3207,7 +3207,7 @@  discard block
 block discarded – undo
3207 3207
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3208 3208
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3209 3209
 			</div>
3210
-			<?php if ( $widget_slides > 1 ) { ?>
3210
+			<?php if ($widget_slides > 1) { ?>
3211 3211
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3212 3212
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3213 3213
 				</div>
@@ -3215,7 +3215,7 @@  discard block
 block discarded – undo
3215 3215
 		</div>
3216 3216
 		<?php
3217 3217
 		$GLOBALS['post'] = $current_post;
3218
-		setup_postdata( $current_post );
3218
+		setup_postdata($current_post);
3219 3219
 	}
3220 3220
 	echo $after_widget;
3221 3221
 }
@@ -3231,46 +3231,46 @@  discard block
 block discarded – undo
3231 3231
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3232 3232
  * @param array|string $instance The settings for the particular instance of the widget.
3233 3233
  */
3234
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3234
+function geodir_loginwidget_output($args = '', $instance = '') {
3235 3235
 	//print_r($args);
3236 3236
 	//print_r($instance);
3237 3237
 	// prints the widget
3238
-	extract( $args, EXTR_SKIP );
3238
+	extract($args, EXTR_SKIP);
3239 3239
 
3240 3240
 	/** This filter is documented in geodirectory_widgets.php */
3241
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3241
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3242 3242
 
3243 3243
 	echo $before_widget;
3244
-	echo $before_title . $title . $after_title;
3244
+	echo $before_title.$title.$after_title;
3245 3245
 
3246
-	if ( is_user_logged_in() ) {
3246
+	if (is_user_logged_in()) {
3247 3247
 		global $current_user;
3248 3248
 
3249
-		$author_link = get_author_posts_url( $current_user->data->ID );
3250
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3249
+		$author_link = get_author_posts_url($current_user->data->ID);
3250
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3251 3251
 
3252 3252
 		echo '<ul class="geodir-loginbox-list">';
3253 3253
 		ob_start();
3254 3254
 		?>
3255 3255
 		<li><a class="signin"
3256
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3256
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3257 3257
 		<?php
3258
-		$post_types                           = geodir_get_posttypes( 'object' );
3259
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3260
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3258
+		$post_types                           = geodir_get_posttypes('object');
3259
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3260
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3261 3261
 
3262
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3262
+		if (!empty($show_add_listing_post_types_main_nav)) {
3263 3263
 			$addlisting_links = '';
3264
-			foreach ( $post_types as $key => $postobj ) {
3264
+			foreach ($post_types as $key => $postobj) {
3265 3265
 
3266
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3266
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3267 3267
 
3268
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3268
+					if ($add_link = geodir_get_addlisting_link($key)) {
3269 3269
 
3270 3270
 						$name = $postobj->labels->name;
3271 3271
 
3272 3272
 						$selected = '';
3273
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3273
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3274 3274
 							$selected = 'selected="selected"';
3275 3275
 						}
3276 3276
 
@@ -3283,22 +3283,22 @@  discard block
 block discarded – undo
3283 3283
 						 * @param string $key       Add listing array key.
3284 3284
 						 * @param int $current_user ->ID Current user ID.
3285 3285
 						 */
3286
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3286
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3287 3287
 
3288
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3288
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3289 3289
 
3290 3290
 					}
3291 3291
 				}
3292 3292
 
3293 3293
 			}
3294 3294
 
3295
-			if ( $addlisting_links != '' ) { ?>
3295
+			if ($addlisting_links != '') { ?>
3296 3296
 
3297 3297
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3298 3298
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3299
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3299
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3300 3300
 						<option value="" disabled="disabled" selected="selected"
3301
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3301
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3302 3302
 						<?php echo $addlisting_links; ?>
3303 3303
 					</select></li> <?php
3304 3304
 
@@ -3306,23 +3306,23 @@  discard block
 block discarded – undo
3306 3306
 
3307 3307
 		}
3308 3308
 		// My Favourites in Dashboard
3309
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3309
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3310 3310
 		$user_favourite                    = geodir_user_favourite_listing_count();
3311 3311
 
3312
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3312
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3313 3313
 			$favourite_links = '';
3314 3314
 
3315
-			foreach ( $post_types as $key => $postobj ) {
3316
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3315
+			foreach ($post_types as $key => $postobj) {
3316
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3317 3317
 					$name           = $postobj->labels->name;
3318
-					$post_type_link = geodir_getlink( $author_link, array(
3318
+					$post_type_link = geodir_getlink($author_link, array(
3319 3319
 						'stype' => $key,
3320 3320
 						'list'  => 'favourite'
3321
-					), false );
3321
+					), false);
3322 3322
 
3323 3323
 					$selected = '';
3324 3324
 
3325
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3325
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3326 3326
 						$selected = 'selected="selected"';
3327 3327
 					}
3328 3328
 					/**
@@ -3334,20 +3334,20 @@  discard block
 block discarded – undo
3334 3334
 					 * @param string $key            Favorite listing array key.
3335 3335
 					 * @param int $current_user      ->ID Current user ID.
3336 3336
 					 */
3337
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3337
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3338 3338
 
3339
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3339
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3340 3340
 				}
3341 3341
 			}
3342 3342
 
3343
-			if ( $favourite_links != '' ) {
3343
+			if ($favourite_links != '') {
3344 3344
 				?>
3345 3345
 				<li>
3346 3346
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3347 3347
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3348
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3348
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3349 3349
 						<option value="" disabled="disabled" selected="selected"
3350
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3350
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3351 3351
 						<?php echo $favourite_links; ?>
3352 3352
 					</select>
3353 3353
 				</li>
@@ -3356,19 +3356,19 @@  discard block
 block discarded – undo
3356 3356
 		}
3357 3357
 
3358 3358
 
3359
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3359
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3360 3360
 		$user_listing                     = geodir_user_post_listing_count();
3361 3361
 
3362
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3362
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3363 3363
 			$listing_links = '';
3364 3364
 
3365
-			foreach ( $post_types as $key => $postobj ) {
3366
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3365
+			foreach ($post_types as $key => $postobj) {
3366
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3367 3367
 					$name         = $postobj->labels->name;
3368
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3368
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3369 3369
 
3370 3370
 					$selected = '';
3371
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3371
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3372 3372
 						$selected = 'selected="selected"';
3373 3373
 					}
3374 3374
 
@@ -3381,20 +3381,20 @@  discard block
 block discarded – undo
3381 3381
 					 * @param string $key          My listing array key.
3382 3382
 					 * @param int $current_user    ->ID Current user ID.
3383 3383
 					 */
3384
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3384
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3385 3385
 
3386
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3386
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3387 3387
 				}
3388 3388
 			}
3389 3389
 
3390
-			if ( $listing_links != '' ) {
3390
+			if ($listing_links != '') {
3391 3391
 				?>
3392 3392
 				<li>
3393 3393
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3394 3394
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3395
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3395
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3396 3396
 						<option value="" disabled="disabled" selected="selected"
3397
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3397
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3398 3398
 						<?php echo $listing_links; ?>
3399 3399
 					</select>
3400 3400
 				</li>
@@ -3410,7 +3410,7 @@  discard block
 block discarded – undo
3410 3410
 		 *
3411 3411
 		 * @param string $dashboard_link Dashboard links HTML.
3412 3412
 		 */
3413
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3413
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3414 3414
 		echo '</ul>';
3415 3415
 
3416 3416
 		/**
@@ -3418,7 +3418,7 @@  discard block
 block discarded – undo
3418 3418
 		 *
3419 3419
 		 * @since 1.6.6
3420 3420
 		 */
3421
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3421
+		do_action('geodir_after_loginwidget_form_logged_in');
3422 3422
 
3423 3423
 
3424 3424
 	} else {
@@ -3433,18 +3433,18 @@  discard block
 block discarded – undo
3433 3433
 		<form name="loginform" class="loginform1"
3434 3434
 		      action="<?php echo geodir_login_url(); ?>"
3435 3435
 		      method="post">
3436
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3436
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3437 3437
 			                                    type="text" class="textfield user_login1"/> <span
3438 3438
 					class="user_loginInfo"></span></div>
3439
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3439
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3440 3440
 			                                    name="pwd" type="password"
3441 3441
 			                                    class="textfield user_pass1 input-text"/><span
3442 3442
 					class="user_passInfo"></span></div>
3443 3443
 
3444
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3444
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3445 3445
 			<input type="hidden" name="testcookie" value="1"/>
3446 3446
 
3447
-				<?php do_action( 'login_form' ); ?>
3447
+				<?php do_action('login_form'); ?>
3448 3448
 
3449 3449
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3450 3450
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3457,7 +3457,7 @@  discard block
 block discarded – undo
3457 3457
 					 * @since 1.0.0
3458 3458
 					 */
3459 3459
 					?>
3460
-					<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3460
+					<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3461 3461
 					   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3462 3462
 
3463 3463
 					<?php
@@ -3467,7 +3467,7 @@  discard block
 block discarded – undo
3467 3467
 					 * @since 1.0.0
3468 3468
 					 */
3469 3469
 					?>
3470
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3470
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3471 3471
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3472 3472
 		</form>
3473 3473
 		<?php
@@ -3476,7 +3476,7 @@  discard block
 block discarded – undo
3476 3476
 		 *
3477 3477
 		 * @since 1.6.6
3478 3478
 		 */
3479
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3479
+		do_action('geodir_after_loginwidget_form_logged_out');
3480 3480
 	}
3481 3481
 
3482 3482
 	echo $after_widget;
@@ -3498,16 +3498,16 @@  discard block
 block discarded – undo
3498 3498
  *                                         after_widget.
3499 3499
  * @param array|string $instance           The settings for the particular instance of the widget.
3500 3500
  */
3501
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3501
+function geodir_popular_postview_output($args = '', $instance = '') {
3502 3502
 	global $gd_session;
3503 3503
 
3504 3504
 	// prints the widget
3505
-	extract( $args, EXTR_SKIP );
3505
+	extract($args, EXTR_SKIP);
3506 3506
 
3507 3507
 	echo $before_widget;
3508 3508
 
3509 3509
 	/** This filter is documented in geodirectory_widgets.php */
3510
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3510
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3511 3511
 	/**
3512 3512
 	 * Filter the widget post type.
3513 3513
 	 *
@@ -3515,7 +3515,7 @@  discard block
 block discarded – undo
3515 3515
 	 *
3516 3516
 	 * @param string $instance ['post_type'] Post type of listing.
3517 3517
 	 */
3518
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3518
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3519 3519
 	/**
3520 3520
 	 * Filter the widget's term.
3521 3521
 	 *
@@ -3523,7 +3523,7 @@  discard block
 block discarded – undo
3523 3523
 	 *
3524 3524
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3525 3525
 	 */
3526
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3526
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3527 3527
 	/**
3528 3528
 	 * Filter the widget listings limit.
3529 3529
 	 *
@@ -3531,7 +3531,7 @@  discard block
 block discarded – undo
3531 3531
 	 *
3532 3532
 	 * @param string $instance ['post_number'] Number of listings to display.
3533 3533
 	 */
3534
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3534
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3535 3535
 	/**
3536 3536
 	 * Filter widget's "layout" type.
3537 3537
 	 *
@@ -3539,7 +3539,7 @@  discard block
 block discarded – undo
3539 3539
 	 *
3540 3540
 	 * @param string $instance ['layout'] Widget layout type.
3541 3541
 	 */
3542
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3542
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3543 3543
 	/**
3544 3544
 	 * Filter widget's "add_location_filter" value.
3545 3545
 	 *
@@ -3547,7 +3547,7 @@  discard block
 block discarded – undo
3547 3547
 	 *
3548 3548
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3549 3549
 	 */
3550
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3550
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3551 3551
 	/**
3552 3552
 	 * Filter widget's listing width.
3553 3553
 	 *
@@ -3555,7 +3555,7 @@  discard block
 block discarded – undo
3555 3555
 	 *
3556 3556
 	 * @param string $instance ['listing_width'] Listing width.
3557 3557
 	 */
3558
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3558
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3559 3559
 	/**
3560 3560
 	 * Filter widget's "list_sort" type.
3561 3561
 	 *
@@ -3563,25 +3563,25 @@  discard block
 block discarded – undo
3563 3563
 	 *
3564 3564
 	 * @param string $instance ['list_sort'] Listing sort by type.
3565 3565
 	 */
3566
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3567
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3566
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3567
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3568 3568
 
3569 3569
 	// set post type to current viewing post type
3570
-	if ( $use_viewing_post_type ) {
3570
+	if ($use_viewing_post_type) {
3571 3571
 		$current_post_type = geodir_get_current_posttype();
3572
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3572
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3573 3573
 			$post_type = $current_post_type;
3574 3574
 			$category  = array(); // old post type category will not work for current changed post type
3575 3575
 		}
3576 3576
 	}
3577 3577
 	// replace widget title dynamically
3578
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3579
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3578
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3579
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3580 3580
 
3581
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3582
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3581
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3582
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3583 3583
 
3584
-	if ( isset( $instance['character_count'] ) ) {
3584
+	if (isset($instance['character_count'])) {
3585 3585
 		/**
3586 3586
 		 * Filter the widget's excerpt character count.
3587 3587
 		 *
@@ -3589,37 +3589,37 @@  discard block
 block discarded – undo
3589 3589
 		 *
3590 3590
 		 * @param int $instance ['character_count'] Excerpt character count.
3591 3591
 		 */
3592
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3592
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3593 3593
 	} else {
3594 3594
 		$character_count = '';
3595 3595
 	}
3596 3596
 
3597
-	if ( empty( $title ) || $title == 'All' ) {
3598
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3597
+	if (empty($title) || $title == 'All') {
3598
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3599 3599
 	}
3600 3600
 
3601 3601
 	$location_url = array();
3602
-	$city         = get_query_var( 'gd_city' );
3603
-	if ( ! empty( $city ) ) {
3604
-		$country = get_query_var( 'gd_country' );
3605
-		$region  = get_query_var( 'gd_region' );
3602
+	$city         = get_query_var('gd_city');
3603
+	if (!empty($city)) {
3604
+		$country = get_query_var('gd_country');
3605
+		$region  = get_query_var('gd_region');
3606 3606
 
3607
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3607
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3608 3608
 
3609
-		if ( $geodir_show_location_url == 'all' ) {
3610
-			if ( $country != '' ) {
3609
+		if ($geodir_show_location_url == 'all') {
3610
+			if ($country != '') {
3611 3611
 				$location_url[] = $country;
3612 3612
 			}
3613 3613
 
3614
-			if ( $region != '' ) {
3614
+			if ($region != '') {
3615 3615
 				$location_url[] = $region;
3616 3616
 			}
3617
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3618
-			if ( $country != '' ) {
3617
+		} else if ($geodir_show_location_url == 'country_city') {
3618
+			if ($country != '') {
3619 3619
 				$location_url[] = $country;
3620 3620
 			}
3621
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3622
-			if ( $region != '' ) {
3621
+		} else if ($geodir_show_location_url == 'region_city') {
3622
+			if ($region != '') {
3623 3623
 				$location_url[] = $region;
3624 3624
 			}
3625 3625
 		}
@@ -3627,37 +3627,37 @@  discard block
 block discarded – undo
3627 3627
 		$location_url[] = $city;
3628 3628
 	}
3629 3629
 
3630
-	$location_url  = implode( '/', $location_url );
3630
+	$location_url  = implode('/', $location_url);
3631 3631
 	$skip_location = false;
3632
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3632
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3633 3633
 		$skip_location = true;
3634
-		$gd_session->un_set( 'gd_multi_location' );
3634
+		$gd_session->un_set('gd_multi_location');
3635 3635
 	}
3636 3636
 
3637
-	if ( get_option( 'permalink_structure' ) ) {
3638
-		$viewall_url = get_post_type_archive_link( $post_type );
3637
+	if (get_option('permalink_structure')) {
3638
+		$viewall_url = get_post_type_archive_link($post_type);
3639 3639
 	} else {
3640
-		$viewall_url = get_post_type_archive_link( $post_type );
3640
+		$viewall_url = get_post_type_archive_link($post_type);
3641 3641
 	}
3642 3642
 
3643
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3643
+	if (!empty($category) && $category[0] != '0') {
3644 3644
 		global $geodir_add_location_url;
3645 3645
 
3646 3646
 		$geodir_add_location_url = '0';
3647 3647
 
3648
-		if ( $add_location_filter != '0' ) {
3648
+		if ($add_location_filter != '0') {
3649 3649
 			$geodir_add_location_url = '1';
3650 3650
 		}
3651 3651
 
3652
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3652
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3653 3653
 
3654 3654
 		$geodir_add_location_url = null;
3655 3655
 	}
3656
-	if ( $skip_location ) {
3657
-		$gd_session->set( 'gd_multi_location', 1 );
3656
+	if ($skip_location) {
3657
+		$gd_session->set('gd_multi_location', 1);
3658 3658
 	}
3659 3659
 
3660
-	if ( is_wp_error( $viewall_url ) ) {
3660
+	if (is_wp_error($viewall_url)) {
3661 3661
 		$viewall_url = '';
3662 3662
 	}
3663 3663
 
@@ -3669,34 +3669,34 @@  discard block
 block discarded – undo
3669 3669
 		'order_by'       => $list_sort
3670 3670
 	);
3671 3671
 
3672
-	if ( $character_count ) {
3672
+	if ($character_count) {
3673 3673
 		$query_args['excerpt_length'] = $character_count;
3674 3674
 	}
3675 3675
 
3676
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3676
+	if (!empty($instance['show_featured_only'])) {
3677 3677
 		$query_args['show_featured_only'] = 1;
3678 3678
 	}
3679 3679
 
3680
-	if ( ! empty( $instance['show_special_only'] ) ) {
3680
+	if (!empty($instance['show_special_only'])) {
3681 3681
 		$query_args['show_special_only'] = 1;
3682 3682
 	}
3683 3683
 
3684
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3684
+	if (!empty($instance['with_pics_only'])) {
3685 3685
 		$query_args['with_pics_only']      = 0;
3686 3686
 		$query_args['featured_image_only'] = 1;
3687 3687
 	}
3688 3688
 
3689
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3689
+	if (!empty($instance['with_videos_only'])) {
3690 3690
 		$query_args['with_videos_only'] = 1;
3691 3691
 	}
3692
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3692
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3693 3693
 
3694
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3695
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3694
+	if (!empty($category) && $category[0] != '0') {
3695
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3696 3696
 
3697 3697
 		######### WPML #########
3698
-		if ( function_exists( 'icl_object_id' ) ) {
3699
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3698
+		if (function_exists('icl_object_id')) {
3699
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3700 3700
 		}
3701 3701
 		######### WPML #########
3702 3702
 
@@ -3706,14 +3706,14 @@  discard block
 block discarded – undo
3706 3706
 			'terms'    => $category
3707 3707
 		);
3708 3708
 
3709
-		$query_args['tax_query'] = array( $tax_query );
3709
+		$query_args['tax_query'] = array($tax_query);
3710 3710
 	}
3711 3711
 
3712 3712
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3713 3713
 
3714
-	$widget_listings = geodir_get_widget_listings( $query_args );
3714
+	$widget_listings = geodir_get_widget_listings($query_args);
3715 3715
 
3716
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3716
+	if (!empty($widget_listings) || $with_no_results) {
3717 3717
 		?>
3718 3718
 		<div class="geodir_locations geodir_location_listing">
3719 3719
 
@@ -3723,11 +3723,11 @@  discard block
 block discarded – undo
3723 3723
 			 *
3724 3724
 			 * @since 1.0.0
3725 3725
 			 */
3726
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3726
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3727 3727
 			<div class="geodir_list_heading clearfix">
3728
-				<?php echo $before_title . $title . $after_title; ?>
3728
+				<?php echo $before_title.$title.$after_title; ?>
3729 3729
 				<a href="<?php echo $viewall_url; ?>"
3730
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3730
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3731 3731
 			</div>
3732 3732
 			<?php
3733 3733
 			/**
@@ -3735,10 +3735,10 @@  discard block
 block discarded – undo
3735 3735
 			 *
3736 3736
 			 * @since 1.0.0
3737 3737
 			 */
3738
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3738
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3739 3739
 			<?php
3740
-			if ( strstr( $layout, 'gridview' ) ) {
3741
-				$listing_view_exp        = explode( '_', $layout );
3740
+			if (strstr($layout, 'gridview')) {
3741
+				$listing_view_exp        = explode('_', $layout);
3742 3742
 				$gridview_columns_widget = $layout;
3743 3743
 				$layout                  = $listing_view_exp[0];
3744 3744
 			} else {
@@ -3750,8 +3750,8 @@  discard block
 block discarded – undo
3750 3750
 			 *
3751 3751
 			 * @since 1.0.0
3752 3752
 			 */
3753
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3754
-			if ( ! isset( $character_count ) ) {
3753
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3754
+			if (!isset($character_count)) {
3755 3755
 				/**
3756 3756
 				 * Filter the widget's excerpt character count.
3757 3757
 				 *
@@ -3759,7 +3759,7 @@  discard block
 block discarded – undo
3759 3759
 				 *
3760 3760
 				 * @param int $instance ['character_count'] Excerpt character count.
3761 3761
 				 */
3762
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3762
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3763 3763
 			}
3764 3764
 
3765 3765
 			global $post, $map_jason, $map_canvas_arr;
@@ -3774,13 +3774,13 @@  discard block
 block discarded – undo
3774 3774
 			 *
3775 3775
 			 * @since 1.0.0
3776 3776
 			 */
3777
-			include( $template );
3777
+			include($template);
3778 3778
 
3779 3779
 			$geodir_is_widget_listing = false;
3780 3780
 
3781 3781
 			$GLOBALS['post'] = $current_post;
3782
-			if ( ! empty( $current_post ) ) {
3783
-				setup_postdata( $current_post );
3782
+			if (!empty($current_post)) {
3783
+				setup_postdata($current_post);
3784 3784
 			}
3785 3785
 			$map_jason      = $current_map_jason;
3786 3786
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3811,12 +3811,12 @@  discard block
 block discarded – undo
3811 3811
  *
3812 3812
  * @return int Reviews count.
3813 3813
  */
3814
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3814
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3815 3815
 	global $wpdb, $plugin_prefix;
3816 3816
 
3817
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3817
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3818 3818
 
3819
-	$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 . ")";
3819
+	$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.")";
3820 3820
 
3821 3821
 	/**
3822 3822
 	 * Filter count review sql query.
@@ -3828,9 +3828,9 @@  discard block
 block discarded – undo
3828 3828
 	 * @param int $taxonomy     The taxonomy Id.
3829 3829
 	 * @param string $post_type The post type.
3830 3830
 	 */
3831
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3831
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3832 3832
 
3833
-	$count = $wpdb->get_var( $sql );
3833
+	$count = $wpdb->get_var($sql);
3834 3834
 
3835 3835
 	return $count;
3836 3836
 }
@@ -3848,7 +3848,7 @@  discard block
 block discarded – undo
3848 3848
  *
3849 3849
  * @return array Term array data.
3850 3850
  */
3851
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3851
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3852 3852
 	/**
3853 3853
 	 * Filter review count option data.
3854 3854
 	 *
@@ -3858,78 +3858,78 @@  discard block
 block discarded – undo
3858 3858
 	 * @param bool $force_update Force update option value?. Default.false.
3859 3859
 	 * @param int $post_ID       The post id to update if any.
3860 3860
 	 */
3861
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3862
-	if ( ! empty( $option_data ) ) {
3861
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3862
+	if (!empty($option_data)) {
3863 3863
 		return $option_data;
3864 3864
 	}
3865 3865
 
3866
-	$option_data = get_option( 'geodir_global_review_count' );
3866
+	$option_data = get_option('geodir_global_review_count');
3867 3867
 
3868
-	if ( ! $option_data || $force_update ) {
3869
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3868
+	if (!$option_data || $force_update) {
3869
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3870 3870
 			global $gd_session;
3871 3871
 			$term_array = (array) $option_data;
3872
-			$post_type  = get_post_type( $post_ID );
3873
-			$taxonomy   = $post_type . 'category';
3874
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3875
-
3876
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3877
-				foreach ( $terms as $term_id ) {
3878
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3879
-					$children               = get_term_children( $term_id, $taxonomy );
3880
-					$term_array[ $term_id ] = $count;
3872
+			$post_type  = get_post_type($post_ID);
3873
+			$taxonomy   = $post_type.'category';
3874
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3875
+
3876
+			if (!empty($terms) && !is_wp_error($terms)) {
3877
+				foreach ($terms as $term_id) {
3878
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3879
+					$children               = get_term_children($term_id, $taxonomy);
3880
+					$term_array[$term_id] = $count;
3881 3881
 				}
3882 3882
 			}
3883 3883
 
3884
-			$session_listing = $gd_session->get( 'listing' );
3884
+			$session_listing = $gd_session->get('listing');
3885 3885
 
3886 3886
 			$terms = array();
3887
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3888
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3889
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3890
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3887
+			if (isset($_POST['post_category'][$taxonomy])) {
3888
+				$terms = (array) $_POST['post_category'][$taxonomy];
3889
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3890
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3891 3891
 			}
3892 3892
 
3893
-			if ( ! empty( $terms ) ) {
3894
-				foreach ( $terms as $term_id ) {
3895
-					if ( $term_id > 0 ) {
3896
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3897
-						$children               = get_term_children( $term_id, $taxonomy );
3898
-						$term_array[ $term_id ] = $count;
3893
+			if (!empty($terms)) {
3894
+				foreach ($terms as $term_id) {
3895
+					if ($term_id > 0) {
3896
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3897
+						$children               = get_term_children($term_id, $taxonomy);
3898
+						$term_array[$term_id] = $count;
3899 3899
 					}
3900 3900
 				}
3901 3901
 			}
3902 3902
 		} else { // Update reviews count for all post categories.
3903 3903
 			$term_array = array();
3904 3904
 			$post_types = geodir_get_posttypes();
3905
-			foreach ( $post_types as $post_type ) {
3905
+			foreach ($post_types as $post_type) {
3906 3906
 
3907
-				$taxonomy = geodir_get_taxonomies( $post_type );
3907
+				$taxonomy = geodir_get_taxonomies($post_type);
3908 3908
 				$taxonomy = $taxonomy[0];
3909 3909
 
3910 3910
 				$args = array(
3911 3911
 					'hide_empty' => false
3912 3912
 				);
3913 3913
 
3914
-				$terms = get_terms( $taxonomy, $args );
3914
+				$terms = get_terms($taxonomy, $args);
3915 3915
 
3916
-				foreach ( $terms as $term ) {
3917
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
3918
-					$children = get_term_children( $term->term_id, $taxonomy );
3916
+				foreach ($terms as $term) {
3917
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3918
+					$children = get_term_children($term->term_id, $taxonomy);
3919 3919
 					/*if ( is_array( $children ) ) {
3920 3920
                         foreach ( $children as $child_id ) {
3921 3921
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3922 3922
                             $count = $count + $child_count;
3923 3923
                         }
3924 3924
                     }*/
3925
-					$term_array[ $term->term_id ] = $count;
3925
+					$term_array[$term->term_id] = $count;
3926 3926
 				}
3927 3927
 			}
3928 3928
 		}
3929 3929
 
3930
-		update_option( 'geodir_global_review_count', $term_array );
3930
+		update_option('geodir_global_review_count', $term_array);
3931 3931
 		//clear cache
3932
-		wp_cache_delete( 'geodir_global_review_count' );
3932
+		wp_cache_delete('geodir_global_review_count');
3933 3933
 
3934 3934
 		return $term_array;
3935 3935
 	} else {
@@ -3945,39 +3945,39 @@  discard block
 block discarded – undo
3945 3945
  * @package GeoDirectory
3946 3946
  * @return bool
3947 3947
  */
3948
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3949
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
3948
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
3949
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3950 3950
 		return; // do not run if importing listings
3951 3951
 	}
3952 3952
 
3953
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3953
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3954 3954
 		return;
3955 3955
 	}
3956 3956
 
3957 3957
 	$post_ID = 0;
3958
-	if ( ! empty( $post ) ) {
3959
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
3958
+	if (!empty($post)) {
3959
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3960 3960
 			return;
3961 3961
 		}
3962 3962
 
3963
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
3963
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
3964 3964
 			return;
3965 3965
 		}
3966 3966
 
3967
-		if ( ! empty( $post->ID ) ) {
3967
+		if (!empty($post->ID)) {
3968 3968
 			$post_ID = $post->ID;
3969 3969
 		}
3970 3970
 	}
3971 3971
 
3972
-	if ( $new_status != $old_status ) {
3973
-		geodir_count_reviews_by_terms( true, $post_ID );
3972
+	if ($new_status != $old_status) {
3973
+		geodir_count_reviews_by_terms(true, $post_ID);
3974 3974
 	}
3975 3975
 
3976 3976
 	return true;
3977 3977
 }
3978 3978
 
3979
-function geodir_term_review_count_force_update_single_post( $post_id ) {
3980
-	geodir_count_reviews_by_terms( true, $post_id );
3979
+function geodir_term_review_count_force_update_single_post($post_id) {
3980
+	geodir_count_reviews_by_terms(true, $post_id);
3981 3981
 }
3982 3982
 
3983 3983
 /*-----------------------------------------------------------------------------------*/
@@ -3994,11 +3994,11 @@  discard block
 block discarded – undo
3994 3994
  *
3995 3995
  * @return int Post count.
3996 3996
  */
3997
-function geodir_count_posts_by_term( $data, $term ) {
3997
+function geodir_count_posts_by_term($data, $term) {
3998 3998
 
3999
-	if ( $data ) {
4000
-		if ( isset( $data[ $term->term_id ] ) ) {
4001
-			return $data[ $term->term_id ];
3999
+	if ($data) {
4000
+		if (isset($data[$term->term_id])) {
4001
+			return $data[$term->term_id];
4002 4002
 		} else {
4003 4003
 			return 0;
4004 4004
 		}
@@ -4015,8 +4015,8 @@  discard block
 block discarded – undo
4015 4015
  * param array $terms An array of term objects.
4016 4016
  * @return array Sorted terms array.
4017 4017
  */
4018
-function geodir_sort_terms_by_count( $terms ) {
4019
-	usort( $terms, "geodir_sort_by_count_obj" );
4018
+function geodir_sort_terms_by_count($terms) {
4019
+	usort($terms, "geodir_sort_by_count_obj");
4020 4020
 
4021 4021
 	return $terms;
4022 4022
 }
@@ -4031,8 +4031,8 @@  discard block
 block discarded – undo
4031 4031
  *
4032 4032
  * @return array Sorted terms array.
4033 4033
  */
4034
-function geodir_sort_terms_by_review_count( $terms ) {
4035
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4034
+function geodir_sort_terms_by_review_count($terms) {
4035
+	usort($terms, "geodir_sort_by_review_count_obj");
4036 4036
 
4037 4037
 	return $terms;
4038 4038
 }
@@ -4048,12 +4048,12 @@  discard block
 block discarded – undo
4048 4048
  *
4049 4049
  * @return array Sorted terms array.
4050 4050
  */
4051
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4052
-	if ( $sort == 'count' ) {
4053
-		return geodir_sort_terms_by_count( $terms );
4051
+function geodir_sort_terms($terms, $sort = 'count') {
4052
+	if ($sort == 'count') {
4053
+		return geodir_sort_terms_by_count($terms);
4054 4054
 	}
4055
-	if ( $sort == 'review_count' ) {
4056
-		return geodir_sort_terms_by_review_count( $terms );
4055
+	if ($sort == 'review_count') {
4056
+		return geodir_sort_terms_by_review_count($terms);
4057 4057
 	}
4058 4058
 }
4059 4059
 
@@ -4071,7 +4071,7 @@  discard block
 block discarded – undo
4071 4071
  *
4072 4072
  * @return bool
4073 4073
  */
4074
-function geodir_sort_by_count( $a, $b ) {
4074
+function geodir_sort_by_count($a, $b) {
4075 4075
 	return $a['count'] < $b['count'];
4076 4076
 }
4077 4077
 
@@ -4086,7 +4086,7 @@  discard block
 block discarded – undo
4086 4086
  *
4087 4087
  * @return bool
4088 4088
  */
4089
-function geodir_sort_by_count_obj( $a, $b ) {
4089
+function geodir_sort_by_count_obj($a, $b) {
4090 4090
 	return $a->count < $b->count;
4091 4091
 }
4092 4092
 
@@ -4101,7 +4101,7 @@  discard block
 block discarded – undo
4101 4101
  *
4102 4102
  * @return bool
4103 4103
  */
4104
-function geodir_sort_by_review_count_obj( $a, $b ) {
4104
+function geodir_sort_by_review_count_obj($a, $b) {
4105 4105
 	return $a->review_count < $b->review_count;
4106 4106
 }
4107 4107
 
@@ -4118,35 +4118,35 @@  discard block
 block discarded – undo
4118 4118
 	 * @since   1.4.2
4119 4119
 	 * @package GeoDirectory
4120 4120
 	 */
4121
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4121
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4122 4122
 
4123
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4124
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4123
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4124
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4125 4125
 
4126 4126
 	/**
4127 4127
 	 * Define language constants.
4128 4128
 	 *
4129 4129
 	 * @since 1.0.0
4130 4130
 	 */
4131
-	require_once( geodir_plugin_path() . '/language.php' );
4131
+	require_once(geodir_plugin_path().'/language.php');
4132 4132
 
4133
-	$language_file = geodir_plugin_path() . '/db-language.php';
4133
+	$language_file = geodir_plugin_path().'/db-language.php';
4134 4134
 
4135 4135
 	// Load language string file if not created yet
4136
-	if ( ! file_exists( $language_file ) ) {
4136
+	if (!file_exists($language_file)) {
4137 4137
 		geodirectory_load_db_language();
4138 4138
 	}
4139 4139
 
4140
-	if ( file_exists( $language_file ) ) {
4140
+	if (file_exists($language_file)) {
4141 4141
 		/**
4142 4142
 		 * Language strings from database.
4143 4143
 		 *
4144 4144
 		 * @since 1.4.2
4145 4145
 		 */
4146 4146
 		try {
4147
-			require_once( $language_file );
4148
-		} catch ( Exception $e ) {
4149
-			error_log( 'Language Error: ' . $e->getMessage() );
4147
+			require_once($language_file);
4148
+		} catch (Exception $e) {
4149
+			error_log('Language Error: '.$e->getMessage());
4150 4150
 		}
4151 4151
 	}
4152 4152
 }
@@ -4163,19 +4163,19 @@  discard block
 block discarded – undo
4163 4163
  */
4164 4164
 function geodirectory_load_db_language() {
4165 4165
 	global $wp_filesystem;
4166
-	if ( empty( $wp_filesystem ) ) {
4167
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4166
+	if (empty($wp_filesystem)) {
4167
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4168 4168
 		WP_Filesystem();
4169 4169
 		global $wp_filesystem;
4170 4170
 	}
4171 4171
 
4172
-	$language_file = geodir_plugin_path() . '/db-language.php';
4172
+	$language_file = geodir_plugin_path().'/db-language.php';
4173 4173
 
4174
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4174
+	if (is_file($language_file) && !is_writable($language_file)) {
4175 4175
 		return false;
4176 4176
 	} // Not possible to create.
4177 4177
 
4178
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4178
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4179 4179
 		return false;
4180 4180
 	} // Not possible to create.
4181 4181
 
@@ -4189,9 +4189,9 @@  discard block
 block discarded – undo
4189 4189
 	 *
4190 4190
 	 * @param array $contents_strings Array of strings.
4191 4191
 	 */
4192
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4192
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4193 4193
 
4194
-	$contents_strings = array_unique( $contents_strings );
4194
+	$contents_strings = array_unique($contents_strings);
4195 4195
 
4196 4196
 	$contents_head   = array();
4197 4197
 	$contents_head[] = "<?php";
@@ -4208,21 +4208,21 @@  discard block
 block discarded – undo
4208 4208
 	$contents_foot[] = "";
4209 4209
 	$contents_foot[] = "";
4210 4210
 
4211
-	$contents = implode( PHP_EOL, $contents_head );
4211
+	$contents = implode(PHP_EOL, $contents_head);
4212 4212
 
4213
-	if ( ! empty( $contents_strings ) ) {
4214
-		foreach ( $contents_strings as $string ) {
4215
-			if ( is_scalar( $string ) && $string != '' ) {
4216
-				$string = str_replace( "'", "\'", $string );
4217
-				geodir_wpml_register_string( $string );
4218
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4213
+	if (!empty($contents_strings)) {
4214
+		foreach ($contents_strings as $string) {
4215
+			if (is_scalar($string) && $string != '') {
4216
+				$string = str_replace("'", "\'", $string);
4217
+				geodir_wpml_register_string($string);
4218
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4219 4219
 			}
4220 4220
 		}
4221 4221
 	}
4222 4222
 
4223
-	$contents .= implode( PHP_EOL, $contents_foot );
4223
+	$contents .= implode(PHP_EOL, $contents_foot);
4224 4224
 
4225
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4225
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4226 4226
 		return false;
4227 4227
 	} // Failure; could not write file.
4228 4228
 
@@ -4243,49 +4243,49 @@  discard block
 block discarded – undo
4243 4243
  *
4244 4244
  * @return array Translation texts.
4245 4245
  */
4246
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4246
+function geodir_load_custom_field_translation($translation_texts = array()) {
4247 4247
 	global $wpdb;
4248 4248
 
4249 4249
 	// Custom fields table
4250
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4251
-	$rows = $wpdb->get_results( $sql );
4250
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4251
+	$rows = $wpdb->get_results($sql);
4252 4252
 
4253
-	if ( ! empty( $rows ) ) {
4254
-		foreach ( $rows as $row ) {
4255
-			if ( ! empty( $row->admin_title ) ) {
4256
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4253
+	if (!empty($rows)) {
4254
+		foreach ($rows as $row) {
4255
+			if (!empty($row->admin_title)) {
4256
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4257 4257
 			}
4258 4258
 
4259
-			if ( ! empty( $row->admin_desc ) ) {
4260
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4259
+			if (!empty($row->admin_desc)) {
4260
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4261 4261
 			}
4262 4262
 
4263
-			if ( ! empty( $row->site_title ) ) {
4264
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4263
+			if (!empty($row->site_title)) {
4264
+				$translation_texts[] = stripslashes_deep($row->site_title);
4265 4265
 			}
4266 4266
 
4267
-			if ( ! empty( $row->clabels ) ) {
4268
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4267
+			if (!empty($row->clabels)) {
4268
+				$translation_texts[] = stripslashes_deep($row->clabels);
4269 4269
 			}
4270 4270
 
4271
-			if ( ! empty( $row->required_msg ) ) {
4272
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4271
+			if (!empty($row->required_msg)) {
4272
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4273 4273
 			}
4274 4274
             
4275
-			if ( ! empty( $row->validation_msg ) ) {
4276
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4275
+			if (!empty($row->validation_msg)) {
4276
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4277 4277
 			}
4278 4278
 
4279
-			if ( ! empty( $row->default_value ) ) {
4280
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4279
+			if (!empty($row->default_value)) {
4280
+				$translation_texts[] = stripslashes_deep($row->default_value);
4281 4281
 			}
4282 4282
 
4283
-			if ( ! empty( $row->option_values ) ) {
4284
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4283
+			if (!empty($row->option_values)) {
4284
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4285 4285
 
4286
-				if ( ! empty( $option_values ) ) {
4287
-					foreach ( $option_values as $option_value ) {
4288
-						if ( ! empty( $option_value['label'] ) ) {
4286
+				if (!empty($option_values)) {
4287
+					foreach ($option_values as $option_value) {
4288
+						if (!empty($option_value['label'])) {
4289 4289
 							$translation_texts[] = $option_value['label'];
4290 4290
 						}
4291 4291
 					}
@@ -4295,56 +4295,56 @@  discard block
 block discarded – undo
4295 4295
 	}
4296 4296
 
4297 4297
 	// Custom sorting fields table
4298
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4299
-	$rows = $wpdb->get_results( $sql );
4298
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4299
+	$rows = $wpdb->get_results($sql);
4300 4300
 
4301
-	if ( ! empty( $rows ) ) {
4302
-		foreach ( $rows as $row ) {
4303
-			if ( ! empty( $row->site_title ) ) {
4304
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4301
+	if (!empty($rows)) {
4302
+		foreach ($rows as $row) {
4303
+			if (!empty($row->site_title)) {
4304
+				$translation_texts[] = stripslashes_deep($row->site_title);
4305 4305
 			}
4306 4306
 
4307
-			if ( ! empty( $row->asc_title ) ) {
4308
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4307
+			if (!empty($row->asc_title)) {
4308
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4309 4309
 			}
4310 4310
 
4311
-			if ( ! empty( $row->desc_title ) ) {
4312
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4311
+			if (!empty($row->desc_title)) {
4312
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4313 4313
 			}
4314 4314
 		}
4315 4315
 	}
4316 4316
 
4317 4317
 	// Advance search filter fields table
4318
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4319
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4320
-		$rows = $wpdb->get_results( $sql );
4321
-
4322
-		if ( ! empty( $rows ) ) {
4323
-			foreach ( $rows as $row ) {
4324
-				if ( ! empty( $row->field_site_name ) ) {
4325
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4318
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4319
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4320
+		$rows = $wpdb->get_results($sql);
4321
+
4322
+		if (!empty($rows)) {
4323
+			foreach ($rows as $row) {
4324
+				if (!empty($row->field_site_name)) {
4325
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4326 4326
 				}
4327 4327
 
4328
-				if ( ! empty( $row->front_search_title ) ) {
4329
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4328
+				if (!empty($row->front_search_title)) {
4329
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4330 4330
 				}
4331 4331
 
4332
-				if ( ! empty( $row->first_search_text ) ) {
4333
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4332
+				if (!empty($row->first_search_text)) {
4333
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4334 4334
 				}
4335 4335
 
4336
-				if ( ! empty( $row->last_search_text ) ) {
4337
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4336
+				if (!empty($row->last_search_text)) {
4337
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4338 4338
 				}
4339 4339
 
4340
-				if ( ! empty( $row->field_desc ) ) {
4341
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4340
+				if (!empty($row->field_desc)) {
4341
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4342 4342
 				}
4343 4343
 			}
4344 4344
 		}
4345 4345
 	}
4346 4346
 
4347
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4347
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4348 4348
 
4349 4349
 	return $translation_texts;
4350 4350
 }
@@ -4366,7 +4366,7 @@  discard block
 block discarded – undo
4366 4366
 	 *
4367 4367
 	 * @param array $geodir_allowed_mime_types and file extensions.
4368 4368
 	 */
4369
-	return apply_filters( 'geodir_allowed_mime_types', array(
4369
+	return apply_filters('geodir_allowed_mime_types', array(
4370 4370
 			'Image'       => array( // Image formats.
4371 4371
 				'jpg'  => 'image/jpeg',
4372 4372
 				'jpe'  => 'image/jpeg',
@@ -4434,18 +4434,18 @@  discard block
 block discarded – undo
4434 4434
  *
4435 4435
  * @return string User display name.
4436 4436
  */
4437
-function geodir_get_client_name( $user_id ) {
4437
+function geodir_get_client_name($user_id) {
4438 4438
 	$client_name = '';
4439 4439
 
4440
-	$user_data = get_userdata( $user_id );
4440
+	$user_data = get_userdata($user_id);
4441 4441
 
4442
-	if ( ! empty( $user_data ) ) {
4443
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4444
-			$client_name = trim( $user_data->display_name );
4445
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4446
-			$client_name = trim( $user_data->user_nicename );
4442
+	if (!empty($user_data)) {
4443
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4444
+			$client_name = trim($user_data->display_name);
4445
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4446
+			$client_name = trim($user_data->user_nicename);
4447 4447
 		} else {
4448
-			$client_name = trim( $user_data->user_login );
4448
+			$client_name = trim($user_data->user_login);
4449 4449
 		}
4450 4450
 	}
4451 4451
 
@@ -4453,19 +4453,19 @@  discard block
 block discarded – undo
4453 4453
 }
4454 4454
 
4455 4455
 
4456
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4456
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4457 4457
 /*
4458 4458
  * Add location variables to wpseo replacements.
4459 4459
  *
4460 4460
  * @since 1.5.4
4461 4461
  */
4462
-function geodir_wpseo_replacements( $vars ) {
4462
+function geodir_wpseo_replacements($vars) {
4463 4463
 
4464 4464
 	global $wp;
4465 4465
 	$title = '';
4466 4466
 	// location variables
4467 4467
 	$gd_post_type   = geodir_get_current_posttype();
4468
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4468
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4469 4469
 	/**
4470 4470
 	 * Filter the title variables location variables array
4471 4471
 	 *
@@ -4475,20 +4475,20 @@  discard block
 block discarded – undo
4475 4475
 	 * @param array $location_array The array of location variables.
4476 4476
 	 * @param array $vars           The page title variables.
4477 4477
 	 */
4478
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4478
+	$location_array  = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4479 4479
 	$location_titles = array();
4480
-	if ( get_query_var( 'gd_country_full' ) ) {
4481
-		if ( get_query_var( 'gd_country_full' ) ) {
4482
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4480
+	if (get_query_var('gd_country_full')) {
4481
+		if (get_query_var('gd_country_full')) {
4482
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4483 4483
 		}
4484
-		if ( get_query_var( 'gd_region_full' ) ) {
4485
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4484
+		if (get_query_var('gd_region_full')) {
4485
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4486 4486
 		}
4487
-		if ( get_query_var( 'gd_city_full' ) ) {
4488
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4487
+		if (get_query_var('gd_city_full')) {
4488
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4489 4489
 		}
4490
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4491
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4490
+		if (get_query_var('gd_neighbourhood_full')) {
4491
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4492 4492
 		}
4493 4493
 	}
4494 4494
 	
@@ -4503,7 +4503,7 @@  discard block
 block discarded – undo
4503 4503
 	 * @param string $gd_page       The page being filtered.
4504 4504
 	 * @param string $sep           The separator, default: `|`.
4505 4505
 	 */
4506
-	$title = apply_filters( 'geodir_replace_location_variables_seo', $title, $location_array, '', '' );
4506
+	$title = apply_filters('geodir_replace_location_variables_seo', $title, $location_array, '', '');
4507 4507
 
4508 4508
 	/**
4509 4509
 	 * Filter the title variables after standard ones have been filtered for wpseo.
@@ -4514,13 +4514,13 @@  discard block
 block discarded – undo
4514 4514
 	 * @param string $vars          The title with variables.
4515 4515
 	 * @param array $location_array The array of location variables.
4516 4516
 	 */
4517
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4517
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4518 4518
 }
4519 4519
 
4520 4520
 
4521
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4522
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4523
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4521
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4522
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4523
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4524 4524
 
4525 4525
 /**
4526 4526
  * Filter the title variables.
@@ -4562,14 +4562,14 @@  discard block
 block discarded – undo
4562 4562
  *
4563 4563
  * @return string Title after filtered variables.
4564 4564
  */
4565
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4565
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4566 4566
 	global $wp, $post;
4567 4567
 
4568
-	if ( ! $gd_page || ! $title ) {
4568
+	if (!$gd_page || !$title) {
4569 4569
 		return $title; // if no a GD page then bail.
4570 4570
 	}
4571 4571
 
4572
-	if ( $sep == '' ) {
4572
+	if ($sep == '') {
4573 4573
 		/**
4574 4574
 		 * Filter the page title separator.
4575 4575
 		 *
@@ -4578,100 +4578,100 @@  discard block
 block discarded – undo
4578 4578
 		 *
4579 4579
 		 * @param string $sep The separator, default: `|`.
4580 4580
 		 */
4581
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4581
+		$sep = apply_filters('geodir_page_title_separator', '|');
4582 4582
 	}
4583 4583
 
4584
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4585
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4584
+	if (strpos($title, '%%title%%') !== false) {
4585
+		$title = str_replace("%%title%%", $post->post_title, $title);
4586 4586
 	}
4587 4587
 
4588
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4589
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4588
+	if (strpos($title, '%%sitename%%') !== false) {
4589
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4590 4590
 	}
4591 4591
 
4592
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4593
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4592
+	if (strpos($title, '%%sitedesc%%') !== false) {
4593
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4594 4594
 	}
4595 4595
 
4596
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4597
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4596
+	if (strpos($title, '%%excerpt%%') !== false) {
4597
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4598 4598
 	}
4599 4599
 
4600
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4601
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4602
-	} else if ( $gd_page == 'add-listing' ) {
4603
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4604
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4605
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4600
+	if ($gd_page == 'search' || $gd_page == 'author') {
4601
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4602
+	} else if ($gd_page == 'add-listing') {
4603
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4604
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4605
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4606 4606
 		$post_type = $post->post_type;
4607 4607
 	} else {
4608
-		$post_type = get_query_var( 'post_type' );
4608
+		$post_type = get_query_var('post_type');
4609 4609
 	}
4610 4610
 
4611
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4611
+	if (strpos($title, '%%pt_single%%') !== false) {
4612 4612
 		$singular_name = '';
4613
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4614
-			$singular_name = __( $singular_name, 'geodirectory' );
4613
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4614
+			$singular_name = __($singular_name, 'geodirectory');
4615 4615
 		}
4616 4616
 
4617
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4617
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4618 4618
 	}
4619 4619
 
4620
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4620
+	if (strpos($title, '%%pt_plural%%') !== false) {
4621 4621
 		$plural_name = '';
4622
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4623
-			$plural_name = __( $plural_name, 'geodirectory' );
4622
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4623
+			$plural_name = __($plural_name, 'geodirectory');
4624 4624
 		}
4625 4625
 
4626
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4626
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4627 4627
 	}
4628 4628
 
4629
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4629
+	if (strpos($title, '%%category%%') !== false) {
4630 4630
 		$cat_name = '';
4631 4631
 
4632
-		if ( $gd_page == 'detail' ) {
4633
-			if ( $post->default_category ) {
4634
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4635
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4632
+		if ($gd_page == 'detail') {
4633
+			if ($post->default_category) {
4634
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4635
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4636 4636
 			}
4637
-		} else if ( $gd_page == 'listing' ) {
4637
+		} else if ($gd_page == 'listing') {
4638 4638
 			$queried_object = get_queried_object();
4639
-			if ( isset( $queried_object->name ) ) {
4639
+			if (isset($queried_object->name)) {
4640 4640
 				$cat_name = $queried_object->name;
4641 4641
 			}
4642 4642
 		}
4643
-		$title = str_replace( "%%category%%", $cat_name, $title );
4643
+		$title = str_replace("%%category%%", $cat_name, $title);
4644 4644
 	}
4645 4645
 
4646
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4646
+	if (strpos($title, '%%tag%%') !== false) {
4647 4647
 		$cat_name = '';
4648 4648
 
4649
-		if ( $gd_page == 'detail' ) {
4650
-			if ( $post->default_category ) {
4651
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4652
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4649
+		if ($gd_page == 'detail') {
4650
+			if ($post->default_category) {
4651
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4652
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4653 4653
 			}
4654
-		} else if ( $gd_page == 'listing' ) {
4654
+		} else if ($gd_page == 'listing') {
4655 4655
 			$queried_object = get_queried_object();
4656
-			if ( isset( $queried_object->name ) ) {
4656
+			if (isset($queried_object->name)) {
4657 4657
 				$cat_name = $queried_object->name;
4658 4658
 			}
4659 4659
 		}
4660
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4660
+		$title = str_replace("%%tag%%", $cat_name, $title);
4661 4661
 	}
4662 4662
 
4663
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4664
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4665
-		$title = str_replace( "%%id%%", $ID, $title );
4663
+	if (strpos($title, '%%id%%') !== false) {
4664
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4665
+		$title = str_replace("%%id%%", $ID, $title);
4666 4666
 	}
4667 4667
 
4668
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4669
-		$title = str_replace( "%%sep%%", $sep, $title );
4668
+	if (strpos($title, '%%sep%%') !== false) {
4669
+		$title = str_replace("%%sep%%", $sep, $title);
4670 4670
 	}
4671 4671
 
4672 4672
 	// location variables
4673 4673
 	$gd_post_type   = geodir_get_current_posttype();
4674
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4674
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4675 4675
 	
4676 4676
 	/**
4677 4677
 	 * Filter the title variables location variables array
@@ -4684,20 +4684,20 @@  discard block
 block discarded – undo
4684 4684
 	 * @param string $gd_page       The page being filtered.
4685 4685
 	 * @param string $sep           The separator, default: `|`.
4686 4686
 	 */
4687
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4687
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4688 4688
 	
4689
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4690
-		if ( get_query_var( 'gd_country_full' ) ) {
4691
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4689
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4690
+		if (get_query_var('gd_country_full')) {
4691
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4692 4692
 		}
4693
-		if ( get_query_var( 'gd_region_full' ) ) {
4694
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4693
+		if (get_query_var('gd_region_full')) {
4694
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4695 4695
 		}
4696
-		if ( get_query_var( 'gd_city_full' ) ) {
4697
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4696
+		if (get_query_var('gd_city_full')) {
4697
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4698 4698
 		}
4699
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4700
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4699
+		if (get_query_var('gd_neighbourhood_full')) {
4700
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4701 4701
 		}
4702 4702
 	}
4703 4703
 	
@@ -4712,57 +4712,57 @@  discard block
 block discarded – undo
4712 4712
 	 * @param string $gd_page       The page being filtered.
4713 4713
 	 * @param string $sep           The separator, default: `|`.
4714 4714
 	 */
4715
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4715
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4716 4716
 	
4717
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4717
+	if (strpos($title, '%%search_term%%') !== false) {
4718 4718
 		$search_term = '';
4719
-		if ( isset( $_REQUEST['s'] ) ) {
4720
-			$search_term = esc_attr( $_REQUEST['s'] );
4719
+		if (isset($_REQUEST['s'])) {
4720
+			$search_term = esc_attr($_REQUEST['s']);
4721 4721
 		}
4722
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4722
+		$title = str_replace("%%search_term%%", $search_term, $title);
4723 4723
 	}
4724 4724
 
4725
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4725
+	if (strpos($title, '%%search_near%%') !== false) {
4726 4726
 		$search_term = '';
4727
-		if ( isset( $_REQUEST['snear'] ) ) {
4728
-			$search_term = esc_attr( $_REQUEST['snear'] );
4727
+		if (isset($_REQUEST['snear'])) {
4728
+			$search_term = esc_attr($_REQUEST['snear']);
4729 4729
 		}
4730
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4730
+		$title = str_replace("%%search_near%%", $search_term, $title);
4731 4731
 	}
4732 4732
 
4733
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4734
-		if ( is_author() ) {
4735
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4733
+	if (strpos($title, '%%name%%') !== false) {
4734
+		if (is_author()) {
4735
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4736 4736
 			$author_name = $curauth->display_name;
4737 4737
 		} else {
4738 4738
 			$author_name = get_the_author();
4739 4739
 		}
4740
-		if ( ! $author_name || $author_name === '' ) {
4740
+		if (!$author_name || $author_name === '') {
4741 4741
 			$queried_object = get_queried_object();
4742 4742
 
4743
-			if ( isset( $queried_object->data->user_nicename ) ) {
4743
+			if (isset($queried_object->data->user_nicename)) {
4744 4744
 				$author_name = $queried_object->data->display_name;
4745 4745
 			}
4746 4746
 		}
4747
-		$title = str_replace( "%%name%%", $author_name, $title );
4747
+		$title = str_replace("%%name%%", $author_name, $title);
4748 4748
 	}
4749 4749
 
4750
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4751
-		$page  = geodir_title_meta_page( $sep );
4752
-		$title = str_replace( "%%page%%", $page, $title );
4750
+	if (strpos($title, '%%page%%') !== false) {
4751
+		$page  = geodir_title_meta_page($sep);
4752
+		$title = str_replace("%%page%%", $page, $title);
4753 4753
 	}
4754
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4754
+	if (strpos($title, '%%pagenumber%%') !== false) {
4755 4755
 		$pagenumber = geodir_title_meta_pagenumber();
4756
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4756
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4757 4757
 	}
4758
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4758
+	if (strpos($title, '%%pagetotal%%') !== false) {
4759 4759
 		$pagetotal = geodir_title_meta_pagetotal();
4760
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4760
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4761 4761
 	}
4762 4762
 
4763
-	$title = wptexturize( $title );
4764
-	$title = convert_chars( $title );
4765
-	$title = esc_html( $title );
4763
+	$title = wptexturize($title);
4764
+	$title = convert_chars($title);
4765
+	$title = esc_html($title);
4766 4766
 
4767 4767
 	/**
4768 4768
 	 * Filter the title variables after standard ones have been filtered.
@@ -4776,7 +4776,7 @@  discard block
 block discarded – undo
4776 4776
 	 * @param string $sep           The separator, default: `|`.
4777 4777
 	 */
4778 4778
 
4779
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4779
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4780 4780
 }
4781 4781
 
4782 4782
 /**
@@ -4789,82 +4789,82 @@  discard block
 block discarded – undo
4789 4789
  *
4790 4790
  * @return array Translation texts.
4791 4791
  */
4792
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4793
-	$gd_post_types = geodir_get_posttypes( 'array' );
4792
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4793
+	$gd_post_types = geodir_get_posttypes('array');
4794 4794
 
4795
-	if ( ! empty( $gd_post_types ) ) {
4796
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4797
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4798
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4799
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4795
+	if (!empty($gd_post_types)) {
4796
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4797
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4798
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4799
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4800 4800
 
4801
-			if ( ! empty( $labels ) ) {
4802
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4801
+			if (!empty($labels)) {
4802
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4803 4803
 					$translation_texts[] = $labels['name'];
4804 4804
 				}
4805
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4805
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4806 4806
 					$translation_texts[] = $labels['singular_name'];
4807 4807
 				}
4808
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4808
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4809 4809
 					$translation_texts[] = $labels['add_new'];
4810 4810
 				}
4811
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4811
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4812 4812
 					$translation_texts[] = $labels['add_new_item'];
4813 4813
 				}
4814
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4814
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4815 4815
 					$translation_texts[] = $labels['edit_item'];
4816 4816
 				}
4817
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4817
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4818 4818
 					$translation_texts[] = $labels['new_item'];
4819 4819
 				}
4820
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4820
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4821 4821
 					$translation_texts[] = $labels['view_item'];
4822 4822
 				}
4823
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4823
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4824 4824
 					$translation_texts[] = $labels['search_items'];
4825 4825
 				}
4826
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4826
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4827 4827
 					$translation_texts[] = $labels['not_found'];
4828 4828
 				}
4829
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4829
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4830 4830
 					$translation_texts[] = $labels['not_found_in_trash'];
4831 4831
 				}
4832
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4832
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4833 4833
 					$translation_texts[] = $labels['label_post_profile'];
4834 4834
 				}
4835
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4835
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4836 4836
 					$translation_texts[] = $labels['label_post_info'];
4837 4837
 				}
4838
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4838
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4839 4839
 					$translation_texts[] = $labels['label_post_images'];
4840 4840
 				}
4841
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4841
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4842 4842
 					$translation_texts[] = $labels['label_post_map'];
4843 4843
 				}
4844
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4844
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4845 4845
 					$translation_texts[] = $labels['label_reviews'];
4846 4846
 				}
4847
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4847
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4848 4848
 					$translation_texts[] = $labels['label_related_listing'];
4849 4849
 				}
4850 4850
 			}
4851 4851
 
4852
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4853
-				$translation_texts[] = normalize_whitespace( $description );
4852
+			if ($description != '' && !in_array($description, $translation_texts)) {
4853
+				$translation_texts[] = normalize_whitespace($description);
4854 4854
 			}
4855 4855
 
4856
-			if ( ! empty( $seo ) ) {
4857
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4858
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4856
+			if (!empty($seo)) {
4857
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4858
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4859 4859
 				}
4860 4860
 
4861
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4862
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4861
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4862
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4863 4863
 				}
4864 4864
 			}
4865 4865
 		}
4866 4866
 	}
4867
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4867
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4868 4868
 
4869 4869
 	return $translation_texts;
4870 4870
 }
@@ -4879,27 +4879,27 @@  discard block
 block discarded – undo
4879 4879
  *
4880 4880
  * @return array Location terms.
4881 4881
  */
4882
-function geodir_remove_location_terms( $location_terms = array() ) {
4883
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4882
+function geodir_remove_location_terms($location_terms = array()) {
4883
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4884 4884
 
4885
-	if ( ! empty( $location_terms ) && $location_manager ) {
4886
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4887
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4885
+	if (!empty($location_terms) && $location_manager) {
4886
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4887
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4888 4888
 
4889
-		if ( $hide_region_part && $hide_country_part ) {
4890
-			if ( isset( $location_terms['gd_country'] ) ) {
4891
-				unset( $location_terms['gd_country'] );
4889
+		if ($hide_region_part && $hide_country_part) {
4890
+			if (isset($location_terms['gd_country'])) {
4891
+				unset($location_terms['gd_country']);
4892 4892
 			}
4893
-			if ( isset( $location_terms['gd_region'] ) ) {
4894
-				unset( $location_terms['gd_region'] );
4893
+			if (isset($location_terms['gd_region'])) {
4894
+				unset($location_terms['gd_region']);
4895 4895
 			}
4896
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4897
-			if ( isset( $location_terms['gd_region'] ) ) {
4898
-				unset( $location_terms['gd_region'] );
4896
+		} else if ($hide_region_part && !$hide_country_part) {
4897
+			if (isset($location_terms['gd_region'])) {
4898
+				unset($location_terms['gd_region']);
4899 4899
 			}
4900
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4901
-			if ( isset( $location_terms['gd_country'] ) ) {
4902
-				unset( $location_terms['gd_country'] );
4900
+		} else if (!$hide_region_part && $hide_country_part) {
4901
+			if (isset($location_terms['gd_country'])) {
4902
+				unset($location_terms['gd_country']);
4903 4903
 			}
4904 4904
 		}
4905 4905
 	}
@@ -4917,33 +4917,33 @@  discard block
 block discarded – undo
4917 4917
  * @param WP_Post $post Post object.
4918 4918
  * @param bool $update  Whether this is an existing listing being updated or not.
4919 4919
  */
4920
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4921
-	if ( ! $update ) {
4920
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4921
+	if (!$update) {
4922 4922
 		return;
4923 4923
 	}
4924 4924
 
4925
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
4926
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
4925
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4926
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
4927 4927
 	$inline_save = $action == 'inline-save' ? true : false;
4928 4928
 
4929
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
4929
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4930 4930
 		return;
4931 4931
 	}
4932 4932
 
4933
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
4933
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
4934 4934
 		return;
4935 4935
 	}
4936 4936
 
4937 4937
 	$user_id = (int) get_current_user_id();
4938 4938
 
4939
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4940
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
4939
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4940
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
4941 4941
 
4942
-		if ( $user_id == $author_id && ! is_super_admin() ) {
4943
-			$from_email   = get_option( 'site_email' );
4942
+		if ($user_id == $author_id && !is_super_admin()) {
4943
+			$from_email   = get_option('site_email');
4944 4944
 			$from_name    = get_site_emailName();
4945
-			$to_email     = get_option( 'admin_email' );
4946
-			$to_name      = get_option( 'name' );
4945
+			$to_email     = get_option('admin_email');
4946
+			$to_name      = get_option('name');
4947 4947
 			$message_type = 'listing_edited';
4948 4948
 
4949 4949
 			$notify_edited = true;
@@ -4955,9 +4955,9 @@  discard block
 block discarded – undo
4955 4955
 			 * @param bool $notify_edited Notify on listing edited by author?
4956 4956
 			 * @param object $post        The current post object.
4957 4957
 			 */
4958
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
4958
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
4959 4959
 
4960
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
4960
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
4961 4961
 		}
4962 4962
 	}
4963 4963
 }
@@ -4972,14 +4972,14 @@  discard block
 block discarded – undo
4972 4972
  *
4973 4973
  * @return string|null The current page start & end numbering.
4974 4974
  */
4975
-function geodir_title_meta_page( $sep ) {
4975
+function geodir_title_meta_page($sep) {
4976 4976
 	$replacement = null;
4977 4977
 
4978
-	$max = geodir_title_meta_pagenumbering( 'max' );
4979
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
4978
+	$max = geodir_title_meta_pagenumbering('max');
4979
+	$nr  = geodir_title_meta_pagenumbering('nr');
4980 4980
 
4981
-	if ( $max > 1 && $nr > 1 ) {
4982
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
4981
+	if ($max > 1 && $nr > 1) {
4982
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
4983 4983
 	}
4984 4984
 
4985 4985
 	return $replacement;
@@ -4996,8 +4996,8 @@  discard block
 block discarded – undo
4996 4996
 function geodir_title_meta_pagenumber() {
4997 4997
 	$replacement = null;
4998 4998
 
4999
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5000
-	if ( isset( $nr ) && $nr > 0 ) {
4999
+	$nr = geodir_title_meta_pagenumbering('nr');
5000
+	if (isset($nr) && $nr > 0) {
5001 5001
 		$replacement = (string) $nr;
5002 5002
 	}
5003 5003
 
@@ -5015,8 +5015,8 @@  discard block
 block discarded – undo
5015 5015
 function geodir_title_meta_pagetotal() {
5016 5016
 	$replacement = null;
5017 5017
 
5018
-	$max = geodir_title_meta_pagenumbering( 'max' );
5019
-	if ( isset( $max ) && $max > 0 ) {
5018
+	$max = geodir_title_meta_pagenumbering('max');
5019
+	if (isset($max) && $max > 0) {
5020 5020
 		$replacement = (string) $max;
5021 5021
 	}
5022 5022
 
@@ -5036,36 +5036,36 @@  discard block
 block discarded – undo
5036 5036
  *
5037 5037
  * @return int|null The current page numbering.
5038 5038
  */
5039
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5039
+function geodir_title_meta_pagenumbering($request = 'nr') {
5040 5040
 	global $wp_query, $post;
5041 5041
 	$max_num_pages = null;
5042 5042
 	$page_number   = null;
5043 5043
 
5044 5044
 	$max_num_pages = 1;
5045 5045
 
5046
-	if ( ! is_singular() ) {
5047
-		$page_number = get_query_var( 'paged' );
5048
-		if ( $page_number === 0 || $page_number === '' ) {
5046
+	if (!is_singular()) {
5047
+		$page_number = get_query_var('paged');
5048
+		if ($page_number === 0 || $page_number === '') {
5049 5049
 			$page_number = 1;
5050 5050
 		}
5051 5051
 
5052
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5052
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5053 5053
 			$max_num_pages = $wp_query->max_num_pages;
5054 5054
 		}
5055 5055
 	} else {
5056
-		$page_number = get_query_var( 'page' );
5057
-		if ( $page_number === 0 || $page_number === '' ) {
5056
+		$page_number = get_query_var('page');
5057
+		if ($page_number === 0 || $page_number === '') {
5058 5058
 			$page_number = 1;
5059 5059
 		}
5060 5060
 
5061
-		if ( isset( $post->post_content ) ) {
5062
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5061
+		if (isset($post->post_content)) {
5062
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5063 5063
 		}
5064 5064
 	}
5065 5065
 
5066 5066
 	$return = null;
5067 5067
 
5068
-	switch ( $request ) {
5068
+	switch ($request) {
5069 5069
 		case 'nr':
5070 5070
 			$return = $page_number;
5071 5071
 			break;
@@ -5086,14 +5086,14 @@  discard block
 block discarded – undo
5086 5086
  *
5087 5087
  * @return array Terms.
5088 5088
  */
5089
-function geodir_filter_empty_terms( $terms ) {
5090
-	if ( empty( $terms ) ) {
5089
+function geodir_filter_empty_terms($terms) {
5090
+	if (empty($terms)) {
5091 5091
 		return $terms;
5092 5092
 	}
5093 5093
 
5094 5094
 	$return = array();
5095
-	foreach ( $terms as $term ) {
5096
-		if ( isset( $term->count ) && $term->count > 0 ) {
5095
+	foreach ($terms as $term) {
5096
+		if (isset($term->count) && $term->count > 0) {
5097 5097
 			$return[] = $term;
5098 5098
 		} else {
5099 5099
 			/**
@@ -5104,7 +5104,7 @@  discard block
 block discarded – undo
5104 5104
 			 * @param array $return The array of terms to return.
5105 5105
 			 * @param object $term  The term object.
5106 5106
 			 */
5107
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5107
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5108 5108
 		}
5109 5109
 	}
5110 5110
 
@@ -5121,15 +5121,15 @@  discard block
 block discarded – undo
5121 5121
  *
5122 5122
  * @return array
5123 5123
  */
5124
-function geodir_remove_hentry( $class ) {
5125
-	if ( geodir_is_page( 'detail' ) ) {
5126
-		$class = array_diff( $class, array( 'hentry' ) );
5124
+function geodir_remove_hentry($class) {
5125
+	if (geodir_is_page('detail')) {
5126
+		$class = array_diff($class, array('hentry'));
5127 5127
 	}
5128 5128
 
5129 5129
 	return $class;
5130 5130
 }
5131 5131
 
5132
-add_filter( 'post_class', 'geodir_remove_hentry' );
5132
+add_filter('post_class', 'geodir_remove_hentry');
5133 5133
 
5134 5134
 /**
5135 5135
  * Registers a individual text string for WPML translation.
@@ -5141,8 +5141,8 @@  discard block
 block discarded – undo
5141 5141
  * @param string $domain The plugin domain. Default geodirectory.
5142 5142
  * @param string $name The name of the string which helps to know what's being translated.
5143 5143
  */
5144
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5145
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5144
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5145
+    do_action('wpml_register_single_string', $domain, $name, $string);
5146 5146
 }
5147 5147
 
5148 5148
 /**
@@ -5157,6 +5157,6 @@  discard block
 block discarded – undo
5157 5157
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5158 5158
  * @return string The translated string.
5159 5159
  */
5160
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5161
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5160
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5161
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5162 5162
 }
5163 5163
\ No newline at end of file
Please login to merge, or discard this patch.