@@ -26,11 +26,11 @@ discard block |
||
26 | 26 | |
27 | 27 | if (!isset($default_cat) || empty($default_cat)) { |
28 | 28 | $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
29 | - }else{ |
|
30 | - if(!is_int($default_cat)){ |
|
29 | + } else { |
|
30 | + if (!is_int($default_cat)) { |
|
31 | 31 | $category = get_term_by('name', $default_cat, $taxonomy); |
32 | - if(isset($category->term_id)){ |
|
33 | - $default_cat = $category->term_id; |
|
32 | + if (isset($category->term_id)) { |
|
33 | + $default_cat = $category->term_id; |
|
34 | 34 | } |
35 | 35 | } |
36 | 36 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | if ($default_pos === false) { |
60 | 60 | |
61 | - $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
61 | + $change_cat_str = str_replace($default_cat.',y:', $default_cat.',y,d:', $change_cat_str); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $send_post_submit_mail = false; |
228 | 228 | |
229 | 229 | // unhook this function so it doesn't loop infinitely |
230 | - remove_action('save_post', 'geodir_post_information_save',10,2); |
|
230 | + remove_action('save_post', 'geodir_post_information_save', 10, 2); |
|
231 | 231 | |
232 | 232 | if (isset($request_info['pid']) && $request_info['pid'] != '') { |
233 | 233 | $post['ID'] = $request_info['pid']; |
@@ -251,13 +251,13 @@ discard block |
||
251 | 251 | } |
252 | 252 | |
253 | 253 | // re-hook this function |
254 | - add_action('save_post', 'geodir_post_information_save',10,2); |
|
254 | + add_action('save_post', 'geodir_post_information_save', 10, 2); |
|
255 | 255 | |
256 | 256 | $post_tags = ''; |
257 | 257 | if (!isset($request_info['post_tags'])) { |
258 | 258 | |
259 | 259 | $post_type = $request_info['listing_type']; |
260 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names'))); |
|
260 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names'))); |
|
261 | 261 | |
262 | 262 | } |
263 | 263 | |
@@ -275,13 +275,13 @@ discard block |
||
275 | 275 | $payment_info = array(); |
276 | 276 | $package_info = array(); |
277 | 277 | |
278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
278 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
279 | 279 | |
280 | 280 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
281 | 281 | |
282 | 282 | if (!empty($package_info) && !$post_package_id) { |
283 | 283 | if (isset($package_info['days']) && $package_info['days'] != 0) { |
284 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days")); |
|
284 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days")); |
|
285 | 285 | } else { |
286 | 286 | $payment_info['expire_date'] = 'Never'; |
287 | 287 | } |
@@ -302,8 +302,8 @@ discard block |
||
302 | 302 | $extrafields = $val['extra_fields']; |
303 | 303 | |
304 | 304 | if (trim($type) == 'address') { |
305 | - $prefix = $name . '_'; |
|
306 | - $address = $prefix . 'address'; |
|
305 | + $prefix = $name.'_'; |
|
306 | + $address = $prefix.'address'; |
|
307 | 307 | |
308 | 308 | if (isset($request_info[$address]) && $request_info[$address] != '') { |
309 | 309 | $gd_post_info[$address] = wp_slash($request_info[$address]); |
@@ -313,59 +313,59 @@ discard block |
||
313 | 313 | $extrafields = unserialize($extrafields); |
314 | 314 | |
315 | 315 | |
316 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') { |
|
316 | + if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') { |
|
317 | 317 | |
318 | 318 | $location_result = geodir_get_default_location(); |
319 | 319 | |
320 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
321 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
322 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
320 | + $gd_post_info[$prefix.'city'] = $location_result->city; |
|
321 | + $gd_post_info[$prefix.'region'] = $location_result->region; |
|
322 | + $gd_post_info[$prefix.'country'] = $location_result->country; |
|
323 | 323 | |
324 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
324 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
325 | 325 | |
326 | 326 | } else { |
327 | 327 | |
328 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
329 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
330 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
328 | + $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city']; |
|
329 | + $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region']; |
|
330 | + $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country']; |
|
331 | 331 | |
332 | 332 | //----------set post locations when import dummy data------- |
333 | 333 | $location_result = geodir_get_default_location(); |
334 | 334 | |
335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
335 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
336 | 336 | //----------------------------------------------------------------- |
337 | 337 | |
338 | 338 | } |
339 | 339 | |
340 | 340 | |
341 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) { |
|
342 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
341 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) { |
|
342 | + $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip']; |
|
343 | 343 | } |
344 | 344 | |
345 | 345 | |
346 | 346 | if (isset($extrafields['show_map']) && $extrafields['show_map']) { |
347 | 347 | |
348 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') { |
|
349 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
348 | + if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') { |
|
349 | + $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude']; |
|
350 | 350 | } |
351 | 351 | |
352 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') { |
|
353 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
352 | + if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') { |
|
353 | + $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude']; |
|
354 | 354 | } |
355 | 355 | |
356 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') { |
|
357 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
356 | + if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') { |
|
357 | + $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview']; |
|
358 | 358 | } |
359 | 359 | |
360 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') { |
|
361 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
360 | + if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') { |
|
361 | + $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom']; |
|
362 | 362 | } |
363 | 363 | |
364 | 364 | } |
365 | 365 | |
366 | 366 | // show lat lng |
367 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) { |
|
368 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
367 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) { |
|
368 | + $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng']; |
|
369 | 369 | } |
370 | 370 | } |
371 | 371 | |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | if (isset($request_info[$name])) { |
403 | 403 | $gd_post_info[$name] = $request_info[$name]; |
404 | 404 | } else { |
405 | - if (isset($request_info['gd_field_' . $name])) { |
|
405 | + if (isset($request_info['gd_field_'.$name])) { |
|
406 | 406 | $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
407 | 407 | } |
408 | 408 | } |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | } |
463 | 463 | |
464 | 464 | if (is_array($post_tags)) { |
465 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
465 | + $taxonomy = $request_info['listing_type'].'_tags'; |
|
466 | 466 | wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
467 | 467 | } |
468 | 468 | |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | $tmpimgArr = trim($request_info['post_images'], ","); |
475 | 475 | $tmpimgArr = explode(",", $tmpimgArr); |
476 | 476 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
477 | - } else{ |
|
477 | + } else { |
|
478 | 478 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
479 | 479 | } |
480 | 480 | |
@@ -555,7 +555,7 @@ discard block |
||
555 | 555 | if (!in_array($post_type, $all_postypes)) |
556 | 556 | return false; |
557 | 557 | |
558 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
558 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
559 | 559 | |
560 | 560 | /** |
561 | 561 | * Apply Filter to change Post info |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | * @since 1.0.0 |
566 | 566 | * @package GeoDirectory |
567 | 567 | */ |
568 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd |
|
568 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd |
|
569 | 569 | WHERE p.ID = pd.post_id |
570 | 570 | AND post_id = " . $post_id); |
571 | 571 | |
@@ -628,7 +628,7 @@ discard block |
||
628 | 628 | |
629 | 629 | $post_type = get_post_type($post_id); |
630 | 630 | |
631 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
631 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
632 | 632 | |
633 | 633 | /** |
634 | 634 | * Filter to change Post info |
@@ -652,13 +652,13 @@ discard block |
||
652 | 652 | $mval = implode(",", $mval); |
653 | 653 | } |
654 | 654 | |
655 | - $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
655 | + $post_meta_set_query .= $mkey." = '".$mval."', "; |
|
656 | 656 | } |
657 | 657 | } |
658 | 658 | |
659 | 659 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
660 | 660 | |
661 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape % |
|
661 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query); // escape % |
|
662 | 662 | |
663 | 663 | /** |
664 | 664 | * Called before saving the listing info. |
@@ -670,11 +670,11 @@ discard block |
||
670 | 670 | */ |
671 | 671 | do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id); |
672 | 672 | |
673 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
673 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
674 | 674 | |
675 | 675 | $wpdb->query( |
676 | 676 | $wpdb->prepare( |
677 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
677 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id =%d", |
|
678 | 678 | array($post_id) |
679 | 679 | ) |
680 | 680 | ); |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | |
685 | 685 | $wpdb->query( |
686 | 686 | $wpdb->prepare( |
687 | - "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
687 | + "INSERT INTO ".$table." SET post_id = %d,".$post_meta_set_query, |
|
688 | 688 | array($post_id) |
689 | 689 | ) |
690 | 690 | ); |
@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | |
731 | 731 | $post_type = get_post_type($post_id); |
732 | 732 | |
733 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
733 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
734 | 734 | |
735 | 735 | if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) { |
736 | 736 | |
@@ -738,11 +738,11 @@ discard block |
||
738 | 738 | $meta_value = implode(",", $meta_value); |
739 | 739 | } |
740 | 740 | |
741 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
741 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
742 | 742 | |
743 | 743 | $wpdb->query( |
744 | 744 | $wpdb->prepare( |
745 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
745 | + "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d", |
|
746 | 746 | array($post_id) |
747 | 747 | ) |
748 | 748 | ); |
@@ -751,7 +751,7 @@ discard block |
||
751 | 751 | |
752 | 752 | $wpdb->query( |
753 | 753 | $wpdb->prepare( |
754 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
754 | + "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'", |
|
755 | 755 | array($post_id) |
756 | 756 | ) |
757 | 757 | ); |
@@ -784,23 +784,23 @@ discard block |
||
784 | 784 | |
785 | 785 | $post_type = get_post_type($post_id); |
786 | 786 | |
787 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
787 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
788 | 788 | |
789 | 789 | if (is_array($postmeta) && !empty($postmeta) && $post_id) { |
790 | 790 | $post_meta_set_query = ''; |
791 | 791 | |
792 | 792 | foreach ($postmeta as $mkey) { |
793 | 793 | if ($mval != '') |
794 | - $post_meta_set_query .= $mkey . " = '', "; |
|
794 | + $post_meta_set_query .= $mkey." = '', "; |
|
795 | 795 | } |
796 | 796 | |
797 | 797 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
798 | 798 | |
799 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
799 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') { |
|
800 | 800 | |
801 | 801 | $wpdb->query( |
802 | 802 | $wpdb->prepare( |
803 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
803 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d", |
|
804 | 804 | array($post_id) |
805 | 805 | ) |
806 | 806 | ); |
@@ -809,11 +809,11 @@ discard block |
||
809 | 809 | } |
810 | 810 | |
811 | 811 | } elseif ($postmeta != '' && $post_id) { |
812 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
812 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') { |
|
813 | 813 | |
814 | 814 | $wpdb->query( |
815 | 815 | $wpdb->prepare( |
816 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
816 | + "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d", |
|
817 | 817 | array($post_id) |
818 | 818 | ) |
819 | 819 | ); |
@@ -855,10 +855,10 @@ discard block |
||
855 | 855 | if (!in_array($post_type, $all_postypes)) |
856 | 856 | return false; |
857 | 857 | |
858 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
858 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
859 | 859 | |
860 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') { |
|
861 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id))); |
|
860 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') { |
|
861 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id))); |
|
862 | 862 | |
863 | 863 | if ($meta_value && $meta_value !== '') { |
864 | 864 | return maybe_serialize($meta_value); |
@@ -892,13 +892,13 @@ discard block |
||
892 | 892 | |
893 | 893 | $post_type = get_post_type($post_id); |
894 | 894 | |
895 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
895 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
896 | 896 | |
897 | 897 | $post_images = geodir_get_images($post_id); |
898 | 898 | |
899 | 899 | $wpdb->query( |
900 | 900 | $wpdb->prepare( |
901 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
901 | + "UPDATE ".$table." SET featured_image = '' where post_id =%d", |
|
902 | 902 | array($post_id) |
903 | 903 | ) |
904 | 904 | ); |
@@ -928,12 +928,12 @@ discard block |
||
928 | 928 | $file_path = ''; |
929 | 929 | /* --------- start ------- */ |
930 | 930 | |
931 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m])); |
|
931 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m])); |
|
932 | 932 | |
933 | 933 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
934 | 934 | |
935 | 935 | |
936 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) { |
|
936 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM ".GEODIR_ATTACHMENT_TABLE." WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) { |
|
937 | 937 | |
938 | 938 | /* --------- end ------- */ |
939 | 939 | $curr_img_url = $post_image[$m]; |
@@ -977,7 +977,7 @@ discard block |
||
977 | 977 | // If the uploaded file is the right format |
978 | 978 | if (in_array($uploaded_file_type, $allowed_file_types)) { |
979 | 979 | if (!function_exists('wp_handle_upload')) { |
980 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
980 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
981 | 981 | } |
982 | 982 | |
983 | 983 | if (!is_dir($geodir_uploadpath)) { |
@@ -985,41 +985,41 @@ discard block |
||
985 | 985 | } |
986 | 986 | |
987 | 987 | $external_img = false; |
988 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) { |
|
988 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) { |
|
989 | 989 | } else { |
990 | 990 | $external_img = true; |
991 | 991 | } |
992 | 992 | |
993 | 993 | if ($dummy || $external_img) { |
994 | 994 | $uploaded_file = array(); |
995 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
995 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
996 | 996 | |
997 | 997 | if (isset($uploaded['error']) && empty($uploaded['error'])) { |
998 | 998 | $new_name = basename($uploaded['file']); |
999 | 999 | $uploaded_file = $uploaded; |
1000 | - }else{ |
|
1001 | - print_r($uploaded);exit; |
|
1000 | + } else { |
|
1001 | + print_r($uploaded); exit; |
|
1002 | 1002 | } |
1003 | 1003 | $external_img = false; |
1004 | 1004 | } else { |
1005 | - $new_name = $post_id . '_' . $file_name; |
|
1005 | + $new_name = $post_id.'_'.$file_name; |
|
1006 | 1006 | |
1007 | 1007 | if ($curr_img_dir == $sub_dir) { |
1008 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
1009 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
1008 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
1009 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
1010 | 1010 | } else { |
1011 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1012 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1011 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1012 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1013 | 1013 | } |
1014 | 1014 | |
1015 | 1015 | $uploaded_file = ''; |
1016 | 1016 | |
1017 | 1017 | if (file_exists($img_path)) { |
1018 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
1018 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
1019 | 1019 | $file_path = ''; |
1020 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) { |
|
1020 | + } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) { |
|
1021 | 1021 | $uploaded_file = true; |
1022 | - $file_path = $curr_img_dir . '/' . $filename; |
|
1022 | + $file_path = $curr_img_dir.'/'.$filename; |
|
1023 | 1023 | } |
1024 | 1024 | |
1025 | 1025 | if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
@@ -1028,14 +1028,14 @@ discard block |
||
1028 | 1028 | |
1029 | 1029 | if (!empty($uploaded_file)) { |
1030 | 1030 | if (!isset($file_path) || !$file_path) { |
1031 | - $file_path = $sub_dir . '/' . $new_name; |
|
1031 | + $file_path = $sub_dir.'/'.$new_name; |
|
1032 | 1032 | } |
1033 | 1033 | |
1034 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path); |
|
1034 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path); |
|
1035 | 1035 | |
1036 | 1036 | if ($menu_order == 1) { |
1037 | 1037 | |
1038 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1038 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1039 | 1039 | |
1040 | 1040 | } |
1041 | 1041 | |
@@ -1053,12 +1053,12 @@ discard block |
||
1053 | 1053 | |
1054 | 1054 | foreach ($attachment as $key => $val) { |
1055 | 1055 | if ($val != '') |
1056 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
1056 | + $attachment_set .= $key." = '".$val."', "; |
|
1057 | 1057 | } |
1058 | 1058 | |
1059 | 1059 | $attachment_set = trim($attachment_set, ", "); |
1060 | 1060 | |
1061 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
1061 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set); |
|
1062 | 1062 | |
1063 | 1063 | $valid_file_ids[] = $wpdb->insert_id; |
1064 | 1064 | } |
@@ -1069,17 +1069,17 @@ discard block |
||
1069 | 1069 | } else { |
1070 | 1070 | $valid_file_ids[] = $find_image; |
1071 | 1071 | |
1072 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]); |
|
1072 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]); |
|
1073 | 1073 | |
1074 | 1074 | $wpdb->query( |
1075 | 1075 | $wpdb->prepare( |
1076 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
1076 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d", |
|
1077 | 1077 | array($menu_order, $split_img_path[1], $post_id) |
1078 | 1078 | ) |
1079 | 1079 | ); |
1080 | 1080 | |
1081 | 1081 | if ($menu_order == 1) |
1082 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1082 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1083 | 1083 | |
1084 | 1084 | } |
1085 | 1085 | |
@@ -1103,9 +1103,9 @@ discard block |
||
1103 | 1103 | |
1104 | 1104 | foreach ($post_images as $img) { |
1105 | 1105 | |
1106 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) { |
|
1106 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) { |
|
1107 | 1107 | |
1108 | - $invalid_files[] = (object)array('src' => $img->src); |
|
1108 | + $invalid_files[] = (object) array('src' => $img->src); |
|
1109 | 1109 | |
1110 | 1110 | } |
1111 | 1111 | |
@@ -1113,12 +1113,12 @@ discard block |
||
1113 | 1113 | |
1114 | 1114 | } |
1115 | 1115 | |
1116 | - $invalid_files = (object)$invalid_files; |
|
1116 | + $invalid_files = (object) $invalid_files; |
|
1117 | 1117 | } |
1118 | 1118 | |
1119 | 1119 | $remove_files[] = $post_id; |
1120 | 1120 | |
1121 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files)); |
|
1121 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files)); |
|
1122 | 1122 | |
1123 | 1123 | if (!empty($invalid_files)) |
1124 | 1124 | geodir_remove_attachments($invalid_files); |
@@ -1158,7 +1158,7 @@ discard block |
||
1158 | 1158 | rmdir($dirPath); |
1159 | 1159 | } */ |
1160 | 1160 | |
1161 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
1161 | + $dirname = $uploads_dir.'/temp_'.$current_user->ID; |
|
1162 | 1162 | geodir_delete_directory($dirname); |
1163 | 1163 | } |
1164 | 1164 | |
@@ -1180,10 +1180,10 @@ discard block |
||
1180 | 1180 | return false; |
1181 | 1181 | while ($file = readdir($dir_handle)) { |
1182 | 1182 | if ($file != "." && $file != "..") { |
1183 | - if (!is_dir($dirname . "/" . $file)) |
|
1184 | - unlink($dirname . "/" . $file); |
|
1183 | + if (!is_dir($dirname."/".$file)) |
|
1184 | + unlink($dirname."/".$file); |
|
1185 | 1185 | else |
1186 | - geodir_delete_directory($dirname . '/' . $file); |
|
1186 | + geodir_delete_directory($dirname.'/'.$file); |
|
1187 | 1187 | } |
1188 | 1188 | } |
1189 | 1189 | closedir($dir_handle); |
@@ -1212,8 +1212,8 @@ discard block |
||
1212 | 1212 | foreach ($postcurr_images as $postimg) { |
1213 | 1213 | $image_name_arr = explode('/', $postimg->src); |
1214 | 1214 | $filename = end($image_name_arr); |
1215 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
1216 | - unlink($uploads_dir . '/' . $filename); |
|
1215 | + if (file_exists($uploads_dir.'/'.$filename)) |
|
1216 | + unlink($uploads_dir.'/'.$filename); |
|
1217 | 1217 | } |
1218 | 1218 | |
1219 | 1219 | } // endif |
@@ -1247,16 +1247,16 @@ discard block |
||
1247 | 1247 | } |
1248 | 1248 | |
1249 | 1249 | if (!in_array($post_type, geodir_get_posttypes())) { |
1250 | - return false;// if not a GD CPT return; |
|
1250 | + return false; // if not a GD CPT return; |
|
1251 | 1251 | } |
1252 | 1252 | |
1253 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1253 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1254 | 1254 | |
1255 | 1255 | if (!$file) { |
1256 | 1256 | if (isset($post->featured_image)) { |
1257 | 1257 | $file = $post->featured_image; |
1258 | 1258 | } else { |
1259 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id))); |
|
1259 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id))); |
|
1260 | 1260 | } |
1261 | 1261 | } |
1262 | 1262 | |
@@ -1274,7 +1274,7 @@ discard block |
||
1274 | 1274 | |
1275 | 1275 | $file_name = $file_info['basename']; |
1276 | 1276 | |
1277 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1277 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
1278 | 1278 | /* |
1279 | 1279 | * Allows the filter of image src for such things as CDN change. |
1280 | 1280 | * |
@@ -1284,8 +1284,8 @@ discard block |
||
1284 | 1284 | * @param string $uploads_url The server upload directory url. |
1285 | 1285 | * @param string $uploads_baseurl The uploads dir base url. |
1286 | 1286 | */ |
1287 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1288 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1287 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl); |
|
1288 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1289 | 1289 | $width = 0; |
1290 | 1290 | $height = 0; |
1291 | 1291 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
@@ -1328,7 +1328,7 @@ discard block |
||
1328 | 1328 | $file_name = $file_info['basename']; |
1329 | 1329 | |
1330 | 1330 | $img_arr['src'] = $default_img; |
1331 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1331 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1332 | 1332 | |
1333 | 1333 | $width = 0; |
1334 | 1334 | $height = 0; |
@@ -1345,7 +1345,7 @@ discard block |
||
1345 | 1345 | } |
1346 | 1346 | |
1347 | 1347 | if (!empty($img_arr)) |
1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1348 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1349 | 1349 | else |
1350 | 1350 | return false; |
1351 | 1351 | } |
@@ -1408,7 +1408,7 @@ discard block |
||
1408 | 1408 | |
1409 | 1409 | $arrImages = $wpdb->get_results( |
1410 | 1410 | $wpdb->prepare( |
1411 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
1411 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d".$not_featured." ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
1412 | 1412 | array('%image%', $post_id) |
1413 | 1413 | ) |
1414 | 1414 | ); |
@@ -1434,7 +1434,7 @@ discard block |
||
1434 | 1434 | |
1435 | 1435 | $file_name = $file_info['basename']; |
1436 | 1436 | |
1437 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1437 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
1438 | 1438 | /* |
1439 | 1439 | * Allows the filter of image src for such things as CDN change. |
1440 | 1440 | * |
@@ -1444,8 +1444,8 @@ discard block |
||
1444 | 1444 | * @param string $uploads_url The server upload directory url. |
1445 | 1445 | * @param string $uploads_baseurl The uploads dir base url. |
1446 | 1446 | */ |
1447 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1448 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1447 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl); |
|
1448 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1449 | 1449 | $width = 0; |
1450 | 1450 | $height = 0; |
1451 | 1451 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
@@ -1462,11 +1462,11 @@ discard block |
||
1462 | 1462 | $img_arr['content'] = $attechment->content; // add the description to the array |
1463 | 1463 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
1464 | 1464 | |
1465 | - $return_arr[] = (object)$img_arr; |
|
1465 | + $return_arr[] = (object) $img_arr; |
|
1466 | 1466 | |
1467 | 1467 | $counter++; |
1468 | 1468 | } |
1469 | - return (object)$return_arr; |
|
1469 | + return (object) $return_arr; |
|
1470 | 1470 | } else if ($no_images) { |
1471 | 1471 | $default_img = ''; |
1472 | 1472 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1505,7 +1505,7 @@ discard block |
||
1505 | 1505 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
1506 | 1506 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
1507 | 1507 | |
1508 | - $return_arr[] = (object)$img_arr; |
|
1508 | + $return_arr[] = (object) $img_arr; |
|
1509 | 1509 | |
1510 | 1510 | return $return_arr; |
1511 | 1511 | } else |
@@ -1532,8 +1532,8 @@ discard block |
||
1532 | 1532 | |
1533 | 1533 | $html = ''; |
1534 | 1534 | if (!empty($request)) { |
1535 | - if (!is_object($request)){ |
|
1536 | - $request = (object)$request; |
|
1535 | + if (!is_object($request)) { |
|
1536 | + $request = (object) $request; |
|
1537 | 1537 | } |
1538 | 1538 | |
1539 | 1539 | if (isset($request->src) && !isset($request->path)) { |
@@ -1547,7 +1547,7 @@ discard block |
||
1547 | 1547 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path); |
1548 | 1548 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']); |
1549 | 1549 | if (strpos($img_no_http, $upload_no_http) !== false) { |
1550 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
1550 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
1551 | 1551 | } |
1552 | 1552 | |
1553 | 1553 | $width = 0; |
@@ -1562,7 +1562,7 @@ discard block |
||
1562 | 1562 | $image->width = $width; |
1563 | 1563 | $image->height = $height; |
1564 | 1564 | |
1565 | - $max_size = (object)geodir_get_imagesize($size); |
|
1565 | + $max_size = (object) geodir_get_imagesize($size); |
|
1566 | 1566 | |
1567 | 1567 | if (!is_wp_error($max_size)) { |
1568 | 1568 | if ($image->width) { |
@@ -1574,10 +1574,10 @@ discard block |
||
1574 | 1574 | $width_per = 100; |
1575 | 1575 | } |
1576 | 1576 | |
1577 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){ |
|
1578 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
1577 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) { |
|
1578 | + $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'" /></div>'; |
|
1579 | 1579 | } else { |
1580 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
1580 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>'; |
|
1581 | 1581 | } |
1582 | 1582 | } |
1583 | 1583 | } |
@@ -1610,15 +1610,15 @@ discard block |
||
1610 | 1610 | |
1611 | 1611 | $post_type = get_post_type($post_id); |
1612 | 1612 | |
1613 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1613 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1614 | 1614 | |
1615 | 1615 | if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) { |
1616 | 1616 | |
1617 | - if ($taxonomy == $post_type . '_tags') { |
|
1617 | + if ($taxonomy == $post_type.'_tags') { |
|
1618 | 1618 | if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
1619 | 1619 | geodir_save_post_meta($post_id, 'post_tags', $terms); |
1620 | 1620 | } |
1621 | - } elseif ($taxonomy == $post_type . 'category') { |
|
1621 | + } elseif ($taxonomy == $post_type.'category') { |
|
1622 | 1622 | $srcharr = array('"', '\\'); |
1623 | 1623 | $replarr = array(""", ''); |
1624 | 1624 | |
@@ -1640,7 +1640,7 @@ discard block |
||
1640 | 1640 | |
1641 | 1641 | $wpdb->get_var( |
1642 | 1642 | $wpdb->prepare( |
1643 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1643 | + "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1644 | 1644 | $cat_ids_array_del |
1645 | 1645 | ) |
1646 | 1646 | ); |
@@ -1648,7 +1648,7 @@ discard block |
||
1648 | 1648 | |
1649 | 1649 | $post_term = $wpdb->get_col( |
1650 | 1650 | $wpdb->prepare( |
1651 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1651 | + "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1652 | 1652 | $cat_ids_array |
1653 | 1653 | ) |
1654 | 1654 | ); |
@@ -1670,16 +1670,16 @@ discard block |
||
1670 | 1670 | $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
1671 | 1671 | $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
1672 | 1672 | |
1673 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1674 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
1673 | + $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1674 | + $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true); |
|
1675 | 1675 | |
1676 | 1676 | $json = '{'; |
1677 | - $json .= '"id":"' . $post_id . '",'; |
|
1678 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
1679 | - $json .= '"long_pos": "' . $lng . '",'; |
|
1680 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
1681 | - $json .= '"icon":"' . $term_icon . '",'; |
|
1682 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
1677 | + $json .= '"id":"'.$post_id.'",'; |
|
1678 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
1679 | + $json .= '"long_pos": "'.$lng.'",'; |
|
1680 | + $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",'; |
|
1681 | + $json .= '"icon":"'.$term_icon.'",'; |
|
1682 | + $json .= '"group":"catgroup'.$cat_id.'"'; |
|
1683 | 1683 | $json .= '}'; |
1684 | 1684 | |
1685 | 1685 | |
@@ -1687,9 +1687,9 @@ discard block |
||
1687 | 1687 | $post_marker_json = $json; |
1688 | 1688 | |
1689 | 1689 | |
1690 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
|
1690 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".GEODIR_ICON_TABLE." WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) { |
|
1691 | 1691 | |
1692 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET |
|
1692 | + $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET |
|
1693 | 1693 | post_title = %s, |
1694 | 1694 | json = %s |
1695 | 1695 | WHERE post_id = %d AND cat_id = %d ", |
@@ -1697,7 +1697,7 @@ discard block |
||
1697 | 1697 | |
1698 | 1698 | } else { |
1699 | 1699 | |
1700 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET |
|
1700 | + $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET |
|
1701 | 1701 | post_id = %d, |
1702 | 1702 | post_title = %s, |
1703 | 1703 | cat_id = %d, |
@@ -1715,17 +1715,17 @@ discard block |
||
1715 | 1715 | if (!empty($post_term) && is_array($post_term)) { |
1716 | 1716 | $categories = implode(',', $post_term); |
1717 | 1717 | |
1718 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
1718 | + if ($categories != '' && $categories != 0) $categories = ','.$categories.','; |
|
1719 | 1719 | |
1720 | 1720 | if (empty($post_marker_json)) |
1721 | 1721 | $post_marker_json = isset($json) ? $json : ''; |
1722 | 1722 | |
1723 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
1723 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
1724 | 1724 | |
1725 | 1725 | $wpdb->query( |
1726 | 1726 | $wpdb->prepare( |
1727 | - "UPDATE " . $table . " SET |
|
1728 | - " . $taxonomy . " = %s, |
|
1727 | + "UPDATE ".$table." SET |
|
1728 | + " . $taxonomy." = %s, |
|
1729 | 1729 | marker_json = %s |
1730 | 1730 | where post_id = %d", |
1731 | 1731 | array($categories, $post_marker_json, $post_id) |
@@ -1746,7 +1746,7 @@ discard block |
||
1746 | 1746 | |
1747 | 1747 | $wpdb->query( |
1748 | 1748 | $wpdb->prepare( |
1749 | - "UPDATE " . $table . " SET |
|
1749 | + "UPDATE ".$table." SET |
|
1750 | 1750 | default_category = %s |
1751 | 1751 | where post_id = %d", |
1752 | 1752 | array($categories[0], $post_id) |
@@ -1771,9 +1771,9 @@ discard block |
||
1771 | 1771 | |
1772 | 1772 | $wpdb->query( |
1773 | 1773 | $wpdb->prepare( |
1774 | - "INSERT INTO " . $table . " SET |
|
1774 | + "INSERT INTO ".$table." SET |
|
1775 | 1775 | post_id = %d, |
1776 | - " . $taxonomy . " = %s, |
|
1776 | + " . $taxonomy." = %s, |
|
1777 | 1777 | marker_json = %s ", |
1778 | 1778 | |
1779 | 1779 | array($post_id, $categories, $post_marker_json) |
@@ -1902,7 +1902,7 @@ discard block |
||
1902 | 1902 | } ?>"><img alt="bubble image" style="max-height:50px;" |
1903 | 1903 | src="<?php echo $post_images[0]; ?>"/></a></div> |
1904 | 1904 | <?php |
1905 | - }else{ |
|
1905 | + } else { |
|
1906 | 1906 | echo '<div class="geodir-bubble_image"></div>'; |
1907 | 1907 | } |
1908 | 1908 | } else { |
@@ -1910,7 +1910,7 @@ discard block |
||
1910 | 1910 | ?> |
1911 | 1911 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
1912 | 1912 | <?php |
1913 | - }else{ |
|
1913 | + } else { |
|
1914 | 1914 | echo '<div class="geodir-bubble_image"></div>'; |
1915 | 1915 | } |
1916 | 1916 | } |
@@ -1944,7 +1944,7 @@ discard block |
||
1944 | 1944 | * @param object $postinfo_obj The posts info as an object. |
1945 | 1945 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
1946 | 1946 | */ |
1947 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview ); |
|
1947 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview); |
|
1948 | 1948 | ?> |
1949 | 1949 | </div> |
1950 | 1950 | <?php |
@@ -1956,10 +1956,10 @@ discard block |
||
1956 | 1956 | <div class="geodir-bubble-meta-fade"></div> |
1957 | 1957 | |
1958 | 1958 | <div class="geodir-bubble-meta-bottom"> |
1959 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
1959 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
1960 | 1960 | |
1961 | 1961 | <span |
1962 | - class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
1962 | + class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
1963 | 1963 | <span class="geodir-bubble-reviews"><a href="<?php echo get_comments_link($ID); ?>" |
1964 | 1964 | class="geodir-pcomments"><i class="fa fa-comments"></i> |
1965 | 1965 | <?php echo get_comments_number($ID); ?> |
@@ -2024,11 +2024,11 @@ discard block |
||
2024 | 2024 | |
2025 | 2025 | $post_type = get_post_type($post_id); |
2026 | 2026 | |
2027 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2027 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2028 | 2028 | |
2029 | 2029 | $wpdb->query( |
2030 | 2030 | $wpdb->prepare( |
2031 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
2031 | + "UPDATE ".$table." SET post_status=%s WHERE post_id=%d", |
|
2032 | 2032 | array($status, $post_id) |
2033 | 2033 | ) |
2034 | 2034 | ); |
@@ -2100,18 +2100,18 @@ discard block |
||
2100 | 2100 | |
2101 | 2101 | $post_type = get_post_type($post_id); |
2102 | 2102 | |
2103 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2103 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2104 | 2104 | |
2105 | 2105 | $wpdb->query( |
2106 | 2106 | $wpdb->prepare( |
2107 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2107 | + "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d", |
|
2108 | 2108 | array($updatingpost, $temppost) |
2109 | 2109 | ) |
2110 | 2110 | ); |
2111 | 2111 | |
2112 | 2112 | $wpdb->query( |
2113 | 2113 | $wpdb->prepare( |
2114 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2114 | + "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
2115 | 2115 | array($updatingpost, $temppost) |
2116 | 2116 | ) |
2117 | 2117 | ); |
@@ -2120,7 +2120,7 @@ discard block |
||
2120 | 2120 | |
2121 | 2121 | $wpdb->query( |
2122 | 2122 | $wpdb->prepare( |
2123 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2123 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
2124 | 2124 | array($updatingpost, $temppost) |
2125 | 2125 | ) |
2126 | 2126 | ); |
@@ -2158,12 +2158,12 @@ discard block |
||
2158 | 2158 | if (!in_array($post_type, $all_postypes)) |
2159 | 2159 | return false; |
2160 | 2160 | |
2161 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2161 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2162 | 2162 | |
2163 | 2163 | /* Delete custom post meta*/ |
2164 | 2164 | $wpdb->query( |
2165 | 2165 | $wpdb->prepare( |
2166 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
2166 | + "DELETE FROM ".$table." WHERE `post_id` = %d", |
|
2167 | 2167 | array($deleted_postid) |
2168 | 2168 | ) |
2169 | 2169 | ); |
@@ -2172,7 +2172,7 @@ discard block |
||
2172 | 2172 | |
2173 | 2173 | $wpdb->query( |
2174 | 2174 | $wpdb->prepare( |
2175 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
2175 | + "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d", |
|
2176 | 2176 | array($deleted_postid) |
2177 | 2177 | ) |
2178 | 2178 | ); |
@@ -2182,7 +2182,7 @@ discard block |
||
2182 | 2182 | |
2183 | 2183 | $wpdb->query( |
2184 | 2184 | $wpdb->prepare( |
2185 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
2185 | + "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d", |
|
2186 | 2186 | array($deleted_postid) |
2187 | 2187 | ) |
2188 | 2188 | ); |
@@ -2254,7 +2254,7 @@ discard block |
||
2254 | 2254 | */ |
2255 | 2255 | do_action('geodir_before_add_from_favorite', $post_id); |
2256 | 2256 | |
2257 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
2257 | + echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>'; |
|
2258 | 2258 | |
2259 | 2259 | /** |
2260 | 2260 | * Called after adding the post from favourites. |
@@ -2333,7 +2333,7 @@ discard block |
||
2333 | 2333 | */ |
2334 | 2334 | do_action('geodir_before_remove_from_favorite', $post_id); |
2335 | 2335 | |
2336 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
2336 | + echo '<a href="javascript:void(0);" title="'.$add_favourite_text.'" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>'; |
|
2337 | 2337 | |
2338 | 2338 | /** |
2339 | 2339 | * Called after removing the post from favourites. |
@@ -2428,24 +2428,24 @@ discard block |
||
2428 | 2428 | $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
2429 | 2429 | |
2430 | 2430 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) { |
2431 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
2431 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
2432 | 2432 | class="geodir-removetofav-icon" href="javascript:void(0);" |
2433 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
2434 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
2433 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
2434 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
2435 | 2435 | </a> </span><?php |
2436 | 2436 | |
2437 | 2437 | } else { |
2438 | 2438 | |
2439 | 2439 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') { |
2440 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
2440 | + $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\''; |
|
2441 | 2441 | } else |
2442 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2442 | + $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')'; |
|
2443 | 2443 | |
2444 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
2444 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
2445 | 2445 | href="javascript:void(0);" |
2446 | - onclick="<?php echo $script_text;?>" |
|
2447 | - title="<?php echo $add_favourite_text;?>"><i |
|
2448 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
2446 | + onclick="<?php echo $script_text; ?>" |
|
2447 | + title="<?php echo $add_favourite_text; ?>"><i |
|
2448 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
2449 | 2449 | <?php } |
2450 | 2450 | } |
2451 | 2451 | } |
@@ -2475,7 +2475,7 @@ discard block |
||
2475 | 2475 | |
2476 | 2476 | $post_type = $taxonomy_obj->object_type[0]; |
2477 | 2477 | |
2478 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2478 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2479 | 2479 | |
2480 | 2480 | /** |
2481 | 2481 | * Filter to modify the 'join' query |
@@ -2498,8 +2498,8 @@ discard block |
||
2498 | 2498 | $where = apply_filters('geodir_cat_post_count_where', $where, $term); |
2499 | 2499 | |
2500 | 2500 | $count_query = "SELECT count(post_id) FROM |
2501 | - " . $table . " as pd " . $join . " |
|
2502 | - WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where; |
|
2501 | + " . $table." as pd ".$join." |
|
2502 | + WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where; |
|
2503 | 2503 | |
2504 | 2504 | $cat_post_count = $wpdb->get_var($count_query); |
2505 | 2505 | if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
@@ -2582,7 +2582,7 @@ discard block |
||
2582 | 2582 | global $post; |
2583 | 2583 | $all_postypes = geodir_get_posttypes(); |
2584 | 2584 | if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) { |
2585 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
2585 | + return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>'; |
|
2586 | 2586 | } |
2587 | 2587 | |
2588 | 2588 | return $more; |
@@ -2609,14 +2609,14 @@ discard block |
||
2609 | 2609 | if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) { |
2610 | 2610 | |
2611 | 2611 | $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
2612 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
2612 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
2613 | 2613 | |
2614 | 2614 | $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
2615 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
2615 | + $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png'; |
|
2616 | 2616 | |
2617 | 2617 | $posts = $wpdb->get_results( |
2618 | 2618 | $wpdb->prepare( |
2619 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2619 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2620 | 2620 | array($term_id, $taxonomy) |
2621 | 2621 | ) |
2622 | 2622 | ); |
@@ -2628,19 +2628,19 @@ discard block |
||
2628 | 2628 | $lng = $post_obj->post_longitude; |
2629 | 2629 | |
2630 | 2630 | $json = '{'; |
2631 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
2632 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
2633 | - $json .= '"long_pos": "' . $lng . '",'; |
|
2634 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
2635 | - $json .= '"icon":"' . $term_icon . '",'; |
|
2636 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
2631 | + $json .= '"id":"'.$post_obj->post_id.'",'; |
|
2632 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
2633 | + $json .= '"long_pos": "'.$lng.'",'; |
|
2634 | + $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",'; |
|
2635 | + $json .= '"icon":"'.$term_icon.'",'; |
|
2636 | + $json .= '"group":"catgroup'.$term_id.'"'; |
|
2637 | 2637 | $json .= '}'; |
2638 | 2638 | |
2639 | 2639 | if ($post_obj->default_category == $term_id) { |
2640 | 2640 | |
2641 | 2641 | $wpdb->query( |
2642 | 2642 | $wpdb->prepare( |
2643 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
2643 | + "UPDATE ".$table." SET marker_json = %s where post_id = %d", |
|
2644 | 2644 | array($json, $post_obj->post_id) |
2645 | 2645 | ) |
2646 | 2646 | ); |
@@ -2648,7 +2648,7 @@ discard block |
||
2648 | 2648 | |
2649 | 2649 | $wpdb->query( |
2650 | 2650 | $wpdb->prepare( |
2651 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2651 | + "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2652 | 2652 | array($json, $post_obj->post_id, $term_id) |
2653 | 2653 | ) |
2654 | 2654 | ); |
@@ -2772,7 +2772,7 @@ discard block |
||
2772 | 2772 | // print_r($uploads ) ; |
2773 | 2773 | $post_first_image = $wpdb->get_results( |
2774 | 2774 | $wpdb->prepare( |
2775 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2775 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2776 | 2776 | ) |
2777 | 2777 | ); |
2778 | 2778 | |
@@ -2793,9 +2793,9 @@ discard block |
||
2793 | 2793 | |
2794 | 2794 | $post_type = get_post_type($post_id); |
2795 | 2795 | |
2796 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
2796 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
2797 | 2797 | |
2798 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id); |
|
2798 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id); |
|
2799 | 2799 | |
2800 | 2800 | $new_attachment_name = basename($post_first_image[0]->file); |
2801 | 2801 | |
@@ -2808,11 +2808,11 @@ discard block |
||
2808 | 2808 | wp_delete_attachment($post_thumbnail_id); |
2809 | 2809 | |
2810 | 2810 | } |
2811 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
2811 | + $filename = $uploads['basedir'].$post_first_image[0]->file; |
|
2812 | 2812 | |
2813 | 2813 | $attachment = array( |
2814 | 2814 | 'post_mime_type' => $post_first_image[0]->mime_type, |
2815 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
2815 | + 'guid' => $uploads['baseurl'].$post_first_image[0]->file, |
|
2816 | 2816 | 'post_parent' => $post_id, |
2817 | 2817 | 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title), |
2818 | 2818 | 'post_content' => '' |
@@ -2825,7 +2825,7 @@ discard block |
||
2825 | 2825 | |
2826 | 2826 | set_post_thumbnail($post_id, $id); |
2827 | 2827 | |
2828 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
2828 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
2829 | 2829 | wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
2830 | 2830 | |
2831 | 2831 | } |
@@ -2858,35 +2858,35 @@ discard block |
||
2858 | 2858 | $post_id = absint($_POST['post_id']); |
2859 | 2859 | $upload_dir = wp_upload_dir(); |
2860 | 2860 | $post_type = get_post_type($_POST['post_id']); |
2861 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2861 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2862 | 2862 | |
2863 | 2863 | $post_arr = $wpdb->get_results($wpdb->prepare( |
2864 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
2864 | + "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
2865 | 2865 | array($post_id) |
2866 | 2866 | ) |
2867 | 2867 | , ARRAY_A); |
2868 | 2868 | |
2869 | 2869 | $arrImages = $wpdb->get_results( |
2870 | 2870 | $wpdb->prepare( |
2871 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
2871 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
2872 | 2872 | array('%image%', $post_id) |
2873 | 2873 | ) |
2874 | 2874 | ); |
2875 | 2875 | if ($arrImages) { |
2876 | 2876 | $image_arr = array(); |
2877 | 2877 | foreach ($arrImages as $img) { |
2878 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
2878 | + $image_arr[] = $upload_dir['baseurl'].$img->file; |
|
2879 | 2879 | } |
2880 | 2880 | $comma_separated = implode(",", $image_arr); |
2881 | 2881 | $post_arr[0]['post_images'] = $comma_separated; |
2882 | 2882 | } |
2883 | 2883 | |
2884 | 2884 | |
2885 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
2885 | + $cats = $post_arr[0][$post_arr[0]['post_type'].'category']; |
|
2886 | 2886 | $cat_arr = array_filter(explode(",", $cats)); |
2887 | 2887 | $trans_cat = array(); |
2888 | 2888 | foreach ($cat_arr as $cat) { |
2889 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
2889 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false); |
|
2890 | 2890 | } |
2891 | 2891 | |
2892 | 2892 | |
@@ -2928,7 +2928,7 @@ discard block |
||
2928 | 2928 | |
2929 | 2929 | $get_data = $wpdb->get_results( |
2930 | 2930 | $wpdb->prepare( |
2931 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
2931 | + "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'", |
|
2932 | 2932 | array($listing_type) |
2933 | 2933 | ) |
2934 | 2934 | ); |
@@ -2941,12 +2941,12 @@ discard block |
||
2941 | 2941 | |
2942 | 2942 | $extra_fields = unserialize($data->extra_fields); |
2943 | 2943 | |
2944 | - $prefix = $data->htmlvar_name . '_'; |
|
2944 | + $prefix = $data->htmlvar_name.'_'; |
|
2945 | 2945 | |
2946 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
2946 | + $fields_info[$prefix.'address'] = $data->field_type; |
|
2947 | 2947 | |
2948 | 2948 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
2949 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
2949 | + $fields_info[$prefix.'zip'] = $data->field_type; |
|
2950 | 2950 | |
2951 | 2951 | } else { |
2952 | 2952 | |
@@ -3044,13 +3044,13 @@ discard block |
||
3044 | 3044 | * @since 1.4.9 |
3045 | 3045 | * @package GeoDirectory |
3046 | 3046 | */ |
3047 | -function geodir_fb_like_thumbnail(){ |
|
3047 | +function geodir_fb_like_thumbnail() { |
|
3048 | 3048 | |
3049 | 3049 | // return if not a single post |
3050 | - if(!is_single()){return;} |
|
3050 | + if (!is_single()) {return; } |
|
3051 | 3051 | |
3052 | 3052 | global $post; |
3053 | - if(isset($post->featured_image) && $post->featured_image){ |
|
3053 | + if (isset($post->featured_image) && $post->featured_image) { |
|
3054 | 3054 | $upload_dir = wp_upload_dir(); |
3055 | 3055 | $thumb = $upload_dir['baseurl'].$post->featured_image; |
3056 | 3056 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |