Test Failed
Pull Request — master (#289)
by Kiran
07:33
created
geodirectory_hooks_actions.php 1 patch
Indentation   +1111 added lines, -1111 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 virtural 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 virtural 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
 
@@ -222,12 +222,12 @@  discard block
 block discarded – undo
222 222
  */
223 223
 function geodir_unset_prev_theme_nav_location($newname)
224 224
 {
225
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
226
-    if ($geodir_theme_location) {
227
-        update_option('geodir_theme_location_nav', $geodir_theme_location);
228
-    } else {
229
-        update_option('geodir_theme_location_nav', '');
230
-    }
225
+	$geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
226
+	if ($geodir_theme_location) {
227
+		update_option('geodir_theme_location_nav', $geodir_theme_location);
228
+	} else {
229
+		update_option('geodir_theme_location_nav', '');
230
+	}
231 231
 }
232 232
 
233 233
 /// add action for theme switch to blank previous theme navigation location setting
@@ -248,32 +248,32 @@  discard block
 block discarded – undo
248 248
  */
249 249
 function geodir_add_post_filters()
250 250
 {
251
-    /**
252
-     * Contains all function for filtering listing.
253
-     *
254
-     * @since 1.0.0
255
-     * @package GeoDirectory
256
-     */
257
-    include_once('geodirectory-functions/listing_filters.php');
251
+	/**
252
+	 * Contains all function for filtering listing.
253
+	 *
254
+	 * @since 1.0.0
255
+	 * @package GeoDirectory
256
+	 */
257
+	include_once('geodirectory-functions/listing_filters.php');
258 258
 }
259 259
 
260 260
 
261 261
 if (!function_exists('geodir_init_defaults')) {
262
-    /**
263
-     * Calls the function to register the GeoDirectory default CPT and taxonomies.
264
-     *
265
-     * @since 1.0.0
266
-     * @package GeoDirectory
267
-     */
268
-    function geodir_init_defaults()
269
-    {
270
-        if (function_exists('geodir_register_defaults')) {
262
+	/**
263
+	 * Calls the function to register the GeoDirectory default CPT and taxonomies.
264
+	 *
265
+	 * @since 1.0.0
266
+	 * @package GeoDirectory
267
+	 */
268
+	function geodir_init_defaults()
269
+	{
270
+		if (function_exists('geodir_register_defaults')) {
271 271
 
272
-            geodir_register_defaults();
272
+			geodir_register_defaults();
273 273
 
274
-        }
274
+		}
275 275
 
276
-    }
276
+	}
277 277
 }
278 278
 
279 279
 
@@ -295,26 +295,26 @@  discard block
 block discarded – undo
295 295
 // CALLED ON 'sidebars_widgets' FILTER
296 296
 
297 297
 if (!function_exists('geodir_restrict_widget')) {
298
-    /**
299
-     * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
300
-     *
301
-     * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
302
-     * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
303
-     * @since 1.0.0
304
-     * @package GeoDirectory
305
-     */
306
-    function geodir_restrict_widget()
307
-    {
308
-        global $is_listing, $is_single_place;
298
+	/**
299
+	 * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
300
+	 *
301
+	 * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
302
+	 * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
303
+	 * @since 1.0.0
304
+	 * @package GeoDirectory
305
+	 */
306
+	function geodir_restrict_widget()
307
+	{
308
+		global $is_listing, $is_single_place;
309 309
 
310
-        // set is listing	
311
-        (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
310
+		// set is listing	
311
+		(geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
312 312
 
313
-        // set is single place
314
-        (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
313
+		// set is single place
314
+		(geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
315 315
 
316 316
 
317
-    }
317
+	}
318 318
 }
319 319
 
320 320
 
@@ -335,32 +335,32 @@  discard block
 block discarded – undo
335 335
  */
336 336
 function geodir_detail_page_sidebar_content_sorting()
337 337
 {
338
-    $arr_detail_page_sidebar_content =
339
-        /**
340
-         * An array of functions to be called to be displayed on the details (post) page sidebar.
341
-         *
342
-         * This filter can be used to remove sections of the details page sidebar,
343
-         * add new sections or rearrange the order of the sections.
344
-         *
345
-         * @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.
346
-         * @since 1.0.0
347
-         */
348
-        apply_filters('geodir_detail_page_sidebar_content',
349
-            array('geodir_social_sharing_buttons',
350
-                'geodir_share_this_button',
351
-                'geodir_detail_page_google_analytics',
352
-                'geodir_edit_post_link',
353
-                'geodir_detail_page_review_rating',
354
-                'geodir_detail_page_more_info'
355
-            ) // end of array 
356
-        ); // end of apply filter
357
-    if (!empty($arr_detail_page_sidebar_content)) {
358
-        foreach ($arr_detail_page_sidebar_content as $content_function) {
359
-            if (function_exists($content_function)) {
360
-                add_action('geodir_detail_page_sidebar', $content_function);
361
-            }
362
-        }
363
-    }
338
+	$arr_detail_page_sidebar_content =
339
+		/**
340
+		 * An array of functions to be called to be displayed on the details (post) page sidebar.
341
+		 *
342
+		 * This filter can be used to remove sections of the details page sidebar,
343
+		 * add new sections or rearrange the order of the sections.
344
+		 *
345
+		 * @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.
346
+		 * @since 1.0.0
347
+		 */
348
+		apply_filters('geodir_detail_page_sidebar_content',
349
+			array('geodir_social_sharing_buttons',
350
+				'geodir_share_this_button',
351
+				'geodir_detail_page_google_analytics',
352
+				'geodir_edit_post_link',
353
+				'geodir_detail_page_review_rating',
354
+				'geodir_detail_page_more_info'
355
+			) // end of array 
356
+		); // end of apply filter
357
+	if (!empty($arr_detail_page_sidebar_content)) {
358
+		foreach ($arr_detail_page_sidebar_content as $content_function) {
359
+			if (function_exists($content_function)) {
360
+				add_action('geodir_detail_page_sidebar', $content_function);
361
+			}
362
+		}
363
+	}
364 364
 }
365 365
 
366 366
 add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
@@ -375,14 +375,14 @@  discard block
 block discarded – undo
375 375
  */
376 376
 function geodir_add_to_favourite_link()
377 377
 {
378
-    global $post, $preview;
379
-    if (!$preview && geodir_is_page('detail')) {
380
-        ?>
378
+	global $post, $preview;
379
+	if (!$preview && geodir_is_page('detail')) {
380
+		?>
381 381
         <p class="edit_link">
382 382
             <?php geodir_favourite_html($post->post_author, $post->ID); ?>
383 383
         </p>
384 384
     <?php
385
-    }
385
+	}
386 386
 }
387 387
 
388 388
 /**
@@ -396,41 +396,41 @@  discard block
 block discarded – undo
396 396
  */
397 397
 function geodir_social_sharing_buttons()
398 398
 {
399
-    global $preview;
400
-    ob_start(); // Start  buffering;
401
-    /**
402
-     * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
403
-     *
404
-     * @since 1.0.0
405
-     */
406
-    do_action('geodir_before_social_sharing_buttons');
407
-    if (!$preview) {
408
-        ?>
399
+	global $preview;
400
+	ob_start(); // Start  buffering;
401
+	/**
402
+	 * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
403
+	 *
404
+	 * @since 1.0.0
405
+	 */
406
+	do_action('geodir_before_social_sharing_buttons');
407
+	if (!$preview) {
408
+		?>
409 409
         <div class="likethis">
410 410
             <?php geodir_twitter_tweet_button(); ?>
411 411
             <?php geodir_fb_like_button(); ?>
412 412
             <?php geodir_google_plus_button(); ?>
413 413
         </div>
414 414
     <?php
415
-    }// end of if, if its a preview or not
416
-
417
-    /**
418
-     * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
419
-     *
420
-     * @since 1.0.0
421
-     */
422
-    do_action('geodir_after_social_sharing_buttons');
423
-    $content_html = ob_get_clean();
424
-    if (trim($content_html) != '')
425
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427
-        /**
428
-         * Filter the geodir_social_sharing_buttons() function content.
429
-         *
430
-         * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
431
-         */
432
-        echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
433
-    }
415
+	}// end of if, if its a preview or not
416
+
417
+	/**
418
+	 * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
419
+	 *
420
+	 * @since 1.0.0
421
+	 */
422
+	do_action('geodir_after_social_sharing_buttons');
423
+	$content_html = ob_get_clean();
424
+	if (trim($content_html) != '')
425
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
+	if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427
+		/**
428
+		 * Filter the geodir_social_sharing_buttons() function content.
429
+		 *
430
+		 * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
431
+		 */
432
+		echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
433
+	}
434 434
 
435 435
 
436 436
 }
@@ -446,39 +446,39 @@  discard block
 block discarded – undo
446 446
  */
447 447
 function geodir_share_this_button()
448 448
 {
449
-    global $preview;
450
-    ob_start(); // Start buffering;
451
-    /**
452
-     * This is called before the share this html in the function geodir_share_this_button()
453
-     *
454
-     * @since 1.0.0
455
-     */
456
-    do_action('geodir_before_share_this_button');
457
-    if (!$preview) {
458
-        ?>
449
+	global $preview;
450
+	ob_start(); // Start buffering;
451
+	/**
452
+	 * This is called before the share this html in the function geodir_share_this_button()
453
+	 *
454
+	 * @since 1.0.0
455
+	 */
456
+	do_action('geodir_before_share_this_button');
457
+	if (!$preview) {
458
+		?>
459 459
         <div class="share clearfix">
460 460
             <?php geodir_share_this_button_code(); ?>
461 461
         </div>
462 462
     <?php
463
-    }// end of if, if its a preview or not
464
-    /**
465
-     * This is called after the share this html in the function geodir_share_this_button()
466
-     *
467
-     * @since 1.0.0
468
-     */
469
-    do_action('geodir_after_share_this_button');
470
-    $content_html = ob_get_clean();
471
-    if (trim($content_html) != '')
472
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
473
-    if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
474
-        /**
475
-         * Filter the geodir_share_this_button() function content.
476
-         *
477
-         * @param string $content_html The output html of the geodir_share_this_button() function.
478
-         * @since 1.0.0
479
-         */
480
-        echo $content_html = apply_filters('geodir_share_this_button_html', $content_html);
481
-    }
463
+	}// end of if, if its a preview or not
464
+	/**
465
+	 * This is called after the share this html in the function geodir_share_this_button()
466
+	 *
467
+	 * @since 1.0.0
468
+	 */
469
+	do_action('geodir_after_share_this_button');
470
+	$content_html = ob_get_clean();
471
+	if (trim($content_html) != '')
472
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-sharethis">' . $content_html . '</div>';
473
+	if ((int)get_option('geodir_disable_sharethis_button_section') != 1) {
474
+		/**
475
+		 * Filter the geodir_share_this_button() function content.
476
+		 *
477
+		 * @param string $content_html The output html of the geodir_share_this_button() function.
478
+		 * @since 1.0.0
479
+		 */
480
+		echo $content_html = apply_filters('geodir_share_this_button_html', $content_html);
481
+	}
482 482
 
483 483
 }
484 484
 
@@ -494,46 +494,46 @@  discard block
 block discarded – undo
494 494
  */
495 495
 function geodir_edit_post_link()
496 496
 {
497
-    global $post, $preview;
498
-    ob_start(); // Start buffering;
499
-    /**
500
-     * This is called before the edit post link html in the function geodir_edit_post_link()
501
-     *
502
-     * @since 1.0.0
503
-     */
504
-    do_action('geodir_before_edit_post_link');
505
-    if (!$preview) {
506
-        $is_current_user_owner = geodir_listing_belong_to_current_user();
497
+	global $post, $preview;
498
+	ob_start(); // Start buffering;
499
+	/**
500
+	 * This is called before the edit post link html in the function geodir_edit_post_link()
501
+	 *
502
+	 * @since 1.0.0
503
+	 */
504
+	do_action('geodir_before_edit_post_link');
505
+	if (!$preview) {
506
+		$is_current_user_owner = geodir_listing_belong_to_current_user();
507 507
         
508
-        if ($is_current_user_owner) {
509
-            $post_id = $post->ID;
508
+		if ($is_current_user_owner) {
509
+			$post_id = $post->ID;
510 510
             
511
-            if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
512
-                $post_id = (int)$_REQUEST['pid'];
513
-            }
511
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
512
+				$post_id = (int)$_REQUEST['pid'];
513
+			}
514 514
 
515
-            $postlink = get_permalink(geodir_add_listing_page_id());
516
-            $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
517
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
518
-        }
519
-    }// end of if, if its a preview or not
520
-    /**
521
-     * This is called after the edit post link html in the function geodir_edit_post_link()
522
-     *
523
-     * @since 1.0.0
524
-     */
525
-    do_action('geodir_after_edit_post_link');
526
-    $content_html = ob_get_clean();
527
-    if (trim($content_html) != '')
528
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
529
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
530
-        /**
531
-         * Filter the geodir_edit_post_link() function content.
532
-         *
533
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
534
-         */
535
-        echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
536
-    }
515
+			$postlink = get_permalink(geodir_add_listing_page_id());
516
+			$editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
517
+			echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
518
+		}
519
+	}// end of if, if its a preview or not
520
+	/**
521
+	 * This is called after the edit post link html in the function geodir_edit_post_link()
522
+	 *
523
+	 * @since 1.0.0
524
+	 */
525
+	do_action('geodir_after_edit_post_link');
526
+	$content_html = ob_get_clean();
527
+	if (trim($content_html) != '')
528
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
529
+	if ((int)get_option('geodir_disable_user_links_section') != 1) {
530
+		/**
531
+		 * Filter the geodir_edit_post_link() function content.
532
+		 *
533
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
534
+		 */
535
+		echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
536
+	}
537 537
 }
538 538
 
539 539
 /**
@@ -547,41 +547,41 @@  discard block
 block discarded – undo
547 547
  */
548 548
 function geodir_detail_page_google_analytics()
549 549
 {
550
-    global $post;
551
-    $package_info = array();
552
-    $package_info = geodir_post_package_info($package_info, $post);
550
+	global $post;
551
+	$package_info = array();
552
+	$package_info = geodir_post_package_info($package_info, $post);
553 553
 
554
-    $id = trim(get_option('geodir_ga_id'));
554
+	$id = trim(get_option('geodir_ga_id'));
555 555
 
556
-    if (!$id) {
557
-        return; //if no Google Analytics ID then bail.
558
-    }
556
+	if (!$id) {
557
+		return; //if no Google Analytics ID then bail.
558
+	}
559 559
 
560
-    ob_start(); // Start buffering;
561
-    /**
562
-     * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
563
-     *
564
-     * @since 1.0.0
565
-     */
566
-    do_action('geodir_before_google_analytics');
560
+	ob_start(); // Start buffering;
561
+	/**
562
+	 * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
563
+	 *
564
+	 * @since 1.0.0
565
+	 */
566
+	do_action('geodir_before_google_analytics');
567 567
     
568
-    $refresh_time = get_option('geodir_ga_refresh_time', 5);
569
-    /**
570
-     * Filter the time interval to check & refresh new users results.
571
-     *
572
-     * @since 1.5.9
573
-     *
574
-     * @param int $refresh_time Time interval to check & refresh new users results.
575
-     */
576
-    $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
577
-    $refresh_time = absint($refresh_time * 1000);
568
+	$refresh_time = get_option('geodir_ga_refresh_time', 5);
569
+	/**
570
+	 * Filter the time interval to check & refresh new users results.
571
+	 *
572
+	 * @since 1.5.9
573
+	 *
574
+	 * @param int $refresh_time Time interval to check & refresh new users results.
575
+	 */
576
+	$refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
577
+	$refresh_time = absint($refresh_time * 1000);
578 578
     
579
-    $hide_refresh = get_option('geodir_ga_auto_refresh');
579
+	$hide_refresh = get_option('geodir_ga_auto_refresh');
580 580
     
581
-    $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
582
-    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' )) ) {
583
-        $page_url = urlencode($_SERVER['REQUEST_URI']);
584
-        ?>
581
+	$auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
582
+	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' )) ) {
583
+		$page_url = urlencode($_SERVER['REQUEST_URI']);
584
+		?>
585 585
         <script type="text/javascript">
586 586
             var gd_gaTimeOut;
587 587
             var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
@@ -833,15 +833,15 @@  discard block
 block discarded – undo
833 833
                     var labels = results[1].rows.map(function(row) { return +row[0]; });
834 834
 
835 835
                     <?php
836
-                    // Here we list the shorthand days of the week so it can be used in translation.
837
-                    __("Mon",'geodirectory');
838
-                    __("Tue",'geodirectory');
839
-                    __("Wed",'geodirectory');
840
-                    __("Thu",'geodirectory');
841
-                    __("Fri",'geodirectory');
842
-                    __("Sat",'geodirectory');
843
-                    __("Sun",'geodirectory');
844
-                    ?>
836
+					// Here we list the shorthand days of the week so it can be used in translation.
837
+					__("Mon",'geodirectory');
838
+					__("Tue",'geodirectory');
839
+					__("Wed",'geodirectory');
840
+					__("Thu",'geodirectory');
841
+					__("Fri",'geodirectory');
842
+					__("Sat",'geodirectory');
843
+					__("Sun",'geodirectory');
844
+					?>
845 845
 
846 846
                     labels = [
847 847
                         "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
@@ -1090,24 +1090,24 @@  discard block
 block discarded – undo
1090 1090
         </span>
1091 1091
 
1092 1092
     <?php
1093
-    }
1094
-    /**
1095
-     * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1096
-     *
1097
-     * @since 1.0.0
1098
-     */
1099
-    do_action('geodir_after_google_analytics');
1100
-    $content_html = ob_get_clean();
1101
-    if (trim($content_html) != '')
1102
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1103
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1104
-        /**
1105
-         * Filter the geodir_edit_post_link() function content.
1106
-         *
1107
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
1108
-         */
1109
-        echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1110
-    }
1093
+	}
1094
+	/**
1095
+	 * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1096
+	 *
1097
+	 * @since 1.0.0
1098
+	 */
1099
+	do_action('geodir_after_google_analytics');
1100
+	$content_html = ob_get_clean();
1101
+	if (trim($content_html) != '')
1102
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1103
+	if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1104
+		/**
1105
+		 * Filter the geodir_edit_post_link() function content.
1106
+		 *
1107
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
1108
+		 */
1109
+		echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1110
+	}
1111 1111
 }
1112 1112
 
1113 1113
 /**
@@ -1123,90 +1123,90 @@  discard block
 block discarded – undo
1123 1123
  */
1124 1124
 function geodir_detail_page_review_rating()
1125 1125
 {
1126
-    global $post, $preview, $post_images;
1127
-    ob_start(); // Start  buffering;
1128
-    /**
1129
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1130
-     *
1131
-     * This is called outside the check for an actual rating and the check for preview page.
1132
-     *
1133
-     * @since 1.0.0
1134
-     */
1135
-    do_action('geodir_before_detail_page_review_rating');
1136
-
1137
-    $comment_count = geodir_get_review_count_total($post->ID);
1138
-    $post_avgratings = geodir_get_post_rating($post->ID);
1139
-
1140
-    if ($post_avgratings != 0 && !$preview) {
1141
-        /**
1142
-         * This is called before the rating html in the function geodir_detail_page_review_rating().
1143
-         *
1144
-         * This is called inside the check for an actual rating and the check for preview page.
1145
-         *
1146
-         * @since 1.0.0
1147
-         * @param float $post_avgratings Average rating for the surrent post.
1148
-         * @param int $post->ID Current post ID.
1149
-         */
1150
-        do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1151
-
1152
-        $html = '<p style=" float:left;">';
1153
-        $html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1154
-        $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1155
-        $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1126
+	global $post, $preview, $post_images;
1127
+	ob_start(); // Start  buffering;
1128
+	/**
1129
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1130
+	 *
1131
+	 * This is called outside the check for an actual rating and the check for preview page.
1132
+	 *
1133
+	 * @since 1.0.0
1134
+	 */
1135
+	do_action('geodir_before_detail_page_review_rating');
1136
+
1137
+	$comment_count = geodir_get_review_count_total($post->ID);
1138
+	$post_avgratings = geodir_get_post_rating($post->ID);
1139
+
1140
+	if ($post_avgratings != 0 && !$preview) {
1141
+		/**
1142
+		 * This is called before the rating html in the function geodir_detail_page_review_rating().
1143
+		 *
1144
+		 * This is called inside the check for an actual rating and the check for preview page.
1145
+		 *
1146
+		 * @since 1.0.0
1147
+		 * @param float $post_avgratings Average rating for the surrent post.
1148
+		 * @param int $post->ID Current post ID.
1149
+		 */
1150
+		do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1151
+
1152
+		$html = '<p style=" float:left;">';
1153
+		$html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1154
+		$html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1155
+		$post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1156 1156
        
1157 1157
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1158 1158
 	   
1159 1159
 	   $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 />';
1160 1160
 
1161
-        $html .= '<span class="item">';
1162
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1161
+		$html .= '<span class="item">';
1162
+		$html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1163 1163
 
1164
-        if ($post_images) {
1165
-            foreach ($post_images as $img) {
1166
-                $post_img = $img->src;
1167
-                break;
1168
-            }
1169
-        }
1170
-
1171
-        if (isset($post_img) && $post_img) {
1172
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1173
-        }
1174
-
1175
-        $html .= '</span>';
1176
-
1177
-        echo $html .= '</div>';
1178
-        /**
1179
-         * This is called after the rating html in the function geodir_detail_page_review_rating().
1180
-         *
1181
-         * This is called inside the check for an actual rating and the check for preview page.
1182
-         *
1183
-         * @since 1.0.0
1184
-         * @param float $post_avgratings Average rating for the surrent post.
1185
-         * @param int $post->ID Current post ID.
1186
-         */
1187
-        do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1188
-    }
1189
-    /**
1190
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1191
-     *
1192
-     * This is called outside the check for an actual rating and the check for preview page.
1193
-     *
1194
-     * @since 1.0.0
1195
-     */
1196
-    do_action('geodir_after_detail_page_review_rating');
1197
-    $content_html = ob_get_clean();
1198
-    if (trim($content_html) != '') {
1199
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1200
-    }
1201
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1202
-        /**
1203
-         * Filter the geodir_detail_page_review_rating() function content.
1204
-         *
1205
-         * @since 1.0.0
1206
-         * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1207
-         */
1208
-        echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1209
-    }
1164
+		if ($post_images) {
1165
+			foreach ($post_images as $img) {
1166
+				$post_img = $img->src;
1167
+				break;
1168
+			}
1169
+		}
1170
+
1171
+		if (isset($post_img) && $post_img) {
1172
+			$html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1173
+		}
1174
+
1175
+		$html .= '</span>';
1176
+
1177
+		echo $html .= '</div>';
1178
+		/**
1179
+		 * This is called after the rating html in the function geodir_detail_page_review_rating().
1180
+		 *
1181
+		 * This is called inside the check for an actual rating and the check for preview page.
1182
+		 *
1183
+		 * @since 1.0.0
1184
+		 * @param float $post_avgratings Average rating for the surrent post.
1185
+		 * @param int $post->ID Current post ID.
1186
+		 */
1187
+		do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1188
+	}
1189
+	/**
1190
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1191
+	 *
1192
+	 * This is called outside the check for an actual rating and the check for preview page.
1193
+	 *
1194
+	 * @since 1.0.0
1195
+	 */
1196
+	do_action('geodir_after_detail_page_review_rating');
1197
+	$content_html = ob_get_clean();
1198
+	if (trim($content_html) != '') {
1199
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1200
+	}
1201
+	if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1202
+		/**
1203
+		 * Filter the geodir_detail_page_review_rating() function content.
1204
+		 *
1205
+		 * @since 1.0.0
1206
+		 * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1207
+		 */
1208
+		echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1209
+	}
1210 1210
 }
1211 1211
 
1212 1212
 /**
@@ -1218,35 +1218,35 @@  discard block
 block discarded – undo
1218 1218
  */
1219 1219
 function geodir_detail_page_more_info()
1220 1220
 {
1221
-    ob_start(); // Start  buffering;
1222
-    /**
1223
-     * This is called before the info section html.
1224
-     *
1225
-     * @since 1.0.0
1226
-     */
1227
-    do_action('geodir_before_detail_page_more_info');
1228
-    if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1229
-        echo $geodir_post_detail_fields;
1230
-    }
1231
-    /**
1232
-     * This is called after the info section html.
1233
-     *
1234
-     * @since 1.0.0
1235
-     */
1236
-    do_action('geodir_after_detail_page_more_info');
1237
-
1238
-    $content_html = ob_get_clean();
1239
-    if (trim($content_html) != '')
1240
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1241
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1242
-        /**
1243
-         * Filter the output html for function geodir_detail_page_more_info().
1244
-         *
1245
-         * @since 1.0.0
1246
-         * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1247
-         */
1248
-        echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1249
-    }
1221
+	ob_start(); // Start  buffering;
1222
+	/**
1223
+	 * This is called before the info section html.
1224
+	 *
1225
+	 * @since 1.0.0
1226
+	 */
1227
+	do_action('geodir_before_detail_page_more_info');
1228
+	if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1229
+		echo $geodir_post_detail_fields;
1230
+	}
1231
+	/**
1232
+	 * This is called after the info section html.
1233
+	 *
1234
+	 * @since 1.0.0
1235
+	 */
1236
+	do_action('geodir_after_detail_page_more_info');
1237
+
1238
+	$content_html = ob_get_clean();
1239
+	if (trim($content_html) != '')
1240
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1241
+	if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1242
+		/**
1243
+		 * Filter the output html for function geodir_detail_page_more_info().
1244
+		 *
1245
+		 * @since 1.0.0
1246
+		 * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1247
+		 */
1248
+		echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1249
+	}
1250 1250
 }
1251 1251
 
1252 1252
 
@@ -1260,15 +1260,15 @@  discard block
 block discarded – undo
1260 1260
  */
1261 1261
 function geodir_localize_all_js_msg()
1262 1262
 {// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
1263
-    if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1264
-        $ajax_url = admin_url('admin-ajax.php');
1265
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1266
-        $ajax_url = admin_url('admin-ajax.php');
1267
-    } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1268
-        $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1269
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1270
-        $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1271
-    }
1263
+	if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1264
+		$ajax_url = admin_url('admin-ajax.php');
1265
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1266
+		$ajax_url = admin_url('admin-ajax.php');
1267
+	} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1268
+		$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1269
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1270
+		$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1271
+	}
1272 1272
 	
1273 1273
 	/**
1274 1274
 	 * Filter the allowed image type extensions for post images.
@@ -1278,60 +1278,60 @@  discard block
 block discarded – undo
1278 1278
 	 */
1279 1279
 	$allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
1280 1280
 	
1281
-    $default_marker_icon = get_option('geodir_default_marker_icon');
1282
-    $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1283
-    $default_marker_width = $default_marker_size['w'];
1284
-    $default_marker_height = $default_marker_size['h'];
1281
+	$default_marker_icon = get_option('geodir_default_marker_icon');
1282
+	$default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1283
+	$default_marker_width = $default_marker_size['w'];
1284
+	$default_marker_height = $default_marker_size['h'];
1285 1285
     
1286
-    $arr_alert_msg = array(
1287
-        'geodir_plugin_url' => geodir_plugin_url(),
1288
-        'geodir_admin_ajax_url' => $ajax_url,
1289
-        'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1290
-        'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1291
-        'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1292
-        'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1293
-        //start not show alert msg
1294
-        'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1295
-        'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1296
-        'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1297
-        'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1298
-        'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1299
-        // end not show alert msg
1300
-        'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
1301
-        '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'),
1302
-        //start not show alert msg
1303
-        'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1304
-        'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1305
-        'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1306
-        'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1307
-        'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1308
-        'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1309
-        'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1310
-        'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1311
-        'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1312
-        'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1313
-        'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1314
-        'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1315
-        'geodir_default_marker_icon' => $default_marker_icon,
1316
-        'geodir_default_marker_w' => $default_marker_width,
1317
-        'geodir_default_marker_h' => $default_marker_height,
1318
-        'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1319
-        'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1320
-        'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1321
-        'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1322
-        'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1323
-        'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1324
-        'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1325
-        'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1326
-        /* on/off dragging for phone devices */
1327
-        'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1328
-        'geodir_is_mobile' => wp_is_mobile() ? true : false,
1329
-        'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1330
-        'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1331
-        'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1332
-        'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1333
-        'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1334
-        'geodir_action_remove' => __('Remove', 'geodirectory'),
1286
+	$arr_alert_msg = array(
1287
+		'geodir_plugin_url' => geodir_plugin_url(),
1288
+		'geodir_admin_ajax_url' => $ajax_url,
1289
+		'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1290
+		'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1291
+		'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1292
+		'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1293
+		//start not show alert msg
1294
+		'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1295
+		'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1296
+		'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1297
+		'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1298
+		'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1299
+		// end not show alert msg
1300
+		'my_place_listing_del' => __('Are you wish to delete this listing?', 'geodirectory'),
1301
+		'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'),
1302
+		//start not show alert msg
1303
+		'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1304
+		'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1305
+		'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1306
+		'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1307
+		'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1308
+		'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1309
+		'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1310
+		'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1311
+		'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1312
+		'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1313
+		'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1314
+		'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1315
+		'geodir_default_marker_icon' => $default_marker_icon,
1316
+		'geodir_default_marker_w' => $default_marker_width,
1317
+		'geodir_default_marker_h' => $default_marker_height,
1318
+		'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1319
+		'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1320
+		'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1321
+		'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1322
+		'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1323
+		'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1324
+		'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1325
+		'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1326
+		/* on/off dragging for phone devices */
1327
+		'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1328
+		'geodir_is_mobile' => wp_is_mobile() ? true : false,
1329
+		'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1330
+		'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1331
+		'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1332
+		'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1333
+		'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1334
+		'geodir_action_remove' => __('Remove', 'geodirectory'),
1335 1335
 		'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
1336 1336
 		'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
1337 1337
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
@@ -1339,33 +1339,33 @@  discard block
 block discarded – undo
1339 1339
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1340 1340
 		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1341 1341
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1342
-        'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1343
-        'geodir_map_name' => geodir_map_name(),
1344
-        'osmStart' => __('Start', 'geodirectory'),
1345
-        'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1346
-        'osmEnd' => __('Enter Your Location', 'geodirectory'),
1347
-    );
1348
-
1349
-    /**
1350
-     * Filters the translated JS strings from function geodir_localize_all_js_msg().
1351
-     *
1352
-     * With this filter you can add, remove or change translated JS strings.
1353
-     * You should add your own translations to this if you are building an addon rather than adding another script block.
1354
-     *
1355
-     * @since 1.0.0
1356
-     */
1357
-    $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1358
-
1359
-    foreach ($arr_alert_msg as $key => $value) {
1360
-        if (!is_scalar($value))
1361
-            continue;
1362
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1363
-    }
1342
+		'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1343
+		'geodir_map_name' => geodir_map_name(),
1344
+		'osmStart' => __('Start', 'geodirectory'),
1345
+		'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1346
+		'osmEnd' => __('Enter Your Location', 'geodirectory'),
1347
+	);
1348
+
1349
+	/**
1350
+	 * Filters the translated JS strings from function geodir_localize_all_js_msg().
1351
+	 *
1352
+	 * With this filter you can add, remove or change translated JS strings.
1353
+	 * You should add your own translations to this if you are building an addon rather than adding another script block.
1354
+	 *
1355
+	 * @since 1.0.0
1356
+	 */
1357
+	$arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1364 1358
 
1365
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1366
-    echo '<script>';
1367
-    echo $script;
1368
-    echo '</script>';
1359
+	foreach ($arr_alert_msg as $key => $value) {
1360
+		if (!is_scalar($value))
1361
+			continue;
1362
+		$arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1363
+	}
1364
+
1365
+	$script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1366
+	echo '<script>';
1367
+	echo $script;
1368
+	echo '</script>';
1369 1369
 }
1370 1370
 
1371 1371
 add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
@@ -1381,11 +1381,11 @@  discard block
 block discarded – undo
1381 1381
  */
1382 1382
 function geodir_admin_bar_site_menu($wp_admin_bar)
1383 1383
 {
1384
-    if (get_option("geodir_installed")) {
1385
-        if (current_user_can('manage_options')) {
1386
-            $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1387
-        }
1388
-    }
1384
+	if (get_option("geodir_installed")) {
1385
+		if (current_user_can('manage_options')) {
1386
+			$wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1387
+		}
1388
+	}
1389 1389
 }
1390 1390
 
1391 1391
 add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
@@ -1411,25 +1411,25 @@  discard block
 block discarded – undo
1411 1411
  */
1412 1412
 function geodir_store_sidebars()
1413 1413
 {
1414
-    global $geodir_sidebars;
1415
-    global $sidebars_widgets;
1416
-
1417
-    if (!is_array($sidebars_widgets))
1418
-        $sidebars_widgets = wp_get_sidebars_widgets();
1419
-    $geodir_old_sidebars = array();
1420
-
1421
-    if (is_array($geodir_sidebars)) {
1422
-        foreach ($geodir_sidebars as $val) {
1423
-            if (is_array($sidebars_widgets)) {
1424
-                if (array_key_exists($val, $sidebars_widgets))
1425
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1426
-                else
1427
-                    $geodir_old_sidebars[$val] = array();
1428
-            }
1429
-        }
1430
-    }
1431
-    update_option('geodir_sidebars', $geodir_old_sidebars);
1432
-    geodir_option_version_backup('geodir_sidebars');
1414
+	global $geodir_sidebars;
1415
+	global $sidebars_widgets;
1416
+
1417
+	if (!is_array($sidebars_widgets))
1418
+		$sidebars_widgets = wp_get_sidebars_widgets();
1419
+	$geodir_old_sidebars = array();
1420
+
1421
+	if (is_array($geodir_sidebars)) {
1422
+		foreach ($geodir_sidebars as $val) {
1423
+			if (is_array($sidebars_widgets)) {
1424
+				if (array_key_exists($val, $sidebars_widgets))
1425
+					$geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1426
+				else
1427
+					$geodir_old_sidebars[$val] = array();
1428
+			}
1429
+		}
1430
+	}
1431
+	update_option('geodir_sidebars', $geodir_old_sidebars);
1432
+	geodir_option_version_backup('geodir_sidebars');
1433 1433
 
1434 1434
 }
1435 1435
 
@@ -1443,28 +1443,28 @@  discard block
 block discarded – undo
1443 1443
  */
1444 1444
 function geodir_restore_sidebars()
1445 1445
 {
1446
-    global $sidebars_widgets;
1447
-
1448
-    if (!is_array($sidebars_widgets))
1449
-        $sidebars_widgets = wp_get_sidebars_widgets();
1450
-
1451
-    if (is_array($sidebars_widgets)) {
1452
-        $geodir_old_sidebars = get_option('geodir_sidebars');
1453
-        if (is_array($geodir_old_sidebars)) {
1454
-            foreach ($geodir_old_sidebars as $key => $val) {
1455
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1456
-                {
1457
-                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1458
-                }
1446
+	global $sidebars_widgets;
1459 1447
 
1448
+	if (!is_array($sidebars_widgets))
1449
+		$sidebars_widgets = wp_get_sidebars_widgets();
1460 1450
 
1461
-            }
1462
-        }
1451
+	if (is_array($sidebars_widgets)) {
1452
+		$geodir_old_sidebars = get_option('geodir_sidebars');
1453
+		if (is_array($geodir_old_sidebars)) {
1454
+			foreach ($geodir_old_sidebars as $key => $val) {
1455
+				if(0 === strpos($key, 'geodir_'))// if gd widget
1456
+				{
1457
+					$sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1458
+				}
1463 1459
 
1464
-    }
1465 1460
 
1466
-    update_option('sidebars_widgets', $sidebars_widgets);
1467
-    update_option('geodir_sidebars', '');
1461
+			}
1462
+		}
1463
+
1464
+	}
1465
+
1466
+	update_option('sidebars_widgets', $sidebars_widgets);
1467
+	update_option('geodir_sidebars', '');
1468 1468
 }
1469 1469
 
1470 1470
 add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
@@ -1477,9 +1477,9 @@  discard block
 block discarded – undo
1477 1477
  */
1478 1478
 function geodir_after_listing_post_gridview()
1479 1479
 {
1480
-    global $gridview_columns;
1480
+	global $gridview_columns;
1481 1481
 
1482
-    $gridview_columns = '';
1482
+	$gridview_columns = '';
1483 1483
 
1484 1484
 }
1485 1485
 
@@ -1507,11 +1507,11 @@  discard block
 block discarded – undo
1507 1507
  */
1508 1508
 function so_handle_038($url, $original_url, $_context)
1509 1509
 {
1510
-    if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1511
-        $url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1512
-    }
1510
+	if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1511
+		$url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1512
+	}
1513 1513
 
1514
-    return $url;
1514
+	return $url;
1515 1515
 }
1516 1516
 
1517 1517
 
@@ -1527,34 +1527,34 @@  discard block
 block discarded – undo
1527 1527
 function geodir_after_main_form_fields() {
1528 1528
 	global $gd_session;
1529 1529
 	
1530
-    if (get_option('geodir_accept_term_condition')) {
1531
-        global $post;
1532
-        $term_condition = '';
1533
-        if (isset($_REQUEST['backandedit'])) {
1534
-            $post = (object)$gd_session->get('listing');
1535
-            $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1536
-        }
1537
-
1538
-        ?>
1530
+	if (get_option('geodir_accept_term_condition')) {
1531
+		global $post;
1532
+		$term_condition = '';
1533
+		if (isset($_REQUEST['backandedit'])) {
1534
+			$post = (object)$gd_session->get('listing');
1535
+			$term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1536
+		}
1537
+
1538
+		?>
1539 1539
         <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix">
1540 1540
             <label>&nbsp;</label>
1541 1541
 
1542 1542
             <div class="geodir_taxonomy_field" style="float:left; width:70%;">
1543 1543
 				<span style="display:block"> 
1544 1544
 				<input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
1545
-                    echo 'checked="checked"';
1546
-                } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1545
+					echo 'checked="checked"';
1546
+				} ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1547 1547
                        class="geodir_textfield" value="1"
1548 1548
                        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>
1549 1549
 				</span>
1550 1550
             </div>
1551 1551
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
1552
-                    _e($required_msg, 'geodirectory');
1553
-                } ?></span>
1552
+					_e($required_msg, 'geodirectory');
1553
+				} ?></span>
1554 1554
         </div>
1555 1555
     <?php
1556 1556
 
1557
-    }
1557
+	}
1558 1558
 }
1559 1559
 
1560 1560
 
@@ -1579,42 +1579,42 @@  discard block
 block discarded – undo
1579 1579
  */
1580 1580
 function geodir_detail_page_tab_is_display($is_display, $tab)
1581 1581
 {
1582
-    global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1582
+	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1583 1583
 
1584
-    if ($tab == 'post_profile') {
1585
-        /** This action is documented in geodirectory_template_actions.php */
1586
-        $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1584
+	if ($tab == 'post_profile') {
1585
+		/** This action is documented in geodirectory_template_actions.php */
1586
+		$desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1587 1587
         
1588
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1589
-            $is_display = false;
1590
-        }
1591
-    }
1588
+		if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1589
+			$is_display = false;
1590
+		}
1591
+	}
1592 1592
     
1593
-    if ($tab == 'post_info')
1594
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1593
+	if ($tab == 'post_info')
1594
+		$is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1595 1595
     
1596
-    if ($tab == 'post_images')
1597
-        $is_display = (!empty($post_images)) ? true : false;
1596
+	if ($tab == 'post_images')
1597
+		$is_display = (!empty($post_images)) ? true : false;
1598 1598
 
1599
-    if ($tab == 'post_video')
1600
-        $is_display = (!empty($video)) ? true : false;
1599
+	if ($tab == 'post_video')
1600
+		$is_display = (!empty($video)) ? true : false;
1601 1601
 
1602
-    if ($tab == 'special_offers')
1603
-        $is_display = (!empty($special_offers)) ? true : false;
1602
+	if ($tab == 'special_offers')
1603
+		$is_display = (!empty($special_offers)) ? true : false;
1604 1604
 
1605
-    if ($tab == 'reviews')
1606
-        $is_display = (geodir_is_page('detail')) ? true : false;
1605
+	if ($tab == 'reviews')
1606
+		$is_display = (geodir_is_page('detail')) ? true : false;
1607 1607
 
1608
-    if ($tab == 'related_listing') {
1609
-       $message = __('No listings found which match your selection.', 'geodirectory');
1608
+	if ($tab == 'related_listing') {
1609
+	   $message = __('No listings found which match your selection.', 'geodirectory');
1610 1610
        
1611
-       /** This action is documented in geodirectory-functions/template_functions.php */
1612
-       $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1611
+	   /** This action is documented in geodirectory-functions/template_functions.php */
1612
+	   $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1613 1613
        
1614
-       $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1615
-    }
1614
+	   $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1615
+	}
1616 1616
 
1617
-    return $is_display;
1617
+	return $is_display;
1618 1618
 }
1619 1619
 
1620 1620
 
@@ -1630,69 +1630,69 @@  discard block
 block discarded – undo
1630 1630
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1631 1631
  */
1632 1632
 function geodir_changes_in_custom_fields_table() {
1633
-    global $wpdb, $plugin_prefix;
1633
+	global $wpdb, $plugin_prefix;
1634 1634
 	
1635 1635
 	// Remove unused virtual page
1636 1636
 	$listings_page_id = (int)get_option('geodir_listing_page');
1637 1637
 	if ($listings_page_id) {
1638 1638
 		$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')));
1639
-        delete_option('geodir_listing_page');
1639
+		delete_option('geodir_listing_page');
1640 1640
 	}
1641 1641
 
1642
-    if (!get_option('geodir_changes_in_custom_fields_table')) {
1643
-        $wpdb->query(
1644
-            $wpdb->prepare(
1645
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1646
-                array('1', '1', 'admin')
1647
-            )
1648
-        );
1642
+	if (!get_option('geodir_changes_in_custom_fields_table')) {
1643
+		$wpdb->query(
1644
+			$wpdb->prepare(
1645
+				"UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1646
+				array('1', '1', 'admin')
1647
+			)
1648
+		);
1649 1649
 
1650 1650
 
1651
-        /* --- terms meta value set --- */
1651
+		/* --- terms meta value set --- */
1652 1652
 
1653
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1653
+		update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1654 1654
 
1655
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1655
+		$options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1656 1656
 
1657
-        if (!empty($options_data)) {
1657
+		if (!empty($options_data)) {
1658 1658
 
1659
-            foreach ($options_data as $optobj) {
1659
+			foreach ($options_data as $optobj) {
1660 1660
 
1661
-                $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1661
+				$option_val = str_replace('tax_meta_', '', $optobj->option_name);
1662 1662
 
1663
-                $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)));
1663
+				$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)));
1664 1664
 
1665
-                if (!empty($taxonomies_data)) {
1665
+				if (!empty($taxonomies_data)) {
1666 1666
 
1667
-                    foreach ($taxonomies_data as $taxobj) {
1667
+					foreach ($taxonomies_data as $taxobj) {
1668 1668
 
1669
-                        $taxObject = get_taxonomy($taxobj->taxonomy);
1670
-                        $post_type = $taxObject->object_type[0];
1669
+						$taxObject = get_taxonomy($taxobj->taxonomy);
1670
+						$post_type = $taxObject->object_type[0];
1671 1671
 
1672
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1672
+						$opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1673 1673
 
1674
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1674
+						$duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1675 1675
 
1676
-                        if ($duplicate_data) {
1676
+						if ($duplicate_data) {
1677 1677
 
1678
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1678
+							$wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1679 1679
 
1680
-                        } else {
1680
+						} else {
1681 1681
 
1682
-                            $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)));
1682
+							$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)));
1683 1683
 
1684
-                        }
1684
+						}
1685 1685
 
1686
-                    }
1686
+					}
1687 1687
 
1688
-                }
1688
+				}
1689 1689
 
1690
-            }
1691
-        }
1690
+			}
1691
+		}
1692 1692
 
1693
-        update_option('geodir_changes_in_custom_fields_table', '1');
1693
+		update_option('geodir_changes_in_custom_fields_table', '1');
1694 1694
 
1695
-    }
1695
+	}
1696 1696
 
1697 1697
 }
1698 1698
 
@@ -1711,24 +1711,24 @@  discard block
 block discarded – undo
1711 1711
 function geodir_location_slug_check($slug)
1712 1712
 {
1713 1713
 
1714
-    global $wpdb, $table_prefix;
1714
+	global $wpdb, $table_prefix;
1715 1715
 
1716
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1716
+	$slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1717 1717
 
1718
-    if ($slug_exists) {
1718
+	if ($slug_exists) {
1719 1719
 
1720
-        $suffix = 1;
1721
-        do {
1722
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1723
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1724
-            $suffix++;
1725
-        } while ($location_slug_check && $suffix < 100);
1720
+		$suffix = 1;
1721
+		do {
1722
+			$alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1723
+			$location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1724
+			$suffix++;
1725
+		} while ($location_slug_check && $suffix < 100);
1726 1726
 
1727
-        $slug = $alt_location_name;
1727
+		$slug = $alt_location_name;
1728 1728
 
1729
-    }
1729
+	}
1730 1730
 
1731
-    return $slug;
1731
+	return $slug;
1732 1732
 
1733 1733
 }
1734 1734
 
@@ -1753,42 +1753,42 @@  discard block
 block discarded – undo
1753 1753
 function geodir_update_term_slug($term_id, $tt_id, $taxonomy)
1754 1754
 {
1755 1755
 
1756
-    global $wpdb, $plugin_prefix, $table_prefix;
1756
+	global $wpdb, $plugin_prefix, $table_prefix;
1757 1757
 
1758
-    $tern_data = get_term_by('id', $term_id, $taxonomy);
1758
+	$tern_data = get_term_by('id', $term_id, $taxonomy);
1759 1759
 
1760
-    $slug = $tern_data->slug;
1760
+	$slug = $tern_data->slug;
1761 1761
 
1762
-    /**
1763
-     * Filter if a term slug exists.
1764
-     *
1765
-     * @since 1.0.0
1766
-     * @package GeoDirectory
1767
-     * @param bool $bool Default: false.
1768
-     * @param string $slug The term slug.
1769
-     * @param int $term_id The term ID.
1770
-     */
1771
-    $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1762
+	/**
1763
+	 * Filter if a term slug exists.
1764
+	 *
1765
+	 * @since 1.0.0
1766
+	 * @package GeoDirectory
1767
+	 * @param bool $bool Default: false.
1768
+	 * @param string $slug The term slug.
1769
+	 * @param int $term_id The term ID.
1770
+	 */
1771
+	$slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1772 1772
 
1773
-    if ($slug_exists) {
1773
+	if ($slug_exists) {
1774 1774
 
1775
-        $suffix = 1;
1776
-        do {
1777
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1775
+		$suffix = 1;
1776
+		do {
1777
+			$new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1778 1778
 
1779
-            /** This action is documented in geodirectory_hooks_actions.php */
1780
-            $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1779
+			/** This action is documented in geodirectory_hooks_actions.php */
1780
+			$term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1781 1781
 
1782
-            $suffix++;
1783
-        } while ($term_slug_check && $suffix < 100);
1782
+			$suffix++;
1783
+		} while ($term_slug_check && $suffix < 100);
1784 1784
 
1785
-        $slug = $new_slug;
1785
+		$slug = $new_slug;
1786 1786
 
1787
-        //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1787
+		//wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1788 1788
 
1789
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1789
+		$wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1790 1790
 
1791
-    }
1791
+	}
1792 1792
 	
1793 1793
 	// Update tag in detail table.
1794 1794
 	$taxonomy_obj = get_taxonomy($taxonomy);
@@ -1829,21 +1829,21 @@  discard block
 block discarded – undo
1829 1829
 function geodir_term_slug_is_exists($slug_exists, $slug, $term_id)
1830 1830
 {
1831 1831
 
1832
-    global $wpdb, $table_prefix;
1832
+	global $wpdb, $table_prefix;
1833 1833
 
1834
-    $default_location = geodir_get_default_location();
1834
+	$default_location = geodir_get_default_location();
1835 1835
 
1836
-    $country_slug = $default_location->country_slug;
1837
-    $region_slug = $default_location->region_slug;
1838
-    $city_slug = $default_location->city_slug;
1836
+	$country_slug = $default_location->country_slug;
1837
+	$region_slug = $default_location->region_slug;
1838
+	$city_slug = $default_location->city_slug;
1839 1839
 
1840
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1841
-        return $slug_exists = true;
1840
+	if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1841
+		return $slug_exists = true;
1842 1842
 
1843
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1844
-        return $slug_exists = true;
1843
+	if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1844
+		return $slug_exists = true;
1845 1845
 
1846
-    return $slug_exists;
1846
+	return $slug_exists;
1847 1847
 }
1848 1848
 
1849 1849
 
@@ -1862,75 +1862,75 @@  discard block
 block discarded – undo
1862 1862
  */
1863 1863
 function geodir_custom_page_title($title = '', $sep = '')
1864 1864
 {
1865
-    global $wp;
1866
-    if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1867
-        return $title;
1868
-    }
1865
+	global $wp;
1866
+	if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
1867
+		return $title;
1868
+	}
1869 1869
 
1870
-    if ($sep == '') {
1871
-        /**
1872
-         * Filter the page title separator.
1873
-         *
1874
-         * @since 1.0.0
1875
-         * @package GeoDirectory
1876
-         * @param string $sep The separator, default: `|`.
1877
-         */
1878
-        $sep = apply_filters('geodir_page_title_separator', '|');
1879
-    }
1870
+	if ($sep == '') {
1871
+		/**
1872
+		 * Filter the page title separator.
1873
+		 *
1874
+		 * @since 1.0.0
1875
+		 * @package GeoDirectory
1876
+		 * @param string $sep The separator, default: `|`.
1877
+		 */
1878
+		$sep = apply_filters('geodir_page_title_separator', '|');
1879
+	}
1880 1880
 
1881 1881
 
1882
-    $gd_page = '';
1883
-    if(geodir_is_page('home')){
1884
-        $gd_page = 'home';
1885
-        $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1886
-    }
1887
-    elseif(geodir_is_page('detail')){
1888
-        $gd_page = 'detail';
1889
-        $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1890
-    }
1891
-    elseif(geodir_is_page('pt')){
1892
-        $gd_page = 'pt';
1893
-        $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1894
-    }
1895
-    elseif(geodir_is_page('listing')){
1896
-        $gd_page = 'listing';
1897
-        $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1898
-    }
1899
-    elseif(geodir_is_page('location')){
1900
-        $gd_page = 'location';
1901
-        $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1902
-    }
1903
-    elseif(geodir_is_page('search')){
1904
-        $gd_page = 'search';
1905
-        $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1906
-    }
1907
-    elseif(geodir_is_page('add-listing')){
1908
-        $gd_page = 'add-listing';
1909
-        $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1910
-    }
1911
-    elseif(geodir_is_page('author')){
1912
-        $gd_page = 'author';
1913
-        $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1914
-    }
1915
-    elseif(geodir_is_page('login')){
1916
-        $gd_page = 'login';
1917
-        $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1918
-    }
1919
-    elseif(geodir_is_page('listing-success')){
1920
-        $gd_page = 'listing-success';
1921
-        $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1922
-    }
1882
+	$gd_page = '';
1883
+	if(geodir_is_page('home')){
1884
+		$gd_page = 'home';
1885
+		$title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1886
+	}
1887
+	elseif(geodir_is_page('detail')){
1888
+		$gd_page = 'detail';
1889
+		$title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1890
+	}
1891
+	elseif(geodir_is_page('pt')){
1892
+		$gd_page = 'pt';
1893
+		$title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1894
+	}
1895
+	elseif(geodir_is_page('listing')){
1896
+		$gd_page = 'listing';
1897
+		$title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1898
+	}
1899
+	elseif(geodir_is_page('location')){
1900
+		$gd_page = 'location';
1901
+		$title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1902
+	}
1903
+	elseif(geodir_is_page('search')){
1904
+		$gd_page = 'search';
1905
+		$title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1906
+	}
1907
+	elseif(geodir_is_page('add-listing')){
1908
+		$gd_page = 'add-listing';
1909
+		$title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1910
+	}
1911
+	elseif(geodir_is_page('author')){
1912
+		$gd_page = 'author';
1913
+		$title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1914
+	}
1915
+	elseif(geodir_is_page('login')){
1916
+		$gd_page = 'login';
1917
+		$title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1918
+	}
1919
+	elseif(geodir_is_page('listing-success')){
1920
+		$gd_page = 'listing-success';
1921
+		$title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1922
+	}
1923 1923
 
1924 1924
 
1925
-    /**
1926
-     * Filter page meta title to replace variables.
1927
-     *
1928
-     * @since 1.5.4
1929
-     * @param string $title The page title including variables.
1930
-     * @param string $gd_page The GeoDirectory page type if any.
1931
-     * @param string $sep The title separator symbol.
1932
-     */
1933
-    return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1925
+	/**
1926
+	 * Filter page meta title to replace variables.
1927
+	 *
1928
+	 * @since 1.5.4
1929
+	 * @param string $title The page title including variables.
1930
+	 * @param string $gd_page The GeoDirectory page type if any.
1931
+	 * @param string $sep The title separator symbol.
1932
+	 */
1933
+	return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1934 1934
 
1935 1935
 }
1936 1936
 
@@ -1946,36 +1946,36 @@  discard block
 block discarded – undo
1946 1946
 function geodir_set_post_attachment()
1947 1947
 {
1948 1948
 
1949
-    if (!get_option('geodir_set_post_attachments')) {
1949
+	if (!get_option('geodir_set_post_attachments')) {
1950 1950
 
1951
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1952
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1951
+		require_once(ABSPATH . 'wp-admin/includes/image.php');
1952
+		require_once(ABSPATH . 'wp-admin/includes/file.php');
1953 1953
 
1954
-        $all_postypes = geodir_get_posttypes();
1954
+		$all_postypes = geodir_get_posttypes();
1955 1955
 
1956
-        foreach($all_postypes as $post_type){
1957
-            $args = array(
1958
-                'posts_per_page' => -1,
1959
-                'post_type' => $post_type,
1960
-                'post_status' => 'publish');
1956
+		foreach($all_postypes as $post_type){
1957
+			$args = array(
1958
+				'posts_per_page' => -1,
1959
+				'post_type' => $post_type,
1960
+				'post_status' => 'publish');
1961 1961
 
1962
-            $posts_array = get_posts($args);
1962
+			$posts_array = get_posts($args);
1963 1963
 
1964
-            if (!empty($posts_array)) {
1964
+			if (!empty($posts_array)) {
1965 1965
 
1966
-                foreach ($posts_array as $post) {
1966
+				foreach ($posts_array as $post) {
1967 1967
 
1968
-                    geodir_set_wp_featured_image($post->ID);
1968
+					geodir_set_wp_featured_image($post->ID);
1969 1969
 
1970
-                }
1970
+				}
1971 1971
 
1972
-            }
1973
-        }
1972
+			}
1973
+		}
1974 1974
 
1975 1975
 
1976
-        update_option('geodir_set_post_attachments', '1');
1976
+		update_option('geodir_set_post_attachments', '1');
1977 1977
 
1978
-    }
1978
+	}
1979 1979
 
1980 1980
 }
1981 1981
 
@@ -1992,19 +1992,19 @@  discard block
 block discarded – undo
1992 1992
 function geodir_remove_url_seperator()
1993 1993
 {
1994 1994
 
1995
-    if (!get_option('geodir_remove_url_seperator')) {
1995
+	if (!get_option('geodir_remove_url_seperator')) {
1996 1996
 
1997
-        if (get_option('geodir_listingurl_separator'))
1998
-            delete_option('geodir_listingurl_separator');
1997
+		if (get_option('geodir_listingurl_separator'))
1998
+			delete_option('geodir_listingurl_separator');
1999 1999
 
2000
-        if (get_option('geodir_detailurl_separator'))
2001
-            delete_option('geodir_detailurl_separator');
2000
+		if (get_option('geodir_detailurl_separator'))
2001
+			delete_option('geodir_detailurl_separator');
2002 2002
 
2003
-        flush_rewrite_rules(false);
2003
+		flush_rewrite_rules(false);
2004 2004
 
2005
-        update_option('geodir_remove_url_seperator', '1');
2005
+		update_option('geodir_remove_url_seperator', '1');
2006 2006
 
2007
-    }
2007
+	}
2008 2008
 
2009 2009
 }
2010 2010
 
@@ -2020,19 +2020,19 @@  discard block
 block discarded – undo
2020 2020
  */
2021 2021
 function geodir_remove_url_seperator_form_permalink_settings($permalink_arr)
2022 2022
 {
2023
-    foreach ($permalink_arr as $key => $value) {
2023
+	foreach ($permalink_arr as $key => $value) {
2024 2024
 
2025
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2026
-            unset($permalink_arr[$key]);
2025
+		if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
2026
+			unset($permalink_arr[$key]);
2027 2027
 
2028
-    }
2028
+	}
2029 2029
 
2030
-    return $permalink_arr;
2030
+	return $permalink_arr;
2031 2031
 
2032 2032
 }
2033 2033
 
2034 2034
 if (!is_admin()) {
2035
-    add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2035
+	add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2036 2036
 }
2037 2037
 /**
2038 2038
  * Set status from draft to publish.
@@ -2045,16 +2045,16 @@  discard block
 block discarded – undo
2045 2045
  */
2046 2046
 function geodir_set_status_draft_to_publish_for_own_post($post)
2047 2047
 {
2048
-    $user_id = get_current_user_id();
2048
+	$user_id = get_current_user_id();
2049 2049
 
2050
-    if(!$user_id){return $post;}
2050
+	if(!$user_id){return $post;}
2051 2051
 
2052
-    $gd_post_types = geodir_get_posttypes();
2052
+	$gd_post_types = geodir_get_posttypes();
2053 2053
 
2054
-    if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2055
-        $post[0]->post_status = 'publish';
2056
-    }
2057
-    return $post;
2054
+	if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2055
+		$post[0]->post_status = 'publish';
2056
+	}
2057
+	return $post;
2058 2058
 }
2059 2059
 
2060 2060
 
@@ -2146,33 +2146,33 @@  discard block
 block discarded – undo
2146 2146
  */
2147 2147
 function geodir_detail_page_tab_headings_change($tabs_arr)
2148 2148
 {
2149
-    global $wpdb;
2149
+	global $wpdb;
2150 2150
 
2151
-    $post_type = geodir_get_current_posttype();
2151
+	$post_type = geodir_get_current_posttype();
2152 2152
 
2153
-    $all_postypes = geodir_get_posttypes();
2153
+	$all_postypes = geodir_get_posttypes();
2154 2154
 
2155
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2155
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2156 2156
 
2157
-        if (array_key_exists('post_video', $tabs_arr)) {
2157
+		if (array_key_exists('post_video', $tabs_arr)) {
2158 2158
 
2159
-            $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)));
2159
+			$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)));
2160 2160
 
2161
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2162
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2163
-        }
2161
+			if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2162
+				$tabs_arr['post_video']['heading_text'] = $field_title;
2163
+		}
2164 2164
 
2165
-        if (array_key_exists('special_offers', $tabs_arr)) {
2165
+		if (array_key_exists('special_offers', $tabs_arr)) {
2166 2166
 
2167
-            $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)));
2167
+			$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)));
2168 2168
 
2169
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2170
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2171
-        }
2169
+			if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2170
+				$tabs_arr['special_offers']['heading_text'] = $field_title;
2171
+		}
2172 2172
 
2173
-    }
2173
+	}
2174 2174
 
2175
-    return $tabs_arr;
2175
+	return $tabs_arr;
2176 2176
 
2177 2177
 }
2178 2178
 
@@ -2185,10 +2185,10 @@  discard block
 block discarded – undo
2185 2185
  */
2186 2186
 function geodir_remove_template_redirect_actions()
2187 2187
 {
2188
-    if (geodir_is_page('login')){
2189
-        remove_all_actions('template_redirect');
2190
-        remove_action('init', 'avia_modify_front', 10);
2191
-    }
2188
+	if (geodir_is_page('login')){
2189
+		remove_all_actions('template_redirect');
2190
+		remove_action('init', 'avia_modify_front', 10);
2191
+	}
2192 2192
 }
2193 2193
 
2194 2194
 
@@ -2210,51 +2210,51 @@  discard block
 block discarded – undo
2210 2210
 function geodirectory_before_featured_image_delete($attachment_id)
2211 2211
 {
2212 2212
 
2213
-    global $wpdb, $plugin_prefix;
2213
+	global $wpdb, $plugin_prefix;
2214 2214
 
2215
-    $post_id = get_post_field('post_parent', $attachment_id);
2215
+	$post_id = get_post_field('post_parent', $attachment_id);
2216 2216
 
2217
-    $attachment_url = wp_get_attachment_url($attachment_id);
2217
+	$attachment_url = wp_get_attachment_url($attachment_id);
2218 2218
 
2219
-    if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2219
+	if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2220 2220
 
2221
-        $post_type = get_post_type($post_id);
2221
+		$post_type = get_post_type($post_id);
2222 2222
 
2223
-        $all_postypes = geodir_get_posttypes();
2223
+		$all_postypes = geodir_get_posttypes();
2224 2224
 
2225
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2226
-            return false;
2225
+		if (!in_array($post_type, $all_postypes) || !is_admin())
2226
+			return false;
2227 2227
 
2228
-        $uploads = wp_upload_dir();
2228
+		$uploads = wp_upload_dir();
2229 2229
 
2230
-        $split_img_path = explode($uploads['baseurl'], $attachment_url);
2230
+		$split_img_path = explode($uploads['baseurl'], $attachment_url);
2231 2231
 
2232
-        $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2232
+		$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2233 2233
 
2234
-        $wpdb->query(
2235
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2236
-                array($post_id, $split_img_file_path)
2237
-            )
2238
-        );
2234
+		$wpdb->query(
2235
+			$wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2236
+				array($post_id, $split_img_file_path)
2237
+			)
2238
+		);
2239 2239
 
2240
-        $attachment_data = $wpdb->get_row(
2241
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2242
-                array($post_id)
2243
-            )
2244
-        );
2240
+		$attachment_data = $wpdb->get_row(
2241
+			$wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2242
+				array($post_id)
2243
+			)
2244
+		);
2245 2245
 
2246
-        if (!empty($attachment_data)) {
2247
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2248
-        }
2246
+		if (!empty($attachment_data)) {
2247
+			$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2248
+		}
2249 2249
 
2250 2250
 
2251
-        $table_name = $plugin_prefix . $post_type . '_detail';
2251
+		$table_name = $plugin_prefix . $post_type . '_detail';
2252 2252
 
2253
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2253
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2254 2254
 
2255
-        geodir_set_wp_featured_image($post_id);
2255
+		geodir_set_wp_featured_image($post_id);
2256 2256
 
2257
-    }
2257
+	}
2258 2258
 
2259 2259
 }
2260 2260
 
@@ -2272,79 +2272,79 @@  discard block
 block discarded – undo
2272 2272
 function geodir_temp_set_post_attachment()
2273 2273
 {
2274 2274
 
2275
-    global $wpdb, $plugin_prefix;
2275
+	global $wpdb, $plugin_prefix;
2276 2276
 
2277
-    $all_postypes = geodir_get_posttypes();
2277
+	$all_postypes = geodir_get_posttypes();
2278 2278
 
2279
-    foreach ($all_postypes as $posttype) {
2279
+	foreach ($all_postypes as $posttype) {
2280 2280
 
2281
-        $tablename = $plugin_prefix . $posttype . '_detail';
2281
+		$tablename = $plugin_prefix . $posttype . '_detail';
2282 2282
 
2283
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2283
+		$get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2284 2284
 
2285
-        if (!empty($get_post_data)) {
2285
+		if (!empty($get_post_data)) {
2286 2286
 
2287
-            foreach ($get_post_data as $data) {
2287
+			foreach ($get_post_data as $data) {
2288 2288
 
2289
-                $post_id = $data->post_id;
2289
+				$post_id = $data->post_id;
2290 2290
 
2291
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2291
+				$attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2292 2292
 
2293
-                if (!empty($attachment_data)) {
2293
+				if (!empty($attachment_data)) {
2294 2294
 
2295
-                    foreach ($attachment_data as $attach) {
2295
+					foreach ($attachment_data as $attach) {
2296 2296
 
2297
-                        $file_info = pathinfo($attach->file);
2297
+						$file_info = pathinfo($attach->file);
2298 2298
 
2299
-                        $sub_dir = '';
2300
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2301
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2299
+						$sub_dir = '';
2300
+						if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2301
+							$sub_dir = stripslashes_deep($file_info['dirname']);
2302 2302
 
2303
-                        $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2304
-                        $uploads_path = $uploads['basedir'];
2303
+						$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2304
+						$uploads_path = $uploads['basedir'];
2305 2305
 
2306
-                        $file_name = $file_info['basename'];
2306
+						$file_name = $file_info['basename'];
2307 2307
 
2308
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2308
+						$img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2309 2309
 
2310
-                        if (!file_exists($img_arr['path'])) {
2310
+						if (!file_exists($img_arr['path'])) {
2311 2311
 
2312
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2312
+							$wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2313 2313
 
2314
-                        }
2314
+						}
2315 2315
 
2316
-                    }
2316
+					}
2317 2317
 
2318
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2318
+					$attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2319 2319
 
2320
-                    if (!empty($attachment_data)) {
2320
+					if (!empty($attachment_data)) {
2321 2321
 
2322
-                        if ($attachment_data->ID)
2323
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2322
+						if ($attachment_data->ID)
2323
+							$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2324 2324
 
2325
-                    } else {
2325
+					} else {
2326 2326
 
2327
-                        if (has_post_thumbnail($post_id)) {
2327
+						if (has_post_thumbnail($post_id)) {
2328 2328
 
2329
-                            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2329
+							$post_thumbnail_id = get_post_thumbnail_id($post_id);
2330 2330
 
2331
-                            wp_delete_attachment($post_thumbnail_id);
2331
+							wp_delete_attachment($post_thumbnail_id);
2332 2332
 
2333
-                        }
2333
+						}
2334 2334
 
2335
-                    }
2335
+					}
2336 2336
 
2337
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2337
+					$wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2338 2338
 
2339
-                    geodir_set_wp_featured_image($post_id);
2339
+					geodir_set_wp_featured_image($post_id);
2340 2340
 
2341
-                }
2341
+				}
2342 2342
 
2343
-            }
2343
+			}
2344 2344
 
2345
-        }
2345
+		}
2346 2346
 
2347
-    }
2347
+	}
2348 2348
 
2349 2349
 }
2350 2350
 
@@ -2362,9 +2362,9 @@  discard block
 block discarded – undo
2362 2362
 function geodir_default_rating_star_icon()
2363 2363
 {
2364 2364
 
2365
-    if (!get_option('geodir_default_rating_star_icon')) {
2366
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2367
-    }
2365
+	if (!get_option('geodir_default_rating_star_icon')) {
2366
+		update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2367
+	}
2368 2368
 
2369 2369
 }
2370 2370
 
@@ -2382,27 +2382,27 @@  discard block
 block discarded – undo
2382 2382
  */
2383 2383
 function geodir_user_post_listing_count($user_id=null)
2384 2384
 {
2385
-    global $wpdb, $plugin_prefix, $current_user;
2386
-    if(!$user_id){
2387
-        $user_id = $current_user->ID;
2388
-    }
2385
+	global $wpdb, $plugin_prefix, $current_user;
2386
+	if(!$user_id){
2387
+		$user_id = $current_user->ID;
2388
+	}
2389 2389
 
2390
-    $user_id = $current_user->ID;
2391
-    $all_postypes = geodir_get_posttypes();
2392
-    $all_posts = get_option('geodir_listing_link_user_dashboard');
2390
+	$user_id = $current_user->ID;
2391
+	$all_postypes = geodir_get_posttypes();
2392
+	$all_posts = get_option('geodir_listing_link_user_dashboard');
2393 2393
 
2394
-    $user_listing = array();
2395
-    if (is_array($all_posts) && !empty($all_posts)) {
2396
-        foreach ($all_posts as $ptype) {
2397
-            $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' )");
2394
+	$user_listing = array();
2395
+	if (is_array($all_posts) && !empty($all_posts)) {
2396
+		foreach ($all_posts as $ptype) {
2397
+			$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' )");
2398 2398
 
2399
-            if ($total_posts > 0) {
2400
-                $user_listing[$ptype] = $total_posts;
2401
-            }
2402
-        }
2403
-    }
2399
+			if ($total_posts > 0) {
2400
+				$user_listing[$ptype] = $total_posts;
2401
+			}
2402
+		}
2403
+	}
2404 2404
 
2405
-    return $user_listing;
2405
+	return $user_listing;
2406 2406
 }
2407 2407
 
2408 2408
 
@@ -2422,190 +2422,190 @@  discard block
 block discarded – undo
2422 2422
  */
2423 2423
 function geodir_detail_page_custom_field_tab($tabs_arr)
2424 2424
 {
2425
-    global $post;
2426
-
2427
-    $post_type = geodir_get_current_posttype();
2428
-    $all_postypes = geodir_get_posttypes();
2429
-
2430
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2431
-        $package_info = array();
2432
-        $package_info = geodir_post_package_info($package_info, $post);
2433
-        $post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2434
-        $fields_location = 'owntab';
2435
-
2436
-        $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2437
-
2438
-        //remove video and special offers if it is already set to show
2439
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2440
-            $unset_video = true;
2441
-        }
2442
-
2443
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2444
-            $unset_special_offers = true;
2445
-        }
2446
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2447
-            foreach($custom_fields as $key => $custom_field){
2448
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2449
-                    unset($custom_fields[$key]);
2450
-                }
2451
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2452
-                    unset($custom_fields[$key]);
2453
-                }
2454
-            }
2455
-        }
2456
-
2457
-
2425
+	global $post;
2458 2426
 
2459
-        if (!empty($custom_fields)) {
2460
-            $parse_custom_fields = array();
2461
-            foreach ($custom_fields as $field) {
2462
-                $field = stripslashes_deep($field); // strip slashes
2463
-                
2464
-                $type = $field;
2465
-                $field_name = $field['htmlvar_name'];
2466
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2467
-                    $post->{$field_name} = $_REQUEST[$field_name];
2468
-                }
2469
-
2470
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2471
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2472
-                        continue;
2473
-                    }
2427
+	$post_type = geodir_get_current_posttype();
2428
+	$all_postypes = geodir_get_posttypes();
2474 2429
 
2475
-                    $parse_custom_fields[] = $field;
2476
-                }
2477
-            }
2478
-            $custom_fields = $parse_custom_fields;
2479
-        }
2480
-        //print_r($custom_fields);
2481
-        if (!empty($custom_fields)) {
2430
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2431
+		$package_info = array();
2432
+		$package_info = geodir_post_package_info($package_info, $post);
2433
+		$post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2434
+		$fields_location = 'owntab';
2482 2435
 
2483
-            global $field_set_start;
2436
+		$custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2484 2437
 
2485
-            $post = stripslashes_deep($post); // strip slashes
2486
-            
2487
-            $field_set_start = 0;
2488
-            $fieldset_count = 0;
2489
-            $fieldset = '';
2490
-            $total_fields = count($custom_fields);
2491
-            $count_field = 0;
2492
-            $fieldset_arr = array();
2493
-            $i = 0;
2494
-            $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2495
-
2496
-            foreach ($custom_fields as $field) {
2497
-                $count_field++;
2498
-                $field_name = $field['htmlvar_name'];
2499
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2500
-                    $post->{$field_name} = $_REQUEST[$field_name];
2501
-                }
2438
+		//remove video and special offers if it is already set to show
2439
+		if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2440
+			$unset_video = true;
2441
+		}
2502 2442
 
2503
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2504
-                    $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2505
-                    $site_title = trim($field['site_title']);
2506
-                    $type = $field;
2507
-                    $variables_array = array();
2443
+		if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2444
+			$unset_special_offers = true;
2445
+		}
2446
+		if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2447
+			foreach($custom_fields as $key => $custom_field){
2448
+				if($custom_field['name']=='geodir_video' && isset($unset_video)){
2449
+					unset($custom_fields[$key]);
2450
+				}
2451
+				if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2452
+					unset($custom_fields[$key]);
2453
+				}
2454
+			}
2455
+		}
2508 2456
 
2509
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2510
-                        continue;
2511
-                    }
2512 2457
 
2513
-                    if ($type['type'] != 'fieldset') {
2514
-                        $i++;
2515
-                        $variables_array['post_id'] = $post->ID;
2516
-                        $variables_array['label'] = __($type['site_title'], 'geodirectory');
2517
-                        $variables_array['value'] = '';
2518
-                        $variables_array['value'] = $post->{$type['htmlvar_name']};
2519
-                    }else{
2520
-                        $i = 0;
2521
-                        $fieldset_count++;
2522
-                        $field_set_start = 1;
2523
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2524
-                        $fieldset_arr[$fieldset_count]['label'] = $label;
2525
-                    }
2526 2458
 
2459
+		if (!empty($custom_fields)) {
2460
+			$parse_custom_fields = array();
2461
+			foreach ($custom_fields as $field) {
2462
+				$field = stripslashes_deep($field); // strip slashes
2463
+                
2464
+				$type = $field;
2465
+				$field_name = $field['htmlvar_name'];
2466
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2467
+					$post->{$field_name} = $_REQUEST[$field_name];
2468
+				}
2469
+
2470
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2471
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2472
+						continue;
2473
+					}
2474
+
2475
+					$parse_custom_fields[] = $field;
2476
+				}
2477
+			}
2478
+			$custom_fields = $parse_custom_fields;
2479
+		}
2480
+		//print_r($custom_fields);
2481
+		if (!empty($custom_fields)) {
2527 2482
 
2528
-                    $type = stripslashes_deep($type); // strip slashes
2529
-                    $html = '';
2530
-                    $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2531
-                    if($html_var=='post'){$html_var='post_address';}
2532
-                    $field_icon = geodir_field_icon_proccess($type);
2533
-                    $filed_type = $type['type'];
2534
-
2535
-                    /**
2536
-                     * Filter the output for custom fields.
2537
-                     *
2538
-                     * Here we can remove or add new functions depending on the field type.
2539
-                     *
2540
-                     * @param string $html The html to be filtered (blank).
2541
-                     * @param string $fields_location The location the field is to be show.
2542
-                     * @param array $type The array of field values.
2543
-                     */
2544
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2545
-
2546
-
2547
-                    /**
2548
-                     * Filter custom field output in tab.
2549
-                     *
2550
-                     * @since 1.5.6
2551
-                     *
2552
-                     * @param string $html_var The HTML variable name for the field.
2553
-                     * @param string $html Custom field unfiltered HTML.
2554
-                     * @param array $variables_array Custom field variables array.
2555
-                     */
2556
-                    $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2557
-
2558
-                    $fieldset_html = '';
2559
-                    if ($field_set_start == 1) {
2560
-                        $add_html = false;
2561
-                        if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2562
-                            if ($fieldset != '') {
2563
-                                $add_html = true;
2564
-                                $label = $fieldset_arr[$fieldset_count - 1]['label'];
2565
-                                $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2566
-                            }
2567
-                            $fieldset_html = $fieldset;
2568
-                            $fieldset = '';
2569
-                        } else {
2570
-                            $fieldset .= $html;
2571
-                            if ($total_fields == $count_field && $fieldset != '') {
2572
-                                $add_html = true;
2573
-                                $label = $fieldset_arr[$fieldset_count]['label'];
2574
-                                $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2575
-                                $fieldset_html = $fieldset;
2576
-                            }
2577
-                        }
2483
+			global $field_set_start;
2578 2484
 
2579
-                        if ($add_html) {
2580
-                            $tabs_arr[$htmlvar_name] = array(
2581
-                                'heading_text' => __($label, 'geodirectory'),
2582
-                                'is_active_tab' => false,
2583
-                                /**
2584
-                                 * Filter if a custom field should be displayed on the details page tab.
2585
-                                 *
2586
-                                 * @since 1.0.0
2587
-                                 * @param string $htmlvar_name The field HTML var name.
2588
-                                 */
2589
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2590
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2591
-                            );
2592
-                        }
2593
-                    } else {
2594
-                        if ($html != '') {
2595
-                            $tabs_arr[$field['htmlvar_name']] = array(
2596
-                                'heading_text' => __($label, 'geodirectory'),
2597
-                                'is_active_tab' => false,
2598
-                                /** This action is documented in geodirectory_hooks_actions.php */
2599
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2600
-                                'tab_content' => $html
2601
-                            );
2602
-                        }
2603
-                    }
2604
-                }
2605
-            }
2606
-        }
2607
-    }
2608
-    return $tabs_arr;
2485
+			$post = stripslashes_deep($post); // strip slashes
2486
+            
2487
+			$field_set_start = 0;
2488
+			$fieldset_count = 0;
2489
+			$fieldset = '';
2490
+			$total_fields = count($custom_fields);
2491
+			$count_field = 0;
2492
+			$fieldset_arr = array();
2493
+			$i = 0;
2494
+			$geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2495
+
2496
+			foreach ($custom_fields as $field) {
2497
+				$count_field++;
2498
+				$field_name = $field['htmlvar_name'];
2499
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2500
+					$post->{$field_name} = $_REQUEST[$field_name];
2501
+				}
2502
+
2503
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file'))) {
2504
+					$label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2505
+					$site_title = trim($field['site_title']);
2506
+					$type = $field;
2507
+					$variables_array = array();
2508
+
2509
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2510
+						continue;
2511
+					}
2512
+
2513
+					if ($type['type'] != 'fieldset') {
2514
+						$i++;
2515
+						$variables_array['post_id'] = $post->ID;
2516
+						$variables_array['label'] = __($type['site_title'], 'geodirectory');
2517
+						$variables_array['value'] = '';
2518
+						$variables_array['value'] = $post->{$type['htmlvar_name']};
2519
+					}else{
2520
+						$i = 0;
2521
+						$fieldset_count++;
2522
+						$field_set_start = 1;
2523
+						$fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2524
+						$fieldset_arr[$fieldset_count]['label'] = $label;
2525
+					}
2526
+
2527
+
2528
+					$type = stripslashes_deep($type); // strip slashes
2529
+					$html = '';
2530
+					$html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2531
+					if($html_var=='post'){$html_var='post_address';}
2532
+					$field_icon = geodir_field_icon_proccess($type);
2533
+					$filed_type = $type['type'];
2534
+
2535
+					/**
2536
+					 * Filter the output for custom fields.
2537
+					 *
2538
+					 * Here we can remove or add new functions depending on the field type.
2539
+					 *
2540
+					 * @param string $html The html to be filtered (blank).
2541
+					 * @param string $fields_location The location the field is to be show.
2542
+					 * @param array $type The array of field values.
2543
+					 */
2544
+					$html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2545
+
2546
+
2547
+					/**
2548
+					 * Filter custom field output in tab.
2549
+					 *
2550
+					 * @since 1.5.6
2551
+					 *
2552
+					 * @param string $html_var The HTML variable name for the field.
2553
+					 * @param string $html Custom field unfiltered HTML.
2554
+					 * @param array $variables_array Custom field variables array.
2555
+					 */
2556
+					$html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2557
+
2558
+					$fieldset_html = '';
2559
+					if ($field_set_start == 1) {
2560
+						$add_html = false;
2561
+						if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2562
+							if ($fieldset != '') {
2563
+								$add_html = true;
2564
+								$label = $fieldset_arr[$fieldset_count - 1]['label'];
2565
+								$htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2566
+							}
2567
+							$fieldset_html = $fieldset;
2568
+							$fieldset = '';
2569
+						} else {
2570
+							$fieldset .= $html;
2571
+							if ($total_fields == $count_field && $fieldset != '') {
2572
+								$add_html = true;
2573
+								$label = $fieldset_arr[$fieldset_count]['label'];
2574
+								$htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2575
+								$fieldset_html = $fieldset;
2576
+							}
2577
+						}
2578
+
2579
+						if ($add_html) {
2580
+							$tabs_arr[$htmlvar_name] = array(
2581
+								'heading_text' => __($label, 'geodirectory'),
2582
+								'is_active_tab' => false,
2583
+								/**
2584
+								 * Filter if a custom field should be displayed on the details page tab.
2585
+								 *
2586
+								 * @since 1.0.0
2587
+								 * @param string $htmlvar_name The field HTML var name.
2588
+								 */
2589
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2590
+								'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2591
+							);
2592
+						}
2593
+					} else {
2594
+						if ($html != '') {
2595
+							$tabs_arr[$field['htmlvar_name']] = array(
2596
+								'heading_text' => __($label, 'geodirectory'),
2597
+								'is_active_tab' => false,
2598
+								/** This action is documented in geodirectory_hooks_actions.php */
2599
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2600
+								'tab_content' => $html
2601
+							);
2602
+						}
2603
+					}
2604
+				}
2605
+			}
2606
+		}
2607
+	}
2608
+	return $tabs_arr;
2609 2609
 }
2610 2610
 
2611 2611
 /* display add listing page for wpml */
@@ -2629,37 +2629,37 @@  discard block
 block discarded – undo
2629 2629
  */
2630 2630
 function geodir_add_post_status_author_page()
2631 2631
 {
2632
-    global $wpdb, $post;
2633
-
2634
-    $html = '';
2635
-    if (get_current_user_id()) {
2636
-        if (geodir_is_page('author') && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2637
-
2638
-            // 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.
2639
-            $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2640
-            $status = "<strong>(";
2641
-            $status_icon = '<i class="fa fa-play"></i>';
2642
-            if ($real_status == 'publish') {
2643
-                $status .= __('Published', 'geodirectory');
2644
-            } else {
2645
-                $status .= __('Not published', 'geodirectory');
2646
-                $status_icon = '<i class="fa fa-pause"></i>';
2647
-            }
2648
-            $status .= ")</strong>";
2632
+	global $wpdb, $post;
2633
+
2634
+	$html = '';
2635
+	if (get_current_user_id()) {
2636
+		if (geodir_is_page('author') && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2637
+
2638
+			// 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.
2639
+			$real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2640
+			$status = "<strong>(";
2641
+			$status_icon = '<i class="fa fa-play"></i>';
2642
+			if ($real_status == 'publish') {
2643
+				$status .= __('Published', 'geodirectory');
2644
+			} else {
2645
+				$status .= __('Not published', 'geodirectory');
2646
+				$status_icon = '<i class="fa fa-pause"></i>';
2647
+			}
2648
+			$status .= ")</strong>";
2649 2649
 
2650
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2651
-        }
2652
-    }
2650
+			$html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2651
+		}
2652
+	}
2653 2653
 
2654
-    if ($html != '') {
2655
-        /**
2656
-         * Filter the post status text on the author page.
2657
-         *
2658
-         * @since 1.0.0
2659
-         * @param string $html The HTML of the status.
2660
-         */
2661
-        echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2662
-    }
2654
+	if ($html != '') {
2655
+		/**
2656
+		 * Filter the post status text on the author page.
2657
+		 *
2658
+		 * @since 1.0.0
2659
+		 * @param string $html The HTML of the status.
2660
+		 */
2661
+		echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2662
+	}
2663 2663
 
2664 2664
 
2665 2665
 }
@@ -2673,21 +2673,21 @@  discard block
 block discarded – undo
2673 2673
  */
2674 2674
 function geodir_init_no_rating()
2675 2675
 {
2676
-    if (get_option('geodir_disable_rating')) {
2677
-        remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
2678
-        remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
2679
-        remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
2680
-        remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
2681
-        remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
2682
-        remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
2683
-        remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
2684
-
2685
-        add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
2686
-        add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
2687
-        add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
2688
-        add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
2689
-        add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2690
-    }
2676
+	if (get_option('geodir_disable_rating')) {
2677
+		remove_action('comment_form_logged_in_after', 'geodir_comment_rating_fields');
2678
+		remove_action('comment_form_before_fields', 'geodir_comment_rating_fields');
2679
+		remove_action('comment_form_logged_in_after', 'geodir_reviewrating_comment_rating_fields');
2680
+		remove_action('comment_form_before_fields', 'geodir_reviewrating_comment_rating_fields');
2681
+		remove_action('add_meta_boxes_comment', 'geodir_comment_add_meta_box');
2682
+		remove_action('add_meta_boxes', 'geodir_reviewrating_comment_metabox', 13);
2683
+		remove_filter('comment_text', 'geodir_wrap_comment_text', 40);
2684
+
2685
+		add_action('comment_form_logged_in_after', 'geodir_no_rating_rating_fields');
2686
+		add_action('comment_form_before_fields', 'geodir_no_rating_rating_fields');
2687
+		add_filter('comment_text', 'geodir_no_rating_comment_text', 100, 2);
2688
+		add_filter('geodir_detail_page_review_rating_html', 'geodir_no_rating_review_rating_html', 100);
2689
+		add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2690
+	}
2691 2691
 }
2692 2692
 
2693 2693
 /**
@@ -2699,24 +2699,24 @@  discard block
 block discarded – undo
2699 2699
  */
2700 2700
 function geodir_no_rating_rating_fields()
2701 2701
 {
2702
-    global $post;
2702
+	global $post;
2703 2703
 
2704
-    $post_types = geodir_get_posttypes();
2704
+	$post_types = geodir_get_posttypes();
2705 2705
 
2706
-    if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
2707
-        if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
2708
-            if (get_option('geodir_reviewrating_enable_rating')) {
2709
-                echo '<input type="hidden" value="1" name="geodir_rating[overall]" />';
2710
-            } else {
2711
-                echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
2712
-            }
2713
-            if (get_option('geodir_reviewrating_enable_images')) {
2714
-                geodir_reviewrating_rating_img_html();
2715
-            }
2716
-        } else {
2717
-            echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
2718
-        }
2719
-    }
2706
+	if (!empty($post) && isset($post->post_type) && in_array($post->post_type, $post_types)) {
2707
+		if (is_plugin_active('geodir_review_rating_manager/geodir_review_rating_manager.php')) {
2708
+			if (get_option('geodir_reviewrating_enable_rating')) {
2709
+				echo '<input type="hidden" value="1" name="geodir_rating[overall]" />';
2710
+			} else {
2711
+				echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
2712
+			}
2713
+			if (get_option('geodir_reviewrating_enable_images')) {
2714
+				geodir_reviewrating_rating_img_html();
2715
+			}
2716
+		} else {
2717
+			echo '<input type="hidden" id="geodir_overallrating" name="geodir_overallrating" value="1" />';
2718
+		}
2719
+	}
2720 2720
 }
2721 2721
 
2722 2722
 /**
@@ -2730,11 +2730,11 @@  discard block
 block discarded – undo
2730 2730
  */
2731 2731
 function geodir_no_rating_comment_text($content, $comment = '')
2732 2732
 {
2733
-    if (!is_admin()) {
2734
-        return '<div class="description">' . $content . '</div>';
2735
-    } else {
2736
-        return $content;
2737
-    }
2733
+	if (!is_admin()) {
2734
+		return '<div class="description">' . $content . '</div>';
2735
+	} else {
2736
+		return $content;
2737
+	}
2738 2738
 }
2739 2739
 
2740 2740
 /**
@@ -2747,7 +2747,7 @@  discard block
 block discarded – undo
2747 2747
  */
2748 2748
 function geodir_no_rating_review_rating_html($content = '')
2749 2749
 {
2750
-    return NULL;
2750
+	return NULL;
2751 2751
 }
2752 2752
 
2753 2753
 /**
@@ -2761,19 +2761,19 @@  discard block
 block discarded – undo
2761 2761
  */
2762 2762
 function geodir_no_rating_get_sort_options($options, $post_type = '')
2763 2763
 {
2764
-    $new_options = array();
2765
-    if (!empty($options)) {
2766
-        foreach ($options as $option) {
2767
-            if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2768
-                continue;
2769
-            }
2770
-            $new_options[] = $option;
2771
-        }
2764
+	$new_options = array();
2765
+	if (!empty($options)) {
2766
+		foreach ($options as $option) {
2767
+			if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2768
+				continue;
2769
+			}
2770
+			$new_options[] = $option;
2771
+		}
2772 2772
 
2773
-        $options = $new_options;
2774
-    }
2773
+		$options = $new_options;
2774
+	}
2775 2775
 
2776
-    return $options;
2776
+	return $options;
2777 2777
 }
2778 2778
 
2779 2779
 add_filter('geodir_all_js_msg', 'geodir_all_js_msg_no_rating', 100);
@@ -2787,11 +2787,11 @@  discard block
 block discarded – undo
2787 2787
  */
2788 2788
 function geodir_all_js_msg_no_rating($msg = array())
2789 2789
 {
2790
-    if (get_option('geodir_disable_rating')) {
2791
-        $msg['gd_cmt_no_rating'] = true;
2792
-    }
2790
+	if (get_option('geodir_disable_rating')) {
2791
+		$msg['gd_cmt_no_rating'] = true;
2792
+	}
2793 2793
 
2794
-    return $msg;
2794
+	return $msg;
2795 2795
 }
2796 2796
 
2797 2797
 add_filter('body_class', 'geodir_body_class_no_rating', 100);
@@ -2805,13 +2805,13 @@  discard block
 block discarded – undo
2805 2805
  */
2806 2806
 function geodir_body_class_no_rating($classes = array())
2807 2807
 {
2808
-    if (get_option('geodir_disable_rating')) {
2809
-        $classes[] = 'gd-no-rating';
2810
-    }
2808
+	if (get_option('geodir_disable_rating')) {
2809
+		$classes[] = 'gd-no-rating';
2810
+	}
2811 2811
     
2812
-    $classes[] = 'gd-map-' . geodir_map_name();
2812
+	$classes[] = 'gd-map-' . geodir_map_name();
2813 2813
 
2814
-    return $classes;
2814
+	return $classes;
2815 2815
 }
2816 2816
 
2817 2817
 add_filter('admin_body_class', 'geodir_admin_body_class_no_rating', 100);
@@ -2825,13 +2825,13 @@  discard block
 block discarded – undo
2825 2825
  */
2826 2826
 function geodir_admin_body_class_no_rating($class = '')
2827 2827
 {
2828
-    if (get_option('geodir_disable_rating')) {
2829
-        $class .= ' gd-no-rating';
2830
-    }
2828
+	if (get_option('geodir_disable_rating')) {
2829
+		$class .= ' gd-no-rating';
2830
+	}
2831 2831
     
2832
-    $class .= ' gd-map-' . geodir_map_name();
2832
+	$class .= ' gd-map-' . geodir_map_name();
2833 2833
 
2834
-    return $class;
2834
+	return $class;
2835 2835
 }
2836 2836
 
2837 2837
 add_action('wp_head', 'geodir_wp_head_no_rating');
@@ -2844,10 +2844,10 @@  discard block
 block discarded – undo
2844 2844
  */
2845 2845
 function geodir_wp_head_no_rating()
2846 2846
 {
2847
-    if (get_option('geodir_disable_rating')) {
2848
-        echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
2849
-        echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
2850
-    }
2847
+	if (get_option('geodir_disable_rating')) {
2848
+		echo '<style>body .geodir-rating, body .geodir-bubble-rating, body .gd_ratings_module_box{display:none!important;}</style>';
2849
+		echo '<script type="text/javascript">jQuery(function(){jQuery(".gd_rating_show").parent(".geodir-rating").remove();});</script>';
2850
+	}
2851 2851
 }
2852 2852
 
2853 2853
 add_filter('geodir_load_db_language', 'geodir_load_custom_field_translation');
@@ -2864,36 +2864,36 @@  discard block
 block discarded – undo
2864 2864
  * @return array Translation texts.
2865 2865
  */
2866 2866
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2867
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2868
-
2869
-    $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');
2870
-
2871
-    /**
2872
-     * Filters the geodirectory option names that requires to add for translation.
2873
-     *
2874
-     * @since 1.5.7
2875
-     * @package GeoDirectory
2876
-     *
2877
-     * @param  array $gd_options Array of option names.
2878
-     */
2879
-    $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2880
-    $gd_options = array_unique($gd_options);
2881
-
2882
-    if (!empty($gd_options)) {
2883
-        foreach ($gd_options as $gd_option) {
2884
-            if ($gd_option != '' && $option_value = get_option($gd_option)) {
2885
-                $option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2867
+	$translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2868
+
2869
+	$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');
2870
+
2871
+	/**
2872
+	 * Filters the geodirectory option names that requires to add for translation.
2873
+	 *
2874
+	 * @since 1.5.7
2875
+	 * @package GeoDirectory
2876
+	 *
2877
+	 * @param  array $gd_options Array of option names.
2878
+	 */
2879
+	$gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2880
+	$gd_options = array_unique($gd_options);
2881
+
2882
+	if (!empty($gd_options)) {
2883
+		foreach ($gd_options as $gd_option) {
2884
+			if ($gd_option != '' && $option_value = get_option($gd_option)) {
2885
+				$option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2886 2886
                 
2887
-                if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2888
-                    $translation_texts[] = stripslashes_deep($option_value);
2889
-                }
2890
-            }
2891
-        }
2892
-    }
2887
+				if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2888
+					$translation_texts[] = stripslashes_deep($option_value);
2889
+				}
2890
+			}
2891
+		}
2892
+	}
2893 2893
 
2894
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2894
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2895 2895
 
2896
-    return $translation_texts;
2896
+	return $translation_texts;
2897 2897
 }
2898 2898
 
2899 2899
 add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
@@ -2907,15 +2907,15 @@  discard block
 block discarded – undo
2907 2907
 
2908 2908
 add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
2909 2909
 function gd_get_comments_link($comments_link, $post_id) {
2910
-    $post_type = get_post_type($post_id);
2910
+	$post_type = get_post_type($post_id);
2911 2911
 
2912
-    $all_postypes = geodir_get_posttypes();
2913
-    if (in_array($post_type, $all_postypes)) {
2914
-        $comments_link = str_replace('#comments', '#reviews', $comments_link);
2915
-        $comments_link = str_replace('#respond', '#reviews', $comments_link);
2916
-    }
2912
+	$all_postypes = geodir_get_posttypes();
2913
+	if (in_array($post_type, $all_postypes)) {
2914
+		$comments_link = str_replace('#comments', '#reviews', $comments_link);
2915
+		$comments_link = str_replace('#respond', '#reviews', $comments_link);
2916
+	}
2917 2917
 
2918
-    return $comments_link;
2918
+	return $comments_link;
2919 2919
 }
2920 2920
 
2921 2921
 
@@ -2933,11 +2933,11 @@  discard block
 block discarded – undo
2933 2933
 function geodir_add_nav_menu_class( $args )
2934 2934
 {
2935 2935
 
2936
-        if(isset($args['menu_class'])){
2937
-            $args['menu_class'] = $args['menu_class']." gd-menu-z";
2938
-        }
2936
+		if(isset($args['menu_class'])){
2937
+			$args['menu_class'] = $args['menu_class']." gd-menu-z";
2938
+		}
2939 2939
     
2940
-    return $args;
2940
+	return $args;
2941 2941
 }
2942 2942
 
2943 2943
 add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
2944 2944
\ No newline at end of file
Please login to merge, or discard this patch.