@@ -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 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | |
146 | 146 | $gd_post = $post; |
147 | 147 | if (!empty($gd_post) && is_array($gd_post)) { |
148 | - $gd_post = (object)$post; |
|
148 | + $gd_post = (object) $post; |
|
149 | 149 | |
150 | 150 | // Fix WPML duplicate. |
151 | 151 | if (geodir_is_wpml() && !empty($request_info['action']) && $request_info['action'] == 'editpost' && !empty($request_info['icl_trid']) && !isset($post['post_date'])) { |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | $send_post_submit_mail = false; |
240 | 240 | |
241 | 241 | // unhook this function so it doesn't loop infinitely |
242 | - remove_action('save_post', 'geodir_post_information_save',10,2); |
|
242 | + remove_action('save_post', 'geodir_post_information_save', 10, 2); |
|
243 | 243 | |
244 | 244 | if (isset($request_info['pid']) && $request_info['pid'] != '') { |
245 | 245 | $post['ID'] = $request_info['pid']; |
@@ -263,13 +263,13 @@ discard block |
||
263 | 263 | } |
264 | 264 | |
265 | 265 | // re-hook this function |
266 | - add_action('save_post', 'geodir_post_information_save',10,2); |
|
266 | + add_action('save_post', 'geodir_post_information_save', 10, 2); |
|
267 | 267 | |
268 | 268 | $post_tags = ''; |
269 | 269 | if (!isset($request_info['post_tags'])) { |
270 | 270 | |
271 | 271 | $post_type = $request_info['listing_type']; |
272 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names'))); |
|
272 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names'))); |
|
273 | 273 | |
274 | 274 | } |
275 | 275 | |
@@ -287,13 +287,13 @@ discard block |
||
287 | 287 | $payment_info = array(); |
288 | 288 | $package_info = array(); |
289 | 289 | |
290 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
290 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
291 | 291 | |
292 | 292 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
293 | 293 | |
294 | 294 | if (!empty($package_info) && !$post_package_id) { |
295 | 295 | if (isset($package_info['days']) && $package_info['days'] != 0) { |
296 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days")); |
|
296 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days")); |
|
297 | 297 | } else { |
298 | 298 | $payment_info['expire_date'] = 'Never'; |
299 | 299 | } |
@@ -314,8 +314,8 @@ discard block |
||
314 | 314 | $extrafields = $val['extra_fields']; |
315 | 315 | |
316 | 316 | if (trim($type) == 'address') { |
317 | - $prefix = $name . '_'; |
|
318 | - $address = $prefix . 'address'; |
|
317 | + $prefix = $name.'_'; |
|
318 | + $address = $prefix.'address'; |
|
319 | 319 | |
320 | 320 | if (isset($request_info[$address]) && $request_info[$address] != '') { |
321 | 321 | $gd_post_info[$address] = wp_slash($request_info[$address]); |
@@ -325,59 +325,59 @@ discard block |
||
325 | 325 | $extrafields = unserialize($extrafields); |
326 | 326 | |
327 | 327 | |
328 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') { |
|
328 | + if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') { |
|
329 | 329 | |
330 | 330 | $location_result = geodir_get_default_location(); |
331 | 331 | |
332 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
333 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
334 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
332 | + $gd_post_info[$prefix.'city'] = $location_result->city; |
|
333 | + $gd_post_info[$prefix.'region'] = $location_result->region; |
|
334 | + $gd_post_info[$prefix.'country'] = $location_result->country; |
|
335 | 335 | |
336 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
336 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
337 | 337 | |
338 | 338 | } else { |
339 | 339 | |
340 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
341 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
342 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
340 | + $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city']; |
|
341 | + $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region']; |
|
342 | + $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country']; |
|
343 | 343 | |
344 | 344 | //----------set post locations when import dummy data------- |
345 | 345 | $location_result = geodir_get_default_location(); |
346 | 346 | |
347 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
347 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
348 | 348 | //----------------------------------------------------------------- |
349 | 349 | |
350 | 350 | } |
351 | 351 | |
352 | 352 | |
353 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) { |
|
354 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
353 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) { |
|
354 | + $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip']; |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | |
358 | 358 | if (isset($extrafields['show_map']) && $extrafields['show_map']) { |
359 | 359 | |
360 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') { |
|
361 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
360 | + if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') { |
|
361 | + $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude']; |
|
362 | 362 | } |
363 | 363 | |
364 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') { |
|
365 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
364 | + if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') { |
|
365 | + $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude']; |
|
366 | 366 | } |
367 | 367 | |
368 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') { |
|
369 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
368 | + if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') { |
|
369 | + $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview']; |
|
370 | 370 | } |
371 | 371 | |
372 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') { |
|
373 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
372 | + if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') { |
|
373 | + $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom']; |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | } |
377 | 377 | |
378 | 378 | // show lat lng |
379 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) { |
|
380 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
379 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) { |
|
380 | + $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng']; |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | |
@@ -403,16 +403,16 @@ discard block |
||
403 | 403 | |
404 | 404 | // check if we need to change the format or not |
405 | 405 | $date_format_len = strlen(str_replace(' ', '', $date_format)); |
406 | - if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
406 | + if ($date_format_len > 5) {// if greater then 5 then it's the old style format. |
|
407 | 407 | |
408 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
409 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
408 | + $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format |
|
409 | + $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format |
|
410 | 410 | |
411 | 411 | $date_format = str_replace($search, $replace, $date_format); |
412 | 412 | |
413 | 413 | $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; |
414 | 414 | |
415 | - }else{ |
|
415 | + } else { |
|
416 | 416 | $post_htmlvar_value = $request_info[$name]; |
417 | 417 | } |
418 | 418 | |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | if (isset($request_info[$name])) { |
427 | 427 | $gd_post_info[$name] = $request_info[$name]; |
428 | 428 | } else { |
429 | - if (isset($request_info['gd_field_' . $name])) { |
|
429 | + if (isset($request_info['gd_field_'.$name])) { |
|
430 | 430 | $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
431 | 431 | } |
432 | 432 | } |
@@ -486,7 +486,7 @@ discard block |
||
486 | 486 | } |
487 | 487 | |
488 | 488 | if (is_array($post_tags)) { |
489 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
489 | + $taxonomy = $request_info['listing_type'].'_tags'; |
|
490 | 490 | wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
491 | 491 | } |
492 | 492 | |
@@ -498,7 +498,7 @@ discard block |
||
498 | 498 | $tmpimgArr = trim($request_info['post_images'], ","); |
499 | 499 | $tmpimgArr = explode(",", $tmpimgArr); |
500 | 500 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
501 | - } else{ |
|
501 | + } else { |
|
502 | 502 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
503 | 503 | } |
504 | 504 | |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | if (!in_array($post_type, $all_postypes)) |
580 | 580 | return false; |
581 | 581 | |
582 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
582 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
583 | 583 | |
584 | 584 | /** |
585 | 585 | * Apply Filter to change Post info |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | * @since 1.0.0 |
590 | 590 | * @package GeoDirectory |
591 | 591 | */ |
592 | - $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd |
|
592 | + $query = apply_filters('geodir_post_info_query', $wpdb->prepare("SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd |
|
593 | 593 | WHERE p.ID = pd.post_id |
594 | 594 | AND pd.post_id = %d", $post_id)); |
595 | 595 | |
@@ -652,7 +652,7 @@ discard block |
||
652 | 652 | |
653 | 653 | $post_type = get_post_type($post_id); |
654 | 654 | |
655 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
655 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
656 | 656 | |
657 | 657 | /** |
658 | 658 | * Filter to change Post info |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | |
674 | 674 | $columns = $wpdb->get_col("show columns from $table"); |
675 | 675 | foreach ($postmeta as $mkey => $mval) { |
676 | - if(in_array($mkey,$columns)) { |
|
676 | + if (in_array($mkey, $columns)) { |
|
677 | 677 | if (is_array($mval)) { |
678 | 678 | $mval = implode(",", $mval); |
679 | 679 | } |
@@ -702,12 +702,12 @@ discard block |
||
702 | 702 | */ |
703 | 703 | do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id); |
704 | 704 | |
705 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
705 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
706 | 706 | |
707 | 707 | $query_string_array[] = $post_id; |
708 | 708 | $wpdb->query( |
709 | 709 | $wpdb->prepare( |
710 | - "UPDATE " . $table . " SET " . $query_string_escaped . " where post_id =%d", |
|
710 | + "UPDATE ".$table." SET ".$query_string_escaped." where post_id =%d", |
|
711 | 711 | $query_string_array |
712 | 712 | ) |
713 | 713 | ); |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | array_unshift($query_string_array, $post_id); |
719 | 719 | $wpdb->query( |
720 | 720 | $wpdb->prepare( |
721 | - "INSERT INTO " . $table . " SET post_id = %d," . $query_string_escaped, |
|
721 | + "INSERT INTO ".$table." SET post_id = %d,".$query_string_escaped, |
|
722 | 722 | $query_string_array |
723 | 723 | ) |
724 | 724 | ); |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | |
765 | 765 | $post_type = get_post_type($post_id); |
766 | 766 | |
767 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
767 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
768 | 768 | |
769 | 769 | if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) { |
770 | 770 | |
@@ -772,11 +772,11 @@ discard block |
||
772 | 772 | $meta_value = implode(",", $meta_value); |
773 | 773 | } |
774 | 774 | |
775 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
775 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
776 | 776 | |
777 | 777 | $wpdb->query( |
778 | 778 | $wpdb->prepare( |
779 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
779 | + "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d", |
|
780 | 780 | array($post_id) |
781 | 781 | ) |
782 | 782 | ); |
@@ -785,7 +785,7 @@ discard block |
||
785 | 785 | |
786 | 786 | $wpdb->query( |
787 | 787 | $wpdb->prepare( |
788 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
788 | + "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'", |
|
789 | 789 | array($post_id) |
790 | 790 | ) |
791 | 791 | ); |
@@ -818,14 +818,14 @@ discard block |
||
818 | 818 | |
819 | 819 | $post_type = get_post_type($post_id); |
820 | 820 | |
821 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
821 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
822 | 822 | |
823 | 823 | if (is_array($postmeta) && !empty($postmeta) && $post_id) { |
824 | 824 | $post_meta_set_query = ''; |
825 | 825 | |
826 | 826 | foreach ($postmeta as $mkey) { |
827 | 827 | if ($mval != '') |
828 | - $post_meta_set_query .= $mkey . " = '', "; |
|
828 | + $post_meta_set_query .= $mkey." = '', "; |
|
829 | 829 | } |
830 | 830 | |
831 | 831 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
@@ -834,11 +834,11 @@ discard block |
||
834 | 834 | return false; |
835 | 835 | } |
836 | 836 | |
837 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
837 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') { |
|
838 | 838 | |
839 | 839 | $wpdb->query( |
840 | 840 | $wpdb->prepare( |
841 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
841 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d", |
|
842 | 842 | array($post_id) |
843 | 843 | ) |
844 | 844 | ); |
@@ -847,11 +847,11 @@ discard block |
||
847 | 847 | } |
848 | 848 | |
849 | 849 | } elseif ($postmeta != '' && $post_id) { |
850 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') { |
|
850 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') { |
|
851 | 851 | |
852 | 852 | $wpdb->query( |
853 | 853 | $wpdb->prepare( |
854 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
854 | + "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d", |
|
855 | 855 | array($post_id) |
856 | 856 | ) |
857 | 857 | ); |
@@ -893,10 +893,10 @@ discard block |
||
893 | 893 | if (!in_array($post_type, $all_postypes)) |
894 | 894 | return false; |
895 | 895 | |
896 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
896 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
897 | 897 | |
898 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') { |
|
899 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id))); |
|
898 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') { |
|
899 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id))); |
|
900 | 900 | if ($meta_value && $meta_value !== '') { |
901 | 901 | return maybe_serialize($meta_value); |
902 | 902 | } else |
@@ -929,13 +929,13 @@ discard block |
||
929 | 929 | |
930 | 930 | $post_type = get_post_type($post_id); |
931 | 931 | |
932 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
932 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
933 | 933 | |
934 | 934 | $post_images = geodir_get_images($post_id); |
935 | 935 | |
936 | 936 | $wpdb->query( |
937 | 937 | $wpdb->prepare( |
938 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
938 | + "UPDATE ".$table." SET featured_image = '' where post_id =%d", |
|
939 | 939 | array($post_id) |
940 | 940 | ) |
941 | 941 | ); |
@@ -965,12 +965,12 @@ discard block |
||
965 | 965 | $file_path = ''; |
966 | 966 | /* --------- start ------- */ |
967 | 967 | |
968 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m])); |
|
968 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m])); |
|
969 | 969 | |
970 | 970 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
971 | 971 | |
972 | 972 | |
973 | - 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)))) { |
|
973 | + 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)))) { |
|
974 | 974 | |
975 | 975 | /* --------- end ------- */ |
976 | 976 | $curr_img_url = $post_image[$m]; |
@@ -1014,7 +1014,7 @@ discard block |
||
1014 | 1014 | // If the uploaded file is the right format |
1015 | 1015 | if (in_array($uploaded_file_type, $allowed_file_types)) { |
1016 | 1016 | if (!function_exists('wp_handle_upload')) { |
1017 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
1017 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
1018 | 1018 | } |
1019 | 1019 | |
1020 | 1020 | if (!is_dir($geodir_uploadpath)) { |
@@ -1022,41 +1022,41 @@ discard block |
||
1022 | 1022 | } |
1023 | 1023 | |
1024 | 1024 | $external_img = false; |
1025 | - if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) { |
|
1025 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) { |
|
1026 | 1026 | } else { |
1027 | 1027 | $external_img = true; |
1028 | 1028 | } |
1029 | 1029 | |
1030 | 1030 | if ($dummy || $external_img) { |
1031 | 1031 | $uploaded_file = array(); |
1032 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
1032 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
1033 | 1033 | |
1034 | 1034 | if (isset($uploaded['error']) && empty($uploaded['error'])) { |
1035 | 1035 | $new_name = basename($uploaded['file']); |
1036 | 1036 | $uploaded_file = $uploaded; |
1037 | - }else{ |
|
1038 | - print_r($uploaded);exit; |
|
1037 | + } else { |
|
1038 | + print_r($uploaded); exit; |
|
1039 | 1039 | } |
1040 | 1040 | $external_img = false; |
1041 | 1041 | } else { |
1042 | - $new_name = $post_id . '_' . $file_name; |
|
1042 | + $new_name = $post_id.'_'.$file_name; |
|
1043 | 1043 | |
1044 | 1044 | if ($curr_img_dir == $sub_dir) { |
1045 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
1046 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
1045 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
1046 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
1047 | 1047 | } else { |
1048 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1049 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
1048 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1049 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
1050 | 1050 | } |
1051 | 1051 | |
1052 | 1052 | $uploaded_file = ''; |
1053 | 1053 | |
1054 | 1054 | if (file_exists($img_path)) { |
1055 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
1055 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
1056 | 1056 | $file_path = ''; |
1057 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) { |
|
1057 | + } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) { |
|
1058 | 1058 | $uploaded_file = true; |
1059 | - $file_path = $curr_img_dir . '/' . $filename; |
|
1059 | + $file_path = $curr_img_dir.'/'.$filename; |
|
1060 | 1060 | } |
1061 | 1061 | |
1062 | 1062 | if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
@@ -1065,14 +1065,14 @@ discard block |
||
1065 | 1065 | |
1066 | 1066 | if (!empty($uploaded_file)) { |
1067 | 1067 | if (!isset($file_path) || !$file_path) { |
1068 | - $file_path = $sub_dir . '/' . $new_name; |
|
1068 | + $file_path = $sub_dir.'/'.$new_name; |
|
1069 | 1069 | } |
1070 | 1070 | |
1071 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path); |
|
1071 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path); |
|
1072 | 1072 | |
1073 | 1073 | if ($menu_order == 1) { |
1074 | 1074 | |
1075 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1075 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id))); |
|
1076 | 1076 | |
1077 | 1077 | } |
1078 | 1078 | |
@@ -1090,12 +1090,12 @@ discard block |
||
1090 | 1090 | |
1091 | 1091 | foreach ($attachment as $key => $val) { |
1092 | 1092 | if ($val != '') |
1093 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
1093 | + $attachment_set .= $key." = '".$val."', "; |
|
1094 | 1094 | } |
1095 | 1095 | |
1096 | 1096 | $attachment_set = trim($attachment_set, ", "); |
1097 | 1097 | |
1098 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set); |
|
1098 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set); |
|
1099 | 1099 | |
1100 | 1100 | $valid_file_ids[] = $wpdb->insert_id; |
1101 | 1101 | } |
@@ -1106,17 +1106,17 @@ discard block |
||
1106 | 1106 | } else { |
1107 | 1107 | $valid_file_ids[] = $find_image; |
1108 | 1108 | |
1109 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]); |
|
1109 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]); |
|
1110 | 1110 | |
1111 | 1111 | $wpdb->query( |
1112 | 1112 | $wpdb->prepare( |
1113 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
1113 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d", |
|
1114 | 1114 | array($menu_order, $split_img_path[1], $post_id) |
1115 | 1115 | ) |
1116 | 1116 | ); |
1117 | 1117 | |
1118 | 1118 | if ($menu_order == 1) |
1119 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1119 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
1120 | 1120 | |
1121 | 1121 | } |
1122 | 1122 | |
@@ -1140,9 +1140,9 @@ discard block |
||
1140 | 1140 | |
1141 | 1141 | foreach ($post_images as $img) { |
1142 | 1142 | |
1143 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) { |
|
1143 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) { |
|
1144 | 1144 | |
1145 | - $invalid_files[] = (object)array('src' => $img->src); |
|
1145 | + $invalid_files[] = (object) array('src' => $img->src); |
|
1146 | 1146 | |
1147 | 1147 | } |
1148 | 1148 | |
@@ -1150,12 +1150,12 @@ discard block |
||
1150 | 1150 | |
1151 | 1151 | } |
1152 | 1152 | |
1153 | - $invalid_files = (object)$invalid_files; |
|
1153 | + $invalid_files = (object) $invalid_files; |
|
1154 | 1154 | } |
1155 | 1155 | |
1156 | 1156 | $remove_files[] = $post_id; |
1157 | 1157 | |
1158 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files)); |
|
1158 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files)); |
|
1159 | 1159 | |
1160 | 1160 | if (!empty($invalid_files)) |
1161 | 1161 | geodir_remove_attachments($invalid_files); |
@@ -1195,7 +1195,7 @@ discard block |
||
1195 | 1195 | rmdir($dirPath); |
1196 | 1196 | } */ |
1197 | 1197 | |
1198 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
1198 | + $dirname = $uploads_dir.'/temp_'.$current_user->ID; |
|
1199 | 1199 | geodir_delete_directory($dirname); |
1200 | 1200 | } |
1201 | 1201 | |
@@ -1217,10 +1217,10 @@ discard block |
||
1217 | 1217 | return false; |
1218 | 1218 | while ($file = readdir($dir_handle)) { |
1219 | 1219 | if ($file != "." && $file != "..") { |
1220 | - if (!is_dir($dirname . "/" . $file)) |
|
1221 | - unlink($dirname . "/" . $file); |
|
1220 | + if (!is_dir($dirname."/".$file)) |
|
1221 | + unlink($dirname."/".$file); |
|
1222 | 1222 | else |
1223 | - geodir_delete_directory($dirname . '/' . $file); |
|
1223 | + geodir_delete_directory($dirname.'/'.$file); |
|
1224 | 1224 | } |
1225 | 1225 | } |
1226 | 1226 | closedir($dir_handle); |
@@ -1249,8 +1249,8 @@ discard block |
||
1249 | 1249 | foreach ($postcurr_images as $postimg) { |
1250 | 1250 | $image_name_arr = explode('/', $postimg->src); |
1251 | 1251 | $filename = end($image_name_arr); |
1252 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
1253 | - unlink($uploads_dir . '/' . $filename); |
|
1252 | + if (file_exists($uploads_dir.'/'.$filename)) |
|
1253 | + unlink($uploads_dir.'/'.$filename); |
|
1254 | 1254 | } |
1255 | 1255 | |
1256 | 1256 | } // endif |
@@ -1291,16 +1291,16 @@ discard block |
||
1291 | 1291 | } |
1292 | 1292 | |
1293 | 1293 | if (!in_array($post_type, geodir_get_posttypes())) { |
1294 | - return false;// if not a GD CPT return; |
|
1294 | + return false; // if not a GD CPT return; |
|
1295 | 1295 | } |
1296 | 1296 | |
1297 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1297 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1298 | 1298 | |
1299 | 1299 | if (!$file) { |
1300 | 1300 | if (isset($post->featured_image)) { |
1301 | 1301 | $file = $post->featured_image; |
1302 | 1302 | } else { |
1303 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id))); |
|
1303 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id))); |
|
1304 | 1304 | } |
1305 | 1305 | } |
1306 | 1306 | |
@@ -1311,7 +1311,7 @@ discard block |
||
1311 | 1311 | $sub_dir = ''; |
1312 | 1312 | if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
1313 | 1313 | $sub_dir = stripslashes_deep($file_info['dirname']); |
1314 | - if ((substr( $sub_dir, 0, 7 ) === "http://") || (substr( $sub_dir, 0, 8 ) === "https://")) { |
|
1314 | + if ((substr($sub_dir, 0, 7) === "http://") || (substr($sub_dir, 0, 8) === "https://")) { |
|
1315 | 1315 | $sub_dir = str_replace($uploads['baseurl'], "", $sub_dir); |
1316 | 1316 | } |
1317 | 1317 | } |
@@ -1322,7 +1322,7 @@ discard block |
||
1322 | 1322 | |
1323 | 1323 | $file_name = $file_info['basename']; |
1324 | 1324 | |
1325 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1325 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
1326 | 1326 | /* |
1327 | 1327 | * Allows the filter of image src for such things as CDN change. |
1328 | 1328 | * |
@@ -1332,8 +1332,8 @@ discard block |
||
1332 | 1332 | * @param string $uploads_url The server upload directory url. |
1333 | 1333 | * @param string $uploads_baseurl The uploads dir base url. |
1334 | 1334 | */ |
1335 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1336 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1335 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl); |
|
1336 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1337 | 1337 | $width = 0; |
1338 | 1338 | $height = 0; |
1339 | 1339 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
@@ -1376,7 +1376,7 @@ discard block |
||
1376 | 1376 | $file_name = $file_info['basename']; |
1377 | 1377 | |
1378 | 1378 | $img_arr['src'] = $default_img; |
1379 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1379 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1380 | 1380 | |
1381 | 1381 | $width = 0; |
1382 | 1382 | $height = 0; |
@@ -1393,7 +1393,7 @@ discard block |
||
1393 | 1393 | } |
1394 | 1394 | |
1395 | 1395 | if (!empty($img_arr)) |
1396 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1396 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
1397 | 1397 | else |
1398 | 1398 | return false; |
1399 | 1399 | } |
@@ -1456,7 +1456,7 @@ discard block |
||
1456 | 1456 | |
1457 | 1457 | $arrImages = $wpdb->get_results( |
1458 | 1458 | $wpdb->prepare( |
1459 | - "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 ", |
|
1459 | + "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 ", |
|
1460 | 1460 | array('%image%', $post_id) |
1461 | 1461 | ) |
1462 | 1462 | ); |
@@ -1482,7 +1482,7 @@ discard block |
||
1482 | 1482 | |
1483 | 1483 | $file_name = $file_info['basename']; |
1484 | 1484 | |
1485 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
1485 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
1486 | 1486 | /* |
1487 | 1487 | * Allows the filter of image src for such things as CDN change. |
1488 | 1488 | * |
@@ -1492,8 +1492,8 @@ discard block |
||
1492 | 1492 | * @param string $uploads_url The server upload directory url. |
1493 | 1493 | * @param string $uploads_baseurl The uploads dir base url. |
1494 | 1494 | */ |
1495 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl); |
|
1496 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
1495 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl); |
|
1496 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
1497 | 1497 | $width = 0; |
1498 | 1498 | $height = 0; |
1499 | 1499 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) { |
@@ -1510,11 +1510,11 @@ discard block |
||
1510 | 1510 | $img_arr['content'] = $attechment->content; // add the description to the array |
1511 | 1511 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
1512 | 1512 | |
1513 | - $return_arr[] = (object)$img_arr; |
|
1513 | + $return_arr[] = (object) $img_arr; |
|
1514 | 1514 | |
1515 | 1515 | $counter++; |
1516 | 1516 | } |
1517 | - return (object)$return_arr; |
|
1517 | + return (object) $return_arr; |
|
1518 | 1518 | } else if ($no_images) { |
1519 | 1519 | $default_img = ''; |
1520 | 1520 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1553,7 +1553,7 @@ discard block |
||
1553 | 1553 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
1554 | 1554 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
1555 | 1555 | |
1556 | - $return_arr[] = (object)$img_arr; |
|
1556 | + $return_arr[] = (object) $img_arr; |
|
1557 | 1557 | |
1558 | 1558 | return $return_arr; |
1559 | 1559 | } else |
@@ -1580,8 +1580,8 @@ discard block |
||
1580 | 1580 | |
1581 | 1581 | $html = ''; |
1582 | 1582 | if (!empty($request)) { |
1583 | - if (!is_object($request)){ |
|
1584 | - $request = (object)$request; |
|
1583 | + if (!is_object($request)) { |
|
1584 | + $request = (object) $request; |
|
1585 | 1585 | } |
1586 | 1586 | |
1587 | 1587 | if (isset($request->src) && !isset($request->path)) { |
@@ -1595,7 +1595,7 @@ discard block |
||
1595 | 1595 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path); |
1596 | 1596 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']); |
1597 | 1597 | if (strpos($img_no_http, $upload_no_http) !== false) { |
1598 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
1598 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
1599 | 1599 | } |
1600 | 1600 | |
1601 | 1601 | $width = 0; |
@@ -1610,7 +1610,7 @@ discard block |
||
1610 | 1610 | $image->width = $width; |
1611 | 1611 | $image->height = $height; |
1612 | 1612 | |
1613 | - $max_size = (object)geodir_get_imagesize($size); |
|
1613 | + $max_size = (object) geodir_get_imagesize($size); |
|
1614 | 1614 | |
1615 | 1615 | if (!is_wp_error($max_size)) { |
1616 | 1616 | if ($image->width) { |
@@ -1622,15 +1622,15 @@ discard block |
||
1622 | 1622 | $width_per = 100; |
1623 | 1623 | } |
1624 | 1624 | |
1625 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){ |
|
1626 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
1625 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) { |
|
1626 | + $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'" /></div>'; |
|
1627 | 1627 | } else { |
1628 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){ |
|
1629 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
1630 | - }else{ |
|
1628 | + if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) { |
|
1629 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>'; |
|
1630 | + } else { |
|
1631 | 1631 | //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
1632 | 1632 | //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
1633 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>'; |
|
1633 | + $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>'; |
|
1634 | 1634 | |
1635 | 1635 | } |
1636 | 1636 | |
@@ -1666,15 +1666,15 @@ discard block |
||
1666 | 1666 | |
1667 | 1667 | $post_type = get_post_type($post_id); |
1668 | 1668 | |
1669 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
1669 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
1670 | 1670 | |
1671 | 1671 | if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) { |
1672 | 1672 | |
1673 | - if ($taxonomy == $post_type . '_tags') { |
|
1673 | + if ($taxonomy == $post_type.'_tags') { |
|
1674 | 1674 | if (isset($_POST['action']) && $_POST['action'] == 'inline-save') { |
1675 | 1675 | geodir_save_post_meta($post_id, 'post_tags', $terms); |
1676 | 1676 | } |
1677 | - } elseif ($taxonomy == $post_type . 'category') { |
|
1677 | + } elseif ($taxonomy == $post_type.'category') { |
|
1678 | 1678 | $srcharr = array('"', '\\'); |
1679 | 1679 | $replarr = array(""", ''); |
1680 | 1680 | |
@@ -1696,7 +1696,7 @@ discard block |
||
1696 | 1696 | |
1697 | 1697 | $wpdb->get_var( |
1698 | 1698 | $wpdb->prepare( |
1699 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1699 | + "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
1700 | 1700 | $cat_ids_array_del |
1701 | 1701 | ) |
1702 | 1702 | ); |
@@ -1704,7 +1704,7 @@ discard block |
||
1704 | 1704 | |
1705 | 1705 | $post_term = $wpdb->get_col( |
1706 | 1706 | $wpdb->prepare( |
1707 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1707 | + "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
1708 | 1708 | $cat_ids_array |
1709 | 1709 | ) |
1710 | 1710 | ); |
@@ -1726,16 +1726,16 @@ discard block |
||
1726 | 1726 | $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
1727 | 1727 | $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
1728 | 1728 | |
1729 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1730 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
1729 | + $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true))); |
|
1730 | + $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true); |
|
1731 | 1731 | |
1732 | 1732 | $json = '{'; |
1733 | - $json .= '"id":"' . $post_id . '",'; |
|
1734 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
1735 | - $json .= '"long_pos": "' . $lng . '",'; |
|
1736 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
1737 | - $json .= '"icon":"' . $term_icon . '",'; |
|
1738 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
1733 | + $json .= '"id":"'.$post_id.'",'; |
|
1734 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
1735 | + $json .= '"long_pos": "'.$lng.'",'; |
|
1736 | + $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",'; |
|
1737 | + $json .= '"icon":"'.$term_icon.'",'; |
|
1738 | + $json .= '"group":"catgroup'.$cat_id.'"'; |
|
1739 | 1739 | $json .= '}'; |
1740 | 1740 | |
1741 | 1741 | |
@@ -1743,9 +1743,9 @@ discard block |
||
1743 | 1743 | $post_marker_json = $json; |
1744 | 1744 | |
1745 | 1745 | |
1746 | - 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)))) { |
|
1746 | + 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)))) { |
|
1747 | 1747 | |
1748 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET |
|
1748 | + $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET |
|
1749 | 1749 | post_title = %s, |
1750 | 1750 | json = %s |
1751 | 1751 | WHERE post_id = %d AND cat_id = %d ", |
@@ -1753,7 +1753,7 @@ discard block |
||
1753 | 1753 | |
1754 | 1754 | } else { |
1755 | 1755 | |
1756 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET |
|
1756 | + $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET |
|
1757 | 1757 | post_id = %d, |
1758 | 1758 | post_title = %s, |
1759 | 1759 | cat_id = %d, |
@@ -1771,17 +1771,17 @@ discard block |
||
1771 | 1771 | if (!empty($post_term) && is_array($post_term)) { |
1772 | 1772 | $categories = implode(',', $post_term); |
1773 | 1773 | |
1774 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
1774 | + if ($categories != '' && $categories != 0) $categories = ','.$categories.','; |
|
1775 | 1775 | |
1776 | 1776 | if (empty($post_marker_json)) |
1777 | 1777 | $post_marker_json = isset($json) ? $json : ''; |
1778 | 1778 | |
1779 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) { |
|
1779 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) { |
|
1780 | 1780 | |
1781 | 1781 | $wpdb->query( |
1782 | 1782 | $wpdb->prepare( |
1783 | - "UPDATE " . $table . " SET |
|
1784 | - " . $taxonomy . " = %s, |
|
1783 | + "UPDATE ".$table." SET |
|
1784 | + " . $taxonomy." = %s, |
|
1785 | 1785 | marker_json = %s |
1786 | 1786 | where post_id = %d", |
1787 | 1787 | array($categories, $post_marker_json, $post_id) |
@@ -1802,7 +1802,7 @@ discard block |
||
1802 | 1802 | |
1803 | 1803 | $wpdb->query( |
1804 | 1804 | $wpdb->prepare( |
1805 | - "UPDATE " . $table . " SET |
|
1805 | + "UPDATE ".$table." SET |
|
1806 | 1806 | default_category = %s |
1807 | 1807 | where post_id = %d", |
1808 | 1808 | array($categories[0], $post_id) |
@@ -1827,9 +1827,9 @@ discard block |
||
1827 | 1827 | |
1828 | 1828 | $wpdb->query( |
1829 | 1829 | $wpdb->prepare( |
1830 | - "INSERT INTO " . $table . " SET |
|
1830 | + "INSERT INTO ".$table." SET |
|
1831 | 1831 | post_id = %d, |
1832 | - " . $taxonomy . " = %s, |
|
1832 | + " . $taxonomy." = %s, |
|
1833 | 1833 | marker_json = %s ", |
1834 | 1834 | |
1835 | 1835 | array($post_id, $categories, $post_marker_json) |
@@ -1955,7 +1955,7 @@ discard block |
||
1955 | 1955 | } ?>"><img alt="bubble image" style="max-height:50px;" |
1956 | 1956 | src="<?php echo $post_images[0]; ?>"/></a></div> |
1957 | 1957 | <?php |
1958 | - }else{ |
|
1958 | + } else { |
|
1959 | 1959 | echo '<div class="geodir-bubble_image"></div>'; |
1960 | 1960 | } |
1961 | 1961 | } else { |
@@ -1963,7 +1963,7 @@ discard block |
||
1963 | 1963 | ?> |
1964 | 1964 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
1965 | 1965 | <?php |
1966 | - }else{ |
|
1966 | + } else { |
|
1967 | 1967 | echo '<div class="geodir-bubble_image"></div>'; |
1968 | 1968 | } |
1969 | 1969 | } |
@@ -1993,7 +1993,7 @@ discard block |
||
1993 | 1993 | * @param object $postinfo_obj The posts info as an object. |
1994 | 1994 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
1995 | 1995 | */ |
1996 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview ); |
|
1996 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview); |
|
1997 | 1997 | ?> |
1998 | 1998 | </div> |
1999 | 1999 | <?php |
@@ -2003,9 +2003,9 @@ discard block |
||
2003 | 2003 | <div class="geodir-bubble-meta-fade"></div> |
2004 | 2004 | <div class="geodir-bubble-meta-bottom"> |
2005 | 2005 | <?php if ($rating_star != '') { ?> |
2006 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
2006 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
2007 | 2007 | <?php } ?> |
2008 | - <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
2008 | + <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
2009 | 2009 | <span class="geodir-bubble-reviews"> |
2010 | 2010 | <a href="<?php echo get_comments_link($ID); ?>" class="geodir-pcomments"><i class="fa fa-comments"></i> <?php echo get_comments_number($ID); ?></a> |
2011 | 2011 | </span> |
@@ -2067,11 +2067,11 @@ discard block |
||
2067 | 2067 | |
2068 | 2068 | $post_type = get_post_type($post_id); |
2069 | 2069 | |
2070 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2070 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2071 | 2071 | |
2072 | 2072 | $wpdb->query( |
2073 | 2073 | $wpdb->prepare( |
2074 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
2074 | + "UPDATE ".$table." SET post_status=%s WHERE post_id=%d", |
|
2075 | 2075 | array($status, $post_id) |
2076 | 2076 | ) |
2077 | 2077 | ); |
@@ -2143,18 +2143,18 @@ discard block |
||
2143 | 2143 | |
2144 | 2144 | $post_type = get_post_type($post_id); |
2145 | 2145 | |
2146 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2146 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2147 | 2147 | |
2148 | 2148 | $wpdb->query( |
2149 | 2149 | $wpdb->prepare( |
2150 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2150 | + "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d", |
|
2151 | 2151 | array($updatingpost, $temppost) |
2152 | 2152 | ) |
2153 | 2153 | ); |
2154 | 2154 | |
2155 | 2155 | $wpdb->query( |
2156 | 2156 | $wpdb->prepare( |
2157 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2157 | + "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
2158 | 2158 | array($updatingpost, $temppost) |
2159 | 2159 | ) |
2160 | 2160 | ); |
@@ -2163,7 +2163,7 @@ discard block |
||
2163 | 2163 | |
2164 | 2164 | $wpdb->query( |
2165 | 2165 | $wpdb->prepare( |
2166 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
2166 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
2167 | 2167 | array($updatingpost, $temppost) |
2168 | 2168 | ) |
2169 | 2169 | ); |
@@ -2201,12 +2201,12 @@ discard block |
||
2201 | 2201 | if (!in_array($post_type, $all_postypes)) |
2202 | 2202 | return false; |
2203 | 2203 | |
2204 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2204 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2205 | 2205 | |
2206 | 2206 | /* Delete custom post meta*/ |
2207 | 2207 | $wpdb->query( |
2208 | 2208 | $wpdb->prepare( |
2209 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
2209 | + "DELETE FROM ".$table." WHERE `post_id` = %d", |
|
2210 | 2210 | array($deleted_postid) |
2211 | 2211 | ) |
2212 | 2212 | ); |
@@ -2215,7 +2215,7 @@ discard block |
||
2215 | 2215 | |
2216 | 2216 | $wpdb->query( |
2217 | 2217 | $wpdb->prepare( |
2218 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
2218 | + "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d", |
|
2219 | 2219 | array($deleted_postid) |
2220 | 2220 | ) |
2221 | 2221 | ); |
@@ -2225,7 +2225,7 @@ discard block |
||
2225 | 2225 | |
2226 | 2226 | $wpdb->query( |
2227 | 2227 | $wpdb->prepare( |
2228 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
2228 | + "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d", |
|
2229 | 2229 | array($deleted_postid) |
2230 | 2230 | ) |
2231 | 2231 | ); |
@@ -2297,7 +2297,7 @@ discard block |
||
2297 | 2297 | */ |
2298 | 2298 | do_action('geodir_before_add_from_favorite', $post_id); |
2299 | 2299 | |
2300 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
2300 | + echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>'; |
|
2301 | 2301 | |
2302 | 2302 | /** |
2303 | 2303 | * Called after adding the post from favourites. |
@@ -2376,7 +2376,7 @@ discard block |
||
2376 | 2376 | */ |
2377 | 2377 | do_action('geodir_before_remove_from_favorite', $post_id); |
2378 | 2378 | |
2379 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
2379 | + echo '<a href="javascript:void(0);" title="'.$add_favourite_text.'" class="geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>'; |
|
2380 | 2380 | |
2381 | 2381 | /** |
2382 | 2382 | * Called after removing the post from favourites. |
@@ -2471,24 +2471,24 @@ discard block |
||
2471 | 2471 | $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
2472 | 2472 | |
2473 | 2473 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) { |
2474 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
2474 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
2475 | 2475 | class="geodir-removetofav-icon" href="javascript:void(0);" |
2476 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
2477 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
2476 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
2477 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
2478 | 2478 | </a> </span><?php |
2479 | 2479 | |
2480 | 2480 | } else { |
2481 | 2481 | |
2482 | 2482 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') { |
2483 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
2483 | + $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\''; |
|
2484 | 2484 | } else |
2485 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
2485 | + $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')'; |
|
2486 | 2486 | |
2487 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
2487 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
2488 | 2488 | href="javascript:void(0);" |
2489 | - onclick="<?php echo $script_text;?>" |
|
2490 | - title="<?php echo $add_favourite_text;?>"><i |
|
2491 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
2489 | + onclick="<?php echo $script_text; ?>" |
|
2490 | + title="<?php echo $add_favourite_text; ?>"><i |
|
2491 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
2492 | 2492 | <?php } |
2493 | 2493 | } |
2494 | 2494 | } |
@@ -2518,7 +2518,7 @@ discard block |
||
2518 | 2518 | |
2519 | 2519 | $post_type = $taxonomy_obj->object_type[0]; |
2520 | 2520 | |
2521 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2521 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2522 | 2522 | |
2523 | 2523 | /** |
2524 | 2524 | * Filter to modify the 'join' query |
@@ -2541,8 +2541,8 @@ discard block |
||
2541 | 2541 | $where = apply_filters('geodir_cat_post_count_where', $where, $term); |
2542 | 2542 | |
2543 | 2543 | $count_query = "SELECT count(post_id) FROM |
2544 | - " . $table . " as pd " . $join . " |
|
2545 | - WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where; |
|
2544 | + " . $table." as pd ".$join." |
|
2545 | + WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where; |
|
2546 | 2546 | |
2547 | 2547 | $cat_post_count = $wpdb->get_var($count_query); |
2548 | 2548 | if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
@@ -2625,7 +2625,7 @@ discard block |
||
2625 | 2625 | global $post; |
2626 | 2626 | $all_postypes = geodir_get_posttypes(); |
2627 | 2627 | if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) { |
2628 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
2628 | + return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>'; |
|
2629 | 2629 | } |
2630 | 2630 | |
2631 | 2631 | return $more; |
@@ -2652,14 +2652,14 @@ discard block |
||
2652 | 2652 | if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) { |
2653 | 2653 | |
2654 | 2654 | $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
2655 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
2655 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
2656 | 2656 | |
2657 | 2657 | $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
2658 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
2658 | + $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png'; |
|
2659 | 2659 | |
2660 | 2660 | $posts = $wpdb->get_results( |
2661 | 2661 | $wpdb->prepare( |
2662 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2662 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
2663 | 2663 | array($term_id, $taxonomy) |
2664 | 2664 | ) |
2665 | 2665 | ); |
@@ -2671,19 +2671,19 @@ discard block |
||
2671 | 2671 | $lng = $post_obj->post_longitude; |
2672 | 2672 | |
2673 | 2673 | $json = '{'; |
2674 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
2675 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
2676 | - $json .= '"long_pos": "' . $lng . '",'; |
|
2677 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
2678 | - $json .= '"icon":"' . $term_icon . '",'; |
|
2679 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
2674 | + $json .= '"id":"'.$post_obj->post_id.'",'; |
|
2675 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
2676 | + $json .= '"long_pos": "'.$lng.'",'; |
|
2677 | + $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",'; |
|
2678 | + $json .= '"icon":"'.$term_icon.'",'; |
|
2679 | + $json .= '"group":"catgroup'.$term_id.'"'; |
|
2680 | 2680 | $json .= '}'; |
2681 | 2681 | |
2682 | 2682 | if ($post_obj->default_category == $term_id) { |
2683 | 2683 | |
2684 | 2684 | $wpdb->query( |
2685 | 2685 | $wpdb->prepare( |
2686 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
2686 | + "UPDATE ".$table." SET marker_json = %s where post_id = %d", |
|
2687 | 2687 | array($json, $post_obj->post_id) |
2688 | 2688 | ) |
2689 | 2689 | ); |
@@ -2691,7 +2691,7 @@ discard block |
||
2691 | 2691 | |
2692 | 2692 | $wpdb->query( |
2693 | 2693 | $wpdb->prepare( |
2694 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2694 | + "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
2695 | 2695 | array($json, $post_obj->post_id, $term_id) |
2696 | 2696 | ) |
2697 | 2697 | ); |
@@ -2815,7 +2815,7 @@ discard block |
||
2815 | 2815 | // print_r($uploads ) ; |
2816 | 2816 | $post_first_image = $wpdb->get_results( |
2817 | 2817 | $wpdb->prepare( |
2818 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2818 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
2819 | 2819 | ) |
2820 | 2820 | ); |
2821 | 2821 | |
@@ -2836,9 +2836,9 @@ discard block |
||
2836 | 2836 | |
2837 | 2837 | $post_type = get_post_type($post_id); |
2838 | 2838 | |
2839 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
2839 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
2840 | 2840 | |
2841 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id); |
|
2841 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id); |
|
2842 | 2842 | |
2843 | 2843 | $new_attachment_name = basename($post_first_image[0]->file); |
2844 | 2844 | |
@@ -2851,11 +2851,11 @@ discard block |
||
2851 | 2851 | wp_delete_attachment($post_thumbnail_id); |
2852 | 2852 | |
2853 | 2853 | } |
2854 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
2854 | + $filename = $uploads['basedir'].$post_first_image[0]->file; |
|
2855 | 2855 | |
2856 | 2856 | $attachment = array( |
2857 | 2857 | 'post_mime_type' => $post_first_image[0]->mime_type, |
2858 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
2858 | + 'guid' => $uploads['baseurl'].$post_first_image[0]->file, |
|
2859 | 2859 | 'post_parent' => $post_id, |
2860 | 2860 | 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title), |
2861 | 2861 | 'post_content' => '' |
@@ -2868,7 +2868,7 @@ discard block |
||
2868 | 2868 | |
2869 | 2869 | set_post_thumbnail($post_id, $id); |
2870 | 2870 | |
2871 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
2871 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
2872 | 2872 | wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
2873 | 2873 | |
2874 | 2874 | } |
@@ -2901,35 +2901,35 @@ discard block |
||
2901 | 2901 | $post_id = absint($_POST['post_id']); |
2902 | 2902 | $upload_dir = wp_upload_dir(); |
2903 | 2903 | $post_type = get_post_type($_POST['post_id']); |
2904 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2904 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2905 | 2905 | |
2906 | 2906 | $post_arr = $wpdb->get_results($wpdb->prepare( |
2907 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
2907 | + "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
2908 | 2908 | array($post_id) |
2909 | 2909 | ) |
2910 | 2910 | , ARRAY_A); |
2911 | 2911 | |
2912 | 2912 | $arrImages = $wpdb->get_results( |
2913 | 2913 | $wpdb->prepare( |
2914 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
2914 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
2915 | 2915 | array('%image%', $post_id) |
2916 | 2916 | ) |
2917 | 2917 | ); |
2918 | 2918 | if ($arrImages) { |
2919 | 2919 | $image_arr = array(); |
2920 | 2920 | foreach ($arrImages as $img) { |
2921 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
2921 | + $image_arr[] = $upload_dir['baseurl'].$img->file; |
|
2922 | 2922 | } |
2923 | 2923 | $comma_separated = implode(",", $image_arr); |
2924 | 2924 | $post_arr[0]['post_images'] = $comma_separated; |
2925 | 2925 | } |
2926 | 2926 | |
2927 | 2927 | |
2928 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
2928 | + $cats = $post_arr[0][$post_arr[0]['post_type'].'category']; |
|
2929 | 2929 | $cat_arr = array_filter(explode(",", $cats)); |
2930 | 2930 | $trans_cat = array(); |
2931 | 2931 | foreach ($cat_arr as $cat) { |
2932 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
2932 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false); |
|
2933 | 2933 | } |
2934 | 2934 | |
2935 | 2935 | |
@@ -2971,7 +2971,7 @@ discard block |
||
2971 | 2971 | |
2972 | 2972 | $get_data = $wpdb->get_results( |
2973 | 2973 | $wpdb->prepare( |
2974 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
2974 | + "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'", |
|
2975 | 2975 | array($listing_type) |
2976 | 2976 | ) |
2977 | 2977 | ); |
@@ -2984,12 +2984,12 @@ discard block |
||
2984 | 2984 | |
2985 | 2985 | $extra_fields = unserialize($data->extra_fields); |
2986 | 2986 | |
2987 | - $prefix = $data->htmlvar_name . '_'; |
|
2987 | + $prefix = $data->htmlvar_name.'_'; |
|
2988 | 2988 | |
2989 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
2989 | + $fields_info[$prefix.'address'] = $data->field_type; |
|
2990 | 2990 | |
2991 | 2991 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
2992 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
2992 | + $fields_info[$prefix.'zip'] = $data->field_type; |
|
2993 | 2993 | |
2994 | 2994 | } else { |
2995 | 2995 | |
@@ -3087,13 +3087,13 @@ discard block |
||
3087 | 3087 | * @since 1.4.9 |
3088 | 3088 | * @package GeoDirectory |
3089 | 3089 | */ |
3090 | -function geodir_fb_like_thumbnail(){ |
|
3090 | +function geodir_fb_like_thumbnail() { |
|
3091 | 3091 | |
3092 | 3092 | // return if not a single post |
3093 | - if(!is_single()){return;} |
|
3093 | + if (!is_single()) {return; } |
|
3094 | 3094 | |
3095 | 3095 | global $post; |
3096 | - if(isset($post->featured_image) && $post->featured_image){ |
|
3096 | + if (isset($post->featured_image) && $post->featured_image) { |
|
3097 | 3097 | $upload_dir = wp_upload_dir(); |
3098 | 3098 | $thumb = $upload_dir['baseurl'].$post->featured_image; |
3099 | 3099 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |