Test Failed
Push — master ( 1b9ce5...f7a989 )
by Stiofan
01:03
created
geodirectory-functions/custom_functions.php 1 patch
Spacing   +634 added lines, -634 removed lines patch added patch discarded remove patch
@@ -52,31 +52,31 @@  discard block
 block discarded – undo
52 52
 				jQuery(listSel).children('li').switchClass('gridview_onehalf gridview_onethird gridview_onefourth', 'gridview_onefifth', 600);
53 53
 			}
54 54
 
55
-			jQuery.post("<?php echo geodir_get_ajax_url();?>&gd_listing_view=" + val, function (data) {
55
+			jQuery.post("<?php echo geodir_get_ajax_url(); ?>&gd_listing_view=" + val, function (data) {
56 56
 				//alert(data );
57 57
 			});
58 58
 		}
59 59
 	</script>
60 60
 	<div class="geodir-list-view-select">
61 61
 		<select name="gd_list_view" id="gd_list_view" onchange="geodir_list_view_select(this);">
62
-			<?php $listing_view = (int) $gd_session->get( 'gd_listing_view' ); ?>
63
-			<option value=""><?php _e( 'View:', 'geodirectory' ); ?></option>
62
+			<?php $listing_view = (int) $gd_session->get('gd_listing_view'); ?>
63
+			<option value=""><?php _e('View:', 'geodirectory'); ?></option>
64 64
 			<option
65
-				value="1" <?php selected( 1, $listing_view ); ?>><?php _e( 'View: List', 'geodirectory' ); ?></option>
65
+				value="1" <?php selected(1, $listing_view); ?>><?php _e('View: List', 'geodirectory'); ?></option>
66 66
 			<option
67
-				value="2" <?php selected( 2, $listing_view ); ?>><?php _e( 'View: Grid 2', 'geodirectory' ); ?></option>
67
+				value="2" <?php selected(2, $listing_view); ?>><?php _e('View: Grid 2', 'geodirectory'); ?></option>
68 68
 			<option
69
-				value="3" <?php selected( 3, $listing_view ); ?>><?php _e( 'View: Grid 3', 'geodirectory' ); ?></option>
69
+				value="3" <?php selected(3, $listing_view); ?>><?php _e('View: Grid 3', 'geodirectory'); ?></option>
70 70
 			<option
71
-				value="4" <?php selected( 4, $listing_view ); ?>><?php _e( 'View: Grid 4', 'geodirectory' ); ?></option>
71
+				value="4" <?php selected(4, $listing_view); ?>><?php _e('View: Grid 4', 'geodirectory'); ?></option>
72 72
 			<option
73
-				value="5" <?php selected( 5, $listing_view ); ?>><?php _e( 'View: Grid 5', 'geodirectory' ); ?></option>
73
+				value="5" <?php selected(5, $listing_view); ?>><?php _e('View: Grid 5', 'geodirectory'); ?></option>
74 74
 		</select>
75 75
 	</div>
76 76
 	<?php
77 77
 }
78 78
 
79
-add_action( 'geodir_before_listing', 'geodir_list_view_select', 100 );
79
+add_action('geodir_before_listing', 'geodir_list_view_select', 100);
80 80
 
81 81
 /**
82 82
  * Limit the listing excerpt.
@@ -91,9 +91,9 @@  discard block
 block discarded – undo
91 91
  * @global object $post          The current post object.
92 92
  * @return string The modified excerpt.
93 93
  */
94
-function geodir_max_excerpt( $charlength ) {
94
+function geodir_max_excerpt($charlength) {
95 95
 	global $post;
96
-	if ( $charlength == '0' ) {
96
+	if ($charlength == '0') {
97 97
 		return;
98 98
 	}
99 99
 	$out = '';
@@ -101,46 +101,46 @@  discard block
 block discarded – undo
101 101
 	$temp_post = $post;
102 102
 	$excerpt   = get_the_excerpt();
103 103
 
104
-	$charlength ++;
105
-	$excerpt_more = function_exists( 'geodirf_excerpt_more' ) ? geodirf_excerpt_more( '' ) : geodir_excerpt_more( '' );
106
-	if ( mb_strlen( $excerpt ) > $charlength ) {
107
-		if ( mb_strlen( $excerpt_more ) > 0 && mb_strpos( $excerpt, $excerpt_more ) !== false ) {
108
-			$excut = - ( mb_strlen( $excerpt_more ) );
109
-			$subex = mb_substr( $excerpt, 0, $excut );
110
-			if ( $charlength > 0 && mb_strlen( $subex ) > $charlength ) {
111
-				$subex = mb_substr( $subex, 0, $charlength );
104
+	$charlength++;
105
+	$excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
106
+	if (mb_strlen($excerpt) > $charlength) {
107
+		if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
108
+			$excut = - (mb_strlen($excerpt_more));
109
+			$subex = mb_substr($excerpt, 0, $excut);
110
+			if ($charlength > 0 && mb_strlen($subex) > $charlength) {
111
+				$subex = mb_substr($subex, 0, $charlength);
112 112
 			}
113 113
 			$out .= $subex;
114 114
 		} else {
115
-			$subex   = mb_substr( $excerpt, 0, $charlength - 5 );
116
-			$exwords = explode( ' ', $subex );
117
-			$excut   = - ( mb_strlen( $exwords[ count( $exwords ) - 1 ] ) );
118
-			if ( $excut < 0 ) {
119
-				$out .= mb_substr( $subex, 0, $excut );
115
+			$subex   = mb_substr($excerpt, 0, $charlength - 5);
116
+			$exwords = explode(' ', $subex);
117
+			$excut   = - (mb_strlen($exwords[count($exwords) - 1]));
118
+			if ($excut < 0) {
119
+				$out .= mb_substr($subex, 0, $excut);
120 120
 			} else {
121 121
 				$out .= $subex;
122 122
 			}
123 123
 		}
124
-		$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
124
+		$out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">';
125 125
 		/**
126 126
 		 * Filter excerpt read more text.
127 127
 		 *
128 128
 		 * @since 1.0.0
129 129
 		 */
130
-		$out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
130
+		$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
131 131
 		$out .= '</a>';
132 132
 
133 133
 	} else {
134
-		if ( mb_strlen( $excerpt_more ) > 0 && mb_strpos( $excerpt, $excerpt_more ) !== false ) {
135
-			$excut = - ( mb_strlen( $excerpt_more ) );
136
-			$out .= mb_substr( $excerpt, 0, $excut );
137
-			$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
134
+		if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
135
+			$excut = - (mb_strlen($excerpt_more));
136
+			$out .= mb_substr($excerpt, 0, $excut);
137
+			$out .= ' <a class="excerpt-read-more" href="'.get_permalink().'" title="'.get_the_title().'">';
138 138
 			/**
139 139
 			 * Filter excerpt read more text.
140 140
 			 *
141 141
 			 * @since 1.0.0
142 142
 			 */
143
-			$out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
143
+			$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
144 144
 			$out .= '</a>';
145 145
 		} else {
146 146
 			$out .= $excerpt;
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
  *
164 164
  * @return object Returns filtered package info as an object.
165 165
  */
166
-function geodir_post_package_info( $package_info, $post = '', $post_type = '' ) {
166
+function geodir_post_package_info($package_info, $post = '', $post_type = '') {
167 167
 	$package_info['pid']              = 0;
168 168
 	$package_info['days']             = 0;
169 169
 	$package_info['amount']           = 0;
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	 * @param object|string $post  The post object.
193 193
 	 * @param string $post_type    The post type.
194 194
 	 */
195
-	return (object) apply_filters( 'geodir_post_package_info', $package_info, $post, $post_type );
195
+	return (object) apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
196 196
 
197 197
 }
198 198
 
@@ -220,11 +220,11 @@  discard block
 block discarded – undo
220 220
  *
221 221
  * }
222 222
  */
223
-function geodir_send_inquiry( $request ) {
223
+function geodir_send_inquiry($request) {
224 224
 	global $wpdb;
225 225
 
226 226
 	// strip slashes from text
227
-	$request = ! empty( $request ) ? stripslashes_deep( $request ) : $request;
227
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
228 228
 
229 229
 	$yourname      = $request['inq_name'];
230 230
 	$youremail     = $request['inq_email'];
@@ -235,26 +235,26 @@  discard block
 block discarded – undo
235 235
 	$author_id  = '';
236 236
 	$post_title = '';
237 237
 
238
-	if ( $request['pid'] ) {
238
+	if ($request['pid']) {
239 239
 
240 240
 		$productinfosql = $wpdb->prepare(
241 241
 			"select ID,post_author,post_title from $wpdb->posts where ID =%d",
242
-			array( $request['pid'] )
242
+			array($request['pid'])
243 243
 		);
244
-		$productinfo    = $wpdb->get_row( $productinfosql );
244
+		$productinfo = $wpdb->get_row($productinfosql);
245 245
 
246 246
 		$author_id  = $productinfo->post_author;
247 247
 		$post_title = $productinfo->post_title;
248 248
 	}
249 249
 
250
-	$post_title = '<a href="' . get_permalink( $pid ) . '">' . $post_title . '</a>';
250
+	$post_title = '<a href="'.get_permalink($pid).'">'.$post_title.'</a>';
251 251
 
252
-	$user_info = get_userdata( $author_id );
253
-	$to_email  = geodir_get_post_meta( $pid, 'geodir_email', true );
254
-	$to_name   = geodir_get_client_name( $author_id );
252
+	$user_info = get_userdata($author_id);
253
+	$to_email  = geodir_get_post_meta($pid, 'geodir_email', true);
254
+	$to_name   = geodir_get_client_name($author_id);
255 255
 
256
-	if ( $to_email == '' ) {
257
-		$to_email = get_option( 'admin_email' );
256
+	if ($to_email == '') {
257
+		$to_email = get_option('admin_email');
258 258
 	}
259 259
 
260 260
 	/**
@@ -275,10 +275,10 @@  discard block
 block discarded – undo
275 275
 	 * }
276 276
 	 * @param string $type     The form type, default: `Enquiry`.
277 277
 	 */
278
-	do_action( 'geodir_after_send_enquiry', $request, 'Enquiry' );
278
+	do_action('geodir_after_send_enquiry', $request, 'Enquiry');
279 279
 
280 280
 	$client_message = $frnd_comments;
281
-	$client_message .= '<br>' . __( 'From :', 'geodirectory' ) . ' ' . $yourname . '<br>' . __( 'Phone :', 'geodirectory' ) . ' ' . $inq_phone . '<br>' . __( 'Email :', 'geodirectory' ) . ' ' . $youremail . '<br><br>' . __( 'Sent from', 'geodirectory' ) . ' - <b><a href="' . trailingslashit( home_url() ) . '">' . get_option( 'blogname' ) . '</a></b>.';
281
+	$client_message .= '<br>'.__('From :', 'geodirectory').' '.$yourname.'<br>'.__('Phone :', 'geodirectory').' '.$inq_phone.'<br>'.__('Email :', 'geodirectory').' '.$youremail.'<br><br>'.__('Sent from', 'geodirectory').' - <b><a href="'.trailingslashit(home_url()).'">'.get_option('blogname').'</a></b>.';
282 282
 	/**
283 283
 	 * Filter client message text.
284 284
 	 *
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 	 *
287 287
 	 * @param string $client_message Client message text.
288 288
 	 */
289
-	$client_message = apply_filters( 'geodir_inquiry_email_msg', $client_message );
289
+	$client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
290 290
 
291 291
 	/**
292 292
 	 * Called before the send enquiry email is sent.
@@ -305,12 +305,12 @@  discard block
 block discarded – undo
305 305
 	 *
306 306
 	 * }
307 307
 	 */
308
-	do_action( 'geodir_before_send_enquiry_email', $request );
309
-	if ( $to_email ) {
308
+	do_action('geodir_before_send_enquiry_email', $request);
309
+	if ($to_email) {
310 310
 		// strip slashes message
311
-		$client_message = stripslashes_deep( $client_message );
311
+		$client_message = stripslashes_deep($client_message);
312 312
 
313
-		geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid'] );//To client email
313
+		geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']); //To client email
314 314
 	}
315 315
 
316 316
 	/**
@@ -330,12 +330,12 @@  discard block
 block discarded – undo
330 330
 	 *
331 331
 	 * }
332 332
 	 */
333
-	do_action( 'geodir_after_send_enquiry_email', $request );
334
-	$url = get_permalink( $pid );
335
-	if ( strstr( $url, '?' ) ) {
336
-		$url = $url . "&send_inquiry=success";
333
+	do_action('geodir_after_send_enquiry_email', $request);
334
+	$url = get_permalink($pid);
335
+	if (strstr($url, '?')) {
336
+		$url = $url."&send_inquiry=success";
337 337
 	} else {
338
-		$url = $url . "?send_inquiry=success";
338
+		$url = $url."?send_inquiry=success";
339 339
 	}
340 340
 	/**
341 341
 	 * Filter redirect url after the send enquiry email is sent.
@@ -344,8 +344,8 @@  discard block
 block discarded – undo
344 344
 	 *
345 345
 	 * @param string $url Redirect url.
346 346
 	 */
347
-	$url = apply_filters( 'geodir_send_enquiry_after_submit_redirect', $url );
348
-	wp_redirect( $url );
347
+	$url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
348
+	wp_redirect($url);
349 349
 	gd_die();
350 350
 
351 351
 }
@@ -374,11 +374,11 @@  discard block
 block discarded – undo
374 374
  * }
375 375
  * @global object $wpdb        WordPress Database object.
376 376
  */
377
-function geodir_send_friend( $request ) {
377
+function geodir_send_friend($request) {
378 378
 	global $wpdb;
379 379
 
380 380
 	// strip slashes from text
381
-	$request = ! empty( $request ) ? stripslashes_deep( $request ) : $request;
381
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
382 382
 
383 383
 	$yourname      = $request['yourname'];
384 384
 	$youremail     = $request['youremail'];
@@ -387,13 +387,13 @@  discard block
 block discarded – undo
387 387
 	$pid           = $request['pid'];
388 388
 	$to_email      = $request['to_email'];
389 389
 	$to_name       = $request['to_name'];
390
-	if ( $request['pid'] ) {
390
+	if ($request['pid']) {
391 391
 		$productinfosql = $wpdb->prepare(
392 392
 			"select ID,post_title from $wpdb->posts where ID =%d",
393
-			array( $request['pid'] )
393
+			array($request['pid'])
394 394
 		);
395
-		$productinfo    = $wpdb->get_results( $productinfosql );
396
-		foreach ( $productinfo as $productinfoObj ) {
395
+		$productinfo = $wpdb->get_results($productinfosql);
396
+		foreach ($productinfo as $productinfoObj) {
397 397
 			$post_title = $productinfoObj->post_title;
398 398
 		}
399 399
 	}
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
 	 *
418 418
 	 * }
419 419
 	 */
420
-	do_action( 'geodir_before_send_to_friend_email', $request );
421
-	geodir_sendEmail( $youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid'] );//To client email
420
+	do_action('geodir_before_send_to_friend_email', $request);
421
+	geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']); //To client email
422 422
 
423 423
 	/**
424 424
 	 * Called after the send to friend email is sent.
@@ -439,13 +439,13 @@  discard block
 block discarded – undo
439 439
 	 *
440 440
 	 * }
441 441
 	 */
442
-	do_action( 'geodir_after_send_to_friend_email', $request );
442
+	do_action('geodir_after_send_to_friend_email', $request);
443 443
 
444
-	$url = get_permalink( $pid );
445
-	if ( strstr( $url, '?' ) ) {
446
-		$url = $url . "&sendtofrnd=success";
444
+	$url = get_permalink($pid);
445
+	if (strstr($url, '?')) {
446
+		$url = $url."&sendtofrnd=success";
447 447
 	} else {
448
-		$url = $url . "?sendtofrnd=success";
448
+		$url = $url."?sendtofrnd=success";
449 449
 	}
450 450
 	/**
451 451
 	 * Filter redirect url after the send to friend email is sent.
@@ -454,8 +454,8 @@  discard block
 block discarded – undo
454 454
 	 *
455 455
 	 * @param string $url Redirect url.
456 456
 	 */
457
-	$url = apply_filters( 'geodir_send_to_friend_after_submit_redirect', $url );
458
-	wp_redirect( $url );
457
+	$url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
458
+	wp_redirect($url);
459 459
 	gd_die();
460 460
 }
461 461
 
@@ -469,8 +469,8 @@  discard block
 block discarded – undo
469 469
  *
470 470
  * @param string $hash_key
471 471
  */
472
-function geodir_before_tab_content( $hash_key ) {
473
-	switch ( $hash_key ) {
472
+function geodir_before_tab_content($hash_key) {
473
+	switch ($hash_key) {
474 474
 		case 'post_info' :
475 475
 			echo '<div class="geodir-company_info field-group">';
476 476
 			break;
@@ -480,7 +480,7 @@  discard block
 block discarded – undo
480 480
 			 *
481 481
 			 * @since 1.0.0
482 482
 			 */
483
-			echo ' <div id="' . apply_filters( 'geodir_post_gallery_id', 'geodir-post-gallery' ) . '" class="clearfix" >';
483
+			echo ' <div id="'.apply_filters('geodir_post_gallery_id', 'geodir-post-gallery').'" class="clearfix" >';
484 484
 			break;
485 485
 		case 'reviews' :
486 486
 			echo '<div id="reviews-wrap" class="clearfix"> ';
@@ -504,8 +504,8 @@  discard block
 block discarded – undo
504 504
  *
505 505
  * @param string $hash_key
506 506
  */
507
-function geodir_after_tab_content( $hash_key ) {
508
-	switch ( $hash_key ) {
507
+function geodir_after_tab_content($hash_key) {
508
+	switch ($hash_key) {
509 509
 		case 'post_info' :
510 510
 			echo '</div>';
511 511
 			break;
@@ -536,25 +536,25 @@  discard block
 block discarded – undo
536 536
  * @global object $wpdb     WordPress Database object.
537 537
  * @return bool|null|string Returns default sort results, when the post type is valid. Otherwise returns false.
538 538
  */
539
-function geodir_get_posts_default_sort( $post_type ) {
539
+function geodir_get_posts_default_sort($post_type) {
540 540
 
541 541
 	global $wpdb;
542 542
 
543
-	if ( $post_type != '' ) {
543
+	if ($post_type != '') {
544 544
 
545 545
 		$all_postypes = geodir_get_posttypes();
546 546
 
547
-		if ( ! in_array( $post_type, $all_postypes ) ) {
547
+		if (!in_array($post_type, $all_postypes)) {
548 548
 			return false;
549 549
 		}
550 550
 
551
-		$sort_field_info = $wpdb->get_var( $wpdb->prepare( "select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where	post_type= %s and is_active=%d and is_default=%d", array(
551
+		$sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." where	post_type= %s and is_active=%d and is_default=%d", array(
552 552
 			$post_type,
553 553
 			1,
554 554
 			1
555
-		) ) );
555
+		)));
556 556
 
557
-		if ( ! empty( $sort_field_info ) ) {
557
+		if (!empty($sort_field_info)) {
558 558
 			return $sort_field_info;
559 559
 		}
560 560
 
@@ -574,20 +574,20 @@  discard block
 block discarded – undo
574 574
  * @global object $wpdb     WordPress Database object.
575 575
  * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false.
576 576
  */
577
-function geodir_get_sort_options( $post_type ) {
577
+function geodir_get_sort_options($post_type) {
578 578
 	global $wpdb;
579 579
 
580
-	if ( $post_type != '' ) {
580
+	if ($post_type != '') {
581 581
 		$all_postypes = geodir_get_posttypes();
582 582
 
583
-		if ( ! in_array( $post_type, $all_postypes ) ) {
583
+		if (!in_array($post_type, $all_postypes)) {
584 584
 			return false;
585 585
 		}
586 586
 
587
-		$sort_field_info = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
587
+		$sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array(
588 588
 			$post_type,
589 589
 			1
590
-		) ) );
590
+		)));
591 591
 
592 592
 		/**
593 593
 		 * Filter post sort options.
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
 		 * @param array $sort_field_info Unfiltered sort field array.
598 598
 		 * @param string $post_type      Post type.
599 599
 		 */
600
-		return apply_filters( 'geodir_get_sort_options', $sort_field_info, $post_type );
600
+		return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
601 601
 	}
602 602
 
603 603
 }
@@ -618,63 +618,63 @@  discard block
 block discarded – undo
618 618
 	 *
619 619
 	 * @since 1.4.4
620 620
 	 */
621
-	if ( is_search() ) {
621
+	if (is_search()) {
622 622
 		return;
623 623
 	}
624 624
 
625 625
 	$sort_by = '';
626 626
 
627
-	if ( isset( $_REQUEST['sort_by'] ) ) {
627
+	if (isset($_REQUEST['sort_by'])) {
628 628
 		$sort_by = $_REQUEST['sort_by'];
629 629
 	}
630 630
 
631 631
 	$gd_post_type = geodir_get_current_posttype();
632 632
 
633
-	$sort_options = geodir_get_sort_options( $gd_post_type );
633
+	$sort_options = geodir_get_sort_options($gd_post_type);
634 634
 
635 635
 
636 636
 	$sort_field_options = '';
637 637
 
638
-	if ( ! empty( $sort_options ) ) {
639
-		foreach ( $sort_options as $sort ) {
640
-			$sort = stripslashes_deep( $sort ); // strip slashes
638
+	if (!empty($sort_options)) {
639
+		foreach ($sort_options as $sort) {
640
+			$sort = stripslashes_deep($sort); // strip slashes
641 641
 
642
-			$label = __( $sort->site_title, 'geodirectory' );
642
+			$label = __($sort->site_title, 'geodirectory');
643 643
 
644
-			if ( $sort->field_type == 'random' ) {
644
+			if ($sort->field_type == 'random') {
645 645
 				$key = $sort->field_type;
646
-				( $sort_by == $key || ( $sort->is_default == '1' && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
647
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
646
+				($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
647
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
648 648
 			}
649 649
 
650
-			if ( $sort->htmlvar_name == 'comment_count' ) {
650
+			if ($sort->htmlvar_name == 'comment_count') {
651 651
 				$sort->htmlvar_name = 'rating_count';
652 652
 			}
653 653
 
654
-			if ( $sort->sort_asc ) {
655
-				$key   = $sort->htmlvar_name . '_asc';
654
+			if ($sort->sort_asc) {
655
+				$key   = $sort->htmlvar_name.'_asc';
656 656
 				$label = $sort->site_title;
657
-				if ( $sort->asc_title ) {
657
+				if ($sort->asc_title) {
658 658
 					$label = $sort->asc_title;
659 659
 				}
660
-				( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
661
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
660
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
661
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
662 662
 			}
663 663
 
664
-			if ( $sort->sort_desc ) {
665
-				$key   = $sort->htmlvar_name . '_desc';
664
+			if ($sort->sort_desc) {
665
+				$key   = $sort->htmlvar_name.'_desc';
666 666
 				$label = $sort->site_title;
667
-				if ( $sort->desc_title ) {
667
+				if ($sort->desc_title) {
668 668
 					$label = $sort->desc_title;
669 669
 				}
670
-				( $sort_by == $key || ( $sort->is_default == '1' && $sort->default_order == $key && ! isset( $_REQUEST['sort_by'] ) ) ) ? $selected = 'selected="selected"' : $selected = '';
671
-				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg( 'sort_by', $key ) ) . '">' . __( $label, 'geodirectory' ) . '</option>';
670
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
671
+				$sort_field_options .= '<option '.$selected.' value="'.esc_url(add_query_arg('sort_by', $key)).'">'.__($label, 'geodirectory').'</option>';
672 672
 			}
673 673
 
674 674
 		}
675 675
 	}
676 676
 
677
-	if ( $sort_field_options != '' ) {
677
+	if ($sort_field_options != '') {
678 678
 
679 679
 		?>
680 680
 
@@ -683,9 +683,9 @@  discard block
 block discarded – undo
683 683
 			<select name="sort_by" id="sort_by" onchange="javascript:window.location=this.value;">
684 684
 
685 685
 				<option
686
-					value="<?php echo esc_url( add_query_arg( 'sort_by', '' ) ); ?>" <?php if ( $sort_by == '' ) {
686
+					value="<?php echo esc_url(add_query_arg('sort_by', '')); ?>" <?php if ($sort_by == '') {
687 687
 					echo 'selected="selected"';
688
-				} ?>><?php _e( 'Sort By', 'geodirectory' ); ?></option><?php
688
+				} ?>><?php _e('Sort By', 'geodirectory'); ?></option><?php
689 689
 
690 690
 				echo $sort_field_options; ?>
691 691
 
@@ -713,9 +713,9 @@  discard block
 block discarded – undo
713 713
  *
714 714
  * @return string Returns the section title.
715 715
  */
716
-function geodir_advance_customfields_heading( $title, $field_type ) {
716
+function geodir_advance_customfields_heading($title, $field_type) {
717 717
 
718
-	if ( in_array( $field_type, array( 'multiselect', 'textarea', 'taxonomy' ) ) ) {
718
+	if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
719 719
 		$title = '';
720 720
 	}
721 721
 
@@ -737,19 +737,19 @@  discard block
 block discarded – undo
737 737
  * @global object $gd_session       GeoDirectory Session object.
738 738
  * @return string Returns related posts html.
739 739
  */
740
-function geodir_related_posts_display( $request ) {
741
-	if ( ! empty( $request ) ) {
742
-		$before_title = ( isset( $request['before_title'] ) && ! empty( $request['before_title'] ) ) ? $request['before_title'] : '';
743
-		$after_title  = ( isset( $request['after_title'] ) && ! empty( $request['after_title'] ) ) ? $request['after_title'] : '';
744
-
745
-		$title               = ( isset( $request['title'] ) && ! empty( $request['title'] ) ) ? $request['title'] : __( 'Related Listings', 'geodirectory' );
746
-		$post_number         = ( isset( $request['post_number'] ) && ! empty( $request['post_number'] ) ) ? $request['post_number'] : '5';
747
-		$relate_to           = ( isset( $request['relate_to'] ) && ! empty( $request['relate_to'] ) ) ? $request['relate_to'] : 'category';
748
-		$layout              = ( isset( $request['layout'] ) && ! empty( $request['layout'] ) ) ? $request['layout'] : 'gridview_onehalf';
749
-		$add_location_filter = ( isset( $request['add_location_filter'] ) && ! empty( $request['add_location_filter'] ) ) ? $request['add_location_filter'] : '0';
750
-		$listing_width       = ( isset( $request['listing_width'] ) && ! empty( $request['listing_width'] ) ) ? $request['listing_width'] : '';
751
-		$list_sort           = ( isset( $request['list_sort'] ) && ! empty( $request['list_sort'] ) ) ? $request['list_sort'] : 'latest';
752
-		$character_count     = ( isset( $request['character_count'] ) && ! empty( $request['character_count'] ) ) ? $request['character_count'] : '';
740
+function geodir_related_posts_display($request) {
741
+	if (!empty($request)) {
742
+		$before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : '';
743
+		$after_title  = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : '';
744
+
745
+		$title               = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
746
+		$post_number         = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5';
747
+		$relate_to           = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category';
748
+		$layout              = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf';
749
+		$add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0';
750
+		$listing_width       = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : '';
751
+		$list_sort           = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest';
752
+		$character_count     = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : '';
753 753
 
754 754
 		global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon;
755 755
 		$related_parent_lat   = $post->post_latitude;
@@ -757,10 +757,10 @@  discard block
 block discarded – undo
757 757
 		$arr_detail_page_tabs = geodir_detail_page_tabs_list();
758 758
 
759 759
 		$related_listing_array = array();
760
-		if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
761
-			$related_listing_array = get_option( 'geodir_add_related_listing_posttypes' );
760
+		if (get_option('geodir_add_related_listing_posttypes')) {
761
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
762 762
 		}
763
-		if ( in_array( $post->post_type, $related_listing_array ) ) {
763
+		if (in_array($post->post_type, $related_listing_array)) {
764 764
 			$arr_detail_page_tabs['related_listing']['is_display'] = true;
765 765
 		}
766 766
 
@@ -772,90 +772,90 @@  discard block
 block discarded – undo
772 772
 		$tax_field         = 'id';
773 773
 		$category          = array();
774 774
 
775
-		if ( isset( $_REQUEST['backandedit'] ) ) {
776
-			$post      = (object) $gd_session->get( 'listing' );
775
+		if (isset($_REQUEST['backandedit'])) {
776
+			$post      = (object) $gd_session->get('listing');
777 777
 			$post_type = $post->listing_type;
778
-			if ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
778
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
779 779
 				$post_id = $_REQUEST['pid'];
780 780
 			}
781
-		} elseif ( isset( $_REQUEST['pid'] ) && $_REQUEST['pid'] != '' ) {
782
-			$post      = geodir_get_post_info( $_REQUEST['pid'] );
781
+		} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
782
+			$post      = geodir_get_post_info($_REQUEST['pid']);
783 783
 			$post_type = $post->post_type;
784 784
 			$post_id   = $_REQUEST['pid'];
785
-		} elseif ( isset( $post->post_type ) && $post->post_type != '' ) {
785
+		} elseif (isset($post->post_type) && $post->post_type != '') {
786 786
 			$post_type = $post->post_type;
787 787
 			$post_id   = $post->ID;
788 788
 		}
789 789
 
790
-		if ( $relate_to == 'category' ) {
790
+		if ($relate_to == 'category') {
791 791
 
792
-			$category_taxonomy = $post_type . $relate_to;
793
-			if ( isset( $post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '' ) {
794
-				$category = explode( ',', trim( $post->{$category_taxonomy}, ',' ) );
792
+			$category_taxonomy = $post_type.$relate_to;
793
+			if (isset($post->{$category_taxonomy} ) && $post->{$category_taxonomy} != '') {
794
+				$category = explode(',', trim($post->{$category_taxonomy}, ','));
795 795
 			}
796 796
 
797
-		} elseif ( $relate_to == 'tags' ) {
797
+		} elseif ($relate_to == 'tags') {
798 798
 
799
-			$category_taxonomy = $post_type . '_' . $relate_to;
800
-			if ( $post->post_tags != '' ) {
801
-				$category = explode( ',', trim( $post->post_tags, ',' ) );
799
+			$category_taxonomy = $post_type.'_'.$relate_to;
800
+			if ($post->post_tags != '') {
801
+				$category = explode(',', trim($post->post_tags, ','));
802 802
 			}
803 803
 			$tax_field = 'name';
804 804
 		}
805 805
 
806 806
 		/* --- return false in invalid request --- */
807
-		if ( empty( $category ) ) {
807
+		if (empty($category)) {
808 808
 			return false;
809 809
 		}
810 810
 
811 811
 		$all_postypes = geodir_get_posttypes();
812 812
 
813
-		if ( ! in_array( $post_type, $all_postypes ) ) {
813
+		if (!in_array($post_type, $all_postypes)) {
814 814
 			return false;
815 815
 		}
816 816
 
817 817
 		/* --- return false in invalid request --- */
818 818
 
819 819
 		$location_url = '';
820
-		if ( $add_location_filter != '0' ) {
820
+		if ($add_location_filter != '0') {
821 821
 			$location_url             = array();
822
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
822
+			$geodir_show_location_url = get_option('geodir_show_location_url');
823 823
 
824
-			$gd_city = get_query_var( 'gd_city' );
824
+			$gd_city = get_query_var('gd_city');
825 825
 
826
-			if ( $gd_city ) {
827
-				$gd_country = get_query_var( 'gd_country' );
828
-				$gd_region  = get_query_var( 'gd_region' );
826
+			if ($gd_city) {
827
+				$gd_country = get_query_var('gd_country');
828
+				$gd_region  = get_query_var('gd_region');
829 829
 			} else {
830 830
 				$location = geodir_get_default_location();
831 831
 
832
-				$gd_country = isset( $location->country_slug ) ? $location->country_slug : '';
833
-				$gd_region  = isset( $location->region_slug ) ? $location->region_slug : '';
834
-				$gd_city    = isset( $location->city_slug ) ? $location->city_slug : '';
832
+				$gd_country = isset($location->country_slug) ? $location->country_slug : '';
833
+				$gd_region  = isset($location->region_slug) ? $location->region_slug : '';
834
+				$gd_city    = isset($location->city_slug) ? $location->city_slug : '';
835 835
 			}
836 836
 
837
-			if ( $geodir_show_location_url == 'all' ) {
837
+			if ($geodir_show_location_url == 'all') {
838 838
 				$location_url[] = $gd_country;
839 839
 				$location_url[] = $gd_region;
840
-			} else if ( $geodir_show_location_url == 'country_city' ) {
840
+			} else if ($geodir_show_location_url == 'country_city') {
841 841
 				$location_url[] = $gd_country;
842
-			} else if ( $geodir_show_location_url == 'region_city' ) {
842
+			} else if ($geodir_show_location_url == 'region_city') {
843 843
 				$location_url[] = $gd_region;
844 844
 			}
845 845
 
846 846
 			$location_url[] = $gd_city;
847 847
 
848
-			$location_url = implode( '/', $location_url );
848
+			$location_url = implode('/', $location_url);
849 849
 		}
850 850
 
851 851
 
852
-		if ( ! empty( $category ) ) {
852
+		if (!empty($category)) {
853 853
 			global $geodir_add_location_url;
854 854
 			$geodir_add_location_url = '0';
855
-			if ( $add_location_filter != '0' ) {
855
+			if ($add_location_filter != '0') {
856 856
 				$geodir_add_location_url = '1';
857 857
 			}
858
-			$viewall_url             = get_term_link( (int) $category[0], $post_type . $category_taxonomy );
858
+			$viewall_url             = get_term_link((int) $category[0], $post_type.$category_taxonomy);
859 859
 			$geodir_add_location_url = null;
860 860
 		}
861 861
 		ob_start();
@@ -865,24 +865,24 @@  discard block
 block discarded – undo
865 865
 		<div class="geodir_locations geodir_location_listing">
866 866
 
867 867
 			<?php
868
-			if ( isset( $request['is_widget'] ) && $request['is_widget'] == '1' ) {
868
+			if (isset($request['is_widget']) && $request['is_widget'] == '1') {
869 869
 				/** geodir_before_title filter Documented in geodirectory_widgets.php */
870
-				$before_title = isset( $before_title ) ? $before_title : apply_filters( 'geodir_before_title', '<h3 class="widget-title">' );
870
+				$before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
871 871
 				/** geodir_after_title filter Documented in geodirectory_widgets.php */
872
-				$after_title = isset( $after_title ) ? $after_title : apply_filters( 'geodir_after_title', '</h3>' );
872
+				$after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
873 873
 				?>
874 874
 				<div class="location_list_heading clearfix">
875
-					<?php echo $before_title . $title . $after_title; ?>
875
+					<?php echo $before_title.$title.$after_title; ?>
876 876
 				</div>
877 877
 				<?php
878 878
 			}
879 879
 			$query_args = array(
880 880
 				'posts_per_page'   => $post_number,
881 881
 				'is_geodir_loop'   => true,
882
-				'gd_location'      => ( $add_location_filter ) ? true : false,
882
+				'gd_location'      => ($add_location_filter) ? true : false,
883 883
 				'post_type'        => $post_type,
884 884
 				'order_by'         => $list_sort,
885
-				'post__not_in'     => array( $post_id ),
885
+				'post__not_in'     => array($post_id),
886 886
 				'excerpt_length'   => $character_count,
887 887
 				'related_listings' => $is_display
888 888
 			);
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
 				'terms'    => $category
894 894
 			);
895 895
 
896
-			$query_args['tax_query'] = array( $tax_query );
896
+			$query_args['tax_query'] = array($tax_query);
897 897
 
898 898
 			global $gridview_columns, $post;
899 899
 
@@ -905,21 +905,21 @@  discard block
 block discarded – undo
905 905
 			 * @param array $query_args The query array.
906 906
 			 * @param array $request Related posts request array.
907 907
 			 */
908
-			$query_args = apply_filters( 'geodir_related_posts_widget_query_args', $query_args, $request );
908
+			$query_args = apply_filters('geodir_related_posts_widget_query_args', $query_args, $request);
909 909
 
910
-			query_posts( $query_args );
910
+			query_posts($query_args);
911 911
 
912
-			if ( strstr( $layout, 'gridview' ) ) {
913
-				$listing_view_exp = explode( '_', $layout );
912
+			if (strstr($layout, 'gridview')) {
913
+				$listing_view_exp = explode('_', $layout);
914 914
 				$gridview_columns = $layout;
915 915
 				$layout           = $listing_view_exp[0];
916
-			} else if ( $layout == 'list' ) {
916
+			} else if ($layout == 'list') {
917 917
 				$gridview_columns = '';
918 918
 			}
919 919
 			$related_posts = true;
920 920
 
921 921
 			$related_nearest = false;
922
-			if ( $list_sort == 'nearest' ) {
922
+			if ($list_sort == 'nearest') {
923 923
 				$related_nearest = true;
924 924
 			}
925 925
 
@@ -929,14 +929,14 @@  discard block
 block discarded – undo
929 929
 			 *
930 930
 			 * @since 1.0.0
931 931
 			 */
932
-			$template = apply_filters( "geodir_template_part-related-listing-listview", geodir_locate_template( 'listing-listview' ) );
932
+			$template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
933 933
 
934 934
 			/**
935 935
 			 * Includes related listing listview template.
936 936
 			 *
937 937
 			 * @since 1.0.0
938 938
 			 */
939
-			include( $template );
939
+			include($template);
940 940
 
941 941
 			wp_reset_query();
942 942
 			$post            = $origi_post;
@@ -964,12 +964,12 @@  discard block
 block discarded – undo
964 964
 function geodir_category_count_script() {
965 965
 	global $geodir_post_category_str;
966 966
 
967
-	if ( ! empty( $geodir_post_category_str ) ) {
968
-		$geodir_post_category_str = serialize( $geodir_post_category_str );
967
+	if (!empty($geodir_post_category_str)) {
968
+		$geodir_post_category_str = serialize($geodir_post_category_str);
969 969
 	}
970 970
 
971
-	$all_var['post_category_array'] = html_entity_decode( (string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8' );
972
-	$script                         = "var post_category_array = " . json_encode( $all_var ) . ';';
971
+	$all_var['post_category_array'] = html_entity_decode((string) $geodir_post_category_str, ENT_QUOTES, 'UTF-8');
972
+	$script                         = "var post_category_array = ".json_encode($all_var).';';
973 973
 	echo '<script>';
974 974
 	echo $script;
975 975
 	echo '</script>';
@@ -984,8 +984,8 @@  discard block
 block discarded – undo
984 984
  * @return string Returns the default language.
985 985
  */
986 986
 function geodir_get_map_default_language() {
987
-	$geodir_default_map_language = get_option( 'geodir_default_map_language' );
988
-	if ( empty( $geodir_default_map_language ) ) {
987
+	$geodir_default_map_language = get_option('geodir_default_map_language');
988
+	if (empty($geodir_default_map_language)) {
989 989
 		$geodir_default_map_language = 'en';
990 990
 	}
991 991
 
@@ -996,7 +996,7 @@  discard block
 block discarded – undo
996 996
 	 *
997 997
 	 * @param string $geodir_default_map_language Default map language.
998 998
 	 */
999
-	return apply_filters( 'geodir_default_map_language', $geodir_default_map_language );
999
+	return apply_filters('geodir_default_map_language', $geodir_default_map_language);
1000 1000
 }
1001 1001
 
1002 1002
 /**
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
  * @return string Returns the api key.
1008 1008
  */
1009 1009
 function geodir_get_map_api_key() {
1010
-	$key = get_option( 'geodir_google_api_key' );
1010
+	$key = get_option('geodir_google_api_key');
1011 1011
 
1012 1012
 	/**
1013 1013
 	 * Filter Google maps api key.
@@ -1016,7 +1016,7 @@  discard block
 block discarded – undo
1016 1016
 	 *
1017 1017
 	 * @param string $key Google maps api key.
1018 1018
 	 */
1019
-	return apply_filters( 'geodir_google_api_key', $key );
1019
+	return apply_filters('geodir_google_api_key', $key);
1020 1020
 }
1021 1021
 
1022 1022
 
@@ -1035,20 +1035,20 @@  discard block
 block discarded – undo
1035 1035
 	global $wp, $post, $wp_query, $wpdb, $geodir_addon_list;
1036 1036
 
1037 1037
 	$is_geodir_page = geodir_is_geodir_page();
1038
-	if ( ! $is_geodir_page ) {
1038
+	if (!$is_geodir_page) {
1039 1039
 		return;
1040 1040
 	}// if non GD page, bail
1041 1041
 
1042 1042
 	$use_gd_meta = true;
1043
-	if ( class_exists( 'WPSEO_Frontend' ) || class_exists( 'All_in_One_SEO_Pack' ) ) {
1043
+	if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1044 1044
 		$use_gd_meta = false;
1045 1045
 
1046
-		if ( geodir_is_page( 'search' ) ) {
1046
+		if (geodir_is_page('search')) {
1047 1047
 			$use_gd_meta = true;
1048 1048
 		}
1049 1049
 	}
1050 1050
 
1051
-	if ( ! $use_gd_meta ) {
1051
+	if (!$use_gd_meta) {
1052 1052
 		return;
1053 1053
 	}// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active.
1054 1054
 
@@ -1056,170 +1056,170 @@  discard block
 block discarded – undo
1056 1056
 
1057 1057
 	$all_postypes = geodir_get_posttypes();
1058 1058
 
1059
-	$geodir_taxonomies = geodir_get_taxonomies( '', true );
1059
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1060 1060
 
1061 1061
 	$meta_desc = '';
1062 1062
 	$meta_key  = '';
1063
-	if ( isset( $current_term->ID ) && $current_term->ID == geodir_location_page_id() ) {
1063
+	if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
1064 1064
 		/**
1065 1065
 		 * Filter SEO meta location description.
1066 1066
 		 *
1067 1067
 		 * @since 1.0.0
1068 1068
 		 */
1069
-		$meta_desc = apply_filters( 'geodir_seo_meta_location_description', '' );
1069
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', '');
1070 1070
 		$meta_desc .= '';
1071 1071
 	}
1072
-	if ( have_posts() && is_single() OR is_page() ) {
1073
-		while ( have_posts() ) {
1072
+	if (have_posts() && is_single() OR is_page()) {
1073
+		while (have_posts()) {
1074 1074
 			the_post();
1075 1075
 
1076
-			if ( has_excerpt() ) {
1077
-				$out_excerpt = strip_tags( strip_shortcodes( get_the_excerpt() ) );
1078
-				if ( empty( $out_excerpt ) ) {
1079
-					$out_excerpt = strip_tags( do_shortcode( get_the_excerpt() ) );
1076
+			if (has_excerpt()) {
1077
+				$out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt()));
1078
+				if (empty($out_excerpt)) {
1079
+					$out_excerpt = strip_tags(do_shortcode(get_the_excerpt()));
1080 1080
 				}
1081
-				$out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $out_excerpt );
1081
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
1082 1082
 			} else {
1083
-				$out_excerpt = str_replace( array( "\r\n", "\r", "\n" ), "", $post->post_content );
1084
-				$out_excerpt = strip_tags( strip_shortcodes( $out_excerpt ) );
1085
-				if ( empty( $out_excerpt ) ) {
1086
-					$out_excerpt = strip_tags( do_shortcode( $out_excerpt ) ); // parse short code from content
1083
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
1084
+				$out_excerpt = strip_tags(strip_shortcodes($out_excerpt));
1085
+				if (empty($out_excerpt)) {
1086
+					$out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content
1087 1087
 				}
1088
-				$out_excerpt = trim( wp_trim_words( $out_excerpt, 35, '' ), '.!?,;:-' );
1088
+				$out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-');
1089 1089
 			}
1090 1090
 
1091 1091
 			$meta_desc .= $out_excerpt;
1092 1092
 		}
1093
-	} elseif ( ( is_category() || is_tag() ) && isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
1094
-		if ( is_category() ) {
1095
-			$meta_desc .= __( "Posts related to Category:", 'geodirectory' ) . " " . ucfirst( single_cat_title( "", false ) );
1096
-		} elseif ( is_tag() ) {
1097
-			$meta_desc .= __( "Posts related to Tag:", 'geodirectory' ) . " " . ucfirst( single_tag_title( "", false ) );
1093
+	} elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1094
+		if (is_category()) {
1095
+			$meta_desc .= __("Posts related to Category:", 'geodirectory')." ".ucfirst(single_cat_title("", false));
1096
+		} elseif (is_tag()) {
1097
+			$meta_desc .= __("Posts related to Tag:", 'geodirectory')." ".ucfirst(single_tag_title("", false));
1098 1098
 		}
1099
-	} elseif ( isset( $current_term->taxonomy ) && in_array( $current_term->taxonomy, $geodir_taxonomies ) ) {
1100
-		$meta_desc .= isset( $current_term->description ) ? $current_term->description : '';
1099
+	} elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1100
+		$meta_desc .= isset($current_term->description) ? $current_term->description : '';
1101 1101
 	}
1102 1102
 
1103 1103
 
1104 1104
 	$geodir_post_type       = geodir_get_current_posttype();
1105
-	$geodir_post_type_info  = get_post_type_object( $geodir_post_type );
1106
-	$geodir_is_page_listing = geodir_is_page( 'listing' ) ? true : false;
1107
-
1108
-	$category_taxonomy = geodir_get_taxonomies( $geodir_post_type );
1109
-	$tag_taxonomy      = geodir_get_taxonomies( $geodir_post_type, true );
1110
-
1111
-	$geodir_is_category = isset( $category_taxonomy[0] ) && get_query_var( $category_taxonomy[0] ) ? get_query_var( $category_taxonomy[0] ) : false;
1112
-	$geodir_is_tag      = isset( $tag_taxonomy[0] ) && get_query_var( $tag_taxonomy[0] ) ? true : false;
1113
-
1114
-	$geodir_is_search        = geodir_is_page( 'search' ) ? true : false;
1115
-	$geodir_is_location      = geodir_is_page( 'location' ) ? true : false;
1116
-	$geodir_location_manager = isset( $geodir_addon_list['geodir_location_manager'] ) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1117
-	$godir_location_terms    = geodir_get_current_location_terms( 'query_vars' );
1118
-	$gd_city                 = $geodir_location_manager && isset( $godir_location_terms['gd_city'] ) ? $godir_location_terms['gd_city'] : null;
1119
-	$gd_region               = $geodir_location_manager && isset( $godir_location_terms['gd_region'] ) ? $godir_location_terms['gd_region'] : null;
1120
-	$gd_country              = $geodir_location_manager && isset( $godir_location_terms['gd_country'] ) ? $godir_location_terms['gd_country'] : null;
1121
-	$replace_location        = __( 'Everywhere', 'geodirectory' );
1105
+	$geodir_post_type_info  = get_post_type_object($geodir_post_type);
1106
+	$geodir_is_page_listing = geodir_is_page('listing') ? true : false;
1107
+
1108
+	$category_taxonomy = geodir_get_taxonomies($geodir_post_type);
1109
+	$tag_taxonomy      = geodir_get_taxonomies($geodir_post_type, true);
1110
+
1111
+	$geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false;
1112
+	$geodir_is_tag      = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false;
1113
+
1114
+	$geodir_is_search        = geodir_is_page('search') ? true : false;
1115
+	$geodir_is_location      = geodir_is_page('location') ? true : false;
1116
+	$geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1117
+	$godir_location_terms    = geodir_get_current_location_terms('query_vars');
1118
+	$gd_city                 = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : null;
1119
+	$gd_region               = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : null;
1120
+	$gd_country              = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : null;
1121
+	$replace_location        = __('Everywhere', 'geodirectory');
1122 1122
 	$location_id             = null;
1123
-	if ( $geodir_location_manager ) {
1124
-		$sql           = $wpdb->prepare( "SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array( $gd_city ) );
1125
-		$location_id   = (int) $wpdb->get_var( $sql );
1123
+	if ($geodir_location_manager) {
1124
+		$sql           = $wpdb->prepare("SELECT location_id FROM ".POST_LOCATION_TABLE." WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
1125
+		$location_id   = (int) $wpdb->get_var($sql);
1126 1126
 		$location_type = geodir_what_is_current_location();
1127
-		if ( $location_type == 'city' ) {
1128
-			$replace_location = geodir_get_current_location( array( 'what' => 'city', 'echo' => false ) );
1129
-		} elseif ( $location_type == 'region' ) {
1130
-			$replace_location = geodir_get_current_location( array( 'what' => 'region', 'echo' => false ) );
1131
-		} elseif ( $location_type == 'country' ) {
1132
-			$replace_location = geodir_get_current_location( array( 'what' => 'country', 'echo' => false ) );
1133
-			$replace_location = __( $replace_location, 'geodirectory' );
1127
+		if ($location_type == 'city') {
1128
+			$replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
1129
+		} elseif ($location_type == 'region') {
1130
+			$replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
1131
+		} elseif ($location_type == 'country') {
1132
+			$replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
1133
+			$replace_location = __($replace_location, 'geodirectory');
1134 1134
 		}
1135
-		$country          = get_query_var( 'gd_country' );
1136
-		$region           = get_query_var( 'gd_region' );
1137
-		$city             = get_query_var( 'gd_city' );
1135
+		$country          = get_query_var('gd_country');
1136
+		$region           = get_query_var('gd_region');
1137
+		$city             = get_query_var('gd_city');
1138 1138
 		$current_location = '';
1139
-		if ( $country != '' ) {
1140
-			$current_location = get_actual_location_name( 'country', $country, true );
1139
+		if ($country != '') {
1140
+			$current_location = get_actual_location_name('country', $country, true);
1141 1141
 		}
1142
-		if ( $region != '' ) {
1143
-			$current_location = get_actual_location_name( 'region', $region );
1142
+		if ($region != '') {
1143
+			$current_location = get_actual_location_name('region', $region);
1144 1144
 		}
1145
-		if ( $city != '' ) {
1146
-			$current_location = get_actual_location_name( 'city', $city );
1145
+		if ($city != '') {
1146
+			$current_location = get_actual_location_name('city', $city);
1147 1147
 		}
1148 1148
 		$replace_location = $current_location != '' ? $current_location : $replace_location;
1149 1149
 	}
1150 1150
 
1151 1151
 	$geodir_meta_keys = '';
1152 1152
 	$geodir_meta_desc = '';
1153
-	if ( $is_geodir_page && ! empty( $geodir_post_type_info ) ) {
1154
-		if ( $geodir_is_page_listing || $geodir_is_search || geodir_is_page( 'add-listing' ) ) {
1155
-			$geodir_meta_keys = isset( $geodir_post_type_info->seo['meta_keyword'] ) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1153
+	if ($is_geodir_page && !empty($geodir_post_type_info)) {
1154
+		if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
1155
+			$geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1156 1156
 
1157
-			$geodir_meta_desc = isset( $geodir_post_type_info->description ) ? $geodir_post_type_info->description : $geodir_meta_desc;
1158
-			$geodir_meta_desc = isset( $geodir_post_type_info->seo['meta_description'] ) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1157
+			$geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc;
1158
+			$geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1159 1159
 
1160
-			if ( $geodir_is_category ) {
1161
-				$category = $geodir_is_category ? get_term_by( 'slug', $geodir_is_category, $category_taxonomy[0] ) : null;
1162
-				if ( isset( $category->term_id ) && ! empty( $category->term_id ) ) {
1160
+			if ($geodir_is_category) {
1161
+				$category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : null;
1162
+				if (isset($category->term_id) && !empty($category->term_id)) {
1163 1163
 					$category_id   = $category->term_id;
1164
-					$category_desc = trim( $category->description ) != '' ? trim( $category->description ) : get_tax_meta( $category_id, 'ct_cat_top_desc', false, $geodir_post_type );
1165
-					if ( $location_id ) {
1166
-						$option_name    = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id;
1167
-						$cat_loc_option = get_option( $option_name );
1168
-
1169
-						$gd_cat_loc_default = ! empty( $cat_loc_option ) && isset( $cat_loc_option['gd_cat_loc_default'] ) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1170
-						if ( ! $gd_cat_loc_default ) {
1171
-							$option_name   = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id;
1172
-							$option        = get_option( $option_name );
1173
-							$category_desc = isset( $option['gd_cat_loc_desc'] ) && trim( $option['gd_cat_loc_desc'] ) != '' ? trim( $option['gd_cat_loc_desc'] ) : $category_desc;
1164
+					$category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type);
1165
+					if ($location_id) {
1166
+						$option_name    = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id;
1167
+						$cat_loc_option = get_option($option_name);
1168
+
1169
+						$gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1170
+						if (!$gd_cat_loc_default) {
1171
+							$option_name   = 'geodir_cat_loc_'.$geodir_post_type.'_'.$category_id.'_'.$location_id;
1172
+							$option        = get_option($option_name);
1173
+							$category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc;
1174 1174
 						}
1175 1175
 					}
1176
-					$geodir_meta_desc = __( "Posts related to Category:", 'geodirectory' ) . " " . ucfirst( single_cat_title( "", false ) ) . '. ' . $category_desc;
1176
+					$geodir_meta_desc = __("Posts related to Category:", 'geodirectory')." ".ucfirst(single_cat_title("", false)).'. '.$category_desc;
1177 1177
 				}
1178
-			} else if ( $geodir_is_tag ) {
1179
-				$geodir_meta_desc = __( "Posts related to Tag:", 'geodirectory' ) . " " . ucfirst( single_tag_title( "", false ) ) . '. ' . $geodir_meta_desc;
1178
+			} else if ($geodir_is_tag) {
1179
+				$geodir_meta_desc = __("Posts related to Tag:", 'geodirectory')." ".ucfirst(single_tag_title("", false)).'. '.$geodir_meta_desc;
1180 1180
 			}
1181 1181
 		}
1182 1182
 	}
1183 1183
 
1184 1184
 
1185 1185
 	$gd_page = '';
1186
-	if ( geodir_is_page( 'home' ) ) {
1186
+	if (geodir_is_page('home')) {
1187 1187
 		$gd_page   = 'home';
1188
-		$meta_desc = ( get_option( 'geodir_meta_desc_homepage' ) ) ? get_option( 'geodir_meta_desc_homepage' ) : $meta_desc;
1189
-	} elseif ( geodir_is_page( 'detail' ) ) {
1188
+		$meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
1189
+	} elseif (geodir_is_page('detail')) {
1190 1190
 		$gd_page   = 'detail';
1191
-		$meta_desc = ( get_option( 'geodir_meta_desc_detail' ) ) ? get_option( 'geodir_meta_desc_detail' ) : $meta_desc;
1192
-	} elseif ( geodir_is_page( 'pt' ) ) {
1191
+		$meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
1192
+	} elseif (geodir_is_page('pt')) {
1193 1193
 		$gd_page   = 'pt';
1194
-		$meta_desc = ( get_option( 'geodir_meta_desc_pt' ) ) ? get_option( 'geodir_meta_desc_pt' ) : $meta_desc;
1195
-	} elseif ( geodir_is_page( 'listing' ) ) {
1194
+		$meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
1195
+	} elseif (geodir_is_page('listing')) {
1196 1196
 		$gd_page   = 'listing';
1197
-		$meta_desc = ( get_option( 'geodir_meta_desc_listing' ) ) ? get_option( 'geodir_meta_desc_listing' ) : $meta_desc;
1198
-	} elseif ( geodir_is_page( 'location' ) ) {
1197
+		$meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
1198
+	} elseif (geodir_is_page('location')) {
1199 1199
 		$gd_page   = 'location';
1200
-		$meta_desc = ( get_option( 'geodir_meta_desc_location' ) ) ? get_option( 'geodir_meta_desc_location' ) : $meta_desc;
1201
-		$meta_desc = apply_filters( 'geodir_seo_meta_location_description', $meta_desc );
1200
+		$meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
1201
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
1202 1202
 
1203
-	} elseif ( geodir_is_page( 'search' ) ) {
1203
+	} elseif (geodir_is_page('search')) {
1204 1204
 		$gd_page   = 'search';
1205
-		$meta_desc = ( get_option( 'geodir_meta_desc_search' ) ) ? get_option( 'geodir_meta_desc_search' ) : $meta_desc;
1206
-	} elseif ( geodir_is_page( 'add-listing' ) ) {
1205
+		$meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
1206
+	} elseif (geodir_is_page('add-listing')) {
1207 1207
 		$gd_page   = 'add-listing';
1208
-		$meta_desc = ( get_option( 'geodir_meta_desc_add-listing' ) ) ? get_option( 'geodir_meta_desc_add-listing' ) : $meta_desc;
1209
-	} elseif ( geodir_is_page( 'author' ) ) {
1208
+		$meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
1209
+	} elseif (geodir_is_page('author')) {
1210 1210
 		$gd_page   = 'author';
1211
-		$meta_desc = ( get_option( 'geodir_meta_desc_author' ) ) ? get_option( 'geodir_meta_desc_author' ) : $meta_desc;
1212
-	} elseif ( geodir_is_page( 'login' ) ) {
1211
+		$meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
1212
+	} elseif (geodir_is_page('login')) {
1213 1213
 		$gd_page   = 'login';
1214
-		$meta_desc = ( get_option( 'geodir_meta_desc_login' ) ) ? get_option( 'geodir_meta_desc_login' ) : $meta_desc;
1215
-	} elseif ( geodir_is_page( 'listing-success' ) ) {
1214
+		$meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
1215
+	} elseif (geodir_is_page('listing-success')) {
1216 1216
 		$gd_page   = 'listing-success';
1217
-		$meta_desc = ( get_option( 'geodir_meta_desc_listing-success' ) ) ? get_option( 'geodir_meta_desc_listing-success' ) : $meta_desc;
1217
+		$meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
1218 1218
 	}
1219 1219
 
1220 1220
 
1221
-	if ( $meta_desc ) {
1222
-		$meta_desc = stripslashes_deep( $meta_desc );
1221
+	if ($meta_desc) {
1222
+		$meta_desc = stripslashes_deep($meta_desc);
1223 1223
 		/**
1224 1224
 		 * Filter page description to replace variables.
1225 1225
 		 *
@@ -1228,7 +1228,7 @@  discard block
 block discarded – undo
1228 1228
 		 * @param string $title   The page description including variables.
1229 1229
 		 * @param string $gd_page The GeoDirectory page type if any.
1230 1230
 		 */
1231
-		$meta_desc = apply_filters( 'geodir_seo_meta_description_pre', __( $meta_desc, 'geodirectory' ), $gd_page, '' );
1231
+		$meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'), $gd_page, '');
1232 1232
 
1233 1233
 		/**
1234 1234
 		 * Filter SEO meta description.
@@ -1237,49 +1237,49 @@  discard block
 block discarded – undo
1237 1237
 		 *
1238 1238
 		 * @param string $meta_desc Meta description content.
1239 1239
 		 */
1240
-		echo apply_filters( 'geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc );
1240
+		echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="'.$meta_desc.'" />', $meta_desc);
1241 1241
 	}
1242 1242
 
1243 1243
 	// meta keywords
1244
-	if ( isset( $post->post_type ) && in_array( $post->post_type, $all_postypes ) ) {
1245
-		$place_tags = wp_get_post_terms( $post->ID, $post->post_type . '_tags', array( "fields" => "names" ) );
1246
-		$place_cats = wp_get_post_terms( $post->ID, $post->post_type . 'category', array( "fields" => "names" ) );
1244
+	if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
1245
+		$place_tags = wp_get_post_terms($post->ID, $post->post_type.'_tags', array("fields" => "names"));
1246
+		$place_cats = wp_get_post_terms($post->ID, $post->post_type.'category', array("fields" => "names"));
1247 1247
 
1248
-		$meta_key .= implode( ", ", array_merge( (array) $place_cats, (array) $place_tags ) );
1248
+		$meta_key .= implode(", ", array_merge((array) $place_cats, (array) $place_tags));
1249 1249
 	} else {
1250 1250
 		$posttags = get_the_tags();
1251
-		if ( $posttags ) {
1252
-			foreach ( $posttags as $tag ) {
1253
-				$meta_key .= $tag->name . ' ';
1251
+		if ($posttags) {
1252
+			foreach ($posttags as $tag) {
1253
+				$meta_key .= $tag->name.' ';
1254 1254
 			}
1255 1255
 		} else {
1256
-			$tags = get_tags( array( 'orderby' => 'count', 'order' => 'DESC' ) );
1256
+			$tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
1257 1257
 			$xt   = 1;
1258 1258
 
1259
-			foreach ( $tags as $tag ) {
1260
-				if ( $xt <= 20 ) {
1261
-					$meta_key .= $tag->name . ", ";
1259
+			foreach ($tags as $tag) {
1260
+				if ($xt <= 20) {
1261
+					$meta_key .= $tag->name.", ";
1262 1262
 				}
1263 1263
 
1264
-				$xt ++;
1264
+				$xt++;
1265 1265
 			}
1266 1266
 		}
1267 1267
 	}
1268 1268
 
1269
-	$meta_key         = $meta_key != '' ? rtrim( trim( $meta_key ), "," ) : $meta_key;
1270
-	$geodir_meta_keys = $geodir_meta_keys != '' ? ( $meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys ) : $meta_key;
1271
-	if ( $geodir_meta_keys != '' ) {
1272
-		$geodir_meta_keys = strip_tags( $geodir_meta_keys );
1273
-		$geodir_meta_keys = esc_html( $geodir_meta_keys );
1274
-		$geodir_meta_keys = geodir_strtolower( $geodir_meta_keys );
1275
-		$geodir_meta_keys = wp_html_excerpt( $geodir_meta_keys, 1000, '' );
1276
-		$geodir_meta_keys = str_replace( '%location%', $replace_location, $geodir_meta_keys );
1269
+	$meta_key         = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key;
1270
+	$geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key.', '.$geodir_meta_keys : $geodir_meta_keys) : $meta_key;
1271
+	if ($geodir_meta_keys != '') {
1272
+		$geodir_meta_keys = strip_tags($geodir_meta_keys);
1273
+		$geodir_meta_keys = esc_html($geodir_meta_keys);
1274
+		$geodir_meta_keys = geodir_strtolower($geodir_meta_keys);
1275
+		$geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, '');
1276
+		$geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
1277 1277
 
1278
-		$meta_key = rtrim( trim( $geodir_meta_keys ), "," );
1278
+		$meta_key = rtrim(trim($geodir_meta_keys), ",");
1279 1279
 	}
1280 1280
 
1281
-	if ( $meta_key ) {
1282
-		$meta_key = stripslashes_deep( $meta_key );
1281
+	if ($meta_key) {
1282
+		$meta_key = stripslashes_deep($meta_key);
1283 1283
 		/**
1284 1284
 		 * Filter SEO meta keywords.
1285 1285
 		 *
@@ -1287,7 +1287,7 @@  discard block
 block discarded – undo
1287 1287
 		 *
1288 1288
 		 * @param string $meta_desc Meta keywords.
1289 1289
 		 */
1290
-		echo apply_filters( 'geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key );
1290
+		echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="'.$meta_key.'" />', $meta_key);
1291 1291
 	}
1292 1292
 
1293 1293
 }
@@ -1307,8 +1307,8 @@  discard block
 block discarded – undo
1307 1307
 
1308 1308
 	$geodir_detail_page_tabs_array = geodir_detail_page_tabs_array();
1309 1309
 
1310
-	foreach ( $geodir_detail_page_tabs_array as $key => $tabs_obj ) {
1311
-		$geodir_detail_page_tabs_key_value_array[ $key ] = $tabs_obj['heading_text'];
1310
+	foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
1311
+		$geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text'];
1312 1312
 	}
1313 1313
 
1314 1314
 	return $geodir_detail_page_tabs_key_value_array;
@@ -1330,57 +1330,57 @@  discard block
 block discarded – undo
1330 1330
 	 * @since 1.0.0
1331 1331
 	 */
1332 1332
 	$arr_tabs['post_profile'] = array(
1333
-		'heading_text'  => __( 'Profile', 'geodirectory' ),
1333
+		'heading_text'  => __('Profile', 'geodirectory'),
1334 1334
 		'is_active_tab' => true,
1335
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_profile' ),
1335
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
1336 1336
 		'tab_content'   => ''
1337 1337
 	);
1338
-	$arr_tabs['post_info']    = array(
1339
-		'heading_text'  => __( 'More Info', 'geodirectory' ),
1338
+	$arr_tabs['post_info'] = array(
1339
+		'heading_text'  => __('More Info', 'geodirectory'),
1340 1340
 		'is_active_tab' => false,
1341
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_info' ),
1341
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
1342 1342
 		'tab_content'   => ''
1343 1343
 	);
1344 1344
 
1345 1345
 	$arr_tabs['post_images'] = array(
1346
-		'heading_text'  => __( 'Photo', 'geodirectory' ),
1346
+		'heading_text'  => __('Photo', 'geodirectory'),
1347 1347
 		'is_active_tab' => false,
1348
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_images' ),
1348
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
1349 1349
 		'tab_content'   => ''
1350 1350
 	);
1351 1351
 
1352 1352
 	$arr_tabs['post_video'] = array(
1353
-		'heading_text'  => __( 'Video', 'geodirectory' ),
1353
+		'heading_text'  => __('Video', 'geodirectory'),
1354 1354
 		'is_active_tab' => false,
1355
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_video' ),
1355
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
1356 1356
 		'tab_content'   => ''
1357 1357
 	);
1358 1358
 
1359 1359
 	$arr_tabs['special_offers'] = array(
1360
-		'heading_text'  => __( 'Special Offers', 'geodirectory' ),
1360
+		'heading_text'  => __('Special Offers', 'geodirectory'),
1361 1361
 		'is_active_tab' => false,
1362
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'special_offers' ),
1362
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
1363 1363
 		'tab_content'   => ''
1364 1364
 	);
1365 1365
 
1366 1366
 	$arr_tabs['post_map'] = array(
1367
-		'heading_text'  => __( 'Map', 'geodirectory' ),
1367
+		'heading_text'  => __('Map', 'geodirectory'),
1368 1368
 		'is_active_tab' => false,
1369
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'post_map' ),
1369
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
1370 1370
 		'tab_content'   => ''
1371 1371
 	);
1372 1372
 
1373 1373
 	$arr_tabs['reviews'] = array(
1374
-		'heading_text'  => __( 'Reviews', 'geodirectory' ),
1374
+		'heading_text'  => __('Reviews', 'geodirectory'),
1375 1375
 		'is_active_tab' => false,
1376
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'reviews' ),
1376
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
1377 1377
 		'tab_content'   => 'review display'
1378 1378
 	);
1379 1379
 
1380 1380
 	$arr_tabs['related_listing'] = array(
1381
-		'heading_text'  => __( 'Related Listing', 'geodirectory' ),
1381
+		'heading_text'  => __('Related Listing', 'geodirectory'),
1382 1382
 		'is_active_tab' => false,
1383
-		'is_display'    => apply_filters( 'geodir_detail_page_tab_is_display', true, 'related_listing' ),
1383
+		'is_display'    => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
1384 1384
 		'tab_content'   => ''
1385 1385
 	);
1386 1386
 
@@ -1389,7 +1389,7 @@  discard block
 block discarded – undo
1389 1389
 	 *
1390 1390
 	 * @since 1.0.0
1391 1391
 	 */
1392
-	return apply_filters( 'geodir_detail_page_tab_list_extend', $arr_tabs );
1392
+	return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
1393 1393
 
1394 1394
 
1395 1395
 }
@@ -1403,13 +1403,13 @@  discard block
 block discarded – undo
1403 1403
  * @return mixed|array Tabs array.
1404 1404
  */
1405 1405
 function geodir_detail_page_tabs_list() {
1406
-	$tabs_excluded = get_option( 'geodir_detail_page_tabs_excluded' );
1406
+	$tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
1407 1407
 	$tabs_array    = geodir_detail_page_tabs_array();
1408 1408
 
1409
-	if ( ! empty( $tabs_excluded ) ) {
1410
-		foreach ( $tabs_excluded as $tab ) {
1411
-			if ( array_key_exists( $tab, $tabs_array ) ) {
1412
-				unset( $tabs_array[ $tab ] );
1409
+	if (!empty($tabs_excluded)) {
1410
+		foreach ($tabs_excluded as $tab) {
1411
+			if (array_key_exists($tab, $tabs_array)) {
1412
+				unset($tabs_array[$tab]);
1413 1413
 			}
1414 1414
 		}
1415 1415
 	}
@@ -1433,58 +1433,58 @@  discard block
 block discarded – undo
1433 1433
 function geodir_show_detail_page_tabs() {
1434 1434
 	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields, $preview;
1435 1435
 
1436
-	$post_id            = ! empty( $post ) && isset( $post->ID ) ? (int) $post->ID : 0;
1437
-	$request_post_id    = ! empty( $_REQUEST['p'] ) ? (int) $_REQUEST['p'] : 0;
1438
-	$is_backend_preview = ( is_single() && ! empty( $_REQUEST['post_type'] ) && ! empty( $_REQUEST['preview'] ) && ! empty( $_REQUEST['p'] ) ) && is_super_admin() ? true : false; // skip if preview from backend
1436
+	$post_id            = !empty($post) && isset($post->ID) ? (int) $post->ID : 0;
1437
+	$request_post_id    = !empty($_REQUEST['p']) ? (int) $_REQUEST['p'] : 0;
1438
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1439 1439
 
1440
-	if ( $is_backend_preview && ! $post_id > 0 && $request_post_id > 0 ) {
1441
-		$post = geodir_get_post_info( $request_post_id );
1442
-		setup_postdata( $post );
1440
+	if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
1441
+		$post = geodir_get_post_info($request_post_id);
1442
+		setup_postdata($post);
1443 1443
 	}
1444 1444
 
1445
-	$geodir_post_detail_fields = geodir_show_listing_info( 'moreinfo' );
1445
+	$geodir_post_detail_fields = geodir_show_listing_info('moreinfo');
1446 1446
 
1447 1447
 
1448
-	if ( geodir_is_page( 'detail' ) ) {
1449
-		$video                 = geodir_get_video( $post->ID );
1450
-		$special_offers        = geodir_get_special_offers( $post->ID );
1448
+	if (geodir_is_page('detail')) {
1449
+		$video                 = geodir_get_video($post->ID);
1450
+		$special_offers        = geodir_get_special_offers($post->ID);
1451 1451
 		$related_listing_array = array();
1452
-		if ( get_option( 'geodir_add_related_listing_posttypes' ) ) {
1453
-			$related_listing_array = get_option( 'geodir_add_related_listing_posttypes' );
1452
+		if (get_option('geodir_add_related_listing_posttypes')) {
1453
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
1454 1454
 		}
1455 1455
 
1456 1456
 
1457
-		$excluded_tabs = get_option( 'geodir_detail_page_tabs_excluded' );
1458
-		if ( ! $excluded_tabs ) {
1457
+		$excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
1458
+		if (!$excluded_tabs) {
1459 1459
 			$excluded_tabs = array();
1460 1460
 		}
1461 1461
 
1462 1462
 		$related_listing = '';
1463
-		if ( in_array( $post->post_type, $related_listing_array ) && ! in_array( 'related_listing', $excluded_tabs ) ) {
1463
+		if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
1464 1464
 			$request = array(
1465
-				'post_number'         => get_option( 'geodir_related_post_count' ),
1466
-				'relate_to'           => get_option( 'geodir_related_post_relate_to' ),
1467
-				'layout'              => get_option( 'geodir_related_post_listing_view' ),
1468
-				'add_location_filter' => get_option( 'geodir_related_post_location_filter' ),
1469
-				'list_sort'           => get_option( 'geodir_related_post_sortby' ),
1470
-				'character_count'     => get_option( 'geodir_related_post_excerpt' )
1465
+				'post_number'         => get_option('geodir_related_post_count'),
1466
+				'relate_to'           => get_option('geodir_related_post_relate_to'),
1467
+				'layout'              => get_option('geodir_related_post_listing_view'),
1468
+				'add_location_filter' => get_option('geodir_related_post_location_filter'),
1469
+				'list_sort'           => get_option('geodir_related_post_sortby'),
1470
+				'character_count'     => get_option('geodir_related_post_excerpt')
1471 1471
 			);
1472 1472
 
1473
-			if ( $post->post_type == 'gd_event' && defined( 'GDEVENTS_VERSION' ) ) {
1474
-				$related_listing = geodir_get_detail_page_related_events( $request );
1473
+			if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
1474
+				$related_listing = geodir_get_detail_page_related_events($request);
1475 1475
 			} else {
1476
-				$related_listing = geodir_related_posts_display( $request );
1476
+				$related_listing = geodir_related_posts_display($request);
1477 1477
 			}
1478 1478
 
1479 1479
 		}
1480 1480
 
1481
-		$post_images = geodir_get_images( $post->ID, 'thumbnail' );
1481
+		$post_images = geodir_get_images($post->ID, 'thumbnail');
1482 1482
 		$thumb_image = '';
1483
-		if ( ! empty( $post_images ) ) {
1484
-			foreach ( $post_images as $image ) {
1485
-				$caption = ( ! empty( $image->caption ) ) ? $image->caption : '';
1486
-				$thumb_image .= '<a href="' . $image->src . '" title="' . $caption . '">';
1487
-				$thumb_image .= geodir_show_image( $image, 'thumbnail', true, false );
1483
+		if (!empty($post_images)) {
1484
+			foreach ($post_images as $image) {
1485
+				$caption = (!empty($image->caption)) ? $image->caption : '';
1486
+				$thumb_image .= '<a href="'.$image->src.'" title="'.$caption.'">';
1487
+				$thumb_image .= geodir_show_image($image, 'thumbnail', true, false);
1488 1488
 				$thumb_image .= '</a>';
1489 1489
 			}
1490 1490
 		}
@@ -1493,11 +1493,11 @@  discard block
 block discarded – undo
1493 1493
 		$map_args['map_canvas_name'] = 'detail_page_map_canvas';
1494 1494
 		$map_args['width']           = '600';
1495 1495
 		$map_args['height']          = '300';
1496
-		if ( $post->post_mapzoom ) {
1497
-			$map_args['zoom'] = '' . $post->post_mapzoom . '';
1496
+		if ($post->post_mapzoom) {
1497
+			$map_args['zoom'] = ''.$post->post_mapzoom.'';
1498 1498
 		}
1499 1499
 		$map_args['autozoom']                 = false;
1500
-		$map_args['scrollwheel']              = ( get_option( 'geodir_add_listing_mouse_scroll' ) ) ? 0 : 1;
1500
+		$map_args['scrollwheel']              = (get_option('geodir_add_listing_mouse_scroll')) ? 0 : 1;
1501 1501
 		$map_args['child_collapse']           = '0';
1502 1502
 		$map_args['enable_cat_filters']       = false;
1503 1503
 		$map_args['enable_text_search']       = false;
@@ -1506,43 +1506,43 @@  discard block
 block discarded – undo
1506 1506
 		$map_args['enable_jason_on_load']     = true;
1507 1507
 		$map_args['enable_map_direction']     = true;
1508 1508
 		$map_args['map_class_name']           = 'geodir-map-detail-page';
1509
-		$map_args['maptype']                  = ( ! empty( $post->post_mapview ) ) ? $post->post_mapview : 'ROADMAP';
1510
-	} else if ( geodir_is_page( 'preview' ) ) {
1511
-		$video          = isset( $post->geodir_video ) ? $post->geodir_video : '';
1512
-		$special_offers = isset( $post->geodir_special_offers ) ? $post->geodir_special_offers : '';
1509
+		$map_args['maptype']                  = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP';
1510
+	} else if (geodir_is_page('preview')) {
1511
+		$video          = isset($post->geodir_video) ? $post->geodir_video : '';
1512
+		$special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : '';
1513 1513
 
1514
-		if ( isset( $post->post_images ) ) {
1515
-			$post->post_images = trim( $post->post_images, "," );
1514
+		if (isset($post->post_images)) {
1515
+			$post->post_images = trim($post->post_images, ",");
1516 1516
 		}
1517 1517
 
1518
-		if ( isset( $post->post_images ) && ! empty( $post->post_images ) ) {
1519
-			$post_images = explode( ",", $post->post_images );
1518
+		if (isset($post->post_images) && !empty($post->post_images)) {
1519
+			$post_images = explode(",", $post->post_images);
1520 1520
 		}
1521 1521
 
1522 1522
 		$thumb_image = '';
1523
-		if ( ! empty( $post_images ) ) {
1524
-			foreach ( $post_images as $image ) {
1525
-				if ( $image != '' ) {
1526
-					$thumb_image .= '<a href="' . $image . '">';
1527
-					$thumb_image .= geodir_show_image( array( 'src' => $image ), 'thumbnail', true, false );
1523
+		if (!empty($post_images)) {
1524
+			foreach ($post_images as $image) {
1525
+				if ($image != '') {
1526
+					$thumb_image .= '<a href="'.$image.'">';
1527
+					$thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
1528 1528
 					$thumb_image .= '</a>';
1529 1529
 				}
1530 1530
 			}
1531 1531
 		}
1532 1532
 
1533 1533
 		global $map_jason;
1534
-		$marker_json      = $post->marker_json != '' ? json_decode( $post->marker_json, true ) : array();
1535
-		$marker_icon      = ( ! empty( $marker_json ) && ! empty( $marker_json['i'] ) ) ? $marker_json['i'] : '';
1536
-		$icon_size        = geodir_get_marker_size( $marker_icon );
1534
+		$marker_json      = $post->marker_json != '' ? json_decode($post->marker_json, true) : array();
1535
+		$marker_icon      = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : '';
1536
+		$icon_size        = geodir_get_marker_size($marker_icon);
1537 1537
 		$marker_json['w'] = $icon_size['w'];
1538 1538
 		$marker_json['h'] = $icon_size['h'];
1539
-		$map_jason[]      = json_encode( $marker_json );
1539
+		$map_jason[]      = json_encode($marker_json);
1540 1540
 
1541
-		$address_latitude  = isset( $post->post_latitude ) ? $post->post_latitude : '';
1542
-		$address_longitude = isset( $post->post_longitude ) ? $post->post_longitude : '';
1543
-		$mapview           = isset( $post->post_mapview ) ? $post->post_mapview : '';
1544
-		$mapzoom           = isset( $post->post_mapzoom ) ? $post->post_mapzoom : '';
1545
-		if ( ! $mapzoom ) {
1541
+		$address_latitude  = isset($post->post_latitude) ? $post->post_latitude : '';
1542
+		$address_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
1543
+		$mapview           = isset($post->post_mapview) ? $post->post_mapview : '';
1544
+		$mapzoom           = isset($post->post_mapzoom) ? $post->post_mapzoom : '';
1545
+		if (!$mapzoom) {
1546 1546
 			$mapzoom = 12;
1547 1547
 		}
1548 1548
 
@@ -1565,37 +1565,37 @@  discard block
 block discarded – undo
1565 1565
 		$map_args['map_class_name']           = 'geodir-map-preview-page';
1566 1566
 	}
1567 1567
 
1568
-	$arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user
1568
+	$arr_detail_page_tabs = geodir_detail_page_tabs_list(); // get this sooner so we can get the active tab for the user
1569 1569
 
1570 1570
 	$active_tab       = '';
1571 1571
 	$active_tab_name  = '';
1572 1572
 	$default_tab      = '';
1573 1573
 	$default_tab_name = '';
1574
-	foreach ( $arr_detail_page_tabs as $tab_index => $tabs ) {
1575
-		if ( isset( $tabs['is_active_tab'] ) && $tabs['is_active_tab'] && ! empty( $tabs['is_display'] ) && isset( $tabs['heading_text'] ) && $tabs['heading_text'] ) {
1574
+	foreach ($arr_detail_page_tabs as $tab_index => $tabs) {
1575
+		if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
1576 1576
 			$active_tab      = $tab_index;
1577
-			$active_tab_name = __( $tabs['heading_text'], 'geodirectory' );
1577
+			$active_tab_name = __($tabs['heading_text'], 'geodirectory');
1578 1578
 		}
1579 1579
 
1580
-		if ( $default_tab === '' && ! empty( $tabs['is_display'] ) && ! empty( $tabs['heading_text'] ) ) {
1580
+		if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
1581 1581
 			$default_tab      = $tab_index;
1582
-			$default_tab_name = __( $tabs['heading_text'], 'geodirectory' );
1582
+			$default_tab_name = __($tabs['heading_text'], 'geodirectory');
1583 1583
 		}
1584 1584
 	}
1585 1585
 
1586
-	if ( $active_tab === '' && $default_tab !== '' ) { // Make first tab acs a active tab if not any tab is active.
1587
-		if ( isset( $arr_detail_page_tabs[ $active_tab ] ) && isset( $arr_detail_page_tabs[ $active_tab ]['is_active_tab'] ) ) {
1588
-			$arr_detail_page_tabs[ $active_tab ]['is_active_tab'] = false;
1586
+	if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
1587
+		if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
1588
+			$arr_detail_page_tabs[$active_tab]['is_active_tab'] = false;
1589 1589
 		}
1590 1590
 
1591
-		$arr_detail_page_tabs[ $default_tab ]['is_active_tab'] = true;
1591
+		$arr_detail_page_tabs[$default_tab]['is_active_tab'] = true;
1592 1592
 		$active_tab                                            = $default_tab;
1593 1593
 		$active_tab_name                                       = $default_tab_name;
1594 1594
 	}
1595
-	$tab_list = ( get_option( 'geodir_disable_tabs', false ) ) ? true : false;
1595
+	$tab_list = (get_option('geodir_disable_tabs', false)) ? true : false;
1596 1596
 	?>
1597 1597
 	<div class="geodir-tabs" id="gd-tabs" style="position:relative;">
1598
-		<?php if ( ! $tab_list ){ ?>
1598
+		<?php if (!$tab_list) { ?>
1599 1599
 		<div id="geodir-tab-mobile-menu">
1600 1600
 			<i class="fa fa-bars"></i>
1601 1601
 			<span class="geodir-mobile-active-tab"><?php echo $active_tab_name; ?></span>
@@ -1610,26 +1610,26 @@  discard block
 block discarded – undo
1610 1610
 			 * @since 1.0.0
1611 1611
 			 * @see   'geodir_after_tab_list'
1612 1612
 			 */
1613
-			do_action( 'geodir_before_tab_list' ); ?>
1613
+			do_action('geodir_before_tab_list'); ?>
1614 1614
 			<?php
1615 1615
 
1616
-			foreach ( $arr_detail_page_tabs as $tab_index => $detail_page_tab ) {
1617
-				if ( $detail_page_tab['is_display'] ) {
1616
+			foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
1617
+				if ($detail_page_tab['is_display']) {
1618 1618
 
1619
-					if ( ! $tab_list ) {
1619
+					if (!$tab_list) {
1620 1620
 						?>
1621 1621
 						<dt></dt> <!-- added to comply with validation -->
1622
-						<dd <?php if ( $detail_page_tab['is_active_tab'] ){ ?>class="geodir-tab-active"<?php } ?> ><a
1622
+						<dd <?php if ($detail_page_tab['is_active_tab']) { ?>class="geodir-tab-active"<?php } ?> ><a
1623 1623
 								data-tab="#<?php echo $tab_index; ?>"
1624
-								data-status="enable"><?php _e( $detail_page_tab['heading_text'], 'geodirectory' ); ?></a>
1624
+								data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a>
1625 1625
 						</dd>
1626 1626
 						<?php
1627 1627
 					}
1628 1628
 					ob_start() // start tab content buffering
1629 1629
 					?>
1630 1630
 					<li id="<?php echo $tab_index; ?>Tab">
1631
-						<?php if ( $tab_list ) {
1632
-							$tab_title = '<span class="gd-tab-list-title" ><a href="#' . $tab_index . '">' . __( $detail_page_tab['heading_text'], 'geodirectory' ) . '</a></span><hr />';
1631
+						<?php if ($tab_list) {
1632
+							$tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'], 'geodirectory').'</a></span><hr />';
1633 1633
 							/**
1634 1634
 							 * Filter the tab list title html.
1635 1635
 							 *
@@ -1639,7 +1639,7 @@  discard block
 block discarded – undo
1639 1639
 							 * @param string $tab_index      The tab index type.
1640 1640
 							 * @param array $detail_page_tab The array of values including title text.
1641 1641
 							 */
1642
-							echo apply_filters( 'geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab );
1642
+							echo apply_filters('geodir_tab_list_title', $tab_title, $tab_index, $detail_page_tab);
1643 1643
 						} ?>
1644 1644
 						<div id="<?php echo $tab_index; ?>" class="hash-offset"></div>
1645 1645
 						<?php
@@ -1650,7 +1650,7 @@  discard block
 block discarded – undo
1650 1650
 						 *
1651 1651
 						 * @param string $tab_index The tab name ID.
1652 1652
 						 */
1653
-						do_action( 'geodir_before_tab_content', $tab_index );
1653
+						do_action('geodir_before_tab_content', $tab_index);
1654 1654
 
1655 1655
 						/**
1656 1656
 						 * Called before the details tab content is output per tab.
@@ -1660,21 +1660,21 @@  discard block
 block discarded – undo
1660 1660
 						 * @since 1.0.0
1661 1661
 						 * @todo  do we need this if we have the hook above? 'geodir_before_tab_content'
1662 1662
 						 */
1663
-						do_action( 'geodir_before_' . $tab_index . '_tab_content' );
1663
+						do_action('geodir_before_'.$tab_index.'_tab_content');
1664 1664
 						/// write a code to generate content of each tab
1665
-						switch ( $tab_index ) {
1665
+						switch ($tab_index) {
1666 1666
 							case 'post_profile':
1667 1667
 								/**
1668 1668
 								 * Called before the listing description content on the details page tab.
1669 1669
 								 *
1670 1670
 								 * @since 1.0.0
1671 1671
 								 */
1672
-								do_action( 'geodir_before_description_on_listing_detail' );
1673
-								if ( geodir_is_page( 'detail' ) ) {
1672
+								do_action('geodir_before_description_on_listing_detail');
1673
+								if (geodir_is_page('detail')) {
1674 1674
 									the_content();
1675 1675
 								} else {
1676 1676
 									/** This action is documented in geodirectory_template_actions.php */
1677
-									echo apply_filters( 'the_content', stripslashes( $post->post_desc ) );
1677
+									echo apply_filters('the_content', stripslashes($post->post_desc));
1678 1678
 								}
1679 1679
 
1680 1680
 								/**
@@ -1682,7 +1682,7 @@  discard block
 block discarded – undo
1682 1682
 								 *
1683 1683
 								 * @since 1.0.0
1684 1684
 								 */
1685
-								do_action( 'geodir_after_description_on_listing_detail' );
1685
+								do_action('geodir_after_description_on_listing_detail');
1686 1686
 								break;
1687 1687
 							case 'post_info':
1688 1688
 								echo $geodir_post_detail_fields;
@@ -1692,32 +1692,32 @@  discard block
 block discarded – undo
1692 1692
 								break;
1693 1693
 							case 'post_video':
1694 1694
 								// some browsers hide $_POST data if used for embeds so we repalce with a placeholder
1695
-								if ( $preview ) {
1696
-									if ( $video ) {
1697
-										echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />" . __( 'Video Preview Placeholder', 'geodirectory' ) . "</p></span>";
1695
+								if ($preview) {
1696
+									if ($video) {
1697
+										echo "<span class='gd-video-embed-preview' ><p class='gd-video-preview-text'><i class=\"fa fa-video-camera\" aria-hidden=\"true\"></i><br />".__('Video Preview Placeholder', 'geodirectory')."</p></span>";
1698 1698
 									}
1699 1699
 								} else {
1700 1700
 
1701 1701
 									// stop payment manager filtering content length
1702
-									$filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1703
-									if ( false !== $filter_priority ) {
1704
-										remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1702
+									$filter_priority = has_filter('the_content', 'geodir_payments_the_content');
1703
+									if (false !== $filter_priority) {
1704
+										remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1705 1705
 									}
1706 1706
 
1707 1707
 									/** This action is documented in geodirectory_template_actions.php */
1708
-									echo apply_filters( 'the_content', stripslashes( $video ) );// we apply the_content filter so oembed works also;
1708
+									echo apply_filters('the_content', stripslashes($video)); // we apply the_content filter so oembed works also;
1709 1709
 
1710
-									if ( false !== $filter_priority ) {
1711
-										add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1710
+									if (false !== $filter_priority) {
1711
+										add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1712 1712
 									}
1713 1713
 								}
1714 1714
 								break;
1715 1715
 							case 'special_offers':
1716
-								echo apply_filters( 'gd_special_offers_content', wpautop( stripslashes( $special_offers ) ) );
1716
+								echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
1717 1717
 
1718 1718
 								break;
1719 1719
 							case 'post_map':
1720
-								geodir_draw_map( $map_args );
1720
+								geodir_draw_map($map_args);
1721 1721
 								break;
1722 1722
 							case 'reviews':
1723 1723
 								comments_template();
@@ -1726,7 +1726,7 @@  discard block
 block discarded – undo
1726 1726
 								echo $related_listing;
1727 1727
 								break;
1728 1728
 							default: {
1729
-								if ( ( isset( $post->{$tab_index} ) || ( ! isset( $post->{$tab_index} ) && ( strpos( $tab_index, 'gd_tab_' ) !== false || $tab_index == 'link_business' ) ) ) && ! empty( $detail_page_tab['tab_content'] ) ) {
1729
+								if ((isset($post->{$tab_index} ) || (!isset($post->{$tab_index} ) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
1730 1730
 									echo $detail_page_tab['tab_content'];
1731 1731
 								}
1732 1732
 							}
@@ -1738,7 +1738,7 @@  discard block
 block discarded – undo
1738 1738
 						 *
1739 1739
 						 * @since 1.0.0
1740 1740
 						 */
1741
-						do_action( 'geodir_after_tab_content', $tab_index );
1741
+						do_action('geodir_after_tab_content', $tab_index);
1742 1742
 
1743 1743
 						/**
1744 1744
 						 * Called after the details tab content is output per tab.
@@ -1748,7 +1748,7 @@  discard block
 block discarded – undo
1748 1748
 						 * @since 1.0.0
1749 1749
 						 * @todo  do we need this if we have the hook above? 'geodir_after_tab_content'
1750 1750
 						 */
1751
-						do_action( 'geodir_after_' . $tab_index . '_tab_content' );
1751
+						do_action('geodir_after_'.$tab_index.'_tab_content');
1752 1752
 						?> </li>
1753 1753
 					<?php
1754 1754
 					/**
@@ -1756,7 +1756,7 @@  discard block
 block discarded – undo
1756 1756
 					 *
1757 1757
 					 * @since 1.0.0
1758 1758
 					 */
1759
-					$arr_detail_page_tabs[ $tab_index ]['tab_content'] = apply_filters( "geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean() );
1759
+					$arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_".$detail_page_tab['tab_content']."_tab_content", ob_get_clean());
1760 1760
 				} // end of if for is_display
1761 1761
 			}// end of foreach
1762 1762
 
@@ -1766,14 +1766,14 @@  discard block
 block discarded – undo
1766 1766
 			 * @since 1.0.0
1767 1767
 			 * @see   'geodir_before_tab_list'
1768 1768
 			 */
1769
-			do_action( 'geodir_after_tab_list' );
1769
+			do_action('geodir_after_tab_list');
1770 1770
 			?>
1771
-			<?php if ( ! $tab_list ){ ?></dl><?php } ?>
1772
-		<ul class="geodir-tabs-content entry-content <?php if ( $tab_list ) { ?>geodir-tabs-list<?php } ?>"
1771
+			<?php if (!$tab_list) { ?></dl><?php } ?>
1772
+		<ul class="geodir-tabs-content entry-content <?php if ($tab_list) { ?>geodir-tabs-list<?php } ?>"
1773 1773
 		    style="position:relative;">
1774 1774
 			<?php
1775
-			foreach ( $arr_detail_page_tabs as $detail_page_tab ) {
1776
-				if ( $detail_page_tab['is_display'] && ! empty( $detail_page_tab['tab_content'] ) ) {
1775
+			foreach ($arr_detail_page_tabs as $detail_page_tab) {
1776
+				if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
1777 1777
 					echo $detail_page_tab['tab_content'];
1778 1778
 				}// end of if
1779 1779
 			}// end of foreach
@@ -1783,11 +1783,11 @@  discard block
 block discarded – undo
1783 1783
 			 *
1784 1784
 			 * @since 1.0.0
1785 1785
 			 */
1786
-			do_action( 'geodir_add_tab_content' ); ?>
1786
+			do_action('geodir_add_tab_content'); ?>
1787 1787
 		</ul>
1788 1788
 		<!--gd-tabs-content ul end-->
1789 1789
 	</div>
1790
-	<?php if ( ! $tab_list ) { ?>
1790
+	<?php if (!$tab_list) { ?>
1791 1791
 		<script>
1792 1792
 			if (window.location.hash && window.location.hash.indexOf('&') === -1 && jQuery(window.location.hash + 'Tab').length) {
1793 1793
 				hashVal = window.location.hash;
@@ -1819,31 +1819,31 @@  discard block
 block discarded – undo
1819 1819
  *
1820 1820
  * @return mixed Image file.
1821 1821
  */
1822
-function geodir_exif( $file ) {
1823
-	if ( empty( $file ) || ! is_array( $file ) ) {
1822
+function geodir_exif($file) {
1823
+	if (empty($file) || !is_array($file)) {
1824 1824
 		return $file;
1825 1825
 	}
1826 1826
 
1827
-	$file_path = ! empty( $file['tmp_name'] ) ? sanitize_text_field( $file['tmp_name'] ) : '';
1828
-	if ( ! ( $file_path && file_exists( $file_path ) ) ) {
1827
+	$file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : '';
1828
+	if (!($file_path && file_exists($file_path))) {
1829 1829
 		return $file;
1830 1830
 	}
1831 1831
 	$file['file'] = $file_path;
1832 1832
 
1833
-	if ( ! file_is_valid_image( $file_path ) ) {
1833
+	if (!file_is_valid_image($file_path)) {
1834 1834
 		return $file; // Bail if file is not an image.
1835 1835
 	}
1836 1836
 
1837
-	if ( ! function_exists( 'wp_get_image_editor' ) ) {
1837
+	if (!function_exists('wp_get_image_editor')) {
1838 1838
 		return $file;
1839 1839
 	}
1840 1840
 
1841 1841
 	$mime_type = $file['type'];
1842 1842
 	$exif      = array();
1843
-	if ( $mime_type == 'image/jpeg' && function_exists( 'exif_read_data' ) ) {
1843
+	if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
1844 1844
 		try {
1845
-			$exif = exif_read_data( $file_path );
1846
-		} catch ( Exception $e ) {
1845
+			$exif = exif_read_data($file_path);
1846
+		} catch (Exception $e) {
1847 1847
 			$exif = array();
1848 1848
 		}
1849 1849
 	}
@@ -1852,13 +1852,13 @@  discard block
 block discarded – undo
1852 1852
 	$flip        = false;
1853 1853
 	$modify      = false;
1854 1854
 	$orientation = 0;
1855
-	if ( ! empty( $exif ) && isset( $exif['Orientation'] ) ) {
1856
-		switch ( (int) $exif['Orientation'] ) {
1855
+	if (!empty($exif) && isset($exif['Orientation'])) {
1856
+		switch ((int) $exif['Orientation']) {
1857 1857
 			case 1:
1858 1858
 				// do nothing
1859 1859
 				break;
1860 1860
 			case 2:
1861
-				$flip   = array( false, true );
1861
+				$flip   = array(false, true);
1862 1862
 				$modify = true;
1863 1863
 				break;
1864 1864
 			case 3:
@@ -1867,13 +1867,13 @@  discard block
 block discarded – undo
1867 1867
 				$modify      = true;
1868 1868
 				break;
1869 1869
 			case 4:
1870
-				$flip   = array( true, false );
1870
+				$flip   = array(true, false);
1871 1871
 				$modify = true;
1872 1872
 				break;
1873 1873
 			case 5:
1874 1874
 				$orientation = - 90;
1875 1875
 				$rotate      = true;
1876
-				$flip        = array( false, true );
1876
+				$flip        = array(false, true);
1877 1877
 				$modify      = true;
1878 1878
 				break;
1879 1879
 			case 6:
@@ -1884,7 +1884,7 @@  discard block
 block discarded – undo
1884 1884
 			case 7:
1885 1885
 				$orientation = - 270;
1886 1886
 				$rotate      = true;
1887
-				$flip        = array( false, true );
1887
+				$flip        = array(false, true);
1888 1888
 				$modify      = true;
1889 1889
 				break;
1890 1890
 			case 8:
@@ -1910,31 +1910,31 @@  discard block
 block discarded – undo
1910 1910
 	 * @param int|null $quality Image Compression quality between 1-100% scale. Default null.
1911 1911
 	 * @param string $quality   Image mime type.
1912 1912
 	 */
1913
-	$quality = apply_filters( 'geodir_image_upload_set_quality', $quality, $mime_type );
1914
-	if ( $quality !== null ) {
1913
+	$quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
1914
+	if ($quality !== null) {
1915 1915
 		$modify = true;
1916 1916
 	}
1917 1917
 
1918
-	if ( ! $modify ) {
1918
+	if (!$modify) {
1919 1919
 		return $file; // no change
1920 1920
 	}
1921 1921
 
1922
-	$image = wp_get_image_editor( $file_path );
1923
-	if ( ! is_wp_error( $image ) ) {
1924
-		if ( $rotate ) {
1925
-			$image->rotate( $orientation );
1922
+	$image = wp_get_image_editor($file_path);
1923
+	if (!is_wp_error($image)) {
1924
+		if ($rotate) {
1925
+			$image->rotate($orientation);
1926 1926
 		}
1927 1927
 
1928
-		if ( ! empty( $flip ) ) {
1929
-			$image->flip( $flip[0], $flip[1] );
1928
+		if (!empty($flip)) {
1929
+			$image->flip($flip[0], $flip[1]);
1930 1930
 		}
1931 1931
 
1932
-		if ( $quality !== null ) {
1933
-			$image->set_quality( (int) $quality );
1932
+		if ($quality !== null) {
1933
+			$image->set_quality((int) $quality);
1934 1934
 		}
1935 1935
 
1936
-		$result = $image->save( $file_path );
1937
-		if ( ! is_wp_error( $result ) ) {
1936
+		$result = $image->save($file_path);
1937
+		if (!is_wp_error($result)) {
1938 1938
 			$file['file']     = $result['path'];
1939 1939
 			$file['tmp_name'] = $result['path'];
1940 1940
 		}
@@ -1961,7 +1961,7 @@  discard block
 block discarded – undo
1961 1961
  *
1962 1962
  * @return string Returns the recent reviews html.
1963 1963
  */
1964
-function geodir_get_recent_reviews( $g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false ) {
1964
+function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
1965 1965
 	global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session;
1966 1966
 	$tablecomments = $wpdb->comments;
1967 1967
 	$tableposts    = $wpdb->posts;
@@ -1971,28 +1971,28 @@  discard block
 block discarded – undo
1971 1971
 	$region_filter  = '';
1972 1972
 	$country_filter = '';
1973 1973
 
1974
-	if ( $gd_session->get( 'gd_multi_location' ) ) {
1975
-		if ( $gd_ses_country = $gd_session->get( 'gd_country' ) ) {
1976
-			$country_filter = $wpdb->prepare( " AND r.post_country=%s ", str_replace( "-", " ", $gd_ses_country ) );
1974
+	if ($gd_session->get('gd_multi_location')) {
1975
+		if ($gd_ses_country = $gd_session->get('gd_country')) {
1976
+			$country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
1977 1977
 		}
1978 1978
 
1979
-		if ( $gd_ses_region = $gd_session->get( 'gd_region' ) ) {
1980
-			$region_filter = $wpdb->prepare( " AND r.post_region=%s ", str_replace( "-", " ", $gd_ses_region ) );
1979
+		if ($gd_ses_region = $gd_session->get('gd_region')) {
1980
+			$region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
1981 1981
 		}
1982 1982
 
1983
-		if ( $gd_ses_city = $gd_session->get( 'gd_city' ) ) {
1984
-			$city_filter = $wpdb->prepare( " AND r.post_city=%s ", str_replace( "-", " ", $gd_ses_city ) );
1983
+		if ($gd_ses_city = $gd_session->get('gd_city')) {
1984
+			$city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
1985 1985
 		}
1986 1986
 	}
1987 1987
 
1988 1988
 	$review_table = GEODIR_REVIEW_TABLE;
1989 1989
 	$request      = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments";
1990 1990
 
1991
-	$comments = $wpdb->get_results( $request );
1991
+	$comments = $wpdb->get_results($request);
1992 1992
 
1993
-	foreach ( $comments as $comment ) {
1993
+	foreach ($comments as $comment) {
1994 1994
 		// Set the extra comment info needed.
1995
-		$comment_extra = $wpdb->get_row( "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID" );
1995
+		$comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
1996 1996
 		//echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID";
1997 1997
 		$comment->comment_content      = $comment_extra->comment_content;
1998 1998
 		$comment->comment_author       = $comment_extra->comment_author;
@@ -2000,75 +2000,75 @@  discard block
 block discarded – undo
2000 2000
 
2001 2001
 		$comment_id      = '';
2002 2002
 		$comment_id      = $comment->comment_ID;
2003
-		$comment_content = strip_tags( $comment->comment_content );
2003
+		$comment_content = strip_tags($comment->comment_content);
2004 2004
 
2005
-		$comment_content = preg_replace( '#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content );
2005
+		$comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
2006 2006
 
2007
-		$permalink            = get_permalink( $comment->ID ) . "#comment-" . $comment->comment_ID;
2007
+		$permalink            = get_permalink($comment->ID)."#comment-".$comment->comment_ID;
2008 2008
 		$comment_author_email = $comment->comment_author_email;
2009 2009
 		$comment_post_ID      = $comment->post_id;
2010 2010
 
2011 2011
 		$na = true;
2012
-		if ( function_exists( 'icl_object_id' ) && icl_object_id( $comment_post_ID, $comment->post_type, true ) ) {
2013
-			$comment_post_ID2 = icl_object_id( $comment_post_ID, $comment->post_type, false );
2014
-			if ( $comment_post_ID == $comment_post_ID2 ) {
2012
+		if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
2013
+			$comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false);
2014
+			if ($comment_post_ID == $comment_post_ID2) {
2015 2015
 			} else {
2016 2016
 				$na = false;
2017 2017
 			}
2018 2018
 		}
2019 2019
 
2020
-		$post_title        = get_the_title( $comment_post_ID );
2021
-		$permalink         = get_permalink( $comment_post_ID );
2022
-		$comment_permalink = $permalink . "#comment-" . $comment->comment_ID;
2023
-		$read_more         = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __( 'Read more', 'geodirectory' ) . '</a>';
2020
+		$post_title        = get_the_title($comment_post_ID);
2021
+		$permalink         = get_permalink($comment_post_ID);
2022
+		$comment_permalink = $permalink."#comment-".$comment->comment_ID;
2023
+		$read_more         = '<a class="comment_excerpt" href="'.$comment_permalink.'">'.__('Read more', 'geodirectory').'</a>';
2024 2024
 
2025
-		$comment_content_length = strlen( $comment_content );
2026
-		if ( $comment_content_length > $comment_lenth ) {
2027
-			$comment_excerpt = mb_substr( $comment_content, 0, $comment_lenth ) . '... ' . $read_more;
2025
+		$comment_content_length = strlen($comment_content);
2026
+		if ($comment_content_length > $comment_lenth) {
2027
+			$comment_excerpt = mb_substr($comment_content, 0, $comment_lenth).'... '.$read_more;
2028 2028
 		} else {
2029 2029
 			$comment_excerpt = $comment_content;
2030 2030
 		}
2031 2031
 
2032
-		if ( $comment->user_id ) {
2033
-			$user_profile_url = get_author_posts_url( $comment->user_id );
2032
+		if ($comment->user_id) {
2033
+			$user_profile_url = get_author_posts_url($comment->user_id);
2034 2034
 		} else {
2035 2035
 			$user_profile_url = '';
2036 2036
 		}
2037 2037
 
2038
-		if ( $comment_id && $na ) {
2038
+		if ($comment_id && $na) {
2039 2039
 			$comments_echo .= '<li class="clearfix">';
2040
-			$comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">";
2041
-			if ( function_exists( 'get_avatar' ) ) {
2042
-				if ( ! isset( $comment->comment_type ) ) {
2043
-					if ( $user_profile_url ) {
2044
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2040
+			$comments_echo .= "<span class=\"li".$comment_id." geodir_reviewer_image\">";
2041
+			if (function_exists('get_avatar')) {
2042
+				if (!isset($comment->comment_type)) {
2043
+					if ($user_profile_url) {
2044
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2045 2045
 					}
2046
-					$comments_echo .= get_avatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2047
-					if ( $user_profile_url ) {
2046
+					$comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2047
+					if ($user_profile_url) {
2048 2048
 						$comments_echo .= '</a>';
2049 2049
 					}
2050
-				} elseif ( ( isset( $comment->comment_type ) && $comment->comment_type == 'trackback' ) || ( isset( $comment->comment_type ) && $comment->comment_type == 'pingback' ) ) {
2051
-					if ( $user_profile_url ) {
2052
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2050
+				} elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
2051
+					if ($user_profile_url) {
2052
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2053 2053
 					}
2054
-					$comments_echo .= get_avatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2054
+					$comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2055 2055
 				}
2056
-			} elseif ( function_exists( 'gravatar' ) ) {
2057
-				if ( $user_profile_url ) {
2058
-					$comments_echo .= '<a href="' . $user_profile_url . '">';
2056
+			} elseif (function_exists('gravatar')) {
2057
+				if ($user_profile_url) {
2058
+					$comments_echo .= '<a href="'.$user_profile_url.'">';
2059 2059
 				}
2060 2060
 				$comments_echo .= "<img src=\"";
2061
-				if ( '' == $comment->comment_type ) {
2062
-					$comments_echo .= gravatar( $comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2063
-					if ( $user_profile_url ) {
2061
+				if ('' == $comment->comment_type) {
2062
+					$comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2063
+					if ($user_profile_url) {
2064 2064
 						$comments_echo .= '</a>';
2065 2065
 					}
2066
-				} elseif ( ( 'trackback' == $comment->comment_type ) || ( 'pingback' == $comment->comment_type ) ) {
2067
-					if ( $user_profile_url ) {
2068
-						$comments_echo .= '<a href="' . $user_profile_url . '">';
2066
+				} elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
2067
+					if ($user_profile_url) {
2068
+						$comments_echo .= '<a href="'.$user_profile_url.'">';
2069 2069
 					}
2070
-					$comments_echo .= gravatar( $comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png' );
2071
-					if ( $user_profile_url ) {
2070
+					$comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url().'/geodirectory-assets/images/gravatar2.png');
2071
+					if ($user_profile_url) {
2072 2072
 						$comments_echo .= '</a>';
2073 2073
 					}
2074 2074
 				}
@@ -2078,17 +2078,17 @@  discard block
 block discarded – undo
2078 2078
 			$comments_echo .= "</span>\n";
2079 2079
 
2080 2080
 			$comments_echo .= '<span class="geodir_reviewer_content">';
2081
-			if ( $comment->user_id ) {
2082
-				$comments_echo .= '<a href="' . get_author_posts_url( $comment->user_id ) . '">';
2081
+			if ($comment->user_id) {
2082
+				$comments_echo .= '<a href="'.get_author_posts_url($comment->user_id).'">';
2083 2083
 			}
2084
-			$comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> ';
2085
-			if ( $comment->user_id ) {
2084
+			$comments_echo .= '<span class="geodir_reviewer_author">'.$comment->comment_author.'</span> ';
2085
+			if ($comment->user_id) {
2086 2086
 				$comments_echo .= '</a>';
2087 2087
 			}
2088
-			$comments_echo .= '<span class="geodir_reviewer_reviewed">' . __( 'reviewed', 'geodirectory' ) . '</span> ';
2089
-			$comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>';
2090
-			$comments_echo .= geodir_get_rating_stars( $comment->overall_rating, $comment_post_ID );
2091
-			$comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . '';
2088
+			$comments_echo .= '<span class="geodir_reviewer_reviewed">'.__('reviewed', 'geodirectory').'</span> ';
2089
+			$comments_echo .= '<a href="'.$permalink.'" class="geodir_reviewer_title">'.$post_title.'</a>';
2090
+			$comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID);
2091
+			$comments_echo .= '<p class="geodir_reviewer_text">'.$comment_excerpt.'';
2092 2092
 			//echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
2093 2093
 			$comments_echo .= '</p>';
2094 2094
 
@@ -2108,25 +2108,25 @@  discard block
 block discarded – undo
2108 2108
  * @return array Returns post categories as an array.
2109 2109
  */
2110 2110
 function geodir_home_map_cats_key_value_array() {
2111
-	$post_types = geodir_get_posttypes( 'object' );
2111
+	$post_types = geodir_get_posttypes('object');
2112 2112
 
2113 2113
 	$return = array();
2114
-	if ( ! empty( $post_types ) ) {
2115
-		foreach ( $post_types as $key => $post_type ) {
2116
-			$cpt_name       = __( $post_type->labels->singular_name, 'geodirectory' );
2117
-			$post_type_name = sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name );
2118
-			$taxonomies     = geodir_get_taxonomies( $key );
2119
-			$cat_taxonomy   = ! empty( $taxonomies[0] ) ? $taxonomies[0] : null;
2120
-			$cat_terms      = $cat_taxonomy ? get_terms( $cat_taxonomy ) : null;
2121
-
2122
-			if ( ! empty( $cat_terms ) ) {
2123
-				$return[ 'optgroup_start-' . $key ] = $post_type_name;
2124
-
2125
-				foreach ( $cat_terms as $cat_term ) {
2126
-					$return[ $key . '_' . $cat_term->term_id ] = $cat_term->name;
2114
+	if (!empty($post_types)) {
2115
+		foreach ($post_types as $key => $post_type) {
2116
+			$cpt_name       = __($post_type->labels->singular_name, 'geodirectory');
2117
+			$post_type_name = sprintf(__('%s Categories', 'geodirectory'), $cpt_name);
2118
+			$taxonomies     = geodir_get_taxonomies($key);
2119
+			$cat_taxonomy   = !empty($taxonomies[0]) ? $taxonomies[0] : null;
2120
+			$cat_terms      = $cat_taxonomy ? get_terms($cat_taxonomy) : null;
2121
+
2122
+			if (!empty($cat_terms)) {
2123
+				$return['optgroup_start-'.$key] = $post_type_name;
2124
+
2125
+				foreach ($cat_terms as $cat_term) {
2126
+					$return[$key.'_'.$cat_term->term_id] = $cat_term->name;
2127 2127
 				}
2128 2128
 
2129
-				$return[ 'optgroup_end-' . $key ] = $post_type_name;
2129
+				$return['optgroup_end-'.$key] = $post_type_name;
2130 2130
 			}
2131 2131
 		}
2132 2132
 	}
@@ -2142,14 +2142,14 @@  discard block
 block discarded – undo
2142 2142
  * @package GeoDirectory
2143 2143
  */
2144 2144
 function geodir_twitter_tweet_button() {
2145
-	if ( isset( $_GET['gde'] ) ) {
2146
-		$link = '?url=' . urlencode( geodir_curPageURL() );
2145
+	if (isset($_GET['gde'])) {
2146
+		$link = '?url='.urlencode(geodir_curPageURL());
2147 2147
 	} else {
2148 2148
 		$link = '';
2149 2149
 	}
2150 2150
 	?>
2151 2151
 	<a href="http://twitter.com/share<?php echo $link; ?>"
2152
-	   class="twitter-share-button"><?php _e( 'Tweet', 'geodirectory' ); ?></a>
2152
+	   class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
2153 2153
 	<script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
2154 2154
 	<?php
2155 2155
 }
@@ -2166,10 +2166,10 @@  discard block
 block discarded – undo
2166 2166
 function geodir_fb_like_button() {
2167 2167
 	global $post;
2168 2168
 	?>
2169
-	<iframe <?php if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && ( strpos( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) !== false ) ) {
2169
+	<iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
2170 2170
 		echo 'allowtransparency="true"';
2171 2171
 	} ?> class="facebook"
2172
-	     src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode( get_permalink( $post->ID ) ); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2172
+	     src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2173 2173
 	     style="border:none; overflow:hidden; width:100px; height:20px"></iframe>
2174 2174
 	<?php
2175 2175
 }
@@ -2223,10 +2223,10 @@  discard block
 block discarded – undo
2223 2223
 			stWidget.addEntry({
2224 2224
 				"service": "sharethis",
2225 2225
 				"element": document.getElementById('st_sharethis'),
2226
-				"url": "<?php echo geodir_curPageURL();?>",
2227
-				"title": "<?php echo $post->post_title;?>",
2226
+				"url": "<?php echo geodir_curPageURL(); ?>",
2227
+				"title": "<?php echo $post->post_title; ?>",
2228 2228
 				"type": "chicklet",
2229
-				"text": "<?php _e( 'Share', 'geodirectory' );?>"
2229
+				"text": "<?php _e('Share', 'geodirectory'); ?>"
2230 2230
 			});
2231 2231
 		</script>
2232 2232
 	</div>
@@ -2234,7 +2234,7 @@  discard block
 block discarded – undo
2234 2234
 }
2235 2235
 
2236 2236
 function geodir_listing_bounce_map_pin_on_hover() {
2237
-	if ( get_option( 'geodir_listing_hover_bounce_map_pin', true ) ) {
2237
+	if (get_option('geodir_listing_hover_bounce_map_pin', true)) {
2238 2238
 		?>
2239 2239
 		<script>
2240 2240
 			jQuery(function ($) {
@@ -2257,44 +2257,44 @@  discard block
 block discarded – undo
2257 2257
 	}
2258 2258
 }
2259 2259
 
2260
-add_action( 'geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10 );
2260
+add_action('geodir_after_listing_listview', 'geodir_listing_bounce_map_pin_on_hover', 10);
2261 2261
 
2262
-add_action( 'geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1 );
2263
-function geodir_output_favourite_html_listings( $post_id ) {
2264
-	geodir_favourite_html( '', $post_id );
2262
+add_action('geodir_after_favorite_html', 'geodir_output_favourite_html_listings', 1, 1);
2263
+function geodir_output_favourite_html_listings($post_id) {
2264
+	geodir_favourite_html('', $post_id);
2265 2265
 }
2266 2266
 
2267
-add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2 );
2268
-function geodir_output_pinpoint_html_listings( $post_id, $post ) {
2267
+add_action('geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2);
2268
+function geodir_output_pinpoint_html_listings($post_id, $post) {
2269 2269
 	global $wp_query;
2270 2270
 
2271 2271
 	$show_pin_point = $wp_query->is_main_query();
2272 2272
 
2273
-	if ( ! empty( $show_pin_point ) && is_active_widget( false, "", "geodir_map_v3_listing_map" ) ) {
2274
-		$term_icon_url = get_tax_meta( $post->default_category, 'ct_cat_icon', false, $post->post_type );
2275
-		$marker_icon   = isset( $term_icon_url['src'] ) ? $term_icon_url['src'] : get_option( 'geodir_default_marker_icon' );
2273
+	if (!empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
2274
+		$term_icon_url = get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type);
2275
+		$marker_icon   = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
2276 2276
 		?>
2277 2277
 		<span class="geodir-pinpoint"
2278
-		      style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters( 'geodir_listing_listview_pinpoint_inner_content', '', 'listing' ); ?></span>
2278
+		      style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters('geodir_listing_listview_pinpoint_inner_content', '', 'listing'); ?></span>
2279 2279
 		<a class="geodir-pinpoint-link" href="javascript:void(0)"
2280 2280
 		   onclick="openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')"
2281 2281
 		   onmouseover="animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')"
2282
-		   onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e( 'Pinpoint', 'geodirectory' ); ?></a>
2282
+		   onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e('Pinpoint', 'geodirectory'); ?></a>
2283 2283
 		<?php
2284 2284
 	}
2285 2285
 }
2286 2286
 
2287 2287
 function geodir_search_form_submit_button() {
2288 2288
 
2289
-	$new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true;
2289
+	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2290 2290
 
2291
-	if ( $new_style ) {
2291
+	if ($new_style) {
2292 2292
 		$default_search_button_label = '<i class="fa fa-search" aria-hidden="true"></i>';
2293
-	}else{
2293
+	} else {
2294 2294
 		$default_search_button_label = 'Search';
2295 2295
 	}
2296
-	if ( get_option( 'geodir_search_button_label' ) && get_option( 'geodir_search_button_label' ) != 'Search' ) {
2297
-		$default_search_button_label = __( get_option( 'geodir_search_button_label' ), 'geodirectory' );
2296
+	if (get_option('geodir_search_button_label') && get_option('geodir_search_button_label') != 'Search') {
2297
+		$default_search_button_label = __(get_option('geodir_search_button_label'), 'geodirectory');
2298 2298
 	}
2299 2299
 
2300 2300
 	/**
@@ -2306,78 +2306,78 @@  discard block
 block discarded – undo
2306 2306
 	 *
2307 2307
 	 * @param string $default_search_button_label The current search button text.
2308 2308
 	 */
2309
-	$default_search_button_label = apply_filters( 'geodir_search_default_search_button_text', $default_search_button_label );
2309
+	$default_search_button_label = apply_filters('geodir_search_default_search_button_text', $default_search_button_label);
2310 2310
 
2311 2311
 	$fa_class = '';
2312
-	if ( strpos( $default_search_button_label, '&#' ) !== false ) {
2312
+	if (strpos($default_search_button_label, '&#') !== false) {
2313 2313
 		$fa_class = 'fa';
2314 2314
 	}
2315 2315
 
2316 2316
 
2317
-	if ( $new_style ) {
2317
+	if ($new_style) {
2318 2318
 	?>
2319
-		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e( $default_search_button_label ,'geodirectory'); ?></button>
2320
-<?php }else{?>
2321
-		<input type="button" value="<?php esc_attr_e( $default_search_button_label ); ?>"
2319
+		<button class="geodir_submit_search <?php echo $fa_class; ?>"><?php _e($default_search_button_label, 'geodirectory'); ?></button>
2320
+<?php } else {?>
2321
+		<input type="button" value="<?php esc_attr_e($default_search_button_label); ?>"
2322 2322
 	       class="geodir_submit_search <?php echo $fa_class; ?>"/>
2323 2323
 	<?php }
2324 2324
 }
2325 2325
 
2326
-add_action( 'geodir_before_search_button', 'geodir_search_form_submit_button', 5000 );
2326
+add_action('geodir_before_search_button', 'geodir_search_form_submit_button', 5000);
2327 2327
 
2328 2328
 function geodir_search_form_post_type_input() {
2329 2329
 	global $geodir_search_post_type;
2330
-	$post_types     = apply_filters( 'geodir_search_form_post_types', geodir_get_posttypes( 'object' ) );
2330
+	$post_types     = apply_filters('geodir_search_form_post_types', geodir_get_posttypes('object'));
2331 2331
 	$curr_post_type = $geodir_search_post_type;
2332 2332
 
2333
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2333
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2334 2334
 
2335
-		foreach ( $post_types as $post_type => $info ){
2335
+		foreach ($post_types as $post_type => $info) {
2336 2336
 			global $wpdb;
2337
-			$has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) );
2338
-			if ( ! $has_posts ) {
2337
+			$has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
2338
+			if (!$has_posts) {
2339 2339
 				unset($post_types->{$post_type});
2340 2340
 			}
2341 2341
 		}
2342 2342
 
2343
-		if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2343
+		if (!empty($post_types) && count((array) $post_types) > 1) {
2344 2344
 
2345
-			$new_style = get_option( 'geodir_show_search_old_search_from' ) ? false : true;
2346
-			if ( $new_style ) {
2345
+			$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2346
+			if ($new_style) {
2347 2347
 				echo "<div class='gd-search-input-wrapper gd-search-field-cpt'>";
2348 2348
 			}
2349 2349
 			?>
2350 2350
 			<select name="stype" class="search_by_post">
2351
-				<?php foreach ( $post_types as $post_type => $info ):
2351
+				<?php foreach ($post_types as $post_type => $info):
2352 2352
 					global $wpdb;
2353 2353
 					?>
2354 2354
 
2355
-					<option data-label="<?php echo get_post_type_archive_link( $post_type ); ?>"
2356
-					        value="<?php echo $post_type; ?>" <?php if ( isset( $_REQUEST['stype'] ) ) {
2357
-						if ( $post_type == $_REQUEST['stype'] ) {
2355
+					<option data-label="<?php echo get_post_type_archive_link($post_type); ?>"
2356
+					        value="<?php echo $post_type; ?>" <?php if (isset($_REQUEST['stype'])) {
2357
+						if ($post_type == $_REQUEST['stype']) {
2358 2358
 							echo 'selected="selected"';
2359 2359
 						}
2360
-					} elseif ( $curr_post_type == $post_type ) {
2360
+					} elseif ($curr_post_type == $post_type) {
2361 2361
 						echo 'selected="selected"';
2362
-					} ?>><?php _e( ucfirst( $info->labels->name ), 'geodirectory' ); ?></option>
2362
+					} ?>><?php _e(ucfirst($info->labels->name), 'geodirectory'); ?></option>
2363 2363
 
2364 2364
 				<?php endforeach; ?>
2365 2365
 			</select>
2366 2366
 			<?php
2367
-			if ( $new_style ) {
2367
+			if ($new_style) {
2368 2368
 				echo "</div>";
2369 2369
 			}
2370
-		}else{
2371
-			if(! empty( $post_types )){
2372
-				$pt_arr = (array)$post_types;
2373
-				echo '<input type="hidden" name="stype" value="' . key( $pt_arr  ) . '"  />';
2374
-			}else{
2370
+		} else {
2371
+			if (!empty($post_types)) {
2372
+				$pt_arr = (array) $post_types;
2373
+				echo '<input type="hidden" name="stype" value="'.key($pt_arr).'"  />';
2374
+			} else {
2375 2375
 				echo '<input type="hidden" name="stype" value="gd_place"  />';
2376 2376
 			}
2377 2377
 
2378 2378
 		}
2379 2379
 
2380
-	}elseif ( ! empty( $post_types ) ) {
2380
+	}elseif (!empty($post_types)) {
2381 2381
 		echo '<input type="hidden" name="stype" value="gd_place"  />';
2382 2382
 	}
2383 2383
 }
@@ -2385,26 +2385,26 @@  discard block
 block discarded – undo
2385 2385
 function geodir_search_form_search_input() {
2386 2386
 
2387 2387
 	$default_search_for_text = SEARCH_FOR_TEXT;
2388
-	if ( get_option( 'geodir_search_field_default_text' ) ) {
2389
-		$default_search_for_text = __( get_option( 'geodir_search_field_default_text' ), 'geodirectory' );
2388
+	if (get_option('geodir_search_field_default_text')) {
2389
+		$default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory');
2390 2390
 	}
2391 2391
 
2392 2392
 	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2393
-	if($new_style){
2393
+	if ($new_style) {
2394 2394
 		echo "<div class='gd-search-input-wrapper gd-search-field-search'>";
2395 2395
 	}
2396 2396
 	?>
2397 2397
 	<input class="search_text" name="s"
2398
-	       value="<?php if ( isset( $_REQUEST['s'] ) && trim( $_REQUEST['s'] ) != '' ) {
2399
-		       echo esc_attr( stripslashes_deep( $_REQUEST['s'] ) );
2398
+	       value="<?php if (isset($_REQUEST['s']) && trim($_REQUEST['s']) != '') {
2399
+		       echo esc_attr(stripslashes_deep($_REQUEST['s']));
2400 2400
 	       } else {
2401 2401
 		       echo $default_search_for_text;
2402 2402
 	       } ?>" type="text"
2403
-	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql( $default_search_for_text ); ?>';}"
2404
-	       onfocus="if (this.value == '<?php echo esc_sql( $default_search_for_text ); ?>') {this.value = '';}"
2403
+	       onblur="if (this.value.trim() == '') {this.value = '<?php echo esc_sql($default_search_for_text); ?>';}"
2404
+	       onfocus="if (this.value == '<?php echo esc_sql($default_search_for_text); ?>') {this.value = '';}"
2405 2405
 	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);">
2406 2406
 	<?php
2407
-	if($new_style){
2407
+	if ($new_style) {
2408 2408
 		echo "</div>";
2409 2409
 	}
2410 2410
 }
@@ -2412,12 +2412,12 @@  discard block
 block discarded – undo
2412 2412
 function geodir_search_form_near_input() {
2413 2413
 
2414 2414
 	$default_near_text = NEAR_TEXT;
2415
-	if ( get_option( 'geodir_near_field_default_text' ) ) {
2416
-		$default_near_text = __( get_option( 'geodir_near_field_default_text' ), 'geodirectory' );
2415
+	if (get_option('geodir_near_field_default_text')) {
2416
+		$default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory');
2417 2417
 	}
2418 2418
 
2419
-	if ( isset( $_REQUEST['snear'] ) && $_REQUEST['snear'] != '' ) {
2420
-		$near = esc_attr( stripslashes_deep( $_REQUEST['snear'] ) );
2419
+	if (isset($_REQUEST['snear']) && $_REQUEST['snear'] != '') {
2420
+		$near = esc_attr(stripslashes_deep($_REQUEST['snear']));
2421 2421
 	} else {
2422 2422
 		$near = $default_near_text;
2423 2423
 	}
@@ -2431,7 +2431,7 @@  discard block
 block discarded – undo
2431 2431
 	 * @since 1.6.9
2432 2432
 	 * @param string $curr_post_type The current post type.
2433 2433
 	 */
2434
-	$near_input_extra = apply_filters('geodir_near_input_extra','',$curr_post_type);
2434
+	$near_input_extra = apply_filters('geodir_near_input_extra', '', $curr_post_type);
2435 2435
 
2436 2436
 
2437 2437
 	/**
@@ -2444,7 +2444,7 @@  discard block
 block discarded – undo
2444 2444
 	 * @param string $near              The current near value.
2445 2445
 	 * @param string $default_near_text The default near value.
2446 2446
 	 */
2447
-	$near = apply_filters( 'geodir_search_near_text', $near, $default_near_text );
2447
+	$near = apply_filters('geodir_search_near_text', $near, $default_near_text);
2448 2448
 	/**
2449 2449
 	 * Filter the default "Near" text value for the search form.
2450 2450
 	 *
@@ -2455,7 +2455,7 @@  discard block
 block discarded – undo
2455 2455
 	 * @param string $near              The current near value.
2456 2456
 	 * @param string $default_near_text The default near value.
2457 2457
 	 */
2458
-	$default_near_text = apply_filters( 'geodir_search_default_near_text', $default_near_text, $near );
2458
+	$default_near_text = apply_filters('geodir_search_default_near_text', $default_near_text, $near);
2459 2459
 	/**
2460 2460
 	 * Filter the class for the near search input.
2461 2461
 	 *
@@ -2463,10 +2463,10 @@  discard block
 block discarded – undo
2463 2463
 	 *
2464 2464
 	 * @param string $class The class for the HTML near input, default is blank.
2465 2465
 	 */
2466
-	$near_class = apply_filters( 'geodir_search_near_class', '' );
2466
+	$near_class = apply_filters('geodir_search_near_class', '');
2467 2467
 
2468 2468
 	$new_style = get_option('geodir_show_search_old_search_from') ? false : true;
2469
-	if($new_style){
2469
+	if ($new_style) {
2470 2470
 		echo "<div class='gd-search-input-wrapper gd-search-field-near' $near_input_extra>";
2471 2471
 		
2472 2472
 		do_action('geodir_before_near_input');
@@ -2474,30 +2474,30 @@  discard block
 block discarded – undo
2474 2474
 
2475 2475
 	?>
2476 2476
 	<input name="snear" class="snear <?php echo $near_class; ?>" type="text" value="<?php echo $near; ?>"
2477
-	       onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql( $near ); ?>' != '' ? '<?php echo esc_sql( $near ); ?>' : '<?php echo $default_near_text; ?>');}"
2478
-	       onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql( $near ); ?>') {this.value = '';}"
2479
-	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra;?>/>
2477
+	       onblur="if (this.value.trim() == '') {this.value = ('<?php echo esc_sql($near); ?>' != '' ? '<?php echo esc_sql($near); ?>' : '<?php echo $default_near_text; ?>');}"
2478
+	       onfocus="if (this.value == '<?php echo $default_near_text; ?>' || this.value =='<?php echo esc_sql($near); ?>') {this.value = '';}"
2479
+	       onkeydown="javascript: if(event.keyCode == 13) geodir_click_search(this);" <?php echo $near_input_extra; ?>/>
2480 2480
 	<?php
2481
-	if($new_style){
2481
+	if ($new_style) {
2482 2482
 		do_action('geodir_after_near_input');
2483 2483
 
2484 2484
 		echo "</div>";
2485 2485
 	}
2486 2486
 }
2487 2487
 
2488
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10 );
2489
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_search_input', 20 );
2490
-add_action( 'geodir_search_form_inputs', 'geodir_search_form_near_input', 30 );
2488
+add_action('geodir_search_form_inputs', 'geodir_search_form_post_type_input', 10);
2489
+add_action('geodir_search_form_inputs', 'geodir_search_form_search_input', 20);
2490
+add_action('geodir_search_form_inputs', 'geodir_search_form_near_input', 30);
2491 2491
 
2492
-function geodir_get_search_post_type($pt=''){
2492
+function geodir_get_search_post_type($pt = '') {
2493 2493
 	global $geodir_search_post_type;
2494 2494
 
2495
-	if($pt!=''){return $geodir_search_post_type = $pt;}
2496
-	if(!empty($geodir_search_post_type)){ return $geodir_search_post_type;}
2495
+	if ($pt != '') {return $geodir_search_post_type = $pt; }
2496
+	if (!empty($geodir_search_post_type)) { return $geodir_search_post_type; }
2497 2497
 
2498 2498
 	$geodir_search_post_type = geodir_get_current_posttype();
2499 2499
 
2500
-	if(!$geodir_search_post_type) {
2500
+	if (!$geodir_search_post_type) {
2501 2501
 		$geodir_search_post_type = geodir_get_default_posttype();
2502 2502
 	}
2503 2503
 
@@ -2505,7 +2505,7 @@  discard block
 block discarded – undo
2505 2505
 	return $geodir_search_post_type;
2506 2506
 }
2507 2507
 
2508
-function geodir_search_form(){
2508
+function geodir_search_form() {
2509 2509
 
2510 2510
 	geodir_get_search_post_type();
2511 2511
 
@@ -2515,5 +2515,5 @@  discard block
 block discarded – undo
2515 2515
 	die();
2516 2516
 }
2517 2517
 
2518
-add_action( 'wp_ajax_geodir_search_form', 'geodir_search_form' );
2519
-add_action( 'wp_ajax_nopriv_geodir_search_form', 'geodir_search_form' );
2520 2518
\ No newline at end of file
2519
+add_action('wp_ajax_geodir_search_form', 'geodir_search_form');
2520
+add_action('wp_ajax_nopriv_geodir_search_form', 'geodir_search_form');
2521 2521
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-admin/admin_functions.php 1 patch
Spacing   +917 added lines, -917 removed lines patch added patch discarded remove patch
@@ -28,31 +28,31 @@  discard block
 block discarded – undo
28 28
      * @package GeoDirectory
29 29
      */
30 30
     function geodir_admin_styles() {
31
-        wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
31
+        wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
32 32
         wp_enqueue_style('geodirectory-admin-css');
33 33
 
34
-        wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
34
+        wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
35 35
         wp_enqueue_style('geodirectory-frontend-style');
36 36
 
37
-        wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
37
+        wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
38 38
         wp_enqueue_style('geodir-chosen-style');
39 39
 
40
-        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
40
+        wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
41 41
         wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
42 42
 
43
-        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
43
+        wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
44 44
         wp_enqueue_style('geodirectory-jquery-ui-css');
45 45
 
46
-        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
46
+        wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
47 47
         wp_enqueue_style('geodirectory-custom-fields-css');
48 48
 
49
-        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
49
+        wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
50 50
         wp_enqueue_style('geodirectory-pluplodar-css');
51 51
 
52
-        wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
52
+        wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
53 53
         wp_enqueue_style('geodir-rating-style');
54 54
 
55
-        wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
55
+        wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
56 56
         wp_enqueue_style('geodir-rtl-style');
57 57
     }
58 58
 }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
71 71
         wp_enqueue_style('font-awesome');
72 72
 
73
-        wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
73
+        wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
74 74
         wp_enqueue_script('geodirectory-admin');
75 75
 
76 76
     }
@@ -89,60 +89,60 @@  discard block
 block discarded – undo
89 89
         
90 90
         wp_enqueue_script('jquery');
91 91
 
92
-        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
92
+        wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
93 93
 
94
-        wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
94
+        wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
95 95
         wp_enqueue_script('chosen');
96 96
 
97
-        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
97
+        wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
98 98
         wp_enqueue_script('geodirectory-choose-ajax');
99 99
 
100 100
         if (isset($_REQUEST['listing_type'])) {
101
-            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
101
+            wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
102 102
         }
103 103
 
104 104
         wp_enqueue_script('geodirectory-custom-fields-script');
105
-        $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions';
105
+        $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions';
106 106
 
107
-        wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
107
+        wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
108 108
 
109 109
         if (in_array($geodir_map_name, array('auto', 'google'))) {
110
-            $map_lang = "&language=" . geodir_get_map_default_language();
111
-            $map_key = "&key=" . geodir_get_map_api_key();
110
+            $map_lang = "&language=".geodir_get_map_default_language();
111
+            $map_key = "&key=".geodir_get_map_api_key();
112 112
             /** This filter is documented in geodirectory_template_tags.php */
113 113
             $map_extra = apply_filters('geodir_googlemap_script_extra', '');
114
-            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
114
+            wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
115 115
         }
116 116
         
117 117
         if ($geodir_map_name == 'osm') {
118 118
             // Leaflet OpenStreetMap
119
-            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
119
+            wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
120 120
             wp_enqueue_style('geodirectory-leaflet-style');
121 121
                 
122
-            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
122
+            wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
123 123
             wp_enqueue_script('geodirectory-leaflet-script');
124 124
             
125
-            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
125
+            wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
126 126
             wp_enqueue_script('geodirectory-leaflet-geo-script');
127 127
         }
128
-        wp_enqueue_script( 'jquery-ui-autocomplete' );
128
+        wp_enqueue_script('jquery-ui-autocomplete');
129 129
         
130
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
130
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
131 131
         wp_enqueue_script('geodirectory-goMap-script');
132 132
 
133
-        wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
133
+        wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
134 134
         wp_enqueue_script('geodirectory-goMap-script');
135 135
 
136 136
 		// font awesome rating script
137 137
 		if (get_option('geodir_reviewrating_enable_font_awesome')) {
138
-			wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
138
+			wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
139 139
 			wp_enqueue_script('geodir-barrating-js');
140 140
 		} else { // default rating script
141
-			wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
141
+			wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
142 142
 			wp_enqueue_script('geodir-jRating-js');
143 143
 		}
144 144
 
145
-        wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
145
+        wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
146 146
         wp_enqueue_script('geodir-on-document-load');
147 147
 
148 148
 
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         wp_enqueue_script('plupload-all');
151 151
         wp_enqueue_script('jquery-ui-sortable');
152 152
 
153
-        wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
153
+        wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
154 154
         wp_enqueue_script('geodirectory-plupload-script');
155 155
 
156 156
         // SCRIPT FOR UPLOAD END
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
205 205
 
206 206
 
207
-        wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
207
+        wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
208 208
         wp_enqueue_script('geodirectory-admin-script');
209 209
 
210 210
         wp_enqueue_style('farbtastic');
@@ -212,10 +212,10 @@  discard block
 block discarded – undo
212 212
 
213 213
         $screen = get_current_screen();
214 214
         if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
215
-            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
215
+            wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
216 216
         }
217 217
 
218
-        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
218
+        $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl').'?geodir_ajax=true')));
219 219
         wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
220 220
 
221 221
     }
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
         if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
240 240
 
241
-        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
241
+        add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
242 242
 
243 243
 
244 244
     }
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
                 $geodir_menu_order[] = 'separator-geodirectory';
273 273
                 if (!empty($post_types)) {
274 274
                     foreach ($post_types as $post_type) {
275
-                        $geodir_menu_order[] = 'edit.php?post_type=' . $post_type;
275
+                        $geodir_menu_order[] = 'edit.php?post_type='.$post_type;
276 276
                     }
277 277
                 }
278 278
                 $geodir_menu_order[] = $item;
@@ -315,8 +315,8 @@  discard block
 block discarded – undo
315 315
 {
316 316
     if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
317 317
         echo '<div id="message" class="updated fade">
318
-                        <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
319
-                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
318
+                        <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory').' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">'.__('Support us by leaving a rating!', 'geodirectory').'</a></p>
319
+                        <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
320 320
                 </div>';
321 321
 
322 322
     }
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
     if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
325 325
         switch ($_REQUEST['msg']) {
326 326
             case 'success':
327
-                echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
327
+                echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
328 328
                 flush_rewrite_rules(false);
329 329
 
330 330
                 break;
@@ -332,30 +332,30 @@  discard block
 block discarded – undo
332 332
 				$gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : '';
333 333
 				
334 334
 				if ($gderr == 21)
335
-			    	echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
335
+			    	echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
336 336
 				else
337
-					echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
337
+					echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
338 338
                 break;
339 339
         }
340 340
     }
341 341
 
342 342
     $geodir_load_map = get_option('geodir_load_map');
343 343
     $need_map_key = false;
344
-    if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
344
+    if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
345 345
         $need_map_key = true;
346 346
     }
347 347
 
348 348
     if (!geodir_get_map_api_key() && $need_map_key) {
349
-        echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
349
+        echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
350 350
     }
351 351
 
352 352
     if (!geodir_is_default_location_set()) {
353
-        echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
353
+        echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
354 354
 
355 355
     }
356 356
 
357 357
     if (!function_exists('curl_init')) {
358
-        echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
358
+        echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
359 359
 
360 360
     }
361 361
 
@@ -375,18 +375,18 @@  discard block
 block discarded – undo
375 375
 function geodir_handle_option_form_submit($current_tab)
376 376
 {
377 377
     global $geodir_settings;
378
-    if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
378
+    if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
379 379
         /**
380 380
          * Contains settings array for current tab.
381 381
          *
382 382
          * @since 1.0.0
383 383
          * @package GeoDirectory
384 384
          */
385
-        include_once('option-pages/' . $current_tab . '_array.php');
385
+        include_once('option-pages/'.$current_tab.'_array.php');
386 386
     }
387 387
     if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') :
388 388
         if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
-        if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
389
+        if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
390 390
 		
391 391
 		/**
392 392
 		 * Fires before updating geodirectory admin settings.
@@ -419,13 +419,13 @@  discard block
 block discarded – undo
419 419
          * @param string $current_tab The current settings tab name.
420 420
          * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab.
421 421
          */
422
-        do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
422
+        do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
423 423
 
424 424
         flush_rewrite_rules(false);
425 425
 
426 426
         $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : '';
427 427
 
428
-        $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
428
+        $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
429 429
 
430 430
         wp_redirect($redirect_url);
431 431
         exit();
@@ -464,18 +464,18 @@  discard block
 block discarded – undo
464 464
 
465 465
         elseif (isset($value['type']) && $value['type'] == 'image_width') :
466 466
 
467
-            if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
468
-                update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']);
469
-                update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']);
470
-                if (isset($_POST[$value['id'] . '_crop'])) :
471
-                    update_option($value['id'] . '_crop', 1);
467
+            if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
468
+                update_option($value['id'].'_width', $_POST[$value['id'].'_width']);
469
+                update_option($value['id'].'_height', $_POST[$value['id'].'_height']);
470
+                if (isset($_POST[$value['id'].'_crop'])) :
471
+                    update_option($value['id'].'_crop', 1);
472 472
                 else :
473
-                    update_option($value['id'] . '_crop', 0);
473
+                    update_option($value['id'].'_crop', 0);
474 474
                 endif;
475 475
             } else {
476
-                update_option($value['id'] . '_width', $value['std']);
477
-                update_option($value['id'] . '_height', $value['std']);
478
-                update_option($value['id'] . '_crop', 1);
476
+                update_option($value['id'].'_width', $value['std']);
477
+                update_option($value['id'].'_height', $value['std']);
478
+                update_option($value['id'].'_crop', 1);
479 479
             }
480 480
 
481 481
         elseif (isset($value['type']) && $value['type'] == 'map') :
@@ -517,12 +517,12 @@  discard block
 block discarded – undo
517 517
         elseif (isset($value['type']) && $value['type'] == 'file') :
518 518
 
519 519
 
520
-            if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
520
+            if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
521 521
 
522 522
                 if (get_option($value['id'])) {
523 523
                     $image_name_arr = explode('/', get_option($value['id']));
524 524
                     $noimg_name = end($image_name_arr);
525
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
525
+                    $img_path = $uploads['path'].'/'.$noimg_name;
526 526
                     if (file_exists($img_path))
527 527
                         unlink($img_path);
528 528
                 }
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
                 if (get_option($value['id'])) {
551 551
                     $image_name_arr = explode('/', get_option($value['id']));
552 552
                     $noimg_name = end($image_name_arr);
553
-                    $img_path = $uploads['path'] . '/' . $noimg_name;
553
+                    $img_path = $uploads['path'].'/'.$noimg_name;
554 554
                     if (file_exists($img_path))
555 555
                         unlink($img_path);
556 556
                 }
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
             // same menu setting per theme.
572 572
             if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
573 573
                 $theme = wp_get_theme();
574
-                update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
574
+                update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
575 575
             }
576 576
 
577 577
             if (isset($value['id']) && isset($_POST[$value['id']])) {
@@ -641,8 +641,8 @@  discard block
 block discarded – undo
641 641
 
642 642
             $listing_slug = $geodir_posttype_info['labels']['singular_name'];
643 643
 
644
-            $tabs[$geodir_post_type . '_fields_settings'] = array(
645
-                'label' => __(ucfirst($listing_slug) . ' Settings', 'geodirectory'),
644
+            $tabs[$geodir_post_type.'_fields_settings'] = array(
645
+                'label' => __(ucfirst($listing_slug).' Settings', 'geodirectory'),
646 646
                 'subtabs' => array(
647 647
                     array('subtab' => 'custom_fields',
648 648
                         'label' => __('Custom Fields', 'geodirectory'),
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
  */
676 676
 function geodir_tools_setting_tab($tabs)
677 677
 {
678
-    wp_enqueue_script( 'jquery-ui-progressbar' );
678
+    wp_enqueue_script('jquery-ui-progressbar');
679 679
     $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
680 680
     return $tabs;
681 681
 }
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
  */
710 710
 function geodir_extend_geodirectory_setting_tab($tabs)
711 711
 {
712
-    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
712
+    $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
713 713
     return $tabs;
714 714
 }
715 715
 
@@ -769,8 +769,8 @@  discard block
 block discarded – undo
769 769
                     _e('Unknown', 'geodirectory');
770 770
                 } else {
771 771
                     /* If there is a city id, append 'city name' to the text string. */
772
-                    $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
773
-                    echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id);
772
+                    $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
773
+                    echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id);
774 774
                 }
775 775
                 break;
776 776
 
@@ -788,14 +788,14 @@  discard block
 block discarded – undo
788 788
                         $expire_class = 'expire_over';
789 789
                     }
790 790
                     $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days
791
-                    $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
791
+                    $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
792 792
                 }
793 793
                 /* If no expire_date is found, output a default message. */
794 794
                 if (empty($expire_date))
795 795
                     echo __('Unknown', 'geodirectory');
796 796
                 /* If there is a expire_date, append 'days left' to the text string. */
797 797
                 else
798
-                    echo $expire_date . $date_diff_text;
798
+                    echo $expire_date.$date_diff_text;
799 799
                 break;
800 800
 
801 801
             /* If displaying the 'categorys' column. */
@@ -862,7 +862,7 @@  discard block
 block discarded – undo
862 862
 function geodir_post_information_save($post_id, $post) {
863 863
     global $wpdb, $current_user;
864 864
 
865
-    if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
865
+    if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
866 866
         return;
867 867
     }
868 868
 
@@ -930,7 +930,7 @@  discard block
 block discarded – undo
930 930
                     $tab_id = $value['id'];
931 931
 
932 932
                 if (isset($value['desc']) && $value['desc'])
933
-                    $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>';
933
+                    $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>';
934 934
 
935 935
                 if (isset($value['name']) && $value['name']) {
936 936
                     if ($first_title === true) {
@@ -938,9 +938,9 @@  discard block
 block discarded – undo
938 938
                     } else {
939 939
                         echo '</div>';
940 940
                     }
941
-                    echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>';
941
+                    echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>';
942 942
 
943
-                    echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
943
+                    echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
944 944
                 }
945 945
 
946 946
                 /**
@@ -950,21 +950,21 @@  discard block
 block discarded – undo
950 950
                  *
951 951
                  * @since 1.0.0
952 952
                  */
953
-                do_action('geodir_settings_' . sanitize_title($value['id']));
953
+                do_action('geodir_settings_'.sanitize_title($value['id']));
954 954
                 break;
955 955
 
956 956
             case 'no_tabs':
957 957
 
958 958
                 echo '<div class="inner_content_tab_main">';
959
-                echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >';
959
+                echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >';
960 960
 
961 961
                 break;
962 962
 
963 963
             case 'sectionstart':
964 964
                 if (isset($value['desc']) && $value['desc'])
965
-                    $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>';
965
+                    $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>';
966 966
                 if (isset($value['name']) && $value['name'])
967
-                    echo '<h3>' . $value['name'] . $desc . '</h3>';
967
+                    echo '<h3>'.$value['name'].$desc.'</h3>';
968 968
                 /**
969 969
                  * Called after a GeoDirectory settings sectionstart is output in the GD settings page.
970 970
                  *
@@ -972,8 +972,8 @@  discard block
 block discarded – undo
972 972
                  *
973 973
                  * @since 1.0.0
974 974
                  */
975
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
976
-                echo '<table class="form-table">' . "\n\n";
975
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
976
+                echo '<table class="form-table">'."\n\n";
977 977
 
978 978
                 break;
979 979
             case 'sectionend':
@@ -984,7 +984,7 @@  discard block
 block discarded – undo
984 984
                  *
985 985
                  * @since 1.0.0
986 986
                  */
987
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
987
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
988 988
                 echo '</table>';
989 989
                 /**
990 990
                  * Called after a GeoDirectory settings sectionend is output in the GD settings page.
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
                  *
994 994
                  * @since 1.0.0
995 995
                  */
996
-                if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
996
+                if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
997 997
                 break;
998 998
             case 'text':
999 999
                 ?>
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1003 1003
                                            id="<?php echo esc_attr($value['id']); ?>"
1004 1004
                                            type="<?php echo esc_attr($value['type']); ?>"
1005
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1005
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1006 1006
                                            style=" <?php echo esc_attr($value['css']); ?>"
1007 1007
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1008 1008
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
                 <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>"
1020 1020
                                            id="<?php echo esc_attr($value['id']); ?>"
1021 1021
                                            type="<?php echo esc_attr($value['type']); ?>"
1022
-                                           <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1022
+                                           <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1023 1023
                                            style="<?php echo esc_attr($value['css']); ?>"
1024 1024
                                            value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
1025 1025
                                                echo esc_attr(stripslashes(get_option($value['id'])));
@@ -1065,17 +1065,17 @@  discard block
 block discarded – undo
1065 1065
                     <?php _e('Width', 'geodirectory'); ?> <input
1066 1066
                         name="<?php echo esc_attr($value['id']); ?>_width"
1067 1067
                         id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3"
1068
-                        value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1068
+                        value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/>
1069 1069
 
1070 1070
                     <?php _e('Height', 'geodirectory'); ?> <input
1071 1071
                         name="<?php echo esc_attr($value['id']); ?>_height"
1072 1072
                         id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3"
1073
-                        value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1073
+                        value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/>
1074 1074
 
1075 1075
                     <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
1076 1076
                             name="<?php echo esc_attr($value['id']); ?>_crop"
1077 1077
                             id="<?php echo esc_attr($value['id']); ?>_crop"
1078
-                            type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label>
1078
+                            type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label>
1079 1079
 
1080 1080
                     <span class="description"><?php echo $value['desc'] ?></span></td>
1081 1081
                 </tr><?php
@@ -1125,7 +1125,7 @@  discard block
 block discarded – undo
1125 1125
                                             id="<?php echo esc_attr($value['id']); ?>"
1126 1126
                                             style="<?php echo esc_attr($value['css']); ?>"
1127 1127
                                             class="<?php if (isset($value['class'])) echo $value['class']; ?>"
1128
-                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>"
1128
+                                            data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>"
1129 1129
                                             option-ajaxchosen="false">
1130 1130
                         <?php
1131 1131
                         foreach ($value['options'] as $key => $val) {
@@ -1136,7 +1136,7 @@  discard block
 block discarded – undo
1136 1136
                             } else {
1137 1137
                                 ?>
1138 1138
                                 <option
1139
-                                    value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option>
1139
+                                    value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>><?php echo ucfirst($val) ?></option>
1140 1140
                             <?php
1141 1141
                             }
1142 1142
                         }
@@ -1171,7 +1171,7 @@  discard block
 block discarded – undo
1171 1171
                 ?>
1172 1172
 
1173 1173
                 <tr valign="top">
1174
-                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
1174
+                    <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
1175 1175
                     <td width="60%">
1176 1176
                         <select name="geodir_default_map_language" style="width:60%">
1177 1177
                             <?php
@@ -1253,7 +1253,7 @@  discard block
 block discarded – undo
1253 1253
 
1254 1254
                 <tr valign="top">
1255 1255
                     <th class="titledesc"
1256
-                        width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
1256
+                        width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
1257 1257
                     <td width="60%">
1258 1258
                         <select name="geodir_default_map_search_pt" style="width:60%">
1259 1259
                             <?php
@@ -1294,7 +1294,7 @@  discard block
 block discarded – undo
1294 1294
                         $cat_display = 'checkbox';
1295 1295
                         $gd_post_types = get_option('geodir_exclude_post_type_on_map');
1296 1296
                         $gd_cats = get_option('geodir_exclude_cat_on_map');
1297
-                        $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
1297
+                        $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
1298 1298
                         $count = 1;
1299 1299
                         ?>
1300 1300
                         <table width="70%" class="widefat">
@@ -1323,7 +1323,7 @@  discard block
 block discarded – undo
1323 1323
                                                                                            name="home_map_post_types[]"
1324 1324
                                                                                            id="<?php echo esc_attr($value['id']); ?>"
1325 1325
                                                                                            value="<?php echo $key; ?>"
1326
-                                                                                           class="map_post_type" <?php echo $checked;?> />
1326
+                                                                                           class="map_post_type" <?php echo $checked; ?> />
1327 1327
                                         <?php echo $post_types_obj->labels->singular_name; ?></td>
1328 1328
                                     <td width="40%">
1329 1329
                                         <div class="home_map_category" style="overflow:auto;width:200px;height:100px;"
@@ -1381,12 +1381,12 @@  discard block
 block discarded – undo
1381 1381
                 ?>
1382 1382
                 <fieldset>
1383 1383
                     <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend>
1384
-                    <label for="<?php echo $value['id'];?>">
1384
+                    <label for="<?php echo $value['id']; ?>">
1385 1385
                         <input name="<?php echo esc_attr($value['id']); ?>"
1386
-                               id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio"
1386
+                               id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio"
1387 1387
                                value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
1388 1388
                             echo 'checked="checked"';
1389
-                        }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
1389
+                        }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
1390 1390
                         <?php echo $value['desc']; ?></label><br>
1391 1391
                 </fieldset>
1392 1392
                 <?php
@@ -1406,9 +1406,9 @@  discard block
 block discarded – undo
1406 1406
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1407 1407
                 <td class="forminp">
1408 1408
                     <textarea
1409
-                        <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1409
+                        <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>"
1410 1410
                         id="<?php echo esc_attr($value['id']); ?>"
1411
-                        <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1411
+                        <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
1412 1412
                         style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span
1413 1413
                         class="description"><?php echo $value['desc'] ?></span>
1414 1414
 
@@ -1453,7 +1453,7 @@  discard block
 block discarded – undo
1453 1453
 					}
1454 1454
 				}
1455 1455
 				//
1456
-				$page_setting = (int)get_option($value['id']);
1456
+				$page_setting = (int) get_option($value['id']);
1457 1457
 
1458 1458
                 $args = array('name' => $value['id'],
1459 1459
                     'id' => $value['id'],
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
                 <tr valign="top" class="single_select_page">
1471 1471
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
1472 1472
                 <td class="forminp">
1473
-                    <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
1473
+                    <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
1474 1474
                     <span class="description"><?php echo $value['desc'] ?></span>
1475 1475
                 </td>
1476 1476
                 </tr><?php
@@ -1479,7 +1479,7 @@  discard block
 block discarded – undo
1479 1479
 				}
1480 1480
                 break;
1481 1481
             case 'single_select_country' :
1482
-                $country_setting = (string)get_option($value['id']);
1482
+                $country_setting = (string) get_option($value['id']);
1483 1483
                 if (strstr($country_setting, ':')) :
1484 1484
                     $country = current(explode(':', $country_setting));
1485 1485
                     $state = end(explode(':', $country_setting));
@@ -1502,7 +1502,7 @@  discard block
 block discarded – undo
1502 1502
             case 'multi_select_countries' :
1503 1503
                 $countries = $geodirectory->countries->countries;
1504 1504
                 asort($countries);
1505
-                $selections = (array)get_option($value['id']);
1505
+                $selections = (array) get_option($value['id']);
1506 1506
                 ?>
1507 1507
                 <tr valign="top">
1508 1508
                 <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1512,7 +1512,7 @@  discard block
 block discarded – undo
1512 1512
                             title="Country" class="chosen_select">
1513 1513
                         <?php
1514 1514
                         if ($countries) foreach ($countries as $key => $val) :
1515
-                            echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>';
1515
+                            echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>';
1516 1516
                         endforeach;
1517 1517
                         ?>
1518 1518
                     </select>
@@ -1524,7 +1524,7 @@  discard block
 block discarded – undo
1524 1524
                 break;
1525 1525
 
1526 1526
             case 'google_analytics' :
1527
-                $selections = (array)get_option($value['id']);
1527
+                $selections = (array) get_option($value['id']);
1528 1528
                     ?>
1529 1529
                     <tr valign="top">
1530 1530
                         <th scope="row" class="titledesc"><?php echo $value['name'] ?></th>
@@ -1535,27 +1535,27 @@  discard block
 block discarded – undo
1535 1535
 
1536 1536
                             $oAuthURL = "https://accounts.google.com/o/oauth2/auth?";
1537 1537
                             $scope = "scope=https://www.googleapis.com/auth/analytics.readonly";
1538
-                            $state = "&state=123";//any string
1539
-                            $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
1538
+                            $state = "&state=123"; //any string
1539
+                            $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
1540 1540
                             $response_type = "&response_type=code";
1541 1541
                             $client_id = "&client_id=".get_option('geodir_ga_client_id');
1542 1542
                             $access_type = "&access_type=offline";
1543 1543
                             $approval_prompt = "&approval_prompt=force";
1544 1544
 
1545
-                            $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt;
1545
+                            $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt;
1546 1546
 
1547 1547
 
1548 1548
                             if (get_option('geodir_ga_auth_token')) {
1549 1549
                                 ?>
1550 1550
                                 <span class="button-primary"
1551
-                                      onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Re-authorize', 'geodirectory'); ?></span>
1551
+                                      onclick="window.open('<?php echo  geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Re-authorize', 'geodirectory'); ?></span>
1552 1552
                                 <span
1553 1553
                                     style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
1554 1554
                             <?php
1555 1555
                             } else {
1556 1556
                                 ?>
1557 1557
                                 <span class="button-primary"
1558
-                                      onclick="window.open('<?php echo  geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
1558
+                                      onclick="window.open('<?php echo  geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory'); ?></span>
1559 1559
                             <?php
1560 1560
                             }
1561 1561
                             ?>
@@ -1626,9 +1626,9 @@  discard block
 block discarded – undo
1626 1626
 
1627 1627
             <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
1628 1628
             jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
1629
-            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
1629
+            jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
1630 1630
             jQuery('.gd-content-heading').hide();
1631
-            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
1631
+            jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
1632 1632
             <?php } ?>
1633 1633
         });
1634 1634
     </script>
@@ -1714,7 +1714,7 @@  discard block
 block discarded – undo
1714 1714
     wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename');
1715 1715
 
1716 1716
     if (geodir_get_featured_image($post_id, 'thumbnail')) {
1717
-        echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
1717
+        echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
1718 1718
         geodir_show_featured_image($post_id, 'thumbnail');
1719 1719
     }
1720 1720
 
@@ -1725,13 +1725,13 @@  discard block
 block discarded – undo
1725 1725
 
1726 1726
     <h5 class="form_title">
1727 1727
         <?php if ($image_limit != 0 && $image_limit == 1) {
1728
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
1728
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
1729 1729
         } ?>
1730 1730
         <?php if ($image_limit != 0 && $image_limit > 1) {
1731
-            echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
1731
+            echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
1732 1732
         } ?>
1733 1733
         <?php if ($image_limit == 0) {
1734
-            echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
1734
+            echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
1735 1735
         } ?>
1736 1736
     </h5>
1737 1737
 
@@ -1770,10 +1770,10 @@  discard block
 block discarded – undo
1770 1770
         <div
1771 1771
             class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
1772 1772
             id="<?php echo $id; ?>plupload-upload-ui">
1773
-            <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
1773
+            <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
1774 1774
             <input id="<?php echo $id; ?>plupload-browse-button" type="button"
1775 1775
                    value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
1776
-            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span>
1776
+            <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span>
1777 1777
             <?php if ($width && $height): ?>
1778 1778
                 <span class="plupload-resize"></span>
1779 1779
                 <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span>
@@ -1785,7 +1785,7 @@  discard block
 block discarded – undo
1785 1785
              id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;">
1786 1786
         </div>
1787 1787
         <span
1788
-            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory');?></span>
1788
+            id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory'); ?></span>
1789 1789
         <span id="<?php echo $id; ?>upload-error" style="display:none"></span>
1790 1790
     </div>
1791 1791
 
@@ -1995,9 +1995,9 @@  discard block
 block discarded – undo
1995 1995
     $plugin = 'avada-nag';
1996 1996
     $timestamp = 'avada-nag1234';
1997 1997
     $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
1998
-    echo '<div id="' . $timestamp . '"  class="error">';
1999
-    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>';
2000
-    echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
1998
+    echo '<div id="'.$timestamp.'"  class="error">';
1999
+    echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fa fa-times"></i></span>';
2000
+    echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
2001 2001
     echo "<p>$message</p>";
2002 2002
     echo "</div>";
2003 2003
 
@@ -2130,7 +2130,7 @@  discard block
 block discarded – undo
2130 2130
 		
2131 2131
 		// Don't allow same slug url for listing and location
2132 2132
 		if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
2133
-			$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
2133
+			$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
2134 2134
         	wp_redirect($redirect_url);
2135 2135
 			exit;
2136 2136
 		}
@@ -2142,7 +2142,7 @@  discard block
 block discarded – undo
2142 2142
 			$default_language = $sitepress->get_default_language();
2143 2143
 			
2144 2144
 			if ($current_language != 'all' && $current_language != $default_language) {
2145
-				$redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
2145
+				$redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
2146 2146
 				wp_redirect($redirect_url);
2147 2147
 				exit;
2148 2148
 			}
@@ -2163,11 +2163,11 @@  discard block
 block discarded – undo
2163 2163
 function geodir_hide_admin_preview_button() {
2164 2164
     global $post_type;
2165 2165
     $post_types = geodir_get_posttypes();
2166
-    if(in_array($post_type, $post_types))
2166
+    if (in_array($post_type, $post_types))
2167 2167
         echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
2168 2168
 }
2169
-add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' );
2170
-add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' );
2169
+add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
2170
+add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
2171 2171
 
2172 2172
 /**
2173 2173
  * Add the tab in left sidebar menu fro import & export page.
@@ -2177,8 +2177,8 @@  discard block
 block discarded – undo
2177 2177
  *
2178 2178
  * @return array Array of tab data.
2179 2179
  */
2180
-function geodir_import_export_tab( $tabs ) {
2181
-	$tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) );
2180
+function geodir_import_export_tab($tabs) {
2181
+	$tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
2182 2182
     return $tabs;
2183 2183
 }
2184 2184
 
@@ -2192,8 +2192,8 @@  discard block
 block discarded – undo
2192 2192
  * @return string Html content.
2193 2193
  */
2194 2194
 function geodir_import_export_page() {
2195
-	$nonce = wp_create_nonce( 'geodir_import_export_nonce' );
2196
-	$gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv';
2195
+	$nonce = wp_create_nonce('geodir_import_export_nonce');
2196
+	$gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv';
2197 2197
     /**
2198 2198
      * Filter sample category data csv file url.
2199 2199
      *
@@ -2202,9 +2202,9 @@  discard block
 block discarded – undo
2202 2202
      *
2203 2203
      * @param string $gd_cats_sample_csv Sample category data csv file url.
2204 2204
      */
2205
-	$gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv );
2205
+	$gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
2206 2206
 	
2207
-	$gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv';
2207
+	$gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv';
2208 2208
     /**
2209 2209
      * Filter sample post data csv file url.
2210 2210
      *
@@ -2213,15 +2213,15 @@  discard block
 block discarded – undo
2213 2213
      *
2214 2214
      * @param string $gd_posts_sample_csv Sample post data csv file url.
2215 2215
      */
2216
-    $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv );
2216
+    $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
2217 2217
 	
2218
-	$gd_posttypes = geodir_get_posttypes( 'array' );
2218
+	$gd_posttypes = geodir_get_posttypes('array');
2219 2219
 	
2220 2220
 	$gd_posttypes_option = '';
2221
-	foreach ( $gd_posttypes as $gd_posttype => $row ) {
2222
-		$gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>';
2221
+	foreach ($gd_posttypes as $gd_posttype => $row) {
2222
+		$gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>';
2223 2223
 	}
2224
-	wp_enqueue_script( 'jquery-ui-progressbar' );
2224
+	wp_enqueue_script('jquery-ui-progressbar');
2225 2225
 	
2226 2226
 	$gd_chunksize_options = array();
2227 2227
 	$gd_chunksize_options[100] = 100;
@@ -2243,50 +2243,50 @@  discard block
 block discarded – undo
2243 2243
      *
2244 2244
      * @param string $gd_chunksize_options Entries options.
2245 2245
      */
2246
-    $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options );
2246
+    $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
2247 2247
 	
2248 2248
 	$gd_chunksize_option = '';
2249 2249
 	foreach ($gd_chunksize_options as $value => $title) {
2250
-		$gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>';
2250
+		$gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>';
2251 2251
 	}
2252 2252
 	
2253 2253
 	$uploads = wp_upload_dir();
2254
-	$upload_dir = wp_sprintf( CSV_TRANSFER_IMG_FOLDER, str_replace( ABSPATH, '', $uploads['path'] ) );
2254
+	$upload_dir = wp_sprintf(CSV_TRANSFER_IMG_FOLDER, str_replace(ABSPATH, '', $uploads['path']));
2255 2255
 ?>
2256 2256
 </form>
2257 2257
 <div class="inner_content_tab_main gd-import-export">
2258
-  <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3>
2259
-  <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span>
2258
+  <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
2259
+  <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
2260 2260
   <div class="gd-content-heading">
2261 2261
 
2262 2262
   <?php
2263 2263
     ini_set('max_execution_time', 999999);
2264
-    $ini_max_execution_time_check = @ini_get( 'max_execution_time' );
2264
+    $ini_max_execution_time_check = @ini_get('max_execution_time');
2265 2265
     ini_restore('max_execution_time');
2266 2266
 
2267
-    if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
2267
+    if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
2268 2268
         ?>
2269 2269
 	<div id="gd_ie_reqs" class="metabox-holder">
2270 2270
       <div class="meta-box-sortables ui-sortable">
2271 2271
         <div class="postbox">
2272
-          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3>
2272
+          <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
2273 2273
           <div class="inside">
2274
-            <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span>
2274
+            <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
2275 2275
 			<table class="form-table">
2276 2276
 				<thead>
2277 2277
 				  <tr>
2278
-				  	<th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th>
2278
+				  	<th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
2279 2279
 				  </tr>
2280 2280
 				</thead>
2281 2281
 				<tbody>
2282 2282
 				  <tr>
2283
-				  	<td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td>
2283
+				  	<td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
2284 2284
 				  </tr>
2285 2285
 				  <tr>
2286
-				  	<td>max_execution_time</td><td><?php  echo @ini_get( 'max_execution_time' );?></td><td>3000</td>
2286
+				  	<td>max_execution_time</td><td><?php  echo @ini_get('max_execution_time'); ?></td><td>3000</td>
2287 2287
 				  </tr>
2288 2288
 				  <tr>
2289
-				  	<td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td>
2289
+				  	<td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
2290 2290
 				  </tr>
2291 2291
 				</tbody>
2292 2292
 		    </table>
@@ -2298,21 +2298,21 @@  discard block
 block discarded – undo
2298 2298
 	<div id="gd_ie_imposts" class="metabox-holder">
2299 2299
       <div class="meta-box-sortables ui-sortable">
2300 2300
         <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox">
2301
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2302
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3>
2301
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2302
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
2303 2303
           <div class="inside">
2304 2304
             <table class="form-table">
2305 2305
 				<tbody>
2306 2306
 				  <tr>
2307 2307
 					<td class="gd-imex-box">
2308 2308
 						<div class="gd-im-choices">
2309
-						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2310
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p>
2309
+						<p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2310
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
2311 2311
 						</div>
2312 2312
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui">
2313 2313
 							<input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
2314
-							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2315
-						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" />
2314
+							<input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
2315
+						<input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" />
2316 2316
 							<?php
2317 2317
 							/**
2318 2318
 							 * Called just after the sample CSV download link.
@@ -2321,7 +2321,7 @@  discard block
 block discarded – undo
2321 2321
 							 */
2322 2322
 							do_action('geodir_sample_csv_download_link');
2323 2323
 							?>
2324
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span>
2324
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
2325 2325
 							<div class="filelist"></div>
2326 2326
 						</div>
2327 2327
 						<span id="gd_im_catupload-error" style="display:none"></span>
@@ -2339,7 +2339,7 @@  discard block
 block discarded – undo
2339 2339
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2340 2340
 						</div>
2341 2341
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2342
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2342
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2343 2343
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2344 2344
 									id="gd-import-perc">0%</font> )
2345 2345
 								<div class="gd-fileprogress"></div>
@@ -2351,10 +2351,10 @@  discard block
 block discarded – undo
2351 2351
                     	<div class="gd-imex-btns" style="display:none;">
2352 2352
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2353 2353
                         	<input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2354
-                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2355
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2354
+                        	<input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2355
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
2356 2356
 							<div id="gd_process_data" style="display:none">
2357
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2357
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2358 2358
 							</div>
2359 2359
 						</div>
2360 2360
 					</td>
@@ -2368,30 +2368,30 @@  discard block
 block discarded – undo
2368 2368
 	<div id="gd_ie_excategs" class="metabox-holder">
2369 2369
 	  <div class="meta-box-sortables ui-sortable">
2370 2370
 		<div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox">
2371
-		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2372
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3>
2371
+		  <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2372
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
2373 2373
 		  <div class="inside">
2374 2374
 			<table class="form-table">
2375 2375
 			  <tbody>
2376 2376
 				<tr>
2377 2377
 				  <td class="fld"><label for="gd_post_type">
2378
-					<?php _e( 'Post Type:', 'geodirectory' );?>
2378
+					<?php _e('Post Type:', 'geodirectory'); ?>
2379 2379
 					</label></td>
2380 2380
 				  <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px">
2381
-					  <?php echo $gd_posttypes_option;?>
2381
+					  <?php echo $gd_posttypes_option; ?>
2382 2382
 					</select></td>
2383 2383
 				</tr>
2384 2384
 				<tr>
2385
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2386
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2385
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2386
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2387 2387
 				</tr>
2388 2388
                 <tr class="gd-imex-dates">
2389
-					<td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td>
2390
-					<td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2389
+					<td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
2390
+					<td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
2391 2391
 				</tr>
2392 2392
 				<tr>
2393 2393
 				  <td class="fld" style="vertical-align:top"><label>
2394
-					<?php _e( 'Progress:', 'geodirectory' );?>
2394
+					<?php _e('Progress:', 'geodirectory'); ?>
2395 2395
 					</label></td>
2396 2396
 				  <td><div id='gd_progressbar_box'>
2397 2397
 					  <div id="gd_progressbar" class="gd_progressbar">
@@ -2399,13 +2399,13 @@  discard block
 block discarded – undo
2399 2399
 					  </div>
2400 2400
 					</div>
2401 2401
 					<p style="display:inline-block">
2402
-					  <?php _e( 'Elapsed Time:', 'geodirectory' );?>
2402
+					  <?php _e('Elapsed Time:', 'geodirectory'); ?>
2403 2403
 					</p>
2404 2404
 					  
2405 2405
 					<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2406 2406
 				</tr>
2407 2407
 				<tr class="gd-ie-actions">
2408
-				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2408
+				  <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
2409 2409
 				  </td>
2410 2410
 				  <td id="gd_ie_ex_files" class="gd-ie-files"></td>
2411 2411
 				</tr>
@@ -2418,21 +2418,21 @@  discard block
 block discarded – undo
2418 2418
 	<div id="gd_ie_imcategs" class="metabox-holder">
2419 2419
       <div class="meta-box-sortables ui-sortable">
2420 2420
         <div id="gd_ie_imcats" class="postbox gd-hndle-pbox">
2421
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2422
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3>
2421
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2422
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
2423 2423
           <div class="inside">
2424 2424
             <table class="form-table">
2425 2425
 				<tbody>
2426 2426
 				  <tr>
2427 2427
 					<td class="gd-imex-box">
2428 2428
 						<div class="gd-im-choices">
2429
-						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2430
-						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p>
2429
+						<p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2430
+						<p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
2431 2431
 						</div>
2432 2432
 						<div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui">
2433 2433
 							<input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
2434
-							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2435
-						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" />
2434
+							<input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
2435
+						<input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" />
2436 2436
 						<?php
2437 2437
 						/**
2438 2438
 						 * Called just after the sample CSV download link.
@@ -2442,7 +2442,7 @@  discard block
 block discarded – undo
2442 2442
 						 */
2443 2443
 						do_action('geodir_sample_cats_csv_download_link');
2444 2444
 						?>
2445
-							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span>
2445
+							<span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
2446 2446
 							<div class="filelist"></div>
2447 2447
 						</div>
2448 2448
 						<span id="gd_im_catupload-error" style="display:none"></span>
@@ -2459,7 +2459,7 @@  discard block
 block discarded – undo
2459 2459
 							<input type="hidden" id="gd_terminateaction" value="continue"/>
2460 2460
 						</div>
2461 2461
 						<div class="gd-import-progress" id="gd-import-progress" style="display:none">
2462
-							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
2462
+							<div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
2463 2463
 									id="gd-import-done">0</font> / <font id="gd-import-total">0</font>&nbsp;( <font
2464 2464
 									id="gd-import-perc">0%</font> )
2465 2465
 								<div class="gd-fileprogress"></div>
@@ -2471,10 +2471,10 @@  discard block
 block discarded – undo
2471 2471
                     	<div class="gd-imex-btns" style="display:none;">
2472 2472
                         	<input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/>
2473 2473
                         	<input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" />
2474
-                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2475
-                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2474
+                        	<input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
2475
+                        	<input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
2476 2476
 							<div id="gd_process_data" style="display:none">
2477
-								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
2477
+								<span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
2478 2478
 							</div>
2479 2479
 						</div>
2480 2480
 					</td>
@@ -2488,26 +2488,26 @@  discard block
 block discarded – undo
2488 2488
 	<div id="gd_ie_excategs" class="metabox-holder">
2489 2489
       <div class="meta-box-sortables ui-sortable">
2490 2490
         <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox">
2491
-          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2492
-          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3>
2491
+          <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
2492
+          <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
2493 2493
           <div class="inside">
2494 2494
             <table class="form-table">
2495 2495
 				<tbody>
2496 2496
 				  <tr>
2497
-					<td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td>
2498
-					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td>
2497
+					<td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
2498
+					<td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td>
2499 2499
 				  </tr>
2500 2500
 				   <tr>
2501
-					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td>
2502
-					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td>
2501
+					<td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
2502
+					<td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
2503 2503
 				  </tr>
2504 2504
 				  <tr>
2505
-					<td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td>
2506
-					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2505
+					<td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
2506
+					<td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p>&nbsp;&nbsp;<p id="gd_timer" class="gd_timer">00:00:00</p></td>
2507 2507
 				  </tr>
2508 2508
 				  <tr class="gd-ie-actions">
2509 2509
 					<td style="vertical-align:top">
2510
-						<input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2510
+						<input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
2511 2511
 					</td>
2512 2512
 					<td id="gd_ie_ex_files" class="gd-ie-files"></td>
2513 2513
 				  </tr>
@@ -2529,7 +2529,7 @@  discard block
 block discarded – undo
2529 2529
      * @param array $gd_chunksize_options File chunk size options.
2530 2530
      * @param string $nonce Wordpress security token for GD import & export.
2531 2531
 	 */
2532
-	do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce );
2532
+	do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
2533 2533
 	?>
2534 2534
   </div>
2535 2535
 </div>
@@ -2548,7 +2548,7 @@  discard block
 block discarded – undo
2548 2548
         jQuery.ajax({
2549 2549
             url: ajaxurl,
2550 2550
             type: "POST",
2551
-            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>',
2551
+            data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>',
2552 2552
             dataType: 'json',
2553 2553
             cache: false,
2554 2554
             success: function(data) {
@@ -2600,7 +2600,7 @@  discard block
 block discarded – undo
2600 2600
 
2601 2601
         jQuery(cont).find('.filelist .file').remove();
2602 2602
         
2603
-        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
2603
+        jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
2604 2604
         jQuery('#gd-import-msg', cont).show();
2605 2605
         
2606 2606
         return false;
@@ -2659,7 +2659,7 @@  discard block
 block discarded – undo
2659 2659
     jQuery.ajax({
2660 2660
         url: ajaxurl,
2661 2661
         type: "POST",
2662
-        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>',
2662
+        data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>',
2663 2663
         dataType : 'json',
2664 2664
         cache: false,
2665 2665
         success: function (data) {
@@ -2848,27 +2848,27 @@  discard block
 block discarded – undo
2848 2848
 
2849 2849
     var gdMsg = '<p></p>';
2850 2850
     if ( processed > 0 ) {
2851
-        var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>';
2851
+        var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
2852 2852
         msgParse = msgParse.replace("%s", processed);
2853 2853
         gdMsg += msgParse;
2854 2854
     }
2855 2855
 
2856 2856
     if ( updated > 0 ) {
2857
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2857
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
2858 2858
         msgParse = msgParse.replace("%s", updated);
2859 2859
         msgParse = msgParse.replace("%d", processed);
2860 2860
         gdMsg += msgParse;
2861 2861
     }
2862 2862
 
2863 2863
     if ( created > 0 ) {
2864
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2864
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
2865 2865
         msgParse = msgParse.replace("%s", created);
2866 2866
         msgParse = msgParse.replace("%d", processed);
2867 2867
         gdMsg += msgParse;
2868 2868
     }
2869 2869
 
2870 2870
     if ( skipped > 0 ) {
2871
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2871
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
2872 2872
         msgParse = msgParse.replace("%s", skipped);
2873 2873
         msgParse = msgParse.replace("%d", processed);
2874 2874
         gdMsg += msgParse;
@@ -2878,17 +2878,17 @@  discard block
 block discarded – undo
2878 2878
         if (type=='loc') {
2879 2879
             invalid_addr = invalid;
2880 2880
         }
2881
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>';
2881
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
2882 2882
         msgParse = msgParse.replace("%s", invalid_addr);
2883 2883
         msgParse = msgParse.replace("%d", total);
2884 2884
         gdMsg += msgParse;
2885 2885
     }
2886 2886
 
2887 2887
     if (invalid > 0 && type!='loc') {
2888
-        var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>';
2888
+        var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
2889 2889
         
2890 2890
         if (type=='hood') {
2891
-            msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>';
2891
+            msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
2892 2892
         }
2893 2893
         msgParse = msgParse.replace("%s", invalid);
2894 2894
         msgParse = msgParse.replace("%d", total);
@@ -2896,7 +2896,7 @@  discard block
 block discarded – undo
2896 2896
     }
2897 2897
 
2898 2898
     if (images > 0) {
2899
-        gdMsg += '<p><?php echo addslashes( $upload_dir );?></p>';
2899
+        gdMsg += '<p><?php echo addslashes($upload_dir); ?></p>';
2900 2900
     }
2901 2901
     gdMsg += '<p></p>';
2902 2902
     jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
@@ -3060,9 +3060,9 @@  discard block
 block discarded – undo
3060 3060
             if (typeof filters !== 'undefined' && filters && doFilter) {
3061 3061
                 getTotal = true;
3062 3062
                 attach += '&_c=1';
3063
-                gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>');
3063
+                gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
3064 3064
             } else {
3065
-                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3065
+                gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3066 3066
             }
3067 3067
             jQuery(el).find('#gd_timer').text('00:00:01');
3068 3068
             jQuery('#gd_ie_ex_files', el).html('');
@@ -3071,7 +3071,7 @@  discard block
 block discarded – undo
3071 3071
         jQuery.ajax({
3072 3072
             url: ajaxurl,
3073 3073
             type: "POST",
3074
-            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach,
3074
+            data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach,
3075 3075
             dataType : 'json',
3076 3076
             cache: false,
3077 3077
             beforeSend: function (jqXHR, settings) {},
@@ -3096,11 +3096,11 @@  discard block
 block discarded – undo
3096 3096
                         } else {
3097 3097
                             if (pages < page || pages == page) {
3098 3098
                                 window.clearInterval(timer_posts);
3099
-                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3099
+                                gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3100 3100
                             } else {
3101 3101
                                 var percentage = Math.round(((page * chunk_size) / total_posts) * 100);
3102 3102
                                 percentage = percentage > 100 ? 100 : percentage;
3103
-                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3103
+                                gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3104 3104
                             }
3105 3105
                             if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3106 3106
                                 var obj_files = data.files;
@@ -3131,7 +3131,7 @@  discard block
 block discarded – undo
3131 3131
 
3132 3132
     function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
3133 3133
         if (page < 2) {
3134
-            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
3134
+            gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
3135 3135
             jQuery(el).find('#gd_timer').text('00:00:01');
3136 3136
             jQuery('#gd_ie_ex_files', el).html('');
3137 3137
         }
@@ -3139,7 +3139,7 @@  discard block
 block discarded – undo
3139 3139
         jQuery.ajax({
3140 3140
             url: ajaxurl,
3141 3141
             type: "POST",
3142
-            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page,
3142
+            data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page,
3143 3143
             dataType : 'json',
3144 3144
             cache: false,
3145 3145
             beforeSend: function (jqXHR, settings) {},
@@ -3153,11 +3153,11 @@  discard block
 block discarded – undo
3153 3153
                     } else {
3154 3154
                         if (pages < page || pages == page) {
3155 3155
                             window.clearInterval(timer_cats);
3156
-                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
3156
+                            gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
3157 3157
                         } else {
3158 3158
                             var percentage = Math.round(((page * chunk_size) / total_cats) * 100);
3159 3159
                             percentage = percentage > 100 ? 100 : percentage;
3160
-                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
3160
+                            gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
3161 3161
                         }
3162 3162
                         if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
3163 3163
                             var obj_files = data.files;
@@ -3214,13 +3214,13 @@  discard block
 block discarded – undo
3214 3214
 function geodir_init_filesystem()
3215 3215
 {
3216 3216
 
3217
-    if(!function_exists('get_filesystem_method')){
3217
+    if (!function_exists('get_filesystem_method')) {
3218 3218
         require_once(ABSPATH."/wp-admin/includes/file.php");
3219 3219
     }
3220 3220
     $access_type = get_filesystem_method();
3221 3221
     if ($access_type === 'direct') {
3222 3222
         /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */
3223
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3223
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3224 3224
 
3225 3225
         /* initialize the API */
3226 3226
         if (!WP_Filesystem($creds)) {
@@ -3233,7 +3233,7 @@  discard block
 block discarded – undo
3233 3233
         return $wp_filesystem;
3234 3234
         /* do our file manipulations below */
3235 3235
     } elseif (defined('FTP_USER')) {
3236
-        $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array());
3236
+        $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array());
3237 3237
 
3238 3238
         /* initialize the API */
3239 3239
         if (!WP_Filesystem($creds)) {
@@ -3268,7 +3268,7 @@  discard block
 block discarded – undo
3268 3268
  * @package GeoDirectory
3269 3269
  */
3270 3270
 function geodir_filesystem_notice()
3271
-{   if ( defined( 'DOING_AJAX' ) ){return;}
3271
+{   if (defined('DOING_AJAX')) {return; }
3272 3272
     $access_type = get_filesystem_method();
3273 3273
     if ($access_type === 'direct') {
3274 3274
     } elseif (!defined('FTP_USER')) {
@@ -3305,64 +3305,64 @@  discard block
 block discarded – undo
3305 3305
     // try to set higher limits for import
3306 3306
     $max_input_time = ini_get('max_input_time');
3307 3307
     $max_execution_time = ini_get('max_execution_time');
3308
-    $memory_limit= ini_get('memory_limit');
3308
+    $memory_limit = ini_get('memory_limit');
3309 3309
 
3310
-    if(!$max_input_time || $max_input_time<3000){
3310
+    if (!$max_input_time || $max_input_time < 3000) {
3311 3311
         ini_set('max_input_time', 3000);
3312 3312
     }
3313 3313
 
3314
-    if(!$max_execution_time || $max_execution_time<3000){
3314
+    if (!$max_execution_time || $max_execution_time < 3000) {
3315 3315
         ini_set('max_execution_time', 3000);
3316 3316
     }
3317 3317
 
3318
-    if($memory_limit && str_replace('M','',$memory_limit)){
3319
-        if(str_replace('M','',$memory_limit)<256){
3318
+    if ($memory_limit && str_replace('M', '', $memory_limit)) {
3319
+        if (str_replace('M', '', $memory_limit) < 256) {
3320 3320
             ini_set('memory_limit', '256M');
3321 3321
         }
3322 3322
     }
3323 3323
 
3324 3324
     $json = array();
3325 3325
 
3326
-    if ( !current_user_can( 'manage_options' ) ) {
3327
-        wp_send_json( $json );
3326
+    if (!current_user_can('manage_options')) {
3327
+        wp_send_json($json);
3328 3328
     }
3329 3329
 
3330
-    $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL;
3331
-    $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL;
3332
-    $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false;
3330
+    $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL;
3331
+    $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL;
3332
+    $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false;
3333 3333
 
3334
-    if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
3335
-        wp_send_json( $json );
3334
+    if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
3335
+        wp_send_json($json);
3336 3336
     }
3337 3337
 
3338
-    $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL;
3339
-    $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL;
3338
+    $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL;
3339
+    $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL;
3340 3340
     $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page;
3341
-    $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1;
3341
+    $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1;
3342 3342
 
3343 3343
     $wp_filesystem = geodir_init_filesystem();
3344 3344
     if (!$wp_filesystem) {
3345
-        $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' );
3346
-        wp_send_json( $json );
3345
+        $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
3346
+        wp_send_json($json);
3347 3347
     }
3348 3348
 
3349 3349
     if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
3350
-        $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' );
3351
-        wp_send_json( $json );
3350
+        $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
3351
+        wp_send_json($json);
3352 3352
     }
3353 3353
 
3354
-    $csv_file_dir = geodir_path_import_export( false );
3355
-    if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
3356
-        if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
3357
-            $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' );
3358
-            wp_send_json( $json );
3354
+    $csv_file_dir = geodir_path_import_export(false);
3355
+    if (!$wp_filesystem->is_dir($csv_file_dir)) {
3356
+        if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
3357
+            $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
3358
+            wp_send_json($json);
3359 3359
         }
3360 3360
     }
3361 3361
     
3362 3362
     $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
3363 3363
     $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
3364 3364
 
3365
-    switch ( $task ) {
3365
+    switch ($task) {
3366 3366
         case 'export_posts': {
3367 3367
             // WPML
3368 3368
             $is_wpml = geodir_is_wpml();
@@ -3373,36 +3373,36 @@  discard block
 block discarded – undo
3373 3373
                 $sitepress->switch_lang('all', true);
3374 3374
             }
3375 3375
             // WPML
3376
-            if ( $post_type == 'gd_event' ) {
3377
-                add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 );
3376
+            if ($post_type == 'gd_event') {
3377
+                add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
3378 3378
             }
3379
-            $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
3379
+            $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
3380 3380
             
3381
-            $file_name = $post_type . '_' . date( 'dmyHi' );
3382
-            if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
3383
-                $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) );
3381
+            $file_name = $post_type.'_'.date('dmyHi');
3382
+            if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
3383
+                $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
3384 3384
             }
3385
-            $posts_count = geodir_get_posts_count( $post_type );
3386
-            $file_url_base = geodir_path_import_export() . '/';
3387
-            $file_url = $file_url_base . $file_name . '.csv';
3388
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3389
-            $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv';
3385
+            $posts_count = geodir_get_posts_count($post_type);
3386
+            $file_url_base = geodir_path_import_export().'/';
3387
+            $file_url = $file_url_base.$file_name.'.csv';
3388
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3389
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv';
3390 3390
             
3391 3391
             $chunk_file_paths = array();
3392 3392
 
3393
-            if ( isset( $_REQUEST['_c'] ) ) {
3393
+            if (isset($_REQUEST['_c'])) {
3394 3394
                 $json['total'] = $posts_count;
3395 3395
                 // WPML
3396 3396
                 if ($is_wpml) {
3397 3397
                     $sitepress->switch_lang($active_lang, true);
3398 3398
                 }
3399 3399
                 // WPML
3400
-                wp_send_json( $json );
3400
+                wp_send_json($json);
3401 3401
                 gd_die();
3402
-            } else if ( isset( $_REQUEST['_st'] ) ) {
3403
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3404
-                $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0;
3405
-                $percentage = min( $percentage, 100 );
3402
+            } else if (isset($_REQUEST['_st'])) {
3403
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3404
+                $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0;
3405
+                $percentage = min($percentage, 100);
3406 3406
                 
3407 3407
                 $json['percentage'] = $percentage;
3408 3408
                 // WPML
@@ -3410,45 +3410,45 @@  discard block
 block discarded – undo
3410 3410
                     $sitepress->switch_lang($active_lang, true);
3411 3411
                 }
3412 3412
                 // WPML
3413
-                wp_send_json( $json );
3413
+                wp_send_json($json);
3414 3414
                 gd_die();
3415 3415
             } else {
3416
-                if ( !$posts_count > 0 ) {
3417
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3416
+                if (!$posts_count > 0) {
3417
+                    $json['error'] = __('No records to export.', 'geodirectory');
3418 3418
                 } else {
3419 3419
                     $total_posts = $posts_count;
3420 3420
                     if ($chunk_per_page > $total_posts) {
3421 3421
                         $chunk_per_page = $total_posts;
3422 3422
                     }
3423
-                    $chunk_total_pages = ceil( $total_posts / $chunk_per_page );
3423
+                    $chunk_total_pages = ceil($total_posts / $chunk_per_page);
3424 3424
                     
3425 3425
                     $j = $chunk_page_no;
3426
-                    $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j );
3426
+                    $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j);
3427 3427
                     
3428 3428
                     $per_page = 500;
3429 3429
                     if ($per_page > $chunk_per_page) {
3430 3430
                         $per_page = $chunk_per_page;
3431 3431
                     }
3432
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3432
+                    $total_pages = ceil($chunk_per_page / $per_page);
3433 3433
                     
3434
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3435
-                        $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page );
3434
+                    for ($i = 0; $i <= $total_pages; $i++) {
3435
+                        $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page);
3436 3436
                         
3437 3437
                         $clear = $i == 0 ? true : false;
3438
-                        geodir_save_csv_data( $file_path_temp, $save_posts, $clear );
3438
+                        geodir_save_csv_data($file_path_temp, $save_posts, $clear);
3439 3439
                     }
3440 3440
                         
3441
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3442
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3443
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3444
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3445
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3441
+                    if ($wp_filesystem->exists($file_path_temp)) {
3442
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3443
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3444
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3445
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3446 3446
                         
3447
-                        $file_url = $file_url_base . $chunk_file_name;
3448
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3447
+                        $file_url = $file_url_base.$chunk_file_name;
3448
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3449 3449
                     }
3450 3450
                     
3451
-                    if ( !empty($chunk_file_paths) ) {
3451
+                    if (!empty($chunk_file_paths)) {
3452 3452
                         $json['total'] = $posts_count;
3453 3453
                         $json['files'] = $chunk_file_paths;
3454 3454
                     } else {
@@ -3456,7 +3456,7 @@  discard block
 block discarded – undo
3456 3456
                             $json['total'] = $posts_count;
3457 3457
                             $json['files'] = array();
3458 3458
                         } else {
3459
-                            $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3459
+                            $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3460 3460
                         }
3461 3461
                     }
3462 3462
                 }
@@ -3465,7 +3465,7 @@  discard block
 block discarded – undo
3465 3465
                     $sitepress->switch_lang($active_lang, true);
3466 3466
                 }
3467 3467
                 // WPML
3468
-                wp_send_json( $json );
3468
+                wp_send_json($json);
3469 3469
             }
3470 3470
         }
3471 3471
         break;
@@ -3479,20 +3479,20 @@  discard block
 block discarded – undo
3479 3479
                 $sitepress->switch_lang('all', true);
3480 3480
             }
3481 3481
             // WPML
3482
-            $file_name = $post_type . 'category_' . date( 'dmyHi' );
3482
+            $file_name = $post_type.'category_'.date('dmyHi');
3483 3483
             
3484
-            $terms_count = geodir_get_terms_count( $post_type );
3485
-            $file_url_base = geodir_path_import_export() . '/';
3486
-            $file_url = $file_url_base . $file_name . '.csv';
3487
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3488
-            $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv';
3484
+            $terms_count = geodir_get_terms_count($post_type);
3485
+            $file_url_base = geodir_path_import_export().'/';
3486
+            $file_url = $file_url_base.$file_name.'.csv';
3487
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3488
+            $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv';
3489 3489
             
3490 3490
             $chunk_file_paths = array();
3491 3491
             
3492
-            if ( isset( $_REQUEST['_st'] ) ) {
3493
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3494
-                $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0;
3495
-                $percentage = min( $percentage, 100 );
3492
+            if (isset($_REQUEST['_st'])) {
3493
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3494
+                $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0;
3495
+                $percentage = min($percentage, 100);
3496 3496
                 
3497 3497
                 $json['percentage'] = $percentage;
3498 3498
                 // WPML
@@ -3500,48 +3500,48 @@  discard block
 block discarded – undo
3500 3500
                     $sitepress->switch_lang($active_lang, true);
3501 3501
                 }
3502 3502
                 // WPML
3503
-                wp_send_json( $json );
3503
+                wp_send_json($json);
3504 3504
             } else {
3505
-                if ( !$terms_count > 0 ) {
3506
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3505
+                if (!$terms_count > 0) {
3506
+                    $json['error'] = __('No records to export.', 'geodirectory');
3507 3507
                 } else {
3508 3508
                     $total_terms = $terms_count;
3509 3509
                     if ($chunk_per_page > $terms_count) {
3510 3510
                         $chunk_per_page = $terms_count;
3511 3511
                     }
3512
-                    $chunk_total_pages = ceil( $total_terms / $chunk_per_page );
3512
+                    $chunk_total_pages = ceil($total_terms / $chunk_per_page);
3513 3513
                     
3514 3514
                     $j = $chunk_page_no;
3515
-                    $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j );
3515
+                    $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j);
3516 3516
                     
3517 3517
                     $per_page = 500;
3518 3518
                     if ($per_page > $chunk_per_page) {
3519 3519
                         $per_page = $chunk_per_page;
3520 3520
                     }
3521
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3521
+                    $total_pages = ceil($chunk_per_page / $per_page);
3522 3522
                     
3523
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3524
-                        $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page );
3523
+                    for ($i = 0; $i <= $total_pages; $i++) {
3524
+                        $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page);
3525 3525
                         
3526 3526
                         $clear = $i == 0 ? true : false;
3527
-                        geodir_save_csv_data( $file_path_temp, $save_terms, $clear );
3527
+                        geodir_save_csv_data($file_path_temp, $save_terms, $clear);
3528 3528
                     }
3529 3529
                     
3530
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3531
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3532
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3533
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3534
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3530
+                    if ($wp_filesystem->exists($file_path_temp)) {
3531
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3532
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3533
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3534
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3535 3535
                         
3536
-                        $file_url = $file_url_base . $chunk_file_name;
3537
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3536
+                        $file_url = $file_url_base.$chunk_file_name;
3537
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3538 3538
                     }
3539 3539
                     
3540
-                    if ( !empty($chunk_file_paths) ) {
3540
+                    if (!empty($chunk_file_paths)) {
3541 3541
                         $json['total'] = $terms_count;
3542 3542
                         $json['files'] = $chunk_file_paths;
3543 3543
                     } else {
3544
-                        $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' );
3544
+                        $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
3545 3545
                     }
3546 3546
                 }
3547 3547
                 // WPML
@@ -3549,127 +3549,127 @@  discard block
 block discarded – undo
3549 3549
                     $sitepress->switch_lang($active_lang, true);
3550 3550
                 }
3551 3551
                 // WPML
3552
-                wp_send_json( $json );
3552
+                wp_send_json($json);
3553 3553
             }
3554 3554
         }
3555 3555
         break;
3556 3556
         case 'export_locations': {
3557
-            $file_url_base = geodir_path_import_export() . '/';
3558
-            $file_name = 'gd_locations_' . date( 'dmyHi' );
3559
-            $file_url = $file_url_base . $file_name . '.csv';
3560
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3561
-            $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv';
3557
+            $file_url_base = geodir_path_import_export().'/';
3558
+            $file_name = 'gd_locations_'.date('dmyHi');
3559
+            $file_url = $file_url_base.$file_name.'.csv';
3560
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3561
+            $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv';
3562 3562
             
3563
-            $items_count = (int)geodir_location_imex_count_locations();
3563
+            $items_count = (int) geodir_location_imex_count_locations();
3564 3564
             
3565
-            if ( isset( $_REQUEST['_st'] ) ) {
3566
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3567
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3568
-                $percentage = min( $percentage, 100 );
3565
+            if (isset($_REQUEST['_st'])) {
3566
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3567
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3568
+                $percentage = min($percentage, 100);
3569 3569
                 
3570 3570
                 $json['percentage'] = $percentage;
3571
-                wp_send_json( $json );
3571
+                wp_send_json($json);
3572 3572
             } else {
3573 3573
                 $chunk_file_paths = array();
3574 3574
                 
3575
-                if ( !$items_count > 0 ) {
3576
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3575
+                if (!$items_count > 0) {
3576
+                    $json['error'] = __('No records to export.', 'geodirectory');
3577 3577
                 } else {
3578
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3579
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3578
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3579
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3580 3580
                     
3581 3581
                     $j = $chunk_page_no;
3582
-                    $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j );
3582
+                    $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j);
3583 3583
                     
3584 3584
                     $per_page = 500;
3585
-                    $per_page = min( $per_page, $chunk_per_page );
3586
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3585
+                    $per_page = min($per_page, $chunk_per_page);
3586
+                    $total_pages = ceil($chunk_per_page / $per_page);
3587 3587
                     
3588
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3589
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3588
+                    for ($i = 0; $i <= $total_pages; $i++) {
3589
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3590 3590
                         
3591 3591
                         $clear = $i == 0 ? true : false;
3592
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3592
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3593 3593
                     }
3594 3594
                     
3595
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3596
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3597
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3598
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3599
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3595
+                    if ($wp_filesystem->exists($file_path_temp)) {
3596
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3597
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3598
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3599
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3600 3600
                         
3601
-                        $file_url = $file_url_base . $chunk_file_name;
3602
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3601
+                        $file_url = $file_url_base.$chunk_file_name;
3602
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3603 3603
                     }
3604 3604
                     
3605
-                    if ( !empty($chunk_file_paths) ) {
3605
+                    if (!empty($chunk_file_paths)) {
3606 3606
                         $json['total'] = $items_count;
3607 3607
                         $json['files'] = $chunk_file_paths;
3608 3608
                     } else {
3609
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3609
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3610 3610
                     }
3611 3611
                 }
3612
-                wp_send_json( $json );
3612
+                wp_send_json($json);
3613 3613
             }
3614 3614
         }
3615 3615
         break;
3616 3616
         case 'export_hoods': {
3617
-            $file_url_base = geodir_path_import_export() . '/';
3618
-            $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' );
3619
-            $file_url = $file_url_base . $file_name . '.csv';
3620
-            $file_path = $csv_file_dir . '/' . $file_name . '.csv';
3621
-            $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv';
3617
+            $file_url_base = geodir_path_import_export().'/';
3618
+            $file_name = 'gd_neighbourhoods_'.date('dmyHi');
3619
+            $file_url = $file_url_base.$file_name.'.csv';
3620
+            $file_path = $csv_file_dir.'/'.$file_name.'.csv';
3621
+            $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv';
3622 3622
             
3623
-            $items_count = (int)geodir_location_imex_count_neighbourhoods();
3623
+            $items_count = (int) geodir_location_imex_count_neighbourhoods();
3624 3624
             
3625
-            if ( isset( $_REQUEST['_st'] ) ) {
3626
-                $line_count = (int)geodir_import_export_line_count( $file_path_temp );
3627
-                $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0;
3628
-                $percentage = min( $percentage, 100 );
3625
+            if (isset($_REQUEST['_st'])) {
3626
+                $line_count = (int) geodir_import_export_line_count($file_path_temp);
3627
+                $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0;
3628
+                $percentage = min($percentage, 100);
3629 3629
                 
3630 3630
                 $json['percentage'] = $percentage;
3631
-                wp_send_json( $json );
3631
+                wp_send_json($json);
3632 3632
             } else {
3633 3633
                 $chunk_file_paths = array();
3634 3634
                 
3635
-                if ( !$items_count > 0 ) {
3636
-                    $json['error'] = __( 'No records to export.', 'geodirectory' );
3635
+                if (!$items_count > 0) {
3636
+                    $json['error'] = __('No records to export.', 'geodirectory');
3637 3637
                 } else {
3638
-                    $chunk_per_page = min( $chunk_per_page, $items_count );
3639
-                    $chunk_total_pages = ceil( $items_count / $chunk_per_page );
3638
+                    $chunk_per_page = min($chunk_per_page, $items_count);
3639
+                    $chunk_total_pages = ceil($items_count / $chunk_per_page);
3640 3640
                     
3641 3641
                     $j = $chunk_page_no;
3642
-                    $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j );
3642
+                    $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j);
3643 3643
                     
3644 3644
                     $per_page = 500;
3645
-                    $per_page = min( $per_page, $chunk_per_page );
3646
-                    $total_pages = ceil( $chunk_per_page / $per_page );
3645
+                    $per_page = min($per_page, $chunk_per_page);
3646
+                    $total_pages = ceil($chunk_per_page / $per_page);
3647 3647
                     
3648
-                    for ( $i = 0; $i <= $total_pages; $i++ ) {
3649
-                        $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page );
3648
+                    for ($i = 0; $i <= $total_pages; $i++) {
3649
+                        $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page);
3650 3650
                         
3651 3651
                         $clear = $i == 0 ? true : false;
3652
-                        geodir_save_csv_data( $file_path_temp, $save_items, $clear );
3652
+                        geodir_save_csv_data($file_path_temp, $save_items, $clear);
3653 3653
                     }
3654 3654
                     
3655
-                    if ( $wp_filesystem->exists( $file_path_temp ) ) {
3656
-                        $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : '';
3657
-                        $chunk_file_name = $file_name . $chunk_page_no . '.csv';
3658
-                        $file_path = $csv_file_dir . '/' . $chunk_file_name;
3659
-                        $wp_filesystem->move( $file_path_temp, $file_path, true );
3655
+                    if ($wp_filesystem->exists($file_path_temp)) {
3656
+                        $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : '';
3657
+                        $chunk_file_name = $file_name.$chunk_page_no.'.csv';
3658
+                        $file_path = $csv_file_dir.'/'.$chunk_file_name;
3659
+                        $wp_filesystem->move($file_path_temp, $file_path, true);
3660 3660
                         
3661
-                        $file_url = $file_url_base . $chunk_file_name;
3662
-                        $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3661
+                        $file_url = $file_url_base.$chunk_file_name;
3662
+                        $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
3663 3663
                     }
3664 3664
                     
3665
-                    if ( !empty($chunk_file_paths) ) {
3665
+                    if (!empty($chunk_file_paths)) {
3666 3666
                         $json['total'] = $items_count;
3667 3667
                         $json['files'] = $chunk_file_paths;
3668 3668
                     } else {
3669
-                        $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' );
3669
+                        $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
3670 3670
                     }
3671 3671
                 }
3672
-                wp_send_json( $json );
3672
+                wp_send_json($json);
3673 3673
             }
3674 3674
         }
3675 3675
         break;
@@ -3686,25 +3686,25 @@  discard block
 block discarded – undo
3686 3686
             }
3687 3687
             // WPML
3688 3688
             
3689
-            ini_set( 'auto_detect_line_endings', true );
3689
+            ini_set('auto_detect_line_endings', true);
3690 3690
             
3691 3691
             $uploads = wp_upload_dir();
3692 3692
             $uploads_dir = $uploads['path'];
3693 3693
             $uploads_subdir = $uploads['subdir'];
3694 3694
             
3695
-            $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL;
3696
-            $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip';
3695
+            $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL;
3696
+            $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip';
3697 3697
             
3698
-            $csv_file_arr = explode( '/', $csv_file );
3699
-            $csv_filename = end( $csv_file_arr );
3700
-            $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename;
3698
+            $csv_file_arr = explode('/', $csv_file);
3699
+            $csv_filename = end($csv_file_arr);
3700
+            $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename;
3701 3701
             
3702 3702
             $json['file'] = $csv_file;
3703
-            $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' );
3703
+            $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
3704 3704
             $file = array();
3705 3705
 
3706
-            if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
3707
-                $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename );
3706
+            if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
3707
+                $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename);
3708 3708
                 
3709 3709
                 if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
3710 3710
                     $json['error'] = NULL;
@@ -3712,9 +3712,9 @@  discard block
 block discarded – undo
3712 3712
                     
3713 3713
                     $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line
3714 3714
                     setlocale(LC_ALL, 'en_US.UTF-8');
3715
-                    if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
3716
-                        while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
3717
-                            if ( !empty( $data ) ) {
3715
+                    if (($handle = fopen($target_path, "r")) !== FALSE) {
3716
+                        while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
3717
+                            if (!empty($data)) {
3718 3718
                                 $file[] = $data;
3719 3719
                             }
3720 3720
                         }
@@ -3728,19 +3728,19 @@  discard block
 block discarded – undo
3728 3728
                         $json['error'] = __('No data found in csv file.', 'geodirectory');
3729 3729
                     }
3730 3730
                 } else {
3731
-                    wp_send_json( $json );
3731
+                    wp_send_json($json);
3732 3732
                 }
3733 3733
             } else {
3734
-                wp_send_json( $json );
3734
+                wp_send_json($json);
3735 3735
             }
3736 3736
             
3737
-            if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
3738
-                wp_send_json( $json );
3737
+            if ($task == 'prepare_import' || !empty($json['error'])) {
3738
+                wp_send_json($json);
3739 3739
             }
3740 3740
             
3741 3741
             $total = $json['rows'];
3742
-            $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1;
3743
-            $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0;
3742
+            $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1;
3743
+            $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0;
3744 3744
             
3745 3745
             $count = $limit;
3746 3746
             
@@ -3765,13 +3765,13 @@  discard block
 block discarded – undo
3765 3765
             
3766 3766
             $post_types = geodir_get_posttypes();
3767 3767
 
3768
-            if ( $task == 'import_cat' ) {
3768
+            if ($task == 'import_cat') {
3769 3769
                 if (!empty($file)) {
3770 3770
                     $columns = isset($file[0]) ? $file[0] : NULL;
3771 3771
                     
3772 3772
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
3773 3773
                         $json['error'] = CSV_INVAILD_FILE;
3774
-                        wp_send_json( $json );
3774
+                        wp_send_json($json);
3775 3775
                         exit;
3776 3776
                     }
3777 3777
                     
@@ -3782,7 +3782,7 @@  discard block
 block discarded – undo
3782 3782
                         
3783 3783
                         if (isset($file[$index])) {
3784 3784
                             $row = $file[$index];
3785
-                            $row = array_map( 'trim', $row );
3785
+                            $row = array_map('trim', $row);
3786 3786
                             //$row = array_map( 'utf8_encode', $row );
3787 3787
                             
3788 3788
                             $cat_id = '';
@@ -3799,42 +3799,42 @@  discard block
 block discarded – undo
3799 3799
                             $cat_id_original = '';
3800 3800
                             
3801 3801
                             $c = 0;
3802
-                            foreach ($columns as $column ) {
3803
-                                if ( $column == 'cat_id' ) {
3804
-                                    $cat_id = (int)$row[$c];
3805
-                                } else if ( $column == 'cat_name' ) {
3802
+                            foreach ($columns as $column) {
3803
+                                if ($column == 'cat_id') {
3804
+                                    $cat_id = (int) $row[$c];
3805
+                                } else if ($column == 'cat_name') {
3806 3806
                                     $cat_name = $row[$c];
3807
-                                } else if ( $column == 'cat_slug' ) {
3807
+                                } else if ($column == 'cat_slug') {
3808 3808
                                     $cat_slug = $row[$c];
3809
-                                } else if ( $column == 'cat_posttype' ) {
3809
+                                } else if ($column == 'cat_posttype') {
3810 3810
                                     $cat_posttype = $row[$c];
3811
-                                } else if ( $column == 'cat_parent' ) {
3811
+                                } else if ($column == 'cat_parent') {
3812 3812
                                     $cat_parent = trim($row[$c]);
3813
-                                } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
3813
+                                } else if ($column == 'cat_schema' && $row[$c] != '') {
3814 3814
                                     $cat_schema = $row[$c];
3815
-                                } else if ( $column == 'cat_description' ) {
3815
+                                } else if ($column == 'cat_description') {
3816 3816
                                     $cat_description = $row[$c];
3817
-                                } else if ( $column == 'cat_top_description' ) {
3817
+                                } else if ($column == 'cat_top_description') {
3818 3818
                                     $cat_top_description = $row[$c];
3819
-                                } else if ( $column == 'cat_image' ) {
3819
+                                } else if ($column == 'cat_image') {
3820 3820
                                     $cat_image = $row[$c];
3821
-                                } else if ( $column == 'cat_icon' ) {
3821
+                                } else if ($column == 'cat_icon') {
3822 3822
                                     $cat_icon = $row[$c];
3823 3823
                                 }
3824 3824
                                 // WPML
3825
-                                if ( $is_wpml ) {
3826
-                                    if ( $column == 'cat_language' ) {
3827
-                                        $cat_language = geodir_strtolower( trim( $row[$c] ) );
3828
-                                    } else if ( $column == 'cat_id_original' ) {
3829
-                                        $cat_id_original = (int)$row[$c];
3825
+                                if ($is_wpml) {
3826
+                                    if ($column == 'cat_language') {
3827
+                                        $cat_language = geodir_strtolower(trim($row[$c]));
3828
+                                    } else if ($column == 'cat_id_original') {
3829
+                                        $cat_id_original = (int) $row[$c];
3830 3830
                                     }
3831 3831
                                 }
3832 3832
                                 // WPML
3833 3833
                                 $c++;
3834 3834
                             }
3835 3835
                             
3836
-                            if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
3837
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
3836
+                            if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
3837
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
3838 3838
                                 
3839 3839
                                 $invalid++;
3840 3840
                                 continue;
@@ -3852,24 +3852,24 @@  discard block
 block discarded – undo
3852 3852
                             $term_data['description'] = $cat_description;
3853 3853
                             $term_data['cat_schema'] = $cat_schema;
3854 3854
                             $term_data['top_description'] = $cat_top_description;
3855
-                            $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : '';
3856
-                            $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : '';
3855
+                            $term_data['image'] = $cat_image != '' ? basename($cat_image) : '';
3856
+                            $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : '';
3857 3857
                             
3858 3858
                             //$term_data = array_map( 'utf8_encode', $term_data );
3859 3859
                             
3860
-                            $taxonomy = $cat_posttype . 'category';
3860
+                            $taxonomy = $cat_posttype.'category';
3861 3861
                             
3862 3862
                             $term_data['taxonomy'] = $taxonomy;
3863 3863
 
3864 3864
                             $term_parent_id = 0;
3865
-                            if ($cat_parent != "" || (int)$cat_parent > 0) {
3865
+                            if ($cat_parent != "" || (int) $cat_parent > 0) {
3866 3866
                                 $term_parent = '';
3867 3867
                                 
3868
-                                if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
3868
+                                if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
3869 3869
                                     //
3870
-                                } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
3870
+                                } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
3871 3871
                                     //
3872
-                                } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
3872
+                                } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
3873 3873
                                     //
3874 3874
                                 } else {
3875 3875
                                     $term_parent_data = array();
@@ -3877,104 +3877,104 @@  discard block
 block discarded – undo
3877 3877
                                     //$term_parent_data = array_map( 'utf8_encode', $term_parent_data );
3878 3878
                                     $term_parent_data['taxonomy'] = $taxonomy;
3879 3879
                                     
3880
-                                    $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data );
3880
+                                    $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data);
3881 3881
                                 }
3882 3882
                                 
3883
-                                if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
3884
-                                    $term_parent_id = (int)$term_parent->term_id;
3883
+                                if (!empty($term_parent) && !is_wp_error($term_parent)) {
3884
+                                    $term_parent_id = (int) $term_parent->term_id;
3885 3885
                                 }
3886 3886
                             }
3887
-                            $term_data['parent'] = (int)$term_parent_id;
3887
+                            $term_data['parent'] = (int) $term_parent_id;
3888 3888
 
3889 3889
                             $term_id = NULL;
3890
-                            if ( $import_choice == 'update' ) {
3891
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3890
+                            if ($import_choice == 'update') {
3891
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3892 3892
                                     $term_data['term_id'] = $term['term_id'];
3893 3893
                                     
3894
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3894
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3895 3895
                                         $updated++;
3896 3896
                                     } else {
3897 3897
                                         $invalid++;
3898
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3898
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3899 3899
                                     }
3900
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3900
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3901 3901
                                     $term_data['term_id'] = $term['term_id'];
3902 3902
                                     
3903
-                                    if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
3903
+                                    if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
3904 3904
                                         $updated++;
3905 3905
                                     } else {
3906 3906
                                         $invalid++;
3907
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3907
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3908 3908
                                     }
3909 3909
                                 } else {
3910
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3910
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3911 3911
                                         $created++;
3912 3912
                                     } else {
3913 3913
                                         $invalid++;
3914
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3914
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3915 3915
                                     }
3916 3916
                                 }
3917
-                            } else if ( $import_choice == 'skip' ) {
3918
-                                if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
3917
+                            } else if ($import_choice == 'skip') {
3918
+                                if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
3919 3919
                                     $skipped++;
3920
-                                } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
3920
+                                } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
3921 3921
                                     $skipped++;
3922 3922
                                 } else {
3923
-                                    if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
3923
+                                    if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
3924 3924
                                         $created++;
3925 3925
                                     } else {
3926 3926
                                         $invalid++;
3927
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3927
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3928 3928
                                     }
3929 3929
                                 }
3930 3930
                             } else {
3931 3931
                                 $invalid++;
3932
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) );
3932
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
3933 3933
                             }
3934 3934
                             
3935
-                            if ( $term_id ) {
3935
+                            if ($term_id) {
3936 3936
                                 // WPML
3937 3937
                                 if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
3938
-                                    $wpml_element_type = 'tax_' . $taxonomy;
3939
-                                    $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type );
3938
+                                    $wpml_element_type = 'tax_'.$taxonomy;
3939
+                                    $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type);
3940 3940
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
3941 3941
 
3942
-                                    $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type );
3942
+                                    $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type);
3943 3943
                                     
3944
-                                    $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language );
3944
+                                    $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language);
3945 3945
                                 }
3946 3946
                                 // WPML
3947 3947
                                 
3948
-                                if ( isset( $term_data['top_description'] ) ) {
3949
-                                    update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype );
3948
+                                if (isset($term_data['top_description'])) {
3949
+                                    update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype);
3950 3950
                                 }
3951 3951
                                 
3952
-                                if ( isset( $term_data['cat_schema'] ) ) {
3953
-                                    update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype );
3952
+                                if (isset($term_data['cat_schema'])) {
3953
+                                    update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype);
3954 3954
                                 }
3955 3955
             
3956 3956
                                 $attachment = false;
3957
-                                if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
3958
-                                    $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype );
3959
-                                    $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : '';
3957
+                                if (isset($term_data['image']) && $term_data['image'] != '') {
3958
+                                    $cat_image = geodir_get_default_catimage($term_id, $cat_posttype);
3959
+                                    $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : '';
3960 3960
                                     
3961
-                                    if ( basename($cat_image) != $term_data['image'] ) {
3961
+                                    if (basename($cat_image) != $term_data['image']) {
3962 3962
                                         $attachment = true;
3963
-                                        update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype );
3963
+                                        update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
3964 3964
                                     }
3965 3965
                                 }
3966 3966
                                 
3967
-                                if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
3968
-                                    $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype );
3969
-                                    $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
3967
+                                if (isset($term_data['icon']) && $term_data['icon'] != '') {
3968
+                                    $cat_icon = get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype);
3969
+                                    $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
3970 3970
                                         
3971
-                                    if ( basename($cat_icon) != $term_data['icon'] ) {
3971
+                                    if (basename($cat_icon) != $term_data['icon']) {
3972 3972
                                         $attachment = true;
3973
-                                        update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype );
3973
+                                        update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
3974 3974
                                     }
3975 3975
                                 }
3976 3976
                                 
3977
-                                if ( $attachment ) {
3977
+                                if ($attachment) {
3978 3978
                                     $images++;
3979 3979
                                 }
3980 3980
                             }
@@ -3996,34 +3996,34 @@  discard block
 block discarded – undo
3996 3996
                 $json['invalid'] = $invalid;
3997 3997
                 $json['images'] = $images;
3998 3998
                 
3999
-                wp_send_json( $json );
3999
+                wp_send_json($json);
4000 4000
                 exit;
4001
-            } else if ( $task == 'import_post' ) {
4001
+            } else if ($task == 'import_post') {
4002 4002
                 //run some stuff to make the import quicker
4003
-                wp_defer_term_counting( true );
4004
-                wp_defer_comment_counting( true );
4005
-                $wpdb->query( 'SET autocommit = 0;' );
4003
+                wp_defer_term_counting(true);
4004
+                wp_defer_comment_counting(true);
4005
+                $wpdb->query('SET autocommit = 0;');
4006 4006
 
4007 4007
                 //remove_all_actions('publish_post');
4008 4008
                 //remove_all_actions('transition_post_status');
4009 4009
                 //remove_all_actions('publish_future_post');
4010 4010
 
4011 4011
                 if (!empty($file)) {
4012
-                    $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
4012
+                    $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
4013 4013
                     $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses.
4014 4014
                     $default_status = 'publish';
4015
-                    $current_date = date_i18n( 'Y-m-d', time() );
4015
+                    $current_date = date_i18n('Y-m-d', time());
4016 4016
                     
4017 4017
                     $columns = isset($file[0]) ? $file[0] : NULL;
4018 4018
                     
4019 4019
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4020 4020
                         $json['error'] = CSV_INVAILD_FILE;
4021
-                        wp_send_json( $json );
4021
+                        wp_send_json($json);
4022 4022
                         exit;
4023 4023
                     }
4024 4024
 
4025 4025
                     $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
4026
-                    $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' );
4026
+                    $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
4027 4027
                     $processed_actual = 0;
4028 4028
                     for ($i = 1; $i <= $limit; $i++) {
4029 4029
                         $index = $processed + $i;
@@ -4032,9 +4032,9 @@  discard block
 block discarded – undo
4032 4032
                         if (isset($file[$index])) {
4033 4033
                             $processed_actual++;
4034 4034
                             $row = $file[$index];
4035
-                            $row = array_map( 'trim', $row );
4035
+                            $row = array_map('trim', $row);
4036 4036
                             //$row = array_map( 'utf8_encode', $row );
4037
-                            $row = array_map( 'addslashes_gpc', $row );
4037
+                            $row = array_map('addslashes_gpc', $row);
4038 4038
                             
4039 4039
                             $post_id = '';
4040 4040
                             $post_title = '';
@@ -4071,78 +4071,78 @@  discard block
 block discarded – undo
4071 4071
                             $original_post_id = '';
4072 4072
                             
4073 4073
                             $c = 0;
4074
-                            foreach ($columns as $column ) {
4074
+                            foreach ($columns as $column) {
4075 4075
                                 $gd_post[$column] = $row[$c];
4076 4076
                                 
4077
-                                if ( $column == 'post_id' ) {
4077
+                                if ($column == 'post_id') {
4078 4078
                                     $post_id = $row[$c];
4079
-                                } else if ( $column == 'post_title' ) {
4079
+                                } else if ($column == 'post_title') {
4080 4080
                                     $post_title = sanitize_text_field($row[$c]);
4081
-                                } else if ( $column == 'post_author' ) {
4081
+                                } else if ($column == 'post_author') {
4082 4082
                                     $post_author = $row[$c];
4083
-                                } else if ( $column == 'post_content' ) {
4083
+                                } else if ($column == 'post_content') {
4084 4084
                                     $post_content = $row[$c];
4085
-                                } else if ( $column == 'post_category' && $row[$c] != '' ) {
4086
-                                    $post_category_arr = explode( ',', $row[$c] );
4087
-                                } else if ( $column == 'default_category' ) {
4085
+                                } else if ($column == 'post_category' && $row[$c] != '') {
4086
+                                    $post_category_arr = explode(',', $row[$c]);
4087
+                                } else if ($column == 'default_category') {
4088 4088
                                     $default_category = wp_kses_normalize_entities($row[$c]);
4089
-                                } else if ( $column == 'post_tags' && $row[$c] != '' ) {
4090
-                                    $post_tags = explode( ',', sanitize_text_field($row[$c]) );
4091
-                                } else if ( $column == 'post_type' ) {
4089
+                                } else if ($column == 'post_tags' && $row[$c] != '') {
4090
+                                    $post_tags = explode(',', sanitize_text_field($row[$c]));
4091
+                                } else if ($column == 'post_type') {
4092 4092
                                     $post_type = $row[$c];
4093
-                                } else if ( $column == 'post_status' ) {
4094
-                                    $post_status = sanitize_key( $row[$c] );
4095
-                                } else if ( $column == 'is_featured' ) {
4096
-                                    $is_featured = (int)$row[$c];
4097
-                                } else if ( $column == 'geodir_video' ) {
4093
+                                } else if ($column == 'post_status') {
4094
+                                    $post_status = sanitize_key($row[$c]);
4095
+                                } else if ($column == 'is_featured') {
4096
+                                    $is_featured = (int) $row[$c];
4097
+                                } else if ($column == 'geodir_video') {
4098 4098
                                     $geodir_video = $row[$c];
4099
-                                } else if ( $column == 'post_address' ) {
4099
+                                } else if ($column == 'post_address') {
4100 4100
                                     $post_address = sanitize_text_field($row[$c]);
4101
-                                } else if ( $column == 'post_city' ) {
4101
+                                } else if ($column == 'post_city') {
4102 4102
                                     $post_city = sanitize_text_field($row[$c]);
4103
-                                } else if ( $column == 'post_region' ) {
4103
+                                } else if ($column == 'post_region') {
4104 4104
                                     $post_region = sanitize_text_field($row[$c]);
4105
-                                } else if ( $column == 'post_country' ) {
4105
+                                } else if ($column == 'post_country') {
4106 4106
                                     $post_country = sanitize_text_field($row[$c]);
4107
-                                } else if ( $column == 'post_zip' ) {
4107
+                                } else if ($column == 'post_zip') {
4108 4108
                                     $post_zip = sanitize_text_field($row[$c]);
4109
-                                } else if ( $column == 'post_latitude' ) {
4109
+                                } else if ($column == 'post_latitude') {
4110 4110
                                     $post_latitude = sanitize_text_field($row[$c]);
4111
-                                } else if ( $column == 'post_longitude' ) {
4111
+                                } else if ($column == 'post_longitude') {
4112 4112
                                     $post_longitude = sanitize_text_field($row[$c]);
4113
-                                } else if ( $column == 'post_neighbourhood' ) {
4113
+                                } else if ($column == 'post_neighbourhood') {
4114 4114
                                     $post_neighbourhood = sanitize_text_field($row[$c]);
4115 4115
                                     unset($gd_post[$column]);
4116
-                                } else if ( $column == 'neighbourhood_latitude' ) {
4116
+                                } else if ($column == 'neighbourhood_latitude') {
4117 4117
                                     $neighbourhood_latitude = sanitize_text_field($row[$c]);
4118
-                                } else if ( $column == 'neighbourhood_longitude' ) {
4118
+                                } else if ($column == 'neighbourhood_longitude') {
4119 4119
                                     $neighbourhood_longitude = sanitize_text_field($row[$c]);
4120
-                                } else if ( $column == 'geodir_timing' ) {
4120
+                                } else if ($column == 'geodir_timing') {
4121 4121
                                     $geodir_timing = sanitize_text_field($row[$c]);
4122
-                                } else if ( $column == 'geodir_contact' ) {
4122
+                                } else if ($column == 'geodir_contact') {
4123 4123
                                     $geodir_contact = sanitize_text_field($row[$c]);
4124
-                                } else if ( $column == 'geodir_email' ) {
4124
+                                } else if ($column == 'geodir_email') {
4125 4125
                                     $geodir_email = sanitize_email($row[$c]);
4126
-                                } else if ( $column == 'geodir_website' ) {
4126
+                                } else if ($column == 'geodir_website') {
4127 4127
                                     $geodir_website = sanitize_text_field($row[$c]);
4128
-                                } else if ( $column == 'geodir_twitter' ) {
4128
+                                } else if ($column == 'geodir_twitter') {
4129 4129
                                     $geodir_twitter = sanitize_text_field($row[$c]);
4130
-                                } else if ( $column == 'geodir_facebook' ) {
4130
+                                } else if ($column == 'geodir_facebook') {
4131 4131
                                     $geodir_facebook = sanitize_text_field($row[$c]);
4132
-                                } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
4132
+                                } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
4133 4133
                                     $post_images[] = $row[$c];
4134
-                                } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
4135
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) );
4136
-                                } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
4134
+                                } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
4135
+                                    $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
4136
+                                } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
4137 4137
                                     $row[$c] = str_replace('/', '-', $row[$c]);
4138
-                                    $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) );
4138
+                                    $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
4139 4139
                                 }
4140 4140
                                 // WPML
4141 4141
                                 if ($is_wpml) {
4142 4142
                                     if ($column == 'language') {
4143 4143
                                         $language = geodir_strtolower(trim($row[$c]));
4144 4144
                                     } else if ($column == 'original_post_id') {
4145
-                                        $original_post_id = (int)$row[$c];
4145
+                                        $original_post_id = (int) $row[$c];
4146 4146
                                     }
4147 4147
                                 }
4148 4148
                                 // WPML
@@ -4150,7 +4150,7 @@  discard block
 block discarded – undo
4150 4150
                             }
4151 4151
                             // listing claimed or not
4152 4152
                             if ($is_claim_active && isset($gd_post['claimed'])) {
4153
-                                $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0;
4153
+                                $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0;
4154 4154
                             }
4155 4155
                             
4156 4156
                             // WPML
@@ -4161,43 +4161,43 @@  discard block
 block discarded – undo
4161 4161
 
4162 4162
                             $gd_post['IMAGE'] = $post_images;
4163 4163
                             
4164
-                            $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status;
4165
-                            $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status;
4164
+                            $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status;
4165
+                            $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status;
4166 4166
                                                                                                                 
4167 4167
                             $valid = true;
4168 4168
                             
4169
-                            if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
4169
+                            if ($post_title == '' || !in_array($post_type, $post_types)) {
4170 4170
                                 $invalid++;
4171 4171
                                 $valid = false;
4172
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) );
4172
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
4173 4173
                             }
4174 4174
                             
4175
-                            $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
4176
-                            if ( $location_allowed ) {
4175
+                            $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
4176
+                            if ($location_allowed) {
4177 4177
                                 $location_result = geodir_get_default_location();
4178
-                                if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
4178
+                                if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
4179 4179
                                     $invalid_addr++;
4180 4180
                                     $valid = false;
4181
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4182
-                                } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
4183
-                                    if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
4181
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
4182
+                                } else if (!empty($location_result) && $location_result->location_id == 0) {
4183
+                                    if ((geodir_strtolower($post_city) != geodir_strtolower($location_result->city)) || (geodir_strtolower($post_region) != geodir_strtolower($location_result->region)) || (geodir_strtolower($post_country) != geodir_strtolower($location_result->country))) {
4184 4184
                                         $invalid_addr++;
4185 4185
                                         $valid = false;
4186
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) );
4186
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
4187 4187
                                     } else {
4188 4188
                                         if (!$location_manager) {
4189
-                                            $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated.
4189
+                                            $gd_post['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // Set the default location when location manager not activated.
4190 4190
                                         }
4191 4191
                                     }
4192 4192
                                 }
4193 4193
                             }
4194 4194
                             
4195
-                            if ( !$valid ) {
4195
+                            if (!$valid) {
4196 4196
                                 continue;
4197 4197
                             }
4198 4198
 
4199
-                            $cat_taxonomy = $post_type . 'category';
4200
-                            $tags_taxonomy = $post_type . '_tags';
4199
+                            $cat_taxonomy = $post_type.'category';
4200
+                            $tags_taxonomy = $post_type.'_tags';
4201 4201
                             
4202 4202
                             if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
4203 4203
                                 $post_category_arr = array_merge(array($default_category), $post_category_arr);
@@ -4205,29 +4205,29 @@  discard block
 block discarded – undo
4205 4205
 
4206 4206
                             $post_category = array();
4207 4207
                             $default_category_id = NULL;
4208
-                            if ( !empty( $post_category_arr ) ) {
4209
-                                foreach ( $post_category_arr as $value ) {
4210
-                                    $category_name = wp_kses_normalize_entities( trim( $value ) );
4208
+                            if (!empty($post_category_arr)) {
4209
+                                foreach ($post_category_arr as $value) {
4210
+                                    $category_name = wp_kses_normalize_entities(trim($value));
4211 4211
                                     
4212
-                                    if ( $category_name != '' ) {
4212
+                                    if ($category_name != '') {
4213 4213
                                         $term_category = array();
4214 4214
                                         
4215
-                                        if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
4215
+                                        if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
4216 4216
                                             $term_category = $term;
4217
-                                        } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
4217
+                                        } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
4218 4218
                                             $term_category = $term;
4219 4219
                                         } else {
4220 4220
                                             $term_data = array();
4221 4221
                                             $term_data['name'] = $category_name;
4222 4222
                                             $term_data['taxonomy'] = $cat_taxonomy;
4223 4223
                                             
4224
-                                            $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data );
4225
-                                            if ( $term_id ) {
4226
-                                                $term_category = get_term( $term_id, $cat_taxonomy );
4224
+                                            $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data);
4225
+                                            if ($term_id) {
4226
+                                                $term_category = get_term($term_id, $cat_taxonomy);
4227 4227
                                             }
4228 4228
                                         }
4229 4229
                                         
4230
-                                        if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
4230
+                                        if (!empty($term_category) && !is_wp_error($term_category)) {
4231 4231
                                             $post_category[] = intval($term_category->term_id);
4232 4232
                                             
4233 4233
                                             if ($category_name == $default_category) {
@@ -4248,15 +4248,15 @@  discard block
 block discarded – undo
4248 4248
                             $save_post['post_tags'] = $post_tags;
4249 4249
 
4250 4250
                             $saved_post_id = NULL;
4251
-                            if ( $import_choice == 'update' ) {
4252
-                                $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' );
4251
+                            if ($import_choice == 'update') {
4252
+                                $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
4253 4253
                                 
4254
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4254
+                                if ($post_id > 0 && get_post($post_id)) {
4255 4255
                                     $save_post['ID'] = $post_id;
4256 4256
                                     
4257
-                                    if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
4258
-                                        if ( is_wp_error( $saved_post_id ) ) {
4259
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4257
+                                    if ($saved_post_id = wp_update_post($save_post, true)) {
4258
+                                        if (is_wp_error($saved_post_id)) {
4259
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4260 4260
                                             $saved_post_id = 0;
4261 4261
                                         } else {
4262 4262
                                             $saved_post_id = $post_id;
@@ -4264,9 +4264,9 @@  discard block
 block discarded – undo
4264 4264
                                         }
4265 4265
                                     }
4266 4266
                                 } else {
4267
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4268
-                                        if ( is_wp_error( $saved_post_id ) ) {
4269
-                                            $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error;
4267
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4268
+                                        if (is_wp_error($saved_post_id)) {
4269
+                                            $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error;
4270 4270
                                             $saved_post_id = 0;
4271 4271
                                         } else {
4272 4272
                                             $created++;
@@ -4274,19 +4274,19 @@  discard block
 block discarded – undo
4274 4274
                                     }
4275 4275
                                 }
4276 4276
                                 
4277
-                                if ( !$saved_post_id > 0 ) {
4277
+                                if (!$saved_post_id > 0) {
4278 4278
                                     $invalid++;
4279
-                                    geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error );
4279
+                                    geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error);
4280 4280
                                 }
4281
-                            } else if ( $import_choice == 'skip' ) {
4282
-                                if ( $post_id > 0 && get_post( $post_id ) ) {
4281
+                            } else if ($import_choice == 'skip') {
4282
+                                if ($post_id > 0 && get_post($post_id)) {
4283 4283
                                     $skipped++;	
4284 4284
                                 } else {
4285
-                                    if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
4286
-                                        if ( is_wp_error( $saved_post_id ) ) {
4285
+                                    if ($saved_post_id = wp_insert_post($save_post, true)) {
4286
+                                        if (is_wp_error($saved_post_id)) {
4287 4287
                                             $invalid++;
4288 4288
                                             
4289
-                                            geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error );
4289
+                                            geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error);
4290 4290
                                             $saved_post_id = 0;
4291 4291
                                         } else {
4292 4292
                                             $created++;
@@ -4294,28 +4294,28 @@  discard block
 block discarded – undo
4294 4294
                                     } else {
4295 4295
                                         $invalid++;
4296 4296
                                         
4297
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4297
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4298 4298
                                     }
4299 4299
                                 }
4300 4300
                             } else {
4301 4301
                                 $invalid++;
4302 4302
                                 
4303
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error );
4303
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error);
4304 4304
                             }
4305 4305
 
4306
-                            if ( (int)$saved_post_id > 0 ) {
4306
+                            if ((int) $saved_post_id > 0) {
4307 4307
                                 // WPML
4308 4308
                                 if ($is_wpml && $original_post_id > 0 && $language != '') {
4309
-                                    $wpml_post_type = 'post_' . $post_type;
4310
-                                    $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type );
4309
+                                    $wpml_post_type = 'post_'.$post_type;
4310
+                                    $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type);
4311 4311
                                     $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language();
4312 4312
 
4313
-                                    $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type );
4313
+                                    $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type);
4314 4314
                                     
4315
-                                    $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language );
4315
+                                    $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language);
4316 4316
                                 }
4317 4317
                                 // WPML
4318
-                                $gd_post_info = geodir_get_post_info( $saved_post_id );
4318
+                                $gd_post_info = geodir_get_post_info($saved_post_id);
4319 4319
                                 
4320 4320
                                 $gd_post['post_id'] = $saved_post_id;
4321 4321
                                 $gd_post['ID'] = $saved_post_id;
@@ -4327,7 +4327,7 @@  discard block
 block discarded – undo
4327 4327
                                                     
4328 4328
                                 // post location
4329 4329
                                 $post_location_id = 0;
4330
-                                if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
4330
+                                if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
4331 4331
                                     $gd_post['post_neighbourhood'] = '';
4332 4332
                                     
4333 4333
                                     $post_location_info = array(
@@ -4337,7 +4337,7 @@  discard block
 block discarded – undo
4337 4337
                                                                 'geo_lat' => $post_latitude,
4338 4338
                                                                 'geo_lng' => $post_longitude
4339 4339
                                                             );
4340
-                                    if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
4340
+                                    if ($location_id = (int) geodir_add_new_location($post_location_info)) {
4341 4341
                                         $post_location_id = $location_id;
4342 4342
                                     }
4343 4343
                                     
@@ -4375,14 +4375,14 @@  discard block
 block discarded – undo
4375 4375
                                 $gd_post['post_location_id'] = $post_location_id;
4376 4376
                                 
4377 4377
                                 // post package info
4378
-                                $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0;
4378
+                                $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0;
4379 4379
                                 if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
4380 4380
                                     $package_id = $gd_post_info->package_id;
4381 4381
                                 }
4382 4382
                                 
4383 4383
                                 $package_info = array();
4384 4384
                                 if ($package_id && function_exists('geodir_get_package_info_by_id')) {
4385
-                                    $package_info = (array)geodir_get_package_info_by_id($package_id);
4385
+                                    $package_info = (array) geodir_get_package_info_by_id($package_id);
4386 4386
                                     
4387 4387
                                     if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
4388 4388
                                         $package_info = array();
@@ -4390,18 +4390,18 @@  discard block
 block discarded – undo
4390 4390
                                 }
4391 4391
                                 
4392 4392
                                 if (empty($package_info)) {
4393
-                                    $package_info = (array)geodir_post_package_info( array(), '', $post_type );
4393
+                                    $package_info = (array) geodir_post_package_info(array(), '', $post_type);
4394 4394
                                 }
4395 4395
                                  
4396
-                                if (!empty($package_info))	 {
4396
+                                if (!empty($package_info)) {
4397 4397
                                     $package_id = $package_info['pid'];
4398 4398
                                     
4399 4399
                                     if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
4400 4400
                                         $gd_post['expire_date'] = $expire_date;
4401 4401
                                     } else {
4402
-                                        if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
4403
-                                            $gd_post['alive_days'] = (int)$package_info['days'];
4404
-                                            $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) );
4402
+                                        if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
4403
+                                            $gd_post['alive_days'] = (int) $package_info['days'];
4404
+                                            $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
4405 4405
                                         } else {
4406 4406
                                             $gd_post['expire_date'] = 'Never';
4407 4407
                                         }
@@ -4410,7 +4410,7 @@  discard block
 block discarded – undo
4410 4410
                                     $gd_post['package_id'] = $package_id;
4411 4411
                                 }
4412 4412
 
4413
-                                $table = $plugin_prefix . $post_type . '_detail';
4413
+                                $table = $plugin_prefix.$post_type.'_detail';
4414 4414
                                 
4415 4415
                                 if ($post_type == 'gd_event') {
4416 4416
                                     $gd_post = geodir_imex_process_event_data($gd_post);
@@ -4421,28 +4421,28 @@  discard block
 block discarded – undo
4421 4421
                                 }
4422 4422
 
4423 4423
                                 // Export franchise fields
4424
-                                $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
4424
+                                $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
4425 4425
                                 if ($is_franchise_active) {
4426
-                                    if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
4426
+                                    if (isset($gd_post['gd_is_franchise']) && (int) $gd_post['gd_is_franchise'] == 1) {
4427 4427
                                         $gd_franchise_lock = array();
4428 4428
                                         
4429
-                                        if ( isset( $gd_post['gd_franchise_lock'] ) ) {
4430
-                                            $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
4431
-                                            $gd_franchise_lock = trim( $gd_franchise_lock );
4432
-                                            $gd_franchise_lock = explode( ",", $gd_franchise_lock );
4429
+                                        if (isset($gd_post['gd_franchise_lock'])) {
4430
+                                            $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
4431
+                                            $gd_franchise_lock = trim($gd_franchise_lock);
4432
+                                            $gd_franchise_lock = explode(",", $gd_franchise_lock);
4433 4433
                                         }
4434 4434
                                         
4435
-                                        update_post_meta( $saved_post_id, 'gd_is_franchise', 1 );
4436
-                                        update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock );
4435
+                                        update_post_meta($saved_post_id, 'gd_is_franchise', 1);
4436
+                                        update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock);
4437 4437
                                     } else {
4438
-                                        if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
4439
-                                            geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] );
4438
+                                        if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
4439
+                                            geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']);
4440 4440
                                         }
4441 4441
                                     }
4442 4442
                                 }
4443 4443
                                 
4444 4444
                                 if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
4445
-                                    $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) );
4445
+                                    $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
4446 4446
                                     if ($default_category_id) {
4447 4447
                                         $save_post['post_default_category'] = $default_category_id;
4448 4448
                                         $gd_post['default_category'] = $default_category_id;
@@ -4451,34 +4451,34 @@  discard block
 block discarded – undo
4451 4451
                                 }
4452 4452
                                 
4453 4453
                                 // Save post info
4454
-                                geodir_save_post_info( $saved_post_id, $gd_post );
4454
+                                geodir_save_post_info($saved_post_id, $gd_post);
4455 4455
                                 // post taxonomies
4456
-                                if ( !empty( $save_post['post_category'] ) ) {
4457
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy );
4456
+                                if (!empty($save_post['post_category'])) {
4457
+                                    wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy);
4458 4458
                                     
4459
-                                    $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : '';
4459
+                                    $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : '';
4460 4460
                                     if ($default_category_id) {
4461 4461
                                         $post_default_category = $default_category_id;
4462 4462
                                     }
4463 4463
                                     $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy);
4464 4464
                                     $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
4465
-                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
4465
+                                    $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
4466 4466
                                     
4467 4467
                                     if ($post_category_str != '' && $post_default_category) {
4468
-                                        $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str);
4468
+                                        $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str);
4469 4469
                                     }
4470 4470
                                     
4471 4471
                                     $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : '';
4472 4472
                                     
4473
-                                    geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str );
4473
+                                    geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str);
4474 4474
                                 }
4475 4475
 
4476
-                                if ( !empty( $save_post['post_tags'] ) ) {
4477
-                                    wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy );
4476
+                                if (!empty($save_post['post_tags'])) {
4477
+                                    wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy);
4478 4478
                                 }
4479 4479
 
4480 4480
                                 // Post images
4481
-                                if ( !empty( $post_images ) ) {
4481
+                                if (!empty($post_images)) {
4482 4482
                                     $post_images = array_unique($post_images);
4483 4483
                                     
4484 4484
                                     $old_post_images_arr = array();
@@ -4486,61 +4486,61 @@  discard block
 block discarded – undo
4486 4486
                                     
4487 4487
                                     $order = 1;
4488 4488
                                     
4489
-                                    $old_post_images = geodir_get_images( $saved_post_id );
4489
+                                    $old_post_images = geodir_get_images($saved_post_id);
4490 4490
                                     if (!empty($old_post_images)) {
4491
-                                        foreach( $old_post_images as $old_post_image ) {
4491
+                                        foreach ($old_post_images as $old_post_image) {
4492 4492
                                             if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
4493 4493
                                                 $old_post_images_arr[] = $old_post_image->file;
4494 4494
                                             }
4495 4495
                                         }
4496 4496
                                     }
4497 4497
 
4498
-                                    foreach ( $post_images as $post_image ) {
4499
-                                        $image_name = basename( $post_image );
4498
+                                    foreach ($post_images as $post_image) {
4499
+                                        $image_name = basename($post_image);
4500 4500
                                         $saved_post_images_arr[] = $image_name;
4501 4501
                                         
4502
-                                        if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
4502
+                                        if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
4503 4503
                                             continue; // Skip if image already exists.
4504 4504
                                         }
4505 4505
                                         
4506
-                                        $image_name_parts = explode( '.', $image_name );
4507
-                                        array_pop( $image_name_parts );
4508
-                                        $proper_image_name = implode( '.', $image_name_parts );
4506
+                                        $image_name_parts = explode('.', $image_name);
4507
+                                        array_pop($image_name_parts);
4508
+                                        $proper_image_name = implode('.', $image_name_parts);
4509 4509
                                         
4510
-                                        $arr_file_type = wp_check_filetype( $image_name );
4510
+                                        $arr_file_type = wp_check_filetype($image_name);
4511 4511
                                         
4512
-                                        if ( !empty( $arr_file_type ) ) {
4512
+                                        if (!empty($arr_file_type)) {
4513 4513
                                             $uploaded_file_type = $arr_file_type['type'];
4514 4514
                                             
4515 4515
                                             $attachment = array();
4516 4516
                                             $attachment['post_id'] = $saved_post_id;
4517 4517
                                             $attachment['title'] = $proper_image_name;
4518 4518
                                             $attachment['content'] = '';
4519
-                                            $attachment['file'] = $uploads_subdir . '/' . $image_name;
4519
+                                            $attachment['file'] = $uploads_subdir.'/'.$image_name;
4520 4520
                                             $attachment['mime_type'] = $uploaded_file_type;
4521 4521
                                             $attachment['menu_order'] = $order;
4522 4522
                                             $attachment['is_featured'] = 0;
4523 4523
 
4524 4524
                                             $attachment_set = '';
4525
-                                            foreach ( $attachment as $key => $val ) {
4526
-                                                if ( $val != '' ) {
4527
-                                                    $attachment_set .= $key . " = '" . $val . "', ";
4525
+                                            foreach ($attachment as $key => $val) {
4526
+                                                if ($val != '') {
4527
+                                                    $attachment_set .= $key." = '".$val."', ";
4528 4528
                                                 }
4529 4529
                                             }
4530
-                                            $attachment_set = trim( $attachment_set, ", " );
4530
+                                            $attachment_set = trim($attachment_set, ", ");
4531 4531
                                                                                         
4532 4532
                                             // Add new attachment
4533
-                                            $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set );
4533
+                                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
4534 4534
                                                                                         
4535 4535
                                             $order++;
4536 4536
                                         }
4537 4537
                                     }
4538 4538
 
4539
-                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/",  $saved_post_images_arr) . "' )" : '';
4539
+                                    $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
4540 4540
                                     // Remove previous attachment
4541
-                                    $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql );
4541
+                                    $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
4542 4542
                                     
4543
-                                    if ( !empty( $saved_post_images_arr ) ) {
4543
+                                    if (!empty($saved_post_images_arr)) {
4544 4544
                                         geodir_set_wp_featured_image($saved_post_id);
4545 4545
                                         /*
4546 4546
                                         $menu_order = 1;
@@ -4557,13 +4557,13 @@  discard block
 block discarded – undo
4557 4557
                                         }*/
4558 4558
                                     }
4559 4559
                                     
4560
-                                    if ( $order > 1 ) {
4560
+                                    if ($order > 1) {
4561 4561
                                         $images++;
4562 4562
                                     }
4563 4563
                                 }
4564 4564
 
4565 4565
                                 /** This action is documented in geodirectory-functions/post-functions.php */
4566
-                                do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post );
4566
+                                do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
4567 4567
                                 
4568 4568
                                 if (isset($is_featured)) {
4569 4569
                                     geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured);
@@ -4583,10 +4583,10 @@  discard block
 block discarded – undo
4583 4583
                 }
4584 4584
 
4585 4585
                 //undo some stuff to make the import quicker
4586
-                wp_defer_term_counting( false );
4587
-                wp_defer_comment_counting( false );
4588
-                $wpdb->query( 'COMMIT;' );
4589
-                $wpdb->query( 'SET autocommit = 1;' );
4586
+                wp_defer_term_counting(false);
4587
+                wp_defer_comment_counting(false);
4588
+                $wpdb->query('COMMIT;');
4589
+                $wpdb->query('SET autocommit = 1;');
4590 4590
 
4591 4591
                 $json = array();
4592 4592
                 $json['processed'] = $processed_actual;
@@ -4597,9 +4597,9 @@  discard block
 block discarded – undo
4597 4597
                 $json['invalid_addr'] = $invalid_addr;
4598 4598
                 $json['images'] = $images;
4599 4599
                 
4600
-                wp_send_json( $json );
4600
+                wp_send_json($json);
4601 4601
                 exit;
4602
-            } else if ( $task == 'import_loc' ) {
4602
+            } else if ($task == 'import_loc') {
4603 4603
                 global $gd_post_types;
4604 4604
                 $gd_post_types = $post_types;
4605 4605
                 
@@ -4608,82 +4608,82 @@  discard block
 block discarded – undo
4608 4608
                     
4609 4609
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4610 4610
                         $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4611
-                        wp_send_json( $json );
4611
+                        wp_send_json($json);
4612 4612
                     }
4613 4613
                     
4614 4614
                     $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
4615
-                    $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' );
4615
+                    $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
4616 4616
                     for ($i = 1; $i <= $limit; $i++) {
4617 4617
                         $index = $processed + $i;
4618 4618
                         
4619 4619
                         if (isset($file[$index])) {
4620 4620
                             $row = $file[$index];
4621
-                            $row = array_map( 'trim', $row );
4621
+                            $row = array_map('trim', $row);
4622 4622
                             $data = array();
4623 4623
                             
4624
-                            foreach ($columns as $c => $column ) {
4624
+                            foreach ($columns as $c => $column) {
4625 4625
                                 if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
4626 4626
                                     $data[$column] = $row[$c];
4627 4627
                                 }
4628 4628
                             }
4629 4629
 
4630
-                            if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
4630
+                            if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
4631 4631
                                 $invalid++;
4632
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4632
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4633 4633
                                 continue;
4634 4634
                             }
4635 4635
                             
4636 4636
                             $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0;
4637 4637
                             
4638
-                            if ( $import_choice == 'update' ) {
4639
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4640
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4638
+                            if ($import_choice == 'update') {
4639
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4640
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4641 4641
                                         $updated++;
4642 4642
                                     } else {
4643 4643
                                         $invalid++;
4644
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4644
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4645 4645
                                     }
4646
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4647
-                                    $data['location_id'] = (int)$location->location_id;
4646
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4647
+                                    $data['location_id'] = (int) $location->location_id;
4648 4648
                                     
4649
-                                    if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
4650
-                                        $data['location_id'] = (int)$location->location_id;
4651
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
4652
-                                        $data['location_id'] = (int)$location->location_id;
4653
-                                    } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
4654
-                                        $data['location_id'] = (int)$location->location_id;
4649
+                                    if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
4650
+                                        $data['location_id'] = (int) $location->location_id;
4651
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
4652
+                                        $data['location_id'] = (int) $location->location_id;
4653
+                                    } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
4654
+                                        $data['location_id'] = (int) $location->location_id;
4655 4655
                                     }
4656 4656
                                     
4657
-                                    if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
4657
+                                    if ($location_id = geodir_location_update_city($data, true, $location)) {
4658 4658
                                         $updated++;
4659 4659
                                     } else {
4660 4660
                                         $invalid++;
4661
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4661
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4662 4662
                                     }
4663 4663
                                 } else {
4664
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4664
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4665 4665
                                         $created++;
4666 4666
                                     } else {
4667 4667
                                         $invalid++;
4668
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4668
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4669 4669
                                     }
4670 4670
                                 }
4671
-                            } elseif ( $import_choice == 'skip' ) {
4672
-                                if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
4671
+                            } elseif ($import_choice == 'skip') {
4672
+                                if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
4673 4673
                                     $skipped++;
4674
-                                } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
4674
+                                } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
4675 4675
                                     $skipped++;
4676 4676
                                 } else {
4677
-                                    if ( $location_id = geodir_location_insert_city( $data, true ) ) {
4677
+                                    if ($location_id = geodir_location_insert_city($data, true)) {
4678 4678
                                         $created++;
4679 4679
                                     } else {
4680 4680
                                         $invalid++;
4681
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4681
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4682 4682
                                     }
4683 4683
                                 }
4684 4684
                             } else {
4685 4685
                                 $invalid++;
4686
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location );
4686
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location);
4687 4687
                             }
4688 4688
                         }
4689 4689
                     }
@@ -4697,24 +4697,24 @@  discard block
 block discarded – undo
4697 4697
                 $json['invalid'] = $invalid;
4698 4698
                 $json['images'] = $images;
4699 4699
                 
4700
-                wp_send_json( $json );
4701
-            } else if ( $task == 'import_hood' ) {               
4700
+                wp_send_json($json);
4701
+            } else if ($task == 'import_hood') {               
4702 4702
                 if (!empty($file)) {
4703 4703
                     $columns = isset($file[0]) ? $file[0] : NULL;
4704 4704
                     
4705 4705
                     if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
4706 4706
                         $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
4707
-                        wp_send_json( $json );
4707
+                        wp_send_json($json);
4708 4708
                     }
4709 4709
                     
4710 4710
                     $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
4711
-                    $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' );
4711
+                    $gd_error_hood = __('Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory');
4712 4712
                     for ($i = 1; $i <= $limit; $i++) {
4713 4713
                         $index = $processed + $i;
4714 4714
                         
4715 4715
                         if (isset($file[$index])) {
4716 4716
                             $row = $file[$index];
4717
-                            $row = array_map( 'trim', $row );
4717
+                            $row = array_map('trim', $row);
4718 4718
                             $data = array();
4719 4719
                             
4720 4720
                             foreach ($columns as $c => $column) {
@@ -4725,20 +4725,20 @@  discard block
 block discarded – undo
4725 4725
 
4726 4726
                             if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
4727 4727
                                 $invalid++;
4728
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4728
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4729 4729
                                 continue;
4730 4730
                             }
4731 4731
                             
4732 4732
                             $location_info = array();
4733
-                            if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
4734
-                                $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
4733
+                            if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
4734
+                                $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
4735 4735
                             } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
4736 4736
                                 $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
4737 4737
                             }
4738 4738
 
4739 4739
                             if (empty($location_info)) {
4740 4740
                                 $invalid++;
4741
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4741
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4742 4742
                                 continue;
4743 4743
                             }
4744 4744
                             
@@ -4753,35 +4753,35 @@  discard block
 block discarded – undo
4753 4753
                             $hood_data['hood_longitude'] = $data['longitude'];
4754 4754
                             $hood_data['hood_location_id'] = $location_id;
4755 4755
                                     
4756
-                            if ( $import_choice == 'update' ) {
4757
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4758
-                                    $hood_data['hood_id'] = (int)$data['neighbourhood_id'];
4756
+                            if ($import_choice == 'update') {
4757
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4758
+                                    $hood_data['hood_id'] = (int) $data['neighbourhood_id'];
4759 4759
                                     
4760 4760
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4761 4761
                                         $updated++;
4762 4762
                                     } else {
4763 4763
                                         $invalid++;
4764
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4764
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4765 4765
                                     }
4766 4766
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4767
-                                    $hood_data['hood_id'] = (int)$neighbourhood->hood_id;
4767
+                                    $hood_data['hood_id'] = (int) $neighbourhood->hood_id;
4768 4768
                                     
4769 4769
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4770 4770
                                         $updated++;
4771 4771
                                     } else {
4772 4772
                                         $invalid++;
4773
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4773
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4774 4774
                                     }
4775 4775
                                 } else {
4776 4776
                                     if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
4777 4777
                                         $created++;
4778 4778
                                     } else {
4779 4779
                                         $invalid++;
4780
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4780
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4781 4781
                                     }
4782 4782
                                 }
4783
-                            } elseif ( $import_choice == 'skip' ) {
4784
-                                if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
4783
+                            } elseif ($import_choice == 'skip') {
4784
+                                if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
4785 4785
                                     $skipped++;
4786 4786
                                 } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
4787 4787
                                     $skipped++;
@@ -4791,12 +4791,12 @@  discard block
 block discarded – undo
4791 4791
                                         $created++;
4792 4792
                                     } else {
4793 4793
                                         $invalid++;
4794
-                                        geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4794
+                                        geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4795 4795
                                     }
4796 4796
                                 }
4797 4797
                             } else {
4798 4798
                                 $invalid++;
4799
-                                geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood );
4799
+                                geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood);
4800 4800
                             }
4801 4801
                         }
4802 4802
                     }
@@ -4810,7 +4810,7 @@  discard block
 block discarded – undo
4810 4810
                 $json['invalid'] = $invalid;
4811 4811
                 $json['images'] = $images;
4812 4812
                 
4813
-                wp_send_json( $json );
4813
+                wp_send_json($json);
4814 4814
             }
4815 4815
         }
4816 4816
         break;
@@ -4854,29 +4854,29 @@  discard block
 block discarded – undo
4854 4854
  * }
4855 4855
  * @return int|bool Term id when success, false when fail.
4856 4856
  */
4857
-function geodir_imex_insert_term( $taxonomy, $term_data ) {
4858
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4857
+function geodir_imex_insert_term($taxonomy, $term_data) {
4858
+	if (empty($taxonomy) || empty($term_data)) {
4859 4859
 		return false;
4860 4860
 	}
4861 4861
 	
4862
-	$term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : '';
4862
+	$term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : '';
4863 4863
 	$args = array();
4864
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4865
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4866
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4864
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4865
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4866
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4867 4867
 	
4868
-	if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
4869
-		$term_args = array_merge( $term_data, $args );
4870
-		$defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4871
-		$term_args = wp_parse_args( $term_args, $defaults );
4872
-		$term_args = sanitize_term( $term_args, $taxonomy, 'db' );
4873
-		$args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args );
4868
+	if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
4869
+		$term_args = array_merge($term_data, $args);
4870
+		$defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
4871
+		$term_args = wp_parse_args($term_args, $defaults);
4872
+		$term_args = sanitize_term($term_args, $taxonomy, 'db');
4873
+		$args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args);
4874 4874
 	}
4875 4875
 	
4876
-    if( !empty( $term ) ) {
4877
-		$result = wp_insert_term( $term, $taxonomy, $args );
4878
-        if( !is_wp_error( $result ) ) {
4879
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4876
+    if (!empty($term)) {
4877
+		$result = wp_insert_term($term, $taxonomy, $args);
4878
+        if (!is_wp_error($result)) {
4879
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4880 4880
         }
4881 4881
     }
4882 4882
 	
@@ -4906,36 +4906,36 @@  discard block
 block discarded – undo
4906 4906
  * }
4907 4907
  * @return int|bool Term id when success, false when fail.
4908 4908
  */
4909
-function geodir_imex_update_term( $taxonomy, $term_data ) {
4910
-	if ( empty( $taxonomy ) || empty( $term_data ) ) {
4909
+function geodir_imex_update_term($taxonomy, $term_data) {
4910
+	if (empty($taxonomy) || empty($term_data)) {
4911 4911
 		return false;
4912 4912
 	}
4913 4913
 	
4914
-	$term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0;
4914
+	$term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0;
4915 4915
 	
4916 4916
 	$args = array();
4917
-	$args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : '';
4918
-	$args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : '';
4919
-	$args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : '';
4917
+	$args['description'] = isset($term_data['description']) ? $term_data['description'] : '';
4918
+	$args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : '';
4919
+	$args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : '';
4920 4920
 	
4921
-	if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
4921
+	if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
4922 4922
 		$term_data['term_id'] = $term_info['term_id'];
4923 4923
 		
4924
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4924
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
4925 4925
 		
4926
-		if( !is_wp_error( $result ) ) {
4927
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4926
+		if (!is_wp_error($result)) {
4927
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4928 4928
         }
4929
-	} else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
4929
+	} else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
4930 4930
 		$term_data['term_id'] = $term_info['term_id'];
4931 4931
 		
4932
-		$result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data );
4932
+		$result = wp_update_term($term_data['term_id'], $taxonomy, $term_data);
4933 4933
 		
4934
-		if( !is_wp_error( $result ) ) {
4935
-            return isset( $result['term_id'] ) ? $result['term_id'] : 0;
4934
+		if (!is_wp_error($result)) {
4935
+            return isset($result['term_id']) ? $result['term_id'] : 0;
4936 4936
         }
4937 4937
 	} else {
4938
-		return geodir_imex_insert_term( $taxonomy, $term_data );
4938
+		return geodir_imex_insert_term($taxonomy, $term_data);
4939 4939
 	}
4940 4940
 	
4941 4941
 	return false;
@@ -4954,20 +4954,20 @@  discard block
 block discarded – undo
4954 4954
  * @param string $post_type Post type.
4955 4955
  * @return int Posts count.
4956 4956
  */
4957
-function geodir_get_posts_count( $post_type ) {
4957
+function geodir_get_posts_count($post_type) {
4958 4958
     global $wpdb, $plugin_prefix;
4959 4959
 
4960
-    if ( !post_type_exists( $post_type ) ) {
4960
+    if (!post_type_exists($post_type)) {
4961 4961
         return 0;
4962 4962
     }
4963 4963
         
4964
-    $table = $plugin_prefix . $post_type . '_detail';
4964
+    $table = $plugin_prefix.$post_type.'_detail';
4965 4965
 
4966 4966
     // Skip listing with statuses trash, auto-draft etc...
4967 4967
     $skip_statuses = geodir_imex_export_skip_statuses();
4968 4968
     $where_statuses = '';
4969
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
4970
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
4969
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
4970
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
4971 4971
     }
4972 4972
     
4973 4973
     /**
@@ -4978,11 +4978,11 @@  discard block
 block discarded – undo
4978 4978
      *
4979 4979
      * @param string $where SQL where clause part.
4980 4980
      */
4981
-    $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type );
4981
+    $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
4982 4982
 
4983
-    $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
4983
+    $query = $wpdb->prepare("SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses, $post_type);
4984 4984
 
4985
-    $posts_count = (int)$wpdb->get_var( $query );
4985
+    $posts_count = (int) $wpdb->get_var($query);
4986 4986
     
4987 4987
     /**
4988 4988
      * Modify returned post counts for the current post type.
@@ -4993,7 +4993,7 @@  discard block
 block discarded – undo
4993 4993
      * @param int $posts_count Post counts.
4994 4994
      * @param string $post_type Post type.
4995 4995
      */
4996
-    $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type );
4996
+    $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
4997 4997
 
4998 4998
     return $posts_count;
4999 4999
 }
@@ -5014,19 +5014,19 @@  discard block
 block discarded – undo
5014 5014
  * @param int $page_no Page number. Default 0.
5015 5015
  * @return array Array of posts data.
5016 5016
  */
5017
-function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {	
5017
+function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {	
5018 5018
 	global $wp_filesystem;
5019 5019
 
5020
-	$posts = geodir_get_export_posts( $post_type, $per_page, $page_no );
5020
+	$posts = geodir_get_export_posts($post_type, $per_page, $page_no);
5021 5021
 
5022 5022
 	$csv_rows = array();
5023 5023
 	
5024
-	if ( !empty( $posts ) ) {
5025
-		$is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' );
5024
+	if (!empty($posts)) {
5025
+		$is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
5026 5026
         $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
5027
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
5027
+        $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
5028 5028
         $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
5029
-        $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
5029
+        $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
5030 5030
 		
5031 5031
 		$csv_row = array();
5032 5032
 		$csv_row[] = 'post_id';
@@ -5037,7 +5037,7 @@  discard block
 block discarded – undo
5037 5037
 		$csv_row[] = 'default_category';
5038 5038
 		$csv_row[] = 'post_tags';
5039 5039
 		$csv_row[] = 'post_type';
5040
-		if ( $post_type == 'gd_event' ) {
5040
+		if ($post_type == 'gd_event') {
5041 5041
 			$csv_row[] = 'event_date';
5042 5042
 			$csv_row[] = 'event_enddate';
5043 5043
 			$csv_row[] = 'starttime';
@@ -5095,15 +5095,15 @@  discard block
 block discarded – undo
5095 5095
 		}
5096 5096
 		// WPML
5097 5097
 
5098
-		$custom_fields = geodir_imex_get_custom_fields( $post_type );
5099
-		if ( !empty( $custom_fields ) ) {
5100
-			foreach ( $custom_fields as $custom_field ) {
5098
+		$custom_fields = geodir_imex_get_custom_fields($post_type);
5099
+		if (!empty($custom_fields)) {
5100
+			foreach ($custom_fields as $custom_field) {
5101 5101
 				$csv_row[] = $custom_field->htmlvar_name;
5102 5102
 			}
5103 5103
 		}
5104 5104
 
5105 5105
 		// Export franchise fields
5106
-		$is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false;
5106
+		$is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
5107 5107
 		if ($is_franchise_active) {
5108 5108
 			$csv_row[] = 'gd_is_franchise';
5109 5109
 			$csv_row[] = 'gd_franchise_lock';
@@ -5124,28 +5124,28 @@  discard block
 block discarded – undo
5124 5124
 		$csv_rows[] = $csv_row;
5125 5125
 
5126 5126
 		$images_count = 5;
5127
-        $xx=0;
5128
-		foreach ( $posts as $post ) {$xx++;
5127
+        $xx = 0;
5128
+		foreach ($posts as $post) {$xx++;
5129 5129
 			$post_id = $post['ID'];
5130 5130
 			
5131
-			$gd_post_info = geodir_get_post_info( $post_id );
5132
-			$post_info = (array)$gd_post_info;
5131
+			$gd_post_info = geodir_get_post_info($post_id);
5132
+			$post_info = (array) $gd_post_info;
5133 5133
 						
5134
-			$taxonomy_category = $post_type . 'category';
5135
-			$taxonomy_tags = $post_type . '_tags';
5134
+			$taxonomy_category = $post_type.'category';
5135
+			$taxonomy_tags = $post_type.'_tags';
5136 5136
 			
5137 5137
 			$post_category = '';
5138 5138
 			$default_category_id = $gd_post_info->default_category;
5139 5139
 			$default_category = '';
5140 5140
 			$post_tags = '';
5141
-			$terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) );
5141
+			$terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags));
5142 5142
 			
5143
-			if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
5143
+			if (!empty($terms) && !is_wp_error($terms)) {
5144 5144
 				$post_category = array();
5145 5145
 				$post_tags = array();
5146 5146
 			
5147
-				foreach ( $terms as $term ) {
5148
-					if ( $term->taxonomy == $taxonomy_category ) {
5147
+				foreach ($terms as $term) {
5148
+					if ($term->taxonomy == $taxonomy_category) {
5149 5149
 						$post_category[] = $term->name;
5150 5150
 						
5151 5151
 						if ($default_category_id == $term->term_id) {
@@ -5153,7 +5153,7 @@  discard block
 block discarded – undo
5153 5153
 						}
5154 5154
 					}
5155 5155
 					
5156
-					if ( $term->taxonomy == $taxonomy_tags ) {
5156
+					if ($term->taxonomy == $taxonomy_tags) {
5157 5157
 						$post_tags[] = $term->name;
5158 5158
 					}
5159 5159
 				}
@@ -5161,47 +5161,47 @@  discard block
 block discarded – undo
5161 5161
 				if (empty($default_category) && !empty($post_category)) {
5162 5162
 					$default_category = $post_category[0]; // Set first one as default category.
5163 5163
 				}
5164
-				$post_category = !empty( $post_category ) ? implode( ',', $post_category ) : '';
5165
-				$post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : '';
5164
+				$post_category = !empty($post_category) ? implode(',', $post_category) : '';
5165
+				$post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
5166 5166
 			}
5167 5167
 
5168 5168
 			// Franchise data
5169
-			if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
5169
+			if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
5170 5170
 				$franchise_id = $post_info['franchise'];
5171 5171
 				$gd_franchise_info = geodir_get_post_info($franchise_id);
5172 5172
 
5173 5173
 				if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
5174
-					$franchise_info = (array)$gd_franchise_info;
5174
+					$franchise_info = (array) $gd_franchise_info;
5175 5175
 					$locked_fields = geodir_franchise_get_locked_fields($franchise_id, true);
5176 5176
 					
5177 5177
 					if (!empty($locked_fields)) {
5178
-						foreach( $locked_fields as $locked_field) {
5178
+						foreach ($locked_fields as $locked_field) {
5179 5179
 							if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
5180 5180
 								$post_info[$locked_field] = $franchise_info[$locked_field];
5181 5181
 							}
5182 5182
 							
5183 5183
 							if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
5184
-								$franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) );
5184
+								$franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags));
5185 5185
 			
5186
-								if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
5186
+								if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
5187 5187
 									$franchise_post_category = array();
5188 5188
 									$franchise_post_tags = array();
5189 5189
 								
5190
-									foreach ( $franchise_terms as $franchise_term ) {
5191
-										if ( $franchise_term->taxonomy == $taxonomy_category ) {
5190
+									foreach ($franchise_terms as $franchise_term) {
5191
+										if ($franchise_term->taxonomy == $taxonomy_category) {
5192 5192
 											$franchise_post_category[] = $franchise_term->name;
5193 5193
 										}
5194 5194
 										
5195
-										if ( $franchise_term->taxonomy == $taxonomy_tags ) {
5195
+										if ($franchise_term->taxonomy == $taxonomy_tags) {
5196 5196
 											$franchise_post_tags[] = $franchise_term->name;
5197 5197
 										}
5198 5198
 									}
5199 5199
 									
5200 5200
 									if (in_array($taxonomy_category, $locked_fields)) {
5201
-										$post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : '';
5201
+										$post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
5202 5202
 									}
5203 5203
 									if (in_array('post_tags', $locked_fields)) {
5204
-										$post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : '';
5204
+										$post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
5205 5205
 									}
5206 5206
 								}
5207 5207
 							}
@@ -5210,18 +5210,18 @@  discard block
 block discarded – undo
5210 5210
 				}
5211 5211
 			}
5212 5212
 						
5213
-			$post_images = geodir_get_images( $post_id );
5213
+			$post_images = geodir_get_images($post_id);
5214 5214
 			$current_images = array();
5215
-			if ( !empty( $post_images ) ) {
5216
-				foreach ( $post_images as $post_image ) {
5217
-					$post_image = (array)$post_image;
5218
-					$image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : '';
5219
-					if ( $image ) {
5215
+			if (!empty($post_images)) {
5216
+				foreach ($post_images as $post_image) {
5217
+					$post_image = (array) $post_image;
5218
+					$image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : '';
5219
+					if ($image) {
5220 5220
 						$current_images[] = $image;
5221 5221
 					}
5222 5222
 				}
5223 5223
 				
5224
-				$images_count = max( $images_count, count( $current_images ) );
5224
+				$images_count = max($images_count, count($current_images));
5225 5225
 			}
5226 5226
 
5227 5227
 			$csv_row = array();
@@ -5233,7 +5233,7 @@  discard block
 block discarded – undo
5233 5233
 			$csv_row[] = $default_category; // default_category
5234 5234
 			$csv_row[] = $post_tags; // post_tags
5235 5235
 			$csv_row[] = $post_type; // post_type
5236
-			if ( $post_type == 'gd_event' ) {
5236
+			if ($post_type == 'gd_event') {
5237 5237
 				$event_data = geodir_imex_get_event_data($post, $gd_post_info);
5238 5238
 				$csv_row[] = $event_data['event_date']; // event_date
5239 5239
 				$csv_row[] = $event_data['event_enddate']; // enddate
@@ -5254,12 +5254,12 @@  discard block
 block discarded – undo
5254 5254
 				$csv_row[] = $event_data['recurring_end_date']; // repeat_end
5255 5255
 			}
5256 5256
 			$csv_row[] = $post_info['post_status']; // post_status
5257
-			$csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5257
+			$csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured
5258 5258
             if ($is_claim_active) {
5259
-                $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed
5259
+                $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed
5260 5260
             }
5261 5261
 			if ($is_payment_plugin) {
5262
-				$csv_row[] = (int)$post_info['package_id']; // package_id
5262
+				$csv_row[] = (int) $post_info['package_id']; // package_id
5263 5263
 				$csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
5264 5264
 			}
5265 5265
             $csv_row[] = $post_info['post_date']; // post_date
@@ -5295,14 +5295,14 @@  discard block
 block discarded – undo
5295 5295
 			$csv_row[] = $post_info['geodir_special_offers']; // geodir_special_offers
5296 5296
 			// WPML
5297 5297
 			if ($is_wpml) {
5298
-				$csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type );
5299
-				$csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type );
5298
+				$csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type);
5299
+				$csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type);
5300 5300
 			}
5301 5301
 			// WPML
5302 5302
 			
5303
-			if ( !empty( $custom_fields ) ) {
5304
-				foreach ( $custom_fields as $custom_field ) {
5305
-					$csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : '';
5303
+			if (!empty($custom_fields)) {
5304
+				foreach ($custom_fields as $custom_field) {
5305
+					$csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : '';
5306 5306
 				}
5307 5307
 			}
5308 5308
 			
@@ -5313,15 +5313,15 @@  discard block
 block discarded – undo
5313 5313
 				$franchise = '';
5314 5314
 					
5315 5315
 				if (geodir_franchise_pkg_is_active($gd_post_info)) {
5316
-					$gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true );
5317
-					$locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : '';
5316
+					$gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true);
5317
+					$locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : '';
5318 5318
 					$locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
5319
-					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id
5319
+					$franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id
5320 5320
 				}
5321 5321
 				
5322
-				$csv_row[] = (int)$gd_is_franchise; // gd_is_franchise
5322
+				$csv_row[] = (int) $gd_is_franchise; // gd_is_franchise
5323 5323
 				$csv_row[] = $locaked_fields; // gd_franchise_lock fields
5324
-				$csv_row[] = (int)$franchise; // franchise id
5324
+				$csv_row[] = (int) $franchise; // franchise id
5325 5325
 			}
5326 5326
             
5327 5327
             /**
@@ -5335,15 +5335,15 @@  discard block
 block discarded – undo
5335 5335
              */
5336 5336
             $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
5337 5337
 			
5338
-			for ( $c = 0; $c < $images_count; $c++ ) {
5339
-				$csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE
5338
+			for ($c = 0; $c < $images_count; $c++) {
5339
+				$csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE
5340 5340
 			}
5341 5341
 			
5342 5342
 			$csv_rows[] = $csv_row;
5343 5343
 
5344 5344
 		}
5345 5345
 
5346
-		for ( $c = 0; $c < $images_count; $c++ ) {
5346
+		for ($c = 0; $c < $images_count; $c++) {
5347 5347
 			$csv_rows[0][] = 'IMAGE';
5348 5348
 		}
5349 5349
 	}
@@ -5365,30 +5365,30 @@  discard block
 block discarded – undo
5365 5365
  * @param int $page_no Page number. Default 0.
5366 5366
  * @return array Array of posts data.
5367 5367
  */
5368
-function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
5368
+function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
5369 5369
     global $wpdb, $plugin_prefix;
5370 5370
 
5371
-    if ( ! post_type_exists( $post_type ) )
5371
+    if (!post_type_exists($post_type))
5372 5372
         return new stdClass;
5373 5373
         
5374
-    $table = $plugin_prefix . $post_type . '_detail';
5374
+    $table = $plugin_prefix.$post_type.'_detail';
5375 5375
 
5376 5376
     $limit = '';
5377
-    if ( $per_page > 0 && $page_no > 0 ) {
5378
-        $offset = ( $page_no - 1 ) * $per_page;
5377
+    if ($per_page > 0 && $page_no > 0) {
5378
+        $offset = ($page_no - 1) * $per_page;
5379 5379
         
5380
-        if ( $offset > 0 ) {
5381
-            $limit = " LIMIT " . $offset . "," . $per_page;
5380
+        if ($offset > 0) {
5381
+            $limit = " LIMIT ".$offset.",".$per_page;
5382 5382
         } else {
5383
-            $limit = " LIMIT " . $per_page;
5383
+            $limit = " LIMIT ".$per_page;
5384 5384
         }
5385 5385
     }
5386 5386
 
5387 5387
     // Skip listing with statuses trash, auto-draft etc...
5388 5388
     $skip_statuses = geodir_imex_export_skip_statuses();
5389 5389
     $where_statuses = '';
5390
-    if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5391
-        $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5390
+    if (!empty($skip_statuses) && is_array($skip_statuses)) {
5391
+        $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5392 5392
     }
5393 5393
     
5394 5394
     /**
@@ -5399,9 +5399,9 @@  discard block
 block discarded – undo
5399 5399
      *
5400 5400
      * @param string $where SQL where clause part.
5401 5401
      */
5402
-    $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5402
+    $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5403 5403
 
5404
-    $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
5404
+    $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." ORDER BY {$wpdb->posts}.ID ASC".$limit, $post_type);
5405 5405
     /**
5406 5406
      * Modify returned posts SQL query for the current post type.
5407 5407
      *
@@ -5411,8 +5411,8 @@  discard block
 block discarded – undo
5411 5411
      * @param int $query The SQL query.
5412 5412
      * @param string $post_type Post type.
5413 5413
      */
5414
-    $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type );
5415
-    $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A );
5414
+    $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
5415
+    $results = (array) $wpdb->get_results($wpdb->prepare($query, $post_type), ARRAY_A);
5416 5416
 
5417 5417
     /**
5418 5418
      * Modify returned post results for the current post type.
@@ -5423,7 +5423,7 @@  discard block
 block discarded – undo
5423 5423
      * @param object $results An object containing all post ids.
5424 5424
      * @param string $post_type Post type.
5425 5425
      */
5426
-    return apply_filters( 'geodir_export_posts', $results, $post_type );
5426
+    return apply_filters('geodir_export_posts', $results, $post_type);
5427 5427
 }
5428 5428
 
5429 5429
 /**
@@ -5441,24 +5441,24 @@  discard block
 block discarded – undo
5441 5441
  * @param string $post_type Post type.
5442 5442
  * @return string The SQL query.
5443 5443
  */
5444
-function geodir_imex_get_events_query( $query, $post_type ) {
5445
-    if ( $post_type == 'gd_event' ) {
5444
+function geodir_imex_get_events_query($query, $post_type) {
5445
+    if ($post_type == 'gd_event') {
5446 5446
         global $wpdb, $plugin_prefix;
5447 5447
         
5448
-        $table = $plugin_prefix . $post_type . '_detail';
5448
+        $table = $plugin_prefix.$post_type.'_detail';
5449 5449
         $schedule_table = EVENT_SCHEDULE;
5450 5450
         
5451 5451
         // Skip listing with statuses trash, auto-draft etc...
5452 5452
         $skip_statuses = geodir_imex_export_skip_statuses();
5453 5453
         $where_statuses = '';
5454
-        if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
5455
-            $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
5454
+        if (!empty($skip_statuses) && is_array($skip_statuses)) {
5455
+            $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
5456 5456
         }
5457 5457
         
5458 5458
         /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */
5459
-        $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type );
5459
+        $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
5460 5460
 
5461
-        $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
5461
+        $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type);
5462 5462
     }
5463 5463
 
5464 5464
     return $query;
@@ -5482,35 +5482,35 @@  discard block
 block discarded – undo
5482 5482
  * @param  string $post_type Post type.
5483 5483
  * @return int Total terms count.
5484 5484
  */
5485
-function geodir_get_terms_count( $post_type ) {
5486
-    $args = array( 'hide_empty' => 0 );
5485
+function geodir_get_terms_count($post_type) {
5486
+    $args = array('hide_empty' => 0);
5487 5487
 
5488
-    remove_all_filters( 'get_terms' );
5488
+    remove_all_filters('get_terms');
5489 5489
 
5490
-    $taxonomy = $post_type . 'category';
5490
+    $taxonomy = $post_type.'category';
5491 5491
 
5492 5492
     // WPML
5493 5493
     $is_wpml = geodir_is_wpml();
5494 5494
     $active_lang = 'all';
5495
-    if ( $is_wpml ) {
5495
+    if ($is_wpml) {
5496 5496
         global $sitepress;
5497 5497
         $active_lang = $sitepress->get_current_language();
5498 5498
         
5499
-        if ( $active_lang != 'all' ) {
5500
-            $sitepress->switch_lang( 'all', true );
5499
+        if ($active_lang != 'all') {
5500
+            $sitepress->switch_lang('all', true);
5501 5501
         }
5502 5502
     }
5503 5503
     // WPML
5504 5504
             
5505
-    $count_terms = wp_count_terms( $taxonomy, $args );
5505
+    $count_terms = wp_count_terms($taxonomy, $args);
5506 5506
 
5507 5507
     // WPML
5508
-    if ( $is_wpml && $active_lang !== 'all' ) {
5508
+    if ($is_wpml && $active_lang !== 'all') {
5509 5509
         global $sitepress;
5510
-        $sitepress->switch_lang( $active_lang, true );
5510
+        $sitepress->switch_lang($active_lang, true);
5511 5511
     }
5512 5512
     // WPML
5513
-    $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0;
5513
+    $count_terms = !is_wp_error($count_terms) ? $count_terms : 0;
5514 5514
      
5515 5515
     return $count_terms;
5516 5516
 }
@@ -5527,23 +5527,23 @@  discard block
 block discarded – undo
5527 5527
  * @param int $page_no Page number. Default 0.
5528 5528
  * @return array Array of terms data.
5529 5529
  */
5530
-function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
5531
-	$args = array( 'hide_empty' => 0, 'orderby' => 'id' );
5530
+function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
5531
+	$args = array('hide_empty' => 0, 'orderby' => 'id');
5532 5532
 	
5533
-	remove_all_filters( 'get_terms' );
5533
+	remove_all_filters('get_terms');
5534 5534
 	
5535
-	$taxonomy = $post_type . 'category';
5535
+	$taxonomy = $post_type.'category';
5536 5536
 	
5537
-	if ( $per_page > 0 && $page_no > 0 ) {
5538
-		$args['offset'] = ( $page_no - 1 ) * $per_page;
5537
+	if ($per_page > 0 && $page_no > 0) {
5538
+		$args['offset'] = ($page_no - 1) * $per_page;
5539 5539
 		$args['number'] = $per_page;
5540 5540
 	}
5541 5541
 	
5542
-	$terms = get_terms( $taxonomy, $args );
5542
+	$terms = get_terms($taxonomy, $args);
5543 5543
 
5544 5544
 	$csv_rows = array();
5545 5545
 	
5546
-	if ( !empty( $terms ) ) {
5546
+	if (!empty($terms)) {
5547 5547
 		$csv_row = array();
5548 5548
 		$csv_row[] = 'cat_id';
5549 5549
 		$csv_row[] = 'cat_name';
@@ -5565,16 +5565,16 @@  discard block
 block discarded – undo
5565 5565
 		
5566 5566
 		$csv_rows[] = $csv_row;
5567 5567
 		
5568
-		foreach ( $terms as $term ) {
5569
-			$cat_icon = get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type );
5570
-			$cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : '';
5568
+		foreach ($terms as $term) {
5569
+			$cat_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type);
5570
+			$cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : '';
5571 5571
 			
5572
-			$cat_image = geodir_get_default_catimage( $term->term_id, $post_type );
5573
-			$cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; 
5572
+			$cat_image = geodir_get_default_catimage($term->term_id, $post_type);
5573
+			$cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; 
5574 5574
 			
5575 5575
 			$cat_parent = '';
5576
-			if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
5577
-				$parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy );
5576
+			if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
5577
+				$parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
5578 5578
 				$cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : '';
5579 5579
 			}
5580 5580
 			
@@ -5584,15 +5584,15 @@  discard block
 block discarded – undo
5584 5584
 			$csv_row[] = $term->slug;
5585 5585
 			$csv_row[] = $post_type;
5586 5586
 			$csv_row[] = $cat_parent;
5587
-			$csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type );
5587
+			$csv_row[] = get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type);
5588 5588
             // WPML
5589 5589
 			if ($is_wpml) {
5590
-				$csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy );
5591
-                $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy );
5590
+				$csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy);
5591
+                $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy);
5592 5592
 			}
5593 5593
 			// WPML
5594 5594
 			$csv_row[] = $term->description;
5595
-			$csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type );
5595
+			$csv_row[] = get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type);
5596 5596
 			$csv_row[] = $cat_image;
5597 5597
 			$csv_row[] = $cat_icon;
5598 5598
 			
@@ -5611,10 +5611,10 @@  discard block
 block discarded – undo
5611 5611
  * @param  bool $relative True for relative path & False for absolute path.
5612 5612
  * @return string Path to the cache directory.
5613 5613
  */
5614
-function geodir_path_import_export( $relative = true ) {
5614
+function geodir_path_import_export($relative = true) {
5615 5615
 	$upload_dir = wp_upload_dir();
5616 5616
 	
5617
-	return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache';
5617
+	return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache';
5618 5618
 }
5619 5619
 
5620 5620
 /**
@@ -5630,8 +5630,8 @@  discard block
 block discarded – undo
5630 5630
  * @param  bool $clear If true then it overwrite data otherwise add rows at the end of file.
5631 5631
  * @return bool true if success otherwise false.
5632 5632
  */
5633
-function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
5634
-	if ( empty( $csv_data ) ) {
5633
+function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
5634
+	if (empty($csv_data)) {
5635 5635
 		return false;
5636 5636
 	}
5637 5637
 	
@@ -5639,17 +5639,17 @@  discard block
 block discarded – undo
5639 5639
 	
5640 5640
 	$mode = $clear ? 'w+' : 'a+';
5641 5641
 	
5642
-	if ( function_exists( 'fputcsv' ) ) {
5643
-		$file = fopen( $file_path, $mode );
5644
-		foreach( $csv_data as $csv_row ) {
5642
+	if (function_exists('fputcsv')) {
5643
+		$file = fopen($file_path, $mode);
5644
+		foreach ($csv_data as $csv_row) {
5645 5645
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5646
-			$write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' );
5646
+			$write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"');
5647 5647
 		}
5648
-		fclose( $file );
5648
+		fclose($file);
5649 5649
 	} else {
5650
-		foreach( $csv_data as $csv_row ) {
5650
+		foreach ($csv_data as $csv_row) {
5651 5651
 			//$csv_row = array_map( 'utf8_decode', $csv_row );
5652
-			$wp_filesystem->put_contents( $file_path, $csv_row );
5652
+			$wp_filesystem->put_contents($file_path, $csv_row);
5653 5653
 		}
5654 5654
 	}
5655 5655
 		
@@ -5667,14 +5667,14 @@  discard block
 block discarded – undo
5667 5667
  * @param  string $file Full path to file.
5668 5668
  * @return int No of file rows.
5669 5669
  */
5670
-function geodir_import_export_line_count( $file ) {
5670
+function geodir_import_export_line_count($file) {
5671 5671
 	global $wp_filesystem;
5672 5672
 	
5673
-	if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
5674
-		$contents = $wp_filesystem->get_contents_array( $file );
5673
+	if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
5674
+		$contents = $wp_filesystem->get_contents_array($file);
5675 5675
 		
5676
-		if ( !empty( $contents ) && is_array( $contents ) ) {
5677
-			return count( $contents ) - 1;
5676
+		if (!empty($contents) && is_array($contents)) {
5677
+			return count($contents) - 1;
5678 5678
 		}
5679 5679
 	}
5680 5680
 	
@@ -5691,11 +5691,11 @@  discard block
 block discarded – undo
5691 5691
  * @param string $post_type The post type.
5692 5692
  * @return object Queried object.
5693 5693
  */
5694
-function geodir_imex_get_custom_fields( $post_type ) {
5694
+function geodir_imex_get_custom_fields($post_type) {
5695 5695
 	global $wpdb;
5696 5696
 	 
5697
-	$sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
5698
-	$rows = $wpdb->get_results( $sql );
5697
+	$sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
5698
+	$rows = $wpdb->get_results($sql);
5699 5699
 	 
5700 5700
 	return $rows;
5701 5701
 }
@@ -5774,14 +5774,14 @@  discard block
 block discarded – undo
5774 5774
 	global $wpdb, $plugin_prefix;
5775 5775
 	
5776 5776
 	$post_type = get_post_type($master_post_id);
5777
-	$post_table = $plugin_prefix . $post_type . '_detail';
5777
+	$post_table = $plugin_prefix.$post_type.'_detail';
5778 5778
 	
5779
-	$query = $wpdb->prepare("SELECT * FROM " . $post_table . " WHERE post_id = %d", array($master_post_id));
5780
-	$data = (array)$wpdb->get_row($query);
5779
+	$query = $wpdb->prepare("SELECT * FROM ".$post_table." WHERE post_id = %d", array($master_post_id));
5780
+	$data = (array) $wpdb->get_row($query);
5781 5781
 	
5782
-	if ( !empty( $data ) ) {
5782
+	if (!empty($data)) {
5783 5783
 		$data['post_id'] = $tr_post_id;
5784
-		unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type . 'category'], $data['overall_rating'], $data['rating_count'], $data['ratings']);
5784
+		unset($data['default_category'], $data['marker_json'], $data['featured_image'], $data[$post_type.'category'], $data['overall_rating'], $data['rating_count'], $data['ratings']);
5785 5785
 		
5786 5786
 		$wpdb->update($post_table, $data, array('post_id' => $tr_post_id));		
5787 5787
 		return true;
@@ -5807,7 +5807,7 @@  discard block
 block discarded – undo
5807 5807
 	global $sitepress, $wpdb;
5808 5808
 	$post_type = get_post_type($master_post_id);
5809 5809
 	
5810
-	remove_filter('get_term', array($sitepress,'get_term_adjust_id')); // AVOID filtering to current language
5810
+	remove_filter('get_term', array($sitepress, 'get_term_adjust_id')); // AVOID filtering to current language
5811 5811
 
5812 5812
 	$taxonomies = get_object_taxonomies($post_type);
5813 5813
 	foreach ($taxonomies as $taxonomy) {
@@ -5816,9 +5816,9 @@  discard block
 block discarded – undo
5816 5816
 		
5817 5817
 		if ($terms) {
5818 5818
 			foreach ($terms as $term) {
5819
-				$tr_id = apply_filters( 'translate_object_id',$term->term_id, $taxonomy, false, $lang);
5819
+				$tr_id = apply_filters('translate_object_id', $term->term_id, $taxonomy, false, $lang);
5820 5820
 				
5821
-				if (!is_null($tr_id)){
5821
+				if (!is_null($tr_id)) {
5822 5822
 					// not using get_term - unfiltered get_term
5823 5823
 					$translated_term = $wpdb->get_row($wpdb->prepare("
5824 5824
 						SELECT * FROM {$wpdb->terms} t JOIN {$wpdb->term_taxonomy} x ON x.term_id = t.term_id WHERE t.term_id = %d AND x.taxonomy = %s", $tr_id, $taxonomy));
@@ -5827,14 +5827,14 @@  discard block
 block discarded – undo
5827 5827
 				}
5828 5828
 			}
5829 5829
 
5830
-			if (!is_taxonomy_hierarchical($taxonomy)){
5831
-				$terms_array = array_unique( array_map( 'intval', $terms_array ) );
5830
+			if (!is_taxonomy_hierarchical($taxonomy)) {
5831
+				$terms_array = array_unique(array_map('intval', $terms_array));
5832 5832
 			}
5833 5833
 
5834 5834
 			wp_set_post_terms($tr_post_id, $terms_array, $taxonomy);
5835 5835
 			
5836
-			if ($taxonomy == $post_type . 'category') {
5837
-				geodir_set_postcat_structure($tr_post_id, $post_type . 'category');
5836
+			if ($taxonomy == $post_type.'category') {
5837
+				geodir_set_postcat_structure($tr_post_id, $post_type.'category');
5838 5838
 			}
5839 5839
 		}
5840 5840
 	}
@@ -5855,15 +5855,15 @@  discard block
 block discarded – undo
5855 5855
 function geodir_icl_duplicate_post_images($master_post_id, $tr_post_id, $lang) {
5856 5856
 	global $wpdb;
5857 5857
 	
5858
-	$query = $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
5858
+	$query = $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d", array('%image%', $tr_post_id));
5859 5859
 	$wpdb->query($query);
5860 5860
 	
5861
-	$query = $wpdb->prepare("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
5861
+	$query = $wpdb->prepare("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC", array('%image%', $master_post_id));
5862 5862
 	$post_images = $wpdb->get_results($query);
5863 5863
 	
5864
-	if ( !empty( $post_images ) ) {
5865
-		foreach ( $post_images as $post_image) {
5866
-			$image_data = (array)$post_image;
5864
+	if (!empty($post_images)) {
5865
+		foreach ($post_images as $post_image) {
5866
+			$image_data = (array) $post_image;
5867 5867
 			unset($image_data['ID']);
5868 5868
 			$image_data['post_id'] = $tr_post_id;
5869 5869
 			
@@ -5889,10 +5889,10 @@  discard block
 block discarded – undo
5889 5889
  * @return array Event data array.
5890 5890
  */
5891 5891
 function geodir_imex_get_event_data($post, $gd_post_info) {
5892
-	$event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : '';
5892
+	$event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
5893 5893
 	$event_enddate = $event_date;
5894
-	$starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : '';
5895
-	$endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : '';
5894
+	$starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
5895
+	$endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
5896 5896
 	
5897 5897
 	$is_recurring_event = '';
5898 5898
 	$event_duration_days = '';
@@ -5909,15 +5909,15 @@  discard block
 block discarded – undo
5909 5909
 		
5910 5910
 	$recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array();
5911 5911
 	if (!empty($recurring_data)) {
5912
-		$event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date;
5913
-		$event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date;
5914
-		$starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime;
5915
-		$endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime;
5912
+		$event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
5913
+		$event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
5914
+		$starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
5915
+		$endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
5916 5916
 		$is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : '';
5917 5917
 		$different_times = !empty($recurring_data['different_times']) ? true : false;
5918 5918
 	
5919
-		$recurring_pkg = geodir_event_recurring_pkg( $gd_post_info );
5920
-		$is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true;
5919
+		$recurring_pkg = geodir_event_recurring_pkg($gd_post_info);
5920
+		$is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true;
5921 5921
 			
5922 5922
 		if ($recurring_pkg && $is_recurring) {
5923 5923
 			$recurring_dates = $event_date;
@@ -5927,13 +5927,13 @@  discard block
 block discarded – undo
5927 5927
 			$recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
5928 5928
 			
5929 5929
 			if (!empty($recurring_data['event_recurring_dates'])) {
5930
-				$event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] );
5930
+				$event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
5931 5931
 				
5932 5932
 				if (!empty($event_recurring_dates)) {
5933 5933
 					$recurring_dates = array();
5934 5934
 					
5935 5935
 					foreach ($event_recurring_dates as $date) {
5936
-						$recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) );
5936
+						$recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
5937 5937
 					}
5938 5938
 					
5939 5939
 					$recurring_dates = implode(",", $recurring_dates);
@@ -5949,7 +5949,7 @@  discard block
 block discarded – undo
5949 5949
 						$times = array();
5950 5950
 						
5951 5951
 						foreach ($recurring_data['starttimes'] as $time) {
5952
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5952
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5953 5953
 						}
5954 5954
 						
5955 5955
 						$event_starttimes = implode(",", $times);
@@ -5959,7 +5959,7 @@  discard block
 block discarded – undo
5959 5959
 						$times = array();
5960 5960
 						
5961 5961
 						foreach ($recurring_data['endtimes'] as $time) {
5962
-							$times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00';
5962
+							$times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
5963 5963
 						}
5964 5964
 						
5965 5965
 						$event_endtimes = implode(",", $times);
@@ -5971,8 +5971,8 @@  discard block
 block discarded – undo
5971 5971
 					}
5972 5972
 				}
5973 5973
 			} else {
5974
-				$event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1;
5975
-				$recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5974
+				$event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1;
5975
+				$recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1;
5976 5976
 				
5977 5977
 				if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
5978 5978
 					$week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
@@ -5988,11 +5988,11 @@  discard block
 block discarded – undo
5988 5988
 				}
5989 5989
 				
5990 5990
 				$recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
5991
-				if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
5992
-					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : '';
5991
+				if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
5992
+					$recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
5993 5993
 					$max_recurring_count = empty($recurring_end_date) ? 1 : '';
5994 5994
 				} else {
5995
-					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1);
5995
+					$max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1);
5996 5996
 				}
5997 5997
 			}
5998 5998
 		}
@@ -6056,9 +6056,9 @@  discard block
 block discarded – undo
6056 6056
  * @return array Event data array.
6057 6057
  */
6058 6058
 function geodir_imex_process_event_data($gd_post) {
6059
-	$recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post );
6059
+	$recurring_pkg = geodir_event_recurring_pkg((object) $gd_post);
6060 6060
 
6061
-	$is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true;
6061
+	$is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true;
6062 6062
 	$event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_imex_get_date_ymd($gd_post['event_date']) : '';
6063 6063
 	$event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_imex_get_date_ymd($gd_post['event_enddate']) : $event_date;
6064 6064
 	$all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false;
@@ -6105,17 +6105,17 @@  discard block
 block discarded – undo
6105 6105
 				$event_recurring_dates = implode(",", $event_recurring_dates);
6106 6106
 			}
6107 6107
 		} else {
6108
-			$duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1;
6109
-			$repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1;
6110
-			$max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1;
6111
-			$repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : '';
6108
+			$duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1;
6109
+			$repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1;
6110
+			$max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1;
6111
+			$repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : '';
6112 6112
 			
6113 6113
 			$repeat_end_type = $repeat_end != '' ? 1 : 0;
6114 6114
 			$max_repeat = $repeat_end != '' ? '' : $max_repeat;
6115 6115
 			
6116 6116
 			$week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
6117 6117
 			
6118
-			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
6118
+			$a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
6119 6119
 			$repeat_days = array();
6120 6120
 			if (!empty($a_repeat_days)) {
6121 6121
 				foreach ($a_repeat_days as $repeat_day) {
@@ -6133,7 +6133,7 @@  discard block
 block discarded – undo
6133 6133
 			$repeat_weeks = array();
6134 6134
 			if (!empty($a_repeat_weeks)) {
6135 6135
 				foreach ($a_repeat_weeks as $repeat_week) {
6136
-					$repeat_weeks[] = (int)$repeat_week;
6136
+					$repeat_weeks[] = (int) $repeat_week;
6137 6137
 				}
6138 6138
 				
6139 6139
 				$repeat_weeks = array_unique($repeat_weeks);
@@ -6197,7 +6197,7 @@  discard block
 block discarded – undo
6197 6197
 
6198 6198
     $page_found = $wpdb->get_var(
6199 6199
         $wpdb->prepare(
6200
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;",
6200
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;",
6201 6201
             array($slug)
6202 6202
         )
6203 6203
     );
@@ -6252,7 +6252,7 @@  discard block
 block discarded – undo
6252 6252
  */
6253 6253
 function geodir_admin_upgrade_notice() {
6254 6254
     $class = "error";
6255
-    $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
6255
+    $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
6256 6256
     echo"<div class=\"$class\"> <p>$message</p></div>";
6257 6257
 }
6258 6258
 
@@ -6264,7 +6264,7 @@  discard block
 block discarded – undo
6264 6264
  * @param (object) $r
6265 6265
  * @return (string) $output
6266 6266
  */
6267
-function geodire_admin_upgrade_notice( $plugin_data, $r )
6267
+function geodire_admin_upgrade_notice($plugin_data, $r)
6268 6268
 {
6269 6269
     // readme contents
6270 6270
     $args = array(
@@ -6272,7 +6272,7 @@  discard block
 block discarded – undo
6272 6272
         'redirection' => 5
6273 6273
     );
6274 6274
     $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt";
6275
-    $data       = wp_remote_get( $url, $args );
6275
+    $data = wp_remote_get($url, $args);
6276 6276
 
6277 6277
     if (!is_wp_error($data) && $data['response']['code'] == 200) {
6278 6278
 
@@ -6287,20 +6287,20 @@  discard block
 block discarded – undo
6287 6287
 function geodir_in_plugin_update_message($content) {
6288 6288
     // Output Upgrade Notice
6289 6289
     $matches        = null;
6290
-    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis';
6290
+    $regexp         = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis';
6291 6291
     $upgrade_notice = '';
6292
-    if ( preg_match( $regexp, $content, $matches ) ) {
6293
-        if(empty($matches)){return;}
6292
+    if (preg_match($regexp, $content, $matches)) {
6293
+        if (empty($matches)) {return; }
6294 6294
 
6295
-        $version = trim( $matches[1] );
6296
-        if($version && $version>GEODIRECTORY_VERSION){
6295
+        $version = trim($matches[1]);
6296
+        if ($version && $version > GEODIRECTORY_VERSION) {
6297 6297
 
6298 6298
 
6299
-        $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
6300
-        if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
6299
+        $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
6300
+        if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
6301 6301
             $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">';
6302
-            foreach ( $notices as $index => $line ) {
6303
-                $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
6302
+            foreach ($notices as $index => $line) {
6303
+                $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
6304 6304
             }
6305 6305
             $upgrade_notice .= '</div> ';
6306 6306
         }
@@ -6324,7 +6324,7 @@  discard block
 block discarded – undo
6324 6324
 		$default_language = $sitepress->get_default_language();
6325 6325
 		if ($current_language != 'all' && $current_language != $default_language) {
6326 6326
 	?>
6327
-	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
6327
+	<div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
6328 6328
 	<?php
6329 6329
 		}
6330 6330
 	}
@@ -6339,7 +6339,7 @@  discard block
 block discarded – undo
6339 6339
  * @param array Listing statuses to be skipped.
6340 6340
  */
6341 6341
 function geodir_imex_export_skip_statuses() {
6342
-    $statuses = array( 'trash', 'auto-draft' );
6342
+    $statuses = array('trash', 'auto-draft');
6343 6343
     
6344 6344
     /**
6345 6345
      * Filter the statuses to skip during GD export listings.
@@ -6349,7 +6349,7 @@  discard block
 block discarded – undo
6349 6349
      *
6350 6350
      * @param array $statuses Listing statuses to be skipped.
6351 6351
      */
6352
-    $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses );
6352
+    $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
6353 6353
      
6354 6354
     return $statuses;
6355 6355
 }
@@ -6389,16 +6389,16 @@  discard block
 block discarded – undo
6389 6389
 function geodir_imex_get_filter_where($where = '', $post_type = '') {
6390 6390
     global $wpdb;
6391 6391
     
6392
-    $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL;
6392
+    $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL;
6393 6393
     
6394
-    if ( !empty( $filters ) ) {
6395
-        foreach ( $filters as $field => $value ) {
6394
+    if (!empty($filters)) {
6395
+        foreach ($filters as $field => $value) {
6396 6396
             switch ($field) {
6397 6397
                 case 'start_date':
6398
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'";
6398
+                    $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'";
6399 6399
                 break;
6400 6400
                 case 'end_date':
6401
-                    $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'";
6401
+                    $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'";
6402 6402
                 break;
6403 6403
             }
6404 6404
         }
@@ -6410,25 +6410,25 @@  discard block
 block discarded – undo
6410 6410
 add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
6411 6411
 
6412 6412
 
6413
-function geodir_fix_for_primer_theme(){
6414
-    if(!defined( 'PRIMER_VERSION' )){return;}
6413
+function geodir_fix_for_primer_theme() {
6414
+    if (!defined('PRIMER_VERSION')) {return; }
6415 6415
     global $pagenow;
6416 6416
 
6417
-    if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) )  ){
6417
+    if (('post.php' === $pagenow || 'post-new.php' === $pagenow) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']))) {
6418 6418
 
6419
-        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] );
6419
+        $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type($_GET['post']);
6420 6420
 
6421 6421
         $post_types = geodir_get_posttypes();
6422
-        if ($post_type && in_array($post_type, $post_types) ) {
6422
+        if ($post_type && in_array($post_type, $post_types)) {
6423 6423
             global $primer_customizer_layouts;
6424
-            remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10);
6424
+            remove_action('add_meta_boxes', array($primer_customizer_layouts, 'add_meta_box'), 10);
6425 6425
         }
6426 6426
     }
6427 6427
 
6428 6428
 }
6429 6429
 
6430
-if(is_admin()){
6431
-    add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);  
6430
+if (is_admin()) {
6431
+    add_action('add_meta_boxes', 'geodir_fix_for_primer_theme', 0);  
6432 6432
 }
6433 6433
 
6434 6434
 
@@ -6561,27 +6561,27 @@  discard block
 block discarded – undo
6561 6561
 
6562 6562
 function geodir_ga_activation_url() {
6563 6563
 
6564
-    return add_query_arg( array(
6564
+    return add_query_arg(array(
6565 6565
         'next'          => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
6566 6566
         'scope'         => GEODIR_GA_SCOPE,
6567 6567
         'response_type' => 'code',
6568 6568
         'redirect_uri'  => GEODIR_GA_REDIRECT,
6569 6569
         'client_id'     => GEODIR_GA_CLIENTID,
6570
-    ), 'https://accounts.google.com/o/oauth2/auth' );
6570
+    ), 'https://accounts.google.com/o/oauth2/auth');
6571 6571
 
6572 6572
     return $url;
6573 6573
 }
6574 6574
 
6575
-function geodir_gd_accounts(){
6575
+function geodir_gd_accounts() {
6576 6576
     $accounts = array();
6577
-    $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true );
6578
-    if($useAuth){
6577
+    $useAuth = (get_option('geodir_ga_auth_code') == '' ? false : true);
6578
+    if ($useAuth) {
6579 6579
         $accounts = geodir_ga_get_analytics_accounts();
6580
-        if(is_array($accounts)){
6581
-            $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
6582
-        }elseif(get_option('geodir_ga_account_id')){
6580
+        if (is_array($accounts)) {
6581
+            $accounts = array_merge(array(__('Select Account', 'geodirectory')), $accounts);
6582
+        }elseif (get_option('geodir_ga_account_id')) {
6583 6583
             $accounts = array();
6584
-            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
6584
+            $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required', 'geodirectory').' ('.get_option('geodir_ga_account_id').')';
6585 6585
         }
6586 6586
     }
6587 6587
     return $accounts;
@@ -6591,32 +6591,32 @@  discard block
 block discarded – undo
6591 6591
 {
6592 6592
     $accounts = array();
6593 6593
 
6594
-    if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
6594
+    if (get_option('geodir_ga_auth_token') === false) {update_option('geodir_ga_auth_token', ''); }
6595 6595
 
6596 6596
 
6597
-    if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
6597
+    if (get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])) {
6598 6598
         return get_option('geodir_gd_uids');
6599 6599
     }
6600 6600
 
6601 6601
     
6602 6602
     # Create a new Gdata call
6603
-    if ( trim(get_option('geodir_ga_auth_code')) != '' )
6603
+    if (trim(get_option('geodir_ga_auth_code')) != '')
6604 6604
         $stats = new GDGoogleAnalyticsStats();
6605 6605
     else
6606 6606
         return false;
6607 6607
 
6608 6608
     # Check if Google sucessfully logged in
6609
-    if ( ! $stats->checkLogin() )
6609
+    if (!$stats->checkLogin())
6610 6610
         return false;
6611 6611
 
6612 6612
     # Get a list of accounts
6613 6613
     $accounts = $stats->getAllProfiles();
6614 6614
 
6615
-    natcasesort ($accounts);
6615
+    natcasesort($accounts);
6616 6616
 
6617 6617
     # Return the account array if there are accounts
6618
-    if ( count($accounts) > 0 ){
6619
-        update_option('geodir_gd_uids',$accounts);
6618
+    if (count($accounts) > 0) {
6619
+        update_option('geodir_gd_uids', $accounts);
6620 6620
         return $accounts;
6621 6621
     }
6622 6622
     else
Please login to merge, or discard this patch.