Test Failed
Pull Request — master (#429)
by Kiran
18:41
created
geodirectory_hooks_actions.php 2 patches
Indentation   +1208 added lines, -1208 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  */
20 20
 function geodir_get_ajax_url()
21 21
 {
22
-    return admin_url('admin-ajax.php?action=geodir_ajax_action');
22
+	return admin_url('admin-ajax.php?action=geodir_ajax_action');
23 23
 }
24 24
 
25 25
 /////////////////////
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 add_filter('query_vars', 'geodir_add_geodir_page_var');
88 88
 add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
89 89
 if (get_option('permalink_structure') != '')
90
-    add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
90
+	add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
91 91
 
92 92
 add_filter('parse_query', 'geodir_modified_query');
93 93
 
@@ -154,14 +154,14 @@  discard block
 block discarded – undo
154 154
 /* POST AND LOOP ACTIONS */
155 155
 ////////////////////////
156 156
 if (!is_admin()) {
157
-    add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtual page from everywhere
158
-    add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
159
-    /** Exclude Virtual Pages From Pages List **/
160
-    add_action('pre_get_posts', 'set_listing_request', 0);
161
-    add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
162
-    add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
163
-    add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
164
-    add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
157
+	add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtual page from everywhere
158
+	add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
159
+	/** Exclude Virtual Pages From Pages List **/
160
+	add_action('pre_get_posts', 'set_listing_request', 0);
161
+	add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
162
+	add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
163
+	add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
164
+	add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
165 165
 }
166 166
 
167 167
 
@@ -223,12 +223,12 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_unset_prev_theme_nav_location($newname)
225 225
 {
226
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
227
-    if ($geodir_theme_location) {
228
-        update_option('geodir_theme_location_nav', $geodir_theme_location);
229
-    } else {
230
-        update_option('geodir_theme_location_nav', '');
231
-    }
226
+	$geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
227
+	if ($geodir_theme_location) {
228
+		update_option('geodir_theme_location_nav', $geodir_theme_location);
229
+	} else {
230
+		update_option('geodir_theme_location_nav', '');
231
+	}
232 232
 }
233 233
 
234 234
 /// add action for theme switch to blank previous theme navigation location setting
@@ -249,42 +249,42 @@  discard block
 block discarded – undo
249 249
  */
250 250
 function geodir_add_post_filters()
251 251
 {
252
-    /**
253
-     * Contains all function for filtering listing.
254
-     *
255
-     * @since 1.0.0
256
-     * @package GeoDirectory
257
-     */
258
-    include_once('geodirectory-functions/listing_filters.php');
252
+	/**
253
+	 * Contains all function for filtering listing.
254
+	 *
255
+	 * @since 1.0.0
256
+	 * @package GeoDirectory
257
+	 */
258
+	include_once('geodirectory-functions/listing_filters.php');
259 259
     
260
-    // Theme My Login compatibility fix
261
-    if ( isset( $_REQUEST['geodir_search'] ) && class_exists( 'Theme_My_Login' ) ) {
262
-        remove_action( 'pre_get_posts', array( Theme_My_Login::get_object(), 'pre_get_posts' ) );
263
-    }
260
+	// Theme My Login compatibility fix
261
+	if ( isset( $_REQUEST['geodir_search'] ) && class_exists( 'Theme_My_Login' ) ) {
262
+		remove_action( 'pre_get_posts', array( Theme_My_Login::get_object(), 'pre_get_posts' ) );
263
+	}
264 264
     
265
-    if ( isset( $_REQUEST['geodir_search'] ) ) {
266
-        add_filter( 'geodir_filter_widget_listings_fields', 'geodir_search_widget_location_filter_fields', 100, 3 );
267
-        add_filter( 'geodir_filter_widget_listings_orderby', 'geodir_search_widget_location_filter_orderby', 100, 3 );
268
-    }
265
+	if ( isset( $_REQUEST['geodir_search'] ) ) {
266
+		add_filter( 'geodir_filter_widget_listings_fields', 'geodir_search_widget_location_filter_fields', 100, 3 );
267
+		add_filter( 'geodir_filter_widget_listings_orderby', 'geodir_search_widget_location_filter_orderby', 100, 3 );
268
+	}
269 269
 }
270 270
 
271 271
 
272 272
 if (!function_exists('geodir_init_defaults')) {
273
-    /**
274
-     * Calls the function to register the GeoDirectory default CPT and taxonomies.
275
-     *
276
-     * @since 1.0.0
277
-     * @package GeoDirectory
278
-     */
279
-    function geodir_init_defaults()
280
-    {
281
-        if (function_exists('geodir_register_defaults')) {
273
+	/**
274
+	 * Calls the function to register the GeoDirectory default CPT and taxonomies.
275
+	 *
276
+	 * @since 1.0.0
277
+	 * @package GeoDirectory
278
+	 */
279
+	function geodir_init_defaults()
280
+	{
281
+		if (function_exists('geodir_register_defaults')) {
282 282
 
283
-            geodir_register_defaults();
283
+			geodir_register_defaults();
284 284
 
285
-        }
285
+		}
286 286
 
287
-    }
287
+	}
288 288
 }
289 289
 
290 290
 
@@ -306,26 +306,26 @@  discard block
 block discarded – undo
306 306
 // CALLED ON 'sidebars_widgets' FILTER
307 307
 
308 308
 if (!function_exists('geodir_restrict_widget')) {
309
-    /**
310
-     * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
311
-     *
312
-     * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
313
-     * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
314
-     * @since 1.0.0
315
-     * @package GeoDirectory
316
-     */
317
-    function geodir_restrict_widget()
318
-    {
319
-        global $is_listing, $is_single_place;
309
+	/**
310
+	 * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
311
+	 *
312
+	 * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
313
+	 * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
314
+	 * @since 1.0.0
315
+	 * @package GeoDirectory
316
+	 */
317
+	function geodir_restrict_widget()
318
+	{
319
+		global $is_listing, $is_single_place;
320 320
 
321
-        // set is listing	
322
-        (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
321
+		// set is listing	
322
+		(geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
323 323
 
324
-        // set is single place
325
-        (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
324
+		// set is single place
325
+		(geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
326 326
 
327 327
 
328
-    }
328
+	}
329 329
 }
330 330
 
331 331
 
@@ -346,31 +346,31 @@  discard block
 block discarded – undo
346 346
  */
347 347
 function geodir_detail_page_sidebar_content_sorting()
348 348
 {
349
-    $arr_detail_page_sidebar_content =
350
-        /**
351
-         * An array of functions to be called to be displayed on the details (post) page sidebar.
352
-         *
353
-         * This filter can be used to remove sections of the details page sidebar,
354
-         * add new sections or rearrange the order of the sections.
355
-         *
356
-         * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
357
-         * @since 1.0.0
358
-         */
359
-        apply_filters('geodir_detail_page_sidebar_content',
360
-            array('geodir_social_sharing_buttons',
361
-                'geodir_detail_page_google_analytics',
362
-                'geodir_edit_post_link',
363
-                'geodir_detail_page_review_rating',
364
-                'geodir_detail_page_more_info'
365
-            ) // end of array 
366
-        ); // end of apply filter
367
-    if (!empty($arr_detail_page_sidebar_content)) {
368
-        foreach ($arr_detail_page_sidebar_content as $content_function) {
369
-            if (function_exists($content_function)) {
370
-                add_action('geodir_detail_page_sidebar', $content_function);
371
-            }
372
-        }
373
-    }
349
+	$arr_detail_page_sidebar_content =
350
+		/**
351
+		 * An array of functions to be called to be displayed on the details (post) page sidebar.
352
+		 *
353
+		 * This filter can be used to remove sections of the details page sidebar,
354
+		 * add new sections or rearrange the order of the sections.
355
+		 *
356
+		 * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
357
+		 * @since 1.0.0
358
+		 */
359
+		apply_filters('geodir_detail_page_sidebar_content',
360
+			array('geodir_social_sharing_buttons',
361
+				'geodir_detail_page_google_analytics',
362
+				'geodir_edit_post_link',
363
+				'geodir_detail_page_review_rating',
364
+				'geodir_detail_page_more_info'
365
+			) // end of array 
366
+		); // end of apply filter
367
+	if (!empty($arr_detail_page_sidebar_content)) {
368
+		foreach ($arr_detail_page_sidebar_content as $content_function) {
369
+			if (function_exists($content_function)) {
370
+				add_action('geodir_detail_page_sidebar', $content_function);
371
+			}
372
+		}
373
+	}
374 374
 }
375 375
 
376 376
 add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
@@ -385,14 +385,14 @@  discard block
 block discarded – undo
385 385
  */
386 386
 function geodir_add_to_favourite_link()
387 387
 {
388
-    global $post, $preview;
389
-    if (!$preview && geodir_is_page('detail')) {
390
-        ?>
388
+	global $post, $preview;
389
+	if (!$preview && geodir_is_page('detail')) {
390
+		?>
391 391
         <p class="edit_link">
392 392
             <?php geodir_favourite_html($post->post_author, $post->ID); ?>
393 393
         </p>
394 394
     <?php
395
-    }
395
+	}
396 396
 }
397 397
 
398 398
 /**
@@ -406,41 +406,41 @@  discard block
 block discarded – undo
406 406
  */
407 407
 function geodir_social_sharing_buttons()
408 408
 {
409
-    global $preview;
410
-    ob_start(); // Start  buffering;
411
-    /**
412
-     * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
413
-     *
414
-     * @since 1.0.0
415
-     */
416
-    do_action('geodir_before_social_sharing_buttons');
417
-    if (!$preview) {
418
-        ?>
409
+	global $preview;
410
+	ob_start(); // Start  buffering;
411
+	/**
412
+	 * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
413
+	 *
414
+	 * @since 1.0.0
415
+	 */
416
+	do_action('geodir_before_social_sharing_buttons');
417
+	if (!$preview) {
418
+		?>
419 419
         <div class="likethis">
420 420
             <?php geodir_twitter_tweet_button(); ?>
421 421
             <?php geodir_fb_like_button(); ?>
422 422
             <?php geodir_google_plus_button(); ?>
423 423
         </div>
424 424
     <?php
425
-    }// end of if, if its a preview or not
426
-
427
-    /**
428
-     * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
429
-     *
430
-     * @since 1.0.0
431
-     */
432
-    do_action('geodir_after_social_sharing_buttons');
433
-    $content_html = ob_get_clean();
434
-    if (trim($content_html) != '')
435
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
436
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
437
-        /**
438
-         * Filter the geodir_social_sharing_buttons() function content.
439
-         *
440
-         * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
441
-         */
442
-        echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
443
-    }
425
+	}// end of if, if its a preview or not
426
+
427
+	/**
428
+	 * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
429
+	 *
430
+	 * @since 1.0.0
431
+	 */
432
+	do_action('geodir_after_social_sharing_buttons');
433
+	$content_html = ob_get_clean();
434
+	if (trim($content_html) != '')
435
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
436
+	if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
437
+		/**
438
+		 * Filter the geodir_social_sharing_buttons() function content.
439
+		 *
440
+		 * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
441
+		 */
442
+		echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
443
+	}
444 444
 
445 445
 
446 446
 }
@@ -458,46 +458,46 @@  discard block
 block discarded – undo
458 458
  */
459 459
 function geodir_edit_post_link()
460 460
 {
461
-    global $post, $preview;
462
-    ob_start(); // Start buffering;
463
-    /**
464
-     * This is called before the edit post link html in the function geodir_edit_post_link()
465
-     *
466
-     * @since 1.0.0
467
-     */
468
-    do_action('geodir_before_edit_post_link');
469
-    if (!$preview) {
470
-        $is_current_user_owner = geodir_listing_belong_to_current_user();
461
+	global $post, $preview;
462
+	ob_start(); // Start buffering;
463
+	/**
464
+	 * This is called before the edit post link html in the function geodir_edit_post_link()
465
+	 *
466
+	 * @since 1.0.0
467
+	 */
468
+	do_action('geodir_before_edit_post_link');
469
+	if (!$preview) {
470
+		$is_current_user_owner = geodir_listing_belong_to_current_user();
471 471
         
472
-        if ($is_current_user_owner) {
473
-            $post_id = $post->ID;
472
+		if ($is_current_user_owner) {
473
+			$post_id = $post->ID;
474 474
             
475
-            if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
476
-                $post_id = (int)$_REQUEST['pid'];
477
-            }
475
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
476
+				$post_id = (int)$_REQUEST['pid'];
477
+			}
478 478
 
479
-            $postlink = get_permalink(geodir_add_listing_page_id());
480
-            $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
481
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
482
-        }
483
-    }// end of if, if its a preview or not
484
-    /**
485
-     * This is called after the edit post link html in the function geodir_edit_post_link()
486
-     *
487
-     * @since 1.0.0
488
-     */
489
-    do_action('geodir_after_edit_post_link');
490
-    $content_html = ob_get_clean();
491
-    if (trim($content_html) != '')
492
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
493
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
494
-        /**
495
-         * Filter the geodir_edit_post_link() function content.
496
-         *
497
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
498
-         */
499
-        echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
500
-    }
479
+			$postlink = get_permalink(geodir_add_listing_page_id());
480
+			$editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
481
+			echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
482
+		}
483
+	}// end of if, if its a preview or not
484
+	/**
485
+	 * This is called after the edit post link html in the function geodir_edit_post_link()
486
+	 *
487
+	 * @since 1.0.0
488
+	 */
489
+	do_action('geodir_after_edit_post_link');
490
+	$content_html = ob_get_clean();
491
+	if (trim($content_html) != '')
492
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
493
+	if ((int)get_option('geodir_disable_user_links_section') != 1) {
494
+		/**
495
+		 * Filter the geodir_edit_post_link() function content.
496
+		 *
497
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
498
+		 */
499
+		echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
500
+	}
501 501
 }
502 502
 
503 503
 /**
@@ -511,42 +511,42 @@  discard block
 block discarded – undo
511 511
  */
512 512
 function geodir_detail_page_google_analytics()
513 513
 {
514
-    global $post,$preview;
515
-    if($preview){return '';}
516
-    $package_info = array();
517
-    $package_info = geodir_post_package_info($package_info, $post);
514
+	global $post,$preview;
515
+	if($preview){return '';}
516
+	$package_info = array();
517
+	$package_info = geodir_post_package_info($package_info, $post);
518 518
 
519
-    $id = trim(get_option('geodir_ga_account_id'));
519
+	$id = trim(get_option('geodir_ga_account_id'));
520 520
 
521
-    if (!$id) {
522
-        return; //if no Google Analytics ID then bail.
523
-    }
521
+	if (!$id) {
522
+		return; //if no Google Analytics ID then bail.
523
+	}
524 524
 
525
-    ob_start(); // Start buffering;
526
-    /**
527
-     * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
528
-     *
529
-     * @since 1.0.0
530
-     */
531
-    do_action('geodir_before_google_analytics');
525
+	ob_start(); // Start buffering;
526
+	/**
527
+	 * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
528
+	 *
529
+	 * @since 1.0.0
530
+	 */
531
+	do_action('geodir_before_google_analytics');
532 532
     
533
-    $refresh_time = get_option('geodir_ga_refresh_time', 5);
534
-    /**
535
-     * Filter the time interval to check & refresh new users results.
536
-     *
537
-     * @since 1.5.9
538
-     *
539
-     * @param int $refresh_time Time interval to check & refresh new users results.
540
-     */
541
-    $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
542
-    $refresh_time = absint($refresh_time * 1000);
533
+	$refresh_time = get_option('geodir_ga_refresh_time', 5);
534
+	/**
535
+	 * Filter the time interval to check & refresh new users results.
536
+	 *
537
+	 * @since 1.5.9
538
+	 *
539
+	 * @param int $refresh_time Time interval to check & refresh new users results.
540
+	 */
541
+	$refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
542
+	$refresh_time = absint($refresh_time * 1000);
543 543
     
544
-    $hide_refresh = get_option('geodir_ga_auto_refresh');
544
+	$hide_refresh = get_option('geodir_ga_auto_refresh');
545 545
     
546
-    $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
547
-    if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
548
-        $page_url = urlencode($_SERVER['REQUEST_URI']);
549
-        ?>
546
+	$auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
547
+	if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
548
+		$page_url = urlencode($_SERVER['REQUEST_URI']);
549
+		?>
550 550
         <script type="text/javascript">
551 551
             var gd_gaTimeOut;
552 552
             var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
@@ -798,15 +798,15 @@  discard block
 block discarded – undo
798 798
                     var labels = results[1].rows.map(function(row) { return +row[0]; });
799 799
 
800 800
                     <?php
801
-                    // Here we list the shorthand days of the week so it can be used in translation.
802
-                    __("Mon",'geodirectory');
803
-                    __("Tue",'geodirectory');
804
-                    __("Wed",'geodirectory');
805
-                    __("Thu",'geodirectory');
806
-                    __("Fri",'geodirectory');
807
-                    __("Sat",'geodirectory');
808
-                    __("Sun",'geodirectory');
809
-                    ?>
801
+					// Here we list the shorthand days of the week so it can be used in translation.
802
+					__("Mon",'geodirectory');
803
+					__("Tue",'geodirectory');
804
+					__("Wed",'geodirectory');
805
+					__("Thu",'geodirectory');
806
+					__("Fri",'geodirectory');
807
+					__("Sat",'geodirectory');
808
+					__("Sun",'geodirectory');
809
+					?>
810 810
 
811 811
                     labels = [
812 812
                         "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
@@ -1055,24 +1055,24 @@  discard block
 block discarded – undo
1055 1055
         </span>
1056 1056
 
1057 1057
     <?php
1058
-    }
1059
-    /**
1060
-     * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1061
-     *
1062
-     * @since 1.0.0
1063
-     */
1064
-    do_action('geodir_after_google_analytics');
1065
-    $content_html = ob_get_clean();
1066
-    if (trim($content_html) != '')
1067
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1068
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1069
-        /**
1070
-         * Filter the geodir_edit_post_link() function content.
1071
-         *
1072
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
1073
-         */
1074
-        echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1075
-    }
1058
+	}
1059
+	/**
1060
+	 * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1061
+	 *
1062
+	 * @since 1.0.0
1063
+	 */
1064
+	do_action('geodir_after_google_analytics');
1065
+	$content_html = ob_get_clean();
1066
+	if (trim($content_html) != '')
1067
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1068
+	if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1069
+		/**
1070
+		 * Filter the geodir_edit_post_link() function content.
1071
+		 *
1072
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
1073
+		 */
1074
+		echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1075
+	}
1076 1076
 }
1077 1077
 
1078 1078
 /**
@@ -1089,94 +1089,94 @@  discard block
 block discarded – undo
1089 1089
  */
1090 1090
 function geodir_detail_page_review_rating()
1091 1091
 {
1092
-    global $post, $preview, $post_images;
1092
+	global $post, $preview, $post_images;
1093 1093
     
1094
-    if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
1095
-        return;
1096
-    }
1097
-    ob_start(); // Start  buffering;
1098
-    /**
1099
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1100
-     *
1101
-     * This is called outside the check for an actual rating and the check for preview page.
1102
-     *
1103
-     * @since 1.0.0
1104
-     */
1105
-    do_action('geodir_before_detail_page_review_rating');
1106
-
1107
-    $comment_count = geodir_get_review_count_total($post->ID);
1108
-    $post_avgratings = geodir_get_post_rating($post->ID);
1109
-
1110
-    if ($post_avgratings != 0 && !$preview) {
1111
-        /**
1112
-         * This is called before the rating html in the function geodir_detail_page_review_rating().
1113
-         *
1114
-         * This is called inside the check for an actual rating and the check for preview page.
1115
-         *
1116
-         * @since 1.0.0
1117
-         * @param float $post_avgratings Average rating for the current post.
1118
-         * @param int $post->ID Current post ID.
1119
-         */
1120
-        do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1121
-
1122
-        $html = '<p style=" float:left;">';
1123
-        $html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1124
-        $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1125
-        $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1094
+	if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
1095
+		return;
1096
+	}
1097
+	ob_start(); // Start  buffering;
1098
+	/**
1099
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1100
+	 *
1101
+	 * This is called outside the check for an actual rating and the check for preview page.
1102
+	 *
1103
+	 * @since 1.0.0
1104
+	 */
1105
+	do_action('geodir_before_detail_page_review_rating');
1106
+
1107
+	$comment_count = geodir_get_review_count_total($post->ID);
1108
+	$post_avgratings = geodir_get_post_rating($post->ID);
1109
+
1110
+	if ($post_avgratings != 0 && !$preview) {
1111
+		/**
1112
+		 * This is called before the rating html in the function geodir_detail_page_review_rating().
1113
+		 *
1114
+		 * This is called inside the check for an actual rating and the check for preview page.
1115
+		 *
1116
+		 * @since 1.0.0
1117
+		 * @param float $post_avgratings Average rating for the current post.
1118
+		 * @param int $post->ID Current post ID.
1119
+		 */
1120
+		do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1121
+
1122
+		$html = '<p style=" float:left;">';
1123
+		$html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1124
+		$html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1125
+		$post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1126 1126
        
1127 1127
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1128 1128
 	   
1129 1129
 	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
1130 1130
 
1131
-        $html .= '<span class="item">';
1132
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1131
+		$html .= '<span class="item">';
1132
+		$html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1133 1133
 
1134
-        if ($post_images) {
1135
-            foreach ($post_images as $img) {
1136
-                $post_img = $img->src;
1137
-                break;
1138
-            }
1139
-        }
1140
-
1141
-        if (isset($post_img) && $post_img) {
1142
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1143
-        }
1144
-
1145
-        $html .= '</span>';
1146
-
1147
-        echo $html .= '</div>';
1148
-        /**
1149
-         * This is called after the rating html in the function geodir_detail_page_review_rating().
1150
-         *
1151
-         * This is called inside the check for an actual rating and the check for preview page.
1152
-         *
1153
-         * @since 1.0.0
1154
-         * @param float $post_avgratings Average rating for the current post.
1155
-         * @param int $post->ID Current post ID.
1156
-         */
1157
-        do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1158
-    }
1159
-    /**
1160
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1161
-     *
1162
-     * This is called outside the check for an actual rating and the check for preview page.
1163
-     *
1164
-     * @since 1.0.0
1165
-     */
1166
-    do_action('geodir_after_detail_page_review_rating');
1167
-    $content_html = ob_get_clean();
1168
-    if (trim($content_html) != '') {
1169
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1170
-    }
1171
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1172
-        /**
1173
-         * Filter the geodir_detail_page_review_rating() function content.
1174
-         *
1175
-         * @since 1.0.0
1176
-         * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1177
-         */
1178
-        echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1179
-    }
1134
+		if ($post_images) {
1135
+			foreach ($post_images as $img) {
1136
+				$post_img = $img->src;
1137
+				break;
1138
+			}
1139
+		}
1140
+
1141
+		if (isset($post_img) && $post_img) {
1142
+			$html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1143
+		}
1144
+
1145
+		$html .= '</span>';
1146
+
1147
+		echo $html .= '</div>';
1148
+		/**
1149
+		 * This is called after the rating html in the function geodir_detail_page_review_rating().
1150
+		 *
1151
+		 * This is called inside the check for an actual rating and the check for preview page.
1152
+		 *
1153
+		 * @since 1.0.0
1154
+		 * @param float $post_avgratings Average rating for the current post.
1155
+		 * @param int $post->ID Current post ID.
1156
+		 */
1157
+		do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1158
+	}
1159
+	/**
1160
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1161
+	 *
1162
+	 * This is called outside the check for an actual rating and the check for preview page.
1163
+	 *
1164
+	 * @since 1.0.0
1165
+	 */
1166
+	do_action('geodir_after_detail_page_review_rating');
1167
+	$content_html = ob_get_clean();
1168
+	if (trim($content_html) != '') {
1169
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1170
+	}
1171
+	if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1172
+		/**
1173
+		 * Filter the geodir_detail_page_review_rating() function content.
1174
+		 *
1175
+		 * @since 1.0.0
1176
+		 * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1177
+		 */
1178
+		echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1179
+	}
1180 1180
 }
1181 1181
 
1182 1182
 /**
@@ -1188,35 +1188,35 @@  discard block
 block discarded – undo
1188 1188
  */
1189 1189
 function geodir_detail_page_more_info()
1190 1190
 {
1191
-    ob_start(); // Start  buffering;
1192
-    /**
1193
-     * This is called before the info section html.
1194
-     *
1195
-     * @since 1.0.0
1196
-     */
1197
-    do_action('geodir_before_detail_page_more_info');
1198
-    if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1199
-        echo $geodir_post_detail_fields;
1200
-    }
1201
-    /**
1202
-     * This is called after the info section html.
1203
-     *
1204
-     * @since 1.0.0
1205
-     */
1206
-    do_action('geodir_after_detail_page_more_info');
1207
-
1208
-    $content_html = ob_get_clean();
1209
-    if (trim($content_html) != '')
1210
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1211
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1212
-        /**
1213
-         * Filter the output html for function geodir_detail_page_more_info().
1214
-         *
1215
-         * @since 1.0.0
1216
-         * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1217
-         */
1218
-        echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1219
-    }
1191
+	ob_start(); // Start  buffering;
1192
+	/**
1193
+	 * This is called before the info section html.
1194
+	 *
1195
+	 * @since 1.0.0
1196
+	 */
1197
+	do_action('geodir_before_detail_page_more_info');
1198
+	if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1199
+		echo $geodir_post_detail_fields;
1200
+	}
1201
+	/**
1202
+	 * This is called after the info section html.
1203
+	 *
1204
+	 * @since 1.0.0
1205
+	 */
1206
+	do_action('geodir_after_detail_page_more_info');
1207
+
1208
+	$content_html = ob_get_clean();
1209
+	if (trim($content_html) != '')
1210
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1211
+	if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1212
+		/**
1213
+		 * Filter the output html for function geodir_detail_page_more_info().
1214
+		 *
1215
+		 * @since 1.0.0
1216
+		 * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1217
+		 */
1218
+		echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1219
+	}
1220 1220
 }
1221 1221
 
1222 1222
 
@@ -1230,15 +1230,15 @@  discard block
 block discarded – undo
1230 1230
  */
1231 1231
 function geodir_localize_all_js_msg()
1232 1232
 {// check_ajax_referer function is used to make sure no files are uploaded remotely but it will fail if used between https and non https so we do the check below of the urls
1233
-    if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1234
-        $ajax_url = admin_url('admin-ajax.php');
1235
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1236
-        $ajax_url = admin_url('admin-ajax.php');
1237
-    } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1238
-        $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1239
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1240
-        $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1241
-    }
1233
+	if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1234
+		$ajax_url = admin_url('admin-ajax.php');
1235
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1236
+		$ajax_url = admin_url('admin-ajax.php');
1237
+	} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1238
+		$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1239
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1240
+		$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1241
+	}
1242 1242
 	
1243 1243
 	/**
1244 1244
 	 * Filter the allowed image type extensions for post images.
@@ -1248,60 +1248,60 @@  discard block
 block discarded – undo
1248 1248
 	 */
1249 1249
 	$allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
1250 1250
 	
1251
-    $default_marker_icon = get_option('geodir_default_marker_icon');
1252
-    $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1253
-    $default_marker_width = $default_marker_size['w'];
1254
-    $default_marker_height = $default_marker_size['h'];
1251
+	$default_marker_icon = get_option('geodir_default_marker_icon');
1252
+	$default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1253
+	$default_marker_width = $default_marker_size['w'];
1254
+	$default_marker_height = $default_marker_size['h'];
1255 1255
     
1256
-    $arr_alert_msg = array(
1257
-        'geodir_plugin_url' => geodir_plugin_url(),
1258
-        'geodir_admin_ajax_url' => $ajax_url,
1259
-        'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1260
-        'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1261
-        'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1262
-        'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1263
-        //start not show alert msg
1264
-        'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1265
-        'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1266
-        'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1267
-        'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1268
-        'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1269
-        // end not show alert msg
1270
-        'my_place_listing_del' => __('Are you sure you wish to delete this listing?', 'geodirectory'),
1271
-        'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
1272
-        //start not show alert msg
1273
-        'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1274
-        'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1275
-        'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1276
-        'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1277
-        'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1278
-        'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1279
-        'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1280
-        'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1281
-        'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1282
-        'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1283
-        'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1284
-        'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1285
-        'geodir_default_marker_icon' => $default_marker_icon,
1286
-        'geodir_default_marker_w' => $default_marker_width,
1287
-        'geodir_default_marker_h' => $default_marker_height,
1288
-        'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1289
-        'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1290
-        'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1291
-        'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1292
-        'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1293
-        'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1294
-        'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1295
-        'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1296
-        /* on/off dragging for phone devices */
1297
-        'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1298
-        'geodir_is_mobile' => wp_is_mobile() ? true : false,
1299
-        'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1300
-        'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1301
-        'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1302
-        'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1303
-        'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1304
-        'geodir_action_remove' => __('Remove', 'geodirectory'),
1256
+	$arr_alert_msg = array(
1257
+		'geodir_plugin_url' => geodir_plugin_url(),
1258
+		'geodir_admin_ajax_url' => $ajax_url,
1259
+		'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1260
+		'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1261
+		'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1262
+		'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1263
+		//start not show alert msg
1264
+		'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1265
+		'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1266
+		'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1267
+		'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1268
+		'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1269
+		// end not show alert msg
1270
+		'my_place_listing_del' => __('Are you sure you wish to delete this listing?', 'geodirectory'),
1271
+		'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
1272
+		//start not show alert msg
1273
+		'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1274
+		'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1275
+		'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1276
+		'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1277
+		'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1278
+		'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1279
+		'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1280
+		'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1281
+		'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1282
+		'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1283
+		'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1284
+		'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1285
+		'geodir_default_marker_icon' => $default_marker_icon,
1286
+		'geodir_default_marker_w' => $default_marker_width,
1287
+		'geodir_default_marker_h' => $default_marker_height,
1288
+		'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1289
+		'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1290
+		'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1291
+		'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1292
+		'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1293
+		'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1294
+		'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1295
+		'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1296
+		/* on/off dragging for phone devices */
1297
+		'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1298
+		'geodir_is_mobile' => wp_is_mobile() ? true : false,
1299
+		'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1300
+		'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1301
+		'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1302
+		'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1303
+		'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1304
+		'geodir_action_remove' => __('Remove', 'geodirectory'),
1305 1305
 		'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
1306 1306
 		'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
1307 1307
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
@@ -1309,40 +1309,40 @@  discard block
 block discarded – undo
1309 1309
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1310 1310
 		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1311 1311
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1312
-        'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1313
-        'geodir_map_name' => geodir_map_name(),
1314
-        'osmStart' => __('Start', 'geodirectory'),
1315
-        'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1316
-        'osmEnd' => __('Enter Your Location', 'geodirectory'),
1317
-        'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
1318
-        'geoMyLocation' => __('My Location', 'geodirectory'),
1319
-        'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
1320
-        'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
1321
-        'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
1322
-        'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
1323
-        'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
1324
-    );
1325
-
1326
-    /**
1327
-     * Filters the translated JS strings from function geodir_localize_all_js_msg().
1328
-     *
1329
-     * With this filter you can add, remove or change translated JS strings.
1330
-     * You should add your own translations to this if you are building an addon rather than adding another script block.
1331
-     *
1332
-     * @since 1.0.0
1333
-     */
1334
-    $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1335
-
1336
-    foreach ($arr_alert_msg as $key => $value) {
1337
-        if (!is_scalar($value))
1338
-            continue;
1339
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1340
-    }
1312
+		'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1313
+		'geodir_map_name' => geodir_map_name(),
1314
+		'osmStart' => __('Start', 'geodirectory'),
1315
+		'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1316
+		'osmEnd' => __('Enter Your Location', 'geodirectory'),
1317
+		'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
1318
+		'geoMyLocation' => __('My Location', 'geodirectory'),
1319
+		'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
1320
+		'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
1321
+		'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
1322
+		'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
1323
+		'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
1324
+	);
1325
+
1326
+	/**
1327
+	 * Filters the translated JS strings from function geodir_localize_all_js_msg().
1328
+	 *
1329
+	 * With this filter you can add, remove or change translated JS strings.
1330
+	 * You should add your own translations to this if you are building an addon rather than adding another script block.
1331
+	 *
1332
+	 * @since 1.0.0
1333
+	 */
1334
+	$arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1341 1335
 
1342
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1343
-    echo '<script>';
1344
-    echo $script;
1345
-    echo '</script>';
1336
+	foreach ($arr_alert_msg as $key => $value) {
1337
+		if (!is_scalar($value))
1338
+			continue;
1339
+		$arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1340
+	}
1341
+
1342
+	$script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1343
+	echo '<script>';
1344
+	echo $script;
1345
+	echo '</script>';
1346 1346
 }
1347 1347
 
1348 1348
 add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
@@ -1358,11 +1358,11 @@  discard block
 block discarded – undo
1358 1358
  */
1359 1359
 function geodir_admin_bar_site_menu($wp_admin_bar)
1360 1360
 {
1361
-    if (get_option("geodir_installed")) {
1362
-        if (current_user_can('manage_options')) {
1363
-            $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1364
-        }
1365
-    }
1361
+	if (get_option("geodir_installed")) {
1362
+		if (current_user_can('manage_options')) {
1363
+			$wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1364
+		}
1365
+	}
1366 1366
 }
1367 1367
 
1368 1368
 add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
@@ -1388,25 +1388,25 @@  discard block
 block discarded – undo
1388 1388
  */
1389 1389
 function geodir_store_sidebars()
1390 1390
 {
1391
-    global $geodir_sidebars;
1392
-    global $sidebars_widgets;
1393
-
1394
-    if (!is_array($sidebars_widgets))
1395
-        $sidebars_widgets = wp_get_sidebars_widgets();
1396
-    $geodir_old_sidebars = array();
1397
-
1398
-    if (is_array($geodir_sidebars)) {
1399
-        foreach ($geodir_sidebars as $val) {
1400
-            if (is_array($sidebars_widgets)) {
1401
-                if (array_key_exists($val, $sidebars_widgets))
1402
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1403
-                else
1404
-                    $geodir_old_sidebars[$val] = array();
1405
-            }
1406
-        }
1407
-    }
1408
-    update_option('geodir_sidebars', $geodir_old_sidebars);
1409
-    geodir_option_version_backup('geodir_sidebars');
1391
+	global $geodir_sidebars;
1392
+	global $sidebars_widgets;
1393
+
1394
+	if (!is_array($sidebars_widgets))
1395
+		$sidebars_widgets = wp_get_sidebars_widgets();
1396
+	$geodir_old_sidebars = array();
1397
+
1398
+	if (is_array($geodir_sidebars)) {
1399
+		foreach ($geodir_sidebars as $val) {
1400
+			if (is_array($sidebars_widgets)) {
1401
+				if (array_key_exists($val, $sidebars_widgets))
1402
+					$geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1403
+				else
1404
+					$geodir_old_sidebars[$val] = array();
1405
+			}
1406
+		}
1407
+	}
1408
+	update_option('geodir_sidebars', $geodir_old_sidebars);
1409
+	geodir_option_version_backup('geodir_sidebars');
1410 1410
 
1411 1411
 }
1412 1412
 
@@ -1420,28 +1420,28 @@  discard block
 block discarded – undo
1420 1420
  */
1421 1421
 function geodir_restore_sidebars()
1422 1422
 {
1423
-    global $sidebars_widgets;
1424
-
1425
-    if (!is_array($sidebars_widgets))
1426
-        $sidebars_widgets = wp_get_sidebars_widgets();
1427
-
1428
-    if (is_array($sidebars_widgets)) {
1429
-        $geodir_old_sidebars = get_option('geodir_sidebars');
1430
-        if (is_array($geodir_old_sidebars)) {
1431
-            foreach ($geodir_old_sidebars as $key => $val) {
1432
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1433
-                {
1434
-                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1435
-                }
1423
+	global $sidebars_widgets;
1436 1424
 
1425
+	if (!is_array($sidebars_widgets))
1426
+		$sidebars_widgets = wp_get_sidebars_widgets();
1437 1427
 
1438
-            }
1439
-        }
1428
+	if (is_array($sidebars_widgets)) {
1429
+		$geodir_old_sidebars = get_option('geodir_sidebars');
1430
+		if (is_array($geodir_old_sidebars)) {
1431
+			foreach ($geodir_old_sidebars as $key => $val) {
1432
+				if(0 === strpos($key, 'geodir_'))// if gd widget
1433
+				{
1434
+					$sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1435
+				}
1440 1436
 
1441
-    }
1442 1437
 
1443
-    update_option('sidebars_widgets', $sidebars_widgets);
1444
-    update_option('geodir_sidebars', '');
1438
+			}
1439
+		}
1440
+
1441
+	}
1442
+
1443
+	update_option('sidebars_widgets', $sidebars_widgets);
1444
+	update_option('geodir_sidebars', '');
1445 1445
 }
1446 1446
 
1447 1447
 add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
@@ -1454,9 +1454,9 @@  discard block
 block discarded – undo
1454 1454
  */
1455 1455
 function geodir_after_listing_post_gridview()
1456 1456
 {
1457
-    global $gridview_columns;
1457
+	global $gridview_columns;
1458 1458
 
1459
-    $gridview_columns = '';
1459
+	$gridview_columns = '';
1460 1460
 
1461 1461
 }
1462 1462
 
@@ -1484,11 +1484,11 @@  discard block
 block discarded – undo
1484 1484
  */
1485 1485
 function so_handle_038($url, $original_url, $_context)
1486 1486
 {
1487
-    if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1488
-        $url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1489
-    }
1487
+	if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1488
+		$url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1489
+	}
1490 1490
 
1491
-    return $url;
1491
+	return $url;
1492 1492
 }
1493 1493
 
1494 1494
 
@@ -1504,34 +1504,34 @@  discard block
 block discarded – undo
1504 1504
 function geodir_after_main_form_fields() {
1505 1505
 	global $gd_session;
1506 1506
 	
1507
-    if (get_option('geodir_accept_term_condition')) {
1508
-        global $post;
1509
-        $term_condition = '';
1510
-        if (isset($_REQUEST['backandedit'])) {
1511
-            $post = (object)$gd_session->get('listing');
1512
-            $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1513
-        }
1514
-
1515
-        ?>
1507
+	if (get_option('geodir_accept_term_condition')) {
1508
+		global $post;
1509
+		$term_condition = '';
1510
+		if (isset($_REQUEST['backandedit'])) {
1511
+			$post = (object)$gd_session->get('listing');
1512
+			$term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1513
+		}
1514
+
1515
+		?>
1516 1516
         <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix">
1517 1517
             <label>&nbsp;</label>
1518 1518
 
1519 1519
             <div class="geodir_taxonomy_field" style="float:left; width:70%;">
1520 1520
 				<span style="display:block"> 
1521 1521
 				<input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
1522
-                    echo 'checked="checked"';
1523
-                } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1522
+					echo 'checked="checked"';
1523
+				} ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1524 1524
                        class="geodir_textfield" value="1"
1525 1525
                        style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1526 1526
 				</span>
1527 1527
             </div>
1528 1528
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
1529
-                    _e($required_msg, 'geodirectory');
1530
-                } ?></span>
1529
+					_e($required_msg, 'geodirectory');
1530
+				} ?></span>
1531 1531
         </div>
1532 1532
     <?php
1533 1533
 
1534
-    }
1534
+	}
1535 1535
 }
1536 1536
 
1537 1537
 
@@ -1556,42 +1556,42 @@  discard block
 block discarded – undo
1556 1556
  */
1557 1557
 function geodir_detail_page_tab_is_display($is_display, $tab)
1558 1558
 {
1559
-    global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1559
+	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1560 1560
 
1561
-    if ($tab == 'post_profile') {
1562
-        /** This action is documented in geodirectory_template_actions.php */
1563
-        $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1561
+	if ($tab == 'post_profile') {
1562
+		/** This action is documented in geodirectory_template_actions.php */
1563
+		$desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1564 1564
         
1565
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1566
-            $is_display = false;
1567
-        }
1568
-    }
1565
+		if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1566
+			$is_display = false;
1567
+		}
1568
+	}
1569 1569
     
1570
-    if ($tab == 'post_info')
1571
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1570
+	if ($tab == 'post_info')
1571
+		$is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1572 1572
     
1573
-    if ($tab == 'post_images')
1574
-        $is_display = (!empty($post_images)) ? true : false;
1573
+	if ($tab == 'post_images')
1574
+		$is_display = (!empty($post_images)) ? true : false;
1575 1575
 
1576
-    if ($tab == 'post_video')
1577
-        $is_display = (!empty($video)) ? true : false;
1576
+	if ($tab == 'post_video')
1577
+		$is_display = (!empty($video)) ? true : false;
1578 1578
 
1579
-    if ($tab == 'special_offers')
1580
-        $is_display = (!empty($special_offers)) ? true : false;
1579
+	if ($tab == 'special_offers')
1580
+		$is_display = (!empty($special_offers)) ? true : false;
1581 1581
 
1582
-    if ($tab == 'reviews')
1583
-        $is_display = (geodir_is_page('detail')) ? true : false;
1582
+	if ($tab == 'reviews')
1583
+		$is_display = (geodir_is_page('detail')) ? true : false;
1584 1584
 
1585
-    if ($tab == 'related_listing') {
1586
-       $message = __('No listings found which match your selection.', 'geodirectory');
1585
+	if ($tab == 'related_listing') {
1586
+	   $message = __('No listings found which match your selection.', 'geodirectory');
1587 1587
        
1588
-       /** This action is documented in geodirectory-functions/template_functions.php */
1589
-       $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1588
+	   /** This action is documented in geodirectory-functions/template_functions.php */
1589
+	   $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1590 1590
        
1591
-       $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1592
-    }
1591
+	   $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1592
+	}
1593 1593
 
1594
-    return $is_display;
1594
+	return $is_display;
1595 1595
 }
1596 1596
 
1597 1597
 
@@ -1607,69 +1607,69 @@  discard block
 block discarded – undo
1607 1607
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1608 1608
  */
1609 1609
 function geodir_changes_in_custom_fields_table() {
1610
-    global $wpdb, $plugin_prefix;
1610
+	global $wpdb, $plugin_prefix;
1611 1611
 	
1612 1612
 	// Remove unused virtual page
1613 1613
 	$listings_page_id = (int)get_option('geodir_listing_page');
1614 1614
 	if ($listings_page_id) {
1615 1615
 		$wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1616
-        delete_option('geodir_listing_page');
1616
+		delete_option('geodir_listing_page');
1617 1617
 	}
1618 1618
 
1619
-    if (!get_option('geodir_changes_in_custom_fields_table')) {
1620
-        $wpdb->query(
1621
-            $wpdb->prepare(
1622
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1623
-                array('1', '1', 'admin')
1624
-            )
1625
-        );
1619
+	if (!get_option('geodir_changes_in_custom_fields_table')) {
1620
+		$wpdb->query(
1621
+			$wpdb->prepare(
1622
+				"UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1623
+				array('1', '1', 'admin')
1624
+			)
1625
+		);
1626 1626
 
1627 1627
 
1628
-        /* --- terms meta value set --- */
1628
+		/* --- terms meta value set --- */
1629 1629
 
1630
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1630
+		update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1631 1631
 
1632
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1632
+		$options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1633 1633
 
1634
-        if (!empty($options_data)) {
1634
+		if (!empty($options_data)) {
1635 1635
 
1636
-            foreach ($options_data as $optobj) {
1636
+			foreach ($options_data as $optobj) {
1637 1637
 
1638
-                $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1638
+				$option_val = str_replace('tax_meta_', '', $optobj->option_name);
1639 1639
 
1640
-                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1640
+				$taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1641 1641
 
1642
-                if (!empty($taxonomies_data)) {
1642
+				if (!empty($taxonomies_data)) {
1643 1643
 
1644
-                    foreach ($taxonomies_data as $taxobj) {
1644
+					foreach ($taxonomies_data as $taxobj) {
1645 1645
 
1646
-                        $taxObject = get_taxonomy($taxobj->taxonomy);
1647
-                        $post_type = $taxObject->object_type[0];
1646
+						$taxObject = get_taxonomy($taxobj->taxonomy);
1647
+						$post_type = $taxObject->object_type[0];
1648 1648
 
1649
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1649
+						$opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1650 1650
 
1651
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1651
+						$duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1652 1652
 
1653
-                        if ($duplicate_data) {
1653
+						if ($duplicate_data) {
1654 1654
 
1655
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1655
+							$wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1656 1656
 
1657
-                        } else {
1657
+						} else {
1658 1658
 
1659
-                            $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1659
+							$wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1660 1660
 
1661
-                        }
1661
+						}
1662 1662
 
1663
-                    }
1663
+					}
1664 1664
 
1665
-                }
1665
+				}
1666 1666
 
1667
-            }
1668
-        }
1667
+			}
1668
+		}
1669 1669
 
1670
-        update_option('geodir_changes_in_custom_fields_table', '1');
1670
+		update_option('geodir_changes_in_custom_fields_table', '1');
1671 1671
 
1672
-    }
1672
+	}
1673 1673
 
1674 1674
 }
1675 1675
 
@@ -1688,24 +1688,24 @@  discard block
 block discarded – undo
1688 1688
 function geodir_location_slug_check($slug)
1689 1689
 {
1690 1690
 
1691
-    global $wpdb, $table_prefix;
1691
+	global $wpdb, $table_prefix;
1692 1692
 
1693
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1693
+	$slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1694 1694
 
1695
-    if ($slug_exists) {
1695
+	if ($slug_exists) {
1696 1696
 
1697
-        $suffix = 1;
1698
-        do {
1699
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1700
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1701
-            $suffix++;
1702
-        } while ($location_slug_check && $suffix < 100);
1697
+		$suffix = 1;
1698
+		do {
1699
+			$alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1700
+			$location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1701
+			$suffix++;
1702
+		} while ($location_slug_check && $suffix < 100);
1703 1703
 
1704
-        $slug = $alt_location_name;
1704
+		$slug = $alt_location_name;
1705 1705
 
1706
-    }
1706
+	}
1707 1707
 
1708
-    return $slug;
1708
+	return $slug;
1709 1709
 
1710 1710
 }
1711 1711
 
@@ -1730,42 +1730,42 @@  discard block
 block discarded – undo
1730 1730
 function geodir_update_term_slug($term_id, $tt_id, $taxonomy)
1731 1731
 {
1732 1732
 
1733
-    global $wpdb, $plugin_prefix, $table_prefix;
1733
+	global $wpdb, $plugin_prefix, $table_prefix;
1734 1734
 
1735
-    $tern_data = get_term_by('id', $term_id, $taxonomy);
1735
+	$tern_data = get_term_by('id', $term_id, $taxonomy);
1736 1736
 
1737
-    $slug = $tern_data->slug;
1737
+	$slug = $tern_data->slug;
1738 1738
 
1739
-    /**
1740
-     * Filter if a term slug exists.
1741
-     *
1742
-     * @since 1.0.0
1743
-     * @package GeoDirectory
1744
-     * @param bool $bool Default: false.
1745
-     * @param string $slug The term slug.
1746
-     * @param int $term_id The term ID.
1747
-     */
1748
-    $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1739
+	/**
1740
+	 * Filter if a term slug exists.
1741
+	 *
1742
+	 * @since 1.0.0
1743
+	 * @package GeoDirectory
1744
+	 * @param bool $bool Default: false.
1745
+	 * @param string $slug The term slug.
1746
+	 * @param int $term_id The term ID.
1747
+	 */
1748
+	$slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1749 1749
 
1750
-    if ($slug_exists) {
1750
+	if ($slug_exists) {
1751 1751
 
1752
-        $suffix = 1;
1753
-        do {
1754
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1752
+		$suffix = 1;
1753
+		do {
1754
+			$new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1755 1755
 
1756
-            /** This action is documented in geodirectory_hooks_actions.php */
1757
-            $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1756
+			/** This action is documented in geodirectory_hooks_actions.php */
1757
+			$term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1758 1758
 
1759
-            $suffix++;
1760
-        } while ($term_slug_check && $suffix < 100);
1759
+			$suffix++;
1760
+		} while ($term_slug_check && $suffix < 100);
1761 1761
 
1762
-        $slug = $new_slug;
1762
+		$slug = $new_slug;
1763 1763
 
1764
-        //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1764
+		//wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1765 1765
 
1766
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1766
+		$wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1767 1767
 
1768
-    }
1768
+	}
1769 1769
 	
1770 1770
 	// Update tag in detail table.
1771 1771
 	$taxonomy_obj = get_taxonomy($taxonomy);
@@ -1806,21 +1806,21 @@  discard block
 block discarded – undo
1806 1806
 function geodir_term_slug_is_exists($slug_exists, $slug, $term_id)
1807 1807
 {
1808 1808
 
1809
-    global $wpdb, $table_prefix;
1809
+	global $wpdb, $table_prefix;
1810 1810
 
1811
-    $default_location = geodir_get_default_location();
1811
+	$default_location = geodir_get_default_location();
1812 1812
 
1813
-    $country_slug = $default_location->country_slug;
1814
-    $region_slug = $default_location->region_slug;
1815
-    $city_slug = $default_location->city_slug;
1813
+	$country_slug = $default_location->country_slug;
1814
+	$region_slug = $default_location->region_slug;
1815
+	$city_slug = $default_location->city_slug;
1816 1816
 
1817
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1818
-        return $slug_exists = true;
1817
+	if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1818
+		return $slug_exists = true;
1819 1819
 
1820
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1821
-        return $slug_exists = true;
1820
+	if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1821
+		return $slug_exists = true;
1822 1822
 
1823
-    return $slug_exists;
1823
+	return $slug_exists;
1824 1824
 }
1825 1825
 
1826 1826
 
@@ -1840,75 +1840,75 @@  discard block
 block discarded – undo
1840 1840
  */
1841 1841
 function geodir_custom_page_title($title = '', $sep = '')
1842 1842
 {
1843
-    global $wp;
1844
-    if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
1845
-        return $title;
1846
-    }
1843
+	global $wp;
1844
+	if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
1845
+		return $title;
1846
+	}
1847 1847
 
1848
-    if ($sep == '') {
1849
-        /**
1850
-         * Filter the page title separator.
1851
-         *
1852
-         * @since 1.0.0
1853
-         * @package GeoDirectory
1854
-         * @param string $sep The separator, default: `|`.
1855
-         */
1856
-        $sep = apply_filters('geodir_page_title_separator', '|');
1857
-    }
1848
+	if ($sep == '') {
1849
+		/**
1850
+		 * Filter the page title separator.
1851
+		 *
1852
+		 * @since 1.0.0
1853
+		 * @package GeoDirectory
1854
+		 * @param string $sep The separator, default: `|`.
1855
+		 */
1856
+		$sep = apply_filters('geodir_page_title_separator', '|');
1857
+	}
1858 1858
 
1859 1859
 
1860
-    $gd_page = '';
1861
-    if(geodir_is_page('home')){
1862
-        $gd_page = 'home';
1863
-        $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1864
-    }
1865
-    elseif(geodir_is_page('detail')){
1866
-        $gd_page = 'detail';
1867
-        $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1868
-    }
1869
-    elseif(geodir_is_page('pt')){
1870
-        $gd_page = 'pt';
1871
-        $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1872
-    }
1873
-    elseif(geodir_is_page('listing')){
1874
-        $gd_page = 'listing';
1875
-        $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1876
-    }
1877
-    elseif(geodir_is_page('location')){
1878
-        $gd_page = 'location';
1879
-        $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1880
-    }
1881
-    elseif(geodir_is_page('search')){
1882
-        $gd_page = 'search';
1883
-        $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1884
-    }
1885
-    elseif(geodir_is_page('add-listing')){
1886
-        $gd_page = 'add-listing';
1887
-        $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1888
-    }
1889
-    elseif(geodir_is_page('author')){
1890
-        $gd_page = 'author';
1891
-        $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1892
-    }
1893
-    elseif(geodir_is_page('login')){
1894
-        $gd_page = 'login';
1895
-        $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1896
-    }
1897
-    elseif(geodir_is_page('listing-success')){
1898
-        $gd_page = 'listing-success';
1899
-        $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1900
-    }
1860
+	$gd_page = '';
1861
+	if(geodir_is_page('home')){
1862
+		$gd_page = 'home';
1863
+		$title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1864
+	}
1865
+	elseif(geodir_is_page('detail')){
1866
+		$gd_page = 'detail';
1867
+		$title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1868
+	}
1869
+	elseif(geodir_is_page('pt')){
1870
+		$gd_page = 'pt';
1871
+		$title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1872
+	}
1873
+	elseif(geodir_is_page('listing')){
1874
+		$gd_page = 'listing';
1875
+		$title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1876
+	}
1877
+	elseif(geodir_is_page('location')){
1878
+		$gd_page = 'location';
1879
+		$title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1880
+	}
1881
+	elseif(geodir_is_page('search')){
1882
+		$gd_page = 'search';
1883
+		$title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1884
+	}
1885
+	elseif(geodir_is_page('add-listing')){
1886
+		$gd_page = 'add-listing';
1887
+		$title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1888
+	}
1889
+	elseif(geodir_is_page('author')){
1890
+		$gd_page = 'author';
1891
+		$title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1892
+	}
1893
+	elseif(geodir_is_page('login')){
1894
+		$gd_page = 'login';
1895
+		$title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1896
+	}
1897
+	elseif(geodir_is_page('listing-success')){
1898
+		$gd_page = 'listing-success';
1899
+		$title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1900
+	}
1901 1901
 
1902 1902
 
1903
-    /**
1904
-     * Filter page meta title to replace variables.
1905
-     *
1906
-     * @since 1.5.4
1907
-     * @param string $title The page title including variables.
1908
-     * @param string $gd_page The GeoDirectory page type if any.
1909
-     * @param string $sep The title separator symbol.
1910
-     */
1911
-    return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1903
+	/**
1904
+	 * Filter page meta title to replace variables.
1905
+	 *
1906
+	 * @since 1.5.4
1907
+	 * @param string $title The page title including variables.
1908
+	 * @param string $gd_page The GeoDirectory page type if any.
1909
+	 * @param string $sep The title separator symbol.
1910
+	 */
1911
+	return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1912 1912
 
1913 1913
 }
1914 1914
 
@@ -1924,36 +1924,36 @@  discard block
 block discarded – undo
1924 1924
 function geodir_set_post_attachment()
1925 1925
 {
1926 1926
 
1927
-    if (!get_option('geodir_set_post_attachments')) {
1927
+	if (!get_option('geodir_set_post_attachments')) {
1928 1928
 
1929
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1930
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1929
+		require_once(ABSPATH . 'wp-admin/includes/image.php');
1930
+		require_once(ABSPATH . 'wp-admin/includes/file.php');
1931 1931
 
1932
-        $all_postypes = geodir_get_posttypes();
1932
+		$all_postypes = geodir_get_posttypes();
1933 1933
 
1934
-        foreach($all_postypes as $post_type){
1935
-            $args = array(
1936
-                'posts_per_page' => -1,
1937
-                'post_type' => $post_type,
1938
-                'post_status' => 'publish');
1934
+		foreach($all_postypes as $post_type){
1935
+			$args = array(
1936
+				'posts_per_page' => -1,
1937
+				'post_type' => $post_type,
1938
+				'post_status' => 'publish');
1939 1939
 
1940
-            $posts_array = get_posts($args);
1940
+			$posts_array = get_posts($args);
1941 1941
 
1942
-            if (!empty($posts_array)) {
1942
+			if (!empty($posts_array)) {
1943 1943
 
1944
-                foreach ($posts_array as $post) {
1944
+				foreach ($posts_array as $post) {
1945 1945
 
1946
-                    geodir_set_wp_featured_image($post->ID);
1946
+					geodir_set_wp_featured_image($post->ID);
1947 1947
 
1948
-                }
1948
+				}
1949 1949
 
1950
-            }
1951
-        }
1950
+			}
1951
+		}
1952 1952
 
1953 1953
 
1954
-        update_option('geodir_set_post_attachments', '1');
1954
+		update_option('geodir_set_post_attachments', '1');
1955 1955
 
1956
-    }
1956
+	}
1957 1957
 
1958 1958
 }
1959 1959
 
@@ -1970,19 +1970,19 @@  discard block
 block discarded – undo
1970 1970
 function geodir_remove_url_seperator()
1971 1971
 {
1972 1972
 
1973
-    if (!get_option('geodir_remove_url_seperator')) {
1973
+	if (!get_option('geodir_remove_url_seperator')) {
1974 1974
 
1975
-        if (get_option('geodir_listingurl_separator'))
1976
-            delete_option('geodir_listingurl_separator');
1975
+		if (get_option('geodir_listingurl_separator'))
1976
+			delete_option('geodir_listingurl_separator');
1977 1977
 
1978
-        if (get_option('geodir_detailurl_separator'))
1979
-            delete_option('geodir_detailurl_separator');
1978
+		if (get_option('geodir_detailurl_separator'))
1979
+			delete_option('geodir_detailurl_separator');
1980 1980
 
1981
-        flush_rewrite_rules(false);
1981
+		flush_rewrite_rules(false);
1982 1982
 
1983
-        update_option('geodir_remove_url_seperator', '1');
1983
+		update_option('geodir_remove_url_seperator', '1');
1984 1984
 
1985
-    }
1985
+	}
1986 1986
 
1987 1987
 }
1988 1988
 
@@ -1998,19 +1998,19 @@  discard block
 block discarded – undo
1998 1998
  */
1999 1999
 function geodir_remove_url_seperator_form_permalink_settings($permalink_arr)
2000 2000
 {
2001
-    foreach ($permalink_arr as $key => $value) {
2001
+	foreach ($permalink_arr as $key => $value) {
2002 2002
 
2003
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2004
-            unset($permalink_arr[$key]);
2003
+		if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2004
+			unset($permalink_arr[$key]);
2005 2005
 
2006
-    }
2006
+	}
2007 2007
 
2008
-    return $permalink_arr;
2008
+	return $permalink_arr;
2009 2009
 
2010 2010
 }
2011 2011
 
2012 2012
 if (!is_admin()) {
2013
-    add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2013
+	add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2014 2014
 }
2015 2015
 /**
2016 2016
  * Set status from draft to publish.
@@ -2023,16 +2023,16 @@  discard block
 block discarded – undo
2023 2023
  */
2024 2024
 function geodir_set_status_draft_to_publish_for_own_post($post)
2025 2025
 {
2026
-    $user_id = get_current_user_id();
2026
+	$user_id = get_current_user_id();
2027 2027
 
2028
-    if(!$user_id){return $post;}
2028
+	if(!$user_id){return $post;}
2029 2029
 
2030
-    $gd_post_types = geodir_get_posttypes();
2030
+	$gd_post_types = geodir_get_posttypes();
2031 2031
 
2032
-    if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2033
-        $post[0]->post_status = 'publish';
2034
-    }
2035
-    return $post;
2032
+	if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2033
+		$post[0]->post_status = 'publish';
2034
+	}
2035
+	return $post;
2036 2036
 }
2037 2037
 
2038 2038
 
@@ -2124,33 +2124,33 @@  discard block
 block discarded – undo
2124 2124
  */
2125 2125
 function geodir_detail_page_tab_headings_change($tabs_arr)
2126 2126
 {
2127
-    global $wpdb;
2127
+	global $wpdb;
2128 2128
 
2129
-    $post_type = geodir_get_current_posttype();
2129
+	$post_type = geodir_get_current_posttype();
2130 2130
 
2131
-    $all_postypes = geodir_get_posttypes();
2131
+	$all_postypes = geodir_get_posttypes();
2132 2132
 
2133
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2133
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2134 2134
 
2135
-        if (array_key_exists('post_video', $tabs_arr)) {
2135
+		if (array_key_exists('post_video', $tabs_arr)) {
2136 2136
 
2137
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2137
+			$field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2138 2138
 
2139
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2140
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2141
-        }
2139
+			if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2140
+				$tabs_arr['post_video']['heading_text'] = $field_title;
2141
+		}
2142 2142
 
2143
-        if (array_key_exists('special_offers', $tabs_arr)) {
2143
+		if (array_key_exists('special_offers', $tabs_arr)) {
2144 2144
 
2145
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2145
+			$field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2146 2146
 
2147
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2148
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2149
-        }
2147
+			if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2148
+				$tabs_arr['special_offers']['heading_text'] = $field_title;
2149
+		}
2150 2150
 
2151
-    }
2151
+	}
2152 2152
 
2153
-    return $tabs_arr;
2153
+	return $tabs_arr;
2154 2154
 
2155 2155
 }
2156 2156
 
@@ -2163,10 +2163,10 @@  discard block
 block discarded – undo
2163 2163
  */
2164 2164
 function geodir_remove_template_redirect_actions()
2165 2165
 {
2166
-    if (geodir_is_page('login')){
2167
-        remove_all_actions('template_redirect');
2168
-        remove_action('init', 'avia_modify_front', 10);
2169
-    }
2166
+	if (geodir_is_page('login')){
2167
+		remove_all_actions('template_redirect');
2168
+		remove_action('init', 'avia_modify_front', 10);
2169
+	}
2170 2170
 }
2171 2171
 
2172 2172
 
@@ -2188,51 +2188,51 @@  discard block
 block discarded – undo
2188 2188
 function geodirectory_before_featured_image_delete($attachment_id)
2189 2189
 {
2190 2190
 
2191
-    global $wpdb, $plugin_prefix;
2191
+	global $wpdb, $plugin_prefix;
2192 2192
 
2193
-    $post_id = get_post_field('post_parent', $attachment_id);
2193
+	$post_id = get_post_field('post_parent', $attachment_id);
2194 2194
 
2195
-    $attachment_url = wp_get_attachment_url($attachment_id);
2195
+	$attachment_url = wp_get_attachment_url($attachment_id);
2196 2196
 
2197
-    if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2197
+	if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2198 2198
 
2199
-        $post_type = get_post_type($post_id);
2199
+		$post_type = get_post_type($post_id);
2200 2200
 
2201
-        $all_postypes = geodir_get_posttypes();
2201
+		$all_postypes = geodir_get_posttypes();
2202 2202
 
2203
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2204
-            return false;
2203
+		if (!in_array($post_type, $all_postypes) || !is_admin())
2204
+			return false;
2205 2205
 
2206
-        $uploads = wp_upload_dir();
2206
+		$uploads = wp_upload_dir();
2207 2207
 
2208
-        $split_img_path = explode($uploads['baseurl'], $attachment_url);
2208
+		$split_img_path = explode($uploads['baseurl'], $attachment_url);
2209 2209
 
2210
-        $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2210
+		$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2211 2211
 
2212
-        $wpdb->query(
2213
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2214
-                array($post_id, $split_img_file_path)
2215
-            )
2216
-        );
2212
+		$wpdb->query(
2213
+			$wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2214
+				array($post_id, $split_img_file_path)
2215
+			)
2216
+		);
2217 2217
 
2218
-        $attachment_data = $wpdb->get_row(
2219
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2220
-                array($post_id)
2221
-            )
2222
-        );
2218
+		$attachment_data = $wpdb->get_row(
2219
+			$wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2220
+				array($post_id)
2221
+			)
2222
+		);
2223 2223
 
2224
-        if (!empty($attachment_data)) {
2225
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2226
-        }
2224
+		if (!empty($attachment_data)) {
2225
+			$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2226
+		}
2227 2227
 
2228 2228
 
2229
-        $table_name = $plugin_prefix . $post_type . '_detail';
2229
+		$table_name = $plugin_prefix . $post_type . '_detail';
2230 2230
 
2231
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2231
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2232 2232
 
2233
-        geodir_set_wp_featured_image($post_id);
2233
+		geodir_set_wp_featured_image($post_id);
2234 2234
 
2235
-    }
2235
+	}
2236 2236
 
2237 2237
 }
2238 2238
 
@@ -2250,79 +2250,79 @@  discard block
 block discarded – undo
2250 2250
 function geodir_temp_set_post_attachment()
2251 2251
 {
2252 2252
 
2253
-    global $wpdb, $plugin_prefix;
2253
+	global $wpdb, $plugin_prefix;
2254 2254
 
2255
-    $all_postypes = geodir_get_posttypes();
2255
+	$all_postypes = geodir_get_posttypes();
2256 2256
 
2257
-    foreach ($all_postypes as $posttype) {
2257
+	foreach ($all_postypes as $posttype) {
2258 2258
 
2259
-        $tablename = $plugin_prefix . $posttype . '_detail';
2259
+		$tablename = $plugin_prefix . $posttype . '_detail';
2260 2260
 
2261
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2261
+		$get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2262 2262
 
2263
-        if (!empty($get_post_data)) {
2263
+		if (!empty($get_post_data)) {
2264 2264
 
2265
-            foreach ($get_post_data as $data) {
2265
+			foreach ($get_post_data as $data) {
2266 2266
 
2267
-                $post_id = $data->post_id;
2267
+				$post_id = $data->post_id;
2268 2268
 
2269
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2269
+				$attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2270 2270
 
2271
-                if (!empty($attachment_data)) {
2271
+				if (!empty($attachment_data)) {
2272 2272
 
2273
-                    foreach ($attachment_data as $attach) {
2273
+					foreach ($attachment_data as $attach) {
2274 2274
 
2275
-                        $file_info = pathinfo($attach->file);
2275
+						$file_info = pathinfo($attach->file);
2276 2276
 
2277
-                        $sub_dir = '';
2278
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2279
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2277
+						$sub_dir = '';
2278
+						if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2279
+							$sub_dir = stripslashes_deep($file_info['dirname']);
2280 2280
 
2281
-                        $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2282
-                        $uploads_path = $uploads['basedir'];
2281
+						$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2282
+						$uploads_path = $uploads['basedir'];
2283 2283
 
2284
-                        $file_name = $file_info['basename'];
2284
+						$file_name = $file_info['basename'];
2285 2285
 
2286
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2286
+						$img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2287 2287
 
2288
-                        if (!file_exists($img_arr['path'])) {
2288
+						if (!file_exists($img_arr['path'])) {
2289 2289
 
2290
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2290
+							$wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2291 2291
 
2292
-                        }
2292
+						}
2293 2293
 
2294
-                    }
2294
+					}
2295 2295
 
2296
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2296
+					$attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2297 2297
 
2298
-                    if (!empty($attachment_data)) {
2298
+					if (!empty($attachment_data)) {
2299 2299
 
2300
-                        if ($attachment_data->ID)
2301
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2300
+						if ($attachment_data->ID)
2301
+							$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2302 2302
 
2303
-                    } else {
2303
+					} else {
2304 2304
 
2305
-                        if (has_post_thumbnail($post_id)) {
2305
+						if (has_post_thumbnail($post_id)) {
2306 2306
 
2307
-                            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2307
+							$post_thumbnail_id = get_post_thumbnail_id($post_id);
2308 2308
 
2309
-                            wp_delete_attachment($post_thumbnail_id);
2309
+							wp_delete_attachment($post_thumbnail_id);
2310 2310
 
2311
-                        }
2311
+						}
2312 2312
 
2313
-                    }
2313
+					}
2314 2314
 
2315
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2315
+					$wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2316 2316
 
2317
-                    geodir_set_wp_featured_image($post_id);
2317
+					geodir_set_wp_featured_image($post_id);
2318 2318
 
2319
-                }
2319
+				}
2320 2320
 
2321
-            }
2321
+			}
2322 2322
 
2323
-        }
2323
+		}
2324 2324
 
2325
-    }
2325
+	}
2326 2326
 
2327 2327
 }
2328 2328
 
@@ -2340,9 +2340,9 @@  discard block
 block discarded – undo
2340 2340
 function geodir_default_rating_star_icon()
2341 2341
 {
2342 2342
 
2343
-    if (!get_option('geodir_default_rating_star_icon')) {
2344
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2345
-    }
2343
+	if (!get_option('geodir_default_rating_star_icon')) {
2344
+		update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2345
+	}
2346 2346
 
2347 2347
 }
2348 2348
 
@@ -2360,25 +2360,25 @@  discard block
 block discarded – undo
2360 2360
  */
2361 2361
 function geodir_user_post_listing_count($user_id = 0)
2362 2362
 {
2363
-    global $wpdb, $plugin_prefix, $current_user;
2364
-    if(!$user_id){
2365
-        $user_id = $current_user->ID;
2366
-    }
2363
+	global $wpdb, $plugin_prefix, $current_user;
2364
+	if(!$user_id){
2365
+		$user_id = $current_user->ID;
2366
+	}
2367 2367
 
2368
-    $all_posts = get_option('geodir_listing_link_user_dashboard');
2368
+	$all_posts = get_option('geodir_listing_link_user_dashboard');
2369 2369
 
2370
-    $user_listing = array();
2371
-    if ($user_id && is_array($all_posts) && !empty($all_posts)) {
2372
-        foreach ($all_posts as $ptype) {
2373
-            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2370
+	$user_listing = array();
2371
+	if ($user_id && is_array($all_posts) && !empty($all_posts)) {
2372
+		foreach ($all_posts as $ptype) {
2373
+			$total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2374 2374
 
2375
-            if ($total_posts > 0) {
2376
-                $user_listing[$ptype] = $total_posts;
2377
-            }
2378
-        }
2379
-    }
2375
+			if ($total_posts > 0) {
2376
+				$user_listing[$ptype] = $total_posts;
2377
+			}
2378
+		}
2379
+	}
2380 2380
 
2381
-    return $user_listing;
2381
+	return $user_listing;
2382 2382
 }
2383 2383
 
2384 2384
 
@@ -2398,189 +2398,189 @@  discard block
 block discarded – undo
2398 2398
  */
2399 2399
 function geodir_detail_page_custom_field_tab($tabs_arr)
2400 2400
 {
2401
-    global $post;
2402
-
2403
-    $post_type = geodir_get_current_posttype();
2404
-    $all_postypes = geodir_get_posttypes();
2405
-
2406
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2407
-        $package_info = array();
2408
-        $package_info = geodir_post_package_info($package_info, $post);
2409
-        $post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2410
-        $fields_location = 'owntab';
2411
-
2412
-        $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2413
-        //remove video and special offers if it is already set to show
2414
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2415
-            $unset_video = true;
2416
-        }
2417
-
2418
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2419
-            $unset_special_offers = true;
2420
-        }
2421
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2422
-            foreach($custom_fields as $key => $custom_field){
2423
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2424
-                    unset($custom_fields[$key]);
2425
-                }
2426
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2427
-                    unset($custom_fields[$key]);
2428
-                }
2429
-            }
2430
-        }
2431
-
2432
-
2433
-        if (!empty($custom_fields)) {
2434
-            $parse_custom_fields = array();
2435
-            foreach ($custom_fields as $field) {
2436
-                $field = stripslashes_deep($field); // strip slashes
2437
-                $type = $field;
2438
-                $field_name = $field['htmlvar_name'];
2439
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2440
-                    $post->{$field_name} = $_REQUEST[$field_name];
2441
-                }
2401
+	global $post;
2442 2402
 
2443
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2444
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2445
-                        continue;
2446
-                    }
2403
+	$post_type = geodir_get_current_posttype();
2404
+	$all_postypes = geodir_get_posttypes();
2447 2405
 
2448
-                    $parse_custom_fields[] = $field;
2449
-                }
2450
-            }
2451
-            $custom_fields = $parse_custom_fields;
2452
-        }
2453
-        //print_r($custom_fields);
2454
-        if (!empty($custom_fields)) {
2406
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2407
+		$package_info = array();
2408
+		$package_info = geodir_post_package_info($package_info, $post);
2409
+		$post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2410
+		$fields_location = 'owntab';
2455 2411
 
2456
-            global $field_set_start;
2412
+		$custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2413
+		//remove video and special offers if it is already set to show
2414
+		if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2415
+			$unset_video = true;
2416
+		}
2457 2417
 
2458
-            $post = stripslashes_deep($post); // strip slashes
2459
-            
2460
-            $field_set_start = 0;
2461
-            $fieldset_count = 0;
2462
-            $fieldset = '';
2463
-            $total_fields = count($custom_fields);
2464
-            $count_field = 0;
2465
-            $fieldset_arr = array();
2466
-            $i = 0;
2467
-            $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2468
-
2469
-            foreach ($custom_fields as $field) {
2470
-                $count_field++;
2471
-                $field_name = $field['htmlvar_name'];
2472
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2473
-                    $post->{$field_name} = $_REQUEST[$field_name];
2474
-                }
2418
+		if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2419
+			$unset_special_offers = true;
2420
+		}
2421
+		if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2422
+			foreach($custom_fields as $key => $custom_field){
2423
+				if($custom_field['name']=='geodir_video' && isset($unset_video)){
2424
+					unset($custom_fields[$key]);
2425
+				}
2426
+				if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2427
+					unset($custom_fields[$key]);
2428
+				}
2429
+			}
2430
+		}
2475 2431
 
2476
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2477
-                    $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2478
-                    $site_title = trim($field['site_title']);
2479
-                    $type = $field;
2480
-                    $variables_array = array();
2481 2432
 
2482
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2483
-                        continue;
2484
-                    }
2433
+		if (!empty($custom_fields)) {
2434
+			$parse_custom_fields = array();
2435
+			foreach ($custom_fields as $field) {
2436
+				$field = stripslashes_deep($field); // strip slashes
2437
+				$type = $field;
2438
+				$field_name = $field['htmlvar_name'];
2439
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2440
+					$post->{$field_name} = $_REQUEST[$field_name];
2441
+				}
2485 2442
 
2486
-                    if ($type['type'] != 'fieldset') {
2487
-                        $i++;
2488
-                        $variables_array['post_id'] = $post->ID;
2489
-                        $variables_array['label'] = __($type['site_title'], 'geodirectory');
2490
-                        $variables_array['value'] = isset($post->{$type['htmlvar_name']}) ? $post->{$type['htmlvar_name']} : '';
2491
-
2492
-                    }else{
2493
-                        $i = 0;
2494
-                        $fieldset_count++;
2495
-                        $field_set_start = 1;
2496
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2497
-                        $fieldset_arr[$fieldset_count]['label'] = $label;
2498
-                    }
2443
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2444
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2445
+						continue;
2446
+					}
2499 2447
 
2448
+					$parse_custom_fields[] = $field;
2449
+				}
2450
+			}
2451
+			$custom_fields = $parse_custom_fields;
2452
+		}
2453
+		//print_r($custom_fields);
2454
+		if (!empty($custom_fields)) {
2500 2455
 
2501
-                    if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
2502
-                    $type = stripslashes_deep($type); // strip slashes
2503
-                    if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
2504
-                    $html = '';
2505
-                    $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2506
-                    if($html_var=='post'){$html_var='post_address';}
2507
-                    $field_icon = geodir_field_icon_proccess($type);
2508
-                    $filed_type = $type['type'];
2509
-
2510
-                    /**
2511
-                     * Filter the output for custom fields.
2512
-                     *
2513
-                     * Here we can remove or add new functions depending on the field type.
2514
-                     *
2515
-                     * @param string $html The html to be filtered (blank).
2516
-                     * @param string $fields_location The location the field is to be show.
2517
-                     * @param array $type The array of field values.
2518
-                     */
2519
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2520
-
2521
-
2522
-                    /**
2523
-                     * Filter custom field output in tab.
2524
-                     *
2525
-                     * @since 1.5.6
2526
-                     *
2527
-                     * @param string $html_var The HTML variable name for the field.
2528
-                     * @param string $html Custom field unfiltered HTML.
2529
-                     * @param array $variables_array Custom field variables array.
2530
-                     */
2531
-                    $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2532
-
2533
-                    $fieldset_html = '';
2534
-                    if ($field_set_start == 1) {
2535
-                        $add_html = false;
2536
-                        if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2537
-                            if ($fieldset != '') {
2538
-                                $add_html = true;
2539
-                                $label = $fieldset_arr[$fieldset_count - 1]['label'];
2540
-                                $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2541
-                            }
2542
-                            $fieldset_html = $fieldset;
2543
-                            $fieldset = '';
2544
-                        } else {
2545
-                            $fieldset .= $html;
2546
-                            if ($total_fields == $count_field && $fieldset != '') {
2547
-                                $add_html = true;
2548
-                                $label = $fieldset_arr[$fieldset_count]['label'];
2549
-                                $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2550
-                                $fieldset_html = $fieldset;
2551
-                            }
2552
-                        }
2456
+			global $field_set_start;
2553 2457
 
2554
-                        if ($add_html) {
2555
-                            $tabs_arr[$htmlvar_name] = array(
2556
-                                'heading_text' => __($label, 'geodirectory'),
2557
-                                'is_active_tab' => false,
2558
-                                /**
2559
-                                 * Filter if a custom field should be displayed on the details page tab.
2560
-                                 *
2561
-                                 * @since 1.0.0
2562
-                                 * @param string $htmlvar_name The field HTML var name.
2563
-                                 */
2564
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2565
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2566
-                            );
2567
-                        }
2568
-                    } else {
2569
-                        if ($html != '') {
2570
-                            $tabs_arr[$html_var] = array(
2571
-                                'heading_text' => __($label, 'geodirectory'),
2572
-                                'is_active_tab' => false,
2573
-                                /** This action is documented in geodirectory_hooks_actions.php */
2574
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2575
-                                'tab_content' => $html
2576
-                            );
2577
-                        }
2578
-                    }
2579
-                }
2580
-            }
2581
-        }
2582
-    }
2583
-    return $tabs_arr;
2458
+			$post = stripslashes_deep($post); // strip slashes
2459
+            
2460
+			$field_set_start = 0;
2461
+			$fieldset_count = 0;
2462
+			$fieldset = '';
2463
+			$total_fields = count($custom_fields);
2464
+			$count_field = 0;
2465
+			$fieldset_arr = array();
2466
+			$i = 0;
2467
+			$geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2468
+
2469
+			foreach ($custom_fields as $field) {
2470
+				$count_field++;
2471
+				$field_name = $field['htmlvar_name'];
2472
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2473
+					$post->{$field_name} = $_REQUEST[$field_name];
2474
+				}
2475
+
2476
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2477
+					$label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2478
+					$site_title = trim($field['site_title']);
2479
+					$type = $field;
2480
+					$variables_array = array();
2481
+
2482
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2483
+						continue;
2484
+					}
2485
+
2486
+					if ($type['type'] != 'fieldset') {
2487
+						$i++;
2488
+						$variables_array['post_id'] = $post->ID;
2489
+						$variables_array['label'] = __($type['site_title'], 'geodirectory');
2490
+						$variables_array['value'] = isset($post->{$type['htmlvar_name']}) ? $post->{$type['htmlvar_name']} : '';
2491
+
2492
+					}else{
2493
+						$i = 0;
2494
+						$fieldset_count++;
2495
+						$field_set_start = 1;
2496
+						$fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2497
+						$fieldset_arr[$fieldset_count]['label'] = $label;
2498
+					}
2499
+
2500
+
2501
+					if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
2502
+					$type = stripslashes_deep($type); // strip slashes
2503
+					if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
2504
+					$html = '';
2505
+					$html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2506
+					if($html_var=='post'){$html_var='post_address';}
2507
+					$field_icon = geodir_field_icon_proccess($type);
2508
+					$filed_type = $type['type'];
2509
+
2510
+					/**
2511
+					 * Filter the output for custom fields.
2512
+					 *
2513
+					 * Here we can remove or add new functions depending on the field type.
2514
+					 *
2515
+					 * @param string $html The html to be filtered (blank).
2516
+					 * @param string $fields_location The location the field is to be show.
2517
+					 * @param array $type The array of field values.
2518
+					 */
2519
+					$html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2520
+
2521
+
2522
+					/**
2523
+					 * Filter custom field output in tab.
2524
+					 *
2525
+					 * @since 1.5.6
2526
+					 *
2527
+					 * @param string $html_var The HTML variable name for the field.
2528
+					 * @param string $html Custom field unfiltered HTML.
2529
+					 * @param array $variables_array Custom field variables array.
2530
+					 */
2531
+					$html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2532
+
2533
+					$fieldset_html = '';
2534
+					if ($field_set_start == 1) {
2535
+						$add_html = false;
2536
+						if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2537
+							if ($fieldset != '') {
2538
+								$add_html = true;
2539
+								$label = $fieldset_arr[$fieldset_count - 1]['label'];
2540
+								$htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2541
+							}
2542
+							$fieldset_html = $fieldset;
2543
+							$fieldset = '';
2544
+						} else {
2545
+							$fieldset .= $html;
2546
+							if ($total_fields == $count_field && $fieldset != '') {
2547
+								$add_html = true;
2548
+								$label = $fieldset_arr[$fieldset_count]['label'];
2549
+								$htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2550
+								$fieldset_html = $fieldset;
2551
+							}
2552
+						}
2553
+
2554
+						if ($add_html) {
2555
+							$tabs_arr[$htmlvar_name] = array(
2556
+								'heading_text' => __($label, 'geodirectory'),
2557
+								'is_active_tab' => false,
2558
+								/**
2559
+								 * Filter if a custom field should be displayed on the details page tab.
2560
+								 *
2561
+								 * @since 1.0.0
2562
+								 * @param string $htmlvar_name The field HTML var name.
2563
+								 */
2564
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2565
+								'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2566
+							);
2567
+						}
2568
+					} else {
2569
+						if ($html != '') {
2570
+							$tabs_arr[$html_var] = array(
2571
+								'heading_text' => __($label, 'geodirectory'),
2572
+								'is_active_tab' => false,
2573
+								/** This action is documented in geodirectory_hooks_actions.php */
2574
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2575
+								'tab_content' => $html
2576
+							);
2577
+						}
2578
+					}
2579
+				}
2580
+			}
2581
+		}
2582
+	}
2583
+	return $tabs_arr;
2584 2584
 }
2585 2585
 
2586 2586
 /* display add listing page for wpml */
@@ -2604,39 +2604,39 @@  discard block
 block discarded – undo
2604 2604
  */
2605 2605
 function geodir_add_post_status_author_page()
2606 2606
 {
2607
-    global $wpdb, $post;
2608
-
2609
-    $html = '';
2610
-    if (get_current_user_id()) {
2611
-
2612
-        $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
2613
-        if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2614
-
2615
-            // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them.
2616
-            $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2617
-            $status = "<strong>(";
2618
-            $status_icon = '<i class="fa fa-play"></i>';
2619
-            if ($real_status == 'publish') {
2620
-                $status .= __('Published', 'geodirectory');
2621
-            } else {
2622
-                $status .= __('Not published', 'geodirectory');
2623
-                $status_icon = '<i class="fa fa-pause"></i>';
2624
-            }
2625
-            $status .= ")</strong>";
2607
+	global $wpdb, $post;
2608
+
2609
+	$html = '';
2610
+	if (get_current_user_id()) {
2611
+
2612
+		$is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
2613
+		if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2614
+
2615
+			// we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them.
2616
+			$real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2617
+			$status = "<strong>(";
2618
+			$status_icon = '<i class="fa fa-play"></i>';
2619
+			if ($real_status == 'publish') {
2620
+				$status .= __('Published', 'geodirectory');
2621
+			} else {
2622
+				$status .= __('Not published', 'geodirectory');
2623
+				$status_icon = '<i class="fa fa-pause"></i>';
2624
+			}
2625
+			$status .= ")</strong>";
2626 2626
 
2627
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2628
-        }
2629
-    }
2627
+			$html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2628
+		}
2629
+	}
2630 2630
 
2631
-    if ($html != '') {
2632
-        /**
2633
-         * Filter the post status text on the author page.
2634
-         *
2635
-         * @since 1.0.0
2636
-         * @param string $html The HTML of the status.
2637
-         */
2638
-        echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2639
-    }
2631
+	if ($html != '') {
2632
+		/**
2633
+		 * Filter the post status text on the author page.
2634
+		 *
2635
+		 * @since 1.0.0
2636
+		 * @param string $html The HTML of the status.
2637
+		 */
2638
+		echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2639
+	}
2640 2640
 
2641 2641
 
2642 2642
 }
@@ -2650,9 +2650,9 @@  discard block
 block discarded – undo
2650 2650
  * @package GeoDirectory
2651 2651
  */
2652 2652
 function geodir_init_no_rating() {
2653
-    if (geodir_rating_disabled_post_types()) {
2654
-        add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2655
-    }
2653
+	if (geodir_rating_disabled_post_types()) {
2654
+		add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2655
+	}
2656 2656
 }
2657 2657
 
2658 2658
 /**
@@ -2666,22 +2666,22 @@  discard block
 block discarded – undo
2666 2666
  * @return array Modified sort options array.
2667 2667
  */
2668 2668
 function geodir_no_rating_get_sort_options($options, $post_type = '') {
2669
-    if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
2670
-        $new_options = array();
2669
+	if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
2670
+		$new_options = array();
2671 2671
         
2672
-        if (!empty($options)) {
2673
-            foreach ($options as $option) {
2674
-                if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2675
-                    continue;
2676
-                }
2677
-                $new_options[] = $option;
2678
-            }
2672
+		if (!empty($options)) {
2673
+			foreach ($options as $option) {
2674
+				if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2675
+					continue;
2676
+				}
2677
+				$new_options[] = $option;
2678
+			}
2679 2679
 
2680
-            $options = $new_options;
2681
-        }
2682
-    }
2680
+			$options = $new_options;
2681
+		}
2682
+	}
2683 2683
 
2684
-    return $options;
2684
+	return $options;
2685 2685
 }
2686 2686
 
2687 2687
 /**
@@ -2693,9 +2693,9 @@  discard block
 block discarded – undo
2693 2693
  * @return array Modified class array.
2694 2694
  */
2695 2695
 function geodir_body_class_active_map($classes = array()) {
2696
-    $classes[] = 'gd-map-' . geodir_map_name();
2696
+	$classes[] = 'gd-map-' . geodir_map_name();
2697 2697
 
2698
-    return $classes;
2698
+	return $classes;
2699 2699
 }
2700 2700
 add_filter('body_class', 'geodir_body_class_active_map', 100);
2701 2701
 
@@ -2708,9 +2708,9 @@  discard block
 block discarded – undo
2708 2708
  * @return string Modified class string.
2709 2709
  */
2710 2710
 function geodir_admin_body_class_active_map($class = '') {    
2711
-    $class .= ' gd-map-' . geodir_map_name();
2711
+	$class .= ' gd-map-' . geodir_map_name();
2712 2712
 
2713
-    return $class;
2713
+	return $class;
2714 2714
 }
2715 2715
 add_filter('admin_body_class', 'geodir_admin_body_class_active_map', 100);
2716 2716
 
@@ -2728,36 +2728,36 @@  discard block
 block discarded – undo
2728 2728
  * @return array Translation texts.
2729 2729
  */
2730 2730
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2731
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2732
-
2733
-    $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
2734
-
2735
-    /**
2736
-     * Filters the geodirectory option names that requires to add for translation.
2737
-     *
2738
-     * @since 1.5.7
2739
-     * @package GeoDirectory
2740
-     *
2741
-     * @param  array $gd_options Array of option names.
2742
-     */
2743
-    $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2744
-    $gd_options = array_unique($gd_options);
2745
-
2746
-    if (!empty($gd_options)) {
2747
-        foreach ($gd_options as $gd_option) {
2748
-            if ($gd_option != '' && $option_value = get_option($gd_option)) {
2749
-                $option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2731
+	$translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2732
+
2733
+	$gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
2734
+
2735
+	/**
2736
+	 * Filters the geodirectory option names that requires to add for translation.
2737
+	 *
2738
+	 * @since 1.5.7
2739
+	 * @package GeoDirectory
2740
+	 *
2741
+	 * @param  array $gd_options Array of option names.
2742
+	 */
2743
+	$gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2744
+	$gd_options = array_unique($gd_options);
2745
+
2746
+	if (!empty($gd_options)) {
2747
+		foreach ($gd_options as $gd_option) {
2748
+			if ($gd_option != '' && $option_value = get_option($gd_option)) {
2749
+				$option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2750 2750
                 
2751
-                if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2752
-                    $translation_texts[] = stripslashes_deep($option_value);
2753
-                }
2754
-            }
2755
-        }
2756
-    }
2751
+				if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2752
+					$translation_texts[] = stripslashes_deep($option_value);
2753
+				}
2754
+			}
2755
+		}
2756
+	}
2757 2757
 
2758
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2758
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2759 2759
 
2760
-    return $translation_texts;
2760
+	return $translation_texts;
2761 2761
 }
2762 2762
 
2763 2763
 add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
@@ -2771,15 +2771,15 @@  discard block
 block discarded – undo
2771 2771
 
2772 2772
 add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
2773 2773
 function gd_get_comments_link($comments_link, $post_id) {
2774
-    $post_type = get_post_type($post_id);
2774
+	$post_type = get_post_type($post_id);
2775 2775
 
2776
-    $all_postypes = geodir_get_posttypes();
2777
-    if (in_array($post_type, $all_postypes)) {
2778
-        $comments_link = str_replace('#comments', '#reviews', $comments_link);
2779
-        $comments_link = str_replace('#respond', '#reviews', $comments_link);
2780
-    }
2776
+	$all_postypes = geodir_get_posttypes();
2777
+	if (in_array($post_type, $all_postypes)) {
2778
+		$comments_link = str_replace('#comments', '#reviews', $comments_link);
2779
+		$comments_link = str_replace('#respond', '#reviews', $comments_link);
2780
+	}
2781 2781
 
2782
-    return $comments_link;
2782
+	return $comments_link;
2783 2783
 }
2784 2784
 
2785 2785
 
@@ -2797,11 +2797,11 @@  discard block
 block discarded – undo
2797 2797
 function geodir_add_nav_menu_class( $args )
2798 2798
 {
2799 2799
 
2800
-        if(isset($args['menu_class'])){
2801
-            $args['menu_class'] = $args['menu_class']." gd-menu-z";
2802
-        }
2800
+		if(isset($args['menu_class'])){
2801
+			$args['menu_class'] = $args['menu_class']." gd-menu-z";
2802
+		}
2803 2803
     
2804
-    return $args;
2804
+	return $args;
2805 2805
 }
2806 2806
 
2807 2807
 add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
@@ -2818,15 +2818,15 @@  discard block
 block discarded – undo
2818 2818
  * @return string Filtered locale ID.
2819 2819
  */
2820 2820
 function geodir_wpml_filter_locale($locale) {
2821
-    global $sitepress;
2821
+	global $sitepress;
2822 2822
     
2823
-    $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : '');
2823
+	$post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : '');
2824 2824
     
2825
-    if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
2826
-        $locale = $sitepress->get_locale($current_lang);
2827
-    }
2825
+	if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
2826
+		$locale = $sitepress->get_locale($current_lang);
2827
+	}
2828 2828
     
2829
-    return $locale;
2829
+	return $locale;
2830 2830
 }
2831 2831
 
2832 2832
 /**
@@ -2836,19 +2836,19 @@  discard block
 block discarded – undo
2836 2836
  * @package GeoDirectory
2837 2837
  */
2838 2838
 function geodir_wpml_set_filter() {
2839
-    if (geodir_is_wpml()) {
2840
-        global $sitepress;
2839
+	if (geodir_is_wpml()) {
2840
+		global $sitepress;
2841 2841
         
2842
-        if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2843
-            add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
2844
-        }
2842
+		if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2843
+			add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
2844
+		}
2845 2845
         
2846
-        add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
2847
-        add_action( 'geodir_edit_post_link_html', 'geodir_wpml_frontend_duplicate_listing', 0, 1 );
2848
-        if (is_admin()) {
2849
-            add_filter( 'geodir_design_settings', 'geodir_wpml_duplicate_settings', 10, 1 );
2850
-        }
2851
-    }
2846
+		add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
2847
+		add_action( 'geodir_edit_post_link_html', 'geodir_wpml_frontend_duplicate_listing', 0, 1 );
2848
+		if (is_admin()) {
2849
+			add_filter( 'geodir_design_settings', 'geodir_wpml_duplicate_settings', 10, 1 );
2850
+		}
2851
+	}
2852 2852
 }
2853 2853
 add_filter('plugins_loaded', 'geodir_wpml_set_filter');
2854 2854
 
@@ -2861,38 +2861,38 @@  discard block
 block discarded – undo
2861 2861
  * @return array Filtered languages.
2862 2862
  */
2863 2863
 function geodir_wpml_filter_ls_languages($languages) {    
2864
-    if (geodir_is_geodir_page()) {        
2865
-        $keep_vars = array();
2864
+	if (geodir_is_geodir_page()) {        
2865
+		$keep_vars = array();
2866 2866
         
2867
-        if (geodir_is_page('add-listing')) {
2868
-            $keep_vars = array('listing_type', 'package_id');
2869
-        } else if (geodir_is_page('search')) {
2870
-            $keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
2871
-        } else if (geodir_is_page('author')) {
2872
-            $keep_vars = array('geodir_dashbord', 'stype', 'list');
2873
-        } else if (geodir_is_page('login')) {
2874
-            $keep_vars = array('forgot', 'signup');
2875
-        }        
2867
+		if (geodir_is_page('add-listing')) {
2868
+			$keep_vars = array('listing_type', 'package_id');
2869
+		} else if (geodir_is_page('search')) {
2870
+			$keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
2871
+		} else if (geodir_is_page('author')) {
2872
+			$keep_vars = array('geodir_dashbord', 'stype', 'list');
2873
+		} else if (geodir_is_page('login')) {
2874
+			$keep_vars = array('forgot', 'signup');
2875
+		}        
2876 2876
         
2877
-        if (!empty($keep_vars)) {
2878
-            foreach ( $languages as $code => $url) {
2879
-                $filter_url = $url['url'];
2877
+		if (!empty($keep_vars)) {
2878
+			foreach ( $languages as $code => $url) {
2879
+				$filter_url = $url['url'];
2880 2880
                 
2881
-                foreach ($keep_vars as $var) {
2882
-                    if (isset($_GET[$var]) && !is_array($_GET[$var])) {
2883
-                        $filter_url = remove_query_arg(array($var), $filter_url);
2884
-                        $filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url);
2885
-                    }
2886
-                }
2881
+				foreach ($keep_vars as $var) {
2882
+					if (isset($_GET[$var]) && !is_array($_GET[$var])) {
2883
+						$filter_url = remove_query_arg(array($var), $filter_url);
2884
+						$filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url);
2885
+					}
2886
+				}
2887 2887
                 
2888
-                if ($filter_url != $url['url']) {
2889
-                    $languages[$code]['url'] = $filter_url;
2890
-                }
2891
-            }
2892
-        }
2893
-    }
2888
+				if ($filter_url != $url['url']) {
2889
+					$languages[$code]['url'] = $filter_url;
2890
+				}
2891
+			}
2892
+		}
2893
+	}
2894 2894
 
2895
-    return $languages;
2895
+	return $languages;
2896 2896
 }
2897 2897
 add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 );
2898 2898
 
@@ -2903,18 +2903,18 @@  discard block
 block discarded – undo
2903 2903
  *
2904 2904
  */
2905 2905
 function geodir_remove_yoast_seo_metas(){
2906
-    if ( class_exists( 'WPSEO_Frontend' ) && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas() ) {
2907
-        $wpseo = WPSEO_Frontend::get_instance();
2906
+	if ( class_exists( 'WPSEO_Frontend' ) && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas() ) {
2907
+		$wpseo = WPSEO_Frontend::get_instance();
2908 2908
         
2909
-        remove_action( 'wp_head', array( $wpseo, 'metadesc' ), 6 );
2910
-        remove_action( 'wp_head', array( $wpseo, 'metakeywords' ), 11 );
2911
-        remove_filter( 'pre_get_document_title', array( $wpseo, 'title' ), 15 );
2912
-        remove_filter( 'wp_title', array( $wpseo, 'title' ), 15, 3 );
2913
-        remove_filter( 'thematic_doctitle', array( $wpseo, 'title' ), 15 );
2914
-        remove_filter( 'woo_title', array( $wpseo, 'fix_woo_title' ), 99 );
2909
+		remove_action( 'wp_head', array( $wpseo, 'metadesc' ), 6 );
2910
+		remove_action( 'wp_head', array( $wpseo, 'metakeywords' ), 11 );
2911
+		remove_filter( 'pre_get_document_title', array( $wpseo, 'title' ), 15 );
2912
+		remove_filter( 'wp_title', array( $wpseo, 'title' ), 15, 3 );
2913
+		remove_filter( 'thematic_doctitle', array( $wpseo, 'title' ), 15 );
2914
+		remove_filter( 'woo_title', array( $wpseo, 'fix_woo_title' ), 99 );
2915 2915
         
2916
-        remove_action( 'template_redirect', 'wpseo_frontend_head_init', 999 );
2917
-    }
2916
+		remove_action( 'template_redirect', 'wpseo_frontend_head_init', 999 );
2917
+	}
2918 2918
 }
2919 2919
 
2920 2920
 /**
@@ -2928,20 +2928,20 @@  discard block
 block discarded – undo
2928 2928
  *
2929 2929
  */
2930 2930
  function geodir_wpml_ajax_set_guest_lang() {    
2931
-    if ( geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in() ) {
2932
-        if ( empty( $_GET['lang'] ) && !( !empty( $_SERVER['REQUEST_URI'] ) && preg_match( '@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename( preg_replace( '@\?.*$@', '', $_SERVER['REQUEST_URI'] ) ) ) ) ) {
2933
-            global $sitepress;
2931
+	if ( geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in() ) {
2932
+		if ( empty( $_GET['lang'] ) && !( !empty( $_SERVER['REQUEST_URI'] ) && preg_match( '@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename( preg_replace( '@\?.*$@', '', $_SERVER['REQUEST_URI'] ) ) ) ) ) {
2933
+			global $sitepress;
2934 2934
             
2935
-            $referer = wp_get_referer();
2935
+			$referer = wp_get_referer();
2936 2936
             
2937
-            $current_lang = $sitepress->get_current_language();
2938
-            $referrer_lang = $sitepress->get_language_from_url( $referer );
2937
+			$current_lang = $sitepress->get_current_language();
2938
+			$referrer_lang = $sitepress->get_language_from_url( $referer );
2939 2939
             
2940
-            if ( $referrer_lang && $current_lang != $referrer_lang ) {
2941
-                $_GET['lang'] = $referrer_lang;
2942
-            }
2943
-        }
2944
-    }
2940
+			if ( $referrer_lang && $current_lang != $referrer_lang ) {
2941
+				$_GET['lang'] = $referrer_lang;
2942
+			}
2943
+		}
2944
+	}
2945 2945
 }
2946 2946
 add_action( 'plugins_loaded', 'geodir_wpml_ajax_set_guest_lang', -1 );
2947 2947
 
@@ -2953,36 +2953,36 @@  discard block
 block discarded – undo
2953 2953
  * @param object $wp The WordPress object.
2954 2954
  */
2955 2955
 function geodir_check_redirect($wp) {
2956
-    if (is_404() || (!empty($wp->query_vars['error']) && $wp->query_vars['error'] == '404')) {
2957
-        $current_url = geodir_curPageURL();
2958
-        $search = 'czech-republic';
2959
-        $replace = 'czechia';        
2956
+	if (is_404() || (!empty($wp->query_vars['error']) && $wp->query_vars['error'] == '404')) {
2957
+		$current_url = geodir_curPageURL();
2958
+		$search = 'czech-republic';
2959
+		$replace = 'czechia';        
2960 2960
         
2961
-        $has_slash = substr($current_url, -1);
2962
-        if ($has_slash != "/") {
2963
-            $current_url .= '/';
2964
-        }
2961
+		$has_slash = substr($current_url, -1);
2962
+		if ($has_slash != "/") {
2963
+			$current_url .= '/';
2964
+		}
2965 2965
         
2966
-        $redirect = false;
2967
-        if (strpos($current_url, '/' . $search . '/') !== false) {
2968
-            $redirect = true;
2969
-            $current_url = preg_replace('/\/' . $search . '\//', '/' . $replace . '/', $current_url, 1);
2970
-        }
2966
+		$redirect = false;
2967
+		if (strpos($current_url, '/' . $search . '/') !== false) {
2968
+			$redirect = true;
2969
+			$current_url = preg_replace('/\/' . $search . '\//', '/' . $replace . '/', $current_url, 1);
2970
+		}
2971 2971
         
2972
-        if ($has_slash != "/") {
2973
-            $current_url = trim($current_url, '/');
2974
-        }
2972
+		if ($has_slash != "/") {
2973
+			$current_url = trim($current_url, '/');
2974
+		}
2975 2975
         
2976
-        if (strpos($current_url, 'gd_country=' . $search) !== false) {
2977
-            $redirect = true;
2978
-            $current_url = str_replace('gd_country=' . $search, 'gd_country=' . $replace, $current_url);
2979
-        }
2980
-
2981
-        if ($redirect) {
2982
-            wp_redirect($current_url);
2983
-            exit;
2984
-        }
2985
-    }
2976
+		if (strpos($current_url, 'gd_country=' . $search) !== false) {
2977
+			$redirect = true;
2978
+			$current_url = str_replace('gd_country=' . $search, 'gd_country=' . $replace, $current_url);
2979
+		}
2980
+
2981
+		if ($redirect) {
2982
+			wp_redirect($current_url);
2983
+			exit;
2984
+		}
2985
+	}
2986 2986
 }
2987 2987
 add_action('parse_request', 'geodir_check_redirect', 101, 1);
2988 2988
 
@@ -3002,50 +3002,50 @@  discard block
 block discarded – undo
3002 3002
  * @param string $original_slug The original post slug.
3003 3003
  */
3004 3004
 function geodir_check_post_to_term_slug( $slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug ) {
3005
-    global $wpdb, $sitepress;
3005
+	global $wpdb, $sitepress;
3006 3006
     
3007
-    if ( $post_type && strpos( $post_type, 'gd_' ) === 0 ) {
3008
-        $wpml_post_join = "";
3009
-        $wpml_post_where = "";
3010
-        $wpml_term_join = "";
3011
-        $wpml_term_where = "";
3007
+	if ( $post_type && strpos( $post_type, 'gd_' ) === 0 ) {
3008
+		$wpml_post_join = "";
3009
+		$wpml_post_where = "";
3010
+		$wpml_term_join = "";
3011
+		$wpml_term_where = "";
3012 3012
         
3013
-        if (geodir_wpml_is_post_type_translated($post_type)) {
3014
-            $post_language = $post_ID ? $sitepress->post_translations()->get_element_lang_code($post_ID) : $sitepress->get_current_language();
3015
-            $post_language = $post_language ? $post_language : $sitepress->post_translations()->get_save_post_lang($post_ID, $sitepress);
3016
-            if (!$post_language) {
3017
-                $post_language = $sitepress->get_current_language();
3018
-            }
3013
+		if (geodir_wpml_is_post_type_translated($post_type)) {
3014
+			$post_language = $post_ID ? $sitepress->post_translations()->get_element_lang_code($post_ID) : $sitepress->get_current_language();
3015
+			$post_language = $post_language ? $post_language : $sitepress->post_translations()->get_save_post_lang($post_ID, $sitepress);
3016
+			if (!$post_language) {
3017
+				$post_language = $sitepress->get_current_language();
3018
+			}
3019 3019
             
3020
-            $wpml_post_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON p.ID = icl_t.element_id AND icl_t.element_type = CONCAT('post_', p.post_type)";
3021
-            $wpml_post_where = " AND icl_t.language_code = '" . $post_language ."'";
3020
+			$wpml_post_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON p.ID = icl_t.element_id AND icl_t.element_type = CONCAT('post_', p.post_type)";
3021
+			$wpml_post_where = " AND icl_t.language_code = '" . $post_language ."'";
3022 3022
             
3023
-            $wpml_term_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON icl_t.element_id = tt.term_taxonomy_id AND icl_t.element_type = CONCAT('tax_', tt.taxonomy)";
3024
-            $wpml_term_where = " AND icl_t.language_code = '" . $post_language ."'";
3025
-        }
3023
+			$wpml_term_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON icl_t.element_id = tt.term_taxonomy_id AND icl_t.element_type = CONCAT('tax_', tt.taxonomy)";
3024
+			$wpml_term_where = " AND icl_t.language_code = '" . $post_language ."'";
3025
+		}
3026 3026
 
3027
-        $term_slug_check = $wpdb->get_var( $wpdb->prepare( "SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '" . $post_type . "category' OR tt.taxonomy = '" . $post_type . "_tags' ) {$wpml_term_where} LIMIT 1", $slug ) );
3027
+		$term_slug_check = $wpdb->get_var( $wpdb->prepare( "SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '" . $post_type . "category' OR tt.taxonomy = '" . $post_type . "_tags' ) {$wpml_term_where} LIMIT 1", $slug ) );
3028 3028
 
3029
-        if ( $term_slug_check ) {
3030
-            $suffix = 1;
3029
+		if ( $term_slug_check ) {
3030
+			$suffix = 1;
3031 3031
             
3032
-            do {
3033
-                $alt_slug = _truncate_post_slug( $original_slug, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
3032
+			do {
3033
+				$alt_slug = _truncate_post_slug( $original_slug, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
3034 3034
                 
3035
-                $term_check = $wpdb->get_var( $wpdb->prepare( "SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '" . $post_type . "category' OR tt.taxonomy = '" . $post_type . "_tags' ) {$wpml_term_where} LIMIT 1", $alt_slug ) );
3035
+				$term_check = $wpdb->get_var( $wpdb->prepare( "SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '" . $post_type . "category' OR tt.taxonomy = '" . $post_type . "_tags' ) {$wpml_term_where} LIMIT 1", $alt_slug ) );
3036 3036
                 
3037
-                $post_check = !$term_check && $wpdb->get_var( $wpdb->prepare( "SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s AND p.ID != %d {$wpml_term_where} LIMIT 1", $alt_slug, $post_type, $post_ID ) );
3037
+				$post_check = !$term_check && $wpdb->get_var( $wpdb->prepare( "SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s AND p.ID != %d {$wpml_term_where} LIMIT 1", $alt_slug, $post_type, $post_ID ) );
3038 3038
                 
3039
-                $term_slug_check = $term_check || $post_check;
3039
+				$term_slug_check = $term_check || $post_check;
3040 3040
                 
3041
-                $suffix++;
3042
-            } while ( $term_slug_check );
3041
+				$suffix++;
3042
+			} while ( $term_slug_check );
3043 3043
             
3044
-            $slug = $alt_slug;
3045
-        }
3046
-    }
3044
+			$slug = $alt_slug;
3045
+		}
3046
+	}
3047 3047
     
3048
-    return $slug;
3048
+	return $slug;
3049 3049
 }
3050 3050
 add_filter( 'wp_unique_post_slug', 'geodir_check_post_to_term_slug', 101, 6 );
3051 3051
 
@@ -3065,47 +3065,47 @@  discard block
 block discarded – undo
3065 3065
  * @return bool true when exists. false when not exists.
3066 3066
  */
3067 3067
 function geodir_check_term_to_post_slug( $slug_exists, $slug, $term_id ) {
3068
-    global $wpdb, $gd_term_post_type, $gd_term_taxonomy, $sitepress;
3068
+	global $wpdb, $gd_term_post_type, $gd_term_taxonomy, $sitepress;
3069 3069
     
3070
-    if ( $slug_exists ) {
3071
-        return $slug_exists;
3072
-    }
3070
+	if ( $slug_exists ) {
3071
+		return $slug_exists;
3072
+	}
3073 3073
     
3074
-    if ( !empty( $gd_term_taxonomy ) && isset($gd_term_taxonomy[$term_id]) ) {
3075
-        $taxonomy = $gd_term_taxonomy[$term_id];
3076
-    } else {
3077
-        $taxonomy = $wpdb->get_var( $wpdb->prepare( "SELECT taxonomy FROM $wpdb->term_taxonomy WHERE term_id = %d LIMIT 1", $term_id ) );
3078
-        $gd_term_taxonomy[$term_id] = $taxonomy;
3079
-    }
3074
+	if ( !empty( $gd_term_taxonomy ) && isset($gd_term_taxonomy[$term_id]) ) {
3075
+		$taxonomy = $gd_term_taxonomy[$term_id];
3076
+	} else {
3077
+		$taxonomy = $wpdb->get_var( $wpdb->prepare( "SELECT taxonomy FROM $wpdb->term_taxonomy WHERE term_id = %d LIMIT 1", $term_id ) );
3078
+		$gd_term_taxonomy[$term_id] = $taxonomy;
3079
+	}
3080 3080
     
3081
-    if ( empty($taxonomy) ) {
3082
-        return $slug_exists;
3083
-    }
3081
+	if ( empty($taxonomy) ) {
3082
+		return $slug_exists;
3083
+	}
3084 3084
     
3085
-    if ( !empty( $gd_term_post_type ) && $gd_term_post_type[$term_id] ) {
3086
-        $post_type = $gd_term_post_type[$term_id];
3087
-    } else {
3088
-        $taxonomy_obj = get_taxonomy( $taxonomy );
3089
-        $post_type = !empty( $taxonomy_obj->object_type ) ? $taxonomy_obj->object_type[0] : NULL;
3090
-    }
3085
+	if ( !empty( $gd_term_post_type ) && $gd_term_post_type[$term_id] ) {
3086
+		$post_type = $gd_term_post_type[$term_id];
3087
+	} else {
3088
+		$taxonomy_obj = get_taxonomy( $taxonomy );
3089
+		$post_type = !empty( $taxonomy_obj->object_type ) ? $taxonomy_obj->object_type[0] : NULL;
3090
+	}
3091 3091
     
3092
-    $wpml_post_join = "";
3093
-    $wpml_post_where = "";
3092
+	$wpml_post_join = "";
3093
+	$wpml_post_where = "";
3094 3094
     
3095
-    if (geodir_wpml_is_taxonomy_translated($taxonomy) || geodir_wpml_is_post_type_translated($post_type)) {
3096
-        $term_language = $term_id ? geodir_get_language_for_element($term_id, 'tax_' . $taxonomy) : $sitepress->get_current_language();
3097
-        if (!$term_language) {
3098
-            $term_language = $sitepress->get_current_language();
3099
-        }
3095
+	if (geodir_wpml_is_taxonomy_translated($taxonomy) || geodir_wpml_is_post_type_translated($post_type)) {
3096
+		$term_language = $term_id ? geodir_get_language_for_element($term_id, 'tax_' . $taxonomy) : $sitepress->get_current_language();
3097
+		if (!$term_language) {
3098
+			$term_language = $sitepress->get_current_language();
3099
+		}
3100 3100
         
3101
-        $wpml_post_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON p.ID = icl_t.element_id AND icl_t.element_type = CONCAT('post_', p.post_type)";
3102
-        $wpml_post_where = " AND icl_t.language_code = '" . $term_language ."'";
3103
-    }
3101
+		$wpml_post_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON p.ID = icl_t.element_id AND icl_t.element_type = CONCAT('post_', p.post_type)";
3102
+		$wpml_post_where = " AND icl_t.language_code = '" . $term_language ."'";
3103
+	}
3104 3104
     
3105
-    if ( $post_type && $wpdb->get_var( $wpdb->prepare( "SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s  {$wpml_post_where} LIMIT 1", $slug, $post_type ) ) ) {
3106
-        $slug_exists = true;
3107
-    }
3105
+	if ( $post_type && $wpdb->get_var( $wpdb->prepare( "SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s  {$wpml_post_where} LIMIT 1", $slug, $post_type ) ) ) {
3106
+		$slug_exists = true;
3107
+	}
3108 3108
 
3109
-    return $slug_exists;
3109
+	return $slug_exists;
3110 3110
 }
3111 3111
 add_filter( 'geodir_term_slug_is_exists', 'geodir_check_term_to_post_slug', 10, 3 );
3112 3112
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +198 added lines, -198 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 /* ON TEMPLATE INCLUDE */
137 137
 /////////////////////////
138 138
 
139
-add_filter('template_include', 'geodir_template_loader',9);
139
+add_filter('template_include', 'geodir_template_loader', 9);
140 140
 
141 141
 /////////////////////////
142 142
 /* CATEGORY / TAXONOMY / CUSTOM POST ACTIONS */
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
 /* WP REVIEW COUNT ACTIONS */
177 177
 ////////////////////////
178 178
 
179
-add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100,1);
179
+add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100, 1);
180 180
 //add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
181
-add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
181
+add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
182 182
 //add_action('created_term', 'geodir_term_review_count_force_update', 100);
183 183
 add_action('edited_term', 'geodir_term_review_count_force_update', 100);
184 184
 add_action('delete_term', 'geodir_term_review_count_force_update', 100);
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_unset_prev_theme_nav_location($newname)
225 225
 {
226
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
226
+    $geodir_theme_location = get_option('geodir_theme_location_nav_'.$newname);
227 227
     if ($geodir_theme_location) {
228 228
         update_option('geodir_theme_location_nav', $geodir_theme_location);
229 229
     } else {
@@ -258,13 +258,13 @@  discard block
 block discarded – undo
258 258
     include_once('geodirectory-functions/listing_filters.php');
259 259
     
260 260
     // Theme My Login compatibility fix
261
-    if ( isset( $_REQUEST['geodir_search'] ) && class_exists( 'Theme_My_Login' ) ) {
262
-        remove_action( 'pre_get_posts', array( Theme_My_Login::get_object(), 'pre_get_posts' ) );
261
+    if (isset($_REQUEST['geodir_search']) && class_exists('Theme_My_Login')) {
262
+        remove_action('pre_get_posts', array(Theme_My_Login::get_object(), 'pre_get_posts'));
263 263
     }
264 264
     
265
-    if ( isset( $_REQUEST['geodir_search'] ) ) {
266
-        add_filter( 'geodir_filter_widget_listings_fields', 'geodir_search_widget_location_filter_fields', 100, 3 );
267
-        add_filter( 'geodir_filter_widget_listings_orderby', 'geodir_search_widget_location_filter_orderby', 100, 3 );
265
+    if (isset($_REQUEST['geodir_search'])) {
266
+        add_filter('geodir_filter_widget_listings_fields', 'geodir_search_widget_location_filter_fields', 100, 3);
267
+        add_filter('geodir_filter_widget_listings_orderby', 'geodir_search_widget_location_filter_orderby', 100, 3);
268 268
     }
269 269
 }
270 270
 
@@ -331,8 +331,8 @@  discard block
 block discarded – undo
331 331
 
332 332
 /////// GEO DIRECOTORY CUSTOM HOOKS ///
333 333
 
334
-add_action('geodir_before_tab_content', 'geodir_before_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content 
335
-add_action('geodir_after_tab_content', 'geodir_after_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
334
+add_action('geodir_before_tab_content', 'geodir_before_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content 
335
+add_action('geodir_after_tab_content', 'geodir_after_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
336 336
 
337 337
 // Detail page sidebar content 
338 338
 add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
@@ -432,8 +432,8 @@  discard block
 block discarded – undo
432 432
     do_action('geodir_after_social_sharing_buttons');
433 433
     $content_html = ob_get_clean();
434 434
     if (trim($content_html) != '')
435
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
436
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
435
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">'.$content_html.'</div>';
436
+    if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
437 437
         /**
438 438
          * Filter the geodir_social_sharing_buttons() function content.
439 439
          *
@@ -473,12 +473,12 @@  discard block
 block discarded – undo
473 473
             $post_id = $post->ID;
474 474
             
475 475
             if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
476
-                $post_id = (int)$_REQUEST['pid'];
476
+                $post_id = (int) $_REQUEST['pid'];
477 477
             }
478 478
 
479 479
             $postlink = get_permalink(geodir_add_listing_page_id());
480 480
             $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
481
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
481
+            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="'.esc_url($editlink).'">'.__('Edit this Post', 'geodirectory').'</a></p>';
482 482
         }
483 483
     }// end of if, if its a preview or not
484 484
     /**
@@ -489,8 +489,8 @@  discard block
 block discarded – undo
489 489
     do_action('geodir_after_edit_post_link');
490 490
     $content_html = ob_get_clean();
491 491
     if (trim($content_html) != '')
492
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
493
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
492
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">'.$content_html.'</div>';
493
+    if ((int) get_option('geodir_disable_user_links_section') != 1) {
494 494
         /**
495 495
          * Filter the geodir_edit_post_link() function content.
496 496
          *
@@ -511,8 +511,8 @@  discard block
 block discarded – undo
511 511
  */
512 512
 function geodir_detail_page_google_analytics()
513 513
 {
514
-    global $post,$preview;
515
-    if($preview){return '';}
514
+    global $post, $preview;
515
+    if ($preview) {return ''; }
516 516
     $package_info = array();
517 517
     $package_info = geodir_post_package_info($package_info, $post);
518 518
 
@@ -544,14 +544,14 @@  discard block
 block discarded – undo
544 544
     $hide_refresh = get_option('geodir_ga_auto_refresh');
545 545
     
546 546
     $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
547
-    if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
547
+    if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id() == $post->post_author || current_user_can('manage_options'))) {
548 548
         $page_url = urlencode($_SERVER['REQUEST_URI']);
549 549
         ?>
550 550
         <script type="text/javascript">
551 551
             var gd_gaTimeOut;
552
-            var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
553
-            var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>;
554
-            var gd_gaAutoRefresh = <?php echo $auto_refresh;?>;
552
+            var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
553
+            var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>;
554
+            var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>;
555 555
             ga_data1 = false;
556 556
             ga_data2 = false;
557 557
             ga_data3 = false;
@@ -692,7 +692,7 @@  discard block
 block discarded – undo
692 692
             }
693 693
 
694 694
             function gdga_noResults() {
695
-                jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
695
+                jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
696 696
                 jQuery('#gdga-legend-container').html('');
697 697
             }
698 698
 
@@ -724,18 +724,18 @@  discard block
 block discarded – undo
724 724
                     var data2 = results[1].rows.map(function(row) { return +row[2]; });
725 725
                     //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
726 726
 
727
-                    var labels = ['<?php _e('Jan', 'geodirectory');?>',
728
-                        '<?php _e('Feb', 'geodirectory');?>',
729
-                        '<?php _e('Mar', 'geodirectory');?>',
730
-                        '<?php _e('Apr', 'geodirectory');?>',
731
-                        '<?php _e('May', 'geodirectory');?>',
732
-                        '<?php _e('Jun', 'geodirectory');?>',
733
-                        '<?php _e('Jul', 'geodirectory');?>',
734
-                        '<?php _e('Aug', 'geodirectory');?>',
735
-                        '<?php _e('Sep', 'geodirectory');?>',
736
-                        '<?php _e('Oct', 'geodirectory');?>',
737
-                        '<?php _e('Nov', 'geodirectory');?>',
738
-                        '<?php _e('Dec', 'geodirectory');?>'];
727
+                    var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
728
+                        '<?php _e('Feb', 'geodirectory'); ?>',
729
+                        '<?php _e('Mar', 'geodirectory'); ?>',
730
+                        '<?php _e('Apr', 'geodirectory'); ?>',
731
+                        '<?php _e('May', 'geodirectory'); ?>',
732
+                        '<?php _e('Jun', 'geodirectory'); ?>',
733
+                        '<?php _e('Jul', 'geodirectory'); ?>',
734
+                        '<?php _e('Aug', 'geodirectory'); ?>',
735
+                        '<?php _e('Sep', 'geodirectory'); ?>',
736
+                        '<?php _e('Oct', 'geodirectory'); ?>',
737
+                        '<?php _e('Nov', 'geodirectory'); ?>',
738
+                        '<?php _e('Dec', 'geodirectory'); ?>'];
739 739
 
740 740
                     // Ensure the data arrays are at least as long as the labels array.
741 741
                     // Chart.js bar charts don't (yet) accept sparse datasets.
@@ -748,13 +748,13 @@  discard block
 block discarded – undo
748 748
                         labels : labels,
749 749
                         datasets : [
750 750
                             {
751
-                                label: '<?php _e('Last Year', 'geodirectory');?>',
751
+                                label: '<?php _e('Last Year', 'geodirectory'); ?>',
752 752
                                 fillColor : "rgba(220,220,220,0.5)",
753 753
                                 strokeColor : "rgba(220,220,220,1)",
754 754
                                 data : data2
755 755
                             },
756 756
                             {
757
-                                label: '<?php _e('This Year', 'geodirectory');?>',
757
+                                label: '<?php _e('This Year', 'geodirectory'); ?>',
758 758
                                 fillColor : "rgba(151,187,205,0.5)",
759 759
                                 strokeColor : "rgba(151,187,205,1)",
760 760
                                 data : data1
@@ -799,30 +799,30 @@  discard block
 block discarded – undo
799 799
 
800 800
                     <?php
801 801
                     // Here we list the shorthand days of the week so it can be used in translation.
802
-                    __("Mon",'geodirectory');
803
-                    __("Tue",'geodirectory');
804
-                    __("Wed",'geodirectory');
805
-                    __("Thu",'geodirectory');
806
-                    __("Fri",'geodirectory');
807
-                    __("Sat",'geodirectory');
808
-                    __("Sun",'geodirectory');
802
+                    __("Mon", 'geodirectory');
803
+                    __("Tue", 'geodirectory');
804
+                    __("Wed", 'geodirectory');
805
+                    __("Thu", 'geodirectory');
806
+                    __("Fri", 'geodirectory');
807
+                    __("Sat", 'geodirectory');
808
+                    __("Sun", 'geodirectory');
809 809
                     ?>
810 810
 
811 811
                     labels = [
812
-                        "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
813
-                        "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
814
-                        "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
815
-                        "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
816
-                        "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
817
-                        "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
818
-                        "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
812
+                        "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
813
+                        "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
814
+                        "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
815
+                        "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
816
+                        "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
817
+                        "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
818
+                        "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
819 819
                     ];
820 820
 
821 821
                     var data = {
822 822
                         labels : labels,
823 823
                         datasets : [
824 824
                             {
825
-                                label: '<?php _e('Last Week', 'geodirectory');?>',
825
+                                label: '<?php _e('Last Week', 'geodirectory'); ?>',
826 826
                                 fillColor : "rgba(220,220,220,0.5)",
827 827
                                 strokeColor : "rgba(220,220,220,1)",
828 828
                                 pointColor : "rgba(220,220,220,1)",
@@ -830,7 +830,7 @@  discard block
 block discarded – undo
830 830
                                 data : data2
831 831
                             },
832 832
                             {
833
-                                label: '<?php _e('This Week', 'geodirectory');?>',
833
+                                label: '<?php _e('This Week', 'geodirectory'); ?>',
834 834
                                 fillColor : "rgba(151,187,205,0.5)",
835 835
                                 strokeColor : "rgba(151,187,205,1)",
836 836
                                 pointColor : "rgba(151,187,205,1)",
@@ -1037,18 +1037,18 @@  discard block
 block discarded – undo
1037 1037
         </style>
1038 1038
         <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script>
1039 1039
         <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
1040
-        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
1040
+        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
1041 1041
         <span id="ga_stats" class="gdga-analytics-box" style="display:none">
1042
-            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
1042
+            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
1043 1043
             <div id="gd-active-users-container">
1044
-                <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory');?>"></i><?php _e("Active Users:", 'geodirectory');?>
1044
+                <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory'); ?>"></i><?php _e("Active Users:", 'geodirectory'); ?>
1045 1045
                     <b class="gd-ActiveUsers-value">0</b>
1046 1046
                 </div>
1047 1047
             </div>
1048 1048
             <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;">
1049
-                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
1050
-                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
1051
-                <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
1049
+                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
1050
+                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
1051
+                <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
1052 1052
             </select>
1053 1053
             <div class="Chartjs-figure" id="gdga-chart-container"></div>
1054 1054
             <ol class="Chartjs-legend" id="gdga-legend-container"></ol>
@@ -1064,8 +1064,8 @@  discard block
 block discarded – undo
1064 1064
     do_action('geodir_after_google_analytics');
1065 1065
     $content_html = ob_get_clean();
1066 1066
     if (trim($content_html) != '')
1067
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1068
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1067
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">'.$content_html.'</div>';
1068
+    if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
1069 1069
         /**
1070 1070
          * Filter the geodir_edit_post_link() function content.
1071 1071
          *
@@ -1091,7 +1091,7 @@  discard block
 block discarded – undo
1091 1091
 {
1092 1092
     global $post, $preview, $post_images;
1093 1093
     
1094
-    if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
1094
+    if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int) $post->ID)) {
1095 1095
         return;
1096 1096
     }
1097 1097
     ob_start(); // Start  buffering;
@@ -1126,10 +1126,10 @@  discard block
 block discarded – undo
1126 1126
        
1127 1127
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1128 1128
 	   
1129
-	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
1129
+	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="'.$post_avgratings.'">'.$post_avgratings.'</span> / <span itemprop="best" content="5">5</span> '.__("based on", 'geodirectory').' </span><span class="count" itemprop="count" content="'.$comment_count.'">'.$comment_count.' '.$reviews_text.'</span><br />';
1130 1130
 
1131 1131
         $html .= '<span class="item">';
1132
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1132
+        $html .= '<span class="fn" itemprop="itemreviewed">'.$post->post_title.'</span>';
1133 1133
 
1134 1134
         if ($post_images) {
1135 1135
             foreach ($post_images as $img) {
@@ -1139,7 +1139,7 @@  discard block
 block discarded – undo
1139 1139
         }
1140 1140
 
1141 1141
         if (isset($post_img) && $post_img) {
1142
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1142
+            $html .= '<br /><img src="'.$post_img.'" class="photo" alt="'.esc_attr($post->post_title).'" itemprop="photo" content="'.$post_img.'" class="photo" />';
1143 1143
         }
1144 1144
 
1145 1145
         $html .= '</span>';
@@ -1166,9 +1166,9 @@  discard block
 block discarded – undo
1166 1166
     do_action('geodir_after_detail_page_review_rating');
1167 1167
     $content_html = ob_get_clean();
1168 1168
     if (trim($content_html) != '') {
1169
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1169
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">'.$content_html.'</div>';
1170 1170
     }
1171
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1171
+    if ((int) get_option('geodir_disable_rating_info_section') != 1) {
1172 1172
         /**
1173 1173
          * Filter the geodir_detail_page_review_rating() function content.
1174 1174
          *
@@ -1207,8 +1207,8 @@  discard block
 block discarded – undo
1207 1207
 
1208 1208
     $content_html = ob_get_clean();
1209 1209
     if (trim($content_html) != '')
1210
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1211
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1210
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">'.$content_html.'</div>';
1211
+    if ((int) get_option('geodir_disable_listing_info_section') != 1) {
1212 1212
         /**
1213 1213
          * Filter the output html for function geodir_detail_page_more_info().
1214 1214
          *
@@ -1307,7 +1307,7 @@  discard block
 block discarded – undo
1307 1307
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
1308 1308
 		'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
1309 1309
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1310
-		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1310
+		'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1311 1311
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1312 1312
         'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1313 1313
         'geodir_map_name' => geodir_map_name(),
@@ -1336,10 +1336,10 @@  discard block
 block discarded – undo
1336 1336
     foreach ($arr_alert_msg as $key => $value) {
1337 1337
         if (!is_scalar($value))
1338 1338
             continue;
1339
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1339
+        $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
1340 1340
     }
1341 1341
 
1342
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1342
+    $script = "var geodir_all_js_msg = ".json_encode($arr_alert_msg).';';
1343 1343
     echo '<script>';
1344 1344
     echo $script;
1345 1345
     echo '</script>';
@@ -1429,7 +1429,7 @@  discard block
 block discarded – undo
1429 1429
         $geodir_old_sidebars = get_option('geodir_sidebars');
1430 1430
         if (is_array($geodir_old_sidebars)) {
1431 1431
             foreach ($geodir_old_sidebars as $key => $val) {
1432
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1432
+                if (0 === strpos($key, 'geodir_'))// if gd widget
1433 1433
                 {
1434 1434
                     $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1435 1435
                 }
@@ -1508,7 +1508,7 @@  discard block
 block discarded – undo
1508 1508
         global $post;
1509 1509
         $term_condition = '';
1510 1510
         if (isset($_REQUEST['backandedit'])) {
1511
-            $post = (object)$gd_session->get('listing');
1511
+            $post = (object) $gd_session->get('listing');
1512 1512
             $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1513 1513
         }
1514 1514
 
@@ -1522,7 +1522,7 @@  discard block
 block discarded – undo
1522 1522
                     echo 'checked="checked"';
1523 1523
                 } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1524 1524
                        class="geodir_textfield" value="1"
1525
-                       style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1525
+                       style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if ($terms_page) { echo get_permalink($terms_page); }?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1526 1526
 				</span>
1527 1527
             </div>
1528 1528
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
@@ -1562,7 +1562,7 @@  discard block
 block discarded – undo
1562 1562
         /** This action is documented in geodirectory_template_actions.php */
1563 1563
         $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1564 1564
         
1565
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1565
+        if (!($desc_limit === '' || (int) $desc_limit > 0)) {
1566 1566
             $is_display = false;
1567 1567
         }
1568 1568
     }
@@ -1610,16 +1610,16 @@  discard block
 block discarded – undo
1610 1610
     global $wpdb, $plugin_prefix;
1611 1611
 	
1612 1612
 	// Remove unused virtual page
1613
-	$listings_page_id = (int)get_option('geodir_listing_page');
1613
+	$listings_page_id = (int) get_option('geodir_listing_page');
1614 1614
 	if ($listings_page_id) {
1615
-		$wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1615
+		$wpdb->query($wpdb->prepare("DELETE FROM ".$wpdb->posts." WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1616 1616
         delete_option('geodir_listing_page');
1617 1617
 	}
1618 1618
 
1619 1619
     if (!get_option('geodir_changes_in_custom_fields_table')) {
1620 1620
         $wpdb->query(
1621 1621
             $wpdb->prepare(
1622
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1622
+                "UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET is_default=%s, is_admin=%s WHERE is_default=%s",
1623 1623
                 array('1', '1', 'admin')
1624 1624
             )
1625 1625
         );
@@ -1627,9 +1627,9 @@  discard block
 block discarded – undo
1627 1627
 
1628 1628
         /* --- terms meta value set --- */
1629 1629
 
1630
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1630
+        update_option('geodir_default_marker_icon', geodir_plugin_url().'/geodirectory-functions/map-functions/icons/pin.png');
1631 1631
 
1632
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1632
+        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE option_name LIKE %s", array('%tax_meta_%')));
1633 1633
 
1634 1634
         if (!empty($options_data)) {
1635 1635
 
@@ -1637,7 +1637,7 @@  discard block
 block discarded – undo
1637 1637
 
1638 1638
                 $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1639 1639
 
1640
-                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1640
+                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM ".$wpdb->prefix."term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1641 1641
 
1642 1642
                 if (!empty($taxonomies_data)) {
1643 1643
 
@@ -1646,17 +1646,17 @@  discard block
 block discarded – undo
1646 1646
                         $taxObject = get_taxonomy($taxobj->taxonomy);
1647 1647
                         $post_type = $taxObject->object_type[0];
1648 1648
 
1649
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1649
+                        $opt_value = 'tax_meta_'.$post_type.'_'.$option_val;
1650 1650
 
1651
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1651
+                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM ".$wpdb->prefix."options WHERE option_name=%s", array('tax_meta_'.$option_val)));
1652 1652
 
1653 1653
                         if ($duplicate_data) {
1654 1654
 
1655
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1655
+                            $wpdb->query($wpdb->prepare("UPDATE ".$wpdb->prefix."options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1656 1656
 
1657 1657
                         } else {
1658 1658
 
1659
-                            $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1659
+                            $wpdb->query($wpdb->prepare("INSERT INTO ".$wpdb->prefix."options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1660 1660
 
1661 1661
                         }
1662 1662
 
@@ -1690,14 +1690,14 @@  discard block
 block discarded – undo
1690 1690
 
1691 1691
     global $wpdb, $table_prefix;
1692 1692
 
1693
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1693
+    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($slug)));
1694 1694
 
1695 1695
     if ($slug_exists) {
1696 1696
 
1697 1697
         $suffix = 1;
1698 1698
         do {
1699
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1700
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1699
+            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix";
1700
+            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($alt_location_name)));
1701 1701
             $suffix++;
1702 1702
         } while ($location_slug_check && $suffix < 100);
1703 1703
 
@@ -1751,7 +1751,7 @@  discard block
 block discarded – undo
1751 1751
 
1752 1752
         $suffix = 1;
1753 1753
         do {
1754
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1754
+            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix";
1755 1755
 
1756 1756
             /** This action is documented in geodirectory_hooks_actions.php */
1757 1757
             $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
@@ -1763,7 +1763,7 @@  discard block
 block discarded – undo
1763 1763
 
1764 1764
         //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1765 1765
 
1766
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1766
+        $wpdb->query($wpdb->prepare("UPDATE ".$table_prefix."terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1767 1767
 
1768 1768
     }
1769 1769
 	
@@ -1772,18 +1772,18 @@  discard block
 block discarded – undo
1772 1772
 	$post_type = !empty($taxonomy_obj) ? $taxonomy_obj->object_type[0] : NULL;
1773 1773
 	
1774 1774
 	$post_types = geodir_get_posttypes();
1775
-	if ($post_type && in_array($post_type, $post_types) && $post_type . '_tags' == $taxonomy) {		
1776
-		$posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM " . $wpdb->term_relationships . " WHERE term_taxonomy_id = %d", array($tt_id)));
1775
+	if ($post_type && in_array($post_type, $post_types) && $post_type.'_tags' == $taxonomy) {		
1776
+		$posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM ".$wpdb->term_relationships." WHERE term_taxonomy_id = %d", array($tt_id)));
1777 1777
 		
1778 1778
 		if (!empty($posts_obj)) {
1779 1779
 			foreach ($posts_obj as $post_obj) {
1780 1780
 				$post_id = $post_obj->object_id;
1781 1781
 				
1782
-				$raw_tags = wp_get_object_terms($post_id, $post_type . '_tags', array('fields' => 'names'));
1782
+				$raw_tags = wp_get_object_terms($post_id, $post_type.'_tags', array('fields' => 'names'));
1783 1783
 				$post_tags = !empty($raw_tags) ? implode(',', $raw_tags) : '';
1784 1784
 				
1785
-				$listing_table = $plugin_prefix . $post_type . '_detail';
1786
-				$wpdb->query($wpdb->prepare("UPDATE " . $listing_table . " SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
1785
+				$listing_table = $plugin_prefix.$post_type.'_detail';
1786
+				$wpdb->query($wpdb->prepare("UPDATE ".$listing_table." SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
1787 1787
 			}
1788 1788
 		}
1789 1789
 	}
@@ -1817,7 +1817,7 @@  discard block
 block discarded – undo
1817 1817
     if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1818 1818
         return $slug_exists = true;
1819 1819
 
1820
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1820
+    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1821 1821
         return $slug_exists = true;
1822 1822
 
1823 1823
     return $slug_exists;
@@ -1858,43 +1858,43 @@  discard block
 block discarded – undo
1858 1858
 
1859 1859
 
1860 1860
     $gd_page = '';
1861
-    if(geodir_is_page('home')){
1861
+    if (geodir_is_page('home')) {
1862 1862
         $gd_page = 'home';
1863 1863
         $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1864 1864
     }
1865
-    elseif(geodir_is_page('detail')){
1865
+    elseif (geodir_is_page('detail')) {
1866 1866
         $gd_page = 'detail';
1867 1867
         $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1868 1868
     }
1869
-    elseif(geodir_is_page('pt')){
1869
+    elseif (geodir_is_page('pt')) {
1870 1870
         $gd_page = 'pt';
1871 1871
         $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1872 1872
     }
1873
-    elseif(geodir_is_page('listing')){
1873
+    elseif (geodir_is_page('listing')) {
1874 1874
         $gd_page = 'listing';
1875 1875
         $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1876 1876
     }
1877
-    elseif(geodir_is_page('location')){
1877
+    elseif (geodir_is_page('location')) {
1878 1878
         $gd_page = 'location';
1879 1879
         $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1880 1880
     }
1881
-    elseif(geodir_is_page('search')){
1881
+    elseif (geodir_is_page('search')) {
1882 1882
         $gd_page = 'search';
1883 1883
         $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1884 1884
     }
1885
-    elseif(geodir_is_page('add-listing')){
1885
+    elseif (geodir_is_page('add-listing')) {
1886 1886
         $gd_page = 'add-listing';
1887 1887
         $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1888 1888
     }
1889
-    elseif(geodir_is_page('author')){
1889
+    elseif (geodir_is_page('author')) {
1890 1890
         $gd_page = 'author';
1891 1891
         $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1892 1892
     }
1893
-    elseif(geodir_is_page('login')){
1893
+    elseif (geodir_is_page('login')) {
1894 1894
         $gd_page = 'login';
1895 1895
         $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1896 1896
     }
1897
-    elseif(geodir_is_page('listing-success')){
1897
+    elseif (geodir_is_page('listing-success')) {
1898 1898
         $gd_page = 'listing-success';
1899 1899
         $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1900 1900
     }
@@ -1926,12 +1926,12 @@  discard block
 block discarded – undo
1926 1926
 
1927 1927
     if (!get_option('geodir_set_post_attachments')) {
1928 1928
 
1929
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1930
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1929
+        require_once(ABSPATH.'wp-admin/includes/image.php');
1930
+        require_once(ABSPATH.'wp-admin/includes/file.php');
1931 1931
 
1932 1932
         $all_postypes = geodir_get_posttypes();
1933 1933
 
1934
-        foreach($all_postypes as $post_type){
1934
+        foreach ($all_postypes as $post_type) {
1935 1935
             $args = array(
1936 1936
                 'posts_per_page' => -1,
1937 1937
                 'post_type' => $post_type,
@@ -2025,7 +2025,7 @@  discard block
 block discarded – undo
2025 2025
 {
2026 2026
     $user_id = get_current_user_id();
2027 2027
 
2028
-    if(!$user_id){return $post;}
2028
+    if (!$user_id) {return $post; }
2029 2029
 
2030 2030
     $gd_post_types = geodir_get_posttypes();
2031 2031
 
@@ -2134,7 +2134,7 @@  discard block
 block discarded – undo
2134 2134
 
2135 2135
         if (array_key_exists('post_video', $tabs_arr)) {
2136 2136
 
2137
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2137
+            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2138 2138
 
2139 2139
             if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2140 2140
                 $tabs_arr['post_video']['heading_text'] = $field_title;
@@ -2142,7 +2142,7 @@  discard block
 block discarded – undo
2142 2142
 
2143 2143
         if (array_key_exists('special_offers', $tabs_arr)) {
2144 2144
 
2145
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2145
+            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2146 2146
 
2147 2147
             if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2148 2148
                 $tabs_arr['special_offers']['heading_text'] = $field_title;
@@ -2163,7 +2163,7 @@  discard block
 block discarded – undo
2163 2163
  */
2164 2164
 function geodir_remove_template_redirect_actions()
2165 2165
 {
2166
-    if (geodir_is_page('login')){
2166
+    if (geodir_is_page('login')) {
2167 2167
         remove_all_actions('template_redirect');
2168 2168
         remove_action('init', 'avia_modify_front', 10);
2169 2169
     }
@@ -2210,25 +2210,25 @@  discard block
 block discarded – undo
2210 2210
         $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2211 2211
 
2212 2212
         $wpdb->query(
2213
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2213
+            $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d AND file=%s ",
2214 2214
                 array($post_id, $split_img_file_path)
2215 2215
             )
2216 2216
         );
2217 2217
 
2218 2218
         $attachment_data = $wpdb->get_row(
2219
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2219
+            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=%d",
2220 2220
                 array($post_id)
2221 2221
             )
2222 2222
         );
2223 2223
 
2224 2224
         if (!empty($attachment_data)) {
2225
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2225
+            $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
2226 2226
         }
2227 2227
 
2228 2228
 
2229
-        $table_name = $plugin_prefix . $post_type . '_detail';
2229
+        $table_name = $plugin_prefix.$post_type.'_detail';
2230 2230
 
2231
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2231
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='' WHERE post_id =".$post_id);
2232 2232
 
2233 2233
         geodir_set_wp_featured_image($post_id);
2234 2234
 
@@ -2256,9 +2256,9 @@  discard block
 block discarded – undo
2256 2256
 
2257 2257
     foreach ($all_postypes as $posttype) {
2258 2258
 
2259
-        $tablename = $plugin_prefix . $posttype . '_detail';
2259
+        $tablename = $plugin_prefix.$posttype.'_detail';
2260 2260
 
2261
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2261
+        $get_post_data = $wpdb->get_results("SELECT post_id FROM ".$tablename);
2262 2262
 
2263 2263
         if (!empty($get_post_data)) {
2264 2264
 
@@ -2266,7 +2266,7 @@  discard block
 block discarded – undo
2266 2266
 
2267 2267
                 $post_id = $data->post_id;
2268 2268
 
2269
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2269
+                $attachment_data = $wpdb->get_results("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id =".$post_id." AND file!=''");
2270 2270
 
2271 2271
                 if (!empty($attachment_data)) {
2272 2272
 
@@ -2283,22 +2283,22 @@  discard block
 block discarded – undo
2283 2283
 
2284 2284
                         $file_name = $file_info['basename'];
2285 2285
 
2286
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2286
+                        $img_arr['path'] = $uploads_path.$sub_dir.'/'.$file_name;
2287 2287
 
2288 2288
                         if (!file_exists($img_arr['path'])) {
2289 2289
 
2290
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2290
+                            $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ID=".$attach->ID);
2291 2291
 
2292 2292
                         }
2293 2293
 
2294 2294
                     }
2295 2295
 
2296
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2296
+                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=".$post_id." GROUP BY post_id");
2297 2297
 
2298 2298
                     if (!empty($attachment_data)) {
2299 2299
 
2300 2300
                         if ($attachment_data->ID)
2301
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2301
+                            $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
2302 2302
 
2303 2303
                     } else {
2304 2304
 
@@ -2312,7 +2312,7 @@  discard block
 block discarded – undo
2312 2312
 
2313 2313
                     }
2314 2314
 
2315
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2315
+                    $wpdb->query("UPDATE ".$tablename." SET featured_image='' WHERE post_id =".$post_id);
2316 2316
 
2317 2317
                     geodir_set_wp_featured_image($post_id);
2318 2318
 
@@ -2341,7 +2341,7 @@  discard block
 block discarded – undo
2341 2341
 {
2342 2342
 
2343 2343
     if (!get_option('geodir_default_rating_star_icon')) {
2344
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2344
+        update_option('geodir_default_rating_star_icon', geodir_plugin_url().'/geodirectory-assets/images/stars.png');
2345 2345
     }
2346 2346
 
2347 2347
 }
@@ -2361,7 +2361,7 @@  discard block
 block discarded – undo
2361 2361
 function geodir_user_post_listing_count($user_id = 0)
2362 2362
 {
2363 2363
     global $wpdb, $plugin_prefix, $current_user;
2364
-    if(!$user_id){
2364
+    if (!$user_id) {
2365 2365
         $user_id = $current_user->ID;
2366 2366
     }
2367 2367
 
@@ -2370,7 +2370,7 @@  discard block
 block discarded – undo
2370 2370
     $user_listing = array();
2371 2371
     if ($user_id && is_array($all_posts) && !empty($all_posts)) {
2372 2372
         foreach ($all_posts as $ptype) {
2373
-            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2373
+            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM ".$wpdb->prefix."posts WHERE post_author=".$user_id." AND post_type='".$ptype."' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2374 2374
 
2375 2375
             if ($total_posts > 0) {
2376 2376
                 $user_listing[$ptype] = $total_posts;
@@ -2411,19 +2411,19 @@  discard block
 block discarded – undo
2411 2411
 
2412 2412
         $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2413 2413
         //remove video and special offers if it is already set to show
2414
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2414
+        if (isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']) {
2415 2415
             $unset_video = true;
2416 2416
         }
2417 2417
 
2418
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2418
+        if (isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']) {
2419 2419
             $unset_special_offers = true;
2420 2420
         }
2421
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2422
-            foreach($custom_fields as $key => $custom_field){
2423
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2421
+        if (isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)) {
2422
+            foreach ($custom_fields as $key => $custom_field) {
2423
+                if ($custom_field['name'] == 'geodir_video' && isset($unset_video)) {
2424 2424
                     unset($custom_fields[$key]);
2425 2425
                 }
2426
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2426
+                if ($custom_field['name'] == 'geodir_special_offers' && isset($unset_special_offers)) {
2427 2427
                     unset($custom_fields[$key]);
2428 2428
                 }
2429 2429
             }
@@ -2440,7 +2440,7 @@  discard block
 block discarded – undo
2440 2440
                     $post->{$field_name} = $_REQUEST[$field_name];
2441 2441
                 }
2442 2442
 
2443
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2443
+                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
2444 2444
                     if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2445 2445
                         continue;
2446 2446
                     }
@@ -2473,7 +2473,7 @@  discard block
 block discarded – undo
2473 2473
                     $post->{$field_name} = $_REQUEST[$field_name];
2474 2474
                 }
2475 2475
 
2476
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2476
+                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
2477 2477
                     $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2478 2478
                     $site_title = trim($field['site_title']);
2479 2479
                     $type = $field;
@@ -2489,21 +2489,21 @@  discard block
 block discarded – undo
2489 2489
                         $variables_array['label'] = __($type['site_title'], 'geodirectory');
2490 2490
                         $variables_array['value'] = isset($post->{$type['htmlvar_name']}) ? $post->{$type['htmlvar_name']} : '';
2491 2491
 
2492
-                    }else{
2492
+                    } else {
2493 2493
                         $i = 0;
2494 2494
                         $fieldset_count++;
2495 2495
                         $field_set_start = 1;
2496
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2496
+                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_'.$fieldset_count;
2497 2497
                         $fieldset_arr[$fieldset_count]['label'] = $label;
2498 2498
                     }
2499 2499
 
2500 2500
 
2501
-                    if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
2501
+                    if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; }
2502 2502
                     $type = stripslashes_deep($type); // strip slashes
2503
-                    if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
2503
+                    if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; }
2504 2504
                     $html = '';
2505 2505
                     $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2506
-                    if($html_var=='post'){$html_var='post_address';}
2506
+                    if ($html_var == 'post') {$html_var = 'post_address'; }
2507 2507
                     $field_icon = geodir_field_icon_proccess($type);
2508 2508
                     $filed_type = $type['type'];
2509 2509
 
@@ -2516,7 +2516,7 @@  discard block
 block discarded – undo
2516 2516
                      * @param string $fields_location The location the field is to be show.
2517 2517
                      * @param array $type The array of field values.
2518 2518
                      */
2519
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2519
+                    $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
2520 2520
 
2521 2521
 
2522 2522
                     /**
@@ -2562,7 +2562,7 @@  discard block
 block discarded – undo
2562 2562
                                  * @param string $htmlvar_name The field HTML var name.
2563 2563
                                  */
2564 2564
                                 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2565
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2565
+                                'tab_content' => '<div class="geodir-company_info field-group xxx">'.$fieldset_html.'</div>'
2566 2566
                             );
2567 2567
                         }
2568 2568
                     } else {
@@ -2624,7 +2624,7 @@  discard block
 block discarded – undo
2624 2624
             }
2625 2625
             $status .= ")</strong>";
2626 2626
 
2627
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2627
+            $html = '<span class="geodir-post-status">'.$status_icon.' <font class="geodir-status-label">'.__('Status: ', 'geodirectory').'</font>'.$status.'</span>';
2628 2628
         }
2629 2629
     }
2630 2630
 
@@ -2693,7 +2693,7 @@  discard block
 block discarded – undo
2693 2693
  * @return array Modified class array.
2694 2694
  */
2695 2695
 function geodir_body_class_active_map($classes = array()) {
2696
-    $classes[] = 'gd-map-' . geodir_map_name();
2696
+    $classes[] = 'gd-map-'.geodir_map_name();
2697 2697
 
2698 2698
     return $classes;
2699 2699
 }
@@ -2708,7 +2708,7 @@  discard block
 block discarded – undo
2708 2708
  * @return string Modified class string.
2709 2709
  */
2710 2710
 function geodir_admin_body_class_active_map($class = '') {    
2711
-    $class .= ' gd-map-' . geodir_map_name();
2711
+    $class .= ' gd-map-'.geodir_map_name();
2712 2712
 
2713 2713
     return $class;
2714 2714
 }
@@ -2728,7 +2728,7 @@  discard block
 block discarded – undo
2728 2728
  * @return array Translation texts.
2729 2729
  */
2730 2730
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2731
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2731
+    $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array();
2732 2732
 
2733 2733
     $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
2734 2734
 
@@ -2794,17 +2794,17 @@  discard block
 block discarded – undo
2794 2794
  * @param array $args The array of menu arguments.
2795 2795
  * @return array The modified arguments.
2796 2796
  */
2797
-function geodir_add_nav_menu_class( $args )
2797
+function geodir_add_nav_menu_class($args)
2798 2798
 {
2799 2799
 
2800
-        if(isset($args['menu_class'])){
2800
+        if (isset($args['menu_class'])) {
2801 2801
             $args['menu_class'] = $args['menu_class']." gd-menu-z";
2802 2802
         }
2803 2803
     
2804 2804
     return $args;
2805 2805
 }
2806 2806
 
2807
-add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
2807
+add_filter('wp_nav_menu_args', 'geodir_add_nav_menu_class');
2808 2808
 
2809 2809
 /**
2810 2810
  * Filters WordPress locale ID.
@@ -2844,9 +2844,9 @@  discard block
 block discarded – undo
2844 2844
         }
2845 2845
         
2846 2846
         add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
2847
-        add_action( 'geodir_edit_post_link_html', 'geodir_wpml_frontend_duplicate_listing', 0, 1 );
2847
+        add_action('geodir_edit_post_link_html', 'geodir_wpml_frontend_duplicate_listing', 0, 1);
2848 2848
         if (is_admin()) {
2849
-            add_filter( 'geodir_design_settings', 'geodir_wpml_duplicate_settings', 10, 1 );
2849
+            add_filter('geodir_design_settings', 'geodir_wpml_duplicate_settings', 10, 1);
2850 2850
         }
2851 2851
     }
2852 2852
 }
@@ -2875,7 +2875,7 @@  discard block
 block discarded – undo
2875 2875
         }        
2876 2876
         
2877 2877
         if (!empty($keep_vars)) {
2878
-            foreach ( $languages as $code => $url) {
2878
+            foreach ($languages as $code => $url) {
2879 2879
                 $filter_url = $url['url'];
2880 2880
                 
2881 2881
                 foreach ($keep_vars as $var) {
@@ -2894,7 +2894,7 @@  discard block
 block discarded – undo
2894 2894
 
2895 2895
     return $languages;
2896 2896
 }
2897
-add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 );
2897
+add_filter('icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1);
2898 2898
 
2899 2899
 /**
2900 2900
  * Remove Yoast SEO hook if disabled on GD pages.
@@ -2902,18 +2902,18 @@  discard block
 block discarded – undo
2902 2902
  * @since 1.6.18
2903 2903
  *
2904 2904
  */
2905
-function geodir_remove_yoast_seo_metas(){
2906
-    if ( class_exists( 'WPSEO_Frontend' ) && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas() ) {
2905
+function geodir_remove_yoast_seo_metas() {
2906
+    if (class_exists('WPSEO_Frontend') && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas()) {
2907 2907
         $wpseo = WPSEO_Frontend::get_instance();
2908 2908
         
2909
-        remove_action( 'wp_head', array( $wpseo, 'metadesc' ), 6 );
2910
-        remove_action( 'wp_head', array( $wpseo, 'metakeywords' ), 11 );
2911
-        remove_filter( 'pre_get_document_title', array( $wpseo, 'title' ), 15 );
2912
-        remove_filter( 'wp_title', array( $wpseo, 'title' ), 15, 3 );
2913
-        remove_filter( 'thematic_doctitle', array( $wpseo, 'title' ), 15 );
2914
-        remove_filter( 'woo_title', array( $wpseo, 'fix_woo_title' ), 99 );
2909
+        remove_action('wp_head', array($wpseo, 'metadesc'), 6);
2910
+        remove_action('wp_head', array($wpseo, 'metakeywords'), 11);
2911
+        remove_filter('pre_get_document_title', array($wpseo, 'title'), 15);
2912
+        remove_filter('wp_title', array($wpseo, 'title'), 15, 3);
2913
+        remove_filter('thematic_doctitle', array($wpseo, 'title'), 15);
2914
+        remove_filter('woo_title', array($wpseo, 'fix_woo_title'), 99);
2915 2915
         
2916
-        remove_action( 'template_redirect', 'wpseo_frontend_head_init', 999 );
2916
+        remove_action('template_redirect', 'wpseo_frontend_head_init', 999);
2917 2917
     }
2918 2918
 }
2919 2919
 
@@ -2928,22 +2928,22 @@  discard block
 block discarded – undo
2928 2928
  *
2929 2929
  */
2930 2930
  function geodir_wpml_ajax_set_guest_lang() {    
2931
-    if ( geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in() ) {
2932
-        if ( empty( $_GET['lang'] ) && !( !empty( $_SERVER['REQUEST_URI'] ) && preg_match( '@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename( preg_replace( '@\?.*$@', '', $_SERVER['REQUEST_URI'] ) ) ) ) ) {
2931
+    if (geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in()) {
2932
+        if (empty($_GET['lang']) && !(!empty($_SERVER['REQUEST_URI']) && preg_match('@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename(preg_replace('@\?.*$@', '', $_SERVER['REQUEST_URI']))))) {
2933 2933
             global $sitepress;
2934 2934
             
2935 2935
             $referer = wp_get_referer();
2936 2936
             
2937 2937
             $current_lang = $sitepress->get_current_language();
2938
-            $referrer_lang = $sitepress->get_language_from_url( $referer );
2938
+            $referrer_lang = $sitepress->get_language_from_url($referer);
2939 2939
             
2940
-            if ( $referrer_lang && $current_lang != $referrer_lang ) {
2940
+            if ($referrer_lang && $current_lang != $referrer_lang) {
2941 2941
                 $_GET['lang'] = $referrer_lang;
2942 2942
             }
2943 2943
         }
2944 2944
     }
2945 2945
 }
2946
-add_action( 'plugins_loaded', 'geodir_wpml_ajax_set_guest_lang', -1 );
2946
+add_action('plugins_loaded', 'geodir_wpml_ajax_set_guest_lang', -1);
2947 2947
 
2948 2948
 /**
2949 2949
  * Change country slug czech-republic to czechia and redirect.
@@ -2964,18 +2964,18 @@  discard block
 block discarded – undo
2964 2964
         }
2965 2965
         
2966 2966
         $redirect = false;
2967
-        if (strpos($current_url, '/' . $search . '/') !== false) {
2967
+        if (strpos($current_url, '/'.$search.'/') !== false) {
2968 2968
             $redirect = true;
2969
-            $current_url = preg_replace('/\/' . $search . '\//', '/' . $replace . '/', $current_url, 1);
2969
+            $current_url = preg_replace('/\/'.$search.'\//', '/'.$replace.'/', $current_url, 1);
2970 2970
         }
2971 2971
         
2972 2972
         if ($has_slash != "/") {
2973 2973
             $current_url = trim($current_url, '/');
2974 2974
         }
2975 2975
         
2976
-        if (strpos($current_url, 'gd_country=' . $search) !== false) {
2976
+        if (strpos($current_url, 'gd_country='.$search) !== false) {
2977 2977
             $redirect = true;
2978
-            $current_url = str_replace('gd_country=' . $search, 'gd_country=' . $replace, $current_url);
2978
+            $current_url = str_replace('gd_country='.$search, 'gd_country='.$replace, $current_url);
2979 2979
         }
2980 2980
 
2981 2981
         if ($redirect) {
@@ -3001,10 +3001,10 @@  discard block
 block discarded – undo
3001 3001
  * @param int    $post_parent   Post parent ID
3002 3002
  * @param string $original_slug The original post slug.
3003 3003
  */
3004
-function geodir_check_post_to_term_slug( $slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug ) {
3004
+function geodir_check_post_to_term_slug($slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug) {
3005 3005
     global $wpdb, $sitepress;
3006 3006
     
3007
-    if ( $post_type && strpos( $post_type, 'gd_' ) === 0 ) {
3007
+    if ($post_type && strpos($post_type, 'gd_') === 0) {
3008 3008
         $wpml_post_join = "";
3009 3009
         $wpml_post_where = "";
3010 3010
         $wpml_term_join = "";
@@ -3018,28 +3018,28 @@  discard block
 block discarded – undo
3018 3018
             }
3019 3019
             
3020 3020
             $wpml_post_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON p.ID = icl_t.element_id AND icl_t.element_type = CONCAT('post_', p.post_type)";
3021
-            $wpml_post_where = " AND icl_t.language_code = '" . $post_language ."'";
3021
+            $wpml_post_where = " AND icl_t.language_code = '".$post_language."'";
3022 3022
             
3023 3023
             $wpml_term_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON icl_t.element_id = tt.term_taxonomy_id AND icl_t.element_type = CONCAT('tax_', tt.taxonomy)";
3024
-            $wpml_term_where = " AND icl_t.language_code = '" . $post_language ."'";
3024
+            $wpml_term_where = " AND icl_t.language_code = '".$post_language."'";
3025 3025
         }
3026 3026
 
3027
-        $term_slug_check = $wpdb->get_var( $wpdb->prepare( "SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '" . $post_type . "category' OR tt.taxonomy = '" . $post_type . "_tags' ) {$wpml_term_where} LIMIT 1", $slug ) );
3027
+        $term_slug_check = $wpdb->get_var($wpdb->prepare("SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '".$post_type."category' OR tt.taxonomy = '".$post_type."_tags' ) {$wpml_term_where} LIMIT 1", $slug));
3028 3028
 
3029
-        if ( $term_slug_check ) {
3029
+        if ($term_slug_check) {
3030 3030
             $suffix = 1;
3031 3031
             
3032 3032
             do {
3033
-                $alt_slug = _truncate_post_slug( $original_slug, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
3033
+                $alt_slug = _truncate_post_slug($original_slug, 200 - (strlen($suffix) + 1))."-$suffix";
3034 3034
                 
3035
-                $term_check = $wpdb->get_var( $wpdb->prepare( "SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '" . $post_type . "category' OR tt.taxonomy = '" . $post_type . "_tags' ) {$wpml_term_where} LIMIT 1", $alt_slug ) );
3035
+                $term_check = $wpdb->get_var($wpdb->prepare("SELECT t.slug FROM $wpdb->terms AS t LEFT JOIN $wpdb->term_taxonomy AS tt ON tt.term_id = t.term_id {$wpml_term_join} WHERE t.slug = '%s' AND ( tt.taxonomy = '".$post_type."category' OR tt.taxonomy = '".$post_type."_tags' ) {$wpml_term_where} LIMIT 1", $alt_slug));
3036 3036
                 
3037
-                $post_check = !$term_check && $wpdb->get_var( $wpdb->prepare( "SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s AND p.ID != %d {$wpml_term_where} LIMIT 1", $alt_slug, $post_type, $post_ID ) );
3037
+                $post_check = !$term_check && $wpdb->get_var($wpdb->prepare("SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s AND p.ID != %d {$wpml_term_where} LIMIT 1", $alt_slug, $post_type, $post_ID));
3038 3038
                 
3039 3039
                 $term_slug_check = $term_check || $post_check;
3040 3040
                 
3041 3041
                 $suffix++;
3042
-            } while ( $term_slug_check );
3042
+            } while ($term_slug_check);
3043 3043
             
3044 3044
             $slug = $alt_slug;
3045 3045
         }
@@ -3047,7 +3047,7 @@  discard block
 block discarded – undo
3047 3047
     
3048 3048
     return $slug;
3049 3049
 }
3050
-add_filter( 'wp_unique_post_slug', 'geodir_check_post_to_term_slug', 101, 6 );
3050
+add_filter('wp_unique_post_slug', 'geodir_check_post_to_term_slug', 101, 6);
3051 3051
 
3052 3052
 /**
3053 3053
  * Check whether a post name with slug exists or not.
@@ -3064,48 +3064,48 @@  discard block
 block discarded – undo
3064 3064
  * @param int $term_id The term ID.
3065 3065
  * @return bool true when exists. false when not exists.
3066 3066
  */
3067
-function geodir_check_term_to_post_slug( $slug_exists, $slug, $term_id ) {
3067
+function geodir_check_term_to_post_slug($slug_exists, $slug, $term_id) {
3068 3068
     global $wpdb, $gd_term_post_type, $gd_term_taxonomy, $sitepress;
3069 3069
     
3070
-    if ( $slug_exists ) {
3070
+    if ($slug_exists) {
3071 3071
         return $slug_exists;
3072 3072
     }
3073 3073
     
3074
-    if ( !empty( $gd_term_taxonomy ) && isset($gd_term_taxonomy[$term_id]) ) {
3074
+    if (!empty($gd_term_taxonomy) && isset($gd_term_taxonomy[$term_id])) {
3075 3075
         $taxonomy = $gd_term_taxonomy[$term_id];
3076 3076
     } else {
3077
-        $taxonomy = $wpdb->get_var( $wpdb->prepare( "SELECT taxonomy FROM $wpdb->term_taxonomy WHERE term_id = %d LIMIT 1", $term_id ) );
3077
+        $taxonomy = $wpdb->get_var($wpdb->prepare("SELECT taxonomy FROM $wpdb->term_taxonomy WHERE term_id = %d LIMIT 1", $term_id));
3078 3078
         $gd_term_taxonomy[$term_id] = $taxonomy;
3079 3079
     }
3080 3080
     
3081
-    if ( empty($taxonomy) ) {
3081
+    if (empty($taxonomy)) {
3082 3082
         return $slug_exists;
3083 3083
     }
3084 3084
     
3085
-    if ( !empty( $gd_term_post_type ) && $gd_term_post_type[$term_id] ) {
3085
+    if (!empty($gd_term_post_type) && $gd_term_post_type[$term_id]) {
3086 3086
         $post_type = $gd_term_post_type[$term_id];
3087 3087
     } else {
3088
-        $taxonomy_obj = get_taxonomy( $taxonomy );
3089
-        $post_type = !empty( $taxonomy_obj->object_type ) ? $taxonomy_obj->object_type[0] : NULL;
3088
+        $taxonomy_obj = get_taxonomy($taxonomy);
3089
+        $post_type = !empty($taxonomy_obj->object_type) ? $taxonomy_obj->object_type[0] : NULL;
3090 3090
     }
3091 3091
     
3092 3092
     $wpml_post_join = "";
3093 3093
     $wpml_post_where = "";
3094 3094
     
3095 3095
     if (geodir_wpml_is_taxonomy_translated($taxonomy) || geodir_wpml_is_post_type_translated($post_type)) {
3096
-        $term_language = $term_id ? geodir_get_language_for_element($term_id, 'tax_' . $taxonomy) : $sitepress->get_current_language();
3096
+        $term_language = $term_id ? geodir_get_language_for_element($term_id, 'tax_'.$taxonomy) : $sitepress->get_current_language();
3097 3097
         if (!$term_language) {
3098 3098
             $term_language = $sitepress->get_current_language();
3099 3099
         }
3100 3100
         
3101 3101
         $wpml_post_join = " JOIN {$wpdb->prefix}icl_translations AS icl_t ON p.ID = icl_t.element_id AND icl_t.element_type = CONCAT('post_', p.post_type)";
3102
-        $wpml_post_where = " AND icl_t.language_code = '" . $term_language ."'";
3102
+        $wpml_post_where = " AND icl_t.language_code = '".$term_language."'";
3103 3103
     }
3104 3104
     
3105
-    if ( $post_type && $wpdb->get_var( $wpdb->prepare( "SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s  {$wpml_post_where} LIMIT 1", $slug, $post_type ) ) ) {
3105
+    if ($post_type && $wpdb->get_var($wpdb->prepare("SELECT p.post_name FROM $wpdb->posts p {$wpml_post_join} WHERE p.post_name = %s AND p.post_type = %s  {$wpml_post_where} LIMIT 1", $slug, $post_type))) {
3106 3106
         $slug_exists = true;
3107 3107
     }
3108 3108
 
3109 3109
     return $slug_exists;
3110 3110
 }
3111
-add_filter( 'geodir_term_slug_is_exists', 'geodir_check_term_to_post_slug', 10, 3 );
3112 3111
\ No newline at end of file
3112
+add_filter('geodir_term_slug_is_exists', 'geodir_check_term_to_post_slug', 10, 3);
3113 3113
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-templates/geodir-signup.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -14,15 +14,15 @@
 block discarded – undo
14 14
  */
15 15
 if (get_current_user_id()) {
16 16
 
17
-    $_redirect = home_url();
18
-    if (isset($_REQUEST['redirect_add_listing'])) {
19
-        $_redirect = $_REQUEST['redirect_add_listing'];
20
-    } elseif (!empty($_REQUEST['redirect_to'])) {
21
-        $_redirect = $_REQUEST['redirect_to'];
22
-    }
23
-
24
-    wp_safe_redirect($_redirect , 302);
25
-    exit;
17
+	$_redirect = home_url();
18
+	if (isset($_REQUEST['redirect_add_listing'])) {
19
+		$_redirect = $_REQUEST['redirect_add_listing'];
20
+	} elseif (!empty($_REQUEST['redirect_to'])) {
21
+		$_redirect = $_REQUEST['redirect_to'];
22
+	}
23
+
24
+	wp_safe_redirect($_redirect , 302);
25
+	exit;
26 26
 }
27 27
 
28 28
 // call header
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         $_redirect = $_REQUEST['redirect_to'];
22 22
     }
23 23
 
24
-    wp_safe_redirect($_redirect , 302);
24
+    wp_safe_redirect($_redirect, 302);
25 25
     exit;
26 26
 }
27 27
 
Please login to merge, or discard this patch.
geodirectory-functions/listing_filters.php 2 patches
Indentation   +580 added lines, -580 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function geodir_session_start()
18 18
 {
19
-    if (!session_id()) session_start();
20
-    global $geodir_add_location_url;
19
+	if (!session_id()) session_start();
20
+	global $geodir_add_location_url;
21 21
 
22
-    $geodir_add_location_url = NULL;
22
+	$geodir_add_location_url = NULL;
23 23
 }
24 24
 
25 25
 /**
@@ -33,18 +33,18 @@  discard block
 block discarded – undo
33 33
  */
34 34
 function geodir_modified_query($query)
35 35
 {
36
-    if ($query->is_main_query() && (
37
-            (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
38
-            || geodir_is_page('listing')
39
-            || geodir_is_page('author')
40
-            || geodir_is_page('search')
41
-            || geodir_is_page('detail'))
42
-    ) {
43
-
44
-        $query->set('is_geodir_loop', true);
45
-    }
36
+	if ($query->is_main_query() && (
37
+			(geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
38
+			|| geodir_is_page('listing')
39
+			|| geodir_is_page('author')
40
+			|| geodir_is_page('search')
41
+			|| geodir_is_page('detail'))
42
+	) {
43
+
44
+		$query->set('is_geodir_loop', true);
45
+	}
46 46
 
47
-    return $query;
47
+	return $query;
48 48
 }
49 49
 
50 50
 /**
@@ -67,81 +67,81 @@  discard block
 block discarded – undo
67 67
  */
68 68
 function set_listing_request($query )
69 69
 {
70
-    global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
70
+	global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
71 71
 
72 72
 
73
-    // fix woocommerce shop products filtered by language for GD + WPML + Woocommerce
74
-    if (!geodir_is_geodir_page()) {
75
-        return;
76
-    }
73
+	// fix woocommerce shop products filtered by language for GD + WPML + Woocommerce
74
+	if (!geodir_is_geodir_page()) {
75
+		return;
76
+	}
77 77
 
78
-    /* remove all pre filters */
79
-    remove_all_filters('query');
80
-    remove_all_filters('posts_search');
81
-    remove_all_filters('posts_fields');
82
-    remove_all_filters('posts_join');
83
-    remove_all_filters('posts_orderby');
84
-    remove_all_filters('posts_where');
78
+	/* remove all pre filters */
79
+	remove_all_filters('query');
80
+	remove_all_filters('posts_search');
81
+	remove_all_filters('posts_fields');
82
+	remove_all_filters('posts_join');
83
+	remove_all_filters('posts_orderby');
84
+	remove_all_filters('posts_where');
85 85
 
86 86
 
87
-    if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')):
87
+	if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')):
88 88
 
89
-        if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = '';
90
-        //if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = '';
89
+		if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = '';
90
+		//if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = '';
91 91
 
92
-        if (isset($_REQUEST['sdist'])) {
93
-            ($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000;
94
-        } elseif (get_option('geodir_search_dist') != '') {
95
-            $dist = get_option('geodir_search_dist');
92
+		if (isset($_REQUEST['sdist'])) {
93
+			($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000;
94
+		} elseif (get_option('geodir_search_dist') != '') {
95
+			$dist = get_option('geodir_search_dist');
96 96
 
97
-        } else {
98
-            $dist = 25000;
99
-        } //  Distance
97
+		} else {
98
+			$dist = 25000;
99
+		} //  Distance
100 100
 
101
-        if (isset($_REQUEST['sgeo_lat'])) {
102
-            $mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
103
-        } else {
104
-            $mylat = (float)geodir_get_current_city_lat();
105
-        } //  Latitude
101
+		if (isset($_REQUEST['sgeo_lat'])) {
102
+			$mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
103
+		} else {
104
+			$mylat = (float)geodir_get_current_city_lat();
105
+		} //  Latitude
106 106
 
107
-        if (isset($_REQUEST['sgeo_lon'])) {
108
-            $mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
109
-        } else {
110
-            $mylon = (float)geodir_get_current_city_lng();
111
-        } //  Distance
107
+		if (isset($_REQUEST['sgeo_lon'])) {
108
+			$mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
109
+		} else {
110
+			$mylon = (float)geodir_get_current_city_lng();
111
+		} //  Distance
112 112
 
113
-        if (isset($_REQUEST['snear'])) {
114
-            $snear = trim(esc_attr($_REQUEST['snear']));
115
-        }
113
+		if (isset($_REQUEST['snear'])) {
114
+			$snear = trim(esc_attr($_REQUEST['snear']));
115
+		}
116 116
 
117
-        if (isset($_REQUEST['s'])) {
118
-            $s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s'])));
119
-        }
117
+		if (isset($_REQUEST['s'])) {
118
+			$s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s'])));
119
+		}
120 120
 
121
-        if ($snear == 'NEAR ME') {
122
-            $ip = $_SERVER['REMOTE_ADDR'];
123
-            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
124
-            $mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125
-            $mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126
-        }
121
+		if ($snear == 'NEAR ME') {
122
+			$ip = $_SERVER['REMOTE_ADDR'];
123
+			$addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
124
+			$mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125
+			$mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126
+		}
127 127
 
128 128
 
129
-        if (strstr($s, ',')) {
130
-            $s_AA = str_replace(" ", "", $s);
131
-            $s_A = explode(",", $s_AA);
132
-            $s_A = implode('","', $s_A);
133
-            $s_A = '"' . $s_A . '"';
134
-        } else {
135
-            $s_A = '"' . $s . '"';
136
-        }
129
+		if (strstr($s, ',')) {
130
+			$s_AA = str_replace(" ", "", $s);
131
+			$s_A = explode(",", $s_AA);
132
+			$s_A = implode('","', $s_A);
133
+			$s_A = '"' . $s_A . '"';
134
+		} else {
135
+			$s_A = '"' . $s . '"';
136
+		}
137 137
 
138
-        if (strstr($s, ' ')) {
139
-            $s_SA = explode(" ", $s);
140
-        } else {
141
-            $s_SA = '';
142
-        }
138
+		if (strstr($s, ' ')) {
139
+			$s_SA = explode(" ", $s);
140
+		} else {
141
+			$s_SA = '';
142
+		}
143 143
 
144
-    endif;
144
+	endif;
145 145
 
146 146
 
147 147
 
@@ -162,56 +162,56 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function geodir_listing_loop_filter($query)
164 164
 {
165
-    global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term;
165
+	global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term;
166 166
 
167
-    // fix wp_reset_query for popular post view widget
168
-    if (!geodir_is_geodir_page()) {
169
-        return;
170
-    }
167
+	// fix wp_reset_query for popular post view widget
168
+	if (!geodir_is_geodir_page()) {
169
+		return;
170
+	}
171 171
 
172
-    $geodir_post_type = geodir_get_current_posttype();
173
-
174
-    if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
175
-        $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
176
-
177
-        if (isset($wp_query->query[$taxonomies[0]])) {
178
-            $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
179
-            $request_term = end($request_term);
180
-            if (!term_exists($request_term)) {
181
-                $args = array('number' => '1',);
182
-                $terms_arr = get_terms($taxonomies[0], $args);
183
-                foreach ($terms_arr as $location_term) {
184
-                    $term_arr = $location_term;
185
-                    $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
186
-                }
187
-                $wp_query->queried_object_id = 1;
188
-                $wp_query->queried_object = $term_arr;
189
-                //print_r($wp_query) ;
190
-            }
191
-        }
172
+	$geodir_post_type = geodir_get_current_posttype();
173
+
174
+	if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
175
+		$taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
176
+
177
+		if (isset($wp_query->query[$taxonomies[0]])) {
178
+			$request_term = explode("/", $wp_query->query[$taxonomies[0]]);
179
+			$request_term = end($request_term);
180
+			if (!term_exists($request_term)) {
181
+				$args = array('number' => '1',);
182
+				$terms_arr = get_terms($taxonomies[0], $args);
183
+				foreach ($terms_arr as $location_term) {
184
+					$term_arr = $location_term;
185
+					$term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
186
+				}
187
+				$wp_query->queried_object_id = 1;
188
+				$wp_query->queried_object = $term_arr;
189
+				//print_r($wp_query) ;
190
+			}
191
+		}
192 192
 
193
-    }
194
-    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
195
-
196
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
197
-
198
-        add_filter('posts_fields', 'geodir_posts_fields', 1);
199
-        add_filter('posts_join', 'geodir_posts_join', 1);
200
-        geodir_post_where();
201
-        if (!is_admin())
202
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
203
-
204
-        // advanced filter for popular post view widget
205
-        global $wp_query;
206
-        if (!is_admin()) {
207
-            if (!empty($wp_query->query['with_pics_only'])) {
208
-                add_filter('posts_join', 'geodir_filter_widget_join', 1000);
209
-            }
210
-            add_filter('posts_where', 'geodir_filter_widget_where', 1000);
211
-        }
193
+	}
194
+	if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
212 195
 
213
-    }
214
-    return $query;
196
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
197
+
198
+		add_filter('posts_fields', 'geodir_posts_fields', 1);
199
+		add_filter('posts_join', 'geodir_posts_join', 1);
200
+		geodir_post_where();
201
+		if (!is_admin())
202
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
203
+
204
+		// advanced filter for popular post view widget
205
+		global $wp_query;
206
+		if (!is_admin()) {
207
+			if (!empty($wp_query->query['with_pics_only'])) {
208
+				add_filter('posts_join', 'geodir_filter_widget_join', 1000);
209
+			}
210
+			add_filter('posts_where', 'geodir_filter_widget_where', 1000);
211
+		}
212
+
213
+	}
214
+	return $query;
215 215
 }
216 216
 
217 217
 
@@ -230,67 +230,67 @@  discard block
 block discarded – undo
230 230
  * @return string Modified fields query string.
231 231
  */
232 232
 function geodir_posts_fields($fields) {
233
-    global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
233
+	global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
234 234
 
235
-    // Filter-Location-Manager to add location table.
236
-    $fields .= ", " . $table . ".* ";
235
+	// Filter-Location-Manager to add location table.
236
+	$fields .= ", " . $table . ".* ";
237 237
 
238 238
 	if ($snear != '' || $gd_session->get('all_near_me')) {
239
-        $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
239
+		$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
240 240
 
241 241
 		if ($gd_session->get('all_near_me')) {
242
-            $mylat = $gd_session->get('user_lat');
243
-            $mylon = $gd_session->get('user_lon');
244
-        }
245
-
246
-        $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247
-    }
248
-
249
-    global $s;
250
-    if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251
-        $keywords = explode(" ", $s);
252
-
253
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
-            foreach($keywords as $kkey=>$kword){
255
-                if(geodir_utf8_strlen($kword)<=$klimit){
256
-                    unset($keywords[$kkey]);
257
-                }
258
-            }
259
-        }
242
+			$mylat = $gd_session->get('user_lat');
243
+			$mylon = $gd_session->get('user_lon');
244
+		}
260 245
 
246
+		$fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247
+	}
261 248
 
262
-        if (count($keywords) > 1) {
263
-            $parts = array(
264
-                'AND' => 'gd_alltitlematch_part',
265
-                'OR' => 'gd_titlematch_part'
266
-            );
267
-            $gd_titlematch_part = "";
268
-            foreach ($parts as $key => $part) {
269
-                $gd_titlematch_part .= " CASE WHEN ";
270
-                $count = 0;
271
-                foreach ($keywords as $keyword) {
272
-                    $keyword = trim($keyword);
273
-                    $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
249
+	global $s;
250
+	if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251
+		$keywords = explode(" ", $s);
252
+
253
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
+			foreach($keywords as $kkey=>$kword){
255
+				if(geodir_utf8_strlen($kword)<=$klimit){
256
+					unset($keywords[$kkey]);
257
+				}
258
+			}
259
+		}
260
+
261
+
262
+		if (count($keywords) > 1) {
263
+			$parts = array(
264
+				'AND' => 'gd_alltitlematch_part',
265
+				'OR' => 'gd_titlematch_part'
266
+			);
267
+			$gd_titlematch_part = "";
268
+			foreach ($parts as $key => $part) {
269
+				$gd_titlematch_part .= " CASE WHEN ";
270
+				$count = 0;
271
+				foreach ($keywords as $keyword) {
272
+					$keyword = trim($keyword);
273
+					$keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
274 274
 					$count++;
275
-                    if ($count < count($keywords)) {
276
-                       // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
275
+					if ($count < count($keywords)) {
276
+					   // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
277 277
 						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " ";
278
-                    } else {
279
-                        //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
278
+					} else {
279
+						//$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
280 280
 						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) ";
281
-                    }
282
-                }
283
-                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
284
-            }
285
-        } else {
286
-            $gd_titlematch_part = "";
287
-        }
288
-        $s = stripslashes_deep( $s );
289
-        $s = wp_specialchars_decode($s,ENT_QUOTES);
281
+					}
282
+				}
283
+				$gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
284
+			}
285
+		} else {
286
+			$gd_titlematch_part = "";
287
+		}
288
+		$s = stripslashes_deep( $s );
289
+		$s = wp_specialchars_decode($s,ENT_QUOTES);
290 290
 		$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
291
-    }
291
+	}
292 292
 
293
-    return $fields;
293
+	return $fields;
294 294
 }
295 295
 
296 296
 
@@ -307,26 +307,26 @@  discard block
 block discarded – undo
307 307
  */
308 308
 function geodir_posts_join($join)
309 309
 {
310
-    global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix;
310
+	global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix;
311 311
 
312
-    ########### WPML ###########
312
+	########### WPML ###########
313 313
 
314
-    if ( geodir_wpml_is_post_type_translated( $geodir_post_type ) ) {
315
-        global $sitepress;
316
-        $lang_code = ICL_LANGUAGE_CODE;
317
-        $default_lang_code = $sitepress->get_default_language();
318
-        if ($lang_code) {
319
-            $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
320
-        }
314
+	if ( geodir_wpml_is_post_type_translated( $geodir_post_type ) ) {
315
+		global $sitepress;
316
+		$lang_code = ICL_LANGUAGE_CODE;
317
+		$default_lang_code = $sitepress->get_default_language();
318
+		if ($lang_code) {
319
+			$join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
320
+		}
321 321
 
322
-    }
323
-    ########### WPML ###########
322
+	}
323
+	########### WPML ###########
324 324
 
325
-    $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
326
-    //===old code start
327
-    //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
325
+	$join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
326
+	//===old code start
327
+	//$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
328 328
 
329
-    return $join;
329
+	return $join;
330 330
 }
331 331
 
332 332
 
@@ -344,15 +344,15 @@  discard block
 block discarded – undo
344 344
  */
345 345
 function geodir_posts_orderby($orderby)
346 346
 {
347
-    global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort;
347
+	global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort;
348 348
 
349
-    $sort_by = '';
350
-    $orderby = ' ';
349
+	$sort_by = '';
350
+	$orderby = ' ';
351 351
 
352
-    if (get_query_var('order_by'))
353
-        $sort_by = get_query_var('order_by');
352
+	if (get_query_var('order_by'))
353
+		$sort_by = get_query_var('order_by');
354 354
 
355
-    /*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
355
+	/*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
356 356
         $current_term = $wp_query->get_queried_object();
357 357
     }
358 358
 
@@ -366,133 +366,133 @@  discard block
 block discarded – undo
366 366
     }*/
367 367
 
368 368
 
369
-    if ($snear != '') {
370
-        $orderby .= " distance,";
371
-    }
369
+	if ($snear != '') {
370
+		$orderby .= " distance,";
371
+	}
372 372
 
373
-    if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query())
374
-        $sort_by = esc_attr($_REQUEST['sort_by']);
373
+	if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query())
374
+		$sort_by = esc_attr($_REQUEST['sort_by']);
375 375
 
376 376
 
377
-    if ($sort_by == '') {
378
-        $default_sort = geodir_get_posts_default_sort($geodir_post_type);
379
-        if (!empty($default_sort))
380
-            $sort_by = $default_sort;
381
-    }
377
+	if ($sort_by == '') {
378
+		$default_sort = geodir_get_posts_default_sort($geodir_post_type);
379
+		if (!empty($default_sort))
380
+			$sort_by = $default_sort;
381
+	}
382 382
 
383
-    /*
383
+	/*
384 384
     if search by term & no location then order always "relevance"
385 385
     if search by location then order always "nearest"
386 386
     */
387
-    if (is_main_query() && geodir_is_page('search')) {
388
-        $search_term = get_query_var('s');
389
-
390
-        if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
391
-            $sort_by = 'az';
392
-        }
387
+	if (is_main_query() && geodir_is_page('search')) {
388
+		$search_term = get_query_var('s');
393 389
 
394
-        if ($snear != '' &&  $sort_by!='farthest') {
395
-            $sort_by = 'nearest';
396
-        }
397
-    }
390
+		if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
391
+			$sort_by = 'az';
392
+		}
398 393
 
399
-    switch ($sort_by):
400
-        case 'newest':
401
-            $orderby = "$wpdb->posts.post_date desc, ";
402
-            break;
403
-        case 'oldest':
404
-            $orderby = "$wpdb->posts.post_date asc, ";
405
-            break;
406
-        case 'low_review':
407
-        case 'rating_count_asc':
408
-            $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
409
-            break;
410
-        case 'high_review':
411
-        case 'rating_count_desc':
412
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
413
-            break;
414
-        case 'low_rating':
415
-            $orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
416
-            break;
417
-        case 'high_rating':
418
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
419
-            break;
420
-        case 'featured':
421
-            $orderby = $table . ".is_featured asc, ";
422
-            break;
423
-        case 'nearest':
424
-            $orderby = " distance asc, ";
425
-            break;
426
-        case 'farthest':
427
-            $orderby = " distance desc, ";
428
-            break;
429
-        case 'random':
430
-            $orderby = " rand(), ";
431
-            break;
432
-        case 'az':
433
-            $orderby = "$wpdb->posts.post_title asc, ";
434
-            break;
435
-        // sort by rating
436
-        case 'overall_rating_desc':
437
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
438
-            break;
439
-        case 'overall_rating_asc':
440
-            $orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
441
-            break;
442
-        default:
443
-
444
-            break;
445
-    endswitch;
446
-
447
-    if ($sort_by != '' && geodir_cpt_has_rating_disabled($geodir_post_type)) {
448
-        if (in_array($sort_by, array('high_review', 'rating_count_desc', 'high_rating', 'overall_rating_desc'))) {
449
-            $orderby = "$wpdb->posts.comment_count DESC, ";
450
-            $sort_by = 'comment_count_desc';
451
-        } else if (in_array($sort_by, array('low_review', 'rating_count_asc', 'low_rating', 'overall_rating_asc'))) {
452
-            $orderby = "$wpdb->posts.comment_count ASC, ";
453
-            $sort_by = 'comment_count_asc';
454
-        }
455
-    }
394
+		if ($snear != '' &&  $sort_by!='farthest') {
395
+			$sort_by = 'nearest';
396
+		}
397
+	}
456 398
 
457
-    global $s;
399
+	switch ($sort_by):
400
+		case 'newest':
401
+			$orderby = "$wpdb->posts.post_date desc, ";
402
+			break;
403
+		case 'oldest':
404
+			$orderby = "$wpdb->posts.post_date asc, ";
405
+			break;
406
+		case 'low_review':
407
+		case 'rating_count_asc':
408
+			$orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
409
+			break;
410
+		case 'high_review':
411
+		case 'rating_count_desc':
412
+			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
413
+			break;
414
+		case 'low_rating':
415
+			$orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
416
+			break;
417
+		case 'high_rating':
418
+			$orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
419
+			break;
420
+		case 'featured':
421
+			$orderby = $table . ".is_featured asc, ";
422
+			break;
423
+		case 'nearest':
424
+			$orderby = " distance asc, ";
425
+			break;
426
+		case 'farthest':
427
+			$orderby = " distance desc, ";
428
+			break;
429
+		case 'random':
430
+			$orderby = " rand(), ";
431
+			break;
432
+		case 'az':
433
+			$orderby = "$wpdb->posts.post_title asc, ";
434
+			break;
435
+		// sort by rating
436
+		case 'overall_rating_desc':
437
+			$orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
438
+			break;
439
+		case 'overall_rating_asc':
440
+			$orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
441
+			break;
442
+		default:
443
+
444
+			break;
445
+	endswitch;
446
+
447
+	if ($sort_by != '' && geodir_cpt_has_rating_disabled($geodir_post_type)) {
448
+		if (in_array($sort_by, array('high_review', 'rating_count_desc', 'high_rating', 'overall_rating_desc'))) {
449
+			$orderby = "$wpdb->posts.comment_count DESC, ";
450
+			$sort_by = 'comment_count_desc';
451
+		} else if (in_array($sort_by, array('low_review', 'rating_count_asc', 'low_rating', 'overall_rating_asc'))) {
452
+			$orderby = "$wpdb->posts.comment_count ASC, ";
453
+			$sort_by = 'comment_count_asc';
454
+		}
455
+	}
458 456
 
459
-    if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460
-        $keywords = explode(" ", $s);
461
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
-            foreach($keywords as $kkey=>$kword){
463
-                if(geodir_utf8_strlen($kword)<=$klimit){
464
-                    unset($keywords[$kkey]);
465
-                }
466
-            }
467
-        }
468
-        if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469
-            if (count($keywords) > 1) {
470
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471
-            } else {
472
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473
-            }
474
-        } else {
475
-            if (count($keywords) > 1) {
476
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
477
-            } else {
478
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
479
-            }
480
-        }
481
-    }
457
+	global $s;
458
+
459
+	if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460
+		$keywords = explode(" ", $s);
461
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
+			foreach($keywords as $kkey=>$kword){
463
+				if(geodir_utf8_strlen($kword)<=$klimit){
464
+					unset($keywords[$kkey]);
465
+				}
466
+			}
467
+		}
468
+		if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469
+			if (count($keywords) > 1) {
470
+				$orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471
+			} else {
472
+				$orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473
+			}
474
+		} else {
475
+			if (count($keywords) > 1) {
476
+				$orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
477
+			} else {
478
+				$orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
479
+			}
480
+		}
481
+	}
482 482
 
483
-    /**
484
-     * Filter order by SQL.
485
-     *
486
-     * @since 1.0.0
487
-     * @param string $orderby The orderby query string.
488
-     * @param string $sort_by Sortby query string.
489
-     * @param string $table Listing table name.
490
-     */
491
-    $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
483
+	/**
484
+	 * Filter order by SQL.
485
+	 *
486
+	 * @since 1.0.0
487
+	 * @param string $orderby The orderby query string.
488
+	 * @param string $sort_by Sortby query string.
489
+	 * @param string $table Listing table name.
490
+	 */
491
+	$orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
492 492
 
493
-    $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
493
+	$orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
494 494
 
495
-    return $orderby;
495
+	return $orderby;
496 496
 }
497 497
 
498 498
 
@@ -510,53 +510,53 @@  discard block
 block discarded – undo
510 510
 function geodir_posts_order_by_custom_sort($orderby, $sort_by, $table)
511 511
 {
512 512
 
513
-    global $wpdb;
513
+	global $wpdb;
514 514
 
515
-    if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
515
+	if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
516 516
 
517
-        $sort_array = explode('_', $sort_by);
517
+		$sort_array = explode('_', $sort_by);
518 518
 
519
-        $sort_by_count = count($sort_array);
519
+		$sort_by_count = count($sort_array);
520 520
 
521
-        $order = $sort_array[$sort_by_count - 1];
521
+		$order = $sort_array[$sort_by_count - 1];
522 522
 
523
-        if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
523
+		if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
524 524
 
525
-            $sort_by = str_replace('_' . $order, '', $sort_by);
525
+			$sort_by = str_replace('_' . $order, '', $sort_by);
526 526
 
527
-            switch ($sort_by):
527
+			switch ($sort_by):
528 528
 
529
-                case 'post_date':
530
-                case 'comment_count':
529
+				case 'post_date':
530
+				case 'comment_count':
531 531
 
532
-                    $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
533
-                    break;
532
+					$orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
533
+					break;
534 534
 
535
-                case 'distance':
536
-                    $orderby = $sort_by . " " . $order . ", ";
537
-                    break;
535
+				case 'distance':
536
+					$orderby = $sort_by . " " . $order . ", ";
537
+					break;
538 538
 
539 539
 
540
-                // sort by rating
541
-                case 'overall_rating':
542
-                    $orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
540
+				// sort by rating
541
+				case 'overall_rating':
542
+					$orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
543 543
 
544
-                    break;
544
+					break;
545 545
 
546 546
 
547
-                default:
548
-                    if (geodir_column_exist($table, $sort_by)) {
547
+				default:
548
+					if (geodir_column_exist($table, $sort_by)) {
549 549
 						$orderby = $table . "." . $sort_by . " " . $order . ", ";
550 550
 					}
551
-                    break;
551
+					break;
552 552
 
553
-            endswitch;
553
+			endswitch;
554 554
 
555
-        }
555
+		}
556 556
 
557
-    }
557
+	}
558 558
 
559
-    return $orderby;
559
+	return $orderby;
560 560
 }
561 561
 
562 562
 /**
@@ -571,34 +571,34 @@  discard block
 block discarded – undo
571 571
 {
572 572
 
573 573
 
574
-    global $wpdb, $geodir_post_type, $table, $s, $snear;
574
+	global $wpdb, $geodir_post_type, $table, $s, $snear;
575 575
 
576
-    if (!is_admin()) {
576
+	if (!is_admin()) {
577 577
 
578
-        if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
579
-            add_filter('posts_where', 'geodir_edit_listing_where', 1);
578
+		if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
579
+			add_filter('posts_where', 'geodir_edit_listing_where', 1);
580 580
 
581
-        } elseif ((is_search() && $_REQUEST['geodir_search'])) {
581
+		} elseif ((is_search() && $_REQUEST['geodir_search'])) {
582 582
 
583
-            add_filter('posts_where', 'searching_filter_where', 1);
583
+			add_filter('posts_where', 'searching_filter_where', 1);
584 584
 
585
-            if ($snear != '')
586
-                add_filter('posts_where', 'searching_filter_where', 1);
585
+			if ($snear != '')
586
+				add_filter('posts_where', 'searching_filter_where', 1);
587 587
 
588
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
588
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
589 589
 
590
-        } elseif (geodir_is_page('author')) {
590
+		} elseif (geodir_is_page('author')) {
591 591
 
592
-            add_filter('posts_where', 'author_filter_where', 1);
592
+			add_filter('posts_where', 'author_filter_where', 1);
593 593
 
594
-        }
594
+		}
595 595
 
596
-        //if (!geodir_is_page('detail'))
597
-            add_filter('posts_where', 'geodir_default_where', 1);/**/
596
+		//if (!geodir_is_page('detail'))
597
+			add_filter('posts_where', 'geodir_default_where', 1);/**/
598 598
 
599
-        //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
599
+		//add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
600 600
 
601
-    }
601
+	}
602 602
 }
603 603
 
604 604
 /**
@@ -613,13 +613,13 @@  discard block
 block discarded – undo
613 613
  */
614 614
 function geodir_preview_post_cap($allcaps, $caps, $args)
615 615
 {
616
-    $user_id = get_current_user_id();
617
-    if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
616
+	$user_id = get_current_user_id();
617
+	if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
618 618
 
619
-        $allcaps['edit_posts'] = true;
620
-    }
621
-    //print_r($allcaps);
622
-    return $allcaps;
619
+		$allcaps['edit_posts'] = true;
620
+	}
621
+	//print_r($allcaps);
622
+	return $allcaps;
623 623
 }
624 624
 
625 625
 
@@ -634,9 +634,9 @@  discard block
 block discarded – undo
634 634
  */
635 635
 function geodir_edit_listing_where($where)
636 636
 {
637
-    global $wpdb;
638
-    $where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
639
-    return $where;
637
+	global $wpdb;
638
+	$where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
639
+	return $where;
640 640
 }
641 641
 
642 642
 
@@ -653,29 +653,29 @@  discard block
 block discarded – undo
653 653
  */
654 654
 function geodir_default_where($where)
655 655
 {
656
-    global $wp_query, $wpdb;
657
-
658
-    //print_r($wp_query);
659
-    ########### WPML ###########
660
-
661
-    if (geodir_is_wpml()) {
662
-        global $sitepress, $table_prefix;
663
-        $lang_code = ICL_LANGUAGE_CODE;
664
-        $default_lang_code = $sitepress->get_default_language();
665
-        $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666
-        //echo '##########'.$q_post_type;
667
-        if ($lang_code && $q_post_type && geodir_wpml_is_post_type_translated($q_post_type)) {
668
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
669
-            //$where .= " AND icl_t.language_code = '$lang_code' ";
670
-        }
656
+	global $wp_query, $wpdb;
671 657
 
672
-    }
673
-    ########### WPML ###########
658
+	//print_r($wp_query);
659
+	########### WPML ###########
660
+
661
+	if (geodir_is_wpml()) {
662
+		global $sitepress, $table_prefix;
663
+		$lang_code = ICL_LANGUAGE_CODE;
664
+		$default_lang_code = $sitepress->get_default_language();
665
+		$q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666
+		//echo '##########'.$q_post_type;
667
+		if ($lang_code && $q_post_type && geodir_wpml_is_post_type_translated($q_post_type)) {
668
+			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
669
+			//$where .= " AND icl_t.language_code = '$lang_code' ";
670
+		}
674 671
 
672
+	}
673
+	########### WPML ###########
675 674
 
676
-    return $where = str_replace("0 = 1", "1=1", $where);
677 675
 
678
-    /* ====== old code start ===
676
+	return $where = str_replace("0 = 1", "1=1", $where);
677
+
678
+	/* ====== old code start ===
679 679
     $where = str_replace("0 = 1", "1=1", $where);
680 680
     $country = get_query_var('gd_country');
681 681
     $region = get_query_var('gd_region');
@@ -716,92 +716,92 @@  discard block
 block discarded – undo
716 716
  * @return string Modified where query string.
717 717
  */
718 718
 function searching_filter_where($where) {
719
-    global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s_A, $s_SA, $search_term, $gd_session;
719
+	global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s_A, $s_SA, $search_term, $gd_session;
720 720
 
721
-    $search_term = 'OR';
722
-    $search_term = 'AND';
723
-    $geodir_custom_search = '';
724
-    $category_search_range = '';
721
+	$search_term = 'OR';
722
+	$search_term = 'AND';
723
+	$geodir_custom_search = '';
724
+	$category_search_range = '';
725 725
 
726
-    if (is_single() && get_query_var('post_type')) {
726
+	if (is_single() && get_query_var('post_type')) {
727 727
 		return $where;
728 728
 	}
729 729
 
730
-    if (is_tax()) {
730
+	if (is_tax()) {
731 731
 		return $where;
732 732
 	}
733 733
 
734 734
 	$s = trim($s);
735
-    $s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
-    $s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
737
-
738
-    $where = '';
739
-    $better_search_terms = '';
740
-    if (isset($_REQUEST['stype']))
741
-        $post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype']));
742
-    else
743
-        $post_types = 'gd_place';
744
-
745
-    if ($s != '') {
746
-        $keywords = explode(" ", $s);
747
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
-            foreach($keywords as $kkey=>$kword){
749
-                if(geodir_utf8_strlen($kword)<=$klimit){
750
-                    unset($keywords[$kkey]);
751
-                }
752
-            }
753
-        }
735
+	$s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
+	$s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
754 737
 
755
-        if (!empty($keywords)) {
756
-            foreach ($keywords as $keyword) {
757
-                $keyword = trim($keyword);
758
-                $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
759
-                if ($keyword != '') {
760
-                    /**
761
-                     * Filter the search query keywords SQL.
762
-                     *
763
-                     * @since 1.5.9
764
-                     * @package GeoDirectory
765
-                     * @param string $better_search_terms The query values, default: `' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'`.
766
-                     * @param array $keywords The array of keywords for the query.
767
-                     * @param string $keyword The single keyword being searched.
768
-                     */
738
+	$where = '';
739
+	$better_search_terms = '';
740
+	if (isset($_REQUEST['stype']))
741
+		$post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype']));
742
+	else
743
+		$post_types = 'gd_place';
744
+
745
+	if ($s != '') {
746
+		$keywords = explode(" ", $s);
747
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
+			foreach($keywords as $kkey=>$kword){
749
+				if(geodir_utf8_strlen($kword)<=$klimit){
750
+					unset($keywords[$kkey]);
751
+				}
752
+			}
753
+		}
754
+
755
+		if (!empty($keywords)) {
756
+			foreach ($keywords as $keyword) {
757
+				$keyword = trim($keyword);
758
+				$keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
759
+				if ($keyword != '') {
760
+					/**
761
+					 * Filter the search query keywords SQL.
762
+					 *
763
+					 * @since 1.5.9
764
+					 * @package GeoDirectory
765
+					 * @param string $better_search_terms The query values, default: `' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'`.
766
+					 * @param array $keywords The array of keywords for the query.
767
+					 * @param string $keyword The single keyword being searched.
768
+					 */
769 769
 					$better_search_terms .= apply_filters("geodir_search_better_search_terms",' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )',$keywords,$keyword);
770
-                }
771
-            }
772
-        }
773
-    }
770
+				}
771
+			}
772
+		}
773
+	}
774 774
 
775
-    /* get taxonomy */
776
-    $taxonomies = geodir_get_taxonomies($post_types, true);
777
-    if($taxonomies) {
778
-        $taxonomies = implode("','", $taxonomies);
779
-        $taxonomies = "'" . $taxonomies . "'";
780
-    }else{$taxonomies='';}
775
+	/* get taxonomy */
776
+	$taxonomies = geodir_get_taxonomies($post_types, true);
777
+	if($taxonomies) {
778
+		$taxonomies = implode("','", $taxonomies);
779
+		$taxonomies = "'" . $taxonomies . "'";
780
+	}else{$taxonomies='';}
781 781
 
782
-    $content_where = $terms_where = '';
782
+	$content_where = $terms_where = '';
783 783
 	if ($s != '') {
784
-        /**
785
-         * Filter the search query content where values.
786
-         *
787
-         * @since 1.5.0
788
-         * @package GeoDirectory
789
-         * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790
-         */
784
+		/**
785
+		 * Filter the search query content where values.
786
+		 *
787
+		 * @since 1.5.0
788
+		 * @package GeoDirectory
789
+		 * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790
+		 */
791 791
 		$content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
792
-        /**
793
-         * Filter the search query term values.
794
-         *
795
-         * @since 1.5.0
796
-         * @package GeoDirectory
797
-         * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798
-         */
799
-        $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
792
+		/**
793
+		 * Filter the search query term values.
794
+		 *
795
+		 * @since 1.5.0
796
+		 * @package GeoDirectory
797
+		 * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798
+		 */
799
+		$terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
800 800
 	}
801 801
 
802 802
 
803
-    // get term sql
804
-    $term_sql = "              SELECT $wpdb->term_taxonomy.term_id                     
803
+	// get term sql
804
+	$term_sql = "              SELECT $wpdb->term_taxonomy.term_id                     
805 805
 									FROM $wpdb->term_taxonomy,  $wpdb->terms, $wpdb->term_relationships
806 806
                                     WHERE $wpdb->term_taxonomy.term_id =  $wpdb->terms.term_id
807 807
                                     AND $wpdb->term_relationships.term_taxonomy_id =  $wpdb->term_taxonomy.term_taxonomy_id
@@ -809,42 +809,42 @@  discard block
 block discarded – undo
809 809
                                     $terms_where
810 810
                                     GROUP BY $wpdb->term_taxonomy.term_id";
811 811
 
812
-    $term_results = $wpdb->get_results($term_sql);
813
-    $term_ids = array();
814
-    $terms_sql = '';
812
+	$term_results = $wpdb->get_results($term_sql);
813
+	$term_ids = array();
814
+	$terms_sql = '';
815 815
 
816
-    if(!empty($term_results)){
817
-        foreach($term_results as $term_id){
818
-            $term_ids[] = $term_id;
819
-        }
820
-        if(!empty( $term_ids)){
816
+	if(!empty($term_results)){
817
+		foreach($term_results as $term_id){
818
+			$term_ids[] = $term_id;
819
+		}
820
+		if(!empty( $term_ids)){
821 821
 
822
-            foreach($term_ids as $term){
823
-                $terms_sql .= " OR FIND_IN_SET($term->term_id , ".$table.".".$post_types."category) ";
824
-            }
825
-        }
826
-    }
822
+			foreach($term_ids as $term){
823
+				$terms_sql .= " OR FIND_IN_SET($term->term_id , ".$table.".".$post_types."category) ";
824
+			}
825
+		}
826
+	}
827 827
 
828 828
 
829
-    if ($snear != '') {
829
+	if ($snear != '') {
830 830
 
831 831
 
832
-        if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
833
-            $dist = $gd_session->get('near_me_range');
834
-        }
835
-        $lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69);
836
-        $lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69);
837
-        $lat1 = $mylat - ($dist / 69);
838
-        $lat2 = $mylat + ($dist / 69);
832
+		if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
833
+			$dist = $gd_session->get('near_me_range');
834
+		}
835
+		$lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69);
836
+		$lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69);
837
+		$lat1 = $mylat - ($dist / 69);
838
+		$lat2 = $mylat + ($dist / 69);
839 839
 
840
-        $rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : '';
841
-        $rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : '';
842
-        $rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : '';
843
-        $rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : '';
840
+		$rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : '';
841
+		$rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : '';
842
+		$rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : '';
843
+		$rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : '';
844 844
 
845 845
 
846 846
 
847
-	    $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
847
+		$where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
848 848
 			                    $content_where 
849 849
 								$terms_sql 
850 850
 							)
@@ -853,35 +853,35 @@  discard block
 block discarded – undo
853 853
 						AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 )
854 854
 						AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) ";
855 855
 
856
-        if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
857
-            $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
858
-            $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
859
-        }
856
+		if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
857
+			$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
858
+			$where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
859
+		}
860 860
 
861
-    } else {
861
+	} else {
862 862
 
863 863
 
864 864
 
865
-        $where .= " AND (	( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
865
+		$where .= " AND (	( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
866 866
                             $content_where  
867 867
 							$terms_sql 
868 868
 					    ) 
869 869
 					
870 870
 				AND $wpdb->posts.post_type in ('$post_types')
871 871
 				AND ($wpdb->posts.post_status = 'publish') ";
872
-    }
872
+	}
873 873
 
874 874
 	########### WPML ###########
875
-    if ( geodir_wpml_is_post_type_translated( $post_types ) ) {
875
+	if ( geodir_wpml_is_post_type_translated( $post_types ) ) {
876 876
 		$lang_code = ICL_LANGUAGE_CODE;
877 877
 
878 878
 		if ($lang_code && $post_types) {
879
-            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
880
-        }
881
-    }
882
-    ########### WPML ###########
879
+			$where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
880
+		}
881
+	}
882
+	########### WPML ###########
883 883
 
884
-    return $where;
884
+	return $where;
885 885
 }
886 886
 
887 887
 
@@ -896,45 +896,45 @@  discard block
 block discarded – undo
896 896
  * @return string Modified where query string.
897 897
  */
898 898
 function author_filter_where($where) {
899
-    global $wpdb, $geodir_post_type, $table, $curr;
899
+	global $wpdb, $geodir_post_type, $table, $curr;
900 900
 
901
-    $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
902
-    $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
901
+	$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
902
+	$user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
903 903
 
904
-    if (isset($_REQUEST['stype'])) {
905
-        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
906
-    } else {
907
-        $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
908
-    }
904
+	if (isset($_REQUEST['stype'])) {
905
+		$where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
906
+	} else {
907
+		$where = " AND $wpdb->posts.post_type IN ('gd_place') ";
908
+	}
909 909
 
910
-    if ($user_id > 0) {
911
-        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
912
-            $user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true);
913
-            $user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
914
-            $where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
915
-        } else
916
-            $where .= " AND $wpdb->posts.post_author = $user_id";
917
-
918
-        if ($user_id == (int)get_current_user_id()) {
919
-            $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
920
-        } else {
921
-            $where .= " AND $wpdb->posts.post_status = 'publish' ";
922
-        }
923
-    } else {
924
-        $where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' ";
925
-    }
910
+	if ($user_id > 0) {
911
+		if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
912
+			$user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true);
913
+			$user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
914
+			$where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
915
+		} else
916
+			$where .= " AND $wpdb->posts.post_author = $user_id";
917
+
918
+		if ($user_id == (int)get_current_user_id()) {
919
+			$where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
920
+		} else {
921
+			$where .= " AND $wpdb->posts.post_status = 'publish' ";
922
+		}
923
+	} else {
924
+		$where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' ";
925
+	}
926 926
 
927
-    ########### WPML ###########
928
-    if (geodir_wpml_is_post_type_translated(sanitize_text_field($_REQUEST['stype']))) {
929
-        $lang_code = ICL_LANGUAGE_CODE;
930
-        if ($lang_code) {
931
-            $where .= " AND icl_t.language_code='" . $lang_code . "' ";
932
-        }
927
+	########### WPML ###########
928
+	if (geodir_wpml_is_post_type_translated(sanitize_text_field($_REQUEST['stype']))) {
929
+		$lang_code = ICL_LANGUAGE_CODE;
930
+		if ($lang_code) {
931
+			$where .= " AND icl_t.language_code='" . $lang_code . "' ";
932
+		}
933 933
 
934
-    }
935
-    ########### WPML ###########
934
+	}
935
+	########### WPML ###########
936 936
 
937
-    return $where;
937
+	return $where;
938 938
 }
939 939
 
940 940
 /**
@@ -949,11 +949,11 @@  discard block
 block discarded – undo
949 949
  */
950 950
 function geodir_filter_widget_join($join)
951 951
 {
952
-    global $wp_query, $table;
953
-    if (!empty($wp_query->query['with_pics_only'])) {
954
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
955
-    }
956
-    return $join;
952
+	global $wp_query, $table;
953
+	if (!empty($wp_query->query['with_pics_only'])) {
954
+		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
955
+	}
956
+	return $join;
957 957
 }
958 958
 
959 959
 /**
@@ -968,43 +968,43 @@  discard block
 block discarded – undo
968 968
  */
969 969
 function geodir_filter_widget_where($where)
970 970
 {
971
-    global $wp_query, $table;
972
-    if (!empty($wp_query->query['show_featured_only'])) {
973
-        $where .= " AND " . $table . ".is_featured = '1'";
974
-    }
975
-    if (!empty($wp_query->query['show_special_only'])) {
976
-        $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
977
-    }
978
-    if (!empty($wp_query->query['with_pics_only'])) {
979
-        $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
980
-    }
981
-    if (!empty($wp_query->query['with_videos_only'])) {
982
-        $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
983
-    }
984
-    return $where;
971
+	global $wp_query, $table;
972
+	if (!empty($wp_query->query['show_featured_only'])) {
973
+		$where .= " AND " . $table . ".is_featured = '1'";
974
+	}
975
+	if (!empty($wp_query->query['show_special_only'])) {
976
+		$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
977
+	}
978
+	if (!empty($wp_query->query['with_pics_only'])) {
979
+		$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
980
+	}
981
+	if (!empty($wp_query->query['with_videos_only'])) {
982
+		$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
983
+	}
984
+	return $where;
985 985
 }
986 986
 
987 987
 
988 988
 function geodir_related_posts_fields($fields) {
989
-    global $wp_query, $wpdb, $table, $post;
989
+	global $wp_query, $wpdb, $table, $post;
990 990
 
991
-    $fields .= ", " . $table . ".* ";
991
+	$fields .= ", " . $table . ".* ";
992 992
 
993
-    $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
993
+	$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
994 994
 
995
-    $mylat = $post->post_latitude;
996
-    $mylon = $post->post_longitude;
995
+	$mylat = $post->post_latitude;
996
+	$mylon = $post->post_longitude;
997 997
 
998
-    $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
999
-    return $fields;
998
+	$fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
999
+	return $fields;
1000 1000
 }
1001 1001
 function geodir_related_posts_fields_filter($query) {
1002
-    if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
1003
-        && isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
1004
-        && isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
1005
-    ) {
1006
-        add_filter('posts_fields', 'geodir_related_posts_fields', 1);
1007
-    }
1002
+	if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
1003
+		&& isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
1004
+		&& isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
1005
+	) {
1006
+		add_filter('posts_fields', 'geodir_related_posts_fields', 1);
1007
+	}
1008 1008
 }
1009 1009
 add_action('pre_get_posts', 'geodir_related_posts_fields_filter', 1);
1010 1010
 
@@ -1019,30 +1019,30 @@  discard block
 block discarded – undo
1019 1019
  * @return string|null If field exists in table returns order by clause else returns empty.
1020 1020
  */
1021 1021
 function geodir_prepare_custom_sorting( $sorting, $table ) {
1022
-    $orderby = '';
1022
+	$orderby = '';
1023 1023
     
1024
-    if ( empty( $sorting ) || empty( $table ) ) {
1025
-        return $orderby;
1026
-    }
1024
+	if ( empty( $sorting ) || empty( $table ) ) {
1025
+		return $orderby;
1026
+	}
1027 1027
     
1028
-    if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1029
-        $sorting_array = explode( '_', $sorting );
1028
+	if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1029
+		$sorting_array = explode( '_', $sorting );
1030 1030
         
1031
-        if ( ( $count = count( $sorting_array ) ) > 1 ) {
1032
-            $order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1033
-            array_pop( $sorting_array );
1031
+		if ( ( $count = count( $sorting_array ) ) > 1 ) {
1032
+			$order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1033
+			array_pop( $sorting_array );
1034 1034
             
1035
-            if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1036
-                $sort_by = implode( '_', $sorting_array );
1035
+			if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1036
+				$sort_by = implode( '_', $sorting_array );
1037 1037
                 
1038
-                if ( geodir_column_exist( $table, $sort_by ) ) {
1039
-                    $orderby = $table . "." . $sort_by . " " . $order;
1040
-                }
1041
-            }
1042
-        }
1043
-    }
1038
+				if ( geodir_column_exist( $table, $sort_by ) ) {
1039
+					$orderby = $table . "." . $sort_by . " " . $order;
1040
+				}
1041
+			}
1042
+		}
1043
+	}
1044 1044
 
1045
-    return $orderby;
1045
+	return $orderby;
1046 1046
 }
1047 1047
 
1048 1048
 /**
@@ -1062,21 +1062,21 @@  discard block
 block discarded – undo
1062 1062
  * @return string Modified fields SQL.
1063 1063
  */
1064 1064
 function geodir_search_widget_location_filter_fields( $fields, $table, $post_type ) {
1065
-    global $wpdb, $gd_query_args_widgets, $snear, $gd_session;
1065
+	global $wpdb, $gd_query_args_widgets, $snear, $gd_session;
1066 1066
 
1067
-    if ( !empty( $gd_query_args_widgets['gd_location'] ) && geodir_is_page( 'search' ) && !empty( $_REQUEST['sgeo_lat'] ) && !empty( $_REQUEST['sgeo_lon'] ) ) {
1068
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
1067
+	if ( !empty( $gd_query_args_widgets['gd_location'] ) && geodir_is_page( 'search' ) && !empty( $_REQUEST['sgeo_lat'] ) && !empty( $_REQUEST['sgeo_lon'] ) ) {
1068
+		$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
1069 1069
 
1070
-        if ( $location_allowed && strpos( strtolower( $fields ), ' as distance ' ) === false && ( $snear != '' || $gd_session->get( 'all_near_me' ) ) ) {
1071
-            $latitude = sanitize_text_field( $_REQUEST['sgeo_lat'] );
1072
-            $longitude = sanitize_text_field( $_REQUEST['sgeo_lon'] );
1073
-            $radius = geodir_getDistanceRadius( get_option( 'geodir_search_dist_1' ) );
1070
+		if ( $location_allowed && strpos( strtolower( $fields ), ' as distance ' ) === false && ( $snear != '' || $gd_session->get( 'all_near_me' ) ) ) {
1071
+			$latitude = sanitize_text_field( $_REQUEST['sgeo_lat'] );
1072
+			$longitude = sanitize_text_field( $_REQUEST['sgeo_lon'] );
1073
+			$radius = geodir_getDistanceRadius( get_option( 'geodir_search_dist_1' ) );
1074 1074
 
1075
-            $fields .= $wpdb->prepare( ", (" . $radius . " * 2 * ASIN(SQRT(POWER(SIN((ABS(%s) - ABS(" . $table . ".post_latitude)) * PI() / 180 / 2), 2) + COS(ABS(%s) * PI() / 180) * COS(ABS(" . $table . ".post_latitude) * PI() / 180) * POWER(SIN((%s - " . $table . ".post_longitude) * PI() / 180 / 2), 2)))) AS distance ", $latitude, $latitude, $longitude );
1076
-        }
1077
-    }
1075
+			$fields .= $wpdb->prepare( ", (" . $radius . " * 2 * ASIN(SQRT(POWER(SIN((ABS(%s) - ABS(" . $table . ".post_latitude)) * PI() / 180 / 2), 2) + COS(ABS(%s) * PI() / 180) * COS(ABS(" . $table . ".post_latitude) * PI() / 180) * POWER(SIN((%s - " . $table . ".post_longitude) * PI() / 180 / 2), 2)))) AS distance ", $latitude, $latitude, $longitude );
1076
+		}
1077
+	}
1078 1078
 
1079
-    return $fields;
1079
+	return $fields;
1080 1080
 }
1081 1081
 
1082 1082
 /**
@@ -1095,15 +1095,15 @@  discard block
 block discarded – undo
1095 1095
  * @return string Modified fields SQL.
1096 1096
  */
1097 1097
 function geodir_search_widget_location_filter_orderby( $orderby, $table, $post_type ) {
1098
-    global $gd_query_args_widgets, $snear, $gd_session;
1098
+	global $gd_query_args_widgets, $snear, $gd_session;
1099 1099
 
1100
-    if ( !empty( $gd_query_args_widgets['gd_location'] ) && geodir_is_page( 'search' ) && !empty( $_REQUEST['sgeo_lat'] ) && !empty( $_REQUEST['sgeo_lon'] ) ) {
1101
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
1100
+	if ( !empty( $gd_query_args_widgets['gd_location'] ) && geodir_is_page( 'search' ) && !empty( $_REQUEST['sgeo_lat'] ) && !empty( $_REQUEST['sgeo_lon'] ) ) {
1101
+		$location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
1102 1102
 
1103
-        if ( $location_allowed && ( $snear != '' || $gd_session->get( 'all_near_me' ) ) ) {
1104
-            $orderby = "distance ASC, " . $orderby;
1105
-        }
1106
-    }
1103
+		if ( $location_allowed && ( $snear != '' || $gd_session->get( 'all_near_me' ) ) ) {
1104
+			$orderby = "distance ASC, " . $orderby;
1105
+		}
1106
+	}
1107 1107
 
1108
-    return $orderby;
1108
+	return $orderby;
1109 1109
 }
1110 1110
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +105 added lines, -105 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
  * @global string $s_A Extra parameters.
66 66
  * @global string $s_SA Extra parameters.
67 67
  */
68
-function set_listing_request($query )
68
+function set_listing_request($query)
69 69
 {
70 70
     global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
71 71
 
@@ -99,15 +99,15 @@  discard block
 block discarded – undo
99 99
         } //  Distance
100 100
 
101 101
         if (isset($_REQUEST['sgeo_lat'])) {
102
-            $mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
102
+            $mylat = (float) esc_attr($_REQUEST['sgeo_lat']);
103 103
         } else {
104
-            $mylat = (float)geodir_get_current_city_lat();
104
+            $mylat = (float) geodir_get_current_city_lat();
105 105
         } //  Latitude
106 106
 
107 107
         if (isset($_REQUEST['sgeo_lon'])) {
108
-            $mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
108
+            $mylon = (float) esc_attr($_REQUEST['sgeo_lon']);
109 109
         } else {
110
-            $mylon = (float)geodir_get_current_city_lng();
110
+            $mylon = (float) geodir_get_current_city_lng();
111 111
         } //  Distance
112 112
 
113 113
         if (isset($_REQUEST['snear'])) {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
         if ($snear == 'NEAR ME') {
122 122
             $ip = $_SERVER['REMOTE_ADDR'];
123
-            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
123
+            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$ip));
124 124
             $mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125 125
             $mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126 126
         }
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
             $s_AA = str_replace(" ", "", $s);
131 131
             $s_A = explode(",", $s_AA);
132 132
             $s_A = implode('","', $s_A);
133
-            $s_A = '"' . $s_A . '"';
133
+            $s_A = '"'.$s_A.'"';
134 134
         } else {
135
-            $s_A = '"' . $s . '"';
135
+            $s_A = '"'.$s.'"';
136 136
         }
137 137
 
138 138
         if (strstr($s, ' ')) {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
     if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
195 195
 
196
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
196
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
197 197
 
198 198
         add_filter('posts_fields', 'geodir_posts_fields', 1);
199 199
         add_filter('posts_join', 'geodir_posts_join', 1);
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
234 234
 
235 235
     // Filter-Location-Manager to add location table.
236
-    $fields .= ", " . $table . ".* ";
236
+    $fields .= ", ".$table.".* ";
237 237
 
238 238
 	if ($snear != '' || $gd_session->get('all_near_me')) {
239 239
         $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
@@ -243,16 +243,16 @@  discard block
 block discarded – undo
243 243
             $mylon = $gd_session->get('user_lon');
244 244
         }
245 245
 
246
-        $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
246
+        $fields .= " , (".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247 247
     }
248 248
 
249 249
     global $s;
250 250
     if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251 251
         $keywords = explode(" ", $s);
252 252
 
253
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
-            foreach($keywords as $kkey=>$kword){
255
-                if(geodir_utf8_strlen($kword)<=$klimit){
253
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
254
+            foreach ($keywords as $kkey=>$kword) {
255
+                if (geodir_utf8_strlen($kword) <= $klimit) {
256 256
                     unset($keywords[$kkey]);
257 257
                 }
258 258
             }
@@ -270,24 +270,24 @@  discard block
 block discarded – undo
270 270
                 $count = 0;
271 271
                 foreach ($keywords as $keyword) {
272 272
                     $keyword = trim($keyword);
273
-                    $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
273
+                    $keyword = wp_specialchars_decode($keyword, ENT_QUOTES);
274 274
 					$count++;
275 275
                     if ($count < count($keywords)) {
276 276
                        // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
277
-						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " ";
277
+						$gd_titlematch_part .= "( ".$wpdb->posts.".post_title LIKE '".$keyword."' OR ".$wpdb->posts.".post_title LIKE '".$keyword."%%' OR ".$wpdb->posts.".post_title LIKE '%% ".$keyword."%%' ) ".$key." ";
278 278
                     } else {
279 279
                         //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
280
-						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) ";
280
+						$gd_titlematch_part .= "( ".$wpdb->posts.".post_title LIKE '".$keyword."' OR ".$wpdb->posts.".post_title LIKE '".$keyword."%%' OR ".$wpdb->posts.".post_title LIKE '%% ".$keyword."%%' ) ";
281 281
                     }
282 282
                 }
283
-                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
283
+                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS ".$part.",";
284 284
             }
285 285
         } else {
286 286
             $gd_titlematch_part = "";
287 287
         }
288
-        $s = stripslashes_deep( $s );
289
-        $s = wp_specialchars_decode($s,ENT_QUOTES);
290
-		$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
288
+        $s = stripslashes_deep($s);
289
+        $s = wp_specialchars_decode($s, ENT_QUOTES);
290
+		$fields .= $wpdb->prepare(", CASE WHEN ".$table.".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN ".$wpdb->posts.".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle,".$gd_titlematch_part." CASE WHEN ( ".$wpdb->posts.".post_title LIKE %s OR ".$wpdb->posts.".post_title LIKE %s OR ".$wpdb->posts.".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s.'%', '% '.$s.'%', $s, $s.' %', '% '.$s.' %', '% '.$s));
291 291
     }
292 292
 
293 293
     return $fields;
@@ -311,18 +311,18 @@  discard block
 block discarded – undo
311 311
 
312 312
     ########### WPML ###########
313 313
 
314
-    if ( geodir_wpml_is_post_type_translated( $geodir_post_type ) ) {
314
+    if (geodir_wpml_is_post_type_translated($geodir_post_type)) {
315 315
         global $sitepress;
316 316
         $lang_code = ICL_LANGUAGE_CODE;
317 317
         $default_lang_code = $sitepress->get_default_language();
318 318
         if ($lang_code) {
319
-            $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
319
+            $join .= "JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
320 320
         }
321 321
 
322 322
     }
323 323
     ########### WPML ###########
324 324
 
325
-    $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
325
+    $join .= " INNER JOIN ".$table." ON (".$table.".post_id = $wpdb->posts.ID)  ";
326 326
     //===old code start
327 327
     //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
328 328
 
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
             $sort_by = 'az';
392 392
         }
393 393
 
394
-        if ($snear != '' &&  $sort_by!='farthest') {
394
+        if ($snear != '' && $sort_by != 'farthest') {
395 395
             $sort_by = 'nearest';
396 396
         }
397 397
     }
@@ -405,20 +405,20 @@  discard block
 block discarded – undo
405 405
             break;
406 406
         case 'low_review':
407 407
         case 'rating_count_asc':
408
-            $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
408
+            $orderby = $table.".rating_count ASC, ".$table.".overall_rating ASC, ";
409 409
             break;
410 410
         case 'high_review':
411 411
         case 'rating_count_desc':
412
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
412
+            $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
413 413
             break;
414 414
         case 'low_rating':
415
-            $orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
415
+            $orderby = "( ".$table.".overall_rating  ) ASC, ".$table.".rating_count ASC,  ";
416 416
             break;
417 417
         case 'high_rating':
418
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
418
+            $orderby = " ".$table.".overall_rating DESC, ".$table.".rating_count DESC, ";
419 419
             break;
420 420
         case 'featured':
421
-            $orderby = $table . ".is_featured asc, ";
421
+            $orderby = $table.".is_featured asc, ";
422 422
             break;
423 423
         case 'nearest':
424 424
             $orderby = " distance asc, ";
@@ -434,10 +434,10 @@  discard block
 block discarded – undo
434 434
             break;
435 435
         // sort by rating
436 436
         case 'overall_rating_desc':
437
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
437
+            $orderby = " ".$table.".overall_rating DESC, ".$table.".rating_count DESC, ";
438 438
             break;
439 439
         case 'overall_rating_asc':
440
-            $orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
440
+            $orderby = " ".$table.".overall_rating ASC, ".$table.".rating_count ASC, ";
441 441
             break;
442 442
         default:
443 443
 
@@ -458,24 +458,24 @@  discard block
 block discarded – undo
458 458
 
459 459
     if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460 460
         $keywords = explode(" ", $s);
461
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
-            foreach($keywords as $kkey=>$kword){
463
-                if(geodir_utf8_strlen($kword)<=$klimit){
461
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
462
+            foreach ($keywords as $kkey=>$kword) {
463
+                if (geodir_utf8_strlen($kword) <= $klimit) {
464 464
                     unset($keywords[$kkey]);
465 465
                 }
466 466
             }
467 467
         }
468 468
         if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469 469
             if (count($keywords) > 1) {
470
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
470
+                $orderby = $orderby." ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471 471
             } else {
472
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
472
+                $orderby = $orderby." ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473 473
             }
474 474
         } else {
475 475
             if (count($keywords) > 1) {
476
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
476
+                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ".$orderby;
477 477
             } else {
478
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
478
+                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ".$orderby;
479 479
             }
480 480
         }
481 481
     }
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
      */
491 491
     $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
492 492
 
493
-    $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
493
+    $orderby .= $table.".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
494 494
 
495 495
     return $orderby;
496 496
 }
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
     global $wpdb;
514 514
 
515
-    if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
515
+    if ($sort_by != '' && (!is_search() || (isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear'] == '' && ($_REQUEST['s'] == '' || $_REQUEST['s'] == ' ')))) {
516 516
 
517 517
         $sort_array = explode('_', $sort_by);
518 518
 
@@ -522,31 +522,31 @@  discard block
 block discarded – undo
522 522
 
523 523
         if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
524 524
 
525
-            $sort_by = str_replace('_' . $order, '', $sort_by);
525
+            $sort_by = str_replace('_'.$order, '', $sort_by);
526 526
 
527 527
             switch ($sort_by):
528 528
 
529 529
                 case 'post_date':
530 530
                 case 'comment_count':
531 531
 
532
-                    $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
532
+                    $orderby = "$wpdb->posts.".$sort_by." ".$order.", ".$table.".overall_rating ".$order.", ";
533 533
                     break;
534 534
 
535 535
                 case 'distance':
536
-                    $orderby = $sort_by . " " . $order . ", ";
536
+                    $orderby = $sort_by." ".$order.", ";
537 537
                     break;
538 538
 
539 539
 
540 540
                 // sort by rating
541 541
                 case 'overall_rating':
542
-                    $orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
542
+                    $orderby = " ".$table.".".$sort_by."  ".$order.", ".$table.".rating_count ".$order.", ";
543 543
 
544 544
                     break;
545 545
 
546 546
 
547 547
                 default:
548 548
                     if (geodir_column_exist($table, $sort_by)) {
549
-						$orderby = $table . "." . $sort_by . " " . $order . ", ";
549
+						$orderby = $table.".".$sort_by." ".$order.", ";
550 550
 					}
551 551
                     break;
552 552
 
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
         }
595 595
 
596 596
         //if (!geodir_is_page('detail'))
597
-            add_filter('posts_where', 'geodir_default_where', 1);/**/
597
+            add_filter('posts_where', 'geodir_default_where', 1); /**/
598 598
 
599 599
         //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
600 600
 
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
         $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666 666
         //echo '##########'.$q_post_type;
667 667
         if ($lang_code && $q_post_type && geodir_wpml_is_post_type_translated($q_post_type)) {
668
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
668
+            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_".$q_post_type."') ";
669 669
             //$where .= " AND icl_t.language_code = '$lang_code' ";
670 670
         }
671 671
 
@@ -732,8 +732,8 @@  discard block
 block discarded – undo
732 732
 	}
733 733
 
734 734
 	$s = trim($s);
735
-    $s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
-    $s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
735
+    $s = wp_specialchars_decode($s, ENT_QUOTES);
736
+    $s_A = wp_specialchars_decode($s_A, ENT_QUOTES);
737 737
 
738 738
     $where = '';
739 739
     $better_search_terms = '';
@@ -744,9 +744,9 @@  discard block
 block discarded – undo
744 744
 
745 745
     if ($s != '') {
746 746
         $keywords = explode(" ", $s);
747
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
-            foreach($keywords as $kkey=>$kword){
749
-                if(geodir_utf8_strlen($kword)<=$klimit){
747
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
748
+            foreach ($keywords as $kkey=>$kword) {
749
+                if (geodir_utf8_strlen($kword) <= $klimit) {
750 750
                     unset($keywords[$kkey]);
751 751
                 }
752 752
             }
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
         if (!empty($keywords)) {
756 756
             foreach ($keywords as $keyword) {
757 757
                 $keyword = trim($keyword);
758
-                $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
758
+                $keyword = wp_specialchars_decode($keyword, ENT_QUOTES);
759 759
                 if ($keyword != '') {
760 760
                     /**
761 761
                      * Filter the search query keywords SQL.
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
                      * @param array $keywords The array of keywords for the query.
767 767
                      * @param string $keyword The single keyword being searched.
768 768
                      */
769
-					$better_search_terms .= apply_filters("geodir_search_better_search_terms",' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )',$keywords,$keyword);
769
+					$better_search_terms .= apply_filters("geodir_search_better_search_terms", ' OR ( '.$wpdb->posts.'.post_title LIKE "'.$keyword.'" OR '.$wpdb->posts.'.post_title LIKE "'.$keyword.'%" OR '.$wpdb->posts.'.post_title LIKE "% '.$keyword.'%" )', $keywords, $keyword);
770 770
                 }
771 771
             }
772 772
         }
@@ -774,10 +774,10 @@  discard block
 block discarded – undo
774 774
 
775 775
     /* get taxonomy */
776 776
     $taxonomies = geodir_get_taxonomies($post_types, true);
777
-    if($taxonomies) {
777
+    if ($taxonomies) {
778 778
         $taxonomies = implode("','", $taxonomies);
779
-        $taxonomies = "'" . $taxonomies . "'";
780
-    }else{$taxonomies='';}
779
+        $taxonomies = "'".$taxonomies."'";
780
+    } else {$taxonomies = ''; }
781 781
 
782 782
     $content_where = $terms_where = '';
783 783
 	if ($s != '') {
@@ -788,7 +788,7 @@  discard block
 block discarded – undo
788 788
          * @package GeoDirectory
789 789
          * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790 790
          */
791
-		$content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
791
+		$content_where = apply_filters("geodir_search_content_where", " OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
792 792
         /**
793 793
          * Filter the search query term values.
794 794
          *
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
          * @package GeoDirectory
797 797
          * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798 798
          */
799
-        $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
799
+        $terms_where = apply_filters("geodir_search_terms_where", " AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
800 800
 	}
801 801
 
802 802
 
@@ -813,13 +813,13 @@  discard block
 block discarded – undo
813 813
     $term_ids = array();
814 814
     $terms_sql = '';
815 815
 
816
-    if(!empty($term_results)){
817
-        foreach($term_results as $term_id){
816
+    if (!empty($term_results)) {
817
+        foreach ($term_results as $term_id) {
818 818
             $term_ids[] = $term_id;
819 819
         }
820
-        if(!empty( $term_ids)){
820
+        if (!empty($term_ids)) {
821 821
 
822
-            foreach($term_ids as $term){
822
+            foreach ($term_ids as $term) {
823 823
                 $terms_sql .= " OR FIND_IN_SET($term->term_id , ".$table.".".$post_types."category) ";
824 824
             }
825 825
         }
@@ -850,12 +850,12 @@  discard block
 block discarded – undo
850 850
 							)
851 851
 						AND $wpdb->posts.post_type in ('{$post_types}')
852 852
 						AND ($wpdb->posts.post_status = 'publish')
853
-						AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 )
854
-						AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) ";
853
+						AND ( ".$table.".post_latitude between $rlat1 and $rlat2 )
854
+						AND ( ".$table.".post_longitude between $rlon1 and $rlon2 ) ";
855 855
 
856 856
         if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
857 857
             $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
858
-            $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
858
+            $where .= " AND CONVERT((".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= ".$dist;
859 859
         }
860 860
 
861 861
     } else {
@@ -872,11 +872,11 @@  discard block
 block discarded – undo
872 872
     }
873 873
 
874 874
 	########### WPML ###########
875
-    if ( geodir_wpml_is_post_type_translated( $post_types ) ) {
875
+    if (geodir_wpml_is_post_type_translated($post_types)) {
876 876
 		$lang_code = ICL_LANGUAGE_CODE;
877 877
 
878 878
 		if ($lang_code && $post_types) {
879
-            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
879
+            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_".$post_types."') ";
880 880
         }
881 881
     }
882 882
     ########### WPML ###########
@@ -899,10 +899,10 @@  discard block
 block discarded – undo
899 899
     global $wpdb, $geodir_post_type, $table, $curr;
900 900
 
901 901
     $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
902
-    $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
902
+    $user_id = !empty($curauth->ID) ? (int) $curauth->ID : 0;
903 903
 
904 904
     if (isset($_REQUEST['stype'])) {
905
-        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
905
+        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ", $_REQUEST['stype']);
906 906
     } else {
907 907
         $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
908 908
     }
@@ -915,7 +915,7 @@  discard block
 block discarded – undo
915 915
         } else
916 916
             $where .= " AND $wpdb->posts.post_author = $user_id";
917 917
 
918
-        if ($user_id == (int)get_current_user_id()) {
918
+        if ($user_id == (int) get_current_user_id()) {
919 919
             $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
920 920
         } else {
921 921
             $where .= " AND $wpdb->posts.post_status = 'publish' ";
@@ -928,7 +928,7 @@  discard block
 block discarded – undo
928 928
     if (geodir_wpml_is_post_type_translated(sanitize_text_field($_REQUEST['stype']))) {
929 929
         $lang_code = ICL_LANGUAGE_CODE;
930 930
         if ($lang_code) {
931
-            $where .= " AND icl_t.language_code='" . $lang_code . "' ";
931
+            $where .= " AND icl_t.language_code='".$lang_code."' ";
932 932
         }
933 933
 
934 934
     }
@@ -951,7 +951,7 @@  discard block
 block discarded – undo
951 951
 {
952 952
     global $wp_query, $table;
953 953
     if (!empty($wp_query->query['with_pics_only'])) {
954
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
954
+        $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
955 955
     }
956 956
     return $join;
957 957
 }
@@ -970,16 +970,16 @@  discard block
 block discarded – undo
970 970
 {
971 971
     global $wp_query, $table;
972 972
     if (!empty($wp_query->query['show_featured_only'])) {
973
-        $where .= " AND " . $table . ".is_featured = '1'";
973
+        $where .= " AND ".$table.".is_featured = '1'";
974 974
     }
975 975
     if (!empty($wp_query->query['show_special_only'])) {
976
-        $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
976
+        $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
977 977
     }
978 978
     if (!empty($wp_query->query['with_pics_only'])) {
979
-        $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
979
+        $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL GROUP BY ".$table.".post_id";
980 980
     }
981 981
     if (!empty($wp_query->query['with_videos_only'])) {
982
-        $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
982
+        $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
983 983
     }
984 984
     return $where;
985 985
 }
@@ -988,18 +988,18 @@  discard block
 block discarded – undo
988 988
 function geodir_related_posts_fields($fields) {
989 989
     global $wp_query, $wpdb, $table, $post;
990 990
 
991
-    $fields .= ", " . $table . ".* ";
991
+    $fields .= ", ".$table.".* ";
992 992
 
993 993
     $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
994 994
 
995 995
     $mylat = $post->post_latitude;
996 996
     $mylon = $post->post_longitude;
997 997
 
998
-    $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
998
+    $fields .= " , (".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) )))as distance ";
999 999
     return $fields;
1000 1000
 }
1001 1001
 function geodir_related_posts_fields_filter($query) {
1002
-    if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
1002
+    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
1003 1003
         && isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
1004 1004
         && isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
1005 1005
     ) {
@@ -1018,25 +1018,25 @@  discard block
 block discarded – undo
1018 1018
  * @param string $table Listing table name.
1019 1019
  * @return string|null If field exists in table returns order by clause else returns empty.
1020 1020
  */
1021
-function geodir_prepare_custom_sorting( $sorting, $table ) {
1021
+function geodir_prepare_custom_sorting($sorting, $table) {
1022 1022
     $orderby = '';
1023 1023
     
1024
-    if ( empty( $sorting ) || empty( $table ) ) {
1024
+    if (empty($sorting) || empty($table)) {
1025 1025
         return $orderby;
1026 1026
     }
1027 1027
     
1028
-    if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1029
-        $sorting_array = explode( '_', $sorting );
1028
+    if (strpos(strtoupper($sorting), '_ASC') !== false || strpos(strtoupper($sorting), '_DESC') !== false) {
1029
+        $sorting_array = explode('_', $sorting);
1030 1030
         
1031
-        if ( ( $count = count( $sorting_array ) ) > 1 ) {
1032
-            $order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1033
-            array_pop( $sorting_array );
1031
+        if (($count = count($sorting_array)) > 1) {
1032
+            $order = !empty($sorting_array[$count - 1]) ? strtoupper($sorting_array[$count - 1]) : '';
1033
+            array_pop($sorting_array);
1034 1034
             
1035
-            if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1036
-                $sort_by = implode( '_', $sorting_array );
1035
+            if (!empty($sorting_array) && ($order == 'ASC' || $order == 'DESC')) {
1036
+                $sort_by = implode('_', $sorting_array);
1037 1037
                 
1038
-                if ( geodir_column_exist( $table, $sort_by ) ) {
1039
-                    $orderby = $table . "." . $sort_by . " " . $order;
1038
+                if (geodir_column_exist($table, $sort_by)) {
1039
+                    $orderby = $table.".".$sort_by." ".$order;
1040 1040
                 }
1041 1041
             }
1042 1042
         }
@@ -1061,18 +1061,18 @@  discard block
 block discarded – undo
1061 1061
  *
1062 1062
  * @return string Modified fields SQL.
1063 1063
  */
1064
-function geodir_search_widget_location_filter_fields( $fields, $table, $post_type ) {
1064
+function geodir_search_widget_location_filter_fields($fields, $table, $post_type) {
1065 1065
     global $wpdb, $gd_query_args_widgets, $snear, $gd_session;
1066 1066
 
1067
-    if ( !empty( $gd_query_args_widgets['gd_location'] ) && geodir_is_page( 'search' ) && !empty( $_REQUEST['sgeo_lat'] ) && !empty( $_REQUEST['sgeo_lon'] ) ) {
1068
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
1067
+    if (!empty($gd_query_args_widgets['gd_location']) && geodir_is_page('search') && !empty($_REQUEST['sgeo_lat']) && !empty($_REQUEST['sgeo_lon'])) {
1068
+        $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
1069 1069
 
1070
-        if ( $location_allowed && strpos( strtolower( $fields ), ' as distance ' ) === false && ( $snear != '' || $gd_session->get( 'all_near_me' ) ) ) {
1071
-            $latitude = sanitize_text_field( $_REQUEST['sgeo_lat'] );
1072
-            $longitude = sanitize_text_field( $_REQUEST['sgeo_lon'] );
1073
-            $radius = geodir_getDistanceRadius( get_option( 'geodir_search_dist_1' ) );
1070
+        if ($location_allowed && strpos(strtolower($fields), ' as distance ') === false && ($snear != '' || $gd_session->get('all_near_me'))) {
1071
+            $latitude = sanitize_text_field($_REQUEST['sgeo_lat']);
1072
+            $longitude = sanitize_text_field($_REQUEST['sgeo_lon']);
1073
+            $radius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
1074 1074
 
1075
-            $fields .= $wpdb->prepare( ", (" . $radius . " * 2 * ASIN(SQRT(POWER(SIN((ABS(%s) - ABS(" . $table . ".post_latitude)) * PI() / 180 / 2), 2) + COS(ABS(%s) * PI() / 180) * COS(ABS(" . $table . ".post_latitude) * PI() / 180) * POWER(SIN((%s - " . $table . ".post_longitude) * PI() / 180 / 2), 2)))) AS distance ", $latitude, $latitude, $longitude );
1075
+            $fields .= $wpdb->prepare(", (".$radius." * 2 * ASIN(SQRT(POWER(SIN((ABS(%s) - ABS(".$table.".post_latitude)) * PI() / 180 / 2), 2) + COS(ABS(%s) * PI() / 180) * COS(ABS(".$table.".post_latitude) * PI() / 180) * POWER(SIN((%s - ".$table.".post_longitude) * PI() / 180 / 2), 2)))) AS distance ", $latitude, $latitude, $longitude);
1076 1076
         }
1077 1077
     }
1078 1078
 
@@ -1094,14 +1094,14 @@  discard block
 block discarded – undo
1094 1094
  *
1095 1095
  * @return string Modified fields SQL.
1096 1096
  */
1097
-function geodir_search_widget_location_filter_orderby( $orderby, $table, $post_type ) {
1097
+function geodir_search_widget_location_filter_orderby($orderby, $table, $post_type) {
1098 1098
     global $gd_query_args_widgets, $snear, $gd_session;
1099 1099
 
1100
-    if ( !empty( $gd_query_args_widgets['gd_location'] ) && geodir_is_page( 'search' ) && !empty( $_REQUEST['sgeo_lat'] ) && !empty( $_REQUEST['sgeo_lon'] ) ) {
1101
-        $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true;
1100
+    if (!empty($gd_query_args_widgets['gd_location']) && geodir_is_page('search') && !empty($_REQUEST['sgeo_lat']) && !empty($_REQUEST['sgeo_lon'])) {
1101
+        $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
1102 1102
 
1103
-        if ( $location_allowed && ( $snear != '' || $gd_session->get( 'all_near_me' ) ) ) {
1104
-            $orderby = "distance ASC, " . $orderby;
1103
+        if ($location_allowed && ($snear != '' || $gd_session->get('all_near_me'))) {
1104
+            $orderby = "distance ASC, ".$orderby;
1105 1105
         }
1106 1106
     }
1107 1107
 
Please login to merge, or discard this patch.