@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | function geodir_get_admin_option_form($current_tab) |
64 | 64 | { |
65 | - geodir_admin_option_form($current_tab);// defined in admin template tags.php |
|
65 | + geodir_admin_option_form($current_tab); // defined in admin template tags.php |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | add_action('geodir_update_options_compatibility_settings', 'geodir_update_options_compatibility_settings'); |
71 | 71 | add_action('geodir_update_options_default_location_settings', 'geodir_location_form_submit'); |
72 | 72 | add_action('geodir_before_admin_panel', 'geodir_before_admin_panel'); // this function is in admin_functions.php |
73 | -add_action('geodir_before_update_options', 'geodir_before_update_options',10,2); |
|
73 | +add_action('geodir_before_update_options', 'geodir_before_update_options', 10, 2); |
|
74 | 74 | |
75 | 75 | //add_action('geodir_before_admin_panel', 'geodir_autoinstall_admin_header'); |
76 | 76 | |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | // Disable VC editor for GD post types. |
101 | 101 | if (class_exists('Vc_Role_Access_Controller')) { |
102 | - add_filter( 'vc_role_access_with_post_types_can', '__return_false', 100 ); |
|
102 | + add_filter('vc_role_access_with_post_types_can', '__return_false', 100); |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 | |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | add_action('admin_panel_init', 'geodir_admin_list_columns', 2); |
127 | 127 | |
128 | 128 | /* --- insert dummy post action ---*/ |
129 | -add_action('geodir_insert_dummy_posts', 'geodir_insert_dummy_posts', 1,3); |
|
130 | -add_action('geodir_delete_dummy_posts', 'geodir_delete_dummy_posts', 1,3); |
|
129 | +add_action('geodir_insert_dummy_posts', 'geodir_insert_dummy_posts', 1, 3); |
|
130 | +add_action('geodir_delete_dummy_posts', 'geodir_delete_dummy_posts', 1, 3); |
|
131 | 131 | |
132 | 132 | |
133 | 133 | /** |
@@ -236,9 +236,9 @@ discard block |
||
236 | 236 | |
237 | 237 | // Filter-Payment-Manager |
238 | 238 | |
239 | - add_meta_box('geodir_post_images', $post_typename . ' ' . __('Attachments', 'geodirectory'), 'geodir_post_attachments', $geodir_posttype, 'side'); |
|
239 | + add_meta_box('geodir_post_images', $post_typename.' '.__('Attachments', 'geodirectory'), 'geodir_post_attachments', $geodir_posttype, 'side'); |
|
240 | 240 | |
241 | - add_meta_box('geodir_post_info', $post_typename . ' ' . __('Information', 'geodirectory'), 'geodir_post_info_setting', $geodir_posttype, 'normal', 'high'); |
|
241 | + add_meta_box('geodir_post_info', $post_typename.' '.__('Information', 'geodirectory'), 'geodir_post_info_setting', $geodir_posttype, 'normal', 'high'); |
|
242 | 242 | |
243 | 243 | // no need of this box as all fields moved to main information box |
244 | 244 | //add_meta_box( 'geodir_post_addinfo', $post_typename. ' ' .__('Additional Information' , 'geodirectory'), 'geodir_post_addinfo_setting', $geodir_posttype,'normal', 'high' ); |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | |
248 | 248 | } |
249 | 249 | |
250 | -add_action('save_post', 'geodir_post_information_save',10,2); |
|
250 | +add_action('save_post', 'geodir_post_information_save', 10, 2); |
|
251 | 251 | |
252 | 252 | |
253 | 253 | |
@@ -274,10 +274,10 @@ discard block |
||
274 | 274 | |
275 | 275 | $gd_taxonomy = geodir_get_taxonomies($geodir_post_type); |
276 | 276 | |
277 | - if(!empty($gd_taxonomy)) { |
|
277 | + if (!empty($gd_taxonomy)) { |
|
278 | 278 | foreach ($gd_taxonomy as $tax) { |
279 | 279 | |
280 | - remove_meta_box($tax . 'div', $geodir_post_type, 'normal'); |
|
280 | + remove_meta_box($tax.'div', $geodir_post_type, 'normal'); |
|
281 | 281 | |
282 | 282 | } |
283 | 283 | } |
@@ -363,14 +363,14 @@ discard block |
||
363 | 363 | add_action('geodir_manage_available_fields_predefined', 'geodir_manage_available_fields_predefined'); |
364 | 364 | add_action('geodir_manage_available_fields_custom', 'geodir_manage_available_fields_custom'); |
365 | 365 | |
366 | -function geodir_manage_available_fields_predefined($sub_tab){ |
|
367 | - if($sub_tab=='custom_fields'){ |
|
366 | +function geodir_manage_available_fields_predefined($sub_tab) { |
|
367 | + if ($sub_tab == 'custom_fields') { |
|
368 | 368 | geodir_custom_available_fields('predefined'); |
369 | 369 | } |
370 | 370 | } |
371 | 371 | |
372 | -function geodir_manage_available_fields_custom($sub_tab){ |
|
373 | - if($sub_tab=='custom_fields'){ |
|
372 | +function geodir_manage_available_fields_custom($sub_tab) { |
|
373 | + if ($sub_tab == 'custom_fields') { |
|
374 | 374 | geodir_custom_available_fields('custom'); |
375 | 375 | } |
376 | 376 | } |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | global $wpdb; |
441 | 441 | $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
442 | 442 | ?> |
443 | - <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type;?>"/> |
|
443 | + <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type; ?>"/> |
|
444 | 444 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>"/> |
445 | 445 | <ul> |
446 | 446 | <?php |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | |
452 | 452 | $check_html_variable = $wpdb->get_var( |
453 | 453 | $wpdb->prepare( |
454 | - "SELECT htmlvar_name FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE htmlvar_name = %s AND post_type = %s AND field_type=%s", |
|
454 | + "SELECT htmlvar_name FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE htmlvar_name = %s AND post_type = %s AND field_type=%s", |
|
455 | 455 | array($val['htmlvar_name'], $listing_type, $val['field_type']) |
456 | 456 | ) |
457 | 457 | ); |
@@ -459,23 +459,23 @@ discard block |
||
459 | 459 | $display = $check_html_variable ? ' style="display:none;"' : ''; |
460 | 460 | ?> |
461 | 461 | |
462 | - <li class="gd-cf-tooltip-wrap" <?php echo $display;?>> |
|
462 | + <li class="gd-cf-tooltip-wrap" <?php echo $display; ?>> |
|
463 | 463 | <?php |
464 | - if(isset($val['description']) && $val['description']){ |
|
464 | + if (isset($val['description']) && $val['description']) { |
|
465 | 465 | echo '<div class="gdcf-tooltip">'.$val['description'].'</div>'; |
466 | 466 | }?> |
467 | 467 | |
468 | - <a id="gd-<?php echo $val['field_type'];?>-_-<?php echo $val['htmlvar_name'];?>" data-field-type-key="<?php echo $val['htmlvar_name'];?>" data-field-type="<?php echo $val['field_type'];?>" |
|
469 | - title="<?php echo $val['site_title'];?>" |
|
470 | - class="gd-draggable-form-items gd-<?php echo $val['field_type'];?> geodir-sort-<?php echo $val['htmlvar_name'];?>" href="javascript:void(0);"> |
|
468 | + <a id="gd-<?php echo $val['field_type']; ?>-_-<?php echo $val['htmlvar_name']; ?>" data-field-type-key="<?php echo $val['htmlvar_name']; ?>" data-field-type="<?php echo $val['field_type']; ?>" |
|
469 | + title="<?php echo $val['site_title']; ?>" |
|
470 | + class="gd-draggable-form-items gd-<?php echo $val['field_type']; ?> geodir-sort-<?php echo $val['htmlvar_name']; ?>" href="javascript:void(0);"> |
|
471 | 471 | <?php if (isset($val['field_icon']) && strpos($val['field_icon'], 'fa fa-') !== false) { |
472 | 472 | echo '<i class="'.$val['field_icon'].'" aria-hidden="true"></i>'; |
473 | - }elseif(isset($val['field_icon']) && $val['field_icon'] ){ |
|
473 | + }elseif (isset($val['field_icon']) && $val['field_icon']) { |
|
474 | 474 | echo '<b style="background-image: url("'.$val['field_icon'].'")"></b>'; |
475 | - }else{ |
|
475 | + } else { |
|
476 | 476 | echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
477 | 477 | }?> |
478 | - <?php echo $val['site_title'];?> |
|
478 | + <?php echo $val['site_title']; ?> |
|
479 | 479 | </a> |
480 | 480 | </li> |
481 | 481 | |
@@ -503,7 +503,7 @@ discard block |
||
503 | 503 | <?php |
504 | 504 | global $wpdb; |
505 | 505 | |
506 | - $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type = %s AND field_type != 'address' ORDER BY sort_order ASC", array($listing_type))); |
|
506 | + $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." WHERE post_type = %s AND field_type != 'address' ORDER BY sort_order ASC", array($listing_type))); |
|
507 | 507 | |
508 | 508 | if (!empty($fields)) { |
509 | 509 | foreach ($fields as $field) { |
@@ -528,14 +528,14 @@ discard block |
||
528 | 528 | * @since 1.6.9 |
529 | 529 | * @package GeoDirectory |
530 | 530 | */ |
531 | -function geodir_custom_fields_custom($post_type=''){ |
|
531 | +function geodir_custom_fields_custom($post_type = '') { |
|
532 | 532 | |
533 | 533 | $custom_fields = array(); |
534 | 534 | |
535 | 535 | /** |
536 | 536 | * @see `geodir_custom_fields` |
537 | 537 | */ |
538 | - return apply_filters('geodir_custom_fields_custom',$custom_fields,$post_type); |
|
538 | + return apply_filters('geodir_custom_fields_custom', $custom_fields, $post_type); |
|
539 | 539 | } |
540 | 540 | |
541 | 541 | |
@@ -546,7 +546,7 @@ discard block |
||
546 | 546 | * @since 1.6.6 |
547 | 547 | * @package GeoDirectory |
548 | 548 | */ |
549 | -function geodir_custom_fields($post_type=''){ |
|
549 | +function geodir_custom_fields($post_type = '') { |
|
550 | 550 | |
551 | 551 | $custom_fields = array( |
552 | 552 | 'text' => array( |
@@ -681,7 +681,7 @@ discard block |
||
681 | 681 | * } |
682 | 682 | * @param string $post_type The post type requested. |
683 | 683 | */ |
684 | - return apply_filters('geodir_custom_fields',$custom_fields,$post_type); |
|
684 | + return apply_filters('geodir_custom_fields', $custom_fields, $post_type); |
|
685 | 685 | } |
686 | 686 | |
687 | 687 | /** |
@@ -692,25 +692,25 @@ discard block |
||
692 | 692 | * @param string $type The custom field type, predefined, custom or blank for default |
693 | 693 | * @package GeoDirectory |
694 | 694 | */ |
695 | -function geodir_custom_available_fields($type='') |
|
695 | +function geodir_custom_available_fields($type = '') |
|
696 | 696 | { |
697 | 697 | $listing_type = ($_REQUEST['listing_type'] != '') ? sanitize_text_field($_REQUEST['listing_type']) : 'gd_place'; |
698 | 698 | ?> |
699 | - <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type;?>"/> |
|
699 | + <input type="hidden" name="listing_type" id="new_post_type" value="<?php echo $listing_type; ?>"/> |
|
700 | 700 | <input type="hidden" name="manage_field_type" class="manage_field_type" value="<?php echo sanitize_text_field($_REQUEST['subtab']); ?>" /> |
701 | 701 | |
702 | 702 | <?php |
703 | - if($type=='predefined'){ |
|
703 | + if ($type == 'predefined') { |
|
704 | 704 | $cfs = geodir_custom_fields_predefined($listing_type); |
705 | - }elseif($type=='custom'){ |
|
705 | + }elseif ($type == 'custom') { |
|
706 | 706 | $cfs = geodir_custom_fields_custom($listing_type); |
707 | - }else{ |
|
707 | + } else { |
|
708 | 708 | $cfs = geodir_custom_fields($listing_type); |
709 | 709 | ?> |
710 | 710 | <ul class="full gd-cf-tooltip-wrap"> |
711 | 711 | <li> |
712 | 712 | <div class="gdcf-tooltip"> |
713 | - <?php _e('This adds a section separator with a title.', 'geodirectory');?> |
|
713 | + <?php _e('This adds a section separator with a title.', 'geodirectory'); ?> |
|
714 | 714 | </div> |
715 | 715 | <a id="gt-fieldset" |
716 | 716 | class="gd-draggable-form-items gt-fieldset" |
@@ -721,7 +721,7 @@ discard block |
||
721 | 721 | |
722 | 722 | <i class="fa fa-long-arrow-left " aria-hidden="true"></i> |
723 | 723 | <i class="fa fa-long-arrow-right " aria-hidden="true"></i> |
724 | - <?php _e('Fieldset (section separator)', 'geodirectory');?> |
|
724 | + <?php _e('Fieldset (section separator)', 'geodirectory'); ?> |
|
725 | 725 | </a> |
726 | 726 | </li> |
727 | 727 | </ul> |
@@ -729,15 +729,15 @@ discard block |
||
729 | 729 | <?php |
730 | 730 | } |
731 | 731 | |
732 | - if(!empty($cfs)) { |
|
732 | + if (!empty($cfs)) { |
|
733 | 733 | echo '<ul>'; |
734 | - foreach ( $cfs as $id => $cf ) { |
|
734 | + foreach ($cfs as $id => $cf) { |
|
735 | 735 | ?> |
736 | 736 | |
737 | 737 | <li class="gd-cf-tooltip-wrap"> |
738 | 738 | <?php |
739 | - if ( isset( $cf['description'] ) && $cf['description'] ) { |
|
740 | - echo '<div class="gdcf-tooltip">' . $cf['description'] . '</div>'; |
|
739 | + if (isset($cf['description']) && $cf['description']) { |
|
740 | + echo '<div class="gdcf-tooltip">'.$cf['description'].'</div>'; |
|
741 | 741 | } ?> |
742 | 742 | |
743 | 743 | <a id="gd-<?php echo $id; ?>" |
@@ -747,10 +747,10 @@ discard block |
||
747 | 747 | class="gd-draggable-form-items <?php echo $cf['class']; ?>" |
748 | 748 | href="javascript:void(0);"> |
749 | 749 | |
750 | - <?php if ( isset( $cf['icon'] ) && strpos( $cf['icon'], 'fa fa-' ) !== false ) { |
|
751 | - echo '<i class="' . $cf['icon'] . '" aria-hidden="true"></i>'; |
|
752 | - } elseif ( isset( $cf['icon'] ) && $cf['icon'] ) { |
|
753 | - echo '<b style="background-image: url("' . $cf['icon'] . '")"></b>'; |
|
750 | + <?php if (isset($cf['icon']) && strpos($cf['icon'], 'fa fa-') !== false) { |
|
751 | + echo '<i class="'.$cf['icon'].'" aria-hidden="true"></i>'; |
|
752 | + } elseif (isset($cf['icon']) && $cf['icon']) { |
|
753 | + echo '<b style="background-image: url("'.$cf['icon'].'")"></b>'; |
|
754 | 754 | } else { |
755 | 755 | echo '<i class="fa fa-cog" aria-hidden="true"></i>'; |
756 | 756 | } ?> |
@@ -759,7 +759,7 @@ discard block |
||
759 | 759 | </li> |
760 | 760 | <?php |
761 | 761 | } |
762 | - }else{ |
|
762 | + } else { |
|
763 | 763 | _e('There are no custom fields here yet.', 'geodirectory'); |
764 | 764 | } |
765 | 765 | ?> |
@@ -787,7 +787,7 @@ discard block |
||
787 | 787 | <ul class="core"> |
788 | 788 | <?php |
789 | 789 | global $wpdb; |
790 | - $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type = %s ORDER BY sort_order ASC", array($listing_type))); |
|
790 | + $fields = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type = %s ORDER BY sort_order ASC", array($listing_type))); |
|
791 | 791 | |
792 | 792 | if (!empty($fields)) { |
793 | 793 | foreach ($fields as $field) { |
@@ -797,7 +797,7 @@ discard block |
||
797 | 797 | $field_type_key = $field->field_type_key; |
798 | 798 | $field_ins_upd = 'display'; |
799 | 799 | |
800 | - geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd,$field_type_key); |
|
800 | + geodir_custom_field_adminhtml($field_type, $result_str, $field_ins_upd, $field_type_key); |
|
801 | 801 | } |
802 | 802 | } |
803 | 803 | ?></ul> |
@@ -956,8 +956,8 @@ discard block |
||
956 | 956 | |
957 | 957 | if (!get_option('geodir_remove_unnecessary_fields')) { |
958 | 958 | |
959 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $plugin_prefix . "gd_place_detail WHERE field = 'categories'")) |
|
960 | - $wpdb->query("ALTER TABLE `" . $plugin_prefix . "gd_place_detail` DROP `categories`"); |
|
959 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$plugin_prefix."gd_place_detail WHERE field = 'categories'")) |
|
960 | + $wpdb->query("ALTER TABLE `".$plugin_prefix."gd_place_detail` DROP `categories`"); |
|
961 | 961 | |
962 | 962 | update_option('geodir_remove_unnecessary_fields', '1'); |
963 | 963 | |
@@ -986,7 +986,7 @@ discard block |
||
986 | 986 | case 'diagnosis' : |
987 | 987 | if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') { |
988 | 988 | $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
989 | - call_user_func('geodir_diagnose_' . $diagnose_this); |
|
989 | + call_user_func('geodir_diagnose_'.$diagnose_this); |
|
990 | 990 | |
991 | 991 | } |
992 | 992 | exit(); |
@@ -995,7 +995,7 @@ discard block |
||
995 | 995 | case 'diagnosis-fix' : |
996 | 996 | if (isset($_REQUEST['diagnose_this']) && $_REQUEST['diagnose_this'] != '') |
997 | 997 | $diagnose_this = sanitize_text_field($_REQUEST['diagnose_this']); |
998 | - call_user_func('geodir_diagnose_' . $diagnose_this); |
|
998 | + call_user_func('geodir_diagnose_'.$diagnose_this); |
|
999 | 999 | exit(); |
1000 | 1000 | break; |
1001 | 1001 | } |
@@ -1020,50 +1020,50 @@ discard block |
||
1020 | 1020 | { |
1021 | 1021 | global $wpdb; |
1022 | 1022 | //$filter_arr['output_str'] .='###'.$table.'###'; |
1023 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0) { |
|
1024 | - $filter_arr['output_str'] .= "<li>" . __('ERROR: You did not follow instructions! Now you will need to contact support to manually fix things.', 'geodirectory') . "</li>"; |
|
1023 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak2'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") > 0) { |
|
1024 | + $filter_arr['output_str'] .= "<li>".__('ERROR: You did not follow instructions! Now you will need to contact support to manually fix things.', 'geodirectory')."</li>"; |
|
1025 | 1025 | $filter_arr['is_error_during_diagnose'] = true; |
1026 | 1026 | |
1027 | - } elseif ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1028 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s_ms_bak table found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1027 | + } elseif ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") > 0) { |
|
1028 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: %s_ms_bak table found', 'geodirectory'), $tabel_name)."</li>"; |
|
1029 | 1029 | $filter_arr['is_error_during_diagnose'] = true; |
1030 | - $filter_arr['output_str'] .= "<li>" . __('IMPORTANT: This can be caused by out of date core or addons, please update core + addons before trying the fix OR YOU WILL HAVE A BAD TIME!', 'geodirectory') . "</li>"; |
|
1030 | + $filter_arr['output_str'] .= "<li>".__('IMPORTANT: This can be caused by out of date core or addons, please update core + addons before trying the fix OR YOU WILL HAVE A BAD TIME!', 'geodirectory')."</li>"; |
|
1031 | 1031 | $filter_arr['is_error_during_diagnose'] = true; |
1032 | 1032 | |
1033 | 1033 | if ($fix) { |
1034 | - $ms_bak_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $table . "_ms_bak");// get backup table count |
|
1035 | - $new_table_count = $wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table");// get new table count |
|
1034 | + $ms_bak_count = $wpdb->get_var("SELECT COUNT(*) FROM ".$table."_ms_bak"); // get backup table count |
|
1035 | + $new_table_count = $wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->prefix."$table"); // get new table count |
|
1036 | 1036 | |
1037 | 1037 | if ($ms_bak_count == $new_table_count) {// if they are the same count rename to bak2 |
1038 | 1038 | //$filter_arr['output_str'] .= "<li>".sprintf( __('-->PROBLEM: %s table count is the same as new table, contact support' , 'geodirectory'), $table )."</li>" ; |
1039 | 1039 | |
1040 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename bak table to new table |
|
1040 | + $wpdb->query("RENAME TABLE ".$table."_ms_bak TO ".$table."_ms_bak2"); // rename bak table to new table |
|
1041 | 1041 | |
1042 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1043 | - $filter_arr['output_str'] .= "<li>" . __('-->FIXED: Renamed and backed up the tables', 'geodirectory') . "</li>"; |
|
1042 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") == 0) { |
|
1043 | + $filter_arr['output_str'] .= "<li>".__('-->FIXED: Renamed and backed up the tables', 'geodirectory')."</li>"; |
|
1044 | 1044 | } else { |
1045 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1045 | + $filter_arr['output_str'] .= "<li>".__('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory')."</li>"; |
|
1046 | 1046 | } |
1047 | 1047 | |
1048 | 1048 | } elseif ($ms_bak_count > $new_table_count) {//if backup is greater then restore it |
1049 | 1049 | |
1050 | - $wpdb->query("RENAME TABLE " . $wpdb->prefix . "$table TO " . $table . "_ms_bak2");// rename new table to bak2 |
|
1051 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $wpdb->prefix . "$table");// rename bak table to new table |
|
1050 | + $wpdb->query("RENAME TABLE ".$wpdb->prefix."$table TO ".$table."_ms_bak2"); // rename new table to bak2 |
|
1051 | + $wpdb->query("RENAME TABLE ".$table."_ms_bak TO ".$wpdb->prefix."$table"); // rename bak table to new table |
|
1052 | 1052 | |
1053 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") && $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1054 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: restored largest table %s', 'geodirectory'), $table) . "</li>"; |
|
1053 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak2'") && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") && $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1054 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: restored largest table %s', 'geodirectory'), $table)."</li>"; |
|
1055 | 1055 | } else { |
1056 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1056 | + $filter_arr['output_str'] .= "<li>".__('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory')."</li>"; |
|
1057 | 1057 | } |
1058 | 1058 | |
1059 | 1059 | } elseif ($new_table_count > $ms_bak_count) {// we cant do much so rename the table to stop errors |
1060 | 1060 | |
1061 | - $wpdb->query("RENAME TABLE " . $table . "_ms_bak TO " . $table . "_ms_bak2");// rename ms_bak table to ms_bak2 |
|
1061 | + $wpdb->query("RENAME TABLE ".$table."_ms_bak TO ".$table."_ms_bak2"); // rename ms_bak table to ms_bak2 |
|
1062 | 1062 | |
1063 | - if ($wpdb->query("SHOW TABLES LIKE '" . $table . "_ms_bak'") == 0) { |
|
1064 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: table %s_ms_bak renamed and backed up', 'geodirectory'), $table) . "</li>"; |
|
1063 | + if ($wpdb->query("SHOW TABLES LIKE '".$table."_ms_bak'") == 0) { |
|
1064 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: table %s_ms_bak renamed and backed up', 'geodirectory'), $table)."</li>"; |
|
1065 | 1065 | } else { |
1066 | - $filter_arr['output_str'] .= "<li>" . __('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory') . "</li>"; |
|
1066 | + $filter_arr['output_str'] .= "<li>".__('-->PROBLEM: Failed to rename tables, please contact support.', 'geodirectory')."</li>"; |
|
1067 | 1067 | } |
1068 | 1068 | |
1069 | 1069 | } |
@@ -1071,54 +1071,54 @@ discard block |
||
1071 | 1071 | } |
1072 | 1072 | |
1073 | 1073 | |
1074 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") > 0) { |
|
1075 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: Two %s tables found', 'geodirectory'), $tabel_name) . "</li>"; |
|
1074 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") > 0) { |
|
1075 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: Two %s tables found', 'geodirectory'), $tabel_name)."</li>"; |
|
1076 | 1076 | $filter_arr['is_error_during_diagnose'] = true; |
1077 | 1077 | |
1078 | 1078 | if ($fix) { |
1079 | 1079 | if ($wpdb->get_var("SELECT COUNT(*) FROM $table") == 0) {// if first table is empty just delete it |
1080 | 1080 | if ($wpdb->query("DROP TABLE IF EXISTS $table")) { |
1081 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $table) . "</li>"; |
|
1081 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $table)."</li>"; |
|
1082 | 1082 | } else { |
1083 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $table) . "</li>"; |
|
1083 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $table)."</li>"; |
|
1084 | 1084 | } |
1085 | 1085 | |
1086 | - } elseif ($wpdb->get_var("SELECT COUNT(*) FROM " . $wpdb->prefix . "$table") == 0) {// if main table is empty but original is not, delete main and rename original |
|
1087 | - if ($wpdb->query("DROP TABLE IF EXISTS " . $wpdb->prefix . "$table")) { |
|
1088 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1086 | + } elseif ($wpdb->get_var("SELECT COUNT(*) FROM ".$wpdb->prefix."$table") == 0) {// if main table is empty but original is not, delete main and rename original |
|
1087 | + if ($wpdb->query("DROP TABLE IF EXISTS ".$wpdb->prefix."$table")) { |
|
1088 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Deleted table %s', 'geodirectory'), $wpdb->prefix.$table)."</li>"; |
|
1089 | 1089 | } else { |
1090 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $wpdb->prefix . $table) . "</li>"; |
|
1090 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Delete table %s failed, please try manual delete from DB', 'geodirectory'), $wpdb->prefix.$table)."</li>"; |
|
1091 | 1091 | } |
1092 | - if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1093 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1092 | + if ($wpdb->query("RENAME TABLE $table TO ".$wpdb->prefix."$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1093 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1094 | 1094 | } else { |
1095 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1095 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1096 | 1096 | } |
1097 | 1097 | } else {// else rename the original table to _ms_bak |
1098 | - if ($wpdb->query("RENAME TABLE $table TO " . $table . "_ms_bak") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1099 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table contained info so we renamed %s to %s incase it is needed in future', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1098 | + if ($wpdb->query("RENAME TABLE $table TO ".$table."_ms_bak") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1099 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Table contained info so we renamed %s to %s incase it is needed in future', 'geodirectory'), $table, $table."_ms_bak")."</li>"; |
|
1100 | 1100 | } else { |
1101 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Table %s could not be renamed to %s, this table has info so may need to be reviewed manually in the DB', 'geodirectory'), $table, $table . "_ms_bak") . "</li>"; |
|
1101 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Table %s could not be renamed to %s, this table has info so may need to be reviewed manually in the DB', 'geodirectory'), $table, $table."_ms_bak")."</li>"; |
|
1102 | 1102 | } |
1103 | 1103 | } |
1104 | 1104 | } |
1105 | 1105 | |
1106 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1107 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table not converted', 'geodirectory'), $tabel_name) . "</li>"; |
|
1106 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") == 0) { |
|
1107 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: %s table not converted', 'geodirectory'), $tabel_name)."</li>"; |
|
1108 | 1108 | $filter_arr['is_error_during_diagnose'] = true; |
1109 | 1109 | |
1110 | 1110 | if ($fix) { |
1111 | 1111 | // if original table exists but new does not, rename |
1112 | - if ($wpdb->query("RENAME TABLE $table TO " . $wpdb->prefix . "$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1113 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1112 | + if ($wpdb->query("RENAME TABLE $table TO ".$wpdb->prefix."$table") || $wpdb->query("SHOW TABLES LIKE '$table'") == 0) { |
|
1113 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->FIXED: Table %s renamed to %s', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1114 | 1114 | } else { |
1115 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix . $table) . "</li>"; |
|
1115 | + $filter_arr['output_str'] .= "<li>".sprintf(__('-->PROBLEM: Failed to rename table %s to %s, please try manually from DB', 'geodirectory'), $table, $wpdb->prefix.$table)."</li>"; |
|
1116 | 1116 | } |
1117 | 1117 | |
1118 | 1118 | } |
1119 | 1119 | |
1120 | - } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") == 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "$table'") == 0) { |
|
1121 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('ERROR: %s table does not exist', 'geodirectory'), $tabel_name) . "</li>"; |
|
1120 | + } elseif ($wpdb->query("SHOW TABLES LIKE '$table'") == 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."$table'") == 0) { |
|
1121 | + $filter_arr['output_str'] .= "<li>".sprintf(__('ERROR: %s table does not exist', 'geodirectory'), $tabel_name)."</li>"; |
|
1122 | 1122 | $filter_arr['is_error_during_diagnose'] = true; |
1123 | 1123 | |
1124 | 1124 | if ($fix) { |
@@ -1132,11 +1132,11 @@ discard block |
||
1132 | 1132 | delete_option('geodir_custom_posts_db_version'); |
1133 | 1133 | delete_option('geodir_reviewratings_db_version'); |
1134 | 1134 | delete_option('geodiradvancesearch_db_version'); |
1135 | - $filter_arr['output_str'] .= "<li>" . __('-->TRY: Please refresh page to run table install functions', 'geodirectory') . "</li>"; |
|
1135 | + $filter_arr['output_str'] .= "<li>".__('-->TRY: Please refresh page to run table install functions', 'geodirectory')."</li>"; |
|
1136 | 1136 | } |
1137 | 1137 | |
1138 | 1138 | } else { |
1139 | - $filter_arr['output_str'] .= "<li>" . sprintf(__('%s table converted correctly', 'geodirectory'), $tabel_name) . "</li>"; |
|
1139 | + $filter_arr['output_str'] .= "<li>".sprintf(__('%s table converted correctly', 'geodirectory'), $tabel_name)."</li>"; |
|
1140 | 1140 | } |
1141 | 1141 | return $filter_arr; |
1142 | 1142 | } |
@@ -1177,21 +1177,21 @@ discard block |
||
1177 | 1177 | } |
1178 | 1178 | |
1179 | 1179 | if ($stepped_process) { |
1180 | - $sql = $wpdb->prepare( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $ptype . "_detail LIMIT %d OFFSET %d", $step_max_items, $offset ); |
|
1181 | - $posts = $wpdb->get_results( $sql ); |
|
1180 | + $sql = $wpdb->prepare("SELECT * FROM ".$wpdb->prefix."geodir_".$ptype."_detail LIMIT %d OFFSET %d", $step_max_items, $offset); |
|
1181 | + $posts = $wpdb->get_results($sql); |
|
1182 | 1182 | |
1183 | 1183 | if (!empty($posts)) { |
1184 | 1184 | |
1185 | 1185 | foreach ($posts as $p) { |
1186 | 1186 | $p->post_type = $ptype; |
1187 | - $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1187 | + $raw_tags = wp_get_object_terms($p->post_id, $p->post_type.'_tags', array('fields' => 'names')); |
|
1188 | 1188 | if (empty($raw_tags)) { |
1189 | 1189 | $post_tags = ''; |
1190 | 1190 | } else { |
1191 | 1191 | $post_tags = implode(",", $raw_tags); |
1192 | 1192 | } |
1193 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1194 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1193 | + $tablename = $plugin_prefix.$p->post_type.'_detail'; |
|
1194 | + $wpdb->query($wpdb->prepare("UPDATE ".$tablename." SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1195 | 1195 | |
1196 | 1196 | } |
1197 | 1197 | if ($step >= $max_step) { |
@@ -1207,23 +1207,23 @@ discard block |
||
1207 | 1207 | if (!empty($all_postypes)) { |
1208 | 1208 | foreach ($all_postypes as $key) { |
1209 | 1209 | // update each GD CPT |
1210 | - $posts = $wpdb->get_results( "SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail"); |
|
1210 | + $posts = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."geodir_".$key."_detail"); |
|
1211 | 1211 | |
1212 | 1212 | if (!empty($posts)) { |
1213 | 1213 | |
1214 | 1214 | foreach ($posts as $p) { |
1215 | 1215 | $p->post_type = $key; |
1216 | - $raw_tags = wp_get_object_terms($p->post_id, $p->post_type . '_tags', array('fields' => 'names')); |
|
1216 | + $raw_tags = wp_get_object_terms($p->post_id, $p->post_type.'_tags', array('fields' => 'names')); |
|
1217 | 1217 | if (empty($raw_tags)) { |
1218 | 1218 | $post_tags = ''; |
1219 | 1219 | } else { |
1220 | 1220 | $post_tags = implode(",", $raw_tags); |
1221 | 1221 | } |
1222 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1223 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1222 | + $tablename = $plugin_prefix.$p->post_type.'_detail'; |
|
1223 | + $wpdb->query($wpdb->prepare("UPDATE ".$tablename." SET post_tags=%s WHERE post_id =%d", $post_tags, $p->post_id)); |
|
1224 | 1224 | |
1225 | 1225 | } |
1226 | - $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1226 | + $output_str .= "<li>".$key.__(': Done', 'geodirectory')."</li>"; |
|
1227 | 1227 | } |
1228 | 1228 | |
1229 | 1229 | } |
@@ -1234,14 +1234,14 @@ discard block |
||
1234 | 1234 | |
1235 | 1235 | if ($is_error_during_diagnose) { |
1236 | 1236 | $info_div_class = "geodir_problem_info"; |
1237 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1237 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1238 | 1238 | } else { |
1239 | 1239 | $info_div_class = "geodir_noproblem_info"; |
1240 | 1240 | $fix_button_txt = ''; |
1241 | 1241 | } |
1242 | 1242 | |
1243 | 1243 | if ($stepped_process) { |
1244 | - $percent = ($step/$max_step) * 100; |
|
1244 | + $percent = ($step / $max_step) * 100; |
|
1245 | 1245 | if ($output_str == 'done') { |
1246 | 1246 | echo $output_str; |
1247 | 1247 | } else { |
@@ -1284,29 +1284,29 @@ discard block |
||
1284 | 1284 | if (!empty($all_postypes)) { |
1285 | 1285 | foreach ($all_postypes as $key) { |
1286 | 1286 | // update each GD CTP |
1287 | - $posts = $wpdb->get_results("SELECT * FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d WHERE d." . $key . "category='' "); |
|
1287 | + $posts = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix."geodir_".$key."_detail d WHERE d.".$key."category='' "); |
|
1288 | 1288 | |
1289 | 1289 | if (!empty($posts)) { |
1290 | 1290 | |
1291 | 1291 | foreach ($posts as $p) { |
1292 | 1292 | $p->post_type = $key; |
1293 | - $raw_cats = wp_get_object_terms($p->post_id, $p->post_type . 'category', array('fields' => 'ids')); |
|
1293 | + $raw_cats = wp_get_object_terms($p->post_id, $p->post_type.'category', array('fields' => 'ids')); |
|
1294 | 1294 | |
1295 | 1295 | if (empty($raw_cats)) { |
1296 | 1296 | $post_categories = get_post_meta($p->post_id, 'post_categories', true); |
1297 | 1297 | |
1298 | - if (!empty($post_categories) && !empty($post_categories[$p->post_type . 'category'])) { |
|
1299 | - $post_categories[$p->post_type . 'category'] = str_replace("d:", "", $post_categories[$p->post_type . 'category']); |
|
1300 | - foreach (explode(",", $post_categories[$p->post_type . 'category']) as $cat_part) { |
|
1298 | + if (!empty($post_categories) && !empty($post_categories[$p->post_type.'category'])) { |
|
1299 | + $post_categories[$p->post_type.'category'] = str_replace("d:", "", $post_categories[$p->post_type.'category']); |
|
1300 | + foreach (explode(",", $post_categories[$p->post_type.'category']) as $cat_part) { |
|
1301 | 1301 | if (is_numeric($cat_part)) { |
1302 | - $raw_cats[] = (int)$cat_part; |
|
1302 | + $raw_cats[] = (int) $cat_part; |
|
1303 | 1303 | } |
1304 | 1304 | } |
1305 | 1305 | |
1306 | 1306 | } |
1307 | 1307 | |
1308 | 1308 | if (!empty($raw_cats)) { |
1309 | - $term_taxonomy_ids = wp_set_object_terms($p->post_id, $raw_cats, $p->post_type . 'category'); |
|
1309 | + $term_taxonomy_ids = wp_set_object_terms($p->post_id, $raw_cats, $p->post_type.'category'); |
|
1310 | 1310 | |
1311 | 1311 | } |
1312 | 1312 | |
@@ -1316,14 +1316,14 @@ discard block |
||
1316 | 1316 | if (empty($raw_cats)) { |
1317 | 1317 | $post_cats = ''; |
1318 | 1318 | } else { |
1319 | - $post_cats = ',' . implode(",", $raw_cats) . ','; |
|
1319 | + $post_cats = ','.implode(",", $raw_cats).','; |
|
1320 | 1320 | } |
1321 | - $tablename = $plugin_prefix . $p->post_type . '_detail'; |
|
1322 | - $wpdb->query($wpdb->prepare("UPDATE " . $tablename . " SET " . $p->post_type . "category=%s WHERE post_id =%d", $post_cats, $p->post_id)); |
|
1321 | + $tablename = $plugin_prefix.$p->post_type.'_detail'; |
|
1322 | + $wpdb->query($wpdb->prepare("UPDATE ".$tablename." SET ".$p->post_type."category=%s WHERE post_id =%d", $post_cats, $p->post_id)); |
|
1323 | 1323 | } |
1324 | 1324 | |
1325 | 1325 | } |
1326 | - $output_str .= "<li>" . $key . __(': Done', 'geodirectory') . "</li>"; |
|
1326 | + $output_str .= "<li>".$key.__(': Done', 'geodirectory')."</li>"; |
|
1327 | 1327 | |
1328 | 1328 | } |
1329 | 1329 | |
@@ -1331,7 +1331,7 @@ discard block |
||
1331 | 1331 | |
1332 | 1332 | if ($is_error_during_diagnose) { |
1333 | 1333 | $info_div_class = "geodir_problem_info"; |
1334 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1334 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1335 | 1335 | } else { |
1336 | 1336 | $info_div_class = "geodir_noproblem_info"; |
1337 | 1337 | $fix_button_txt = ''; |
@@ -1384,15 +1384,15 @@ discard block |
||
1384 | 1384 | if (!empty($ver_arr)) { |
1385 | 1385 | foreach ($ver_arr as $key => $val) { |
1386 | 1386 | if (delete_option($val)) { |
1387 | - $output_str .= "<li>" . $key . __(' Version: Deleted', 'geodirectory') . "</li>"; |
|
1387 | + $output_str .= "<li>".$key.__(' Version: Deleted', 'geodirectory')."</li>"; |
|
1388 | 1388 | } else { |
1389 | - $output_str .= "<li>" . $key . __(' Version: Not Found', 'geodirectory') . "</li>"; |
|
1389 | + $output_str .= "<li>".$key.__(' Version: Not Found', 'geodirectory')."</li>"; |
|
1390 | 1390 | } |
1391 | 1391 | |
1392 | 1392 | } |
1393 | 1393 | |
1394 | 1394 | if ($output_str) { |
1395 | - $output_str .= "<li><strong>" . __(' Upgrade/install scripts will run on next page reload.', 'geodirectory') . "</strong></li>"; |
|
1395 | + $output_str .= "<li><strong>".__(' Upgrade/install scripts will run on next page reload.', 'geodirectory')."</strong></li>"; |
|
1396 | 1396 | } |
1397 | 1397 | |
1398 | 1398 | } |
@@ -1429,43 +1429,43 @@ discard block |
||
1429 | 1429 | $output_str = ''; |
1430 | 1430 | |
1431 | 1431 | // check review locations |
1432 | - if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE post_city='' OR post_city IS NULL OR post_latitude='' OR post_latitude IS NULL")) { |
|
1433 | - $output_str .= "<li>" . __('Review locations missing or broken', 'geodirectory') . "</li>"; |
|
1432 | + if ($wpdb->get_results("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE post_city='' OR post_city IS NULL OR post_latitude='' OR post_latitude IS NULL")) { |
|
1433 | + $output_str .= "<li>".__('Review locations missing or broken', 'geodirectory')."</li>"; |
|
1434 | 1434 | $is_error_during_diagnose = true; |
1435 | 1435 | |
1436 | 1436 | if ($fix) { |
1437 | 1437 | if (geodir_fix_review_location()) { |
1438 | - $output_str .= "<li><strong>" . __('-->FIXED: Review locations fixed', 'geodirectory') . "</strong></li>"; |
|
1438 | + $output_str .= "<li><strong>".__('-->FIXED: Review locations fixed', 'geodirectory')."</strong></li>"; |
|
1439 | 1439 | } else { |
1440 | - $output_str .= "<li><strong>" . __('-->FAILED: Review locations fix failed', 'geodirectory') . "</strong></li>"; |
|
1440 | + $output_str .= "<li><strong>".__('-->FAILED: Review locations fix failed', 'geodirectory')."</strong></li>"; |
|
1441 | 1441 | } |
1442 | 1442 | } |
1443 | 1443 | |
1444 | 1444 | } else { |
1445 | - $output_str .= "<li>" . __('Review locations ok', 'geodirectory') . "</li>"; |
|
1445 | + $output_str .= "<li>".__('Review locations ok', 'geodirectory')."</li>"; |
|
1446 | 1446 | } |
1447 | 1447 | |
1448 | 1448 | // check review content |
1449 | - if ($wpdb->get_results("SELECT * FROM " . GEODIR_REVIEW_TABLE . " WHERE comment_content IS NULL")) { |
|
1450 | - $output_str .= "<li>" . __('Review content missing or broken', 'geodirectory') . "</li>"; |
|
1449 | + if ($wpdb->get_results("SELECT * FROM ".GEODIR_REVIEW_TABLE." WHERE comment_content IS NULL")) { |
|
1450 | + $output_str .= "<li>".__('Review content missing or broken', 'geodirectory')."</li>"; |
|
1451 | 1451 | $is_error_during_diagnose = true; |
1452 | 1452 | |
1453 | 1453 | if ($fix) { |
1454 | 1454 | if (geodir_fix_review_content()) { |
1455 | - $output_str .= "<li><strong>" . __('-->FIXED: Review content fixed', 'geodirectory') . "</strong></li>"; |
|
1455 | + $output_str .= "<li><strong>".__('-->FIXED: Review content fixed', 'geodirectory')."</strong></li>"; |
|
1456 | 1456 | } else { |
1457 | - $output_str .= "<li><strong>" . __('-->FAILED: Review content fix failed', 'geodirectory') . "</strong></li>"; |
|
1457 | + $output_str .= "<li><strong>".__('-->FAILED: Review content fix failed', 'geodirectory')."</strong></li>"; |
|
1458 | 1458 | } |
1459 | 1459 | } |
1460 | 1460 | |
1461 | 1461 | } else { |
1462 | - $output_str .= "<li>" . __('Review content ok', 'geodirectory') . "</li>"; |
|
1462 | + $output_str .= "<li>".__('Review content ok', 'geodirectory')."</li>"; |
|
1463 | 1463 | } |
1464 | 1464 | |
1465 | 1465 | |
1466 | 1466 | if ($is_error_during_diagnose) { |
1467 | 1467 | $info_div_class = "geodir_problem_info"; |
1468 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1468 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='ratings' />"; |
|
1469 | 1469 | } else { |
1470 | 1470 | $info_div_class = "geodir_noproblem_info"; |
1471 | 1471 | $fix_button_txt = ''; |
@@ -1529,7 +1529,7 @@ discard block |
||
1529 | 1529 | |
1530 | 1530 | if ($is_error_during_diagnose) { |
1531 | 1531 | $info_div_class = "geodir_problem_info"; |
1532 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='multisite_conversion' />"; |
|
1532 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='multisite_conversion' />"; |
|
1533 | 1533 | } else { |
1534 | 1534 | $info_div_class = "geodir_noproblem_info"; |
1535 | 1535 | $fix_button_txt = ''; |
@@ -1563,7 +1563,7 @@ discard block |
||
1563 | 1563 | else { |
1564 | 1564 | $page_found = $wpdb->get_var( |
1565 | 1565 | $wpdb->prepare( |
1566 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
1566 | + "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;", |
|
1567 | 1567 | array($slug) |
1568 | 1568 | ) |
1569 | 1569 | ); |
@@ -1609,18 +1609,18 @@ discard block |
||
1609 | 1609 | ////////////////////////////////// |
1610 | 1610 | $option_value = get_option('geodir_home_page'); |
1611 | 1611 | $page = get_post($option_value); |
1612 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1612 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1613 | 1613 | |
1614 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1615 | - $output_str .= "<li>" . __('GD Home page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1614 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1615 | + $output_str .= "<li>".__('GD Home page exists with proper setting.', 'geodirectory')."</li>"; |
|
1616 | 1616 | else { |
1617 | 1617 | $is_error_during_diagnose = true; |
1618 | - $output_str .= "<li><strong>" . __('GD Home page is missing.', 'geodirectory') . "</strong></li>"; |
|
1618 | + $output_str .= "<li><strong>".__('GD Home page is missing.', 'geodirectory')."</strong></li>"; |
|
1619 | 1619 | if ($fix) { |
1620 | 1620 | if (geodir_fix_virtual_page('gd-home', __('GD Home page', 'geodirectory'), $page_found, 'geodir_home_page')) { |
1621 | - $output_str .= "<li><strong>" . __('-->FIXED: GD Home page fixed', 'geodirectory') . "</strong></li>"; |
|
1621 | + $output_str .= "<li><strong>".__('-->FIXED: GD Home page fixed', 'geodirectory')."</strong></li>"; |
|
1622 | 1622 | } else { |
1623 | - $output_str .= "<li><strong>" . __('-->FAILED: GD Home page fix failed', 'geodirectory') . "</strong></li>"; |
|
1623 | + $output_str .= "<li><strong>".__('-->FAILED: GD Home page fix failed', 'geodirectory')."</strong></li>"; |
|
1624 | 1624 | } |
1625 | 1625 | } |
1626 | 1626 | } |
@@ -1634,18 +1634,18 @@ discard block |
||
1634 | 1634 | ////////////////////////////////// |
1635 | 1635 | $option_value = get_option('geodir_add_listing_page'); |
1636 | 1636 | $page = get_post($option_value); |
1637 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1637 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1638 | 1638 | |
1639 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1640 | - $output_str .= "<li>" . __('Add Listing page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1639 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1640 | + $output_str .= "<li>".__('Add Listing page exists with proper setting.', 'geodirectory')."</li>"; |
|
1641 | 1641 | else { |
1642 | 1642 | $is_error_during_diagnose = true; |
1643 | - $output_str .= "<li><strong>" . __('Add Listing page is missing.', 'geodirectory') . "</strong></li>"; |
|
1643 | + $output_str .= "<li><strong>".__('Add Listing page is missing.', 'geodirectory')."</strong></li>"; |
|
1644 | 1644 | if ($fix) { |
1645 | 1645 | if (geodir_fix_virtual_page('add-listing', __('Add Listing', 'geodirectory'), $page_found, 'geodir_add_listing_page')) { |
1646 | - $output_str .= "<li><strong>" . __('-->FIXED: Add Listing page fixed', 'geodirectory') . "</strong></li>"; |
|
1646 | + $output_str .= "<li><strong>".__('-->FIXED: Add Listing page fixed', 'geodirectory')."</strong></li>"; |
|
1647 | 1647 | } else { |
1648 | - $output_str .= "<li><strong>" . __('-->FAILED: Add Listing page fix failed', 'geodirectory') . "</strong></li>"; |
|
1648 | + $output_str .= "<li><strong>".__('-->FAILED: Add Listing page fix failed', 'geodirectory')."</strong></li>"; |
|
1649 | 1649 | } |
1650 | 1650 | } |
1651 | 1651 | } |
@@ -1660,18 +1660,18 @@ discard block |
||
1660 | 1660 | ////////////////////////////////// |
1661 | 1661 | $option_value = get_option('geodir_preview_page'); |
1662 | 1662 | $page = get_post($option_value); |
1663 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1663 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1664 | 1664 | |
1665 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1666 | - $output_str .= "<li>" . __('Listing Preview page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1665 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1666 | + $output_str .= "<li>".__('Listing Preview page exists with proper setting.', 'geodirectory')."</li>"; |
|
1667 | 1667 | else { |
1668 | 1668 | $is_error_during_diagnose = true; |
1669 | - $output_str .= "<li><strong>" . __('Listing Preview page is missing.', 'geodirectory') . "</strong></li>"; |
|
1669 | + $output_str .= "<li><strong>".__('Listing Preview page is missing.', 'geodirectory')."</strong></li>"; |
|
1670 | 1670 | if ($fix) { |
1671 | 1671 | if (geodir_fix_virtual_page('listing-preview', __('Listing Preview', 'geodirectory'), $page_found, 'geodir_preview_page')) { |
1672 | - $output_str .= "<li><strong>" . __('-->FIXED: Listing Preview page fixed', 'geodirectory') . "</strong></li>"; |
|
1672 | + $output_str .= "<li><strong>".__('-->FIXED: Listing Preview page fixed', 'geodirectory')."</strong></li>"; |
|
1673 | 1673 | } else { |
1674 | - $output_str .= "<li><strong>" . __('-->FAILED: Listing Preview page fix failed', 'geodirectory') . "</strong></li>"; |
|
1674 | + $output_str .= "<li><strong>".__('-->FAILED: Listing Preview page fix failed', 'geodirectory')."</strong></li>"; |
|
1675 | 1675 | } |
1676 | 1676 | } |
1677 | 1677 | } |
@@ -1685,18 +1685,18 @@ discard block |
||
1685 | 1685 | ////////////////////////////////// |
1686 | 1686 | $option_value = get_option('geodir_success_page'); |
1687 | 1687 | $page = get_post($option_value); |
1688 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1688 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1689 | 1689 | |
1690 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1691 | - $output_str .= "<li>" . __('Listing Success page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1690 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1691 | + $output_str .= "<li>".__('Listing Success page exists with proper setting.', 'geodirectory')."</li>"; |
|
1692 | 1692 | else { |
1693 | 1693 | $is_error_during_diagnose = true; |
1694 | - $output_str .= "<li><strong>" . __('Listing Success page is missing.', 'geodirectory') . "</strong></li>"; |
|
1694 | + $output_str .= "<li><strong>".__('Listing Success page is missing.', 'geodirectory')."</strong></li>"; |
|
1695 | 1695 | if ($fix) { |
1696 | 1696 | if (geodir_fix_virtual_page('listing-success', __('Listing Success', 'geodirectory'), $page_found, 'geodir_success_page')) { |
1697 | - $output_str .= "<li><strong>" . __('-->FIXED: Listing Success page fixed', 'geodirectory') . "</strong></li>"; |
|
1697 | + $output_str .= "<li><strong>".__('-->FIXED: Listing Success page fixed', 'geodirectory')."</strong></li>"; |
|
1698 | 1698 | } else { |
1699 | - $output_str .= "<li><strong>" . __('-->FAILED: Listing Success page fix failed', 'geodirectory') . "</strong></li>"; |
|
1699 | + $output_str .= "<li><strong>".__('-->FAILED: Listing Success page fix failed', 'geodirectory')."</strong></li>"; |
|
1700 | 1700 | } |
1701 | 1701 | } |
1702 | 1702 | } |
@@ -1710,18 +1710,18 @@ discard block |
||
1710 | 1710 | ////////////////////////////////// |
1711 | 1711 | $option_value = get_option('geodir_info_page'); |
1712 | 1712 | $page = get_post($option_value); |
1713 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1713 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1714 | 1714 | |
1715 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1716 | - $output_str .= "<li>" . __('Info page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1715 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1716 | + $output_str .= "<li>".__('Info page exists with proper setting.', 'geodirectory')."</li>"; |
|
1717 | 1717 | else { |
1718 | 1718 | $is_error_during_diagnose = true; |
1719 | - $output_str .= "<li><strong>" . __('Info page is missing.', 'geodirectory') . "</strong></li>"; |
|
1719 | + $output_str .= "<li><strong>".__('Info page is missing.', 'geodirectory')."</strong></li>"; |
|
1720 | 1720 | if ($fix) { |
1721 | 1721 | if (geodir_fix_virtual_page('gd-info', __('Info', 'geodirectory'), $page_found, 'geodir_info_page')) { |
1722 | - $output_str .= "<li><strong>" . __('-->FIXED: Info page fixed', 'geodirectory') . "</strong></li>"; |
|
1722 | + $output_str .= "<li><strong>".__('-->FIXED: Info page fixed', 'geodirectory')."</strong></li>"; |
|
1723 | 1723 | } else { |
1724 | - $output_str .= "<li><strong>" . __('-->FAILED: Info page fix failed', 'geodirectory') . "</strong></li>"; |
|
1724 | + $output_str .= "<li><strong>".__('-->FAILED: Info page fix failed', 'geodirectory')."</strong></li>"; |
|
1725 | 1725 | } |
1726 | 1726 | } |
1727 | 1727 | } |
@@ -1735,18 +1735,18 @@ discard block |
||
1735 | 1735 | ////////////////////////////////// |
1736 | 1736 | $option_value = get_option('geodir_login_page'); |
1737 | 1737 | $page = get_post($option_value); |
1738 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1738 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1739 | 1739 | |
1740 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1741 | - $output_str .= "<li>" . __('Login page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1740 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1741 | + $output_str .= "<li>".__('Login page exists with proper setting.', 'geodirectory')."</li>"; |
|
1742 | 1742 | else { |
1743 | 1743 | $is_error_during_diagnose = true; |
1744 | - $output_str .= "<li><strong>" . __('Login page is missing.', 'geodirectory') . "</strong></li>"; |
|
1744 | + $output_str .= "<li><strong>".__('Login page is missing.', 'geodirectory')."</strong></li>"; |
|
1745 | 1745 | if ($fix) { |
1746 | 1746 | if (geodir_fix_virtual_page('gd-login', __('Login', 'geodirectory'), $page_found, 'geodir_login_page')) { |
1747 | - $output_str .= "<li><strong>" . __('-->FIXED: Login page fixed', 'geodirectory') . "</strong></li>"; |
|
1747 | + $output_str .= "<li><strong>".__('-->FIXED: Login page fixed', 'geodirectory')."</strong></li>"; |
|
1748 | 1748 | } else { |
1749 | - $output_str .= "<li><strong>" . __('-->FAILED: Login page fix failed', 'geodirectory') . "</strong></li>"; |
|
1749 | + $output_str .= "<li><strong>".__('-->FAILED: Login page fix failed', 'geodirectory')."</strong></li>"; |
|
1750 | 1750 | } |
1751 | 1751 | } |
1752 | 1752 | } |
@@ -1760,18 +1760,18 @@ discard block |
||
1760 | 1760 | ////////////////////////////////// |
1761 | 1761 | $option_value = get_option('geodir_location_page'); |
1762 | 1762 | $page = get_post($option_value); |
1763 | - if(!empty($page)){$page_found = $page->ID;}else{$page_found = '';} |
|
1763 | + if (!empty($page)) {$page_found = $page->ID; } else {$page_found = ''; } |
|
1764 | 1764 | |
1765 | - if(!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status=='publish') |
|
1766 | - $output_str .= "<li>" . __('Location page exists with proper setting.', 'geodirectory') . "</li>"; |
|
1765 | + if (!empty($option_value) && !empty($page_found) && $option_value == $page_found && $page->post_status == 'publish') |
|
1766 | + $output_str .= "<li>".__('Location page exists with proper setting.', 'geodirectory')."</li>"; |
|
1767 | 1767 | else { |
1768 | 1768 | $is_error_during_diagnose = true; |
1769 | - $output_str .= "<li><strong>" . __('Location page is missing.', 'geodirectory') . "</strong></li>"; |
|
1769 | + $output_str .= "<li><strong>".__('Location page is missing.', 'geodirectory')."</strong></li>"; |
|
1770 | 1770 | if ($fix) { |
1771 | 1771 | if (geodir_fix_virtual_page('location', __('Location', 'geodirectory'), $page_found, 'geodir_location_page')) { |
1772 | - $output_str .= "<li><strong>" . __('-->FIXED: Location page fixed', 'geodirectory') . "</strong></li>"; |
|
1772 | + $output_str .= "<li><strong>".__('-->FIXED: Location page fixed', 'geodirectory')."</strong></li>"; |
|
1773 | 1773 | } else { |
1774 | - $output_str .= "<li><strong>" . __('-->FAILED: Location page fix failed', 'geodirectory') . "</strong></li>"; |
|
1774 | + $output_str .= "<li><strong>".__('-->FAILED: Location page fix failed', 'geodirectory')."</strong></li>"; |
|
1775 | 1775 | } |
1776 | 1776 | } |
1777 | 1777 | } |
@@ -1780,13 +1780,13 @@ discard block |
||
1780 | 1780 | /* Diagnose Location Page Ends */ |
1781 | 1781 | //////////////////////////////// |
1782 | 1782 | |
1783 | - $page_chk_arr = array('output_str'=>$output_str,'is_error_during_diagnose'=>$is_error_during_diagnose ); |
|
1783 | + $page_chk_arr = array('output_str'=>$output_str, 'is_error_during_diagnose'=>$is_error_during_diagnose); |
|
1784 | 1784 | /** |
1785 | 1785 | * This action is called at the end of the GD Tools page check function. |
1786 | 1786 | * |
1787 | 1787 | * @since 1.5.2 |
1788 | 1788 | */ |
1789 | - $page_chk_arr = apply_filters('geodir_diagnose_default_pages',$page_chk_arr); |
|
1789 | + $page_chk_arr = apply_filters('geodir_diagnose_default_pages', $page_chk_arr); |
|
1790 | 1790 | |
1791 | 1791 | $output_str = $page_chk_arr['output_str']; |
1792 | 1792 | $is_error_during_diagnose = $page_chk_arr['is_error_during_diagnose']; |
@@ -1796,7 +1796,7 @@ discard block |
||
1796 | 1796 | flush_rewrite_rules(); |
1797 | 1797 | } |
1798 | 1798 | $info_div_class = "geodir_problem_info"; |
1799 | - $fix_button_txt = "<input type='button' value='" . __('Fix', 'geodirectory') . "' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='default_pages' />"; |
|
1799 | + $fix_button_txt = "<input type='button' value='".__('Fix', 'geodirectory')."' class='button-primary geodir_fix_diagnostic_issue' data-diagnostic-issue='default_pages' />"; |
|
1800 | 1800 | } else { |
1801 | 1801 | $info_div_class = "geodir_noproblem_info"; |
1802 | 1802 | $fix_button_txt = ''; |
@@ -1824,10 +1824,10 @@ discard block |
||
1824 | 1824 | $fix_button_txt = ''; |
1825 | 1825 | |
1826 | 1826 | if ($is_error_during_diagnose) { |
1827 | - $output_str .= "<li>" . __('Fail to load custom fields in to file for translation, please check file permission:', 'geodirectory') . ' ' . geodir_plugin_path() . '/db-language.php' . "</li>"; |
|
1827 | + $output_str .= "<li>".__('Fail to load custom fields in to file for translation, please check file permission:', 'geodirectory').' '.geodir_plugin_path().'/db-language.php'."</li>"; |
|
1828 | 1828 | $info_div_class = "geodir_problem_info"; |
1829 | 1829 | } else { |
1830 | - $output_str .= "<li>" . __('Load custom fields in to file for translation: ok', 'geodirectory') . "</li>"; |
|
1830 | + $output_str .= "<li>".__('Load custom fields in to file for translation: ok', 'geodirectory')."</li>"; |
|
1831 | 1831 | $info_div_class = "geodir_noproblem_info"; |
1832 | 1832 | $fix_button_txt = ''; |
1833 | 1833 | } |
@@ -1869,17 +1869,17 @@ discard block |
||
1869 | 1869 | global $wpdb, $wp_query, $plugin_prefix; |
1870 | 1870 | |
1871 | 1871 | if (is_admin() && !empty($wp_query->query_vars) && !empty($wp_query->query_vars['is_geodir_loop']) && !empty($wp_query->query_vars['orderby']) && $wp_query->query_vars['orderby'] == 'expire' && !empty($wp_query->query_vars['post_type']) && in_array($wp_query->query_vars['post_type'], geodir_get_posttypes()) && !empty($wp_query->query_vars['orderby']) && isset($clauses['join']) && isset($clauses['orderby']) && isset($clauses['fields'])) { |
1872 | - $table = $plugin_prefix . $wp_query->query_vars['post_type'] . '_detail'; |
|
1872 | + $table = $plugin_prefix.$wp_query->query_vars['post_type'].'_detail'; |
|
1873 | 1873 | |
1874 | - $join = $clauses['join'] . ' INNER JOIN ' . $table . ' AS gd_posts ON (gd_posts.post_id = ' . $wpdb->posts . '.ID)'; |
|
1874 | + $join = $clauses['join'].' INNER JOIN '.$table.' AS gd_posts ON (gd_posts.post_id = '.$wpdb->posts.'.ID)'; |
|
1875 | 1875 | $clauses['join'] = $join; |
1876 | 1876 | |
1877 | - $fields = $clauses['fields'] != '' ? $clauses['fields'] . ', ' : ''; |
|
1877 | + $fields = $clauses['fields'] != '' ? $clauses['fields'].', ' : ''; |
|
1878 | 1878 | $fields .= 'IF(UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), UNIX_TIMESTAMP(DATE_FORMAT(gd_posts.expire_date, "%Y-%m-%d")), 253402300799) AS gd_expire'; |
1879 | 1879 | $clauses['fields'] = $fields; |
1880 | 1880 | |
1881 | 1881 | $order = !empty($wp_query->query_vars['order']) ? $wp_query->query_vars['order'] : 'ASC'; |
1882 | - $orderby = 'gd_expire ' . $order; |
|
1882 | + $orderby = 'gd_expire '.$order; |
|
1883 | 1883 | $clauses['orderby'] = $orderby; |
1884 | 1884 | } |
1885 | 1885 | return $clauses; |
@@ -1922,7 +1922,7 @@ discard block |
||
1922 | 1922 | global $current_user; |
1923 | 1923 | $upload_dir = wp_upload_dir(); |
1924 | 1924 | |
1925 | - $file = $upload_dir['path'] . '/temp_' . $current_user->data->ID . '/geodir_tmp.csv'; |
|
1925 | + $file = $upload_dir['path'].'/temp_'.$current_user->data->ID.'/geodir_tmp.csv'; |
|
1926 | 1926 | $handle = fopen($file, 'w'); |
1927 | 1927 | |
1928 | 1928 | fwrite($handle, $input); |
@@ -1967,7 +1967,7 @@ discard block |
||
1967 | 1967 | $uploads_dir = $uploads['path']; |
1968 | 1968 | $image_name_arr = explode('/', $filename); |
1969 | 1969 | $filename = end($image_name_arr); |
1970 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1970 | + $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1971 | 1971 | $return = array(); |
1972 | 1972 | $return['file'] = $uploadedFile; |
1973 | 1973 | $return['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory'); |
@@ -1984,8 +1984,8 @@ discard block |
||
1984 | 1984 | |
1985 | 1985 | if (($handle = fopen($target_path, "r")) !== FALSE) { |
1986 | 1986 | while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { |
1987 | - if(is_array($data) && !empty($data)) { |
|
1988 | - $file[] = '"' . implode('","', $data) . '"'; |
|
1987 | + if (is_array($data) && !empty($data)) { |
|
1988 | + $file[] = '"'.implode('","', $data).'"'; |
|
1989 | 1989 | } |
1990 | 1990 | } |
1991 | 1991 | fclose($handle); |
@@ -2102,10 +2102,10 @@ discard block |
||
2102 | 2102 | $tag_arr = explode(',', $post_tags); |
2103 | 2103 | } |
2104 | 2104 | |
2105 | - $table = $plugin_prefix . $buffer[5] . '_detail'; // check table in database |
|
2105 | + $table = $plugin_prefix.$buffer[5].'_detail'; // check table in database |
|
2106 | 2106 | |
2107 | 2107 | $error = ''; |
2108 | - if ($wpdb->get_var("SHOW TABLES LIKE '" . $table . "'") != $table) { |
|
2108 | + if ($wpdb->get_var("SHOW TABLES LIKE '".$table."'") != $table) { |
|
2109 | 2109 | $invalid_post_type++; |
2110 | 2110 | continue; |
2111 | 2111 | } |
@@ -2131,7 +2131,7 @@ discard block |
||
2131 | 2131 | if ($buffer[$c] != '0' && $buffer[$c] != '') { |
2132 | 2132 | $submitdata = date('Y-m-d'); |
2133 | 2133 | |
2134 | - $gd_post_info['expire_date'] = date('Y-m-d', strtotime($submitdata . "+" . addslashes($buffer[$c]) . " days")); |
|
2134 | + $gd_post_info['expire_date'] = date('Y-m-d', strtotime($submitdata."+".addslashes($buffer[$c])." days")); |
|
2135 | 2135 | } else { |
2136 | 2136 | $gd_post_info['expire_date'] = 'Never'; |
2137 | 2137 | } |
@@ -2159,7 +2159,7 @@ discard block |
||
2159 | 2159 | |
2160 | 2160 | // Post status |
2161 | 2161 | if ($customKeyarray[$c] == 'post_status') { |
2162 | - $post_status = sanitize_key( $buffer[$c] ); |
|
2162 | + $post_status = sanitize_key($buffer[$c]); |
|
2163 | 2163 | } |
2164 | 2164 | } |
2165 | 2165 | |
@@ -2177,8 +2177,8 @@ discard block |
||
2177 | 2177 | |
2178 | 2178 | // Default post status |
2179 | 2179 | $default_status = 'publish'; |
2180 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
2181 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
2180 | + $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status; |
|
2181 | + $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status; |
|
2182 | 2182 | |
2183 | 2183 | $my_post['post_title'] = $post_title; |
2184 | 2184 | $my_post['post_content'] = $post_desc; |
@@ -2222,7 +2222,7 @@ discard block |
||
2222 | 2222 | $payment_info = array(); |
2223 | 2223 | $package_info = array(); |
2224 | 2224 | |
2225 | - $package_info = (array)geodir_post_package_info($package_info, '', $buffer[5]); |
|
2225 | + $package_info = (array) geodir_post_package_info($package_info, '', $buffer[5]); |
|
2226 | 2226 | $package_id = ''; |
2227 | 2227 | if (isset($gd_post_info['package_id']) && $gd_post_info['package_id'] != '') { |
2228 | 2228 | $package_id = $gd_post_info['package_id']; |
@@ -2232,7 +2232,7 @@ discard block |
||
2232 | 2232 | $payment_info['package_id'] = $package_info['pid']; |
2233 | 2233 | |
2234 | 2234 | if (isset($package_info['alive_days']) && $package_info['alive_days'] != 0) { |
2235 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['alive_days'] . " days")); |
|
2235 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['alive_days']." days")); |
|
2236 | 2236 | } else { |
2237 | 2237 | $payment_info['expire_date'] = 'Never'; |
2238 | 2238 | } |
@@ -2244,7 +2244,7 @@ discard block |
||
2244 | 2244 | |
2245 | 2245 | $post_type = get_post_type($last_postid); |
2246 | 2246 | |
2247 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2247 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2248 | 2248 | |
2249 | 2249 | geodir_save_post_info($last_postid, $gd_post_info); |
2250 | 2250 | |
@@ -2265,7 +2265,7 @@ discard block |
||
2265 | 2265 | $attachment['post_id'] = $last_postid; |
2266 | 2266 | $attachment['title'] = $img_name_arr[0]; |
2267 | 2267 | $attachment['content'] = ''; |
2268 | - $attachment['file'] = $sub_dir . '/' . $image_name; |
|
2268 | + $attachment['file'] = $sub_dir.'/'.$image_name; |
|
2269 | 2269 | $attachment['mime_type'] = $uploaded_file_type; |
2270 | 2270 | $attachment['menu_order'] = $menu_order; |
2271 | 2271 | $attachment['is_featured'] = 0; |
@@ -2274,15 +2274,15 @@ discard block |
||
2274 | 2274 | |
2275 | 2275 | foreach ($attachment as $key => $val) { |
2276 | 2276 | if ($val != '') |
2277 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
2277 | + $attachment_set .= $key." = '".$val."', "; |
|
2278 | 2278 | } |
2279 | 2279 | $attachment_set = trim($attachment_set, ", "); |
2280 | 2280 | |
2281 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
2281 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set); |
|
2282 | 2282 | |
2283 | 2283 | if ($menu_order == 1) { |
2284 | 2284 | $post_type = get_post_type($last_postid); |
2285 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($sub_dir . '/' . $image_name, $last_postid))); |
|
2285 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($sub_dir.'/'.$image_name, $last_postid))); |
|
2286 | 2286 | } |
2287 | 2287 | $menu_order++; |
2288 | 2288 | } |
@@ -2323,11 +2323,11 @@ discard block |
||
2323 | 2323 | } |
2324 | 2324 | |
2325 | 2325 | // Add the tab in left sidebar menu fro import & export page. |
2326 | -add_filter( 'geodir_settings_tabs_array', 'geodir_import_export_tab', 94 ); |
|
2326 | +add_filter('geodir_settings_tabs_array', 'geodir_import_export_tab', 94); |
|
2327 | 2327 | |
2328 | 2328 | // Handle ajax request for import/export. |
2329 | -add_action( 'wp_ajax_geodir_import_export', 'geodir_ajax_import_export' ); |
|
2330 | -add_action( 'wp_ajax_nopriv_geodir_import_exportn', 'geodir_ajax_import_export' ); |
|
2329 | +add_action('wp_ajax_geodir_import_export', 'geodir_ajax_import_export'); |
|
2330 | +add_action('wp_ajax_nopriv_geodir_import_exportn', 'geodir_ajax_import_export'); |
|
2331 | 2331 | |
2332 | 2332 | |
2333 | 2333 | /** |
@@ -2338,40 +2338,40 @@ discard block |
||
2338 | 2338 | * @param $post_id int $post_id The post ID of the post being saved. |
2339 | 2339 | * @param $post object $post The post object of the post being saved. |
2340 | 2340 | */ |
2341 | -function geodir_update_location_prefix($post_id,$post){ |
|
2342 | - if($post->post_type=='page' && $post->post_name && $post_id==get_option('geodir_location_page')){ |
|
2343 | - update_option('geodir_location_prefix',$post->post_name); |
|
2341 | +function geodir_update_location_prefix($post_id, $post) { |
|
2342 | + if ($post->post_type == 'page' && $post->post_name && $post_id == get_option('geodir_location_page')) { |
|
2343 | + update_option('geodir_location_prefix', $post->post_name); |
|
2344 | 2344 | } |
2345 | 2345 | |
2346 | 2346 | } |
2347 | 2347 | |
2348 | -add_action('save_post', 'geodir_update_location_prefix',10,2); |
|
2348 | +add_action('save_post', 'geodir_update_location_prefix', 10, 2); |
|
2349 | 2349 | |
2350 | -add_action( 'wp_ajax_geodir_ga_callback', 'geodir_ga_callback' ); |
|
2350 | +add_action('wp_ajax_geodir_ga_callback', 'geodir_ga_callback'); |
|
2351 | 2351 | |
2352 | -function geodir_ga_callback(){ |
|
2352 | +function geodir_ga_callback() { |
|
2353 | 2353 | |
2354 | -if(isset($_REQUEST['code']) && $_REQUEST['code']) { |
|
2354 | +if (isset($_REQUEST['code']) && $_REQUEST['code']) { |
|
2355 | 2355 | $oAuthURL = "https://www.googleapis.com/oauth2/v3/token?"; |
2356 | 2356 | $code = "code=".$_REQUEST['code']; |
2357 | 2357 | $grant_type = "&grant_type=authorization_code"; |
2358 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback"; |
|
2358 | + $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback"; |
|
2359 | 2359 | $client_id = "&client_id=".get_option('geodir_ga_client_id'); |
2360 | 2360 | $client_secret = "&client_secret=".get_option('geodir_ga_client_secret'); |
2361 | 2361 | |
2362 | - $auth_url = $oAuthURL . $code . $redirect_uri . $grant_type . $client_id .$client_secret; |
|
2362 | + $auth_url = $oAuthURL.$code.$redirect_uri.$grant_type.$client_id.$client_secret; |
|
2363 | 2363 | |
2364 | 2364 | $response = wp_remote_post($auth_url, array('timeout' => 15)); |
2365 | 2365 | |
2366 | 2366 | //print_r($response); |
2367 | 2367 | |
2368 | - $error_msg = __('Something went wrong','geodirectory'); |
|
2369 | - if(!empty($response['response']['code']) && $response['response']['code']==200){ |
|
2368 | + $error_msg = __('Something went wrong', 'geodirectory'); |
|
2369 | + if (!empty($response['response']['code']) && $response['response']['code'] == 200) { |
|
2370 | 2370 | |
2371 | 2371 | $parts = json_decode($response['body']); |
2372 | 2372 | //print_r($parts); |
2373 | - if(!isset($parts->access_token)){echo $error_msg." - #1";exit;} |
|
2374 | - else{ |
|
2373 | + if (!isset($parts->access_token)) {echo $error_msg." - #1"; exit; } |
|
2374 | + else { |
|
2375 | 2375 | |
2376 | 2376 | update_option('gd_ga_access_token', $parts->access_token); |
2377 | 2377 | update_option('gd_ga_refresh_token', $parts->refresh_token); |
@@ -2380,18 +2380,18 @@ discard block |
||
2380 | 2380 | |
2381 | 2381 | |
2382 | 2382 | } |
2383 | - elseif(!empty($response['response']['code'])) { |
|
2383 | + elseif (!empty($response['response']['code'])) { |
|
2384 | 2384 | $parts = json_decode($response['body']); |
2385 | 2385 | |
2386 | - if(isset($parts->error)){ |
|
2387 | - echo $parts->error.": ".$parts->error_description;exit; |
|
2388 | - }else{ |
|
2389 | - echo $error_msg." - #2";exit; |
|
2386 | + if (isset($parts->error)) { |
|
2387 | + echo $parts->error.": ".$parts->error_description; exit; |
|
2388 | + } else { |
|
2389 | + echo $error_msg." - #2"; exit; |
|
2390 | 2390 | } |
2391 | 2391 | |
2392 | - }else{ |
|
2392 | + } else { |
|
2393 | 2393 | |
2394 | - echo $error_msg." - #3";exit; |
|
2394 | + echo $error_msg." - #3"; exit; |
|
2395 | 2395 | |
2396 | 2396 | } |
2397 | 2397 | } |
@@ -2413,7 +2413,7 @@ discard block |
||
2413 | 2413 | function geodir_uninstall_settings($general_settings) { |
2414 | 2414 | $settings = array(); |
2415 | 2415 | $settings[] = array('type' => 'title', 'id' => 'uninstall_settings', 'name' => __('Uninstall Settings', 'geodirectory')); |
2416 | - $settings[] = array('type' => 'sectionstart', 'id' => 'uninstall_settings_main', 'name' => __('Remove Data on Uninstall?', 'geodirectory' )); |
|
2416 | + $settings[] = array('type' => 'sectionstart', 'id' => 'uninstall_settings_main', 'name' => __('Remove Data on Uninstall?', 'geodirectory')); |
|
2417 | 2417 | |
2418 | 2418 | $plugins = get_plugins(); |
2419 | 2419 | $un_plugins = apply_filters('geodir_plugins_uninstall_settings', array()); |
@@ -2425,7 +2425,7 @@ discard block |
||
2425 | 2425 | if (in_array($plugin_name, $un_plugins)) { |
2426 | 2426 | $settings[] = array( |
2427 | 2427 | 'type' => 'checkbox', |
2428 | - 'id' => 'geodir_un_' . $plugin_name, |
|
2428 | + 'id' => 'geodir_un_'.$plugin_name, |
|
2429 | 2429 | 'name' => $data['Name'], |
2430 | 2430 | 'desc' => __('Remove all data when deleted?', 'geodirectory'), |
2431 | 2431 | 'std' => '0' |
@@ -2459,7 +2459,7 @@ discard block |
||
2459 | 2459 | * @since 1.6.9 |
2460 | 2460 | */ |
2461 | 2461 | function geodir_uninstall_settings_desc() { |
2462 | - echo '<p class="gd-un-settings-desc">' . __('Select the plugins that you would like to completely remove all of its data when the plugin is deleted.', 'geodirectory') . '</p>'; |
|
2462 | + echo '<p class="gd-un-settings-desc">'.__('Select the plugins that you would like to completely remove all of its data when the plugin is deleted.', 'geodirectory').'</p>'; |
|
2463 | 2463 | } |
2464 | 2464 | add_action('geodir_settings_uninstall_settings_main_start', 'geodir_uninstall_settings_desc'); |
2465 | 2465 | |
@@ -2523,12 +2523,12 @@ discard block |
||
2523 | 2523 | |
2524 | 2524 | |
2525 | 2525 | if ($delete) { |
2526 | - $output_str .= "<li><strong>" . __('Table dropped, refresh page to reinstall.', 'geodirectory') . "</strong></li>"; |
|
2526 | + $output_str .= "<li><strong>".__('Table dropped, refresh page to reinstall.', 'geodirectory')."</strong></li>"; |
|
2527 | 2527 | ob_start(); |
2528 | 2528 | geodir_diagnose_version_clear(); |
2529 | 2529 | ob_end_clean(); |
2530 | - }else{ |
|
2531 | - $output_str .= "<li><strong>" . __('Seomething went wrong.', 'geodirectory') . "</strong></li>"; |
|
2530 | + } else { |
|
2531 | + $output_str .= "<li><strong>".__('Seomething went wrong.', 'geodirectory')."</strong></li>"; |
|
2532 | 2532 | } |
2533 | 2533 | |
2534 | 2534 | if ($is_error_during_diagnose) { |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @param array $tabs The array of tabs to display. |
53 | 53 | */ |
54 | 54 | $tabs = apply_filters('geodir_settings_tabs_array', $tabs); |
55 | - update_option('geodir_tabs', $tabs);// Important to show settings menu dropdown |
|
55 | + update_option('geodir_tabs', $tabs); // Important to show settings menu dropdown |
|
56 | 56 | |
57 | 57 | foreach ($tabs as $name => $args) : |
58 | 58 | $label = $args['label']; |
@@ -63,12 +63,12 @@ discard block |
||
63 | 63 | |
64 | 64 | $subtabs = $args['subtabs']; |
65 | 65 | |
66 | - $query_string = '&subtab=' . $subtabs[0]['subtab']; |
|
66 | + $query_string = '&subtab='.$subtabs[0]['subtab']; |
|
67 | 67 | |
68 | 68 | endif; |
69 | 69 | |
70 | 70 | |
71 | - $tab_link = admin_url('admin.php?page=geodirectory&tab=' . $name . $query_string); |
|
71 | + $tab_link = admin_url('admin.php?page=geodirectory&tab='.$name.$query_string); |
|
72 | 72 | |
73 | 73 | if (isset($args['url']) && $args['url'] != '') { |
74 | 74 | $tab_link = $args['url']; |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $tab_link = geodir_getlink($tab_link, $args['request']); |
79 | 79 | |
80 | 80 | if (isset($args['target']) && $args['target'] != '') { |
81 | - $tab_target = " target='" . sanitize_text_field($args['target']) . "' "; |
|
81 | + $tab_target = " target='".sanitize_text_field($args['target'])."' "; |
|
82 | 82 | } else |
83 | 83 | $tab_target = ''; |
84 | 84 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @see 'geodir_after_settings_tabs' |
94 | 94 | */ |
95 | 95 | do_action('geodir_before_settings_tabs', $name); |
96 | - echo '<li ' . $tab_active . ' ><a href="' . esc_url($tab_link) . '" ' . $tab_target . ' >' . $label . '</a></li>'; |
|
96 | + echo '<li '.$tab_active.' ><a href="'.esc_url($tab_link).'" '.$tab_target.' >'.$label.'</a></li>'; |
|
97 | 97 | /** |
98 | 98 | * Called after the individual settings tabs are output. |
99 | 99 | * |
@@ -137,11 +137,11 @@ discard block |
||
137 | 137 | $form_action = isset($sub['form_action']) ? $sub['form_action'] : ''; |
138 | 138 | } |
139 | 139 | |
140 | - $sub_tabs_link = admin_url() . 'admin.php?page=geodirectory&tab=' . $current_tab . '&subtab=' . $sub['subtab']; |
|
140 | + $sub_tabs_link = admin_url().'admin.php?page=geodirectory&tab='.$current_tab.'&subtab='.$sub['subtab']; |
|
141 | 141 | if (isset($sub['request']) && is_array($sub['request']) && !empty($sub['request'])) { |
142 | 142 | $sub_tabs_link = geodir_getlink($sub_tabs_link, $sub['request']); |
143 | 143 | } |
144 | - echo '<dd ' . $subtab_active . ' id="claim_listing"><a href="' . esc_url($sub_tabs_link) . '" >' . sanitize_text_field($sub['label']) . '</a></dd>'; |
|
144 | + echo '<dd '.$subtab_active.' id="claim_listing"><a href="'.esc_url($sub_tabs_link).'" >'.sanitize_text_field($sub['label']).'</a></dd>'; |
|
145 | 145 | } |
146 | 146 | ?> |
147 | 147 | </dl> |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | echo "inner_contet_tabs"; |
152 | 152 | } ?>"> |
153 | 153 | <form method="post" id="mainform" |
154 | - class="geodir_optionform <?php echo $current_tab . ' '; ?><?php if (isset($sub['subtab'])) { |
|
154 | + class="geodir_optionform <?php echo $current_tab.' '; ?><?php if (isset($sub['subtab'])) { |
|
155 | 155 | echo sanitize_text_field($sub['subtab']); |
156 | 156 | } ?>" action="<?php echo $form_action; ?>" enctype="multipart/form-data"> |
157 | 157 | <input type="hidden" class="active_tab" name="active_tab" |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | echo sanitize_text_field($_REQUEST['active_tab']); |
160 | 160 | } ?>"/> |
161 | 161 | <?php wp_nonce_field('geodir-settings', '_wpnonce', true, true); ?> |
162 | - <?php wp_nonce_field('geodir-settings-' . $current_tab, '_wpnonce-' . $current_tab, true, true); ?> |
|
162 | + <?php wp_nonce_field('geodir-settings-'.$current_tab, '_wpnonce-'.$current_tab, true, true); ?> |
|
163 | 163 | <?php |
164 | 164 | /** |
165 | 165 | * Used to call the content of each GD settings tab page. |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | jQuery('#last_tab').val( jQuery(this).attr('href') ); |
190 | 190 | return false;*/ |
191 | 191 | }); |
192 | - <?php if (isset($_GET['subtab']) && $_GET['subtab']) echo 'jQuery(\'ul.subsubsub li a[href="#' . sanitize_text_field($_GET['subtab']) . '"]\').click();'; ?> |
|
192 | + <?php if (isset($_GET['subtab']) && $_GET['subtab']) echo 'jQuery(\'ul.subsubsub li a[href="#'.sanitize_text_field($_GET['subtab']).'"]\').click();'; ?> |
|
193 | 193 | // Countries |
194 | 194 | jQuery('select#geodirectory_allowed_countries').change(function () { |
195 | 195 | if (jQuery(this).val() == "specific") { |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | jQuery('.geodirectory-nav-tab-wrapper a').click(function () { |
223 | 223 | if (changed) { |
224 | 224 | window.onbeforeunload = function () { |
225 | - return '<?php echo __( 'The changes you made will be lost if you navigate away from this page.', 'geodirectory'); ?>'; |
|
225 | + return '<?php echo __('The changes you made will be lost if you navigate away from this page.', 'geodirectory'); ?>'; |
|
226 | 226 | } |
227 | 227 | } else { |
228 | 228 | window.onbeforeunload = ''; |
@@ -285,14 +285,14 @@ discard block |
||
285 | 285 | |
286 | 286 | //echo $tab_name.'_array.php' ; |
287 | 287 | global $geodir_settings, $is_default, $mapzoom; |
288 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $tab_name . '_array.php')) { |
|
288 | + if (file_exists(dirname(__FILE__).'/option-pages/'.$tab_name.'_array.php')) { |
|
289 | 289 | /** |
290 | 290 | * Contains settings array for given tab. |
291 | 291 | * |
292 | 292 | * @since 1.0.0 |
293 | 293 | * @package GeoDirectory |
294 | 294 | */ |
295 | - include_once('option-pages/' . $tab_name . '_array.php'); |
|
295 | + include_once('option-pages/'.$tab_name.'_array.php'); |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | $listing_type = isset($_REQUEST['listing_type']) ? $_REQUEST['listing_type'] : ''; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | ?> |
328 | 328 | |
329 | 329 | <p class="submit"> |
330 | - <input <?php echo $hide_save_button;?> name="save" class="button-primary" type="submit" value="<?php _e('Save changes', 'geodirectory'); ?>" /> |
|
330 | + <input <?php echo $hide_save_button; ?> name="save" class="button-primary" type="submit" value="<?php _e('Save changes', 'geodirectory'); ?>" /> |
|
331 | 331 | <input type="hidden" name="subtab" id="last_tab" /> |
332 | 332 | </p> |
333 | 333 | |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | |
399 | 399 | ?> |
400 | 400 | |
401 | - <h3><?php _e('Set Default Location', 'geodirectory');?></h3> |
|
401 | + <h3><?php _e('Set Default Location', 'geodirectory'); ?></h3> |
|
402 | 402 | |
403 | 403 | <input type="hidden" name="add_location" value="location"> |
404 | 404 | |
@@ -406,16 +406,16 @@ discard block |
||
406 | 406 | echo $location_result->location_id; |
407 | 407 | } ?>"> |
408 | 408 | |
409 | - <input type="hidden" name="address" id="<?php echo $prefix;?>address" value=""> |
|
409 | + <input type="hidden" name="address" id="<?php echo $prefix; ?>address" value=""> |
|
410 | 410 | |
411 | 411 | <table class="form-table default_location_form"> |
412 | 412 | <tbody> |
413 | 413 | <tr valign="top" class="single_select_page"> |
414 | - <th class="titledesc" scope="row"><?php _e('City', 'geodirectory');?></th> |
|
414 | + <th class="titledesc" scope="row"><?php _e('City', 'geodirectory'); ?></th> |
|
415 | 415 | <td class="forminp"> |
416 | 416 | <div class="gtd-formfeild required"> |
417 | 417 | <input class="require" type="text" size="80" style="width:440px" |
418 | - id="<?php echo $prefix;?>city" name="city" |
|
418 | + id="<?php echo $prefix; ?>city" name="city" |
|
419 | 419 | value="<?php if (isset($location_result->city)) { |
420 | 420 | echo $location_result->city; |
421 | 421 | } ?>"/> |
@@ -427,11 +427,11 @@ discard block |
||
427 | 427 | </td> |
428 | 428 | </tr> |
429 | 429 | <tr valign="top" class="single_select_page"> |
430 | - <th class="titledesc" scope="row"><?php _e('Region', 'geodirectory');?></th> |
|
430 | + <th class="titledesc" scope="row"><?php _e('Region', 'geodirectory'); ?></th> |
|
431 | 431 | <td class="forminp"> |
432 | 432 | <div class="gtd-formfeild required"> |
433 | 433 | <input class="require" type="text" size="80" style="width:440px" |
434 | - id="<?php echo $prefix;?>region" name="region" |
|
434 | + id="<?php echo $prefix; ?>region" name="region" |
|
435 | 435 | value="<?php if (isset($location_result->region)) { |
436 | 436 | echo $location_result->region; |
437 | 437 | } ?>"/> |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | </td> |
444 | 444 | </tr> |
445 | 445 | <tr valign="top" class="single_select_page"> |
446 | - <th class="titledesc" scope="row"><?php _e('Country', 'geodirectory');?></th> |
|
446 | + <th class="titledesc" scope="row"><?php _e('Country', 'geodirectory'); ?></th> |
|
447 | 447 | <td class="forminp"> |
448 | 448 | <div class="gtd-formfeild required" style="padding-top:10px;"> |
449 | 449 | <?php |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | ?> |
453 | 453 | <select id="<?php echo $prefix ?>country" class="chosen_select" |
454 | 454 | data-location_type="country" name="<?php echo $prefix ?>country" |
455 | - data-placeholder="<?php _e('Choose a country.', 'geodirectory');?>" |
|
455 | + data-placeholder="<?php _e('Choose a country.', 'geodirectory'); ?>" |
|
456 | 456 | data-addsearchtermonnorecord="1" data-ajaxchosen="0" data-autoredirect="0" |
457 | 457 | data-showeverywhere="0"> |
458 | 458 | <?php geodir_get_country_dl($country, $prefix); ?> |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | </tr> |
470 | 470 | <tr valign="top" class="single_select_page gd-add-location-map"> |
471 | 471 | <th class="titledesc" |
472 | - scope="row"><?php _e('Set Location on Map', 'geodirectory');?></th> |
|
472 | + scope="row"><?php _e('Set Location on Map', 'geodirectory'); ?></th> |
|
473 | 473 | <td class="forminp"> |
474 | 474 | <?php |
475 | 475 | /** |
@@ -477,15 +477,15 @@ discard block |
||
477 | 477 | * |
478 | 478 | * @since 1.0.0 |
479 | 479 | */ |
480 | - include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");?> |
|
480 | + include(geodir_plugin_path()."/geodirectory-functions/map-functions/map_on_add_listing_page.php"); ?> |
|
481 | 481 | </td> |
482 | 482 | </tr> |
483 | 483 | <tr valign="top" class="single_select_page"> |
484 | - <th class="titledesc" scope="row"><?php _e('City Latitude', 'geodirectory');?></th> |
|
484 | + <th class="titledesc" scope="row"><?php _e('City Latitude', 'geodirectory'); ?></th> |
|
485 | 485 | <td class="forminp"> |
486 | 486 | <div class="gtd-formfeild required" style="padding-top:10px;"> |
487 | 487 | <input type="text" class="require" size="80" style="width:440px" |
488 | - id="<?php echo $prefix;?>latitude" name="latitude" |
|
488 | + id="<?php echo $prefix; ?>latitude" name="latitude" |
|
489 | 489 | value="<?php if (isset($location_result->city_latitude)) { |
490 | 490 | echo $location_result->city_latitude; |
491 | 491 | } ?>"/> |
@@ -498,11 +498,11 @@ discard block |
||
498 | 498 | </tr> |
499 | 499 | <tr valign="top" class="single_select_page"> |
500 | 500 | <th class="titledesc" |
501 | - scope="row"><?php _e('City Longitude', 'geodirectory');?></th> |
|
501 | + scope="row"><?php _e('City Longitude', 'geodirectory'); ?></th> |
|
502 | 502 | <td class="forminp"> |
503 | 503 | <div class="gtd-formfeild required" style="padding-top:10px;"> |
504 | 504 | <input type="text" class="require" size="80" style="width:440px" |
505 | - id="<?php echo $prefix;?>longitude" name="longitude" |
|
505 | + id="<?php echo $prefix; ?>longitude" name="longitude" |
|
506 | 506 | value="<?php if (isset($location_result->city_longitude)) { |
507 | 507 | echo $location_result->city_longitude; |
508 | 508 | } ?>"/> |
@@ -537,7 +537,7 @@ discard block |
||
537 | 537 | </div> |
538 | 538 | </div> |
539 | 539 | <?php break; |
540 | - case $listing_type . '_fields_settings' : |
|
540 | + case $listing_type.'_fields_settings' : |
|
541 | 541 | |
542 | 542 | geodir_custom_post_type_form(); |
543 | 543 | |
@@ -684,12 +684,12 @@ discard block |
||
684 | 684 | $theme_name = str_replace(" ", "_", $theme->get('Name')); |
685 | 685 | } |
686 | 686 | |
687 | - if (in_array($theme_name, array('Avada', 'Enfold', 'X', 'Divi', 'Genesis', 'Jupiter', 'Multi_News','Kleo','Twenty_Seventeen'))) {// list of themes that have php files |
|
687 | + if (in_array($theme_name, array('Avada', 'Enfold', 'X', 'Divi', 'Genesis', 'Jupiter', 'Multi_News', 'Kleo', 'Twenty_Seventeen'))) {// list of themes that have php files |
|
688 | 688 | $theme_settings['geodir_theme_compat_code'] = $theme_name; |
689 | 689 | } |
690 | 690 | |
691 | 691 | |
692 | - $theme_name = $theme_name . "_custom"; |
|
692 | + $theme_name = $theme_name."_custom"; |
|
693 | 693 | $theme_arr = get_option('gd_theme_compats'); |
694 | 694 | update_option('gd_theme_compat', $theme_name); |
695 | 695 | /** |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | <div class="gd-content-heading"> |
779 | 779 | |
780 | 780 | |
781 | - <h3><?php _e('Theme Compatibility Settings', 'geodirectory');?></h3> |
|
781 | + <h3><?php _e('Theme Compatibility Settings', 'geodirectory'); ?></h3> |
|
782 | 782 | <style> |
783 | 783 | .gd-theme-compat-table { |
784 | 784 | width: 100%; |
@@ -809,11 +809,11 @@ discard block |
||
809 | 809 | </div> |
810 | 810 | <?php }?> |
811 | 811 | |
812 | - <h4><?php _e('Select Theme Compatibility Pack', 'geodirectory');?></h4> |
|
812 | + <h4><?php _e('Select Theme Compatibility Pack', 'geodirectory'); ?></h4> |
|
813 | 813 | |
814 | 814 | <select name="gd_theme_compat" id="gd_theme_compat"> |
815 | - <option value=""><?php _e('Select Theme', 'geodirectory');?></option> |
|
816 | - <option value="custom"><?php _e('Custom', 'geodirectory');?></option> |
|
815 | + <option value=""><?php _e('Select Theme', 'geodirectory'); ?></option> |
|
816 | + <option value="custom"><?php _e('Custom', 'geodirectory'); ?></option> |
|
817 | 817 | <?php |
818 | 818 | $theme_arr = get_option('gd_theme_compats'); |
819 | 819 | $theme_active = get_option('gd_theme_compat'); |
@@ -832,20 +832,20 @@ discard block |
||
832 | 832 | ?> |
833 | 833 | </select> |
834 | 834 | <button onclick="gd_comp_export();" type="button" |
835 | - class="button-primary"><?php _e('Export', 'geodirectory');?></button> |
|
835 | + class="button-primary"><?php _e('Export', 'geodirectory'); ?></button> |
|
836 | 836 | <button onclick="gd_comp_import();" type="button" |
837 | - class="button-primary"><?php _e('Import', 'geodirectory');?></button> |
|
837 | + class="button-primary"><?php _e('Import', 'geodirectory'); ?></button> |
|
838 | 838 | |
839 | 839 | <div class="gd-comp-import-export"> |
840 | 840 | <textarea id="gd-import-export-theme-comp" |
841 | - placeholder="<?php _e('Paste the JSON code here and then click import again', 'geodirectory');?>"></textarea> |
|
841 | + placeholder="<?php _e('Paste the JSON code here and then click import again', 'geodirectory'); ?>"></textarea> |
|
842 | 842 | </div> |
843 | 843 | <script> |
844 | 844 | |
845 | 845 | function gd_comp_export() { |
846 | 846 | theme = jQuery('#gd_theme_compat').val(); |
847 | 847 | if (theme == '' || theme == 'custom') { |
848 | - alert("<?php _e('Please select a theme to export','geodirectory');?>"); |
|
848 | + alert("<?php _e('Please select a theme to export', 'geodirectory'); ?>"); |
|
849 | 849 | return false; |
850 | 850 | } |
851 | 851 | jQuery('.gd-comp-import-export').show(); |
@@ -879,9 +879,9 @@ discard block |
||
879 | 879 | |
880 | 880 | jQuery.post(ajaxurl, data, function (response) { |
881 | 881 | if (response == '0') { |
882 | - alert("<?php _e('Something went wrong','geodirectory');?>"); |
|
882 | + alert("<?php _e('Something went wrong', 'geodirectory'); ?>"); |
|
883 | 883 | } else { |
884 | - alert("<?php _e('Theme Compatibility Imported','geodirectory');?>"); |
|
884 | + alert("<?php _e('Theme Compatibility Imported', 'geodirectory'); ?>"); |
|
885 | 885 | jQuery('#gd-import-export-theme-comp').val(''); |
886 | 886 | jQuery('.gd-comp-import-export').hide(); |
887 | 887 | jQuery('#gd_theme_compat').append(new Option(response, response)); |
@@ -922,14 +922,14 @@ discard block |
||
922 | 922 | |
923 | 923 | </script> |
924 | 924 | |
925 | - <h4><?php _e('Main Wrapper Actions', 'geodirectory');?></h4> |
|
925 | + <h4><?php _e('Main Wrapper Actions', 'geodirectory'); ?></h4> |
|
926 | 926 | |
927 | 927 | <table class="form-table gd-theme-compat-table"> |
928 | 928 | <tbody> |
929 | 929 | <tr> |
930 | - <td><strong><?php _e('Hook', 'geodirectory');?></strong></td> |
|
931 | - <td><strong><?php _e('ID', 'geodirectory');?></strong></td> |
|
932 | - <td><strong><?php _e('Class', 'geodirectory');?></strong></td> |
|
930 | + <td><strong><?php _e('Hook', 'geodirectory'); ?></strong></td> |
|
931 | + <td><strong><?php _e('ID', 'geodirectory'); ?></strong></td> |
|
932 | + <td><strong><?php _e('Class', 'geodirectory'); ?></strong></td> |
|
933 | 933 | </tr> |
934 | 934 | |
935 | 935 | |
@@ -947,7 +947,7 @@ discard block |
||
947 | 947 | |
948 | 948 | <tr class="gd-theme-comp-out"> |
949 | 949 | <td colspan="3"> |
950 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
950 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
951 | 951 | <textarea name="geodir_wrapper_open_replace" |
952 | 952 | placeholder='<div id="[id]" class="[class]">'><?php if (isset($tc['geodir_wrapper_open_replace'])) { |
953 | 953 | echo $tc['geodir_wrapper_open_replace']; |
@@ -961,14 +961,14 @@ discard block |
||
961 | 961 | <small>geodir_wrapper_close</small> |
962 | 962 | </td> |
963 | 963 | <td><input disabled="disabled" type="text" name="geodir_wrapper_open_id" |
964 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
964 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
965 | 965 | <td><input disabled="disabled" type="text" name="geodir_wrapper_open_class" |
966 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
966 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
967 | 967 | </tr> |
968 | 968 | |
969 | 969 | <tr class="gd-theme-comp-out"> |
970 | 970 | <td colspan="3"> |
971 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
971 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
972 | 972 | <textarea name="geodir_wrapper_close_replace" |
973 | 973 | placeholder='</div><!-- wrapper ends here-->'><?php if (isset($tc['geodir_wrapper_close_replace'])) { |
974 | 974 | echo $tc['geodir_wrapper_close_replace']; |
@@ -992,7 +992,7 @@ discard block |
||
992 | 992 | |
993 | 993 | <tr class="gd-theme-comp-out"> |
994 | 994 | <td colspan="3"> |
995 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
995 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
996 | 996 | <textarea name="geodir_wrapper_content_open_replace" |
997 | 997 | placeholder='<div id="[id]" class="[class]" role="main" [width_css]>'><?php if (isset($tc['geodir_wrapper_content_open_replace'])) { |
998 | 998 | echo $tc['geodir_wrapper_content_open_replace']; |
@@ -1006,14 +1006,14 @@ discard block |
||
1006 | 1006 | <small>geodir_wrapper_content_close</small> |
1007 | 1007 | </td> |
1008 | 1008 | <td><input disabled="disabled" type="text" name="geodir_wrapper_content_close_id" |
1009 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1009 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1010 | 1010 | <td><input disabled="disabled" type="text" name="geodir_wrapper_content_close_class" |
1011 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1011 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1012 | 1012 | </tr> |
1013 | 1013 | |
1014 | 1014 | <tr class="gd-theme-comp-out"> |
1015 | 1015 | <td colspan="3"> |
1016 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1016 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1017 | 1017 | <textarea name="geodir_wrapper_content_close_replace" |
1018 | 1018 | placeholder='</div><!-- content ends here-->'><?php if (isset($tc['geodir_wrapper_content_close_replace'])) { |
1019 | 1019 | echo $tc['geodir_wrapper_content_close_replace']; |
@@ -1035,7 +1035,7 @@ discard block |
||
1035 | 1035 | |
1036 | 1036 | <tr class="gd-theme-comp-out"> |
1037 | 1037 | <td colspan="3"> |
1038 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1038 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1039 | 1039 | <textarea name="geodir_article_open_replace" |
1040 | 1040 | placeholder='<article id="[id]" class="[class]" itemscope itemtype="[itemtype]">'><?php if (isset($tc['geodir_article_open_replace'])) { |
1041 | 1041 | echo $tc['geodir_article_open_replace']; |
@@ -1048,14 +1048,14 @@ discard block |
||
1048 | 1048 | <small>geodir_article_close</small> |
1049 | 1049 | </td> |
1050 | 1050 | <td><input disabled="disabled" type="text" name="geodir_article_close_id" |
1051 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1051 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1052 | 1052 | <td><input disabled="disabled" type="text" name="geodir_article_close_class" |
1053 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1053 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1054 | 1054 | </tr> |
1055 | 1055 | |
1056 | 1056 | <tr class="gd-theme-comp-out"> |
1057 | 1057 | <td colspan="3"> |
1058 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1058 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1059 | 1059 | <textarea name="geodir_article_close_replace" |
1060 | 1060 | placeholder='</article><!-- article ends here-->'><?php if (isset($tc['geodir_article_close_replace'])) { |
1061 | 1061 | echo $tc['geodir_article_close_replace']; |
@@ -1078,7 +1078,7 @@ discard block |
||
1078 | 1078 | |
1079 | 1079 | <tr class="gd-theme-comp-out"> |
1080 | 1080 | <td colspan="3"> |
1081 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1081 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1082 | 1082 | <textarea name="geodir_sidebar_right_open_replace" |
1083 | 1083 | placeholder='<aside id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>'><?php if (isset($tc['geodir_sidebar_right_open_replace'])) { |
1084 | 1084 | echo $tc['geodir_sidebar_right_open_replace']; |
@@ -1091,14 +1091,14 @@ discard block |
||
1091 | 1091 | <small>geodir_sidebar_right_close</small> |
1092 | 1092 | </td> |
1093 | 1093 | <td><input disabled="disabled" type="text" name="geodir_sidebar_right_close_id" |
1094 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1094 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1095 | 1095 | <td><input disabled="disabled" type="text" name="geodir_sidebar_right_close_class" |
1096 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1096 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1097 | 1097 | </tr> |
1098 | 1098 | |
1099 | 1099 | <tr class="gd-theme-comp-out"> |
1100 | 1100 | <td colspan="3"> |
1101 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1101 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1102 | 1102 | <textarea name="geodir_sidebar_right_close_replace" |
1103 | 1103 | placeholder='</aside><!-- sidebar ends here-->'><?php if (isset($tc['geodir_sidebar_right_close_replace'])) { |
1104 | 1104 | echo $tc['geodir_sidebar_right_close_replace']; |
@@ -1122,7 +1122,7 @@ discard block |
||
1122 | 1122 | |
1123 | 1123 | <tr class="gd-theme-comp-out"> |
1124 | 1124 | <td colspan="3"> |
1125 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1125 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1126 | 1126 | <textarea name="geodir_sidebar_left_open_replace" |
1127 | 1127 | placeholder='<aside id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>'><?php if (isset($tc['geodir_sidebar_left_open_replace'])) { |
1128 | 1128 | echo $tc['geodir_sidebar_left_open_replace']; |
@@ -1135,14 +1135,14 @@ discard block |
||
1135 | 1135 | <small>geodir_sidebar_left_close</small> |
1136 | 1136 | </td> |
1137 | 1137 | <td><input disabled="disabled" type="text" name="geodir_sidebar_left_close_id" |
1138 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1138 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1139 | 1139 | <td><input disabled="disabled" type="text" name="geodir_sidebar_left_close_class" |
1140 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1140 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1141 | 1141 | </tr> |
1142 | 1142 | |
1143 | 1143 | <tr class="gd-theme-comp-out"> |
1144 | 1144 | <td colspan="3"> |
1145 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1145 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1146 | 1146 | <textarea name="geodir_sidebar_left_close_replace" |
1147 | 1147 | placeholder='</aside><!-- sidebar ends here-->'><?php if (isset($tc['geodir_sidebar_left_close_replace'])) { |
1148 | 1148 | echo $tc['geodir_sidebar_left_close_replace']; |
@@ -1164,7 +1164,7 @@ discard block |
||
1164 | 1164 | |
1165 | 1165 | <tr class="gd-theme-comp-out"> |
1166 | 1166 | <td colspan="3"> |
1167 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1167 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1168 | 1168 | <textarea name="geodir_main_content_open_replace" |
1169 | 1169 | placeholder='<main id="[id]" class="[class]" role="main">'><?php if (isset($tc['geodir_main_content_open_replace'])) { |
1170 | 1170 | echo $tc['geodir_main_content_open_replace']; |
@@ -1177,14 +1177,14 @@ discard block |
||
1177 | 1177 | <small>geodir_main_content_close</small> |
1178 | 1178 | </td> |
1179 | 1179 | <td><input disabled="disabled" type="text" name="geodir_main_content_close_id" |
1180 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1180 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1181 | 1181 | <td><input disabled="disabled" type="text" name="geodir_main_content_close_class" |
1182 | - placeholder="<?php _e('Not used', 'geodirectory');?>"/></td> |
|
1182 | + placeholder="<?php _e('Not used', 'geodirectory'); ?>"/></td> |
|
1183 | 1183 | </tr> |
1184 | 1184 | |
1185 | 1185 | <tr class="gd-theme-comp-out"> |
1186 | 1186 | <td colspan="3"> |
1187 | - <span><?php _e('Output:', 'geodirectory');?></span> |
|
1187 | + <span><?php _e('Output:', 'geodirectory'); ?></span> |
|
1188 | 1188 | <textarea name="geodir_main_content_close_replace" |
1189 | 1189 | placeholder='</main><!-- main ends here-->'><?php if (isset($tc['geodir_main_content_close_replace'])) { |
1190 | 1190 | echo $tc['geodir_main_content_close_replace']; |
@@ -1196,13 +1196,13 @@ discard block |
||
1196 | 1196 | </tbody> |
1197 | 1197 | </table> |
1198 | 1198 | |
1199 | - <h4><?php _e('Other Actions', 'geodirectory');?></h4> |
|
1199 | + <h4><?php _e('Other Actions', 'geodirectory'); ?></h4> |
|
1200 | 1200 | |
1201 | 1201 | <table class="form-table gd-theme-compat-table"> |
1202 | 1202 | <tbody> |
1203 | 1203 | <tr> |
1204 | - <td><strong><?php _e('Hook', 'geodirectory');?></strong></td> |
|
1205 | - <td><strong><?php _e('Content', 'geodirectory');?></strong></td> |
|
1204 | + <td><strong><?php _e('Hook', 'geodirectory'); ?></strong></td> |
|
1205 | + <td><strong><?php _e('Content', 'geodirectory'); ?></strong></td> |
|
1206 | 1206 | </tr> |
1207 | 1207 | |
1208 | 1208 | |
@@ -1231,13 +1231,13 @@ discard block |
||
1231 | 1231 | </table> |
1232 | 1232 | |
1233 | 1233 | |
1234 | - <h4><?php _e('Other Filters', 'geodirectory');?></h4> |
|
1234 | + <h4><?php _e('Other Filters', 'geodirectory'); ?></h4> |
|
1235 | 1235 | |
1236 | 1236 | <table class="form-table gd-theme-compat-table"> |
1237 | 1237 | <tbody> |
1238 | 1238 | <tr> |
1239 | - <td><strong><?php _e('Filter', 'geodirectory');?></strong></td> |
|
1240 | - <td><strong><?php _e('Content', 'geodirectory');?></strong></td> |
|
1239 | + <td><strong><?php _e('Filter', 'geodirectory'); ?></strong></td> |
|
1240 | + <td><strong><?php _e('Content', 'geodirectory'); ?></strong></td> |
|
1241 | 1241 | </tr> |
1242 | 1242 | |
1243 | 1243 | <tr> |
@@ -1391,13 +1391,13 @@ discard block |
||
1391 | 1391 | * |
1392 | 1392 | * @since 1.4.0 |
1393 | 1393 | */ |
1394 | - do_action('gd_compat_other_filters');?> |
|
1394 | + do_action('gd_compat_other_filters'); ?> |
|
1395 | 1395 | |
1396 | 1396 | </tbody> |
1397 | 1397 | </table> |
1398 | 1398 | |
1399 | 1399 | |
1400 | - <h4><?php _e('Required CSS', 'geodirectory');?></h4> |
|
1400 | + <h4><?php _e('Required CSS', 'geodirectory'); ?></h4> |
|
1401 | 1401 | |
1402 | 1402 | <table class="form-table gd-theme-compat-table"> |
1403 | 1403 | <tbody> |
@@ -1412,7 +1412,7 @@ discard block |
||
1412 | 1412 | </tbody> |
1413 | 1413 | </table> |
1414 | 1414 | |
1415 | - <h4><?php _e('Required JS', 'geodirectory');?></h4> |
|
1415 | + <h4><?php _e('Required JS', 'geodirectory'); ?></h4> |
|
1416 | 1416 | |
1417 | 1417 | <table class="form-table gd-theme-compat-table"> |
1418 | 1418 | <tbody> |
@@ -1430,7 +1430,7 @@ discard block |
||
1430 | 1430 | |
1431 | 1431 | <p class="submit"> |
1432 | 1432 | <input name="save" class="button-primary" type="submit" |
1433 | - value="<?php _e('Save changes', 'geodirectory');?>"> |
|
1433 | + value="<?php _e('Save changes', 'geodirectory'); ?>"> |
|
1434 | 1434 | </p> |
1435 | 1435 | |
1436 | 1436 | </div> |
@@ -1464,7 +1464,7 @@ discard block |
||
1464 | 1464 | * @param string $listing_type Post type. |
1465 | 1465 | */ |
1466 | 1466 | ?> |
1467 | - <h3><?php echo apply_filters('geodir_custom_fields_panel_head', '', $sub_tab, $listing_type);?></h3> |
|
1467 | + <h3><?php echo apply_filters('geodir_custom_fields_panel_head', '', $sub_tab, $listing_type); ?></h3> |
|
1468 | 1468 | </div> |
1469 | 1469 | <div id="container_general" class="clearfix"> |
1470 | 1470 | <div class="general-form-builder-frame"> |
@@ -1479,7 +1479,7 @@ discard block |
||
1479 | 1479 | * @param string $listing_type Post type. |
1480 | 1480 | */ |
1481 | 1481 | ?> |
1482 | - <h3 class="hndle"><span><?php echo apply_filters('geodir_cf_panel_available_fields_head', '', $sub_tab, $listing_type);?> |
|
1482 | + <h3 class="hndle"><span><?php echo apply_filters('geodir_cf_panel_available_fields_head', '', $sub_tab, $listing_type); ?> |
|
1483 | 1483 | </span></h3> |
1484 | 1484 | <?php |
1485 | 1485 | /** |
@@ -1490,9 +1490,9 @@ discard block |
||
1490 | 1490 | * @param string $listing_type Post type. |
1491 | 1491 | */ |
1492 | 1492 | ?> |
1493 | - <p><?php echo apply_filters('geodir_cf_panel_available_fields_note', '', $sub_tab, $listing_type);?></p> |
|
1493 | + <p><?php echo apply_filters('geodir_cf_panel_available_fields_note', '', $sub_tab, $listing_type); ?></p> |
|
1494 | 1494 | |
1495 | - <h3><?php _e('Setup New Field','geodirectory');?></h3> |
|
1495 | + <h3><?php _e('Setup New Field', 'geodirectory'); ?></h3> |
|
1496 | 1496 | <div class="inside"> |
1497 | 1497 | |
1498 | 1498 | <div id="gt-form-builder-tab" class="gt-tabs-panel"> |
@@ -1511,9 +1511,9 @@ discard block |
||
1511 | 1511 | |
1512 | 1512 | </div> |
1513 | 1513 | |
1514 | - <?php if($sub_tab=='custom_fields'){ ?> |
|
1514 | + <?php if ($sub_tab == 'custom_fields') { ?> |
|
1515 | 1515 | |
1516 | - <h3><?php _e('Predefined Fields','geodirectory');?></h3> |
|
1516 | + <h3><?php _e('Predefined Fields', 'geodirectory'); ?></h3> |
|
1517 | 1517 | <div class="inside"> |
1518 | 1518 | |
1519 | 1519 | <div id="gt-form-builder-tab" class="gt-tabs-panel"> |
@@ -1532,7 +1532,7 @@ discard block |
||
1532 | 1532 | |
1533 | 1533 | </div> |
1534 | 1534 | |
1535 | - <h3><?php _e('Custom Fields','geodirectory');?></h3> |
|
1535 | + <h3><?php _e('Custom Fields', 'geodirectory'); ?></h3> |
|
1536 | 1536 | <div class="inside"> |
1537 | 1537 | |
1538 | 1538 | <div id="gt-form-builder-tab" class="gt-tabs-panel"> |
@@ -1569,7 +1569,7 @@ discard block |
||
1569 | 1569 | * @param string $listing_type Post type. |
1570 | 1570 | */ |
1571 | 1571 | ?> |
1572 | - <span><?php echo apply_filters('geodir_cf_panel_selected_fields_head', '', $sub_tab, $listing_type);?></span> |
|
1572 | + <span><?php echo apply_filters('geodir_cf_panel_selected_fields_head', '', $sub_tab, $listing_type); ?></span> |
|
1573 | 1573 | </h3> |
1574 | 1574 | <?php |
1575 | 1575 | /** |
@@ -1580,7 +1580,7 @@ discard block |
||
1580 | 1580 | * @param string $listing_type Post type. |
1581 | 1581 | */ |
1582 | 1582 | ?> |
1583 | - <p><?php echo apply_filters('geodir_cf_panel_selected_fields_note', '', $sub_tab, $listing_type);?></p> |
|
1583 | + <p><?php echo apply_filters('geodir_cf_panel_selected_fields_note', '', $sub_tab, $listing_type); ?></p> |
|
1584 | 1584 | |
1585 | 1585 | <div class="inside"> |
1586 | 1586 | |
@@ -1621,7 +1621,7 @@ discard block |
||
1621 | 1621 | <div class="gd-content-heading"> |
1622 | 1622 | |
1623 | 1623 | |
1624 | - <h3><?php _e('GD Diagnostic Tools', 'geodirectory');?></h3> |
|
1624 | + <h3><?php _e('GD Diagnostic Tools', 'geodirectory'); ?></h3> |
|
1625 | 1625 | <style> |
1626 | 1626 | .gd-tools-table { |
1627 | 1627 | width: 100%; |
@@ -1640,40 +1640,40 @@ discard block |
||
1640 | 1640 | <table class="form-table gd-tools-table"> |
1641 | 1641 | <tbody> |
1642 | 1642 | <tr> |
1643 | - <td><strong><?php _e('Tool', 'geodirectory');?></strong></td> |
|
1644 | - <td><strong><?php _e('Description', 'geodirectory');?></strong></td> |
|
1645 | - <td><strong><?php _e('Action', 'geodirectory');?></strong></td> |
|
1643 | + <td><strong><?php _e('Tool', 'geodirectory'); ?></strong></td> |
|
1644 | + <td><strong><?php _e('Description', 'geodirectory'); ?></strong></td> |
|
1645 | + <td><strong><?php _e('Action', 'geodirectory'); ?></strong></td> |
|
1646 | 1646 | </tr> |
1647 | 1647 | |
1648 | 1648 | |
1649 | 1649 | <tr> |
1650 | - <td><?php _e('GD pages check', 'geodirectory');?></td> |
|
1650 | + <td><?php _e('GD pages check', 'geodirectory'); ?></td> |
|
1651 | 1651 | <td> |
1652 | - <small><?php _e('Checks if the GD pages are installed correctly or not.', 'geodirectory');?></small> |
|
1652 | + <small><?php _e('Checks if the GD pages are installed correctly or not.', 'geodirectory'); ?></small> |
|
1653 | 1653 | </td> |
1654 | 1654 | <td> |
1655 | - <input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1655 | + <input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1656 | 1656 | class="button-primary geodir_diagnosis_button" data-diagnose="default_pages"/> |
1657 | 1657 | </td> |
1658 | 1658 | </tr> |
1659 | 1659 | |
1660 | 1660 | |
1661 | 1661 | <tr> |
1662 | - <td><?php _e('Multisite DB conversion check', 'geodirectory');?></td> |
|
1662 | + <td><?php _e('Multisite DB conversion check', 'geodirectory'); ?></td> |
|
1663 | 1663 | <td> |
1664 | - <small><?php _e('Checks if the GD database tables have been converted to use multisite correctly.', 'geodirectory');?></small> |
|
1664 | + <small><?php _e('Checks if the GD database tables have been converted to use multisite correctly.', 'geodirectory'); ?></small> |
|
1665 | 1665 | </td> |
1666 | - <td><input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1666 | + <td><input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1667 | 1667 | class="button-primary geodir_diagnosis_button" data-diagnose="multisite_conversion"/> |
1668 | 1668 | </td> |
1669 | 1669 | </tr> |
1670 | 1670 | |
1671 | 1671 | <tr> |
1672 | - <td><?php _e('Ratings check', 'geodirectory');?></td> |
|
1672 | + <td><?php _e('Ratings check', 'geodirectory'); ?></td> |
|
1673 | 1673 | <td> |
1674 | - <small><?php _e('Checks ratings for correct location and content settings', 'geodirectory');?></small> |
|
1674 | + <small><?php _e('Checks ratings for correct location and content settings', 'geodirectory'); ?></small> |
|
1675 | 1675 | </td> |
1676 | - <td><input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1676 | + <td><input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1677 | 1677 | class="button-primary geodir_diagnosis_button" data-diagnose="ratings"/> |
1678 | 1678 | </td> |
1679 | 1679 | </tr> |
@@ -1688,9 +1688,9 @@ discard block |
||
1688 | 1688 | $multiple = ""; |
1689 | 1689 | } |
1690 | 1690 | ?> |
1691 | - <td><?php _e('Sync GD tags', 'geodirectory');?></td> |
|
1691 | + <td><?php _e('Sync GD tags', 'geodirectory'); ?></td> |
|
1692 | 1692 | <td> |
1693 | - <small><?php _e('This tool can be used when tags are showing in the backend but missing from the front end.', 'geodirectory');?></small> |
|
1693 | + <small><?php _e('This tool can be used when tags are showing in the backend but missing from the front end.', 'geodirectory'); ?></small> |
|
1694 | 1694 | <?php |
1695 | 1695 | if ($l_count > $step_max_items) { |
1696 | 1696 | ?> |
@@ -1706,7 +1706,7 @@ discard block |
||
1706 | 1706 | <?php echo $value['labels']['name']; ?> |
1707 | 1707 | </td> |
1708 | 1708 | <td> |
1709 | - <input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1709 | + <input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1710 | 1710 | class="button-primary geodir_diagnosis_button" data-ptype="<?php echo $key; ?>" data-diagnose="tags_sync"/> |
1711 | 1711 | </td> |
1712 | 1712 | </tr> |
@@ -1720,48 +1720,48 @@ discard block |
||
1720 | 1720 | ?> |
1721 | 1721 | </td> |
1722 | 1722 | <td> |
1723 | - <input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1723 | + <input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1724 | 1724 | class="button-primary geodir_diagnosis_button" <?php echo $multiple; ?> data-diagnose="tags_sync"/> |
1725 | 1725 | |
1726 | 1726 | </td> |
1727 | 1727 | </tr> |
1728 | 1728 | |
1729 | 1729 | <tr> |
1730 | - <td><?php _e('Sync GD Categories', 'geodirectory');?></td> |
|
1730 | + <td><?php _e('Sync GD Categories', 'geodirectory'); ?></td> |
|
1731 | 1731 | <td> |
1732 | - <small><?php _e('This tool can be used when categories are missing from the details table but showing in other places in the backend (only checks posts with missing category info in details table)', 'geodirectory');?></small> |
|
1732 | + <small><?php _e('This tool can be used when categories are missing from the details table but showing in other places in the backend (only checks posts with missing category info in details table)', 'geodirectory'); ?></small> |
|
1733 | 1733 | </td> |
1734 | - <td><input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1734 | + <td><input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1735 | 1735 | class="button-primary geodir_diagnosis_button" data-diagnose="cats_sync"/> |
1736 | 1736 | </td> |
1737 | 1737 | </tr> |
1738 | 1738 | |
1739 | 1739 | |
1740 | 1740 | <tr> |
1741 | - <td><?php _e('Clear all GD version numbers', 'geodirectory');?></td> |
|
1741 | + <td><?php _e('Clear all GD version numbers', 'geodirectory'); ?></td> |
|
1742 | 1742 | <td> |
1743 | - <small><?php _e('This tool will clear all GD version numbers so any upgrade functions will run again.', 'geodirectory');?></small> |
|
1743 | + <small><?php _e('This tool will clear all GD version numbers so any upgrade functions will run again.', 'geodirectory'); ?></small> |
|
1744 | 1744 | </td> |
1745 | - <td><input type="button" value="<?php _e('Run', 'geodirectory');?>" |
|
1745 | + <td><input type="button" value="<?php _e('Run', 'geodirectory'); ?>" |
|
1746 | 1746 | class="button-primary geodir_diagnosis_button" data-diagnose="version_clear"/> |
1747 | 1747 | </td> |
1748 | 1748 | </tr> |
1749 | 1749 | <tr> |
1750 | - <td><?php _e('Load custom fields translation', 'geodirectory');?></td> |
|
1750 | + <td><?php _e('Load custom fields translation', 'geodirectory'); ?></td> |
|
1751 | 1751 | <td> |
1752 | - <small><?php _e('This tool will load strings from the database into a file to translate via po editor.Ex: custom fields', 'geodirectory');?></small> |
|
1752 | + <small><?php _e('This tool will load strings from the database into a file to translate via po editor.Ex: custom fields', 'geodirectory'); ?></small> |
|
1753 | 1753 | </td> |
1754 | 1754 | <td> |
1755 | - <input type="button" value="<?php _e('Run', 'geodirectory');?>" class="button-primary geodir_diagnosis_button" data-diagnose="load_db_language"/> |
|
1755 | + <input type="button" value="<?php _e('Run', 'geodirectory'); ?>" class="button-primary geodir_diagnosis_button" data-diagnose="load_db_language"/> |
|
1756 | 1756 | </td> |
1757 | 1757 | </tr> |
1758 | 1758 | <tr> |
1759 | - <td><?php _e('Reload Countries table', 'geodirectory');?></td> |
|
1759 | + <td><?php _e('Reload Countries table', 'geodirectory'); ?></td> |
|
1760 | 1760 | <td> |
1761 | - <small><?php _e('This tool will drop and re-add the countries table, it is meant to refresh the list when countries are added/removed, if you have duplicate country problems you should merge those first or you could have orphaned posts.', 'geodirectory');?></small> |
|
1761 | + <small><?php _e('This tool will drop and re-add the countries table, it is meant to refresh the list when countries are added/removed, if you have duplicate country problems you should merge those first or you could have orphaned posts.', 'geodirectory'); ?></small> |
|
1762 | 1762 | </td> |
1763 | 1763 | <td> |
1764 | - <input type="button" value="<?php _e('Run', 'geodirectory');?>" class="button-primary geodir_diagnosis_button" data-diagnose="reload_db_countries"/> |
|
1764 | + <input type="button" value="<?php _e('Run', 'geodirectory'); ?>" class="button-primary geodir_diagnosis_button" data-diagnose="reload_db_countries"/> |
|
1765 | 1765 | </td> |
1766 | 1766 | </tr> |
1767 | 1767 | <?php |
@@ -1771,7 +1771,7 @@ discard block |
||
1771 | 1771 | * Called after the last setting on the GD>Tools page. |
1772 | 1772 | * @since 1.0.0 |
1773 | 1773 | */ |
1774 | - do_action('geodir_diagnostic_tool');?> |
|
1774 | + do_action('geodir_diagnostic_tool'); ?> |
|
1775 | 1775 | |
1776 | 1776 | </tbody> |
1777 | 1777 | </table> |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | * @since 1.4.6 |
14 | 14 | * @return int|null Return the page ID if present or null if not. |
15 | 15 | */ |
16 | -function geodir_add_listing_page_id(){ |
|
16 | +function geodir_add_listing_page_id() { |
|
17 | 17 | $gd_page_id = get_option('geodir_add_listing_page'); |
18 | 18 | |
19 | 19 | if (function_exists('icl_object_id')) { |
20 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
20 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | return $gd_page_id; |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | * @since 1.4.6 |
31 | 31 | * @return int|null Return the page ID if present or null if not. |
32 | 32 | */ |
33 | -function geodir_preview_page_id(){ |
|
33 | +function geodir_preview_page_id() { |
|
34 | 34 | $gd_page_id = get_option('geodir_preview_page'); |
35 | 35 | |
36 | 36 | if (function_exists('icl_object_id')) { |
37 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
37 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | return $gd_page_id; |
@@ -47,11 +47,11 @@ discard block |
||
47 | 47 | * @since 1.4.6 |
48 | 48 | * @return int|null Return the page ID if present or null if not. |
49 | 49 | */ |
50 | -function geodir_success_page_id(){ |
|
50 | +function geodir_success_page_id() { |
|
51 | 51 | $gd_page_id = get_option('geodir_success_page'); |
52 | 52 | |
53 | 53 | if (function_exists('icl_object_id')) { |
54 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
54 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | return $gd_page_id; |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | * @since 1.4.6 |
65 | 65 | * @return int|null Return the page ID if present or null if not. |
66 | 66 | */ |
67 | -function geodir_location_page_id(){ |
|
67 | +function geodir_location_page_id() { |
|
68 | 68 | $gd_page_id = get_option('geodir_location_page'); |
69 | 69 | |
70 | 70 | if (function_exists('icl_object_id')) { |
71 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
71 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | return $gd_page_id; |
@@ -81,11 +81,11 @@ discard block |
||
81 | 81 | * @since 1.5.4 |
82 | 82 | * @return int|null Return the page ID if present or null if not. |
83 | 83 | */ |
84 | -function geodir_home_page_id(){ |
|
84 | +function geodir_home_page_id() { |
|
85 | 85 | $gd_page_id = get_option('geodir_home_page'); |
86 | 86 | |
87 | 87 | if (function_exists('icl_object_id')) { |
88 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
88 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | return $gd_page_id; |
@@ -98,11 +98,11 @@ discard block |
||
98 | 98 | * @since 1.5.3 |
99 | 99 | * @return int|null Return the page ID if present or null if not. |
100 | 100 | */ |
101 | -function geodir_info_page_id(){ |
|
101 | +function geodir_info_page_id() { |
|
102 | 102 | $gd_page_id = get_option('geodir_info_page'); |
103 | 103 | |
104 | 104 | if (function_exists('icl_object_id')) { |
105 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
105 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | return $gd_page_id; |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | * @since 1.5.3 |
116 | 116 | * @return int|null Return the page ID if present or null if not. |
117 | 117 | */ |
118 | -function geodir_login_page_id(){ |
|
118 | +function geodir_login_page_id() { |
|
119 | 119 | $gd_page_id = get_option('geodir_login_page'); |
120 | 120 | |
121 | 121 | if (function_exists('icl_object_id')) { |
122 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
122 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | return $gd_page_id; |
@@ -133,20 +133,20 @@ discard block |
||
133 | 133 | * @since 1.5.3 |
134 | 134 | * @return int|null Return the page ID if present or null if not. |
135 | 135 | */ |
136 | -function geodir_login_url($args=array()){ |
|
136 | +function geodir_login_url($args = array()) { |
|
137 | 137 | $gd_page_id = get_option('geodir_login_page'); |
138 | 138 | |
139 | 139 | if (function_exists('icl_object_id')) { |
140 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
140 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | if (function_exists('geodir_location_geo_home_link')) { |
144 | 144 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
145 | 145 | } |
146 | 146 | |
147 | - if (geodir_is_wpml()){ |
|
147 | + if (geodir_is_wpml()) { |
|
148 | 148 | $home_url = icl_get_home_url(); |
149 | - }else{ |
|
149 | + } else { |
|
150 | 150 | $home_url = home_url(); |
151 | 151 | } |
152 | 152 | |
@@ -154,17 +154,17 @@ discard block |
||
154 | 154 | add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
155 | 155 | } |
156 | 156 | |
157 | - if($gd_page_id){ |
|
157 | + if ($gd_page_id) { |
|
158 | 158 | $post = get_post($gd_page_id); |
159 | 159 | $slug = $post->post_name; |
160 | 160 | //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
161 | 161 | $login_url = trailingslashit($home_url)."$slug/"; |
162 | - }else{ |
|
162 | + } else { |
|
163 | 163 | $login_url = trailingslashit($home_url)."?geodir_signup=true"; |
164 | 164 | } |
165 | 165 | |
166 | - if($args){ |
|
167 | - $login_url = add_query_arg($args,$login_url ); |
|
166 | + if ($args) { |
|
167 | + $login_url = add_query_arg($args, $login_url); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | /** |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | * @param array $args The array of query args used. |
179 | 179 | * @param int $gd_page_id The page id of the GD login page. |
180 | 180 | */ |
181 | - return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id); |
|
181 | + return apply_filters('geodir_login_url', $login_url, $args, $gd_page_id); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -189,20 +189,20 @@ discard block |
||
189 | 189 | * @since 1.5.16 Added WPML lang code to url. |
190 | 190 | * @return string Info page url. |
191 | 191 | */ |
192 | -function geodir_info_url($args=array()){ |
|
192 | +function geodir_info_url($args = array()) { |
|
193 | 193 | $gd_page_id = get_option('geodir_info_page'); |
194 | 194 | |
195 | 195 | if (function_exists('icl_object_id')) { |
196 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
196 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | if (function_exists('geodir_location_geo_home_link')) { |
200 | 200 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
201 | 201 | } |
202 | 202 | |
203 | - if (geodir_is_wpml()){ |
|
203 | + if (geodir_is_wpml()) { |
|
204 | 204 | $home_url = icl_get_home_url(); |
205 | - }else{ |
|
205 | + } else { |
|
206 | 206 | $home_url = home_url(); |
207 | 207 | } |
208 | 208 | |
@@ -210,17 +210,17 @@ discard block |
||
210 | 210 | add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
211 | 211 | } |
212 | 212 | |
213 | - if($gd_page_id){ |
|
213 | + if ($gd_page_id) { |
|
214 | 214 | $post = get_post($gd_page_id); |
215 | 215 | $slug = $post->post_name; |
216 | 216 | //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
217 | 217 | $info_url = trailingslashit($home_url)."$slug/"; |
218 | - }else{ |
|
218 | + } else { |
|
219 | 219 | $info_url = trailingslashit($home_url); |
220 | 220 | } |
221 | 221 | |
222 | - if($args){ |
|
223 | - $info_url = add_query_arg($args,$info_url ); |
|
222 | + if ($args) { |
|
223 | + $info_url = add_query_arg($args, $info_url); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | return $info_url; |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | * @param string $charset Character set to use for conversion. |
239 | 239 | * @return string Returns converted string. |
240 | 240 | */ |
241 | -function geodir_ucwords($string, $charset='UTF-8') { |
|
241 | +function geodir_ucwords($string, $charset = 'UTF-8') { |
|
242 | 242 | if (function_exists('mb_convert_case')) { |
243 | 243 | return mb_convert_case($string, MB_CASE_TITLE, $charset); |
244 | 244 | } else { |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | * @param string $charset Character set to use for conversion. |
259 | 259 | * @return string Returns converted string. |
260 | 260 | */ |
261 | -function geodir_strtolower($string, $charset='UTF-8') { |
|
261 | +function geodir_strtolower($string, $charset = 'UTF-8') { |
|
262 | 262 | if (function_exists('mb_convert_case')) { |
263 | 263 | return mb_convert_case($string, MB_CASE_LOWER, $charset); |
264 | 264 | } else { |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * @param string $charset Character set to use for conversion. |
279 | 279 | * @return string Returns converted string. |
280 | 280 | */ |
281 | -function geodir_strtoupper($string, $charset='UTF-8') { |
|
281 | +function geodir_strtoupper($string, $charset = 'UTF-8') { |
|
282 | 282 | if (function_exists('mb_convert_case')) { |
283 | 283 | return mb_convert_case($string, MB_CASE_UPPER, $charset); |
284 | 284 | } else { |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | |
310 | 310 | $url = trim($parts[0]); |
311 | 311 | if ($formatted && $url != '') { |
312 | - $url = str_replace( ' ', '%20', $url ); |
|
312 | + $url = str_replace(' ', '%20', $url); |
|
313 | 313 | $url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff]|i', '', $url); |
314 | 314 | |
315 | 315 | if (0 !== stripos($url, 'mailto:')) { |
@@ -319,8 +319,8 @@ discard block |
||
319 | 319 | |
320 | 320 | $url = str_replace(';//', '://', $url); |
321 | 321 | |
322 | - if (strpos($url, ':') === false && ! in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) { |
|
323 | - $url = 'http://' . $url; |
|
322 | + if (strpos($url, ':') === false && !in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) { |
|
323 | + $url = 'http://'.$url; |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | $url = wp_kses_normalize_entities($url); |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | * @package GeoDirectory |
463 | 463 | */ |
464 | 464 | function _gd_die_handler() { |
465 | - if ( defined( 'GD_TESTING_MODE' ) ) { |
|
465 | + if (defined('GD_TESTING_MODE')) { |
|
466 | 466 | return '_gd_die_handler'; |
467 | 467 | } else { |
468 | 468 | die(); |
@@ -480,10 +480,10 @@ discard block |
||
480 | 480 | * @param string $title Optional. Error title. |
481 | 481 | * @param int $status Optional. Status code. |
482 | 482 | */ |
483 | -function gd_die( $message = '', $title = '', $status = 400 ) { |
|
484 | - add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 ); |
|
485 | - add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 ); |
|
486 | - wp_die( $message, $title, array( 'response' => $status )); |
|
483 | +function gd_die($message = '', $title = '', $status = 400) { |
|
484 | + add_filter('wp_die_ajax_handler', '_gd_die_handler', 10, 3); |
|
485 | + add_filter('wp_die_handler', '_gd_die_handler', 10, 3); |
|
486 | + wp_die($message, $title, array('response' => $status)); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /* |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | * @param string $php_format The PHP date format. |
494 | 494 | * @return string The jQuery format date string. |
495 | 495 | */ |
496 | -function geodir_date_format_php_to_jqueryui( $php_format ) { |
|
496 | +function geodir_date_format_php_to_jqueryui($php_format) { |
|
497 | 497 | $symbols = array( |
498 | 498 | // Day |
499 | 499 | 'd' => 'dd', |
@@ -533,27 +533,27 @@ discard block |
||
533 | 533 | $jqueryui_format = ""; |
534 | 534 | $escaping = false; |
535 | 535 | |
536 | - for ( $i = 0; $i < strlen( $php_format ); $i++ ) { |
|
536 | + for ($i = 0; $i < strlen($php_format); $i++) { |
|
537 | 537 | $char = $php_format[$i]; |
538 | 538 | |
539 | 539 | // PHP date format escaping character |
540 | - if ( $char === '\\' ) { |
|
540 | + if ($char === '\\') { |
|
541 | 541 | $i++; |
542 | 542 | |
543 | - if ( $escaping ) { |
|
543 | + if ($escaping) { |
|
544 | 544 | $jqueryui_format .= $php_format[$i]; |
545 | 545 | } else { |
546 | - $jqueryui_format .= '\'' . $php_format[$i]; |
|
546 | + $jqueryui_format .= '\''.$php_format[$i]; |
|
547 | 547 | } |
548 | 548 | |
549 | 549 | $escaping = true; |
550 | 550 | } else { |
551 | - if ( $escaping ) { |
|
551 | + if ($escaping) { |
|
552 | 552 | $jqueryui_format .= "'"; |
553 | 553 | $escaping = false; |
554 | 554 | } |
555 | 555 | |
556 | - if ( isset( $symbols[$char] ) ) { |
|
556 | + if (isset($symbols[$char])) { |
|
557 | 557 | $jqueryui_format .= $symbols[$char]; |
558 | 558 | } else { |
559 | 559 | $jqueryui_format .= $char; |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | * @return string The untranslated date string. |
573 | 573 | * @since 1.6.5 |
574 | 574 | */ |
575 | -function geodir_maybe_untranslate_date($date){ |
|
575 | +function geodir_maybe_untranslate_date($date) { |
|
576 | 576 | $english_long_months = array( |
577 | 577 | 'January', |
578 | 578 | 'February', |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | 'December', |
589 | 589 | ); |
590 | 590 | |
591 | - $non_english_long_months = array( |
|
591 | + $non_english_long_months = array( |
|
592 | 592 | __('January'), |
593 | 593 | __('February'), |
594 | 594 | __('March'), |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | __('November'), |
603 | 603 | __('December'), |
604 | 604 | ); |
605 | - $date = str_replace($non_english_long_months,$english_long_months,$date); |
|
605 | + $date = str_replace($non_english_long_months, $english_long_months, $date); |
|
606 | 606 | |
607 | 607 | |
608 | 608 | $english_short_months = array( |
@@ -621,21 +621,21 @@ discard block |
||
621 | 621 | ); |
622 | 622 | |
623 | 623 | $non_english_short_months = array( |
624 | - ' '._x( 'Jan', 'January abbreviation' ).' ', |
|
625 | - ' '._x( 'Feb', 'February abbreviation' ).' ', |
|
626 | - ' '._x( 'Mar', 'March abbreviation' ).' ', |
|
627 | - ' '._x( 'Apr', 'April abbreviation' ).' ', |
|
628 | - ' '._x( 'May', 'May abbreviation' ).' ', |
|
629 | - ' '._x( 'Jun', 'June abbreviation' ).' ', |
|
630 | - ' '._x( 'Jul', 'July abbreviation' ).' ', |
|
631 | - ' '._x( 'Aug', 'August abbreviation' ).' ', |
|
632 | - ' '._x( 'Sep', 'September abbreviation' ).' ', |
|
633 | - ' '._x( 'Oct', 'October abbreviation' ).' ', |
|
634 | - ' '._x( 'Nov', 'November abbreviation' ).' ', |
|
635 | - ' '._x( 'Dec', 'December abbreviation' ).' ', |
|
624 | + ' '._x('Jan', 'January abbreviation').' ', |
|
625 | + ' '._x('Feb', 'February abbreviation').' ', |
|
626 | + ' '._x('Mar', 'March abbreviation').' ', |
|
627 | + ' '._x('Apr', 'April abbreviation').' ', |
|
628 | + ' '._x('May', 'May abbreviation').' ', |
|
629 | + ' '._x('Jun', 'June abbreviation').' ', |
|
630 | + ' '._x('Jul', 'July abbreviation').' ', |
|
631 | + ' '._x('Aug', 'August abbreviation').' ', |
|
632 | + ' '._x('Sep', 'September abbreviation').' ', |
|
633 | + ' '._x('Oct', 'October abbreviation').' ', |
|
634 | + ' '._x('Nov', 'November abbreviation').' ', |
|
635 | + ' '._x('Dec', 'December abbreviation').' ', |
|
636 | 636 | ); |
637 | 637 | |
638 | - $date = str_replace($non_english_short_months,$english_short_months,$date); |
|
638 | + $date = str_replace($non_english_short_months, $english_short_months, $date); |
|
639 | 639 | |
640 | 640 | |
641 | 641 | return $date; |
@@ -707,7 +707,7 @@ discard block |
||
707 | 707 | * @return string Trimmed string. |
708 | 708 | */ |
709 | 709 | function geodir_excerpt($text, $length = 100, $options = array()) { |
710 | - if (!(int)$length > 0) { |
|
710 | + if (!(int) $length > 0) { |
|
711 | 711 | return $text; |
712 | 712 | } |
713 | 713 | $default = array( |
@@ -769,7 +769,7 @@ discard block |
||
769 | 769 | $length = $truncateLength; |
770 | 770 | |
771 | 771 | foreach ($openTags as $tag) { |
772 | - $suffix .= '</' . $tag . '>'; |
|
772 | + $suffix .= '</'.$tag.'>'; |
|
773 | 773 | } |
774 | 774 | } else { |
775 | 775 | if (geodir_strlen($text, $options) <= $length) { |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | } |
792 | 792 | } |
793 | 793 | |
794 | - return $prefix . $result . $suffix; |
|
794 | + return $prefix.$result.$suffix; |
|
795 | 795 | } |
796 | 796 | |
797 | 797 | /** |
@@ -828,7 +828,7 @@ discard block |
||
828 | 828 | $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i'; |
829 | 829 | $replace = preg_replace_callback( |
830 | 830 | $pattern, |
831 | - function ($match) use ($strlen) { |
|
831 | + function($match) use ($strlen) { |
|
832 | 832 | $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8'); |
833 | 833 | |
834 | 834 | return str_repeat(' ', $strlen($utf8, 'UTF-8')); |
@@ -889,7 +889,7 @@ discard block |
||
889 | 889 | } |
890 | 890 | |
891 | 891 | if (empty($options['html'])) { |
892 | - return (string)$substr($text, $start, $length); |
|
892 | + return (string) $substr($text, $start, $length); |
|
893 | 893 | } |
894 | 894 | |
895 | 895 | $totalOffset = 0; |
@@ -914,7 +914,7 @@ discard block |
||
914 | 914 | |
915 | 915 | $len = geodir_strlen($part, $options); |
916 | 916 | if ($offset !== 0 || $totalLength + $len > $length) { |
917 | - if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) { |
|
917 | + if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8')) { |
|
918 | 918 | // Entities cannot be passed substr. |
919 | 919 | continue; |
920 | 920 | } |
@@ -960,39 +960,39 @@ discard block |
||
960 | 960 | return ''; |
961 | 961 | } |
962 | 962 | |
963 | -function geodir_tool_restore_cpt_from_taxonomies(){ |
|
963 | +function geodir_tool_restore_cpt_from_taxonomies() { |
|
964 | 964 | |
965 | 965 | $cpts = get_option('geodir_post_types'); |
966 | 966 | |
967 | - if(!empty($cpts)){return;} |
|
967 | + if (!empty($cpts)) {return; } |
|
968 | 968 | |
969 | 969 | $taxonomies = get_option('geodir_taxonomies'); |
970 | 970 | |
971 | - if(empty($taxonomies)){return;} |
|
971 | + if (empty($taxonomies)) {return; } |
|
972 | 972 | |
973 | 973 | $cpts = array(); |
974 | 974 | |
975 | - foreach($taxonomies as $key => $val){ |
|
975 | + foreach ($taxonomies as $key => $val) { |
|
976 | 976 | |
977 | - if(strpos($val['listing_slug'], '/') === false) { |
|
978 | - $cpts[$val['object_type']] = array('cpt'=>$val['object_type'],'slug'=>$val['listing_slug']); |
|
977 | + if (strpos($val['listing_slug'], '/') === false) { |
|
978 | + $cpts[$val['object_type']] = array('cpt'=>$val['object_type'], 'slug'=>$val['listing_slug']); |
|
979 | 979 | } |
980 | 980 | |
981 | 981 | } |
982 | 982 | |
983 | - if(empty($cpts)){return;} |
|
983 | + if (empty($cpts)) {return; } |
|
984 | 984 | |
985 | 985 | |
986 | 986 | $cpts_restore = $cpts; |
987 | 987 | |
988 | - foreach($cpts as $cpt){ |
|
988 | + foreach ($cpts as $cpt) { |
|
989 | 989 | |
990 | 990 | |
991 | - $is_custom = $cpt['cpt']=='gd_place' ? 0 : 1; |
|
991 | + $is_custom = $cpt['cpt'] == 'gd_place' ? 0 : 1; |
|
992 | 992 | |
993 | - $cpts_restore[$cpt['cpt']] = array ( |
|
993 | + $cpts_restore[$cpt['cpt']] = array( |
|
994 | 994 | 'labels' => |
995 | - array ( |
|
995 | + array( |
|
996 | 996 | 'name' => $cpt['slug'], |
997 | 997 | 'singular_name' => $cpt['slug'], |
998 | 998 | 'add_new' => 'Add New', |
@@ -1020,14 +1020,14 @@ discard block |
||
1020 | 1020 | 'public' => true, |
1021 | 1021 | 'query_var' => true, |
1022 | 1022 | 'rewrite' => |
1023 | - array ( |
|
1023 | + array( |
|
1024 | 1024 | 'slug' => $cpt['slug'], |
1025 | 1025 | 'with_front' => false, |
1026 | 1026 | 'hierarchical' => true, |
1027 | 1027 | 'feeds' => true, |
1028 | 1028 | ), |
1029 | 1029 | 'supports' => |
1030 | - array ( |
|
1030 | + array( |
|
1031 | 1031 | 0 => 'title', |
1032 | 1032 | 1 => 'editor', |
1033 | 1033 | 2 => 'author', |
@@ -1037,14 +1037,14 @@ discard block |
||
1037 | 1037 | 6 => 'comments', |
1038 | 1038 | ), |
1039 | 1039 | 'taxonomies' => |
1040 | - array ( |
|
1040 | + array( |
|
1041 | 1041 | 0 => $cpt['cpt'].'category', |
1042 | 1042 | 1 => $cpt['cpt'].'_tags', |
1043 | 1043 | ), |
1044 | 1044 | 'is_custom' => $is_custom, |
1045 | 1045 | 'listing_order' => '1', |
1046 | 1046 | 'seo' => |
1047 | - array ( |
|
1047 | + array( |
|
1048 | 1048 | 'meta_keyword' => '', |
1049 | 1049 | 'meta_description' => '', |
1050 | 1050 | ), |
@@ -1056,7 +1056,7 @@ discard block |
||
1056 | 1056 | } |
1057 | 1057 | |
1058 | 1058 | |
1059 | - update_option('geodir_post_types',$cpts_restore); |
|
1059 | + update_option('geodir_post_types', $cpts_restore); |
|
1060 | 1060 | |
1061 | 1061 | } |
1062 | 1062 | |
@@ -1068,13 +1068,13 @@ discard block |
||
1068 | 1068 | $count = 0; |
1069 | 1069 | |
1070 | 1070 | if ($post_type) { |
1071 | - $count = $count + $wpdb->get_var("select count(post_id) from " . $wpdb->prefix . "geodir_" . $post_type . "_detail"); |
|
1071 | + $count = $count + $wpdb->get_var("select count(post_id) from ".$wpdb->prefix."geodir_".$post_type."_detail"); |
|
1072 | 1072 | } else { |
1073 | 1073 | $all_postypes = geodir_get_posttypes(); |
1074 | 1074 | |
1075 | 1075 | if (!empty($all_postypes)) { |
1076 | 1076 | foreach ($all_postypes as $key) { |
1077 | - $count = $count + $wpdb->get_var("select count(post_id) from " . $wpdb->prefix . "geodir_" . $key . "_detail"); |
|
1077 | + $count = $count + $wpdb->get_var("select count(post_id) from ".$wpdb->prefix."geodir_".$key."_detail"); |
|
1078 | 1078 | } |
1079 | 1079 | } |
1080 | 1080 | } |