Test Failed
Push — master ( 6b5c3b...fad8c1 )
by Stiofan
14:32
created
geodirectory-functions/post_functions.php 1 patch
Spacing   +246 added lines, -246 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             
901 901
             if ($meta_value && $meta_value !== '') {
902 902
                 $meta_value = maybe_serialize($meta_value);
@@ -915,7 +915,7 @@  discard block
 block discarded – undo
915 915
          * @param string $meta_key The meta key to retrieve.
916 916
          * @param bool $single Optional. Whether to return a single value. Default false.
917 917
          */
918
-        return apply_filters( 'geodir_get_post_meta', $meta_value, $post_id, $meta_key, $single );
918
+        return apply_filters('geodir_get_post_meta', $meta_value, $post_id, $meta_key, $single);
919 919
     }
920 920
 }
921 921
 
@@ -941,13 +941,13 @@  discard block
 block discarded – undo
941 941
 
942 942
         $post_type = get_post_type($post_id);
943 943
 
944
-        $table = $plugin_prefix . $post_type . '_detail';
944
+        $table = $plugin_prefix.$post_type.'_detail';
945 945
 
946 946
         $post_images = geodir_get_images($post_id);
947 947
 
948 948
         $wpdb->query(
949 949
             $wpdb->prepare(
950
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
950
+                "UPDATE ".$table." SET featured_image = '' where post_id =%d",
951 951
                 array($post_id)
952 952
             )
953 953
         );
@@ -977,12 +977,12 @@  discard block
 block discarded – undo
977 977
                 $file_path = '';
978 978
                 /* --------- start ------- */
979 979
 
980
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
980
+                $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
981 981
 
982 982
                 $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
983 983
 
984 984
 
985
-                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)))) {
985
+                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)))) {
986 986
 
987 987
                     /* --------- end ------- */
988 988
                     $curr_img_url = $post_image[$m];
@@ -1026,7 +1026,7 @@  discard block
 block discarded – undo
1026 1026
                     // If the uploaded file is the right format
1027 1027
                     if (in_array($uploaded_file_type, $allowed_file_types)) {
1028 1028
                         if (!function_exists('wp_handle_upload')) {
1029
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1029
+                            require_once(ABSPATH.'wp-admin/includes/file.php');
1030 1030
                         }
1031 1031
 
1032 1032
                         if (!is_dir($geodir_uploadpath)) {
@@ -1034,41 +1034,41 @@  discard block
 block discarded – undo
1034 1034
                         }
1035 1035
 
1036 1036
                         $external_img = false;
1037
-                        if (strpos( str_replace( array('http://','https://'),'',$curr_img_url ), str_replace(array('http://','https://'),'',$uploads['baseurl'] ) ) !== false) {
1037
+                        if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
1038 1038
                         } else {
1039 1039
                             $external_img = true;
1040 1040
                         }
1041 1041
 
1042 1042
                         if ($dummy || $external_img) {
1043 1043
                             $uploaded_file = array();
1044
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1044
+                            $uploaded = (array) fetch_remote_file($curr_img_url);
1045 1045
 
1046 1046
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1047 1047
                                 $new_name = basename($uploaded['file']);
1048 1048
                                 $uploaded_file = $uploaded;
1049
-                            }else{
1050
-                                print_r($uploaded);exit;
1049
+                            } else {
1050
+                                print_r($uploaded); exit;
1051 1051
                             }
1052 1052
                             $external_img = false;
1053 1053
                         } else {
1054
-                            $new_name = $post_id . '_' . $file_name;
1054
+                            $new_name = $post_id.'_'.$file_name;
1055 1055
 
1056 1056
                             if ($curr_img_dir == $sub_dir) {
1057
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1058
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1057
+                                $img_path = $geodir_uploadpath.'/'.$filename;
1058
+                                $img_url = $geodir_uploadurl.'/'.$filename;
1059 1059
                             } else {
1060
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1061
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1060
+                                $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename;
1061
+                                $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename;
1062 1062
                             }
1063 1063
 
1064 1064
                             $uploaded_file = '';
1065 1065
 
1066 1066
                             if (file_exists($img_path)) {
1067
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1067
+                                $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name);
1068 1068
                                 $file_path = '';
1069
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1069
+                            } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
1070 1070
                                 $uploaded_file = true;
1071
-                                $file_path = $curr_img_dir . '/' . $filename;
1071
+                                $file_path = $curr_img_dir.'/'.$filename;
1072 1072
                             }
1073 1073
 
1074 1074
                             if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
@@ -1077,14 +1077,14 @@  discard block
 block discarded – undo
1077 1077
 
1078 1078
                         if (!empty($uploaded_file)) {
1079 1079
                             if (!isset($file_path) || !$file_path) {
1080
-                                $file_path = $sub_dir . '/' . $new_name;
1080
+                                $file_path = $sub_dir.'/'.$new_name;
1081 1081
                             }
1082 1082
 
1083
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1083
+                            $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
1084 1084
 
1085 1085
                             if ($menu_order == 1) {
1086 1086
 
1087
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1087
+                                $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1088 1088
 
1089 1089
                             }
1090 1090
 
@@ -1102,12 +1102,12 @@  discard block
 block discarded – undo
1102 1102
 
1103 1103
                             foreach ($attachment as $key => $val) {
1104 1104
                                 if ($val != '')
1105
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1105
+                                    $attachment_set .= $key." = '".$val."', ";
1106 1106
                             }
1107 1107
 
1108 1108
                             $attachment_set = trim($attachment_set, ", ");
1109 1109
 
1110
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1110
+                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
1111 1111
 
1112 1112
                             $valid_file_ids[] = $wpdb->insert_id;
1113 1113
                         }
@@ -1118,17 +1118,17 @@  discard block
 block discarded – undo
1118 1118
                 } else {
1119 1119
                     $valid_file_ids[] = $find_image;
1120 1120
 
1121
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1121
+                    $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
1122 1122
 
1123 1123
                     $wpdb->query(
1124 1124
                         $wpdb->prepare(
1125
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1125
+                            "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d",
1126 1126
                             array($menu_order, $split_img_path[1], $post_id)
1127 1127
                         )
1128 1128
                     );
1129 1129
 
1130 1130
                     if ($menu_order == 1)
1131
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1131
+                        $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1132 1132
 
1133 1133
                 }
1134 1134
 
@@ -1152,9 +1152,9 @@  discard block
 block discarded – undo
1152 1152
 
1153 1153
                 foreach ($post_images as $img) {
1154 1154
 
1155
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1155
+                    if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
1156 1156
 
1157
-                        $invalid_files[] = (object)array('src' => $img->src);
1157
+                        $invalid_files[] = (object) array('src' => $img->src);
1158 1158
 
1159 1159
                     }
1160 1160
 
@@ -1162,12 +1162,12 @@  discard block
 block discarded – undo
1162 1162
 
1163 1163
             }
1164 1164
 
1165
-            $invalid_files = (object)$invalid_files;
1165
+            $invalid_files = (object) $invalid_files;
1166 1166
         }
1167 1167
 
1168 1168
         $remove_files[] = $post_id;
1169 1169
 
1170
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1170
+        $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
1171 1171
 
1172 1172
         if (!empty($invalid_files))
1173 1173
             geodir_remove_attachments($invalid_files);
@@ -1207,7 +1207,7 @@  discard block
 block discarded – undo
1207 1207
 			rmdir($dirPath);
1208 1208
 	}	*/
1209 1209
 
1210
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1210
+    $dirname = $uploads_dir.'/temp_'.$current_user->ID;
1211 1211
     geodir_delete_directory($dirname);
1212 1212
 }
1213 1213
 
@@ -1229,10 +1229,10 @@  discard block
 block discarded – undo
1229 1229
         return false;
1230 1230
     while ($file = readdir($dir_handle)) {
1231 1231
         if ($file != "." && $file != "..") {
1232
-            if (!is_dir($dirname . "/" . $file))
1233
-                unlink($dirname . "/" . $file);
1232
+            if (!is_dir($dirname."/".$file))
1233
+                unlink($dirname."/".$file);
1234 1234
             else
1235
-                geodir_delete_directory($dirname . '/' . $file);
1235
+                geodir_delete_directory($dirname.'/'.$file);
1236 1236
         }
1237 1237
     }
1238 1238
     closedir($dir_handle);
@@ -1261,8 +1261,8 @@  discard block
 block discarded – undo
1261 1261
             foreach ($postcurr_images as $postimg) {
1262 1262
                 $image_name_arr = explode('/', $postimg->src);
1263 1263
                 $filename = end($image_name_arr);
1264
-                if (file_exists($uploads_dir . '/' . $filename))
1265
-                    unlink($uploads_dir . '/' . $filename);
1264
+                if (file_exists($uploads_dir.'/'.$filename))
1265
+                    unlink($uploads_dir.'/'.$filename);
1266 1266
             }
1267 1267
 
1268 1268
         } // endif
@@ -1303,28 +1303,28 @@  discard block
 block discarded – undo
1303 1303
         }
1304 1304
 
1305 1305
         if (!in_array($post_type, geodir_get_posttypes())) {
1306
-            return false;// if not a GD CPT return;
1306
+            return false; // if not a GD CPT return;
1307 1307
         }
1308 1308
 
1309 1309
 
1310
-        $list_img_size = get_option('geodir_listing_img_size','default');
1310
+        $list_img_size = get_option('geodir_listing_img_size', 'default');
1311 1311
 
1312
-        if( $size=='list-thumb' && $list_img_size != 'default' ){
1313
-            $fimg = get_the_post_thumbnail_url($post_id,$list_img_size);
1314
-            if($fimg){
1312
+        if ($size == 'list-thumb' && $list_img_size != 'default') {
1313
+            $fimg = get_the_post_thumbnail_url($post_id, $list_img_size);
1314
+            if ($fimg) {
1315 1315
                 $uploads = wp_upload_dir(); 
1316 1316
                 $uploads_baseurl = $uploads['baseurl'];
1317
-                $file = str_replace($uploads_baseurl,'',$fimg);
1317
+                $file = str_replace($uploads_baseurl, '', $fimg);
1318 1318
             }
1319 1319
         }
1320 1320
 
1321
-        $table = $plugin_prefix . $post_type . '_detail';
1321
+        $table = $plugin_prefix.$post_type.'_detail';
1322 1322
 
1323 1323
         if (!$file) {
1324 1324
             if (isset($post->featured_image)) {
1325 1325
                 $file = $post->featured_image;
1326 1326
             } else {
1327
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1327
+                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
1328 1328
             }
1329 1329
         }
1330 1330
 
@@ -1343,9 +1343,9 @@  discard block
 block discarded – undo
1343 1343
 
1344 1344
             $file_name = $file_info['basename'];
1345 1345
 
1346
-            $uploads_url = $uploads_baseurl . $sub_dir;
1346
+            $uploads_url = $uploads_baseurl.$sub_dir;
1347 1347
 
1348
-            $img_src = $uploads_url . '/' . $file_name;
1348
+            $img_src = $uploads_url.'/'.$file_name;
1349 1349
 
1350 1350
             // jetpack CDN check
1351 1351
             if (strpos($file, '.wp.com/') !== false) {
@@ -1361,8 +1361,8 @@  discard block
 block discarded – undo
1361 1361
              * @param string $uploads_url The server upload directory url.
1362 1362
              * @param string $uploads_baseurl The uploads dir base url.
1363 1363
              */
1364
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$img_src,$file_name,$uploads_url,$uploads_baseurl);
1365
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1364
+            $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $img_src, $file_name, $uploads_url, $uploads_baseurl);
1365
+            $img_arr['path'] = $uploads_path.'/'.$file_name;
1366 1366
             $width = 0;
1367 1367
             $height = 0;
1368 1368
             if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1405,7 +1405,7 @@  discard block
 block discarded – undo
1405 1405
                 $file_name = $file_info['basename'];
1406 1406
 
1407 1407
                 $img_arr['src'] = $default_img;
1408
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1408
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1409 1409
 
1410 1410
                 $width = 0;
1411 1411
                 $height = 0;
@@ -1422,7 +1422,7 @@  discard block
 block discarded – undo
1422 1422
         }
1423 1423
 
1424 1424
         if (!empty($img_arr))
1425
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1425
+            return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path );
1426 1426
         else
1427 1427
             return false;
1428 1428
     }
@@ -1485,7 +1485,7 @@  discard block
 block discarded – undo
1485 1485
 
1486 1486
         $arrImages = $wpdb->get_results(
1487 1487
             $wpdb->prepare(
1488
-                "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 ",
1488
+                "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 ",
1489 1489
                 array('%image%', $post_id)
1490 1490
             )
1491 1491
         );
@@ -1511,7 +1511,7 @@  discard block
 block discarded – undo
1511 1511
 
1512 1512
                 $file_name = $file_info['basename'];
1513 1513
 
1514
-                $uploads_url = $uploads_baseurl . $sub_dir;
1514
+                $uploads_url = $uploads_baseurl.$sub_dir;
1515 1515
                 /*
1516 1516
                 * Allows the filter of image src for such things as CDN change.
1517 1517
                 *
@@ -1521,8 +1521,8 @@  discard block
 block discarded – undo
1521 1521
                 * @param string $uploads_url The server upload directory url.
1522 1522
                 * @param string $uploads_baseurl The uploads dir base url.
1523 1523
                 */
1524
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1525
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1524
+                $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1525
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1526 1526
                 $width = 0;
1527 1527
                 $height = 0;
1528 1528
                 if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1539,7 +1539,7 @@  discard block
 block discarded – undo
1539 1539
                 $img_arr['content'] = $attechment->content; // add the description to the array
1540 1540
                 $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1541 1541
 
1542
-                $return_arr[] = (object)$img_arr;
1542
+                $return_arr[] = (object) $img_arr;
1543 1543
 
1544 1544
                 $counter++;
1545 1545
             }
@@ -1550,7 +1550,7 @@  discard block
 block discarded – undo
1550 1550
              * @since 1.6.20
1551 1551
              * @param array $return_arr The array of image objects.
1552 1552
              */
1553
-            return apply_filters('geodir_get_images_arr',$return_arr);
1553
+            return apply_filters('geodir_get_images_arr', $return_arr);
1554 1554
         } else if ($no_images) {
1555 1555
             $default_img = '';
1556 1556
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
@@ -1589,7 +1589,7 @@  discard block
 block discarded – undo
1589 1589
                 $img_arr['title'] = $file_info['filename']; // add the title to the array
1590 1590
                 $img_arr['content'] = $file_info['filename']; // add the description to the array
1591 1591
 
1592
-                $return_arr[] = (object)$img_arr;
1592
+                $return_arr[] = (object) $img_arr;
1593 1593
 
1594 1594
                 /**
1595 1595
                  * Filter the images array so things can be changed.
@@ -1597,7 +1597,7 @@  discard block
 block discarded – undo
1597 1597
                  * @since 1.6.20
1598 1598
                  * @param array $return_arr The array of image objects.
1599 1599
                  */
1600
-                return apply_filters('geodir_get_images_arr',$return_arr);
1600
+                return apply_filters('geodir_get_images_arr', $return_arr);
1601 1601
             } else
1602 1602
                 return false;
1603 1603
         }
@@ -1622,8 +1622,8 @@  discard block
 block discarded – undo
1622 1622
 
1623 1623
         $html = '';
1624 1624
         if (!empty($request)) {
1625
-            if (!is_object($request)){
1626
-                $request = (object)$request;
1625
+            if (!is_object($request)) {
1626
+                $request = (object) $request;
1627 1627
             }
1628 1628
 
1629 1629
             if (isset($request->src) && !isset($request->path)) {
@@ -1637,7 +1637,7 @@  discard block
 block discarded – undo
1637 1637
             $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1638 1638
             $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1639 1639
             if (strpos($img_no_http, $upload_no_http) !== false) {
1640
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1640
+                $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path);
1641 1641
             }
1642 1642
             
1643 1643
             $width = 0;
@@ -1654,7 +1654,7 @@  discard block
 block discarded – undo
1654 1654
             $image->height = $height;
1655 1655
             $image->title = isset($request->title) ? $request->title : '';
1656 1656
 
1657
-            $max_size = (object)geodir_get_imagesize($size);
1657
+            $max_size = (object) geodir_get_imagesize($size);
1658 1658
 
1659 1659
             if (!is_wp_error($max_size)) {
1660 1660
                 if ($image->width) {
@@ -1666,13 +1666,13 @@  discard block
 block discarded – undo
1666 1666
                         $width_per = 100;
1667 1667
                 }
1668 1668
 
1669
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1670
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1669
+                if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
1670
+                    $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'"  /></div>';
1671 1671
                 } else {
1672
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1673
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>';
1674
-                    }else{
1675
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>';
1672
+                    if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) {
1673
+                        $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');" title="'.$image->title.'" aria-label="'.$image->title.'" ></div>';
1674
+                    } else {
1675
+                        $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" title="'.$image->title.'" aria-label="'.$image->title.'"></div>';
1676 1676
                     }
1677 1677
 
1678 1678
                 }
@@ -1707,15 +1707,15 @@  discard block
 block discarded – undo
1707 1707
 
1708 1708
         $post_type = get_post_type($post_id);
1709 1709
 
1710
-        $table = $plugin_prefix . $post_type . '_detail';
1710
+        $table = $plugin_prefix.$post_type.'_detail';
1711 1711
 
1712 1712
         if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1713 1713
 
1714
-            if ($taxonomy == $post_type . '_tags') {
1714
+            if ($taxonomy == $post_type.'_tags') {
1715 1715
                 if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1716 1716
                     geodir_save_post_meta($post_id, 'post_tags', $terms);
1717 1717
                 }
1718
-            } elseif ($taxonomy == $post_type . 'category') {
1718
+            } elseif ($taxonomy == $post_type.'category') {
1719 1719
                 $srcharr = array('"', '\\');
1720 1720
                 $replarr = array("&quot;", '');
1721 1721
 
@@ -1737,7 +1737,7 @@  discard block
 block discarded – undo
1737 1737
 
1738 1738
                     $wpdb->get_var(
1739 1739
                         $wpdb->prepare(
1740
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1740
+                            "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ",
1741 1741
                             $cat_ids_array_del
1742 1742
                         )
1743 1743
                     );
@@ -1745,7 +1745,7 @@  discard block
 block discarded – undo
1745 1745
 
1746 1746
                     $post_term = $wpdb->get_col(
1747 1747
                         $wpdb->prepare(
1748
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1748
+                            "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1749 1749
                             $cat_ids_array
1750 1750
                         )
1751 1751
                     );
@@ -1767,16 +1767,16 @@  discard block
 block discarded – undo
1767 1767
                         $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1768 1768
                         $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1769 1769
 
1770
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1771
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1770
+                        $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1771
+                        $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true);
1772 1772
 
1773 1773
                         $json = '{';
1774
-                        $json .= '"id":"' . $post_id . '",';
1775
-                        $json .= '"lat_pos": "' . $lat . '",';
1776
-                        $json .= '"long_pos": "' . $lng . '",';
1777
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1778
-                        $json .= '"icon":"' . $term_icon . '",';
1779
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1774
+                        $json .= '"id":"'.$post_id.'",';
1775
+                        $json .= '"lat_pos": "'.$lat.'",';
1776
+                        $json .= '"long_pos": "'.$lng.'",';
1777
+                        $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",';
1778
+                        $json .= '"icon":"'.$term_icon.'",';
1779
+                        $json .= '"group":"catgroup'.$cat_id.'"';
1780 1780
                         $json .= '}';
1781 1781
 
1782 1782
 
@@ -1784,9 +1784,9 @@  discard block
 block discarded – undo
1784 1784
                             $post_marker_json = $json;
1785 1785
 
1786 1786
 
1787
-                        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)))) {
1787
+                        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)))) {
1788 1788
 
1789
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1789
+                            $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
1790 1790
 										post_title = %s,
1791 1791
 										json = %s
1792 1792
 										WHERE post_id = %d AND cat_id = %d ",
@@ -1794,7 +1794,7 @@  discard block
 block discarded – undo
1794 1794
 
1795 1795
                         } else {
1796 1796
 
1797
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1797
+                            $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
1798 1798
 										post_id = %d,
1799 1799
 										post_title = %s,
1800 1800
 										cat_id = %d,
@@ -1812,17 +1812,17 @@  discard block
 block discarded – undo
1812 1812
                 if (!empty($post_term) && is_array($post_term)) {
1813 1813
                     $categories = implode(',', $post_term);
1814 1814
 
1815
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1815
+                    if ($categories != '' && $categories != 0) $categories = ','.$categories.',';
1816 1816
 
1817 1817
                     if (empty($post_marker_json))
1818 1818
                         $post_marker_json = isset($json) ? $json : '';
1819 1819
 
1820
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1820
+                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
1821 1821
 
1822 1822
                         $wpdb->query(
1823 1823
                             $wpdb->prepare(
1824
-                                "UPDATE " . $table . " SET
1825
-								" . $taxonomy . " = %s,
1824
+                                "UPDATE ".$table." SET
1825
+								" . $taxonomy." = %s,
1826 1826
 								marker_json = %s
1827 1827
 								where post_id = %d",
1828 1828
                                 array($categories, $post_marker_json, $post_id)
@@ -1843,7 +1843,7 @@  discard block
 block discarded – undo
1843 1843
 
1844 1844
                                     $wpdb->query(
1845 1845
                                         $wpdb->prepare(
1846
-                                            "UPDATE " . $table . " SET
1846
+                                            "UPDATE ".$table." SET
1847 1847
 											default_category = %s
1848 1848
 											where post_id = %d",
1849 1849
                                             array($categories[0], $post_id)
@@ -1868,9 +1868,9 @@  discard block
 block discarded – undo
1868 1868
 
1869 1869
                         $wpdb->query(
1870 1870
                             $wpdb->prepare(
1871
-                                "INSERT INTO " . $table . " SET
1871
+                                "INSERT INTO ".$table." SET
1872 1872
 								post_id = %d,
1873
-								" . $taxonomy . " = %s,
1873
+								" . $taxonomy." = %s,
1874 1874
 								marker_json = %s ",
1875 1875
 
1876 1876
                                 array($post_id, $categories, $post_marker_json)
@@ -2002,7 +2002,7 @@  discard block
 block discarded – undo
2002 2002
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
2003 2003
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
2004 2004
                             <?php
2005
-                            }else{
2005
+                            } else {
2006 2006
                                 echo '<div class="geodir-bubble_image"></div>';
2007 2007
                             }
2008 2008
                         } else {
@@ -2010,7 +2010,7 @@  discard block
 block discarded – undo
2010 2010
                                 ?>
2011 2011
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
2012 2012
                             <?php
2013
-                            }else{
2013
+                            } else {
2014 2014
                                 echo '<div class="geodir-bubble_image"></div>';
2015 2015
                             }
2016 2016
                         }
@@ -2040,7 +2040,7 @@  discard block
 block discarded – undo
2040 2040
                              * @param object $postinfo_obj The posts info as an object.
2041 2041
                              * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
2042 2042
                              */
2043
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
2043
+                            do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
2044 2044
                             ?>
2045 2045
                         </div>
2046 2046
                         <?php
@@ -2050,9 +2050,9 @@  discard block
 block discarded – undo
2050 2050
                             <div class="geodir-bubble-meta-fade"></div>
2051 2051
                             <div class="geodir-bubble-meta-bottom">
2052 2052
                                 <?php if ($rating_star != '') { ?>
2053
-                                <span class="geodir-bubble-rating"><?php echo $rating_star;?></span>
2053
+                                <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span>
2054 2054
                                 <?php } ?>
2055
-                                <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span>
2055
+                                <span class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span>
2056 2056
                                 <span class="geodir-bubble-reviews">
2057 2057
                                     <a href="<?php echo get_comments_link($ID); ?>" class="geodir-pcomments"><i class="fa fa-comments"></i> <?php echo get_comments_number($ID); ?></a>
2058 2058
                                 </span>
@@ -2091,9 +2091,9 @@  discard block
 block discarded – undo
2091 2091
 function geodir_new_post_default_status()
2092 2092
 {
2093 2093
 
2094
-    $status = get_option( 'geodir_new_post_default_status' );
2094
+    $status = get_option('geodir_new_post_default_status');
2095 2095
 
2096
-    if ( empty( $status ) ) {
2096
+    if (empty($status)) {
2097 2097
         $status = 'publish';
2098 2098
     }
2099 2099
 
@@ -2102,7 +2102,7 @@  discard block
 block discarded – undo
2102 2102
      *
2103 2103
      * @since 1.6.23
2104 2104
      */
2105
-    return apply_filters( 'geodir_new_post_default_status', $status );
2105
+    return apply_filters('geodir_new_post_default_status', $status);
2106 2106
 
2107 2107
 }
2108 2108
 
@@ -2121,11 +2121,11 @@  discard block
 block discarded – undo
2121 2121
 
2122 2122
         $post_type = get_post_type($post_id);
2123 2123
 
2124
-        $table = $plugin_prefix . $post_type . '_detail';
2124
+        $table = $plugin_prefix.$post_type.'_detail';
2125 2125
 
2126 2126
         $wpdb->query(
2127 2127
             $wpdb->prepare(
2128
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2128
+                "UPDATE ".$table." SET post_status=%s WHERE post_id=%d",
2129 2129
                 array($status, $post_id)
2130 2130
             )
2131 2131
         );
@@ -2197,18 +2197,18 @@  discard block
 block discarded – undo
2197 2197
 
2198 2198
         $post_type = get_post_type($post_id);
2199 2199
 
2200
-        $table = $plugin_prefix . $post_type . '_detail';
2200
+        $table = $plugin_prefix.$post_type.'_detail';
2201 2201
 
2202 2202
         $wpdb->query(
2203 2203
             $wpdb->prepare(
2204
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2204
+                "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d",
2205 2205
                 array($updatingpost, $temppost)
2206 2206
             )
2207 2207
         );
2208 2208
 
2209 2209
         $wpdb->query(
2210 2210
             $wpdb->prepare(
2211
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2211
+                "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2212 2212
                 array($updatingpost, $temppost)
2213 2213
             )
2214 2214
         );
@@ -2217,7 +2217,7 @@  discard block
 block discarded – undo
2217 2217
 
2218 2218
         $wpdb->query(
2219 2219
             $wpdb->prepare(
2220
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2220
+                "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2221 2221
                 array($updatingpost, $temppost)
2222 2222
             )
2223 2223
         );
@@ -2255,12 +2255,12 @@  discard block
 block discarded – undo
2255 2255
         if (!in_array($post_type, $all_postypes))
2256 2256
             return false;
2257 2257
 
2258
-        $table = $plugin_prefix . $post_type . '_detail';
2258
+        $table = $plugin_prefix.$post_type.'_detail';
2259 2259
 
2260 2260
         /* Delete custom post meta*/
2261 2261
         $wpdb->query(
2262 2262
             $wpdb->prepare(
2263
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2263
+                "DELETE FROM ".$table." WHERE `post_id` = %d",
2264 2264
                 array($deleted_postid)
2265 2265
             )
2266 2266
         );
@@ -2268,22 +2268,22 @@  discard block
 block discarded – undo
2268 2268
         /* Delete post map icons*/
2269 2269
         $wpdb->query(
2270 2270
             $wpdb->prepare(
2271
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2271
+                "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d",
2272 2272
                 array($deleted_postid)
2273 2273
             )
2274 2274
         );
2275 2275
 
2276 2276
         /* Delete Attachments*/
2277
-        $feat_id = get_post_thumbnail_id( $deleted_postid );// make sure to remove the smaller images
2278
-        if($feat_id){
2279
-            wp_delete_attachment( $feat_id, true);
2277
+        $feat_id = get_post_thumbnail_id($deleted_postid); // make sure to remove the smaller images
2278
+        if ($feat_id) {
2279
+            wp_delete_attachment($feat_id, true);
2280 2280
         }
2281 2281
 
2282 2282
         $postcurr_images = geodir_get_images($deleted_postid);
2283 2283
 
2284 2284
         $wpdb->query(
2285 2285
             $wpdb->prepare(
2286
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2286
+                "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d",
2287 2287
                 array($deleted_postid)
2288 2288
             )
2289 2289
         );
@@ -2338,9 +2338,9 @@  discard block
 block discarded – undo
2338 2338
         $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2339 2339
 
2340 2340
         $site_id = '';
2341
-        if ( is_multisite() ) {
2341
+        if (is_multisite()) {
2342 2342
             $blog_id = get_current_blog_id();
2343
-            if($blog_id && $blog_id!='1'){$site_id  = '_' . $blog_id ;}
2343
+            if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; }
2344 2344
         }
2345 2345
 
2346 2346
         $user_meta_data = geodir_get_user_favourites($current_user->data->ID);
@@ -2361,7 +2361,7 @@  discard block
 block discarded – undo
2361 2361
          */
2362 2362
         do_action('geodir_before_add_from_favorite', $post_id);
2363 2363
 
2364
-        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>';
2364
+        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>';
2365 2365
 
2366 2366
         /**
2367 2367
          * Called after adding the post from favourites.
@@ -2419,9 +2419,9 @@  discard block
 block discarded – undo
2419 2419
         $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2420 2420
 
2421 2421
         $site_id = '';
2422
-        if ( is_multisite() ) {
2422
+        if (is_multisite()) {
2423 2423
             $blog_id = get_current_blog_id();
2424
-            if($blog_id && $blog_id!='1'){$site_id  = '_' . $blog_id ;}
2424
+            if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; }
2425 2425
         }
2426 2426
 
2427 2427
         $user_meta_data = array();
@@ -2446,7 +2446,7 @@  discard block
 block discarded – undo
2446 2446
          */
2447 2447
         do_action('geodir_before_remove_from_favorite', $post_id);
2448 2448
 
2449
-        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>';
2449
+        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>';
2450 2450
 
2451 2451
         /**
2452 2452
          * Called after removing the post from favourites.
@@ -2538,9 +2538,9 @@  discard block
 block discarded – undo
2538 2538
 
2539 2539
 
2540 2540
         $site_id = '';
2541
-        if ( is_multisite() ) {
2541
+        if (is_multisite()) {
2542 2542
             $blog_id = get_current_blog_id();
2543
-            if($blog_id && $blog_id!='1'){$site_id  = '_' . $blog_id ;}
2543
+            if ($blog_id && $blog_id != '1') {$site_id = '_'.$blog_id; }
2544 2544
         }
2545 2545
 
2546 2546
         $user_meta_data = '';
@@ -2548,24 +2548,24 @@  discard block
 block discarded – undo
2548 2548
             $user_meta_data = geodir_get_user_favourites($current_user->data->ID);
2549 2549
 
2550 2550
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2551
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2551
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"  ><a
2552 2552
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2553
-                onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2554
-                title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2553
+                onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');"
2554
+                title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?>
2555 2555
             </a>   </span><?php
2556 2556
 
2557 2557
         } else {
2558 2558
 
2559 2559
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2560
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2560
+                $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\'';
2561 2561
             } else
2562
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2562
+                $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
2563 2563
 
2564
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2564
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon"
2565 2565
                                                                                         href="javascript:void(0);"
2566
-                                                                                        onclick="<?php echo $script_text;?>"
2567
-                                                                                        title="<?php echo $add_favourite_text;?>"><i
2568
-                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2566
+                                                                                        onclick="<?php echo $script_text; ?>"
2567
+                                                                                        title="<?php echo $add_favourite_text; ?>"><i
2568
+                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span>
2569 2569
         <?php }
2570 2570
     }
2571 2571
 }
@@ -2595,7 +2595,7 @@  discard block
 block discarded – undo
2595 2595
 
2596 2596
             $post_type = $taxonomy_obj->object_type[0];
2597 2597
 
2598
-            $table = $plugin_prefix . $post_type . '_detail';
2598
+            $table = $plugin_prefix.$post_type.'_detail';
2599 2599
 
2600 2600
             /**
2601 2601
              * Filter to modify the 'join' query
@@ -2618,8 +2618,8 @@  discard block
 block discarded – undo
2618 2618
             $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2619 2619
 
2620 2620
             $count_query = "SELECT count(post_id) FROM
2621
-							" . $table . " as pd " . $join . "
2622
-							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2621
+							" . $table." as pd ".$join."
2622
+							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
2623 2623
 
2624 2624
             $cat_post_count = $wpdb->get_var($count_query);
2625 2625
             if (empty($cat_post_count) || is_wp_error($cat_post_count))
@@ -2702,13 +2702,13 @@  discard block
 block discarded – undo
2702 2702
     global $post;
2703 2703
     $all_postypes = geodir_get_posttypes();
2704 2704
     if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2705
-        $out = ' <a class="excerpt-read-more" href="' .  get_permalink($post->ID) . '" title="' . get_the_title($post->ID) . '">';
2705
+        $out = ' <a class="excerpt-read-more" href="'.get_permalink($post->ID).'" title="'.get_the_title($post->ID).'">';
2706 2706
         /**
2707 2707
          * Filter excerpt read more text.
2708 2708
          *
2709 2709
          * @since 1.0.0
2710 2710
          */
2711
-        $out .= apply_filters( 'geodir_max_excerpt_end', __( 'Read more [...]', 'geodirectory' ) );
2711
+        $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
2712 2712
         $out .= '</a>';
2713 2713
         return $out;
2714 2714
     }
@@ -2737,14 +2737,14 @@  discard block
 block discarded – undo
2737 2737
     if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2738 2738
 
2739 2739
         $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2740
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2740
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
2741 2741
 
2742 2742
         $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2743
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2743
+        $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png';
2744 2744
 
2745 2745
         $posts = $wpdb->get_results(
2746 2746
             $wpdb->prepare(
2747
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2747
+                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ",
2748 2748
                 array($term_id, $taxonomy)
2749 2749
             )
2750 2750
         );
@@ -2756,19 +2756,19 @@  discard block
 block discarded – undo
2756 2756
                 $lng = $post_obj->post_longitude;
2757 2757
 
2758 2758
                 $json = '{';
2759
-                $json .= '"id":"' . $post_obj->post_id . '",';
2760
-                $json .= '"lat_pos": "' . $lat . '",';
2761
-                $json .= '"long_pos": "' . $lng . '",';
2762
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2763
-                $json .= '"icon":"' . $term_icon . '",';
2764
-                $json .= '"group":"catgroup' . $term_id . '"';
2759
+                $json .= '"id":"'.$post_obj->post_id.'",';
2760
+                $json .= '"lat_pos": "'.$lat.'",';
2761
+                $json .= '"long_pos": "'.$lng.'",';
2762
+                $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",';
2763
+                $json .= '"icon":"'.$term_icon.'",';
2764
+                $json .= '"group":"catgroup'.$term_id.'"';
2765 2765
                 $json .= '}';
2766 2766
 
2767 2767
                 if ($post_obj->default_category == $term_id) {
2768 2768
 
2769 2769
                     $wpdb->query(
2770 2770
                         $wpdb->prepare(
2771
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2771
+                            "UPDATE ".$table." SET marker_json = %s where post_id = %d",
2772 2772
                             array($json, $post_obj->post_id)
2773 2773
                         )
2774 2774
                     );
@@ -2776,7 +2776,7 @@  discard block
 block discarded – undo
2776 2776
 
2777 2777
                 $wpdb->query(
2778 2778
                     $wpdb->prepare(
2779
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2779
+                        "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d",
2780 2780
                         array($json, $post_obj->post_id, $term_id)
2781 2781
                     )
2782 2782
                 );
@@ -2864,7 +2864,7 @@  discard block
 block discarded – undo
2864 2864
      * @param bool $exclude_admin Do you want to exclude admin from the check?. Default true.
2865 2865
      * return bool
2866 2866
      */
2867
-    return apply_filters('geodir_listing_belong_to_current_user',$result,$listing_id,$current_user->ID,$exclude_admin);
2867
+    return apply_filters('geodir_listing_belong_to_current_user', $result, $listing_id, $current_user->ID, $exclude_admin);
2868 2868
 }
2869 2869
 
2870 2870
 
@@ -2912,7 +2912,7 @@  discard block
 block discarded – undo
2912 2912
 //	print_r($uploads ) ;
2913 2913
     $post_first_image = $wpdb->get_results(
2914 2914
         $wpdb->prepare(
2915
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2915
+            "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1  ", array($post_id)
2916 2916
         )
2917 2917
     );
2918 2918
 
@@ -2933,9 +2933,9 @@  discard block
 block discarded – undo
2933 2933
 
2934 2934
         $post_type = get_post_type($post_id);
2935 2935
 
2936
-        $table_name = $plugin_prefix . $post_type . '_detail';
2936
+        $table_name = $plugin_prefix.$post_type.'_detail';
2937 2937
 
2938
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2938
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
2939 2939
 
2940 2940
         $new_attachment_name = basename($post_first_image[0]->file);
2941 2941
 
@@ -2948,11 +2948,11 @@  discard block
 block discarded – undo
2948 2948
                 wp_delete_attachment($post_thumbnail_id);
2949 2949
 
2950 2950
             }
2951
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2951
+            $filename = $uploads['basedir'].$post_first_image[0]->file;
2952 2952
 
2953 2953
             $attachment = array(
2954 2954
                 'post_mime_type' => $post_first_image[0]->mime_type,
2955
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2955
+                'guid' => $uploads['baseurl'].$post_first_image[0]->file,
2956 2956
                 'post_parent' => $post_id,
2957 2957
                 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2958 2958
                 'post_content' => ''
@@ -2965,7 +2965,7 @@  discard block
 block discarded – undo
2965 2965
 
2966 2966
                 set_post_thumbnail($post_id, $id);
2967 2967
 
2968
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2968
+                require_once(ABSPATH.'wp-admin/includes/image.php');
2969 2969
                 wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2970 2970
 
2971 2971
             }
@@ -2998,35 +2998,35 @@  discard block
 block discarded – undo
2998 2998
         $post_id = absint($_POST['post_id']);
2999 2999
         $upload_dir = wp_upload_dir();
3000 3000
         $post_type = get_post_type($_POST['post_id']);
3001
-        $table = $plugin_prefix . $post_type . '_detail';
3001
+        $table = $plugin_prefix.$post_type.'_detail';
3002 3002
 
3003 3003
         $post_arr = $wpdb->get_results($wpdb->prepare(
3004
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
3004
+            "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
3005 3005
             array($post_id)
3006 3006
         )
3007 3007
             , ARRAY_A);
3008 3008
 
3009 3009
         $arrImages = $wpdb->get_results(
3010 3010
             $wpdb->prepare(
3011
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
3011
+                "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
3012 3012
                 array('%image%', $post_id)
3013 3013
             )
3014 3014
         );
3015 3015
         if ($arrImages) {
3016 3016
             $image_arr = array();
3017 3017
             foreach ($arrImages as $img) {
3018
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
3018
+                $image_arr[] = $upload_dir['baseurl'].$img->file;
3019 3019
             }
3020 3020
             $comma_separated = implode(",", $image_arr);
3021 3021
             $post_arr[0]['post_images'] = $comma_separated;
3022 3022
         }
3023 3023
 
3024 3024
 
3025
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
3025
+        $cats = $post_arr[0][$post_arr[0]['post_type'].'category'];
3026 3026
         $cat_arr = array_filter(explode(",", $cats));
3027 3027
         $trans_cat = array();
3028 3028
         foreach ($cat_arr as $cat) {
3029
-            $trans_cat[] = geodir_wpml_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
3029
+            $trans_cat[] = geodir_wpml_object_id($cat, $post_arr[0]['post_type'].'category', false);
3030 3030
         }
3031 3031
 
3032 3032
 
@@ -3068,7 +3068,7 @@  discard block
 block discarded – undo
3068 3068
 
3069 3069
     $get_data = $wpdb->get_results(
3070 3070
         $wpdb->prepare(
3071
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
3071
+            "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'",
3072 3072
             array($listing_type)
3073 3073
         )
3074 3074
     );
@@ -3081,12 +3081,12 @@  discard block
 block discarded – undo
3081 3081
 
3082 3082
                 $extra_fields = unserialize($data->extra_fields);
3083 3083
 
3084
-                $prefix = $data->htmlvar_name . '_';
3084
+                $prefix = $data->htmlvar_name.'_';
3085 3085
 
3086
-                $fields_info[$prefix . 'address'] = $data->field_type;
3086
+                $fields_info[$prefix.'address'] = $data->field_type;
3087 3087
 
3088 3088
                 if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
3089
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
3089
+                    $fields_info[$prefix.'zip'] = $data->field_type;
3090 3090
 
3091 3091
             } else {
3092 3092
 
@@ -3185,18 +3185,18 @@  discard block
 block discarded – undo
3185 3185
  * @since 1.6.22 Added image from location page.
3186 3186
  * @package GeoDirectory
3187 3187
  */
3188
-function geodir_fb_like_thumbnail(){
3188
+function geodir_fb_like_thumbnail() {
3189 3189
 
3190 3190
     $facebook_image = '';
3191 3191
 
3192
-    if(is_single()){// single post
3192
+    if (is_single()) {// single post
3193 3193
         global $post;
3194
-        if(isset($post->featured_image) && $post->featured_image){
3194
+        if (isset($post->featured_image) && $post->featured_image) {
3195 3195
             $upload_dir = wp_upload_dir();
3196 3196
             $facebook_image = $upload_dir['baseurl'].$post->featured_image;
3197 3197
 
3198 3198
         }
3199
-    }elseif(geodir_is_page('location')){// location page
3199
+    }elseif (geodir_is_page('location')) {// location page
3200 3200
         if (function_exists('geodir_get_location_seo')) {
3201 3201
             $seo = geodir_get_location_seo();
3202 3202
             if (isset($seo->seo_image) && $seo->seo_image) {
@@ -3205,11 +3205,11 @@  discard block
 block discarded – undo
3205 3205
             }
3206 3206
         }
3207 3207
 
3208
-        if(!$facebook_image){
3208
+        if (!$facebook_image) {
3209 3209
             global $post;
3210 3210
 
3211
-            if (has_post_thumbnail( $post->ID ) ){
3212
-                $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
3211
+            if (has_post_thumbnail($post->ID)) {
3212
+                $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full');
3213 3213
                 $facebook_image = isset($image[0]) ? $image[0] : '';
3214 3214
             }
3215 3215
         }
@@ -3222,16 +3222,16 @@  discard block
 block discarded – undo
3222 3222
      * @since 1.6.22
3223 3223
      * @param string $facebook_image The image URL or blank.
3224 3224
      */
3225
-    $facebook_image = apply_filters('geodir_fb_share_image',$facebook_image);
3225
+    $facebook_image = apply_filters('geodir_fb_share_image', $facebook_image);
3226 3226
 
3227
-    if($facebook_image){
3227
+    if ($facebook_image) {
3228 3228
         echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$facebook_image\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3229 3229
     }
3230 3230
 
3231 3231
 
3232 3232
 }
3233 3233
 
3234
-add_action( 'save_post', 'geodir_clear_map_cache_on_save', 10,2 );
3234
+add_action('save_post', 'geodir_clear_map_cache_on_save', 10, 2);
3235 3235
 
3236 3236
 
3237 3237
 /**
@@ -3239,10 +3239,10 @@  discard block
 block discarded – undo
3239 3239
  *
3240 3240
  * @since 1.6.22
3241 3241
  */
3242
-function geodir_delete_map_cache(){
3242
+function geodir_delete_map_cache() {
3243 3243
     $files = glob(realpath(dirname(__FILE__))."/map-functions/map-cache/*.json"); // get all file names
3244
-    foreach($files as $file){ // iterate files
3245
-        if(is_file($file))
3244
+    foreach ($files as $file) { // iterate files
3245
+        if (is_file($file))
3246 3246
             unlink($file); // delete file
3247 3247
     }
3248 3248
 }
@@ -3257,21 +3257,21 @@  discard block
 block discarded – undo
3257 3257
  */
3258 3258
 function geodir_clear_map_cache_on_save($post_id, $post) {
3259 3259
 
3260
-    if(!get_option('geodir_enable_map_cache')){
3260
+    if (!get_option('geodir_enable_map_cache')) {
3261 3261
         return;
3262 3262
     }
3263 3263
 
3264
-    if ( isset( $post->post_type ) && ( $post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post' ) ) {
3264
+    if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
3265 3265
         return;
3266 3266
     }
3267 3267
 
3268 3268
     $geodir_posttypes = geodir_get_posttypes();
3269 3269
 
3270
-    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3270
+    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3271 3271
         return;
3272 3272
     }
3273 3273
 
3274
-    if ( ! wp_is_post_revision( $post_id ) && isset( $post->post_type ) && in_array( $post->post_type, $geodir_posttypes ) ) {
3274
+    if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
3275 3275
         geodir_delete_map_cache();
3276 3276
     }
3277 3277
 
@@ -3287,20 +3287,20 @@  discard block
 block discarded – undo
3287 3287
  * @param array $postarr An array of sanitized, but otherwise unmodified post data.
3288 3288
  * @return array Filtered post data.
3289 3289
  */
3290
-function geodir_fix_pending_listing_post_name( $data, $postarr ) {
3290
+function geodir_fix_pending_listing_post_name($data, $postarr) {
3291 3291
     // Dont' update post name for autosaves
3292
-    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3292
+    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3293 3293
         return $data;
3294 3294
     }
3295 3295
 
3296
-    if ( !empty( $data['post_name'] ) || empty( $data['post_status'] ) || empty( $data['post_type'] ) || empty( $data['post_title'] ) ) {
3296
+    if (!empty($data['post_name']) || empty($data['post_status']) || empty($data['post_type']) || empty($data['post_title'])) {
3297 3297
         return $data;
3298 3298
     }
3299 3299
 
3300
-    if ( ( 'draft' == $data['post_status'] || 'pending' == $data['post_status'] ) && in_array( $data['post_type'], geodir_get_posttypes() ) ) {
3301
-        $data['post_name'] = wp_unique_post_slug( sanitize_title( $data['post_title'] ), ( !empty( $postarr['ID'] ) ? $postarr['ID'] : 0 ), '', $data['post_type'], $data['post_parent'] );
3300
+    if (('draft' == $data['post_status'] || 'pending' == $data['post_status']) && in_array($data['post_type'], geodir_get_posttypes())) {
3301
+        $data['post_name'] = wp_unique_post_slug(sanitize_title($data['post_title']), (!empty($postarr['ID']) ? $postarr['ID'] : 0), '', $data['post_type'], $data['post_parent']);
3302 3302
     }
3303 3303
 
3304 3304
     return $data;
3305 3305
 }
3306
-add_filter( 'wp_insert_post_data', 'geodir_fix_pending_listing_post_name', 10, 2 );
3307 3306
\ No newline at end of file
3307
+add_filter('wp_insert_post_data', 'geodir_fix_pending_listing_post_name', 10, 2);
3308 3308
\ No newline at end of file
Please login to merge, or discard this patch.