Test Failed
Pull Request — master (#296)
by Viruthagiri
11:50
created
geodirectory-functions/post_functions.php 4 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -721,7 +721,7 @@  discard block
 block discarded – undo
721 721
      * @param int $post_id The post ID.
722 722
      * @param string $postmeta Detail table column name.
723 723
      * @param string $meta_value Detail table column value.
724
-     * @return void|bool
724
+     * @return null|false
725 725
      */
726 726
     function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
727 727
     {
@@ -775,7 +775,7 @@  discard block
 block discarded – undo
775 775
      * @param string $postmeta Detail table column name.
776 776
      * @todo check if this is depreciated
777 777
      * @todo Fix unknown variable mval
778
-     * @return bool
778
+     * @return boolean|null
779 779
      */
780 780
     function geodir_delete_post_meta($post_id, $postmeta)
781 781
     {
@@ -2124,7 +2124,7 @@  discard block
 block discarded – undo
2124 2124
      * @global string $plugin_prefix Geodirectory plugin table prefix.
2125 2125
      * @param int $deleted_postid The post ID.
2126 2126
      * @param bool $force Optional. Do you want to force delete it? Default: false.
2127
-     * @return bool|void
2127
+     * @return null|false
2128 2128
      */
2129 2129
     function geodir_delete_listing_info($deleted_postid, $force = false)
2130 2130
     {
@@ -2693,7 +2693,7 @@  discard block
 block discarded – undo
2693 2693
  * @since 1.0.0
2694 2694
  * @package GeoDirectory
2695 2695
  * @global object $current_user Current user object.
2696
- * @param int|string $listing_id The post ID.
2696
+ * @param integer $listing_id The post ID.
2697 2697
  * @param bool $exclude_admin Optional. Do you want to exclude admin from the check?. Default true.
2698 2698
  * @return bool
2699 2699
  */
Please login to merge, or discard this patch.
Braces   +174 added lines, -123 removed lines patch added patch discarded remove patch
@@ -21,12 +21,13 @@  discard block
 block discarded – undo
21 21
 {
22 22
 
23 23
     $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
24
+    if (!empty($post_cat_ids)) {
25
+            $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+    }
26 27
 
27 28
     if (!isset($default_cat) || empty($default_cat)) {
28 29
         $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
+    } else{
30 31
         if(!is_int($default_cat)){
31 32
             $category = get_term_by('name', $default_cat, $taxonomy);
32 33
             if(isset($category->term_id)){
@@ -372,8 +373,9 @@  discard block
 block discarded – undo
372 373
             } elseif (trim($type) == 'file') {
373 374
                 if (isset($request_info[$name])) {
374 375
                     $request_files = array();
375
-                    if ($request_info[$name] != '')
376
-                        $request_files = explode(",", $request_info[$name]);
376
+                    if ($request_info[$name] != '') {
377
+                                            $request_files = explode(",", $request_info[$name]);
378
+                    }
377 379
 
378 380
                     $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
379 381
                     geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
@@ -399,7 +401,7 @@  discard block
 block discarded – undo
399 401
 
400 402
                         $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
401 403
 
402
-                    }else{
404
+                    } else{
403 405
                         $post_htmlvar_value = $request_info[$name];
404 406
                     }
405 407
 
@@ -439,15 +441,17 @@  discard block
 block discarded – undo
439 441
 
440 442
             foreach ($request_info['post_category'] as $taxonomy => $cat) {
441 443
 
442
-                if ($dummy)
443
-                    $post_category = $cat;
444
-                else {
444
+                if ($dummy) {
445
+                                    $post_category = $cat;
446
+                } else {
445 447
 
446
-                    if (!is_array($cat) && strstr($cat, ','))
447
-                        $cat = explode(',', $cat);
448
+                    if (!is_array($cat) && strstr($cat, ',')) {
449
+                                            $cat = explode(',', $cat);
450
+                    }
448 451
 
449
-                    if (!empty($cat) && is_array($cat))
450
-                        $post_category = array_map('intval', $cat);
452
+                    if (!empty($cat) && is_array($cat)) {
453
+                                            $post_category = array_map('intval', $cat);
454
+                    }
451 455
                 }
452 456
 
453 457
                 wp_set_object_terms($last_post_id, $post_category, $taxonomy);
@@ -465,11 +469,13 @@  discard block
 block discarded – undo
465 469
         if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
466 470
             $post_tags = explode(",", $request_info['post_tags']);
467 471
         } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
468
-            if ($dummy)
469
-                $post_tags = $request_info['post_tags'];
472
+            if ($dummy) {
473
+                            $post_tags = $request_info['post_tags'];
474
+            }
470 475
         } else {
471
-            if ($dummy)
472
-                $post_tags = array($request_info['post_title']);
476
+            if ($dummy) {
477
+                            $post_tags = array($request_info['post_title']);
478
+            }
473 479
         }
474 480
 
475 481
         if (is_array($post_tags)) {
@@ -556,15 +562,17 @@  discard block
 block discarded – undo
556 562
 
557 563
     global $wpdb, $plugin_prefix, $post, $post_info;
558 564
 
559
-    if ($post_id == '' && !empty($post))
560
-        $post_id = $post->ID;
565
+    if ($post_id == '' && !empty($post)) {
566
+            $post_id = $post->ID;
567
+    }
561 568
 
562 569
     $post_type = get_post_type($post_id);
563 570
 
564 571
     $all_postypes = geodir_get_posttypes();
565 572
 
566
-    if (!in_array($post_type, $all_postypes))
567
-        return false;
573
+    if (!in_array($post_type, $all_postypes)) {
574
+            return false;
575
+    }
568 576
 
569 577
     $table = $plugin_prefix . $post_type . '_detail';
570 578
 
@@ -714,8 +722,9 @@  discard block
 block discarded – undo
714 722
             do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
715 723
 
716 724
             return true;
717
-        } else
718
-            return false;
725
+        } else {
726
+                    return false;
727
+        }
719 728
 
720 729
     }
721 730
 }
@@ -769,8 +778,9 @@  discard block
 block discarded – undo
769 778
             }
770 779
 
771 780
 
772
-        } else
773
-            return false;
781
+        } else {
782
+                    return false;
783
+        }
774 784
     }
775 785
 }
776 786
 
@@ -801,8 +811,9 @@  discard block
 block discarded – undo
801 811
             $post_meta_set_query = '';
802 812
 
803 813
             foreach ($postmeta as $mkey) {
804
-                if ($mval != '')
805
-                    $post_meta_set_query .= $mkey . " = '', ";
814
+                if ($mval != '') {
815
+                                    $post_meta_set_query .= $mkey . " = '', ";
816
+                }
806 817
             }
807 818
 
808 819
             $post_meta_set_query = trim($post_meta_set_query, ", ");
@@ -832,8 +843,9 @@  discard block
 block discarded – undo
832 843
                 return true;
833 844
             }
834 845
 
835
-        } else
836
-            return false;
846
+        } else {
847
+                    return false;
848
+        }
837 849
     }
838 850
 }
839 851
 
@@ -863,8 +875,9 @@  discard block
 block discarded – undo
863 875
 
864 876
         $post_type = get_post_type($post_id);
865 877
 
866
-        if (!in_array($post_type, $all_postypes))
867
-            return false;
878
+        if (!in_array($post_type, $all_postypes)) {
879
+                    return false;
880
+        }
868 881
 
869 882
         $table = $plugin_prefix . $post_type . '_detail';
870 883
 
@@ -873,8 +886,9 @@  discard block
 block discarded – undo
873 886
             
874 887
             if ($meta_value && $meta_value !== '') {
875 888
                 return maybe_serialize($meta_value);
876
-            } else
877
-                return $meta_value;
889
+            } else {
890
+                            return $meta_value;
891
+            }
878 892
         } else {
879 893
             return false;
880 894
         }
@@ -1008,7 +1022,7 @@  discard block
 block discarded – undo
1008 1022
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1009 1023
                                 $new_name = basename($uploaded['file']);
1010 1024
                                 $uploaded_file = $uploaded;
1011
-                            }else{
1025
+                            } else{
1012 1026
                                 print_r($uploaded);exit;
1013 1027
                             }
1014 1028
                             $external_img = false;
@@ -1033,8 +1047,9 @@  discard block
 block discarded – undo
1033 1047
                                 $file_path = $curr_img_dir . '/' . $filename;
1034 1048
                             }
1035 1049
 
1036
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1037
-                                unlink($img_path);
1050
+                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) {
1051
+                                                            unlink($img_path);
1052
+                            }
1038 1053
                         }
1039 1054
 
1040 1055
                         if (!empty($uploaded_file)) {
@@ -1063,8 +1078,9 @@  discard block
 block discarded – undo
1063 1078
                             $attachment_set = '';
1064 1079
 
1065 1080
                             foreach ($attachment as $key => $val) {
1066
-                                if ($val != '')
1067
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1081
+                                if ($val != '') {
1082
+                                                                    $attachment_set .= $key . " = '" . $val . "', ";
1083
+                                }
1068 1084
                             }
1069 1085
 
1070 1086
                             $attachment_set = trim($attachment_set, ", ");
@@ -1089,8 +1105,9 @@  discard block
 block discarded – undo
1089 1105
                         )
1090 1106
                     );
1091 1107
 
1092
-                    if ($menu_order == 1)
1093
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1108
+                    if ($menu_order == 1) {
1109
+                                            $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1110
+                    }
1094 1111
 
1095 1112
                 }
1096 1113
 
@@ -1131,8 +1148,9 @@  discard block
 block discarded – undo
1131 1148
 
1132 1149
         $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1133 1150
 
1134
-        if (!empty($invalid_files))
1135
-            geodir_remove_attachments($invalid_files);
1151
+        if (!empty($invalid_files)) {
1152
+                    geodir_remove_attachments($invalid_files);
1153
+        }
1136 1154
     }
1137 1155
 
1138 1156
 }
@@ -1185,16 +1203,19 @@  discard block
 block discarded – undo
1185 1203
 function geodir_delete_directory($dirname)
1186 1204
 {
1187 1205
     $dir_handle = '';
1188
-    if (is_dir($dirname))
1189
-        $dir_handle = opendir($dirname);
1190
-    if (!$dir_handle)
1191
-        return false;
1206
+    if (is_dir($dirname)) {
1207
+            $dir_handle = opendir($dirname);
1208
+    }
1209
+    if (!$dir_handle) {
1210
+            return false;
1211
+    }
1192 1212
     while ($file = readdir($dir_handle)) {
1193 1213
         if ($file != "." && $file != "..") {
1194
-            if (!is_dir($dirname . "/" . $file))
1195
-                unlink($dirname . "/" . $file);
1196
-            else
1197
-                geodir_delete_directory($dirname . '/' . $file);
1214
+            if (!is_dir($dirname . "/" . $file)) {
1215
+                            unlink($dirname . "/" . $file);
1216
+            } else {
1217
+                            geodir_delete_directory($dirname . '/' . $file);
1218
+            }
1198 1219
         }
1199 1220
     }
1200 1221
     closedir($dir_handle);
@@ -1223,8 +1244,9 @@  discard block
 block discarded – undo
1223 1244
             foreach ($postcurr_images as $postimg) {
1224 1245
                 $image_name_arr = explode('/', $postimg->src);
1225 1246
                 $filename = end($image_name_arr);
1226
-                if (file_exists($uploads_dir . '/' . $filename))
1227
-                    unlink($uploads_dir . '/' . $filename);
1247
+                if (file_exists($uploads_dir . '/' . $filename)) {
1248
+                                    unlink($uploads_dir . '/' . $filename);
1249
+                }
1228 1250
             }
1229 1251
 
1230 1252
         } // endif
@@ -1283,8 +1305,9 @@  discard block
 block discarded – undo
1283 1305
 
1284 1306
             $file_info = pathinfo($file);
1285 1307
             $sub_dir = '';
1286
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1287
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1308
+            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1309
+                            $sub_dir = stripslashes_deep($file_info['dirname']);
1310
+            }
1288 1311
 
1289 1312
             $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1290 1313
             $uploads_baseurl = $uploads['baseurl'];
@@ -1328,9 +1351,9 @@  discard block
 block discarded – undo
1328 1351
                 $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1329 1352
             }
1330 1353
 
1331
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1332
-                $default_img = $default_catimg['src'];
1333
-            elseif ($no_image) {
1354
+            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) {
1355
+                            $default_img = $default_catimg['src'];
1356
+            } elseif ($no_image) {
1334 1357
                 $default_img = get_option('geodir_listing_no_img');
1335 1358
             }
1336 1359
 
@@ -1362,10 +1385,13 @@  discard block
 block discarded – undo
1362 1385
             }
1363 1386
         }
1364 1387
 
1365
-        if (!empty($img_arr))
1366
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1367
-        else
1368
-            return false;
1388
+        if (!empty($img_arr)) {
1389
+                    return (object)$img_arr;
1390
+        }
1391
+        //return (object)array( 'src' => $file_url, 'path' => $file_path );
1392
+        else {
1393
+                    return false;
1394
+        }
1369 1395
     }
1370 1396
 }
1371 1397
 
@@ -1392,8 +1418,9 @@  discard block
 block discarded – undo
1392 1418
             echo $html;
1393 1419
         } elseif (!empty($html)) {
1394 1420
             return $html;
1395
-        } else
1396
-            return false;
1421
+        } else {
1422
+                    return false;
1423
+        }
1397 1424
     }
1398 1425
 }
1399 1426
 
@@ -1421,8 +1448,9 @@  discard block
 block discarded – undo
1421 1448
         }
1422 1449
         $not_featured = '';
1423 1450
         $sub_dir = '';
1424
-        if (!$add_featured)
1425
-            $not_featured = " AND is_featured = 0 ";
1451
+        if (!$add_featured) {
1452
+                    $not_featured = " AND is_featured = 0 ";
1453
+        }
1426 1454
 
1427 1455
         $arrImages = $wpdb->get_results(
1428 1456
             $wpdb->prepare(
@@ -1443,8 +1471,9 @@  discard block
 block discarded – undo
1443 1471
 
1444 1472
                 $file_info = pathinfo($attechment->file);
1445 1473
 
1446
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1447
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1474
+                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
1475
+                                    $sub_dir = stripslashes_deep($file_info['dirname']);
1476
+                }
1448 1477
 
1449 1478
                 $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1450 1479
                 $uploads_baseurl = $uploads['baseurl'];
@@ -1489,9 +1518,9 @@  discard block
 block discarded – undo
1489 1518
             $default_img = '';
1490 1519
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1491 1520
             $post_type = get_post_type($post_id);
1492
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1493
-                $default_img = $default_catimg['src'];
1494
-            elseif ($no_images) {
1521
+            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) {
1522
+                            $default_img = $default_catimg['src'];
1523
+            } elseif ($no_images) {
1495 1524
                 $default_img = get_option('geodir_listing_no_img');
1496 1525
             }
1497 1526
 
@@ -1526,8 +1555,9 @@  discard block
 block discarded – undo
1526 1555
                 $return_arr[] = (object)$img_arr;
1527 1556
 
1528 1557
                 return $return_arr;
1529
-            } else
1530
-                return false;
1558
+            } else {
1559
+                            return false;
1560
+            }
1531 1561
         }
1532 1562
     }
1533 1563
 }
@@ -1588,8 +1618,9 @@  discard block
 block discarded – undo
1588 1618
                         $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1589 1619
                     } else if ($image->width < ($max_size->h)) {
1590 1620
                         $width_per = round((($image->width / $max_size->w) * 100), 2);
1591
-                    } else
1592
-                        $width_per = 100;
1621
+                    } else {
1622
+                                            $width_per = 100;
1623
+                    }
1593 1624
                 }
1594 1625
 
1595 1626
                 if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
@@ -1597,7 +1628,7 @@  discard block
 block discarded – undo
1597 1628
                 } else {
1598 1629
                     if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1599 1630
                         $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1600
-                    }else{
1631
+                    } else{
1601 1632
                         //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1602 1633
                         //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1603 1634
                         $html = '<div data-src="'.$image->src.'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
@@ -1612,8 +1643,9 @@  discard block
 block discarded – undo
1612 1643
             echo $html;
1613 1644
         } elseif (!empty($html)) {
1614 1645
             return $html;
1615
-        } else
1616
-            return false;
1646
+        } else {
1647
+                    return false;
1648
+        }
1617 1649
     }
1618 1650
 }
1619 1651
 
@@ -1651,8 +1683,9 @@  discard block
 block discarded – undo
1651 1683
                 $post_obj = get_post($post_id);
1652 1684
 
1653 1685
                 $cat_ids = array('0');
1654
-                if (is_array($tt_ids))
1655
-                    $cat_ids = $tt_ids;
1686
+                if (is_array($tt_ids)) {
1687
+                                    $cat_ids = $tt_ids;
1688
+                }
1656 1689
 
1657 1690
 
1658 1691
                 if (!empty($cat_ids)) {
@@ -1709,8 +1742,9 @@  discard block
 block discarded – undo
1709 1742
                         $json .= '}';
1710 1743
 
1711 1744
 
1712
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1713
-                            $post_marker_json = $json;
1745
+                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) {
1746
+                                                    $post_marker_json = $json;
1747
+                        }
1714 1748
 
1715 1749
 
1716 1750
                         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)))) {
@@ -1741,10 +1775,13 @@  discard block
 block discarded – undo
1741 1775
                 if (!empty($post_term) && is_array($post_term)) {
1742 1776
                     $categories = implode(',', $post_term);
1743 1777
 
1744
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1778
+                    if ($categories != '' && $categories != 0) {
1779
+                    	$categories = ',' . $categories . ',';
1780
+                    }
1745 1781
 
1746
-                    if (empty($post_marker_json))
1747
-                        $post_marker_json = isset($json) ? $json : '';
1782
+                    if (empty($post_marker_json)) {
1783
+                                            $post_marker_json = isset($json) ? $json : '';
1784
+                    }
1748 1785
 
1749 1786
                     if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1750 1787
 
@@ -1783,8 +1820,9 @@  discard block
 block discarded – undo
1783 1820
 
1784 1821
                                 }
1785 1822
 
1786
-                                if ($default_category == '')
1787
-                                    $default_category = $categories[0];
1823
+                                if ($default_category == '') {
1824
+                                                                    $default_category = $categories[0];
1825
+                                }
1788 1826
 
1789 1827
                                 geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1790 1828
 
@@ -1928,7 +1966,7 @@  discard block
 block discarded – undo
1928 1966
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
1929 1967
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1930 1968
                             <?php
1931
-                            }else{
1969
+                            } else{
1932 1970
                                 echo '<div class="geodir-bubble_image"></div>';
1933 1971
                             }
1934 1972
                         } else {
@@ -1936,7 +1974,7 @@  discard block
 block discarded – undo
1936 1974
                                 ?>
1937 1975
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1938 1976
                             <?php
1939
-                            }else{
1977
+                            } else{
1940 1978
                                 echo '<div class="geodir-bubble_image"></div>';
1941 1979
                             }
1942 1980
                         }
@@ -2038,10 +2076,11 @@  discard block
 block discarded – undo
2038 2076
      */
2039 2077
     function geodir_new_post_default_status()
2040 2078
     {
2041
-        if (get_option('geodir_new_post_default_status'))
2042
-            return get_option('geodir_new_post_default_status');
2043
-        else
2044
-            return 'publish';
2079
+        if (get_option('geodir_new_post_default_status')) {
2080
+                    return get_option('geodir_new_post_default_status');
2081
+        } else {
2082
+                    return 'publish';
2083
+        }
2045 2084
 
2046 2085
     }
2047 2086
 }
@@ -2192,8 +2231,9 @@  discard block
 block discarded – undo
2192 2231
 
2193 2232
         $all_postypes = geodir_get_posttypes();
2194 2233
 
2195
-        if (!in_array($post_type, $all_postypes))
2196
-            return false;
2234
+        if (!in_array($post_type, $all_postypes)) {
2235
+                    return false;
2236
+        }
2197 2237
 
2198 2238
         $table = $plugin_prefix . $post_type . '_detail';
2199 2239
 
@@ -2461,8 +2501,9 @@  discard block
 block discarded – undo
2461 2501
         $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2462 2502
 
2463 2503
         $user_meta_data = '';
2464
-        if (isset($current_user->data->ID))
2465
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2504
+        if (isset($current_user->data->ID)) {
2505
+                    $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2506
+        }
2466 2507
 
2467 2508
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2468 2509
             ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
@@ -2475,8 +2516,9 @@  discard block
 block discarded – undo
2475 2516
 
2476 2517
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2477 2518
                 $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2478
-            } else
2479
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2519
+            } else {
2520
+                            $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2521
+            }
2480 2522
 
2481 2523
             ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2482 2524
                                                                                         href="javascript:void(0);"
@@ -2539,14 +2581,16 @@  discard block
 block discarded – undo
2539 2581
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2540 2582
 
2541 2583
             $cat_post_count = $wpdb->get_var($count_query);
2542
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2543
-                $cat_post_count = 0;
2584
+            if (empty($cat_post_count) || is_wp_error($cat_post_count)) {
2585
+                            $cat_post_count = 0;
2586
+            }
2544 2587
 
2545 2588
             return $cat_post_count;
2546 2589
 
2547
-        } else
2548
-
2549
-            return $term->count;
2590
+        } else {
2591
+        
2592
+            return $term->count;
2593
+        }
2550 2594
     }
2551 2595
     return false;
2552 2596
 
@@ -2593,13 +2637,15 @@  discard block
 block discarded – undo
2593 2637
 		return $length;
2594 2638
 	}
2595 2639
 	
2596
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2597
-        $length = get_option('geodir_desc_word_limit');
2598
-    elseif (get_query_var('excerpt_length'))
2599
-        $length = get_query_var('excerpt_length');
2640
+    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) {
2641
+            $length = get_option('geodir_desc_word_limit');
2642
+    } elseif (get_query_var('excerpt_length')) {
2643
+            $length = get_query_var('excerpt_length');
2644
+    }
2600 2645
 
2601
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2602
-        $length = get_option('geodir_author_desc_word_limit');
2646
+    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) {
2647
+            $length = get_option('geodir_author_desc_word_limit');
2648
+    }
2603 2649
 
2604 2650
     return $length;
2605 2651
 }
@@ -2732,10 +2778,11 @@  discard block
 block discarded – undo
2732 2778
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2733 2779
 {
2734 2780
     $listing_author_id = geodir_get_listing_author($listing_id);
2735
-    if ($listing_author_id == $user_id)
2736
-        return true;
2737
-    else
2738
-        return false;
2781
+    if ($listing_author_id == $user_id) {
2782
+            return true;
2783
+    } else {
2784
+            return false;
2785
+    }
2739 2786
 
2740 2787
 }
2741 2788
 
@@ -2784,10 +2831,11 @@  discard block
 block discarded – undo
2784 2831
     $pattern = '/-\d+x\d+\./';
2785 2832
     preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2786 2833
 
2787
-    if (empty($matches))
2788
-        return '';
2789
-    else
2790
-        return $file;
2834
+    if (empty($matches)) {
2835
+            return '';
2836
+    } else {
2837
+            return $file;
2838
+    }
2791 2839
 
2792 2840
 }
2793 2841
 
@@ -2872,8 +2920,9 @@  discard block
 block discarded – undo
2872 2920
     } else {
2873 2921
         //set_post_thumbnail($post_id,-1);
2874 2922
 
2875
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2876
-            wp_delete_attachment($post_thumbnail_id);
2923
+        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2924
+                    wp_delete_attachment($post_thumbnail_id);
2925
+        }
2877 2926
 
2878 2927
     }
2879 2928
 }
@@ -2958,8 +3007,9 @@  discard block
 block discarded – undo
2958 3007
 
2959 3008
     global $wpdb;
2960 3009
 
2961
-    if ($listing_type == '')
2962
-        $listing_type = 'gd_place';
3010
+    if ($listing_type == '') {
3011
+            $listing_type = 'gd_place';
3012
+    }
2963 3013
 
2964 3014
     $fields_info = array();
2965 3015
 
@@ -2982,8 +3032,9 @@  discard block
 block discarded – undo
2982 3032
 
2983 3033
                 $fields_info[$prefix . 'address'] = $data->field_type;
2984 3034
 
2985
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2986
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
3035
+                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) {
3036
+                                    $fields_info[$prefix . 'zip'] = $data->field_type;
3037
+                }
2987 3038
 
2988 3039
             } else {
2989 3040
 
Please login to merge, or discard this patch.
Indentation   +2220 added lines, -2220 removed lines patch added patch discarded remove patch
@@ -20,480 +20,480 @@  discard block
 block discarded – undo
20 20
 function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '')
21 21
 {
22 22
 
23
-    $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
-    if (!empty($post_cat_ids))
25
-        $post_cat_array = explode(",", trim($post_cat_ids, ","));
26
-
27
-    if (!isset($default_cat) || empty($default_cat)) {
28
-        $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
-    }else{
30
-        if(!is_int($default_cat)){
31
-            $category = get_term_by('name', $default_cat, $taxonomy);
32
-            if(isset($category->term_id)){
33
-                $default_cat =  $category->term_id;
34
-            }
35
-        }
23
+	$post_cat_ids = geodir_get_post_meta($post_id, $taxonomy);
24
+	if (!empty($post_cat_ids))
25
+		$post_cat_array = explode(",", trim($post_cat_ids, ","));
26
+
27
+	if (!isset($default_cat) || empty($default_cat)) {
28
+		$default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : '';
29
+	}else{
30
+		if(!is_int($default_cat)){
31
+			$category = get_term_by('name', $default_cat, $taxonomy);
32
+			if(isset($category->term_id)){
33
+				$default_cat =  $category->term_id;
34
+			}
35
+		}
36 36
 
37
-    }
37
+	}
38 38
 
39 39
 
40
-    geodir_save_post_meta($post_id, 'default_category', $default_cat);
40
+	geodir_save_post_meta($post_id, 'default_category', $default_cat);
41 41
 
42
-    if (isset($category_str) && empty($category_str)) {
42
+	if (isset($category_str) && empty($category_str)) {
43 43
 
44
-        $post_cat_str = '';
45
-        $post_categories = array();
46
-        if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
-            $post_cat_str = implode(",y:#", $post_cat_array);
48
-            $post_cat_str .= ",y:";
49
-            $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
-        }
51
-        $post_categories[$taxonomy] = $post_cat_str;
52
-        $category_str = $post_categories;
53
-    }
44
+		$post_cat_str = '';
45
+		$post_categories = array();
46
+		if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
47
+			$post_cat_str = implode(",y:#", $post_cat_array);
48
+			$post_cat_str .= ",y:";
49
+			$post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
50
+		}
51
+		$post_categories[$taxonomy] = $post_cat_str;
52
+		$category_str = $post_categories;
53
+	}
54 54
 
55
-    $change_cat_str = $category_str[$taxonomy];
55
+	$change_cat_str = $category_str[$taxonomy];
56 56
 
57
-    $default_pos = strpos($change_cat_str, 'd:');
57
+	$default_pos = strpos($change_cat_str, 'd:');
58 58
 
59
-    if ($default_pos === false) {
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
 
65
-    $category_str[$taxonomy] = $change_cat_str;
65
+	$category_str[$taxonomy] = $change_cat_str;
66 66
 
67
-    update_post_meta($post_id, 'post_categories', $category_str);
67
+	update_post_meta($post_id, 'post_categories', $category_str);
68 68
 
69 69
 }
70 70
 
71 71
 
72 72
 if (!function_exists('geodir_save_listing')) {
73
-    /**
74
-     * Saves listing in the database using given information.
75
-     *
76
-     * @since 1.0.0
77
-     * @since 1.5.4 New parameter $wp_error added.
78
-     * @package GeoDirectory
79
-     * @global object $wpdb WordPress Database object.
80
-     * @global object $post The current post object.
81
-     * @global object $current_user Current user object.
73
+	/**
74
+	 * Saves listing in the database using given information.
75
+	 *
76
+	 * @since 1.0.0
77
+	 * @since 1.5.4 New parameter $wp_error added.
78
+	 * @package GeoDirectory
79
+	 * @global object $wpdb WordPress Database object.
80
+	 * @global object $post The current post object.
81
+	 * @global object $current_user Current user object.
82 82
 	 * @global object $gd_session GeoDirectory Session object.
83
-     * @param array $request_info {
84
-     *    Array of request info arguments.
85
-     *
86
-     *    @type string $action                                  Ajax action name.
87
-     *    @type string $geodir_ajax                             Ajax type.
88
-     *    @type string $ajax_action                             Ajax action.
89
-     *    @type string $listing_type                            Listing type.
90
-     *    @type string $pid                                     Default Post ID.
91
-     *    @type string $preview                                 Todo Desc needed.
92
-     *    @type string $add_listing_page_id                     Add listing page ID.
93
-     *    @type string $post_title                              Listing title.
94
-     *    @type string $post_desc                               Listing Description.
95
-     *    @type string $post_tags                               Listing tags.
96
-     *    @type array  $cat_limit                               Category limit.
97
-     *    @type array  $post_category                           Category IDs.
98
-     *    @type array  $post_category_str                       Category string.
99
-     *    @type string $post_default_category                   Default category ID.
100
-     *    @type string $post_address                            Listing address.
101
-     *    @type string $geodir_location_add_listing_country_val Add listing country value.
102
-     *    @type string $post_country                            Listing country.
103
-     *    @type string $geodir_location_add_listing_region_val  Add listing region value.
104
-     *    @type string $post_region                             Listing region.
105
-     *    @type string $geodir_location_add_listing_city_val    Add listing city value.
106
-     *    @type string $post_city                               Listing city.
107
-     *    @type string $post_zip                                Listing zip.
108
-     *    @type string $post_latitude                           Listing latitude.
109
-     *    @type string $post_longitude                          Listing longitude.
110
-     *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
111
-     *    @type string $post_mapzoom                            Listing mapzoom Default "9".
112
-     *    @type string $geodir_timing                           Business timing info.
113
-     *    @type string $geodir_contact                          Contact number.
114
-     *    @type string $geodir_email                            Business contact email.
115
-     *    @type string $geodir_website                          Business website.
116
-     *    @type string $geodir_twitter                          Twitter link.
117
-     *    @type string $geodir_facebook                         Facebook link.
118
-     *    @type string $geodir_video                            Video link.
119
-     *    @type string $geodir_special_offers                   Speacial offers.
120
-     *    @type string $post_images                             Post image urls.
121
-     *    @type string $post_imagesimage_limit                  Post images limit.
122
-     *    @type string $post_imagestotImg                       Todo Desc needed.
123
-     *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
124
-     *    @type string $geodir_spamblocker                      Todo Desc needed.
125
-     *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
126
-     *
127
-     * }
128
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
129
-     * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
130
-     * @return int|string|WP_Error Created post id or WP_Error on failure.
131
-     */
132
-    function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
133
-    {
134
-        global $wpdb, $current_user, $gd_session;
135
-
136
-        $last_post_id = '';
137
-
138
-        if ($gd_session->get('listing') && !$dummy) {
139
-            $request_info = array();
140
-            $request_session = $gd_session->get('listing');
141
-            $request_info = array_merge($_REQUEST, $request_session);
142
-        } else if (!$gd_session->get('listing') && !$dummy) {
143
-            global $post;
144
-            $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
145
-            $request_info['post_title'] = $request_info['post_title'];
146
-            $request_info['listing_type'] = $post->post_type;
147
-            $request_info['post_desc'] = $request_info['content'];
148
-        } else if (!$dummy) {
149
-            return false;
150
-        }
151
-
152
-        /**
153
-         * Filter the request_info array.
154
-         *
155
-         * You can use this filter to modify request_info array.
156
-         *
157
-         * @since 1.0.0
158
-         * @package GeoDirectory
159
-         * @param array $request_info See {@see geodir_save_listing()} for accepted args.
160
-         */
161
-        $request_info = apply_filters('geodir_action_get_request_info', $request_info);
162
-
163
-        // Check if we need to save post location as new location
164
-        $location_result = geodir_get_default_location();
165
-
166
-        if ($location_result->location_id > 0) {
167
-            if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
168
-                $request_info['post_location'] = array(
169
-                    'city' => $request_info['post_city'],
170
-                    'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
171
-                    'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
172
-                    'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
173
-                    'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
174
-                );
175
-
176
-                $post_location_info = $request_info['post_location'];
177
-
178
-                if ($location_id = geodir_add_new_location($post_location_info)) {
179
-                    $post_location_id = $location_id;
180
-                }
181
-            } else {
182
-                $post_location_id = $location_result->location_id;
183
-            }
184
-        } else {
185
-            $post_location_id = $location_result->location_id;
186
-        }
187
-
188
-        if ($dummy) {
189
-            $post_status = 'publish';
190
-        } else {
191
-            $post_status = geodir_new_post_default_status();
192
-        }
193
-
194
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
195
-            $post_status = get_post_status($request_info['pid']);
196
-        }
197
-
198
-        /* fix change of slug on every title edit */
199
-        if (!isset($request_info['post_name'])) {
200
-            $request_info['post_name'] = $request_info['post_title'];
201
-
202
-            if (!empty($request_info['pid'])) {
203
-                $post_info = get_post($request_info['pid']);
204
-
205
-                if (!empty($post_info) && isset($post_info->post_name)) {
206
-                    $request_info['post_name'] = $post_info->post_name;
207
-                }
208
-            }
209
-        }
210
-
211
-        $post = array(
212
-            'post_content' => $request_info['post_desc'],
213
-            'post_status' => $post_status,
214
-            'post_title' => $request_info['post_title'],
215
-            'post_name' => $request_info['post_name'],
216
-            'post_type' => $request_info['listing_type']
217
-        );
218
-
219
-        /**
220
-         * Called before a listing is saved to the database.
221
-         *
222
-         * @since 1.0.0
223
-         * @param object $post The post object.
224
-         */
225
-        do_action_ref_array('geodir_before_save_listing', $post);
83
+	 * @param array $request_info {
84
+	 *    Array of request info arguments.
85
+	 *
86
+	 *    @type string $action                                  Ajax action name.
87
+	 *    @type string $geodir_ajax                             Ajax type.
88
+	 *    @type string $ajax_action                             Ajax action.
89
+	 *    @type string $listing_type                            Listing type.
90
+	 *    @type string $pid                                     Default Post ID.
91
+	 *    @type string $preview                                 Todo Desc needed.
92
+	 *    @type string $add_listing_page_id                     Add listing page ID.
93
+	 *    @type string $post_title                              Listing title.
94
+	 *    @type string $post_desc                               Listing Description.
95
+	 *    @type string $post_tags                               Listing tags.
96
+	 *    @type array  $cat_limit                               Category limit.
97
+	 *    @type array  $post_category                           Category IDs.
98
+	 *    @type array  $post_category_str                       Category string.
99
+	 *    @type string $post_default_category                   Default category ID.
100
+	 *    @type string $post_address                            Listing address.
101
+	 *    @type string $geodir_location_add_listing_country_val Add listing country value.
102
+	 *    @type string $post_country                            Listing country.
103
+	 *    @type string $geodir_location_add_listing_region_val  Add listing region value.
104
+	 *    @type string $post_region                             Listing region.
105
+	 *    @type string $geodir_location_add_listing_city_val    Add listing city value.
106
+	 *    @type string $post_city                               Listing city.
107
+	 *    @type string $post_zip                                Listing zip.
108
+	 *    @type string $post_latitude                           Listing latitude.
109
+	 *    @type string $post_longitude                          Listing longitude.
110
+	 *    @type string $post_mapview                            Listing mapview. Default "ROADMAP".
111
+	 *    @type string $post_mapzoom                            Listing mapzoom Default "9".
112
+	 *    @type string $geodir_timing                           Business timing info.
113
+	 *    @type string $geodir_contact                          Contact number.
114
+	 *    @type string $geodir_email                            Business contact email.
115
+	 *    @type string $geodir_website                          Business website.
116
+	 *    @type string $geodir_twitter                          Twitter link.
117
+	 *    @type string $geodir_facebook                         Facebook link.
118
+	 *    @type string $geodir_video                            Video link.
119
+	 *    @type string $geodir_special_offers                   Speacial offers.
120
+	 *    @type string $post_images                             Post image urls.
121
+	 *    @type string $post_imagesimage_limit                  Post images limit.
122
+	 *    @type string $post_imagestotImg                       Todo Desc needed.
123
+	 *    @type string $geodir_accept_term_condition            Has accepted terms and conditions?.
124
+	 *    @type string $geodir_spamblocker                      Todo Desc needed.
125
+	 *    @type string $geodir_filled_by_spam_bot               Todo Desc needed.
126
+	 *
127
+	 * }
128
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
129
+	 * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false.
130
+	 * @return int|string|WP_Error Created post id or WP_Error on failure.
131
+	 */
132
+	function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false)
133
+	{
134
+		global $wpdb, $current_user, $gd_session;
135
+
136
+		$last_post_id = '';
137
+
138
+		if ($gd_session->get('listing') && !$dummy) {
139
+			$request_info = array();
140
+			$request_session = $gd_session->get('listing');
141
+			$request_info = array_merge($_REQUEST, $request_session);
142
+		} else if (!$gd_session->get('listing') && !$dummy) {
143
+			global $post;
144
+			$request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL);
145
+			$request_info['post_title'] = $request_info['post_title'];
146
+			$request_info['listing_type'] = $post->post_type;
147
+			$request_info['post_desc'] = $request_info['content'];
148
+		} else if (!$dummy) {
149
+			return false;
150
+		}
151
+
152
+		/**
153
+		 * Filter the request_info array.
154
+		 *
155
+		 * You can use this filter to modify request_info array.
156
+		 *
157
+		 * @since 1.0.0
158
+		 * @package GeoDirectory
159
+		 * @param array $request_info See {@see geodir_save_listing()} for accepted args.
160
+		 */
161
+		$request_info = apply_filters('geodir_action_get_request_info', $request_info);
162
+
163
+		// Check if we need to save post location as new location
164
+		$location_result = geodir_get_default_location();
165
+
166
+		if ($location_result->location_id > 0) {
167
+			if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
168
+				$request_info['post_location'] = array(
169
+					'city' => $request_info['post_city'],
170
+					'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '',
171
+					'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '',
172
+					'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '',
173
+					'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : ''
174
+				);
175
+
176
+				$post_location_info = $request_info['post_location'];
177
+
178
+				if ($location_id = geodir_add_new_location($post_location_info)) {
179
+					$post_location_id = $location_id;
180
+				}
181
+			} else {
182
+				$post_location_id = $location_result->location_id;
183
+			}
184
+		} else {
185
+			$post_location_id = $location_result->location_id;
186
+		}
226 187
 
227
-        $send_post_submit_mail = false;
188
+		if ($dummy) {
189
+			$post_status = 'publish';
190
+		} else {
191
+			$post_status = geodir_new_post_default_status();
192
+		}
228 193
 
229
-        // unhook this function so it doesn't loop infinitely
230
-        remove_action('save_post', 'geodir_post_information_save',10,2);
194
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
195
+			$post_status = get_post_status($request_info['pid']);
196
+		}
231 197
 
232
-        if (isset($request_info['pid']) && $request_info['pid'] != '') {
233
-            $post['ID'] = $request_info['pid'];
198
+		/* fix change of slug on every title edit */
199
+		if (!isset($request_info['post_name'])) {
200
+			$request_info['post_name'] = $request_info['post_title'];
234 201
 
235
-            $last_post_id = wp_update_post($post, $wp_error);
236
-        } else {
237
-            $last_post_id = wp_insert_post($post, $wp_error);
202
+			if (!empty($request_info['pid'])) {
203
+				$post_info = get_post($request_info['pid']);
238 204
 
239
-            if (!$dummy && $last_post_id) {
240
-                $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
241
-                //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
242
-            }
243
-        }
205
+				if (!empty($post_info) && isset($post_info->post_name)) {
206
+					$request_info['post_name'] = $post_info->post_name;
207
+				}
208
+			}
209
+		}
210
+
211
+		$post = array(
212
+			'post_content' => $request_info['post_desc'],
213
+			'post_status' => $post_status,
214
+			'post_title' => $request_info['post_title'],
215
+			'post_name' => $request_info['post_name'],
216
+			'post_type' => $request_info['listing_type']
217
+		);
218
+
219
+		/**
220
+		 * Called before a listing is saved to the database.
221
+		 *
222
+		 * @since 1.0.0
223
+		 * @param object $post The post object.
224
+		 */
225
+		do_action_ref_array('geodir_before_save_listing', $post);
226
+
227
+		$send_post_submit_mail = false;
228
+
229
+		// unhook this function so it doesn't loop infinitely
230
+		remove_action('save_post', 'geodir_post_information_save',10,2);
231
+
232
+		if (isset($request_info['pid']) && $request_info['pid'] != '') {
233
+			$post['ID'] = $request_info['pid'];
234
+
235
+			$last_post_id = wp_update_post($post, $wp_error);
236
+		} else {
237
+			$last_post_id = wp_insert_post($post, $wp_error);
238
+
239
+			if (!$dummy && $last_post_id) {
240
+				$send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email)
241
+				//geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
242
+			}
243
+		}
244 244
 
245
-        if ($wp_error && is_wp_error($last_post_id)) {
246
-            return $last_post_id; // Return WP_Error on save failure.
247
-        }
245
+		if ($wp_error && is_wp_error($last_post_id)) {
246
+			return $last_post_id; // Return WP_Error on save failure.
247
+		}
248 248
 
249
-        if (!$last_post_id) {
250
-            return false; // Save failure.
251
-        }
249
+		if (!$last_post_id) {
250
+			return false; // Save failure.
251
+		}
252 252
 
253
-        // re-hook this function
254
-        add_action('save_post', 'geodir_post_information_save',10,2);
253
+		// re-hook this function
254
+		add_action('save_post', 'geodir_post_information_save',10,2);
255 255
 
256
-        $post_tags = '';
257
-        if (!isset($request_info['post_tags'])) {
256
+		$post_tags = '';
257
+		if (!isset($request_info['post_tags'])) {
258 258
 
259
-            $post_type = $request_info['listing_type'];
260
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
259
+			$post_type = $request_info['listing_type'];
260
+			$post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
261 261
 
262
-        }
262
+		}
263 263
 
264
-        $gd_post_info = array(
265
-            "post_title" => $request_info['post_title'],
266
-            "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
267
-            "post_status" => $post_status,
268
-            "post_location_id" => $post_location_id,
269
-            "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
270
-            "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
271
-            "submit_time" => time(),
272
-            "submit_ip" => $_SERVER['REMOTE_ADDR'],
273
-        );
264
+		$gd_post_info = array(
265
+			"post_title" => $request_info['post_title'],
266
+			"post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags,
267
+			"post_status" => $post_status,
268
+			"post_location_id" => $post_location_id,
269
+			"claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '',
270
+			"businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '',
271
+			"submit_time" => time(),
272
+			"submit_ip" => $_SERVER['REMOTE_ADDR'],
273
+		);
274 274
 
275
-        $payment_info = array();
276
-        $package_info = array();
275
+		$payment_info = array();
276
+		$package_info = array();
277 277
 
278
-        $package_info = (array)geodir_post_package_info($package_info, $post);
278
+		$package_info = (array)geodir_post_package_info($package_info, $post);
279 279
 
280
-        $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
280
+		$post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
281 281
 
282
-        if (!empty($package_info) && !$post_package_id) {
283
-            if (isset($package_info['days']) && $package_info['days'] != 0) {
284
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
285
-            } else {
286
-                $payment_info['expire_date'] = 'Never';
287
-            }
282
+		if (!empty($package_info) && !$post_package_id) {
283
+			if (isset($package_info['days']) && $package_info['days'] != 0) {
284
+				$payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
285
+			} else {
286
+				$payment_info['expire_date'] = 'Never';
287
+			}
288 288
 
289
-            $payment_info['package_id'] = $package_info['pid'];
290
-            $payment_info['alive_days'] = $package_info['days'];
291
-            $payment_info['is_featured'] = $package_info['is_featured'];
289
+			$payment_info['package_id'] = $package_info['pid'];
290
+			$payment_info['alive_days'] = $package_info['days'];
291
+			$payment_info['is_featured'] = $package_info['is_featured'];
292 292
 
293
-            $gd_post_info = array_merge($gd_post_info, $payment_info);
294
-        }
293
+			$gd_post_info = array_merge($gd_post_info, $payment_info);
294
+		}
295 295
 
296
-        $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
296
+		$custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
297 297
 
298
-        foreach ($custom_metaboxes as $key => $val):
298
+		foreach ($custom_metaboxes as $key => $val):
299 299
 
300
-            $name = $val['name'];
301
-            $type = $val['type'];
302
-            $extrafields = $val['extra_fields'];
300
+			$name = $val['name'];
301
+			$type = $val['type'];
302
+			$extrafields = $val['extra_fields'];
303 303
 
304
-            if (trim($type) == 'address') {
305
-                $prefix = $name . '_';
306
-                $address = $prefix . 'address';
304
+			if (trim($type) == 'address') {
305
+				$prefix = $name . '_';
306
+				$address = $prefix . 'address';
307 307
 
308
-                if (isset($request_info[$address]) && $request_info[$address] != '') {
309
-                    $gd_post_info[$address] = wp_slash($request_info[$address]);
310
-                }
308
+				if (isset($request_info[$address]) && $request_info[$address] != '') {
309
+					$gd_post_info[$address] = wp_slash($request_info[$address]);
310
+				}
311 311
 
312
-                if ($extrafields != '') {
313
-                    $extrafields = unserialize($extrafields);
312
+				if ($extrafields != '') {
313
+					$extrafields = unserialize($extrafields);
314 314
 
315 315
 
316
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
316
+					if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
317 317
 
318
-                        $location_result = geodir_get_default_location();
318
+						$location_result = geodir_get_default_location();
319 319
 
320
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
321
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
322
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
320
+						$gd_post_info[$prefix . 'city'] = $location_result->city;
321
+						$gd_post_info[$prefix . 'region'] = $location_result->region;
322
+						$gd_post_info[$prefix . 'country'] = $location_result->country;
323 323
 
324
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
324
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
325 325
 
326
-                    } else {
326
+					} else {
327 327
 
328
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
329
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
330
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
328
+						$gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
329
+						$gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
330
+						$gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
331 331
 
332
-                        //----------set post locations when import dummy data-------
333
-                        $location_result = geodir_get_default_location();
332
+						//----------set post locations when import dummy data-------
333
+						$location_result = geodir_get_default_location();
334 334
 
335
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336
-                        //-----------------------------------------------------------------
335
+						$gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
336
+						//-----------------------------------------------------------------
337 337
 
338
-                    }
338
+					}
339 339
 
340 340
 
341
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
342
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
343
-                    }
341
+					if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
342
+						$gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
343
+					}
344 344
 
345 345
 
346
-                    if (isset($extrafields['show_map']) && $extrafields['show_map']) {
346
+					if (isset($extrafields['show_map']) && $extrafields['show_map']) {
347 347
 
348
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
349
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
350
-                        }
348
+						if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
349
+							$gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
350
+						}
351 351
 
352
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
353
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
354
-                        }
352
+						if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
353
+							$gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
354
+						}
355 355
 
356
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
357
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
358
-                        }
356
+						if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
357
+							$gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
358
+						}
359 359
 
360
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
361
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
362
-                        }
360
+						if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
361
+							$gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
362
+						}
363 363
 
364
-                    }
364
+					}
365 365
 
366
-                    // show lat lng
367
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
368
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
369
-                    }
370
-                }
366
+					// show lat lng
367
+					if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
368
+						$gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
369
+					}
370
+				}
371 371
 
372
-            } elseif (trim($type) == 'file') {
373
-                if (isset($request_info[$name])) {
374
-                    $request_files = array();
375
-                    if ($request_info[$name] != '')
376
-                        $request_files = explode(",", $request_info[$name]);
372
+			} elseif (trim($type) == 'file') {
373
+				if (isset($request_info[$name])) {
374
+					$request_files = array();
375
+					if ($request_info[$name] != '')
376
+						$request_files = explode(",", $request_info[$name]);
377 377
 
378
-                    $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
379
-                    geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
378
+					$extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL;
379
+					geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields);
380 380
 
381
-                }
382
-            } elseif (trim($type) == 'datepicker') {
383
-                $datetime = '';
384
-                if (isset($request_info[$name]) && $request_info[$name] != '') {
385
-                    $date_format = geodir_default_date_format();
386
-                    if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
387
-                        $extra_fields = unserialize($val['extra_fields']);
388
-                        $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
389
-                    }
381
+				}
382
+			} elseif (trim($type) == 'datepicker') {
383
+				$datetime = '';
384
+				if (isset($request_info[$name]) && $request_info[$name] != '') {
385
+					$date_format = geodir_default_date_format();
386
+					if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
387
+						$extra_fields = unserialize($val['extra_fields']);
388
+						$date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format;
389
+					}
390 390
 
391
-                    // check if we need to change the format or not
392
-                    $date_format_len = strlen(str_replace(' ', '', $date_format));
393
-                    if($date_format_len>5){// if greater then 5 then it's the old style format.
391
+					// check if we need to change the format or not
392
+					$date_format_len = strlen(str_replace(' ', '', $date_format));
393
+					if($date_format_len>5){// if greater then 5 then it's the old style format.
394 394
 
395
-                        $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
396
-                        $replace = array('d','j','l','m','n','F','Y');//PHP date format
395
+						$search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
396
+						$replace = array('d','j','l','m','n','F','Y');//PHP date format
397 397
 
398
-                        $date_format = str_replace($search, $replace, $date_format);
398
+						$date_format = str_replace($search, $replace, $date_format);
399 399
 
400
-                        $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
400
+						$post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
401 401
 
402
-                    }else{
403
-                        $post_htmlvar_value = $request_info[$name];
404
-                    }
402
+					}else{
403
+						$post_htmlvar_value = $request_info[$name];
404
+					}
405 405
 
406
-                    $post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
407
-                    $datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
406
+					$post_htmlvar_value = geodir_date($post_htmlvar_value, 'Y-m-d', $date_format); // save as sql format Y-m-d
407
+					$datetime = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated
408 408
 
409
-                    //$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
409
+					//$datetime = date_i18n("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
410 410
 
411
-                }
412
-                $gd_post_info[$name] = $datetime;
413
-            } else if ($type == 'multiselect') {
414
-                if (isset($request_info[$name])) {
415
-                    $gd_post_info[$name] = $request_info[$name];
416
-                } else {
417
-                    if (isset($request_info['gd_field_' . $name])) {
418
-                        $gd_post_info[$name] = ''; /* fix de-select for multiselect */
419
-                    }
420
-                }
421
-            } else if (isset($request_info[$name])) {
422
-                $gd_post_info[$name] = $request_info[$name];
423
-            }
411
+				}
412
+				$gd_post_info[$name] = $datetime;
413
+			} else if ($type == 'multiselect') {
414
+				if (isset($request_info[$name])) {
415
+					$gd_post_info[$name] = $request_info[$name];
416
+				} else {
417
+					if (isset($request_info['gd_field_' . $name])) {
418
+						$gd_post_info[$name] = ''; /* fix de-select for multiselect */
419
+					}
420
+				}
421
+			} else if (isset($request_info[$name])) {
422
+				$gd_post_info[$name] = $request_info[$name];
423
+			}
424 424
 
425
-        endforeach;
425
+		endforeach;
426 426
 
427
-        if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
428
-            $gd_post_info['post_dummy'] = $request_info['post_dummy'];
429
-        }
427
+		if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
428
+			$gd_post_info['post_dummy'] = $request_info['post_dummy'];
429
+		}
430 430
 
431
-        // Save post detail info in detail table
432
-        if (!empty($gd_post_info)) {
433
-            geodir_save_post_info($last_post_id, $gd_post_info);
434
-        }
431
+		// Save post detail info in detail table
432
+		if (!empty($gd_post_info)) {
433
+			geodir_save_post_info($last_post_id, $gd_post_info);
434
+		}
435 435
 
436 436
 
437
-        // Set categories to the listing
438
-        if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
439
-            $post_category = array();
437
+		// Set categories to the listing
438
+		if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
439
+			$post_category = array();
440 440
 
441
-            foreach ($request_info['post_category'] as $taxonomy => $cat) {
441
+			foreach ($request_info['post_category'] as $taxonomy => $cat) {
442 442
 
443
-                if ($dummy)
444
-                    $post_category = $cat;
445
-                else {
443
+				if ($dummy)
444
+					$post_category = $cat;
445
+				else {
446 446
 
447
-                    if (!is_array($cat) && strstr($cat, ','))
448
-                        $cat = explode(',', $cat);
447
+					if (!is_array($cat) && strstr($cat, ','))
448
+						$cat = explode(',', $cat);
449 449
 
450
-                    if (!empty($cat) && is_array($cat))
451
-                        $post_category = array_map('intval', $cat);
452
-                }
450
+					if (!empty($cat) && is_array($cat))
451
+						$post_category = array_map('intval', $cat);
452
+				}
453 453
 
454
-                wp_set_object_terms($last_post_id, $post_category, $taxonomy);
455
-            }
454
+				wp_set_object_terms($last_post_id, $post_category, $taxonomy);
455
+			}
456 456
 
457
-            $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
457
+			$post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : '';
458 458
 
459
-            $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
460
-            geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
459
+			$post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : '';
460
+			geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str);
461 461
 
462
-        }
462
+		}
463 463
 
464
-        $post_tags = '';
465
-        // Set tags to the listing
466
-        if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
467
-            $post_tags = explode(",", $request_info['post_tags']);
468
-        } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
469
-            if ($dummy)
470
-                $post_tags = $request_info['post_tags'];
471
-        } else {
472
-            if ($dummy)
473
-                $post_tags = array($request_info['post_title']);
474
-        }
464
+		$post_tags = '';
465
+		// Set tags to the listing
466
+		if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
467
+			$post_tags = explode(",", $request_info['post_tags']);
468
+		} elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
469
+			if ($dummy)
470
+				$post_tags = $request_info['post_tags'];
471
+		} else {
472
+			if ($dummy)
473
+				$post_tags = array($request_info['post_title']);
474
+		}
475 475
 
476
-        if (is_array($post_tags)) {
477
-            $taxonomy = $request_info['listing_type'] . '_tags';
478
-            wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
479
-        }
476
+		if (is_array($post_tags)) {
477
+			$taxonomy = $request_info['listing_type'] . '_tags';
478
+			wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
479
+		}
480 480
 
481 481
 
482
-        // Insert attechment
482
+		// Insert attechment
483 483
 
484
-        if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
485
-            if (!$dummy) {
486
-                $tmpimgArr = trim($request_info['post_images'], ",");
487
-                $tmpimgArr = explode(",", $tmpimgArr);
488
-                geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
489
-            } else{
490
-                geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
491
-            }
484
+		if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
485
+			if (!$dummy) {
486
+				$tmpimgArr = trim($request_info['post_images'], ",");
487
+				$tmpimgArr = explode(",", $tmpimgArr);
488
+				geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
489
+			} else{
490
+				geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
491
+			}
492 492
 
493 493
 
494
-        } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
494
+		} elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
495 495
 
496
-            /* Delete Attachments
496
+			/* Delete Attachments
497 497
 			$postcurr_images = geodir_get_images($last_post_id);
498 498
 
499 499
 			$wpdb->query(
@@ -509,34 +509,34 @@  discard block
 block discarded – undo
509 509
 			geodir_save_post_info($last_post_id, $gd_post_featured_img);
510 510
 			*/
511 511
 
512
-        }
512
+		}
513 513
 
514
-        geodir_remove_temp_images();
515
-        geodir_set_wp_featured_image($last_post_id);
514
+		geodir_remove_temp_images();
515
+		geodir_set_wp_featured_image($last_post_id);
516 516
 
517
-        /**
518
-         * Called after a listing is saved to the database and before any email have been sent.
519
-         *
520
-         * @since 1.0.0
521
-         * @param int $last_post_id The saved post ID.
522
-         * @param array $request_info The post details in an array.
523
-         * @see 'geodir_after_save_listinginfo'
524
-         */
525
-        do_action('geodir_after_save_listing', $last_post_id, $request_info);
517
+		/**
518
+		 * Called after a listing is saved to the database and before any email have been sent.
519
+		 *
520
+		 * @since 1.0.0
521
+		 * @param int $last_post_id The saved post ID.
522
+		 * @param array $request_info The post details in an array.
523
+		 * @see 'geodir_after_save_listinginfo'
524
+		 */
525
+		do_action('geodir_after_save_listing', $last_post_id, $request_info);
526 526
 
527
-        //die;
527
+		//die;
528 528
 
529
-        if ($send_post_submit_mail) { // if new post send out email
530
-            $to_name = geodir_get_client_name($current_user->ID);
531
-            geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
532
-        }
533
-        /*
529
+		if ($send_post_submit_mail) { // if new post send out email
530
+			$to_name = geodir_get_client_name($current_user->ID);
531
+			geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
532
+		}
533
+		/*
534 534
          * Unset the session so we don't loop.
535 535
          */
536
-        $gd_session->un_set('listing');
537
-        return $last_post_id;
536
+		$gd_session->un_set('listing');
537
+		return $last_post_id;
538 538
 
539
-    }
539
+	}
540 540
 
541 541
 }
542 542
 
@@ -555,594 +555,594 @@  discard block
 block discarded – undo
555 555
 function geodir_get_post_info($post_id = '')
556 556
 {
557 557
 
558
-    global $wpdb, $plugin_prefix, $post, $post_info;
558
+	global $wpdb, $plugin_prefix, $post, $post_info;
559 559
 
560
-    if ($post_id == '' && !empty($post))
561
-        $post_id = $post->ID;
560
+	if ($post_id == '' && !empty($post))
561
+		$post_id = $post->ID;
562 562
 
563
-    $post_type = get_post_type($post_id);
563
+	$post_type = get_post_type($post_id);
564 564
 
565
-    $all_postypes = geodir_get_posttypes();
565
+	$all_postypes = geodir_get_posttypes();
566 566
 
567
-    if (!in_array($post_type, $all_postypes))
568
-        return false;
567
+	if (!in_array($post_type, $all_postypes))
568
+		return false;
569 569
 
570
-    $table = $plugin_prefix . $post_type . '_detail';
570
+	$table = $plugin_prefix . $post_type . '_detail';
571 571
 
572
-    /**
573
-     * Apply Filter to change Post info
574
-     *
575
-     * You can use this filter to change Post info.
576
-     *
577
-     * @since 1.0.0
578
-     * @package GeoDirectory
579
-     */
580
-    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
572
+	/**
573
+	 * Apply Filter to change Post info
574
+	 *
575
+	 * You can use this filter to change Post info.
576
+	 *
577
+	 * @since 1.0.0
578
+	 * @package GeoDirectory
579
+	 */
580
+	$query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
581 581
 			  WHERE p.ID = pd.post_id
582 582
 			  AND post_id = " . $post_id);
583 583
 
584
-    $post_detail = $wpdb->get_row($query);
584
+	$post_detail = $wpdb->get_row($query);
585 585
 
586
-    return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
586
+	return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false;
587 587
 
588 588
 }
589 589
 
590 590
 
591 591
 if (!function_exists('geodir_save_post_info')) {
592
-    /**
593
-     * Saves post detail info in detail table.
594
-     *
595
-     * @since 1.0.0
596
-     * @package GeoDirectory
597
-     * @global object $wpdb WordPress Database object.
598
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
599
-     * @param int $post_id The post ID.
600
-     * @param array $postinfo_array {
601
-     *    Post info that needs to be saved in detail table.
602
-     *
603
-     *    @type string $post_title              Listing title.
604
-     *    @type string $post_tags               Listing tags.
605
-     *    @type string $post_status             Listing post status.
606
-     *    @type string $post_location_id        Listing location ID.
607
-     *    @type string $claimed                 Todo Desc needed.
608
-     *    @type string $businesses              Todo Desc needed.
609
-     *    @type int    $submit_time             Submitted time in unix timestamp.
610
-     *    @type string $submit_ip               Submitted IP.
611
-     *    @type string $expire_date             Listing expiration date.
612
-     *    @type int    $package_id              Listing package ID.
613
-     *    @type int    $alive_days              Todo Desc needed.
614
-     *    @type int    $is_featured             Is this a featured listing?.
615
-     *    @type string $post_address            Listing address.
616
-     *    @type string $post_city               Listing city.
617
-     *    @type string $post_region             Listing region.
618
-     *    @type string $post_country            Listing country.
619
-     *    @type string $post_locations          Listing locations.
620
-     *    @type string $post_zip                Listing zip.
621
-     *    @type string $post_latitude           Listing latitude.
622
-     *    @type string $post_longitude          Listing longitude.
623
-     *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
624
-     *    @type string $post_mapzoom            Listing mapzoom Default "9".
625
-     *    @type string $geodir_timing           Business timing info.
626
-     *    @type string $geodir_contact          Contact number.
627
-     *    @type string $geodir_email            Business contact email.
628
-     *    @type string $geodir_website          Business website.
629
-     *    @type string $geodir_twitter          Twitter link.
630
-     *    @type string $geodir_facebook         Facebook link.
631
-     *    @type string $geodir_video            Video link.
632
-     *    @type string $geodir_special_offers   Speacial offers.
633
-     *
634
-     * }
635
-     * @return bool
636
-     */
637
-    function geodir_save_post_info($post_id, $postinfo_array = array())
638
-    {
639
-        global $wpdb, $plugin_prefix;
640
-
641
-        $post_type = get_post_type($post_id);
642
-
643
-        $table = $plugin_prefix . $post_type . '_detail';
644
-
645
-        /**
646
-         * Filter to change Post info
647
-         *
648
-         * You can use this filter to change Post info.
649
-         *
650
-         * @since 1.0.0
651
-         * @package GeoDirectory
652
-         * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
653
-         * @param int $post_id The post ID.
654
-         */
655
-        $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
592
+	/**
593
+	 * Saves post detail info in detail table.
594
+	 *
595
+	 * @since 1.0.0
596
+	 * @package GeoDirectory
597
+	 * @global object $wpdb WordPress Database object.
598
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
599
+	 * @param int $post_id The post ID.
600
+	 * @param array $postinfo_array {
601
+	 *    Post info that needs to be saved in detail table.
602
+	 *
603
+	 *    @type string $post_title              Listing title.
604
+	 *    @type string $post_tags               Listing tags.
605
+	 *    @type string $post_status             Listing post status.
606
+	 *    @type string $post_location_id        Listing location ID.
607
+	 *    @type string $claimed                 Todo Desc needed.
608
+	 *    @type string $businesses              Todo Desc needed.
609
+	 *    @type int    $submit_time             Submitted time in unix timestamp.
610
+	 *    @type string $submit_ip               Submitted IP.
611
+	 *    @type string $expire_date             Listing expiration date.
612
+	 *    @type int    $package_id              Listing package ID.
613
+	 *    @type int    $alive_days              Todo Desc needed.
614
+	 *    @type int    $is_featured             Is this a featured listing?.
615
+	 *    @type string $post_address            Listing address.
616
+	 *    @type string $post_city               Listing city.
617
+	 *    @type string $post_region             Listing region.
618
+	 *    @type string $post_country            Listing country.
619
+	 *    @type string $post_locations          Listing locations.
620
+	 *    @type string $post_zip                Listing zip.
621
+	 *    @type string $post_latitude           Listing latitude.
622
+	 *    @type string $post_longitude          Listing longitude.
623
+	 *    @type string $post_mapview            Listing mapview. Default "ROADMAP".
624
+	 *    @type string $post_mapzoom            Listing mapzoom Default "9".
625
+	 *    @type string $geodir_timing           Business timing info.
626
+	 *    @type string $geodir_contact          Contact number.
627
+	 *    @type string $geodir_email            Business contact email.
628
+	 *    @type string $geodir_website          Business website.
629
+	 *    @type string $geodir_twitter          Twitter link.
630
+	 *    @type string $geodir_facebook         Facebook link.
631
+	 *    @type string $geodir_video            Video link.
632
+	 *    @type string $geodir_special_offers   Speacial offers.
633
+	 *
634
+	 * }
635
+	 * @return bool
636
+	 */
637
+	function geodir_save_post_info($post_id, $postinfo_array = array())
638
+	{
639
+		global $wpdb, $plugin_prefix;
640
+
641
+		$post_type = get_post_type($post_id);
642
+
643
+		$table = $plugin_prefix . $post_type . '_detail';
644
+
645
+		/**
646
+		 * Filter to change Post info
647
+		 *
648
+		 * You can use this filter to change Post info.
649
+		 *
650
+		 * @since 1.0.0
651
+		 * @package GeoDirectory
652
+		 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
653
+		 * @param int $post_id The post ID.
654
+		 */
655
+		$postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
656
+
657
+		if (!empty($postmeta) && $post_id) {
658
+			$post_meta_set_query = '';
659
+
660
+			foreach ($postmeta as $mkey => $mval) {
661
+				if (geodir_column_exist($table, $mkey)) {
662
+					if (is_array($mval)) {
663
+						$mval = implode(",", $mval);
664
+					}
665
+
666
+					$post_meta_set_query .= $mkey . " = '" . addslashes_gpc($mval) . "', ";
667
+				}
668
+			}
656 669
 
657
-        if (!empty($postmeta) && $post_id) {
658
-            $post_meta_set_query = '';
670
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
671
+            
672
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
673
+				return false;
674
+			}
659 675
 
660
-            foreach ($postmeta as $mkey => $mval) {
661
-                if (geodir_column_exist($table, $mkey)) {
662
-                    if (is_array($mval)) {
663
-                        $mval = implode(",", $mval);
664
-                    }
676
+			$post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
665 677
 
666
-                    $post_meta_set_query .= $mkey . " = '" . addslashes_gpc($mval) . "', ";
667
-                }
668
-            }
669 678
 
670
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
671
-            
672
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
673
-                return false;
674
-            }
679
+			/**
680
+			 * Called before saving the listing info.
681
+			 *
682
+			 * @since 1.0.0
683
+			 * @package GeoDirectory
684
+			 * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
685
+			 * @param int $post_id The post ID.
686
+			 */
687
+			do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
675 688
 
676
-            $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
689
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
677 690
 
691
+				$wpdb->query(
692
+					$wpdb->prepare(
693
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d",
694
+						array($post_id)
695
+					)
696
+				);
678 697
 
679
-            /**
680
-             * Called before saving the listing info.
681
-             *
682
-             * @since 1.0.0
683
-             * @package GeoDirectory
684
-             * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
685
-             * @param int $post_id The post ID.
686
-             */
687
-            do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
688 698
 
689
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
699
+			} else {
690 700
 
691
-                $wpdb->query(
692
-                    $wpdb->prepare(
693
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d",
694
-                        array($post_id)
695
-                    )
696
-                );
701
+				$wpdb->query(
702
+					$wpdb->prepare(
703
+						"INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query,
704
+						array($post_id)
705
+					)
706
+				);
697 707
 
708
+			}
698 709
 
699
-            } else {
710
+			/**
711
+			 * Called after saving the listing info.
712
+			 *
713
+			 * @since 1.0.0
714
+			 * @package GeoDirectory
715
+			 * @param array $postinfo_array Post info that needs to be saved in detail table.
716
+			 * @param int $post_id The post ID.
717
+			 * @see 'geodir_after_save_listing'
718
+			 */
719
+			do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
720
+
721
+			return true;
722
+		} else
723
+			return false;
700 724
 
701
-                $wpdb->query(
702
-                    $wpdb->prepare(
703
-                        "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query,
704
-                        array($post_id)
705
-                    )
706
-                );
725
+	}
726
+}
707 727
 
708
-            }
709 728
 
710
-            /**
711
-             * Called after saving the listing info.
712
-             *
713
-             * @since 1.0.0
714
-             * @package GeoDirectory
715
-             * @param array $postinfo_array Post info that needs to be saved in detail table.
716
-             * @param int $post_id The post ID.
717
-             * @see 'geodir_after_save_listing'
718
-             */
719
-            do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
729
+if (!function_exists('geodir_save_post_meta')) {
730
+	/**
731
+	 * Save or update post custom fields.
732
+	 *
733
+	 * @since 1.0.0
734
+	 * @package GeoDirectory
735
+	 * @global object $wpdb WordPress Database object.
736
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
737
+	 * @param int $post_id The post ID.
738
+	 * @param string $postmeta Detail table column name.
739
+	 * @param string $meta_value Detail table column value.
740
+	 * @return void|bool
741
+	 */
742
+	function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
743
+	{
744
+
745
+		global $wpdb, $plugin_prefix;
746
+
747
+		$post_type = get_post_type($post_id);
748
+
749
+		$table = $plugin_prefix . $post_type . '_detail';
750
+
751
+		if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
752
+
753
+			if (is_array($meta_value)) {
754
+				$meta_value = implode(",", $meta_value);
755
+			}
720 756
 
721
-            return true;
722
-        } else
723
-            return false;
757
+			if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
724 758
 
725
-    }
726
-}
759
+				$wpdb->query(
760
+					$wpdb->prepare(
761
+						"UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
762
+						array($post_id)
763
+					)
764
+				);
727 765
 
766
+			} else {
728 767
 
729
-if (!function_exists('geodir_save_post_meta')) {
730
-    /**
731
-     * Save or update post custom fields.
732
-     *
733
-     * @since 1.0.0
734
-     * @package GeoDirectory
735
-     * @global object $wpdb WordPress Database object.
736
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
737
-     * @param int $post_id The post ID.
738
-     * @param string $postmeta Detail table column name.
739
-     * @param string $meta_value Detail table column value.
740
-     * @return void|bool
741
-     */
742
-    function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '')
743
-    {
744
-
745
-        global $wpdb, $plugin_prefix;
746
-
747
-        $post_type = get_post_type($post_id);
748
-
749
-        $table = $plugin_prefix . $post_type . '_detail';
750
-
751
-        if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
752
-
753
-            if (is_array($meta_value)) {
754
-                $meta_value = implode(",", $meta_value);
755
-            }
756
-
757
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
758
-
759
-                $wpdb->query(
760
-                    $wpdb->prepare(
761
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
762
-                        array($post_id)
763
-                    )
764
-                );
765
-
766
-            } else {
767
-
768
-                $wpdb->query(
769
-                    $wpdb->prepare(
770
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
771
-                        array($post_id)
772
-                    )
773
-                );
774
-            }
775
-
776
-
777
-        } else
778
-            return false;
779
-    }
768
+				$wpdb->query(
769
+					$wpdb->prepare(
770
+						"INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
771
+						array($post_id)
772
+					)
773
+				);
774
+			}
775
+
776
+
777
+		} else
778
+			return false;
779
+	}
780 780
 }
781 781
 
782 782
 if (!function_exists('geodir_delete_post_meta')) {
783
-    /**
784
-     * Delete post custom fields.
785
-     *
786
-     * @since 1.0.0
787
-     * @package GeoDirectory
788
-     * @global object $wpdb WordPress Database object.
789
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
790
-     * @param int $post_id The post ID.
791
-     * @param string $postmeta Detail table column name.
792
-     * @todo check if this is depreciated
793
-     * @todo Fix unknown variable mval
794
-     * @return bool
795
-     */
796
-    function geodir_delete_post_meta($post_id, $postmeta)
797
-    {
798
-
799
-        global $wpdb, $plugin_prefix;
800
-
801
-        $post_type = get_post_type($post_id);
802
-
803
-        $table = $plugin_prefix . $post_type . '_detail';
804
-
805
-        if (is_array($postmeta) && !empty($postmeta) && $post_id) {
806
-            $post_meta_set_query = '';
807
-
808
-            foreach ($postmeta as $mkey) {
809
-                if ($mval != '')
810
-                    $post_meta_set_query .= $mkey . " = '', ";
811
-            }
812
-
813
-            $post_meta_set_query = trim($post_meta_set_query, ", ");
783
+	/**
784
+	 * Delete post custom fields.
785
+	 *
786
+	 * @since 1.0.0
787
+	 * @package GeoDirectory
788
+	 * @global object $wpdb WordPress Database object.
789
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
790
+	 * @param int $post_id The post ID.
791
+	 * @param string $postmeta Detail table column name.
792
+	 * @todo check if this is depreciated
793
+	 * @todo Fix unknown variable mval
794
+	 * @return bool
795
+	 */
796
+	function geodir_delete_post_meta($post_id, $postmeta)
797
+	{
798
+
799
+		global $wpdb, $plugin_prefix;
800
+
801
+		$post_type = get_post_type($post_id);
802
+
803
+		$table = $plugin_prefix . $post_type . '_detail';
804
+
805
+		if (is_array($postmeta) && !empty($postmeta) && $post_id) {
806
+			$post_meta_set_query = '';
807
+
808
+			foreach ($postmeta as $mkey) {
809
+				if ($mval != '')
810
+					$post_meta_set_query .= $mkey . " = '', ";
811
+			}
812
+
813
+			$post_meta_set_query = trim($post_meta_set_query, ", ");
814 814
             
815
-            if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
816
-                return false;
817
-            }
818
-
819
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
820
-
821
-                $wpdb->query(
822
-                    $wpdb->prepare(
823
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
824
-                        array($post_id)
825
-                    )
826
-                );
827
-
828
-                return true;
829
-            }
830
-
831
-        } elseif ($postmeta != '' && $post_id) {
832
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
833
-
834
-                $wpdb->query(
835
-                    $wpdb->prepare(
836
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
837
-                        array($post_id)
838
-                    )
839
-                );
840
-
841
-                return true;
842
-            }
843
-
844
-        } else
845
-            return false;
846
-    }
815
+			if (empty($post_meta_set_query) || trim($post_meta_set_query) == '') {
816
+				return false;
817
+			}
818
+
819
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
820
+
821
+				$wpdb->query(
822
+					$wpdb->prepare(
823
+						"UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
824
+						array($post_id)
825
+					)
826
+				);
827
+
828
+				return true;
829
+			}
830
+
831
+		} elseif ($postmeta != '' && $post_id) {
832
+			if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
833
+
834
+				$wpdb->query(
835
+					$wpdb->prepare(
836
+						"UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
837
+						array($post_id)
838
+					)
839
+				);
840
+
841
+				return true;
842
+			}
843
+
844
+		} else
845
+			return false;
846
+	}
847 847
 }
848 848
 
849 849
 
850 850
 if (!function_exists('geodir_get_post_meta')) {
851
-    /**
852
-     * Get post custom meta.
853
-     *
854
-     * @since 1.0.0
855
-     * @package GeoDirectory
856
-     * @global object $wpdb WordPress Database object.
857
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
858
-     * @param int $post_id The post ID.
859
-     * @param string $meta_key The meta key to retrieve.
860
-     * @param bool $single Optional. Whether to return a single value. Default false.
861
-     * @todo single variable not yet implemented.
862
-     * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
863
-     */
864
-    function geodir_get_post_meta($post_id, $meta_key, $single = false)
865
-    {
866
-        if (!$post_id) {
867
-            return false;
868
-        }
869
-        global $wpdb, $plugin_prefix;
870
-
871
-        $all_postypes = geodir_get_posttypes();
872
-
873
-        $post_type = get_post_type($post_id);
874
-
875
-        if (!in_array($post_type, $all_postypes))
876
-            return false;
877
-
878
-        $table = $plugin_prefix . $post_type . '_detail';
879
-
880
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
881
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
851
+	/**
852
+	 * Get post custom meta.
853
+	 *
854
+	 * @since 1.0.0
855
+	 * @package GeoDirectory
856
+	 * @global object $wpdb WordPress Database object.
857
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
858
+	 * @param int $post_id The post ID.
859
+	 * @param string $meta_key The meta key to retrieve.
860
+	 * @param bool $single Optional. Whether to return a single value. Default false.
861
+	 * @todo single variable not yet implemented.
862
+	 * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true.
863
+	 */
864
+	function geodir_get_post_meta($post_id, $meta_key, $single = false)
865
+	{
866
+		if (!$post_id) {
867
+			return false;
868
+		}
869
+		global $wpdb, $plugin_prefix;
870
+
871
+		$all_postypes = geodir_get_posttypes();
872
+
873
+		$post_type = get_post_type($post_id);
874
+
875
+		if (!in_array($post_type, $all_postypes))
876
+			return false;
877
+
878
+		$table = $plugin_prefix . $post_type . '_detail';
879
+
880
+		if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
881
+			$meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
882 882
             
883
-            if ($meta_value && $meta_value !== '') {
884
-                return maybe_serialize($meta_value);
885
-            } else
886
-                return $meta_value;
887
-        } else {
888
-            return false;
889
-        }
890
-    }
883
+			if ($meta_value && $meta_value !== '') {
884
+				return maybe_serialize($meta_value);
885
+			} else
886
+				return $meta_value;
887
+		} else {
888
+			return false;
889
+		}
890
+	}
891 891
 }
892 892
 
893 893
 
894 894
 if (!function_exists('geodir_save_post_images')) {
895
-    /**
896
-     * Save post attachments.
897
-     *
898
-     * @since 1.0.0
899
-     * @package GeoDirectory
900
-     * @global object $wpdb WordPress Database object.
901
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
902
-     * @global object $current_user Current user object.
903
-     * @param int $post_id The post ID.
904
-     * @param array $post_image Post image urls as an array.
905
-     * @param bool $dummy Optional. Is this a dummy listing? Default false.
906
-     */
907
-    function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
908
-    {
909
-
895
+	/**
896
+	 * Save post attachments.
897
+	 *
898
+	 * @since 1.0.0
899
+	 * @package GeoDirectory
900
+	 * @global object $wpdb WordPress Database object.
901
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
902
+	 * @global object $current_user Current user object.
903
+	 * @param int $post_id The post ID.
904
+	 * @param array $post_image Post image urls as an array.
905
+	 * @param bool $dummy Optional. Is this a dummy listing? Default false.
906
+	 */
907
+	function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false)
908
+	{
910 909
 
911
-        global $wpdb, $plugin_prefix, $current_user;
912 910
 
913
-        $post_type = get_post_type($post_id);
911
+		global $wpdb, $plugin_prefix, $current_user;
914 912
 
915
-        $table = $plugin_prefix . $post_type . '_detail';
913
+		$post_type = get_post_type($post_id);
916 914
 
917
-        $post_images = geodir_get_images($post_id);
915
+		$table = $plugin_prefix . $post_type . '_detail';
918 916
 
919
-        $wpdb->query(
920
-            $wpdb->prepare(
921
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
922
-                array($post_id)
923
-            )
924
-        );
917
+		$post_images = geodir_get_images($post_id);
925 918
 
926
-        $invalid_files = $post_images;
927
-        $valid_file_ids = array();
928
-        $valid_files_condition = '';
929
-        $geodir_uploaddir = '';
919
+		$wpdb->query(
920
+			$wpdb->prepare(
921
+				"UPDATE " . $table . " SET featured_image = '' where post_id =%d",
922
+				array($post_id)
923
+			)
924
+		);
930 925
 
931
-        $remove_files = array();
926
+		$invalid_files = $post_images;
927
+		$valid_file_ids = array();
928
+		$valid_files_condition = '';
929
+		$geodir_uploaddir = '';
932 930
 
933
-        if (!empty($post_image)) {
931
+		$remove_files = array();
934 932
 
935
-            $uploads = wp_upload_dir();
936
-            $uploads_dir = $uploads['path'];
933
+		if (!empty($post_image)) {
937 934
 
938
-            $geodir_uploadpath = $uploads['path'];
939
-            $geodir_uploadurl = $uploads['url'];
940
-            $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
935
+			$uploads = wp_upload_dir();
936
+			$uploads_dir = $uploads['path'];
941 937
 
942
-            $invalid_files = array();
943
-            $postcurr_images = array();
938
+			$geodir_uploadpath = $uploads['path'];
939
+			$geodir_uploadurl = $uploads['url'];
940
+			$sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : '';
944 941
 
945
-            for ($m = 0; $m < count($post_image); $m++) {
946
-                $menu_order = $m + 1;
942
+			$invalid_files = array();
943
+			$postcurr_images = array();
947 944
 
948
-                $file_path = '';
949
-                /* --------- start ------- */
945
+			for ($m = 0; $m < count($post_image); $m++) {
946
+				$menu_order = $m + 1;
950 947
 
951
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
948
+				$file_path = '';
949
+				/* --------- start ------- */
952 950
 
953
-                $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
951
+				$split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
954 952
 
953
+				$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
955 954
 
956
-                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)))) {
957 955
 
958
-                    /* --------- end ------- */
959
-                    $curr_img_url = $post_image[$m];
956
+				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)))) {
960 957
 
961
-                    $image_name_arr = explode('/', $curr_img_url);
958
+					/* --------- end ------- */
959
+					$curr_img_url = $post_image[$m];
962 960
 
963
-                    $count_image_name_arr = count($image_name_arr) - 2;
961
+					$image_name_arr = explode('/', $curr_img_url);
964 962
 
965
-                    $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
963
+					$count_image_name_arr = count($image_name_arr) - 2;
966 964
 
967
-                    $curr_img_dir = $image_name_arr[$count_image_name_arr];
965
+					$count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0;
968 966
 
969
-                    $filename = end($image_name_arr);
970
-                    if (strpos($filename, '?') !== false) {
971
-                        list($filename) = explode('?', $filename);
972
-                    }
967
+					$curr_img_dir = $image_name_arr[$count_image_name_arr];
973 968
 
974
-                    $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
975
-                    $curr_img_dir = str_replace($filename, "", $curr_img_dir);
969
+					$filename = end($image_name_arr);
970
+					if (strpos($filename, '?') !== false) {
971
+						list($filename) = explode('?', $filename);
972
+					}
976 973
 
977
-                    $img_name_arr = explode('.', $filename);
974
+					$curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url);
975
+					$curr_img_dir = str_replace($filename, "", $curr_img_dir);
978 976
 
979
-                    $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
980
-                    if (!empty($img_name_arr) && count($img_name_arr) > 2) {
981
-                        $new_img_name_arr = $img_name_arr;
982
-                        if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
983
-                            unset($new_img_name_arr[count($img_name_arr) - 1]);
984
-                            $file_title = implode('.', $new_img_name_arr);
985
-                        }
986
-                    }
987
-                    $file_title = sanitize_file_name($file_title);
988
-                    $file_name = sanitize_file_name($filename);
977
+					$img_name_arr = explode('.', $filename);
989 978
 
990
-                    $arr_file_type = wp_check_filetype($filename);
979
+					$file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename;
980
+					if (!empty($img_name_arr) && count($img_name_arr) > 2) {
981
+						$new_img_name_arr = $img_name_arr;
982
+						if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
983
+							unset($new_img_name_arr[count($img_name_arr) - 1]);
984
+							$file_title = implode('.', $new_img_name_arr);
985
+						}
986
+					}
987
+					$file_title = sanitize_file_name($file_title);
988
+					$file_name = sanitize_file_name($filename);
991 989
 
992
-                    $uploaded_file_type = $arr_file_type['type'];
990
+					$arr_file_type = wp_check_filetype($filename);
993 991
 
994
-                    // Set an array containing a list of acceptable formats
995
-                    $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
992
+					$uploaded_file_type = $arr_file_type['type'];
996 993
 
997
-                    // If the uploaded file is the right format
998
-                    if (in_array($uploaded_file_type, $allowed_file_types)) {
999
-                        if (!function_exists('wp_handle_upload')) {
1000
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1001
-                        }
994
+					// Set an array containing a list of acceptable formats
995
+					$allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
1002 996
 
1003
-                        if (!is_dir($geodir_uploadpath)) {
1004
-                            mkdir($geodir_uploadpath);
1005
-                        }
997
+					// If the uploaded file is the right format
998
+					if (in_array($uploaded_file_type, $allowed_file_types)) {
999
+						if (!function_exists('wp_handle_upload')) {
1000
+							require_once(ABSPATH . 'wp-admin/includes/file.php');
1001
+						}
1006 1002
 
1007
-                        $external_img = false;
1008
-                        if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
1009
-                        } else {
1010
-                            $external_img = true;
1011
-                        }
1003
+						if (!is_dir($geodir_uploadpath)) {
1004
+							mkdir($geodir_uploadpath);
1005
+						}
1012 1006
 
1013
-                        if ($dummy || $external_img) {
1014
-                            $uploaded_file = array();
1015
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1007
+						$external_img = false;
1008
+						if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
1009
+						} else {
1010
+							$external_img = true;
1011
+						}
1016 1012
 
1017
-                            if (isset($uploaded['error']) && empty($uploaded['error'])) {
1018
-                                $new_name = basename($uploaded['file']);
1019
-                                $uploaded_file = $uploaded;
1020
-                            }else{
1021
-                                print_r($uploaded);exit;
1022
-                            }
1023
-                            $external_img = false;
1024
-                        } else {
1025
-                            $new_name = $post_id . '_' . $file_name;
1013
+						if ($dummy || $external_img) {
1014
+							$uploaded_file = array();
1015
+							$uploaded = (array)fetch_remote_file($curr_img_url);
1026 1016
 
1027
-                            if ($curr_img_dir == $sub_dir) {
1028
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1029
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1030
-                            } else {
1031
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1032
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1033
-                            }
1017
+							if (isset($uploaded['error']) && empty($uploaded['error'])) {
1018
+								$new_name = basename($uploaded['file']);
1019
+								$uploaded_file = $uploaded;
1020
+							}else{
1021
+								print_r($uploaded);exit;
1022
+							}
1023
+							$external_img = false;
1024
+						} else {
1025
+							$new_name = $post_id . '_' . $file_name;
1034 1026
 
1035
-                            $uploaded_file = '';
1027
+							if ($curr_img_dir == $sub_dir) {
1028
+								$img_path = $geodir_uploadpath . '/' . $filename;
1029
+								$img_url = $geodir_uploadurl . '/' . $filename;
1030
+							} else {
1031
+								$img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1032
+								$img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1033
+							}
1036 1034
 
1037
-                            if (file_exists($img_path)) {
1038
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1039
-                                $file_path = '';
1040
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1041
-                                $uploaded_file = true;
1042
-                                $file_path = $curr_img_dir . '/' . $filename;
1043
-                            }
1035
+							$uploaded_file = '';
1044 1036
 
1045
-                            if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1046
-                                unlink($img_path);
1047
-                        }
1037
+							if (file_exists($img_path)) {
1038
+								$uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1039
+								$file_path = '';
1040
+							} else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1041
+								$uploaded_file = true;
1042
+								$file_path = $curr_img_dir . '/' . $filename;
1043
+							}
1048 1044
 
1049
-                        if (!empty($uploaded_file)) {
1050
-                            if (!isset($file_path) || !$file_path) {
1051
-                                $file_path = $sub_dir . '/' . $new_name;
1052
-                            }
1045
+							if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
1046
+								unlink($img_path);
1047
+						}
1053 1048
 
1054
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1049
+						if (!empty($uploaded_file)) {
1050
+							if (!isset($file_path) || !$file_path) {
1051
+								$file_path = $sub_dir . '/' . $new_name;
1052
+							}
1055 1053
 
1056
-                            if ($menu_order == 1) {
1054
+							$postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1057 1055
 
1058
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1056
+							if ($menu_order == 1) {
1059 1057
 
1060
-                            }
1058
+								$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1061 1059
 
1062
-                            // Set up options array to add this file as an attachment
1063
-                            $attachment = array();
1064
-                            $attachment['post_id'] = $post_id;
1065
-                            $attachment['title'] = $file_title;
1066
-                            $attachment['content'] = '';
1067
-                            $attachment['file'] = $file_path;
1068
-                            $attachment['mime_type'] = $uploaded_file_type;
1069
-                            $attachment['menu_order'] = $menu_order;
1070
-                            $attachment['is_featured'] = 0;
1060
+							}
1071 1061
 
1072
-                            $attachment_set = '';
1062
+							// Set up options array to add this file as an attachment
1063
+							$attachment = array();
1064
+							$attachment['post_id'] = $post_id;
1065
+							$attachment['title'] = $file_title;
1066
+							$attachment['content'] = '';
1067
+							$attachment['file'] = $file_path;
1068
+							$attachment['mime_type'] = $uploaded_file_type;
1069
+							$attachment['menu_order'] = $menu_order;
1070
+							$attachment['is_featured'] = 0;
1073 1071
 
1074
-                            foreach ($attachment as $key => $val) {
1075
-                                if ($val != '')
1076
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1077
-                            }
1072
+							$attachment_set = '';
1078 1073
 
1079
-                            $attachment_set = trim($attachment_set, ", ");
1074
+							foreach ($attachment as $key => $val) {
1075
+								if ($val != '')
1076
+									$attachment_set .= $key . " = '" . $val . "', ";
1077
+							}
1080 1078
 
1081
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1079
+							$attachment_set = trim($attachment_set, ", ");
1080
+
1081
+							$wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1082 1082
 
1083
-                            $valid_file_ids[] = $wpdb->insert_id;
1084
-                        }
1083
+							$valid_file_ids[] = $wpdb->insert_id;
1084
+						}
1085 1085
 
1086
-                    }
1086
+					}
1087 1087
 
1088 1088
 
1089
-                } else {
1090
-                    $valid_file_ids[] = $find_image;
1089
+				} else {
1090
+					$valid_file_ids[] = $find_image;
1091 1091
 
1092
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1092
+					$postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1093 1093
 
1094
-                    $wpdb->query(
1095
-                        $wpdb->prepare(
1096
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1097
-                            array($menu_order, $split_img_path[1], $post_id)
1098
-                        )
1099
-                    );
1094
+					$wpdb->query(
1095
+						$wpdb->prepare(
1096
+							"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1097
+							array($menu_order, $split_img_path[1], $post_id)
1098
+						)
1099
+					);
1100 1100
 
1101
-                    if ($menu_order == 1)
1102
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1101
+					if ($menu_order == 1)
1102
+						$wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1103 1103
 
1104
-                }
1104
+				}
1105 1105
 
1106 1106
 
1107
-            }
1107
+			}
1108 1108
 
1109
-            if (!empty($valid_file_ids)) {
1109
+			if (!empty($valid_file_ids)) {
1110 1110
 
1111
-                $remove_files = $valid_file_ids;
1111
+				$remove_files = $valid_file_ids;
1112 1112
 
1113
-                $remove_files_length = count($remove_files);
1114
-                $remove_files_format = array_fill(0, $remove_files_length, '%d');
1115
-                $format = implode(',', $remove_files_format);
1116
-                $valid_files_condition = " ID NOT IN ($format) AND ";
1113
+				$remove_files_length = count($remove_files);
1114
+				$remove_files_format = array_fill(0, $remove_files_length, '%d');
1115
+				$format = implode(',', $remove_files_format);
1116
+				$valid_files_condition = " ID NOT IN ($format) AND ";
1117 1117
 
1118
-            }
1118
+			}
1119 1119
 
1120
-            //Get and remove all old images of post from database to set by new order
1120
+			//Get and remove all old images of post from database to set by new order
1121 1121
 
1122
-            if (!empty($post_images)) {
1122
+			if (!empty($post_images)) {
1123 1123
 
1124
-                foreach ($post_images as $img) {
1124
+				foreach ($post_images as $img) {
1125 1125
 
1126
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1126
+					if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1127 1127
 
1128
-                        $invalid_files[] = (object)array('src' => $img->src);
1128
+						$invalid_files[] = (object)array('src' => $img->src);
1129 1129
 
1130
-                    }
1130
+					}
1131 1131
 
1132
-                }
1132
+				}
1133 1133
 
1134
-            }
1134
+			}
1135 1135
 
1136
-            $invalid_files = (object)$invalid_files;
1137
-        }
1136
+			$invalid_files = (object)$invalid_files;
1137
+		}
1138 1138
 
1139
-        $remove_files[] = $post_id;
1139
+		$remove_files[] = $post_id;
1140 1140
 
1141
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1141
+		$wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1142 1142
 
1143
-        if (!empty($invalid_files))
1144
-            geodir_remove_attachments($invalid_files);
1145
-    }
1143
+		if (!empty($invalid_files))
1144
+			geodir_remove_attachments($invalid_files);
1145
+	}
1146 1146
 
1147 1147
 }
1148 1148
 
@@ -1156,12 +1156,12 @@  discard block
 block discarded – undo
1156 1156
 function geodir_remove_temp_images()
1157 1157
 {
1158 1158
 
1159
-    global $current_user;
1159
+	global $current_user;
1160 1160
 
1161
-    $uploads = wp_upload_dir();
1162
-    $uploads_dir = $uploads['path'];
1161
+	$uploads = wp_upload_dir();
1162
+	$uploads_dir = $uploads['path'];
1163 1163
 
1164
-    /*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1164
+	/*	if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
1165 1165
 
1166 1166
 			$dirPath = $uploads_dir.'/temp_'.$current_user->data->ID;
1167 1167
 			if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
@@ -1178,8 +1178,8 @@  discard block
 block discarded – undo
1178 1178
 			rmdir($dirPath);
1179 1179
 	}	*/
1180 1180
 
1181
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1182
-    geodir_delete_directory($dirname);
1181
+	$dirname = $uploads_dir . '/temp_' . $current_user->ID;
1182
+	geodir_delete_directory($dirname);
1183 1183
 }
1184 1184
 
1185 1185
 
@@ -1193,116 +1193,116 @@  discard block
 block discarded – undo
1193 1193
  */
1194 1194
 function geodir_delete_directory($dirname)
1195 1195
 {
1196
-    $dir_handle = '';
1197
-    if (is_dir($dirname))
1198
-        $dir_handle = opendir($dirname);
1199
-    if (!$dir_handle)
1200
-        return false;
1201
-    while ($file = readdir($dir_handle)) {
1202
-        if ($file != "." && $file != "..") {
1203
-            if (!is_dir($dirname . "/" . $file))
1204
-                unlink($dirname . "/" . $file);
1205
-            else
1206
-                geodir_delete_directory($dirname . '/' . $file);
1207
-        }
1208
-    }
1209
-    closedir($dir_handle);
1210
-    rmdir($dirname);
1211
-    return true;
1196
+	$dir_handle = '';
1197
+	if (is_dir($dirname))
1198
+		$dir_handle = opendir($dirname);
1199
+	if (!$dir_handle)
1200
+		return false;
1201
+	while ($file = readdir($dir_handle)) {
1202
+		if ($file != "." && $file != "..") {
1203
+			if (!is_dir($dirname . "/" . $file))
1204
+				unlink($dirname . "/" . $file);
1205
+			else
1206
+				geodir_delete_directory($dirname . '/' . $file);
1207
+		}
1208
+	}
1209
+	closedir($dir_handle);
1210
+	rmdir($dirname);
1211
+	return true;
1212 1212
 
1213 1213
 }
1214 1214
 
1215 1215
 
1216 1216
 if (!function_exists('geodir_remove_attachments')) {
1217
-    /**
1218
-     * Remove post attachments.
1219
-     *
1220
-     * @since 1.0.0
1221
-     * @package GeoDirectory
1222
-     * @param array $postcurr_images Array of image objects.
1223
-     */
1224
-    function geodir_remove_attachments($postcurr_images = array())
1225
-    {
1226
-        // Unlink all past images of post
1227
-        if (!empty($postcurr_images)) {
1228
-
1229
-            $uploads = wp_upload_dir();
1230
-            $uploads_dir = $uploads['path'];
1231
-
1232
-            foreach ($postcurr_images as $postimg) {
1233
-                $image_name_arr = explode('/', $postimg->src);
1234
-                $filename = end($image_name_arr);
1235
-                if (file_exists($uploads_dir . '/' . $filename))
1236
-                    unlink($uploads_dir . '/' . $filename);
1237
-            }
1238
-
1239
-        } // endif
1240
-        // Unlink all past images of post end
1241
-    }
1217
+	/**
1218
+	 * Remove post attachments.
1219
+	 *
1220
+	 * @since 1.0.0
1221
+	 * @package GeoDirectory
1222
+	 * @param array $postcurr_images Array of image objects.
1223
+	 */
1224
+	function geodir_remove_attachments($postcurr_images = array())
1225
+	{
1226
+		// Unlink all past images of post
1227
+		if (!empty($postcurr_images)) {
1228
+
1229
+			$uploads = wp_upload_dir();
1230
+			$uploads_dir = $uploads['path'];
1231
+
1232
+			foreach ($postcurr_images as $postimg) {
1233
+				$image_name_arr = explode('/', $postimg->src);
1234
+				$filename = end($image_name_arr);
1235
+				if (file_exists($uploads_dir . '/' . $filename))
1236
+					unlink($uploads_dir . '/' . $filename);
1237
+			}
1238
+
1239
+		} // endif
1240
+		// Unlink all past images of post end
1241
+	}
1242 1242
 }
1243 1243
 
1244 1244
 if (!function_exists('geodir_get_featured_image')) {
1245
-    /**
1246
-     * Gets the post featured image.
1247
-     *
1248
-     * @since 1.0.0
1249
-     * @package GeoDirectory
1250
-     * @global object $wpdb WordPress Database object.
1251
-     * @global object $post The current post object.
1252
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1253
-     * @param int|string $post_id The post ID.
1254
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1255
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1256
-     * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1257
-     * @return bool|object Image details as an object.
1258
-     */
1259
-    function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1260
-    {
1261
-
1262
-        /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1245
+	/**
1246
+	 * Gets the post featured image.
1247
+	 *
1248
+	 * @since 1.0.0
1249
+	 * @package GeoDirectory
1250
+	 * @global object $wpdb WordPress Database object.
1251
+	 * @global object $post The current post object.
1252
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1253
+	 * @param int|string $post_id The post ID.
1254
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1255
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1256
+	 * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false.
1257
+	 * @return bool|object Image details as an object.
1258
+	 */
1259
+	function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false)
1260
+	{
1261
+
1262
+		/*$img_arr['src'] = get_the_post_thumbnail_url( $post_id,  'medium');//medium/thumbnail
1263 1263
         $img_arr['path'] = '';
1264 1264
         $img_arr['width'] = '';
1265 1265
         $img_arr['height'] = '';
1266 1266
         $img_arr['title'] = '';
1267 1267
         return (object)$img_arr;*/
1268
-        global $wpdb, $plugin_prefix, $post;
1268
+		global $wpdb, $plugin_prefix, $post;
1269 1269
 
1270
-        if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1271
-            $post_type = $post->post_type;
1272
-        } else {
1273
-            $post_type = get_post_type($post_id);
1274
-        }
1270
+		if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
1271
+			$post_type = $post->post_type;
1272
+		} else {
1273
+			$post_type = get_post_type($post_id);
1274
+		}
1275 1275
 
1276
-        if (!in_array($post_type, geodir_get_posttypes())) {
1277
-            return false;// if not a GD CPT return;
1278
-        }
1276
+		if (!in_array($post_type, geodir_get_posttypes())) {
1277
+			return false;// if not a GD CPT return;
1278
+		}
1279 1279
 
1280
-        $table = $plugin_prefix . $post_type . '_detail';
1280
+		$table = $plugin_prefix . $post_type . '_detail';
1281 1281
 
1282
-        if (!$file) {
1283
-            if (isset($post->featured_image)) {
1284
-                $file = $post->featured_image;
1285
-            } else {
1286
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1287
-            }
1288
-        }
1282
+		if (!$file) {
1283
+			if (isset($post->featured_image)) {
1284
+				$file = $post->featured_image;
1285
+			} else {
1286
+				$file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1287
+			}
1288
+		}
1289 1289
 
1290
-        if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1291
-            $img_arr = array();
1290
+		if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
1291
+			$img_arr = array();
1292 1292
 
1293
-            $file_info = pathinfo($file);
1294
-            $sub_dir = '';
1295
-            if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1296
-                $sub_dir = stripslashes_deep($file_info['dirname']);
1293
+			$file_info = pathinfo($file);
1294
+			$sub_dir = '';
1295
+			if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1296
+				$sub_dir = stripslashes_deep($file_info['dirname']);
1297 1297
 
1298
-            $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1299
-            $uploads_baseurl = $uploads['baseurl'];
1300
-            $uploads_path = $uploads['path'];
1298
+			$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1299
+			$uploads_baseurl = $uploads['baseurl'];
1300
+			$uploads_path = $uploads['path'];
1301 1301
 
1302
-            $file_name = $file_info['basename'];
1302
+			$file_name = $file_info['basename'];
1303 1303
 
1304
-            $uploads_url = $uploads_baseurl . $sub_dir;
1305
-            /*
1304
+			$uploads_url = $uploads_baseurl . $sub_dir;
1305
+			/*
1306 1306
              * Allows the filter of image src for such things as CDN change.
1307 1307
              *
1308 1308
              * @since 1.5.7
@@ -1311,158 +1311,158 @@  discard block
 block discarded – undo
1311 1311
              * @param string $uploads_url The server upload directory url.
1312 1312
              * @param string $uploads_baseurl The uploads dir base url.
1313 1313
              */
1314
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1315
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1316
-            $width = 0;
1317
-            $height = 0;
1318
-            if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1319
-                $imagesize = getimagesize($img_arr['path']);
1320
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1321
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1322
-            }
1323
-            $img_arr['width'] = $width;
1324
-            $img_arr['height'] = $height;
1325
-            $img_arr['title'] = '';
1326
-        } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1327
-            foreach ($post_images as $image) {
1328
-                return $image;
1329
-            }
1330
-        } else if ($no_image) {
1331
-            $img_arr = array();
1332
-
1333
-            $default_img = '';
1334
-            if (isset($post->default_category) && $post->default_category) {
1335
-                $default_cat = $post->default_category;
1336
-            } else {
1337
-                $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1338
-            }
1339
-
1340
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1341
-                $default_img = $default_catimg['src'];
1342
-            elseif ($no_image) {
1343
-                $default_img = get_option('geodir_listing_no_img');
1344
-            }
1345
-
1346
-            if (!empty($default_img)) {
1347
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1348
-                $uploads_baseurl = $uploads['baseurl'];
1349
-                $uploads_path = $uploads['path'];
1350
-
1351
-                $img_arr = array();
1352
-
1353
-                $file_info = pathinfo($default_img);
1354
-
1355
-                $file_name = $file_info['basename'];
1356
-
1357
-                $img_arr['src'] = $default_img;
1358
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1359
-
1360
-                $width = 0;
1361
-                $height = 0;
1362
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1363
-                    $imagesize = getimagesize($img_arr['path']);
1364
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1365
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1366
-                }
1367
-                $img_arr['width'] = $width;
1368
-                $img_arr['height'] = $height;
1369
-
1370
-                $img_arr['title'] = ''; // add the title to the array
1371
-            }
1372
-        }
1373
-
1374
-        if (!empty($img_arr))
1375
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1376
-        else
1377
-            return false;
1378
-    }
1314
+			$img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1315
+			$img_arr['path'] = $uploads_path . '/' . $file_name;
1316
+			$width = 0;
1317
+			$height = 0;
1318
+			if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1319
+				$imagesize = getimagesize($img_arr['path']);
1320
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1321
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1322
+			}
1323
+			$img_arr['width'] = $width;
1324
+			$img_arr['height'] = $height;
1325
+			$img_arr['title'] = '';
1326
+		} elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
1327
+			foreach ($post_images as $image) {
1328
+				return $image;
1329
+			}
1330
+		} else if ($no_image) {
1331
+			$img_arr = array();
1332
+
1333
+			$default_img = '';
1334
+			if (isset($post->default_category) && $post->default_category) {
1335
+				$default_cat = $post->default_category;
1336
+			} else {
1337
+				$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1338
+			}
1339
+
1340
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1341
+				$default_img = $default_catimg['src'];
1342
+			elseif ($no_image) {
1343
+				$default_img = get_option('geodir_listing_no_img');
1344
+			}
1345
+
1346
+			if (!empty($default_img)) {
1347
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1348
+				$uploads_baseurl = $uploads['baseurl'];
1349
+				$uploads_path = $uploads['path'];
1350
+
1351
+				$img_arr = array();
1352
+
1353
+				$file_info = pathinfo($default_img);
1354
+
1355
+				$file_name = $file_info['basename'];
1356
+
1357
+				$img_arr['src'] = $default_img;
1358
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1359
+
1360
+				$width = 0;
1361
+				$height = 0;
1362
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1363
+					$imagesize = getimagesize($img_arr['path']);
1364
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1365
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1366
+				}
1367
+				$img_arr['width'] = $width;
1368
+				$img_arr['height'] = $height;
1369
+
1370
+				$img_arr['title'] = ''; // add the title to the array
1371
+			}
1372
+		}
1373
+
1374
+		if (!empty($img_arr))
1375
+			return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1376
+		else
1377
+			return false;
1378
+	}
1379 1379
 }
1380 1380
 
1381 1381
 if (!function_exists('geodir_show_featured_image')) {
1382
-    /**
1383
-     * Gets the post featured image.
1384
-     *
1385
-     * @since 1.0.0
1386
-     * @package GeoDirectory
1387
-     * @param int|string $post_id The post ID.
1388
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1389
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1390
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1391
-     * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1392
-     * @return bool|string Returns image html.
1393
-     */
1394
-    function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1395
-    {
1396
-        $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1397
-
1398
-        $html = geodir_show_image($image, $size, $no_image, false);
1399
-
1400
-        if (!empty($html) && $echo) {
1401
-            echo $html;
1402
-        } elseif (!empty($html)) {
1403
-            return $html;
1404
-        } else
1405
-            return false;
1406
-    }
1382
+	/**
1383
+	 * Gets the post featured image.
1384
+	 *
1385
+	 * @since 1.0.0
1386
+	 * @package GeoDirectory
1387
+	 * @param int|string $post_id The post ID.
1388
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1389
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1390
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1391
+	 * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false.
1392
+	 * @return bool|string Returns image html.
1393
+	 */
1394
+	function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false)
1395
+	{
1396
+		$image = geodir_get_featured_image($post_id, $size, $no_image, $fimage);
1397
+
1398
+		$html = geodir_show_image($image, $size, $no_image, false);
1399
+
1400
+		if (!empty($html) && $echo) {
1401
+			echo $html;
1402
+		} elseif (!empty($html)) {
1403
+			return $html;
1404
+		} else
1405
+			return false;
1406
+	}
1407 1407
 }
1408 1408
 
1409 1409
 if (!function_exists('geodir_get_images')) {
1410
-    /**
1411
-     * Gets the post images.
1412
-     *
1413
-     * @since 1.0.0
1414
-     * @package GeoDirectory
1415
-     * @global object $wpdb WordPress Database object.
1416
-     * @param int $post_id The post ID.
1417
-     * @param string $img_size Optional. Thumbnail size.
1418
-     * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1419
-     * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1420
-     * @param int|string $limit Optional. Number of images.
1421
-     * @return array|bool Returns images as an array. Each item is an object.
1422
-     */
1423
-    function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1424
-    {
1425
-        global $wpdb;
1426
-        if ($limit) {
1427
-            $limit_q = " LIMIT $limit ";
1428
-        } else {
1429
-            $limit_q = '';
1430
-        }
1431
-        $not_featured = '';
1432
-        $sub_dir = '';
1433
-        if (!$add_featured)
1434
-            $not_featured = " AND is_featured = 0 ";
1435
-
1436
-        $arrImages = $wpdb->get_results(
1437
-            $wpdb->prepare(
1438
-                "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 ",
1439
-                array('%image%', $post_id)
1440
-            )
1441
-        );
1442
-
1443
-        $counter = 0;
1444
-        $return_arr = array();
1445
-
1446
-        if (!empty($arrImages)) {
1447
-            foreach ($arrImages as $attechment) {
1448
-
1449
-                $img_arr = array();
1450
-                $img_arr['id'] = $attechment->ID;
1451
-                $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1452
-
1453
-                $file_info = pathinfo($attechment->file);
1454
-
1455
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1456
-                    $sub_dir = stripslashes_deep($file_info['dirname']);
1457
-
1458
-                $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1459
-                $uploads_baseurl = $uploads['baseurl'];
1460
-                $uploads_path = $uploads['path'];
1461
-
1462
-                $file_name = $file_info['basename'];
1463
-
1464
-                $uploads_url = $uploads_baseurl . $sub_dir;
1465
-                /*
1410
+	/**
1411
+	 * Gets the post images.
1412
+	 *
1413
+	 * @since 1.0.0
1414
+	 * @package GeoDirectory
1415
+	 * @global object $wpdb WordPress Database object.
1416
+	 * @param int $post_id The post ID.
1417
+	 * @param string $img_size Optional. Thumbnail size.
1418
+	 * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false.
1419
+	 * @param bool $add_featured Optional. Do you want to include featured images too? Default: true.
1420
+	 * @param int|string $limit Optional. Number of images.
1421
+	 * @return array|bool Returns images as an array. Each item is an object.
1422
+	 */
1423
+	function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '')
1424
+	{
1425
+		global $wpdb;
1426
+		if ($limit) {
1427
+			$limit_q = " LIMIT $limit ";
1428
+		} else {
1429
+			$limit_q = '';
1430
+		}
1431
+		$not_featured = '';
1432
+		$sub_dir = '';
1433
+		if (!$add_featured)
1434
+			$not_featured = " AND is_featured = 0 ";
1435
+
1436
+		$arrImages = $wpdb->get_results(
1437
+			$wpdb->prepare(
1438
+				"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 ",
1439
+				array('%image%', $post_id)
1440
+			)
1441
+		);
1442
+
1443
+		$counter = 0;
1444
+		$return_arr = array();
1445
+
1446
+		if (!empty($arrImages)) {
1447
+			foreach ($arrImages as $attechment) {
1448
+
1449
+				$img_arr = array();
1450
+				$img_arr['id'] = $attechment->ID;
1451
+				$img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0;
1452
+
1453
+				$file_info = pathinfo($attechment->file);
1454
+
1455
+				if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
1456
+					$sub_dir = stripslashes_deep($file_info['dirname']);
1457
+
1458
+				$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
1459
+				$uploads_baseurl = $uploads['baseurl'];
1460
+				$uploads_path = $uploads['path'];
1461
+
1462
+				$file_name = $file_info['basename'];
1463
+
1464
+				$uploads_url = $uploads_baseurl . $sub_dir;
1465
+				/*
1466 1466
                 * Allows the filter of image src for such things as CDN change.
1467 1467
                 *
1468 1468
                 * @since 1.5.7
@@ -1471,516 +1471,516 @@  discard block
 block discarded – undo
1471 1471
                 * @param string $uploads_url The server upload directory url.
1472 1472
                 * @param string $uploads_baseurl The uploads dir base url.
1473 1473
                 */
1474
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1475
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1476
-                $width = 0;
1477
-                $height = 0;
1478
-                if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1479
-                    $imagesize = getimagesize($img_arr['path']);
1480
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1481
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1482
-                }
1483
-                $img_arr['width'] = $width;
1484
-                $img_arr['height'] = $height;
1485
-
1486
-                $img_arr['file'] = $file_name; // add the title to the array
1487
-                $img_arr['title'] = $attechment->title; // add the title to the array
1488
-                $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1489
-                $img_arr['content'] = $attechment->content; // add the description to the array
1490
-                $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1491
-
1492
-                $return_arr[] = (object)$img_arr;
1493
-
1494
-                $counter++;
1495
-            }
1496
-            return (object)$return_arr;
1497
-        } else if ($no_images) {
1498
-            $default_img = '';
1499
-            $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1500
-            $post_type = get_post_type($post_id);
1501
-            if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1502
-                $default_img = $default_catimg['src'];
1503
-            elseif ($no_images) {
1504
-                $default_img = get_option('geodir_listing_no_img');
1505
-            }
1506
-
1507
-            if (!empty($default_img)) {
1508
-                $uploads = wp_upload_dir(); // Array of key => value pairs
1474
+				$img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1475
+				$img_arr['path'] = $uploads_path . '/' . $file_name;
1476
+				$width = 0;
1477
+				$height = 0;
1478
+				if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
1479
+					$imagesize = getimagesize($img_arr['path']);
1480
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1481
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1482
+				}
1483
+				$img_arr['width'] = $width;
1484
+				$img_arr['height'] = $height;
1485
+
1486
+				$img_arr['file'] = $file_name; // add the title to the array
1487
+				$img_arr['title'] = $attechment->title; // add the title to the array
1488
+				$img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array
1489
+				$img_arr['content'] = $attechment->content; // add the description to the array
1490
+				$img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1491
+
1492
+				$return_arr[] = (object)$img_arr;
1493
+
1494
+				$counter++;
1495
+			}
1496
+			return (object)$return_arr;
1497
+		} else if ($no_images) {
1498
+			$default_img = '';
1499
+			$default_cat = geodir_get_post_meta($post_id, 'default_category', true);
1500
+			$post_type = get_post_type($post_id);
1501
+			if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type))
1502
+				$default_img = $default_catimg['src'];
1503
+			elseif ($no_images) {
1504
+				$default_img = get_option('geodir_listing_no_img');
1505
+			}
1506
+
1507
+			if (!empty($default_img)) {
1508
+				$uploads = wp_upload_dir(); // Array of key => value pairs
1509 1509
                 
1510
-                $image_path = $default_img;
1511
-                if (!path_is_absolute($image_path)) {
1512
-                    $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1513
-                }
1514
-
1515
-                $file_info = pathinfo($default_img);
1516
-                $file_name = $file_info['basename'];
1517
-
1518
-                $width = '';
1519
-                $height = '';
1520
-                if (is_file($image_path) && file_exists($image_path)) {
1521
-                    $imagesize = getimagesize($image_path);
1522
-                    $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1523
-                    $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1524
-                }
1510
+				$image_path = $default_img;
1511
+				if (!path_is_absolute($image_path)) {
1512
+					$image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path);
1513
+				}
1514
+
1515
+				$file_info = pathinfo($default_img);
1516
+				$file_name = $file_info['basename'];
1517
+
1518
+				$width = '';
1519
+				$height = '';
1520
+				if (is_file($image_path) && file_exists($image_path)) {
1521
+					$imagesize = getimagesize($image_path);
1522
+					$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1523
+					$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1524
+				}
1525 1525
                 
1526
-                $img_arr = array();
1527
-                $img_arr['src'] = $default_img;
1528
-                $img_arr['path'] = $image_path;
1529
-                $img_arr['width'] = $width;
1530
-                $img_arr['height'] = $height;
1531
-                $img_arr['file'] = $file_name; // add the title to the array
1532
-                $img_arr['title'] = $file_info['filename']; // add the title to the array
1533
-                $img_arr['content'] = $file_info['filename']; // add the description to the array
1534
-
1535
-                $return_arr[] = (object)$img_arr;
1536
-
1537
-                return $return_arr;
1538
-            } else
1539
-                return false;
1540
-        }
1541
-    }
1526
+				$img_arr = array();
1527
+				$img_arr['src'] = $default_img;
1528
+				$img_arr['path'] = $image_path;
1529
+				$img_arr['width'] = $width;
1530
+				$img_arr['height'] = $height;
1531
+				$img_arr['file'] = $file_name; // add the title to the array
1532
+				$img_arr['title'] = $file_info['filename']; // add the title to the array
1533
+				$img_arr['content'] = $file_info['filename']; // add the description to the array
1534
+
1535
+				$return_arr[] = (object)$img_arr;
1536
+
1537
+				return $return_arr;
1538
+			} else
1539
+				return false;
1540
+		}
1541
+	}
1542 1542
 }
1543 1543
 
1544 1544
 if (!function_exists('geodir_show_image')) {
1545
-    /**
1546
-     * Show image using image details.
1547
-     *
1548
-     * @since 1.0.0
1549
-     * @package GeoDirectory
1550
-     * @param array|object $request Image info either as an array or object.
1551
-     * @param string $size Optional. Thumbnail size. Default: thumbnail.
1552
-     * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1553
-     * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1554
-     * @return bool|string Returns image html.
1555
-     */
1556
-    function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1557
-    {
1558
-        $image = new stdClass();
1559
-
1560
-        $html = '';
1561
-        if (!empty($request)) {
1562
-            if (!is_object($request)){
1563
-                $request = (object)$request;
1564
-            }
1565
-
1566
-            if (isset($request->src) && !isset($request->path)) {
1567
-                $request->path = $request->src;
1568
-            }
1569
-
1570
-            /*
1545
+	/**
1546
+	 * Show image using image details.
1547
+	 *
1548
+	 * @since 1.0.0
1549
+	 * @package GeoDirectory
1550
+	 * @param array|object $request Image info either as an array or object.
1551
+	 * @param string $size Optional. Thumbnail size. Default: thumbnail.
1552
+	 * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false.
1553
+	 * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true.
1554
+	 * @return bool|string Returns image html.
1555
+	 */
1556
+	function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true)
1557
+	{
1558
+		$image = new stdClass();
1559
+
1560
+		$html = '';
1561
+		if (!empty($request)) {
1562
+			if (!is_object($request)){
1563
+				$request = (object)$request;
1564
+			}
1565
+
1566
+			if (isset($request->src) && !isset($request->path)) {
1567
+				$request->path = $request->src;
1568
+			}
1569
+
1570
+			/*
1571 1571
              * getimagesize() works faster from path than url so we try and get path if we can.
1572 1572
              */
1573
-            $upload_dir = wp_upload_dir();
1574
-            $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1575
-            $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1576
-            if (strpos($img_no_http, $upload_no_http) !== false) {
1577
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1578
-            }
1573
+			$upload_dir = wp_upload_dir();
1574
+			$img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1575
+			$upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1576
+			if (strpos($img_no_http, $upload_no_http) !== false) {
1577
+				$request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1578
+			}
1579 1579
             
1580
-            $width = 0;
1581
-            $height = 0;
1582
-            if (is_file($request->path) && file_exists($request->path)) {
1583
-                $imagesize = getimagesize($request->path);
1584
-                $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1585
-                $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1586
-            }
1587
-
1588
-            $image->src = $request->src;
1589
-            $image->width = $width;
1590
-            $image->height = $height;
1591
-
1592
-            $max_size = (object)geodir_get_imagesize($size);
1593
-
1594
-            if (!is_wp_error($max_size)) {
1595
-                if ($image->width) {
1596
-                    if ($image->height >= $image->width) {
1597
-                        $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1598
-                    } else if ($image->width < ($max_size->h)) {
1599
-                        $width_per = round((($image->width / $max_size->w) * 100), 2);
1600
-                    } else
1601
-                        $width_per = 100;
1602
-                }
1603
-
1604
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1605
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1606
-                } else {
1607
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1608
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1609
-                    }else{
1610
-                        //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1611
-                        //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1612
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1613
-
1614
-                    }
1615
-
1616
-                }
1617
-            }
1618
-        }
1619
-
1620
-        if (!empty($html) && $echo) {
1621
-            echo $html;
1622
-        } elseif (!empty($html)) {
1623
-            return $html;
1624
-        } else
1625
-            return false;
1626
-    }
1627
-}
1580
+			$width = 0;
1581
+			$height = 0;
1582
+			if (is_file($request->path) && file_exists($request->path)) {
1583
+				$imagesize = getimagesize($request->path);
1584
+				$width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : '';
1585
+				$height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : '';
1586
+			}
1628 1587
 
1629
-if (!function_exists('geodir_set_post_terms')) {
1630
-    /**
1631
-     * Set post Categories.
1632
-     *
1633
-     * @since 1.0.0
1634
-     * @package GeoDirectory
1635
-     * @global object $wpdb WordPress Database object.
1636
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
1637
-     * @param int $post_id The post ID.
1638
-     * @param array $terms An array of term objects.
1639
-     * @param array $tt_ids An array of term taxonomy IDs.
1640
-     * @param string $taxonomy Taxonomy slug.
1641
-     */
1642
-    function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1643
-    {
1644
-        global $wpdb, $plugin_prefix;
1588
+			$image->src = $request->src;
1589
+			$image->width = $width;
1590
+			$image->height = $height;
1645 1591
 
1646
-        $post_type = get_post_type($post_id);
1592
+			$max_size = (object)geodir_get_imagesize($size);
1647 1593
 
1648
-        $table = $plugin_prefix . $post_type . '_detail';
1594
+			if (!is_wp_error($max_size)) {
1595
+				if ($image->width) {
1596
+					if ($image->height >= $image->width) {
1597
+						$width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2);
1598
+					} else if ($image->width < ($max_size->h)) {
1599
+						$width_per = round((($image->width / $max_size->w) * 100), 2);
1600
+					} else
1601
+						$width_per = 100;
1602
+				}
1649 1603
 
1650
-        if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1604
+				if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1605
+					$html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1606
+				} else {
1607
+					if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1608
+						$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1609
+					}else{
1610
+						//$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1611
+						//$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1612
+						$html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1613
+
1614
+					}
1615
+
1616
+				}
1617
+			}
1618
+		}
1619
+
1620
+		if (!empty($html) && $echo) {
1621
+			echo $html;
1622
+		} elseif (!empty($html)) {
1623
+			return $html;
1624
+		} else
1625
+			return false;
1626
+	}
1627
+}
1651 1628
 
1652
-            if ($taxonomy == $post_type . '_tags') {
1653
-                if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1654
-                    geodir_save_post_meta($post_id, 'post_tags', $terms);
1655
-                }
1656
-            } elseif ($taxonomy == $post_type . 'category') {
1657
-                $srcharr = array('"', '\\');
1658
-                $replarr = array("&quot;", '');
1629
+if (!function_exists('geodir_set_post_terms')) {
1630
+	/**
1631
+	 * Set post Categories.
1632
+	 *
1633
+	 * @since 1.0.0
1634
+	 * @package GeoDirectory
1635
+	 * @global object $wpdb WordPress Database object.
1636
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
1637
+	 * @param int $post_id The post ID.
1638
+	 * @param array $terms An array of term objects.
1639
+	 * @param array $tt_ids An array of term taxonomy IDs.
1640
+	 * @param string $taxonomy Taxonomy slug.
1641
+	 */
1642
+	function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy)
1643
+	{
1644
+		global $wpdb, $plugin_prefix;
1645
+
1646
+		$post_type = get_post_type($post_id);
1647
+
1648
+		$table = $plugin_prefix . $post_type . '_detail';
1649
+
1650
+		if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1651
+
1652
+			if ($taxonomy == $post_type . '_tags') {
1653
+				if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1654
+					geodir_save_post_meta($post_id, 'post_tags', $terms);
1655
+				}
1656
+			} elseif ($taxonomy == $post_type . 'category') {
1657
+				$srcharr = array('"', '\\');
1658
+				$replarr = array("&quot;", '');
1659 1659
 
1660
-                $post_obj = get_post($post_id);
1660
+				$post_obj = get_post($post_id);
1661 1661
 
1662
-                $cat_ids = array('0');
1663
-                if (is_array($tt_ids))
1664
-                    $cat_ids = $tt_ids;
1662
+				$cat_ids = array('0');
1663
+				if (is_array($tt_ids))
1664
+					$cat_ids = $tt_ids;
1665 1665
 
1666 1666
 
1667
-                if (!empty($cat_ids)) {
1668
-                    $cat_ids_array = $cat_ids;
1669
-                    $cat_ids_length = count($cat_ids_array);
1670
-                    $cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1671
-                    $format = implode(',', $cat_ids_format);
1667
+				if (!empty($cat_ids)) {
1668
+					$cat_ids_array = $cat_ids;
1669
+					$cat_ids_length = count($cat_ids_array);
1670
+					$cat_ids_format = array_fill(0, $cat_ids_length, '%d');
1671
+					$format = implode(',', $cat_ids_format);
1672 1672
 
1673
-                    $cat_ids_array_del = $cat_ids_array;
1674
-                    $cat_ids_array_del[] = $post_id;
1673
+					$cat_ids_array_del = $cat_ids_array;
1674
+					$cat_ids_array_del[] = $post_id;
1675 1675
 
1676
-                    $wpdb->get_var(
1677
-                        $wpdb->prepare(
1678
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1679
-                            $cat_ids_array_del
1680
-                        )
1681
-                    );
1676
+					$wpdb->get_var(
1677
+						$wpdb->prepare(
1678
+							"DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1679
+							$cat_ids_array_del
1680
+						)
1681
+					);
1682 1682
 
1683 1683
 
1684
-                    $post_term = $wpdb->get_col(
1685
-                        $wpdb->prepare(
1686
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1687
-                            $cat_ids_array
1688
-                        )
1689
-                    );
1684
+					$post_term = $wpdb->get_col(
1685
+						$wpdb->prepare(
1686
+							"SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1687
+							$cat_ids_array
1688
+						)
1689
+					);
1690 1690
 
1691
-                }
1691
+				}
1692 1692
 
1693
-                $post_marker_json = '';
1693
+				$post_marker_json = '';
1694 1694
 
1695
-                if (!empty($post_term)):
1695
+				if (!empty($post_term)):
1696 1696
 
1697
-                    foreach ($post_term as $cat_id):
1697
+					foreach ($post_term as $cat_id):
1698 1698
 
1699
-                        $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1700
-                        $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1699
+						$term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type);
1700
+						$term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : '';
1701 1701
 
1702
-                        $post_title = $post_obj->title;
1703
-                        $title = str_replace($srcharr, $replarr, $post_title);
1702
+						$post_title = $post_obj->title;
1703
+						$title = str_replace($srcharr, $replarr, $post_title);
1704 1704
 
1705
-                        $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1706
-                        $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1705
+						$lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1706
+						$lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1707 1707
 
1708
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1709
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1708
+						$timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1709
+						$timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1710 1710
 
1711
-                        $json = '{';
1712
-                        $json .= '"id":"' . $post_id . '",';
1713
-                        $json .= '"lat_pos": "' . $lat . '",';
1714
-                        $json .= '"long_pos": "' . $lng . '",';
1715
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1716
-                        $json .= '"icon":"' . $term_icon . '",';
1717
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1718
-                        $json .= '}';
1711
+						$json = '{';
1712
+						$json .= '"id":"' . $post_id . '",';
1713
+						$json .= '"lat_pos": "' . $lat . '",';
1714
+						$json .= '"long_pos": "' . $lng . '",';
1715
+						$json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1716
+						$json .= '"icon":"' . $term_icon . '",';
1717
+						$json .= '"group":"catgroup' . $cat_id . '"';
1718
+						$json .= '}';
1719 1719
 
1720 1720
 
1721
-                        if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1722
-                            $post_marker_json = $json;
1721
+						if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true))
1722
+							$post_marker_json = $json;
1723 1723
 
1724 1724
 
1725
-                        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)))) {
1725
+						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)))) {
1726 1726
 
1727
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1727
+							$json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1728 1728
 										post_title = %s,
1729 1729
 										json = %s
1730 1730
 										WHERE post_id = %d AND cat_id = %d ",
1731
-                                array($post_title, $json, $post_id, $cat_id));
1731
+								array($post_title, $json, $post_id, $cat_id));
1732 1732
 
1733
-                        } else {
1733
+						} else {
1734 1734
 
1735
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1735
+							$json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1736 1736
 										post_id = %d,
1737 1737
 										post_title = %s,
1738 1738
 										cat_id = %d,
1739 1739
 										json = %s",
1740
-                                array($post_id, $post_title, $cat_id, $json));
1740
+								array($post_id, $post_title, $cat_id, $json));
1741 1741
 
1742
-                        }
1742
+						}
1743 1743
 
1744
-                        $wpdb->query($json_query);
1744
+						$wpdb->query($json_query);
1745 1745
 
1746
-                    endforeach;
1746
+					endforeach;
1747 1747
 
1748
-                endif;
1748
+				endif;
1749 1749
 
1750
-                if (!empty($post_term) && is_array($post_term)) {
1751
-                    $categories = implode(',', $post_term);
1750
+				if (!empty($post_term) && is_array($post_term)) {
1751
+					$categories = implode(',', $post_term);
1752 1752
 
1753
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1753
+					if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1754 1754
 
1755
-                    if (empty($post_marker_json))
1756
-                        $post_marker_json = isset($json) ? $json : '';
1755
+					if (empty($post_marker_json))
1756
+						$post_marker_json = isset($json) ? $json : '';
1757 1757
 
1758
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1758
+					if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1759 1759
 
1760
-                        $wpdb->query(
1761
-                            $wpdb->prepare(
1762
-                                "UPDATE " . $table . " SET
1760
+						$wpdb->query(
1761
+							$wpdb->prepare(
1762
+								"UPDATE " . $table . " SET
1763 1763
 								" . $taxonomy . " = %s,
1764 1764
 								marker_json = %s
1765 1765
 								where post_id = %d",
1766
-                                array($categories, $post_marker_json, $post_id)
1767
-                            )
1768
-                        );
1766
+								array($categories, $post_marker_json, $post_id)
1767
+							)
1768
+						);
1769 1769
 
1770
-                        if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1770
+						if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
1771 1771
 
1772
-                            $categories = trim($categories, ',');
1772
+							$categories = trim($categories, ',');
1773 1773
 
1774
-                            if ($categories) {
1774
+							if ($categories) {
1775 1775
 
1776
-                                $categories = explode(',', $categories);
1776
+								$categories = explode(',', $categories);
1777 1777
 
1778
-                                $default_category = geodir_get_post_meta($post_id, 'default_category', true);
1778
+								$default_category = geodir_get_post_meta($post_id, 'default_category', true);
1779 1779
 
1780
-                                if (!in_array($default_category, $categories)) {
1780
+								if (!in_array($default_category, $categories)) {
1781 1781
 
1782
-                                    $wpdb->query(
1783
-                                        $wpdb->prepare(
1784
-                                            "UPDATE " . $table . " SET
1782
+									$wpdb->query(
1783
+										$wpdb->prepare(
1784
+											"UPDATE " . $table . " SET
1785 1785
 											default_category = %s
1786 1786
 											where post_id = %d",
1787
-                                            array($categories[0], $post_id)
1788
-                                        )
1789
-                                    );
1787
+											array($categories[0], $post_id)
1788
+										)
1789
+									);
1790 1790
 
1791
-                                    $default_category = $categories[0];
1791
+									$default_category = $categories[0];
1792 1792
 
1793
-                                }
1793
+								}
1794 1794
 
1795
-                                if ($default_category == '')
1796
-                                    $default_category = $categories[0];
1795
+								if ($default_category == '')
1796
+									$default_category = $categories[0];
1797 1797
 
1798
-                                geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1798
+								geodir_set_postcat_structure($post_id, $taxonomy, $default_category, '');
1799 1799
 
1800
-                            }
1800
+							}
1801 1801
 
1802
-                        }
1802
+						}
1803 1803
 
1804 1804
 
1805
-                    } else {
1805
+					} else {
1806 1806
 
1807
-                        $wpdb->query(
1808
-                            $wpdb->prepare(
1809
-                                "INSERT INTO " . $table . " SET
1807
+						$wpdb->query(
1808
+							$wpdb->prepare(
1809
+								"INSERT INTO " . $table . " SET
1810 1810
 								post_id = %d,
1811 1811
 								" . $taxonomy . " = %s,
1812 1812
 								marker_json = %s ",
1813 1813
 
1814
-                                array($post_id, $categories, $post_marker_json)
1815
-                            )
1816
-                        );
1817
-                    }
1818
-                }
1819
-            }
1820
-        }
1821
-    }
1814
+								array($post_id, $categories, $post_marker_json)
1815
+							)
1816
+						);
1817
+					}
1818
+				}
1819
+			}
1820
+		}
1821
+	}
1822 1822
 }
1823 1823
 
1824 1824
 if (!function_exists('geodir_get_infowindow_html')) {
1825
-    /**
1826
-     * Set post Map Marker info html.
1827
-     *
1828
-     * @since 1.0.0
1829
-     * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1830
-     * @package GeoDirectory
1831
-     * @global array $geodir_addon_list List of active GeoDirectory extensions.
1832
-     * @global object $gd_session GeoDirectory Session object.
1833
-     * @param object $postinfo_obj The post details object.
1834
-     * @param string $post_preview Is this a post preview?.
1835
-     * @return mixed|string|void
1836
-     */
1837
-    function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1838
-    {
1839
-        global $preview, $gd_session;
1840
-        $srcharr = array("'", "/", "-", '"', '\\');
1841
-        $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1842
-
1843
-        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1844
-            $ID = '';
1845
-            $plink = '';
1846
-
1847
-            if (isset($postinfo_obj->pid)) {
1848
-                $ID = $postinfo_obj->pid;
1849
-                $plink = get_permalink($ID);
1850
-            }
1851
-
1852
-            $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1853
-            $lat = $postinfo_obj->post_latitude;
1854
-            $lng = $postinfo_obj->post_longitude;
1855
-        } else {
1856
-            $ID = $postinfo_obj->post_id;
1857
-            $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1858
-            $plink = get_permalink($ID);
1859
-            $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1860
-            $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1861
-        }
1862
-
1863
-        // filter field as per price package
1864
-        global $geodir_addon_list;
1865
-        if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1866
-            $post_type = get_post_type($ID);
1867
-            $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1868
-            $field_name = 'geodir_contact';
1869
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1870
-                $contact = '';
1871
-            }
1872
-
1873
-            $field_name = 'geodir_timing';
1874
-            if (!check_field_visibility($package_id, $field_name, $post_type)) {
1875
-                $timing = '';
1876
-            }
1877
-        }
1878
-
1879
-        if ($lat && $lng) {
1880
-            ob_start(); ?>
1825
+	/**
1826
+	 * Set post Map Marker info html.
1827
+	 *
1828
+	 * @since 1.0.0
1829
+	 * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before".
1830
+	 * @package GeoDirectory
1831
+	 * @global array $geodir_addon_list List of active GeoDirectory extensions.
1832
+	 * @global object $gd_session GeoDirectory Session object.
1833
+	 * @param object $postinfo_obj The post details object.
1834
+	 * @param string $post_preview Is this a post preview?.
1835
+	 * @return mixed|string|void
1836
+	 */
1837
+	function geodir_get_infowindow_html($postinfo_obj, $post_preview = '')
1838
+	{
1839
+		global $preview, $gd_session;
1840
+		$srcharr = array("'", "/", "-", '"', '\\');
1841
+		$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
1842
+
1843
+		if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1844
+			$ID = '';
1845
+			$plink = '';
1846
+
1847
+			if (isset($postinfo_obj->pid)) {
1848
+				$ID = $postinfo_obj->pid;
1849
+				$plink = get_permalink($ID);
1850
+			}
1851
+
1852
+			$title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title));
1853
+			$lat = $postinfo_obj->post_latitude;
1854
+			$lng = $postinfo_obj->post_longitude;
1855
+		} else {
1856
+			$ID = $postinfo_obj->post_id;
1857
+			$title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan
1858
+			$plink = get_permalink($ID);
1859
+			$lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true));
1860
+			$lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true));
1861
+		}
1862
+
1863
+		// filter field as per price package
1864
+		global $geodir_addon_list;
1865
+		if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
1866
+			$post_type = get_post_type($ID);
1867
+			$package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL;
1868
+			$field_name = 'geodir_contact';
1869
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1870
+				$contact = '';
1871
+			}
1872
+
1873
+			$field_name = 'geodir_timing';
1874
+			if (!check_field_visibility($package_id, $field_name, $post_type)) {
1875
+				$timing = '';
1876
+			}
1877
+		}
1878
+
1879
+		if ($lat && $lng) {
1880
+			ob_start(); ?>
1881 1881
             <div class="gd-bubble" style="">
1882 1882
                 <div class="gd-bubble-inside">
1883 1883
                     <?php
1884
-                    $comment_count = '';
1885
-                    $rating_star = '';
1886
-                    if ($ID != '') {
1887
-                        $rating_star = '';
1888
-                        $comment_count = geodir_get_review_count_total($ID);
1889
-
1890
-                        if (!$preview) {
1891
-                            $post_avgratings = geodir_get_post_rating($ID);
1892
-
1893
-                            $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1894
-
1895
-                            /**
1896
-                             * Filter to change rating stars
1897
-                             *
1898
-                             * You can use this filter to change Rating stars.
1899
-                             *
1900
-                             * @since 1.0.0
1901
-                             * @package GeoDirectory
1902
-                             * @param string $rating_star Rating stars.
1903
-                             * @param float $post_avgratings Average ratings of the post.
1904
-                             * @param int $ID The post ID.
1905
-                             */
1906
-                            $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1907
-                        }
1908
-                    }
1909
-                    ?>
1884
+					$comment_count = '';
1885
+					$rating_star = '';
1886
+					if ($ID != '') {
1887
+						$rating_star = '';
1888
+						$comment_count = geodir_get_review_count_total($ID);
1889
+
1890
+						if (!$preview) {
1891
+							$post_avgratings = geodir_get_post_rating($ID);
1892
+
1893
+							$rating_star = geodir_get_rating_stars($post_avgratings, $ID, false);
1894
+
1895
+							/**
1896
+							 * Filter to change rating stars
1897
+							 *
1898
+							 * You can use this filter to change Rating stars.
1899
+							 *
1900
+							 * @since 1.0.0
1901
+							 * @package GeoDirectory
1902
+							 * @param string $rating_star Rating stars.
1903
+							 * @param float $post_avgratings Average ratings of the post.
1904
+							 * @param int $ID The post ID.
1905
+							 */
1906
+							$rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
1907
+						}
1908
+					}
1909
+					?>
1910 1910
                     <div class="geodir-bubble_desc">
1911 1911
                         <h4>
1912 1912
                             <a href="<?php if ($plink != '') {
1913
-                                echo $plink;
1914
-                            } else {
1915
-                                echo 'javascript:void(0);';
1916
-                            } ?>"><?php echo $title; ?></a>
1913
+								echo $plink;
1914
+							} else {
1915
+								echo 'javascript:void(0);';
1916
+							} ?>"><?php echo $title; ?></a>
1917 1917
                         </h4>
1918 1918
                         <?php
1919
-                        if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1920
-                            $post_images = array();
1921
-                            if (!empty($postinfo_obj->post_images)) {
1922
-                                $post_images = explode(",", $postinfo_obj->post_images);
1923
-                            }
1924
-
1925
-                            if (!empty($post_images)) {
1926
-                                ?>
1919
+						if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
1920
+							$post_images = array();
1921
+							if (!empty($postinfo_obj->post_images)) {
1922
+								$post_images = explode(",", $postinfo_obj->post_images);
1923
+							}
1924
+
1925
+							if (!empty($post_images)) {
1926
+								?>
1927 1927
                                 <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
1928
-                                        echo $plink;
1929
-                                    } else {
1930
-                                        echo 'javascript:void(0);';
1931
-                                    } ?>"><img alt="bubble image" style="max-height:50px;"
1928
+										echo $plink;
1929
+									} else {
1930
+										echo 'javascript:void(0);';
1931
+									} ?>"><img alt="bubble image" style="max-height:50px;"
1932 1932
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1933 1933
                             <?php
1934
-                            }else{
1935
-                                echo '<div class="geodir-bubble_image"></div>';
1936
-                            }
1937
-                        } else {
1938
-                            if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1939
-                                ?>
1934
+							}else{
1935
+								echo '<div class="geodir-bubble_image"></div>';
1936
+							}
1937
+						} else {
1938
+							if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
1939
+								?>
1940 1940
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1941 1941
                             <?php
1942
-                            }else{
1943
-                                echo '<div class="geodir-bubble_image"></div>';
1944
-                            }
1945
-                        }
1946
-                        ?>
1942
+							}else{
1943
+								echo '<div class="geodir-bubble_image"></div>';
1944
+							}
1945
+						}
1946
+						?>
1947 1947
                         <div class="geodir-bubble-meta-side">
1948 1948
                             <?php
1949
-                            /**
1950
-                             * Fires before the meta info in the map info window.
1951
-                             *
1952
-                             * This can be used to add more info to the map info window before the normal meta info.
1953
-                             *
1954
-                             * @since 1.5.4
1955
-                             * @param int $ID The post id.
1956
-                             * @param object $postinfo_obj The posts info as an object.
1957
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1958
-                             */
1959
-                            do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1960
-
1961
-
1962
-                            echo geodir_show_listing_info('mapbubble');
1949
+							/**
1950
+							 * Fires before the meta info in the map info window.
1951
+							 *
1952
+							 * This can be used to add more info to the map info window before the normal meta info.
1953
+							 *
1954
+							 * @since 1.5.4
1955
+							 * @param int $ID The post id.
1956
+							 * @param object $postinfo_obj The posts info as an object.
1957
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1958
+							 */
1959
+							do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
1960
+
1961
+
1962
+							echo geodir_show_listing_info('mapbubble');
1963 1963
                             
1964 1964
                                                       
1965 1965
 
1966
-                            /**
1967
-                             * Fires after the meta info in the map info window.
1968
-                             *
1969
-                             * This can be used to add more info to the map info window after the normal meta info.
1970
-                             *
1971
-                             * @since 1.4.2
1972
-                             * @param object $postinfo_obj The posts info as an object.
1973
-                             * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1974
-                             */
1975
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1976
-                            ?>
1966
+							/**
1967
+							 * Fires after the meta info in the map info window.
1968
+							 *
1969
+							 * This can be used to add more info to the map info window after the normal meta info.
1970
+							 *
1971
+							 * @since 1.4.2
1972
+							 * @param object $postinfo_obj The posts info as an object.
1973
+							 * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1974
+							 */
1975
+							do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1976
+							?>
1977 1977
                         </div>
1978 1978
                         <?php
1979 1979
 
1980
-                        if ($ID) {
1980
+						if ($ID) {
1981 1981
 
1982
-                            $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
1983
-                            ?>
1982
+							$post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
1983
+							?>
1984 1984
                             <div class="geodir-bubble-meta-fade"></div>
1985 1985
 
1986 1986
                             <div class="geodir-bubble-meta-bottom">
@@ -2000,69 +2000,69 @@  discard block
 block discarded – undo
2000 2000
                 </div>
2001 2001
             </div>
2002 2002
             <?php
2003
-            $html = ob_get_clean();
2004
-            /**
2005
-             * Filter to change infowindow html
2006
-             *
2007
-             * You can use this filter to change infowindow html.
2008
-             *
2009
-             * @since 1.0.0
2010
-             * @package GeoDirectory
2011
-             * @param string $html Infowindow html.
2012
-             * @param object $postinfo_obj The Post object.
2013
-             * @param bool|string $post_preview Is this a post preview?
2014
-             */
2015
-            $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2016
-            return $html;
2017
-        }
2018
-    }
2003
+			$html = ob_get_clean();
2004
+			/**
2005
+			 * Filter to change infowindow html
2006
+			 *
2007
+			 * You can use this filter to change infowindow html.
2008
+			 *
2009
+			 * @since 1.0.0
2010
+			 * @package GeoDirectory
2011
+			 * @param string $html Infowindow html.
2012
+			 * @param object $postinfo_obj The Post object.
2013
+			 * @param bool|string $post_preview Is this a post preview?
2014
+			 */
2015
+			$html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
2016
+			return $html;
2017
+		}
2018
+	}
2019 2019
 }
2020 2020
 
2021 2021
 
2022 2022
 if (!function_exists('geodir_new_post_default_status')) {
2023
-    /**
2024
-     * Default post status for new posts.
2025
-     *
2026
-     * @since 1.0.0
2027
-     * @package GeoDirectory
2028
-     * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2029
-     */
2030
-    function geodir_new_post_default_status()
2031
-    {
2032
-        if (get_option('geodir_new_post_default_status'))
2033
-            return get_option('geodir_new_post_default_status');
2034
-        else
2035
-            return 'publish';
2036
-
2037
-    }
2023
+	/**
2024
+	 * Default post status for new posts.
2025
+	 *
2026
+	 * @since 1.0.0
2027
+	 * @package GeoDirectory
2028
+	 * @return string Returns the default post status for new posts. Ex: draft, publish etc.
2029
+	 */
2030
+	function geodir_new_post_default_status()
2031
+	{
2032
+		if (get_option('geodir_new_post_default_status'))
2033
+			return get_option('geodir_new_post_default_status');
2034
+		else
2035
+			return 'publish';
2036
+
2037
+	}
2038 2038
 }
2039 2039
 
2040 2040
 if (!function_exists('geodir_change_post_status')) {
2041
-    /**
2042
-     * Change post status of a post.
2043
-     *
2044
-     * @global object $wpdb WordPress Database object.
2045
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2046
-     * @param int|string $post_id The post ID.
2047
-     * @param string $status New post status. Ex: draft, publish etc.
2048
-     */
2049
-    function geodir_change_post_status($post_id = '', $status = '')
2050
-    {
2051
-        global $wpdb, $plugin_prefix;
2052
-
2053
-        $post_type = get_post_type($post_id);
2054
-
2055
-        $table = $plugin_prefix . $post_type . '_detail';
2056
-
2057
-        $wpdb->query(
2058
-            $wpdb->prepare(
2059
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2060
-                array($status, $post_id)
2061
-            )
2062
-        );
2063
-
2064
-
2065
-    }
2041
+	/**
2042
+	 * Change post status of a post.
2043
+	 *
2044
+	 * @global object $wpdb WordPress Database object.
2045
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2046
+	 * @param int|string $post_id The post ID.
2047
+	 * @param string $status New post status. Ex: draft, publish etc.
2048
+	 */
2049
+	function geodir_change_post_status($post_id = '', $status = '')
2050
+	{
2051
+		global $wpdb, $plugin_prefix;
2052
+
2053
+		$post_type = get_post_type($post_id);
2054
+
2055
+		$table = $plugin_prefix . $post_type . '_detail';
2056
+
2057
+		$wpdb->query(
2058
+			$wpdb->prepare(
2059
+				"UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2060
+				array($status, $post_id)
2061
+			)
2062
+		);
2063
+
2064
+
2065
+	}
2066 2066
 }
2067 2067
 
2068 2068
 /**
@@ -2076,13 +2076,13 @@  discard block
 block discarded – undo
2076 2076
  */
2077 2077
 function geodir_set_post_status($pid, $status)
2078 2078
 {
2079
-    if ($pid) {
2080
-        global $wpdb;
2081
-        $my_post = array();
2082
-        $my_post['post_status'] = $status;
2083
-        $my_post['ID'] = $pid;
2084
-        $last_postid = wp_update_post($my_post);
2085
-    }
2079
+	if ($pid) {
2080
+		global $wpdb;
2081
+		$my_post = array();
2082
+		$my_post['post_status'] = $status;
2083
+		$my_post['ID'] = $pid;
2084
+		$last_postid = wp_update_post($my_post);
2085
+	}
2086 2086
 }
2087 2087
 
2088 2088
 
@@ -2098,384 +2098,384 @@  discard block
 block discarded – undo
2098 2098
  */
2099 2099
 function geodir_update_poststatus($new_status, $old_status, $post)
2100 2100
 {
2101
-    global $wpdb;
2101
+	global $wpdb;
2102 2102
 
2103
-    $geodir_posttypes = geodir_get_posttypes();
2103
+	$geodir_posttypes = geodir_get_posttypes();
2104 2104
 
2105
-    if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2105
+	if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
2106 2106
 
2107
-        geodir_change_post_status($post->ID, $new_status);
2108
-    }
2107
+		geodir_change_post_status($post->ID, $new_status);
2108
+	}
2109 2109
 }
2110 2110
 
2111 2111
 
2112 2112
 if (!function_exists('geodir_update_listing_info')) {
2113
-    /**
2114
-     * Update post info.
2115
-     *
2116
-     * @since 1.0.0
2117
-     * @package GeoDirectory
2118
-     * @global object $wpdb WordPress Database object.
2119
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2120
-     * @param int $updatingpost The updating post ID.
2121
-     * @param int $temppost The temporary post ID.
2122
-     * @todo fix post_id variable
2123
-     */
2124
-    function geodir_update_listing_info($updatingpost, $temppost)
2125
-    {
2126
-
2127
-        global $wpdb, $plugin_prefix;
2128
-
2129
-        $post_type = get_post_type($post_id);
2130
-
2131
-        $table = $plugin_prefix . $post_type . '_detail';
2132
-
2133
-        $wpdb->query(
2134
-            $wpdb->prepare(
2135
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2136
-                array($updatingpost, $temppost)
2137
-            )
2138
-        );
2139
-
2140
-        $wpdb->query(
2141
-            $wpdb->prepare(
2142
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2143
-                array($updatingpost, $temppost)
2144
-            )
2145
-        );
2146
-
2147
-        /* Update Attachments*/
2148
-
2149
-        $wpdb->query(
2150
-            $wpdb->prepare(
2151
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2152
-                array($updatingpost, $temppost)
2153
-            )
2154
-        );
2155
-
2156
-    }
2113
+	/**
2114
+	 * Update post info.
2115
+	 *
2116
+	 * @since 1.0.0
2117
+	 * @package GeoDirectory
2118
+	 * @global object $wpdb WordPress Database object.
2119
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2120
+	 * @param int $updatingpost The updating post ID.
2121
+	 * @param int $temppost The temporary post ID.
2122
+	 * @todo fix post_id variable
2123
+	 */
2124
+	function geodir_update_listing_info($updatingpost, $temppost)
2125
+	{
2126
+
2127
+		global $wpdb, $plugin_prefix;
2128
+
2129
+		$post_type = get_post_type($post_id);
2130
+
2131
+		$table = $plugin_prefix . $post_type . '_detail';
2132
+
2133
+		$wpdb->query(
2134
+			$wpdb->prepare(
2135
+				"UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2136
+				array($updatingpost, $temppost)
2137
+			)
2138
+		);
2139
+
2140
+		$wpdb->query(
2141
+			$wpdb->prepare(
2142
+				"UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2143
+				array($updatingpost, $temppost)
2144
+			)
2145
+		);
2146
+
2147
+		/* Update Attachments*/
2148
+
2149
+		$wpdb->query(
2150
+			$wpdb->prepare(
2151
+				"UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2152
+				array($updatingpost, $temppost)
2153
+			)
2154
+		);
2155
+
2156
+	}
2157 2157
 }
2158 2158
 
2159 2159
 
2160 2160
 if (!function_exists('geodir_delete_listing_info')) {
2161
-    /**
2162
-     * Delete Listing info from details table for the given post id.
2163
-     *
2164
-     * @since 1.0.0
2165
-     * @package GeoDirectory
2166
-     * @global object $wpdb WordPress Database object.
2167
-     * @global string $plugin_prefix Geodirectory plugin table prefix.
2168
-     * @param int $deleted_postid The post ID.
2169
-     * @param bool $force Optional. Do you want to force delete it? Default: false.
2170
-     * @return bool|void
2171
-     */
2172
-    function geodir_delete_listing_info($deleted_postid, $force = false)
2173
-    {
2174
-        global $wpdb, $plugin_prefix;
2175
-
2176
-        // check for multisite deletions
2177
-        if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2178
-        } else {
2179
-            return;
2180
-        }
2181
-
2182
-        $post_type = get_post_type($deleted_postid);
2183
-
2184
-        $all_postypes = geodir_get_posttypes();
2185
-
2186
-        if (!in_array($post_type, $all_postypes))
2187
-            return false;
2188
-
2189
-        $table = $plugin_prefix . $post_type . '_detail';
2190
-
2191
-        /* Delete custom post meta*/
2192
-        $wpdb->query(
2193
-            $wpdb->prepare(
2194
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2195
-                array($deleted_postid)
2196
-            )
2197
-        );
2198
-
2199
-        /* Delete post map icons*/
2200
-
2201
-        $wpdb->query(
2202
-            $wpdb->prepare(
2203
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2204
-                array($deleted_postid)
2205
-            )
2206
-        );
2207
-
2208
-        /* Delete Attachments*/
2209
-        $postcurr_images = geodir_get_images($deleted_postid);
2210
-
2211
-        $wpdb->query(
2212
-            $wpdb->prepare(
2213
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2214
-                array($deleted_postid)
2215
-            )
2216
-        );
2217
-        geodir_remove_attachments($postcurr_images);
2218
-
2219
-    }
2161
+	/**
2162
+	 * Delete Listing info from details table for the given post id.
2163
+	 *
2164
+	 * @since 1.0.0
2165
+	 * @package GeoDirectory
2166
+	 * @global object $wpdb WordPress Database object.
2167
+	 * @global string $plugin_prefix Geodirectory plugin table prefix.
2168
+	 * @param int $deleted_postid The post ID.
2169
+	 * @param bool $force Optional. Do you want to force delete it? Default: false.
2170
+	 * @return bool|void
2171
+	 */
2172
+	function geodir_delete_listing_info($deleted_postid, $force = false)
2173
+	{
2174
+		global $wpdb, $plugin_prefix;
2175
+
2176
+		// check for multisite deletions
2177
+		if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
2178
+		} else {
2179
+			return;
2180
+		}
2181
+
2182
+		$post_type = get_post_type($deleted_postid);
2183
+
2184
+		$all_postypes = geodir_get_posttypes();
2185
+
2186
+		if (!in_array($post_type, $all_postypes))
2187
+			return false;
2188
+
2189
+		$table = $plugin_prefix . $post_type . '_detail';
2190
+
2191
+		/* Delete custom post meta*/
2192
+		$wpdb->query(
2193
+			$wpdb->prepare(
2194
+				"DELETE FROM " . $table . " WHERE `post_id` = %d",
2195
+				array($deleted_postid)
2196
+			)
2197
+		);
2198
+
2199
+		/* Delete post map icons*/
2200
+
2201
+		$wpdb->query(
2202
+			$wpdb->prepare(
2203
+				"DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2204
+				array($deleted_postid)
2205
+			)
2206
+		);
2207
+
2208
+		/* Delete Attachments*/
2209
+		$postcurr_images = geodir_get_images($deleted_postid);
2210
+
2211
+		$wpdb->query(
2212
+			$wpdb->prepare(
2213
+				"DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2214
+				array($deleted_postid)
2215
+			)
2216
+		);
2217
+		geodir_remove_attachments($postcurr_images);
2218
+
2219
+	}
2220 2220
 }
2221 2221
 
2222 2222
 
2223 2223
 if (!function_exists('geodir_add_to_favorite')) {
2224
-    /**
2225
-     * This function would add listing to favorite listing.
2226
-     *
2227
-     * @since 1.0.0
2228
-     * @package GeoDirectory
2229
-     * @global object $current_user Current user object.
2230
-     * @param int $post_id The post ID.
2231
-     */
2232
-    function geodir_add_to_favorite($post_id)
2233
-    {
2234
-
2235
-        global $current_user;
2236
-
2237
-        /**
2238
-         * Filter to modify "Unfavorite" text
2239
-         *
2240
-         * You can use this filter to rename "Unfavorite" text to something else.
2241
-         *
2242
-         * @since 1.0.0
2243
-         * @package GeoDirectory
2244
-         */
2245
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2246
-
2247
-        /**
2248
-         * Filter to modify "Remove from Favorites" text
2249
-         *
2250
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2251
-         *
2252
-         * @since 1.0.0
2253
-         * @package GeoDirectory
2254
-         */
2255
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2256
-
2257
-        /**
2258
-         * Filter to modify "fa fa-heart" icon
2259
-         *
2260
-         * You can use this filter to change "fa fa-heart" icon to something else.
2261
-         *
2262
-         * @since 1.0.0
2263
-         * @package GeoDirectory
2264
-         */
2265
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2224
+	/**
2225
+	 * This function would add listing to favorite listing.
2226
+	 *
2227
+	 * @since 1.0.0
2228
+	 * @package GeoDirectory
2229
+	 * @global object $current_user Current user object.
2230
+	 * @param int $post_id The post ID.
2231
+	 */
2232
+	function geodir_add_to_favorite($post_id)
2233
+	{
2234
+
2235
+		global $current_user;
2236
+
2237
+		/**
2238
+		 * Filter to modify "Unfavorite" text
2239
+		 *
2240
+		 * You can use this filter to rename "Unfavorite" text to something else.
2241
+		 *
2242
+		 * @since 1.0.0
2243
+		 * @package GeoDirectory
2244
+		 */
2245
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2246
+
2247
+		/**
2248
+		 * Filter to modify "Remove from Favorites" text
2249
+		 *
2250
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2251
+		 *
2252
+		 * @since 1.0.0
2253
+		 * @package GeoDirectory
2254
+		 */
2255
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2256
+
2257
+		/**
2258
+		 * Filter to modify "fa fa-heart" icon
2259
+		 *
2260
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2261
+		 *
2262
+		 * @since 1.0.0
2263
+		 * @package GeoDirectory
2264
+		 */
2265
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2266
+
2267
+		$user_meta_data = array();
2268
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2269
+
2270
+		if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2271
+			$user_meta_data[] = $post_id;
2272
+		}
2273
+
2274
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2275
+
2276
+		/**
2277
+		 * Called before adding the post from favourites.
2278
+		 *
2279
+		 * @since 1.0.0
2280
+		 * @package GeoDirectory
2281
+		 * @param int $post_id The post ID.
2282
+		 */
2283
+		do_action('geodir_before_add_from_favorite', $post_id);
2284
+
2285
+		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>';
2286
+
2287
+		/**
2288
+		 * Called after adding the post from favourites.
2289
+		 *
2290
+		 * @since 1.0.0
2291
+		 * @package GeoDirectory
2292
+		 * @param int $post_id The post ID.
2293
+		 */
2294
+		do_action('geodir_after_add_from_favorite', $post_id);
2266 2295
 
2267
-        $user_meta_data = array();
2268
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2269
-
2270
-        if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
2271
-            $user_meta_data[] = $post_id;
2272
-        }
2273
-
2274
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2275
-
2276
-        /**
2277
-         * Called before adding the post from favourites.
2278
-         *
2279
-         * @since 1.0.0
2280
-         * @package GeoDirectory
2281
-         * @param int $post_id The post ID.
2282
-         */
2283
-        do_action('geodir_before_add_from_favorite', $post_id);
2284
-
2285
-        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>';
2286
-
2287
-        /**
2288
-         * Called after adding the post from favourites.
2289
-         *
2290
-         * @since 1.0.0
2291
-         * @package GeoDirectory
2292
-         * @param int $post_id The post ID.
2293
-         */
2294
-        do_action('geodir_after_add_from_favorite', $post_id);
2295
-
2296
-    }
2296
+	}
2297 2297
 }
2298 2298
 
2299 2299
 if (!function_exists('geodir_remove_from_favorite')) {
2300
-    /**
2301
-     * This function would remove the favourited property earlier.
2302
-     *
2303
-     * @since 1.0.0
2304
-     * @package GeoDirectory
2305
-     * @global object $current_user Current user object.
2306
-     * @param int $post_id The post ID.
2307
-     */
2308
-    function geodir_remove_from_favorite($post_id)
2309
-    {
2310
-        global $current_user;
2311
-
2312
-        /**
2313
-         * Filter to modify "Add to Favorites" text
2314
-         *
2315
-         * You can use this filter to rename "Add to Favorites" text to something else.
2316
-         *
2317
-         * @since 1.0.0
2318
-         * @package GeoDirectory
2319
-         */
2320
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2321
-
2322
-        /**
2323
-         * Filter to modify "Favourite" text
2324
-         *
2325
-         * You can use this filter to rename "Favourite" text to something else.
2326
-         *
2327
-         * @since 1.0.0
2328
-         * @package GeoDirectory
2329
-         */
2330
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2331
-
2332
-        /**
2333
-         * Filter to modify "fa fa-heart" icon
2334
-         *
2335
-         * You can use this filter to change "fa fa-heart" icon to something else.
2336
-         *
2337
-         * @since 1.0.0
2338
-         * @package GeoDirectory
2339
-         */
2340
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2341
-
2342
-        $user_meta_data = array();
2343
-        $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2344
-
2345
-        if (!empty($user_meta_data)) {
2300
+	/**
2301
+	 * This function would remove the favourited property earlier.
2302
+	 *
2303
+	 * @since 1.0.0
2304
+	 * @package GeoDirectory
2305
+	 * @global object $current_user Current user object.
2306
+	 * @param int $post_id The post ID.
2307
+	 */
2308
+	function geodir_remove_from_favorite($post_id)
2309
+	{
2310
+		global $current_user;
2311
+
2312
+		/**
2313
+		 * Filter to modify "Add to Favorites" text
2314
+		 *
2315
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2316
+		 *
2317
+		 * @since 1.0.0
2318
+		 * @package GeoDirectory
2319
+		 */
2320
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2321
+
2322
+		/**
2323
+		 * Filter to modify "Favourite" text
2324
+		 *
2325
+		 * You can use this filter to rename "Favourite" text to something else.
2326
+		 *
2327
+		 * @since 1.0.0
2328
+		 * @package GeoDirectory
2329
+		 */
2330
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2331
+
2332
+		/**
2333
+		 * Filter to modify "fa fa-heart" icon
2334
+		 *
2335
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2336
+		 *
2337
+		 * @since 1.0.0
2338
+		 * @package GeoDirectory
2339
+		 */
2340
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2341
+
2342
+		$user_meta_data = array();
2343
+		$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2344
+
2345
+		if (!empty($user_meta_data)) {
2346
+
2347
+			if (($key = array_search($post_id, $user_meta_data)) !== false) {
2348
+				unset($user_meta_data[$key]);
2349
+			}
2346 2350
 
2347
-            if (($key = array_search($post_id, $user_meta_data)) !== false) {
2348
-                unset($user_meta_data[$key]);
2349
-            }
2351
+		}
2350 2352
 
2351
-        }
2353
+		update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2352 2354
 
2353
-        update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data);
2355
+		/**
2356
+		 * Called before removing the post from favourites.
2357
+		 *
2358
+		 * @since 1.0.0
2359
+		 * @package GeoDirectory
2360
+		 * @param int $post_id The post ID.
2361
+		 */
2362
+		do_action('geodir_before_remove_from_favorite', $post_id);
2354 2363
 
2355
-        /**
2356
-         * Called before removing the post from favourites.
2357
-         *
2358
-         * @since 1.0.0
2359
-         * @package GeoDirectory
2360
-         * @param int $post_id The post ID.
2361
-         */
2362
-        do_action('geodir_before_remove_from_favorite', $post_id);
2364
+		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>';
2363 2365
 
2364
-        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>';
2366
+		/**
2367
+		 * Called after removing the post from favourites.
2368
+		 *
2369
+		 * @since 1.0.0
2370
+		 * @package GeoDirectory
2371
+		 * @param int $post_id The post ID.
2372
+		 */
2373
+		do_action('geodir_after_remove_from_favorite', $post_id);
2365 2374
 
2366
-        /**
2367
-         * Called after removing the post from favourites.
2368
-         *
2369
-         * @since 1.0.0
2370
-         * @package GeoDirectory
2371
-         * @param int $post_id The post ID.
2372
-         */
2373
-        do_action('geodir_after_remove_from_favorite', $post_id);
2374
-
2375
-    }
2375
+	}
2376 2376
 }
2377 2377
 
2378 2378
 if (!function_exists('geodir_favourite_html')) {
2379
-    /**
2380
-     * This function would display the html content for add to favorite or remove from favorite.
2381
-     *
2382
-     * @since 1.0.0
2383
-     * @package GeoDirectory
2384
-     * @global object $current_user Current user object.
2385
-     * @global object $post The current post object.
2386
-     * @param int $user_id The user ID.
2387
-     * @param int $post_id The post ID.
2388
-     */
2389
-    function geodir_favourite_html($user_id, $post_id)
2390
-    {
2391
-
2392
-        global $current_user, $post;
2393
-
2394
-        /**
2395
-         * Filter to modify "Add to Favorites" text
2396
-         *
2397
-         * You can use this filter to rename "Add to Favorites" text to something else.
2398
-         *
2399
-         * @since 1.0.0
2400
-         * @package GeoDirectory
2401
-         */
2402
-        $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2403
-
2404
-        /**
2405
-         * Filter to modify "Favourite" text
2406
-         *
2407
-         * You can use this filter to rename "Favourite" text to something else.
2408
-         *
2409
-         * @since 1.0.0
2410
-         * @package GeoDirectory
2411
-         */
2412
-        $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2413
-
2414
-        /**
2415
-         * Filter to modify "Unfavorite" text
2416
-         *
2417
-         * You can use this filter to rename "Unfavorite" text to something else.
2418
-         *
2419
-         * @since 1.0.0
2420
-         * @package GeoDirectory
2421
-         */
2422
-        $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2423
-
2424
-        /**
2425
-         * Filter to modify "Remove from Favorites" text
2426
-         *
2427
-         * You can use this filter to rename "Remove from Favorites" text to something else.
2428
-         *
2429
-         * @since 1.0.0
2430
-         * @package GeoDirectory
2431
-         */
2432
-        $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2433
-
2434
-        /**
2435
-         * Filter to modify "fa fa-heart" icon
2436
-         *
2437
-         * You can use this filter to change "fa fa-heart" icon to something else.
2438
-         *
2439
-         * @since 1.0.0
2440
-         * @package GeoDirectory
2441
-         */
2442
-        $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2443
-
2444
-        /**
2445
-         * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2446
-         *
2447
-         * You can use this filter to change "fa fa-heart" icon to something else.
2448
-         *
2449
-         * @since 1.0.0
2450
-         * @package GeoDirectory
2451
-         */
2452
-        $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2453
-
2454
-        $user_meta_data = '';
2455
-        if (isset($current_user->data->ID))
2456
-            $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2457
-
2458
-        if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2459
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2379
+	/**
2380
+	 * This function would display the html content for add to favorite or remove from favorite.
2381
+	 *
2382
+	 * @since 1.0.0
2383
+	 * @package GeoDirectory
2384
+	 * @global object $current_user Current user object.
2385
+	 * @global object $post The current post object.
2386
+	 * @param int $user_id The user ID.
2387
+	 * @param int $post_id The post ID.
2388
+	 */
2389
+	function geodir_favourite_html($user_id, $post_id)
2390
+	{
2391
+
2392
+		global $current_user, $post;
2393
+
2394
+		/**
2395
+		 * Filter to modify "Add to Favorites" text
2396
+		 *
2397
+		 * You can use this filter to rename "Add to Favorites" text to something else.
2398
+		 *
2399
+		 * @since 1.0.0
2400
+		 * @package GeoDirectory
2401
+		 */
2402
+		$add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
2403
+
2404
+		/**
2405
+		 * Filter to modify "Favourite" text
2406
+		 *
2407
+		 * You can use this filter to rename "Favourite" text to something else.
2408
+		 *
2409
+		 * @since 1.0.0
2410
+		 * @package GeoDirectory
2411
+		 */
2412
+		$favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
2413
+
2414
+		/**
2415
+		 * Filter to modify "Unfavorite" text
2416
+		 *
2417
+		 * You can use this filter to rename "Unfavorite" text to something else.
2418
+		 *
2419
+		 * @since 1.0.0
2420
+		 * @package GeoDirectory
2421
+		 */
2422
+		$remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
2423
+
2424
+		/**
2425
+		 * Filter to modify "Remove from Favorites" text
2426
+		 *
2427
+		 * You can use this filter to rename "Remove from Favorites" text to something else.
2428
+		 *
2429
+		 * @since 1.0.0
2430
+		 * @package GeoDirectory
2431
+		 */
2432
+		$unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
2433
+
2434
+		/**
2435
+		 * Filter to modify "fa fa-heart" icon
2436
+		 *
2437
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2438
+		 *
2439
+		 * @since 1.0.0
2440
+		 * @package GeoDirectory
2441
+		 */
2442
+		$favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
2443
+
2444
+		/**
2445
+		 * Filter to modify "fa fa-heart" icon for "remove from favorites" link
2446
+		 *
2447
+		 * You can use this filter to change "fa fa-heart" icon to something else.
2448
+		 *
2449
+		 * @since 1.0.0
2450
+		 * @package GeoDirectory
2451
+		 */
2452
+		$unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
2453
+
2454
+		$user_meta_data = '';
2455
+		if (isset($current_user->data->ID))
2456
+			$user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2457
+
2458
+		if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2459
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2460 2460
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2461 2461
                 onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2462 2462
                 title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2463 2463
             </a>   </span><?php
2464 2464
 
2465
-        } else {
2465
+		} else {
2466 2466
 
2467
-            if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2468
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2469
-            } else
2470
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2467
+			if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2468
+				$script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2469
+			} else
2470
+				$script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2471 2471
 
2472
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2472
+			?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2473 2473
                                                                                         href="javascript:void(0);"
2474 2474
                                                                                         onclick="<?php echo $script_text;?>"
2475 2475
                                                                                         title="<?php echo $add_favourite_text;?>"><i
2476 2476
                     class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2477 2477
         <?php }
2478
-    }
2478
+	}
2479 2479
 }
2480 2480
 
2481 2481
 
@@ -2492,54 +2492,54 @@  discard block
 block discarded – undo
2492 2492
 function geodir_get_cat_postcount($term = array())
2493 2493
 {
2494 2494
 
2495
-    if (!empty($term)) {
2495
+	if (!empty($term)) {
2496 2496
 
2497
-        global $wpdb, $plugin_prefix;
2497
+		global $wpdb, $plugin_prefix;
2498 2498
 
2499
-        $where = '';
2500
-        $join = '';
2501
-        if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2502
-            $taxonomy_obj = get_taxonomy($term->taxonomy);
2499
+		$where = '';
2500
+		$join = '';
2501
+		if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
2502
+			$taxonomy_obj = get_taxonomy($term->taxonomy);
2503 2503
 
2504
-            $post_type = $taxonomy_obj->object_type[0];
2504
+			$post_type = $taxonomy_obj->object_type[0];
2505 2505
 
2506
-            $table = $plugin_prefix . $post_type . '_detail';
2506
+			$table = $plugin_prefix . $post_type . '_detail';
2507 2507
 
2508
-            /**
2509
-             * Filter to modify the 'join' query
2510
-             *
2511
-             * @since 1.0.0
2512
-             * @package GeoDirectory
2513
-             * @param object|array $term category / term object that need to be processed.
2514
-             * @param string $join The join query.
2515
-             */
2516
-            $join = apply_filters('geodir_cat_post_count_join', $join, $term);
2508
+			/**
2509
+			 * Filter to modify the 'join' query
2510
+			 *
2511
+			 * @since 1.0.0
2512
+			 * @package GeoDirectory
2513
+			 * @param object|array $term category / term object that need to be processed.
2514
+			 * @param string $join The join query.
2515
+			 */
2516
+			$join = apply_filters('geodir_cat_post_count_join', $join, $term);
2517 2517
 
2518
-            /**
2519
-             * Filter to modify the 'where' query
2520
-             *
2521
-             * @since 1.0.0
2522
-             * @package GeoDirectory
2523
-             * @param object|array $term category / term object that need to be processed.
2524
-             * @param string $where The where query.
2525
-             */
2526
-            $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2518
+			/**
2519
+			 * Filter to modify the 'where' query
2520
+			 *
2521
+			 * @since 1.0.0
2522
+			 * @package GeoDirectory
2523
+			 * @param object|array $term category / term object that need to be processed.
2524
+			 * @param string $where The where query.
2525
+			 */
2526
+			$where = apply_filters('geodir_cat_post_count_where', $where, $term);
2527 2527
 
2528
-            $count_query = "SELECT count(post_id) FROM
2528
+			$count_query = "SELECT count(post_id) FROM
2529 2529
 							" . $table . " as pd " . $join . "
2530 2530
 							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2531 2531
 
2532
-            $cat_post_count = $wpdb->get_var($count_query);
2533
-            if (empty($cat_post_count) || is_wp_error($cat_post_count))
2534
-                $cat_post_count = 0;
2532
+			$cat_post_count = $wpdb->get_var($count_query);
2533
+			if (empty($cat_post_count) || is_wp_error($cat_post_count))
2534
+				$cat_post_count = 0;
2535 2535
 
2536
-            return $cat_post_count;
2536
+			return $cat_post_count;
2537 2537
 
2538
-        } else
2538
+		} else
2539 2539
 
2540
-            return $term->count;
2541
-    }
2542
-    return false;
2540
+			return $term->count;
2541
+	}
2542
+	return false;
2543 2543
 
2544 2544
 }
2545 2545
 
@@ -2552,17 +2552,17 @@  discard block
 block discarded – undo
2552 2552
  */
2553 2553
 function geodir_allow_post_type_frontend()
2554 2554
 {
2555
-    $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2555
+	$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2556 2556
 
2557
-    if (!is_admin() && isset($_REQUEST['listing_type'])
2558
-        && !empty($geodir_allow_posttype_frontend)
2559
-        && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2560
-    ) {
2557
+	if (!is_admin() && isset($_REQUEST['listing_type'])
2558
+		&& !empty($geodir_allow_posttype_frontend)
2559
+		&& !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend)
2560
+	) {
2561 2561
 
2562
-        wp_redirect(home_url());
2563
-        exit;
2562
+		wp_redirect(home_url());
2563
+		exit;
2564 2564
 
2565
-    }
2565
+	}
2566 2566
 
2567 2567
 }
2568 2568
 
@@ -2579,20 +2579,20 @@  discard block
 block discarded – undo
2579 2579
  */
2580 2580
 function geodir_excerpt_length($length)
2581 2581
 {
2582
-    global $wp_query, $geodir_is_widget_listing;
2582
+	global $wp_query, $geodir_is_widget_listing;
2583 2583
 	if ($geodir_is_widget_listing) {
2584 2584
 		return $length;
2585 2585
 	}
2586 2586
 	
2587
-    if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2588
-        $length = get_option('geodir_desc_word_limit');
2589
-    elseif (get_query_var('excerpt_length'))
2590
-        $length = get_query_var('excerpt_length');
2587
+	if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
2588
+		$length = get_option('geodir_desc_word_limit');
2589
+	elseif (get_query_var('excerpt_length'))
2590
+		$length = get_query_var('excerpt_length');
2591 2591
 
2592
-    if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2593
-        $length = get_option('geodir_author_desc_word_limit');
2592
+	if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
2593
+		$length = get_option('geodir_author_desc_word_limit');
2594 2594
 
2595
-    return $length;
2595
+	return $length;
2596 2596
 }
2597 2597
 
2598 2598
 /**
@@ -2607,13 +2607,13 @@  discard block
 block discarded – undo
2607 2607
  */
2608 2608
 function geodir_excerpt_more($more)
2609 2609
 {
2610
-    global $post;
2611
-    $all_postypes = geodir_get_posttypes();
2612
-    if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2613
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2614
-    }
2610
+	global $post;
2611
+	$all_postypes = geodir_get_posttypes();
2612
+	if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2613
+		return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2614
+	}
2615 2615
 
2616
-    return $more;
2616
+	return $more;
2617 2617
 }
2618 2618
 
2619 2619
 
@@ -2630,63 +2630,63 @@  discard block
 block discarded – undo
2630 2630
  */
2631 2631
 function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy)
2632 2632
 {
2633
-    global $plugin_prefix, $wpdb;
2633
+	global $plugin_prefix, $wpdb;
2634 2634
 
2635
-    $gd_taxonomies = geodir_get_taxonomies();
2635
+	$gd_taxonomies = geodir_get_taxonomies();
2636 2636
 
2637
-    if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2637
+	if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2638 2638
 
2639
-        $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2640
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2639
+		$geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2640
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
2641 2641
 
2642
-        $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2643
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2642
+		$path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2643
+		$term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2644 2644
 
2645
-        $posts = $wpdb->get_results(
2646
-            $wpdb->prepare(
2647
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2648
-                array($term_id, $taxonomy)
2649
-            )
2650
-        );
2645
+		$posts = $wpdb->get_results(
2646
+			$wpdb->prepare(
2647
+				"SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2648
+				array($term_id, $taxonomy)
2649
+			)
2650
+		);
2651 2651
 
2652
-        if (!empty($posts)):
2653
-            foreach ($posts as $post_obj) {
2652
+		if (!empty($posts)):
2653
+			foreach ($posts as $post_obj) {
2654 2654
 
2655
-                $lat = $post_obj->post_latitude;
2656
-                $lng = $post_obj->post_longitude;
2655
+				$lat = $post_obj->post_latitude;
2656
+				$lng = $post_obj->post_longitude;
2657 2657
 
2658
-                $json = '{';
2659
-                $json .= '"id":"' . $post_obj->post_id . '",';
2660
-                $json .= '"lat_pos": "' . $lat . '",';
2661
-                $json .= '"long_pos": "' . $lng . '",';
2662
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2663
-                $json .= '"icon":"' . $term_icon . '",';
2664
-                $json .= '"group":"catgroup' . $term_id . '"';
2665
-                $json .= '}';
2658
+				$json = '{';
2659
+				$json .= '"id":"' . $post_obj->post_id . '",';
2660
+				$json .= '"lat_pos": "' . $lat . '",';
2661
+				$json .= '"long_pos": "' . $lng . '",';
2662
+				$json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2663
+				$json .= '"icon":"' . $term_icon . '",';
2664
+				$json .= '"group":"catgroup' . $term_id . '"';
2665
+				$json .= '}';
2666 2666
 
2667
-                if ($post_obj->default_category == $term_id) {
2667
+				if ($post_obj->default_category == $term_id) {
2668 2668
 
2669
-                    $wpdb->query(
2670
-                        $wpdb->prepare(
2671
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2672
-                            array($json, $post_obj->post_id)
2673
-                        )
2674
-                    );
2675
-                }
2669
+					$wpdb->query(
2670
+						$wpdb->prepare(
2671
+							"UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2672
+							array($json, $post_obj->post_id)
2673
+						)
2674
+					);
2675
+				}
2676 2676
 
2677
-                $wpdb->query(
2678
-                    $wpdb->prepare(
2679
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2680
-                        array($json, $post_obj->post_id, $term_id)
2681
-                    )
2682
-                );
2677
+				$wpdb->query(
2678
+					$wpdb->prepare(
2679
+						"UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2680
+						array($json, $post_obj->post_id, $term_id)
2681
+					)
2682
+				);
2683 2683
 
2684
-            }
2684
+			}
2685 2685
 
2686 2686
 
2687
-        endif;
2687
+		endif;
2688 2688
 
2689
-    }
2689
+	}
2690 2690
 
2691 2691
 }
2692 2692
 
@@ -2700,14 +2700,14 @@  discard block
 block discarded – undo
2700 2700
  */
2701 2701
 function geodir_get_listing_author($listing_id = '')
2702 2702
 {
2703
-    if ($listing_id == '') {
2704
-        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2705
-            $listing_id = $_REQUEST['pid'];
2706
-        }
2707
-    }
2708
-    $listing = get_post(strip_tags($listing_id));
2709
-    $listing_author_id = $listing->post_author;
2710
-    return $listing_author_id;
2703
+	if ($listing_id == '') {
2704
+		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2705
+			$listing_id = $_REQUEST['pid'];
2706
+		}
2707
+	}
2708
+	$listing = get_post(strip_tags($listing_id));
2709
+	$listing_author_id = $listing->post_author;
2710
+	return $listing_author_id;
2711 2711
 }
2712 2712
 
2713 2713
 
@@ -2722,11 +2722,11 @@  discard block
 block discarded – undo
2722 2722
  */
2723 2723
 function geodir_lisiting_belong_to_user($listing_id, $user_id)
2724 2724
 {
2725
-    $listing_author_id = geodir_get_listing_author($listing_id);
2726
-    if ($listing_author_id == $user_id)
2727
-        return true;
2728
-    else
2729
-        return false;
2725
+	$listing_author_id = geodir_get_listing_author($listing_id);
2726
+	if ($listing_author_id == $user_id)
2727
+		return true;
2728
+	else
2729
+		return false;
2730 2730
 
2731 2731
 }
2732 2732
 
@@ -2742,17 +2742,17 @@  discard block
 block discarded – undo
2742 2742
  */
2743 2743
 function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true)
2744 2744
 {
2745
-    global $current_user;
2746
-    if ($exclude_admin) {
2747
-        foreach ($current_user->caps as $key => $caps) {
2748
-            if (geodir_strtolower($key) == 'administrator') {
2749
-                return true;
2750
-                break;
2751
-            }
2752
-        }
2753
-    }
2754
-
2755
-    return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2745
+	global $current_user;
2746
+	if ($exclude_admin) {
2747
+		foreach ($current_user->caps as $key => $caps) {
2748
+			if (geodir_strtolower($key) == 'administrator') {
2749
+				return true;
2750
+				break;
2751
+			}
2752
+		}
2753
+	}
2754
+
2755
+	return geodir_lisiting_belong_to_user($listing_id, $current_user->ID);
2756 2756
 }
2757 2757
 
2758 2758
 
@@ -2768,17 +2768,17 @@  discard block
 block discarded – undo
2768 2768
 function geodir_only_supportable_attachments_remove($file)
2769 2769
 {
2770 2770
 
2771
-    global $wpdb;
2771
+	global $wpdb;
2772 2772
 
2773
-    $matches = array();
2773
+	$matches = array();
2774 2774
 
2775
-    $pattern = '/-\d+x\d+\./';
2776
-    preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2775
+	$pattern = '/-\d+x\d+\./';
2776
+	preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE);
2777 2777
 
2778
-    if (empty($matches))
2779
-        return '';
2780
-    else
2781
-        return $file;
2778
+	if (empty($matches))
2779
+		return '';
2780
+	else
2781
+		return $file;
2782 2782
 
2783 2783
 }
2784 2784
 
@@ -2795,78 +2795,78 @@  discard block
 block discarded – undo
2795 2795
 function geodir_set_wp_featured_image($post_id)
2796 2796
 {
2797 2797
 
2798
-    global $wpdb, $plugin_prefix;
2799
-    $uploads = wp_upload_dir();
2798
+	global $wpdb, $plugin_prefix;
2799
+	$uploads = wp_upload_dir();
2800 2800
 //	print_r($uploads ) ;
2801
-    $post_first_image = $wpdb->get_results(
2802
-        $wpdb->prepare(
2803
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2804
-        )
2805
-    );
2801
+	$post_first_image = $wpdb->get_results(
2802
+		$wpdb->prepare(
2803
+			"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2804
+		)
2805
+	);
2806 2806
 
2807
-    $old_attachment_name = '';
2808
-    $post_thumbnail_id = '';
2809
-    if (has_post_thumbnail($post_id)) {
2807
+	$old_attachment_name = '';
2808
+	$post_thumbnail_id = '';
2809
+	if (has_post_thumbnail($post_id)) {
2810 2810
 
2811
-        if (has_post_thumbnail($post_id)) {
2811
+		if (has_post_thumbnail($post_id)) {
2812 2812
 
2813
-            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2813
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
2814 2814
 
2815
-            $old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2815
+			$old_attachment_name = basename(get_attached_file($post_thumbnail_id));
2816 2816
 
2817
-        }
2818
-    }
2819
-
2820
-    if (!empty($post_first_image)) {
2817
+		}
2818
+	}
2821 2819
 
2822
-        $post_type = get_post_type($post_id);
2820
+	if (!empty($post_first_image)) {
2823 2821
 
2824
-        $table_name = $plugin_prefix . $post_type . '_detail';
2822
+		$post_type = get_post_type($post_id);
2825 2823
 
2826
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2824
+		$table_name = $plugin_prefix . $post_type . '_detail';
2827 2825
 
2828
-        $new_attachment_name = basename($post_first_image[0]->file);
2826
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2829 2827
 
2830
-        if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2828
+		$new_attachment_name = basename($post_first_image[0]->file);
2831 2829
 
2832
-            if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2830
+		if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
2833 2831
 
2834
-                add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2832
+			if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
2835 2833
 
2836
-                wp_delete_attachment($post_thumbnail_id);
2834
+				add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
2837 2835
 
2838
-            }
2839
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2836
+				wp_delete_attachment($post_thumbnail_id);
2840 2837
 
2841
-            $attachment = array(
2842
-                'post_mime_type' => $post_first_image[0]->mime_type,
2843
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2844
-                'post_parent' => $post_id,
2845
-                'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2846
-                'post_content' => ''
2847
-            );
2838
+			}
2839
+			$filename = $uploads['basedir'] . $post_first_image[0]->file;
2840
+
2841
+			$attachment = array(
2842
+				'post_mime_type' => $post_first_image[0]->mime_type,
2843
+				'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2844
+				'post_parent' => $post_id,
2845
+				'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2846
+				'post_content' => ''
2847
+			);
2848 2848
 
2849 2849
 
2850
-            $id = wp_insert_attachment($attachment, $filename, $post_id);
2850
+			$id = wp_insert_attachment($attachment, $filename, $post_id);
2851 2851
 
2852
-            if (!is_wp_error($id)) {
2852
+			if (!is_wp_error($id)) {
2853 2853
 
2854
-                set_post_thumbnail($post_id, $id);
2854
+				set_post_thumbnail($post_id, $id);
2855 2855
 
2856
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2857
-                wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2856
+				require_once(ABSPATH . 'wp-admin/includes/image.php');
2857
+				wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2858 2858
 
2859
-            }
2859
+			}
2860 2860
 
2861
-        }
2861
+		}
2862 2862
 
2863
-    } else {
2864
-        //set_post_thumbnail($post_id,-1);
2863
+	} else {
2864
+		//set_post_thumbnail($post_id,-1);
2865 2865
 
2866
-        if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2867
-            wp_delete_attachment($post_thumbnail_id);
2866
+		if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete'))
2867
+			wp_delete_attachment($post_thumbnail_id);
2868 2868
 
2869
-    }
2869
+	}
2870 2870
 }
2871 2871
 
2872 2872
 
@@ -2881,53 +2881,53 @@  discard block
 block discarded – undo
2881 2881
  */
2882 2882
 function gd_copy_original_translation()
2883 2883
 {
2884
-    if (function_exists('icl_object_id')) {
2885
-        global $wpdb, $table_prefix, $plugin_prefix;
2886
-        $post_id = absint($_POST['post_id']);
2887
-        $upload_dir = wp_upload_dir();
2888
-        $post_type = get_post_type($_POST['post_id']);
2889
-        $table = $plugin_prefix . $post_type . '_detail';
2890
-
2891
-        $post_arr = $wpdb->get_results($wpdb->prepare(
2892
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2893
-            array($post_id)
2894
-        )
2895
-            , ARRAY_A);
2896
-
2897
-        $arrImages = $wpdb->get_results(
2898
-            $wpdb->prepare(
2899
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2900
-                array('%image%', $post_id)
2901
-            )
2902
-        );
2903
-        if ($arrImages) {
2904
-            $image_arr = array();
2905
-            foreach ($arrImages as $img) {
2906
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2907
-            }
2908
-            $comma_separated = implode(",", $image_arr);
2909
-            $post_arr[0]['post_images'] = $comma_separated;
2910
-        }
2911
-
2912
-
2913
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2914
-        $cat_arr = array_filter(explode(",", $cats));
2915
-        $trans_cat = array();
2916
-        foreach ($cat_arr as $cat) {
2917
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2918
-        }
2919
-
2920
-
2921
-        $post_arr[0]['categories'] = array_filter($trans_cat);
2884
+	if (function_exists('icl_object_id')) {
2885
+		global $wpdb, $table_prefix, $plugin_prefix;
2886
+		$post_id = absint($_POST['post_id']);
2887
+		$upload_dir = wp_upload_dir();
2888
+		$post_type = get_post_type($_POST['post_id']);
2889
+		$table = $plugin_prefix . $post_type . '_detail';
2890
+
2891
+		$post_arr = $wpdb->get_results($wpdb->prepare(
2892
+			"SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2893
+			array($post_id)
2894
+		)
2895
+			, ARRAY_A);
2896
+
2897
+		$arrImages = $wpdb->get_results(
2898
+			$wpdb->prepare(
2899
+				"SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2900
+				array('%image%', $post_id)
2901
+			)
2902
+		);
2903
+		if ($arrImages) {
2904
+			$image_arr = array();
2905
+			foreach ($arrImages as $img) {
2906
+				$image_arr[] = $upload_dir['baseurl'] . $img->file;
2907
+			}
2908
+			$comma_separated = implode(",", $image_arr);
2909
+			$post_arr[0]['post_images'] = $comma_separated;
2910
+		}
2911
+
2912
+
2913
+		$cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2914
+		$cat_arr = array_filter(explode(",", $cats));
2915
+		$trans_cat = array();
2916
+		foreach ($cat_arr as $cat) {
2917
+			$trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2918
+		}
2919
+
2920
+
2921
+		$post_arr[0]['categories'] = array_filter($trans_cat);
2922 2922
 //print_r($image_arr);
2923
-        //print_r($arrImages);
2924
-        //echo $_REQUEST['lang'];
2923
+		//print_r($arrImages);
2924
+		//echo $_REQUEST['lang'];
2925 2925
 //print_r($post_arr);
2926 2926
 //print_r($trans_cat);
2927
-        echo json_encode($post_arr[0]);
2927
+		echo json_encode($post_arr[0]);
2928 2928
 
2929
-    }
2930
-    die();
2929
+	}
2930
+	die();
2931 2931
 }
2932 2932
 
2933 2933
 
@@ -2947,54 +2947,54 @@  discard block
 block discarded – undo
2947 2947
 function geodir_get_custom_fields_type($listing_type = '')
2948 2948
 {
2949 2949
 
2950
-    global $wpdb;
2950
+	global $wpdb;
2951 2951
 
2952
-    if ($listing_type == '')
2953
-        $listing_type = 'gd_place';
2952
+	if ($listing_type == '')
2953
+		$listing_type = 'gd_place';
2954 2954
 
2955
-    $fields_info = array();
2955
+	$fields_info = array();
2956 2956
 
2957
-    $get_data = $wpdb->get_results(
2958
-        $wpdb->prepare(
2959
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2960
-            array($listing_type)
2961
-        )
2962
-    );
2957
+	$get_data = $wpdb->get_results(
2958
+		$wpdb->prepare(
2959
+			"SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2960
+			array($listing_type)
2961
+		)
2962
+	);
2963 2963
 
2964
-    if (!empty($get_data)) {
2964
+	if (!empty($get_data)) {
2965 2965
 
2966
-        foreach ($get_data as $data) {
2966
+		foreach ($get_data as $data) {
2967 2967
 
2968
-            if ($data->field_type == 'address') {
2968
+			if ($data->field_type == 'address') {
2969 2969
 
2970
-                $extra_fields = unserialize($data->extra_fields);
2970
+				$extra_fields = unserialize($data->extra_fields);
2971 2971
 
2972
-                $prefix = $data->htmlvar_name . '_';
2972
+				$prefix = $data->htmlvar_name . '_';
2973 2973
 
2974
-                $fields_info[$prefix . 'address'] = $data->field_type;
2974
+				$fields_info[$prefix . 'address'] = $data->field_type;
2975 2975
 
2976
-                if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2977
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
2976
+				if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2977
+					$fields_info[$prefix . 'zip'] = $data->field_type;
2978 2978
 
2979
-            } else {
2979
+			} else {
2980 2980
 
2981
-                $fields_info[$data->htmlvar_name] = $data->field_type;
2981
+				$fields_info[$data->htmlvar_name] = $data->field_type;
2982 2982
 
2983
-            }
2983
+			}
2984 2984
 
2985
-        }
2985
+		}
2986 2986
 
2987
-    }
2987
+	}
2988 2988
 
2989
-    /**
2990
-     * Filter to modify custom fields info using listing post type.
2991
-     *
2992
-     * @since 1.0.0
2993
-     * @package GeoDirectory
2994
-     * @return array $fields_info Custom fields info.
2995
-     * @param string $listing_type The listing post type.
2996
-     */
2997
-    return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
2989
+	/**
2990
+	 * Filter to modify custom fields info using listing post type.
2991
+	 *
2992
+	 * @since 1.0.0
2993
+	 * @package GeoDirectory
2994
+	 * @return array $fields_info Custom fields info.
2995
+	 * @param string $listing_type The listing post type.
2996
+	 */
2997
+	return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
2998 2998
 }
2999 2999
 
3000 3000
 
@@ -3009,58 +3009,58 @@  discard block
 block discarded – undo
3009 3009
  */
3010 3010
 function geodir_function_post_updated($post_ID, $post_after, $post_before)
3011 3011
 {
3012
-    $post_type = get_post_type($post_ID);
3012
+	$post_type = get_post_type($post_ID);
3013 3013
 
3014
-    if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3015
-        // send notification to client when post moves from draft to publish
3016
-        if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3017
-            $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3018
-            $post_author_data = get_userdata($post_author_id);
3014
+	if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
3015
+		// send notification to client when post moves from draft to publish
3016
+		if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
3017
+			$post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL;
3018
+			$post_author_data = get_userdata($post_author_id);
3019 3019
 
3020
-            $to_name = geodir_get_client_name($post_author_id);
3020
+			$to_name = geodir_get_client_name($post_author_id);
3021 3021
 
3022
-            $from_email = geodir_get_site_email_id();
3023
-            $from_name = get_site_emailName();
3024
-            $to_email = $post_author_data->user_email;
3022
+			$from_email = geodir_get_site_email_id();
3023
+			$from_name = get_site_emailName();
3024
+			$to_email = $post_author_data->user_email;
3025 3025
 
3026
-            if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3027
-                $to_email = $post_author_data->user_email;
3028
-            }
3026
+			if (!is_email($to_email) && !empty($post_author_data->user_email)) {
3027
+				$to_email = $post_author_data->user_email;
3028
+			}
3029 3029
 
3030
-            $message_type = 'listing_published';
3030
+			$message_type = 'listing_published';
3031 3031
 
3032
-            if (get_option('geodir_post_published_email_subject') == '') {
3033
-                update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3034
-            }
3032
+			if (get_option('geodir_post_published_email_subject') == '') {
3033
+				update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
3034
+			}
3035 3035
 
3036
-            if (get_option('geodir_post_published_email_content') == '') {
3037
-                update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3038
-            }
3036
+			if (get_option('geodir_post_published_email_content') == '') {
3037
+				update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
3038
+			}
3039 3039
 
3040
-            /**
3041
-             * Called before sending the email when listing gets published.
3042
-             *
3043
-             * @since 1.0.0
3044
-             * @package GeoDirectory
3045
-             * @param object $post_after The post object after update.
3046
-             * @param object $post_before The post object before update.
3047
-             */
3048
-            do_action('geodir_before_listing_published_email', $post_after, $post_before);
3049
-            if (is_email($to_email)) {
3050
-                geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3051
-            }
3040
+			/**
3041
+			 * Called before sending the email when listing gets published.
3042
+			 *
3043
+			 * @since 1.0.0
3044
+			 * @package GeoDirectory
3045
+			 * @param object $post_after The post object after update.
3046
+			 * @param object $post_before The post object before update.
3047
+			 */
3048
+			do_action('geodir_before_listing_published_email', $post_after, $post_before);
3049
+			if (is_email($to_email)) {
3050
+				geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
3051
+			}
3052 3052
 
3053
-            /**
3054
-             * Called after sending the email when listing gets published.
3055
-             *
3056
-             * @since 1.0.0
3057
-             * @package GeoDirectory
3058
-             * @param object $post_after The post object after update.
3059
-             * @param object $post_before The post object before update.
3060
-             */
3061
-            do_action('geodir_after_listing_published_email', $post_after, $post_before);
3062
-        }
3063
-    }
3053
+			/**
3054
+			 * Called after sending the email when listing gets published.
3055
+			 *
3056
+			 * @since 1.0.0
3057
+			 * @package GeoDirectory
3058
+			 * @param object $post_after The post object after update.
3059
+			 * @param object $post_before The post object before update.
3060
+			 */
3061
+			do_action('geodir_after_listing_published_email', $post_after, $post_before);
3062
+		}
3063
+	}
3064 3064
 }
3065 3065
 
3066 3066
 add_action('wp_head', 'geodir_fb_like_thumbnail');
@@ -3074,14 +3074,14 @@  discard block
 block discarded – undo
3074 3074
  */
3075 3075
 function geodir_fb_like_thumbnail(){
3076 3076
 
3077
-    // return if not a single post
3078
-    if(!is_single()){return;}
3077
+	// return if not a single post
3078
+	if(!is_single()){return;}
3079 3079
 
3080
-    global $post;
3081
-    if(isset($post->featured_image) && $post->featured_image){
3082
-        $upload_dir = wp_upload_dir();
3083
-        $thumb = $upload_dir['baseurl'].$post->featured_image;
3084
-        echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3080
+	global $post;
3081
+	if(isset($post->featured_image) && $post->featured_image){
3082
+		$upload_dir = wp_upload_dir();
3083
+		$thumb = $upload_dir['baseurl'].$post->featured_image;
3084
+		echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
3085 3085
 
3086
-    }
3086
+	}
3087 3087
 }
3088 3088
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +204 added lines, -204 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
 
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
         $send_post_submit_mail = false;
228 228
 
229 229
         // unhook this function so it doesn't loop infinitely
230
-        remove_action('save_post', 'geodir_post_information_save',10,2);
230
+        remove_action('save_post', 'geodir_post_information_save', 10, 2);
231 231
 
232 232
         if (isset($request_info['pid']) && $request_info['pid'] != '') {
233 233
             $post['ID'] = $request_info['pid'];
@@ -251,13 +251,13 @@  discard block
 block discarded – undo
251 251
         }
252 252
 
253 253
         // re-hook this function
254
-        add_action('save_post', 'geodir_post_information_save',10,2);
254
+        add_action('save_post', 'geodir_post_information_save', 10, 2);
255 255
 
256 256
         $post_tags = '';
257 257
         if (!isset($request_info['post_tags'])) {
258 258
 
259 259
             $post_type = $request_info['listing_type'];
260
-            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
260
+            $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names')));
261 261
 
262 262
         }
263 263
 
@@ -275,13 +275,13 @@  discard block
 block discarded – undo
275 275
         $payment_info = array();
276 276
         $package_info = array();
277 277
 
278
-        $package_info = (array)geodir_post_package_info($package_info, $post);
278
+        $package_info = (array) geodir_post_package_info($package_info, $post);
279 279
 
280 280
         $post_package_id = geodir_get_post_meta($last_post_id, 'package_id');
281 281
 
282 282
         if (!empty($package_info) && !$post_package_id) {
283 283
             if (isset($package_info['days']) && $package_info['days'] != 0) {
284
-                $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
284
+                $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days"));
285 285
             } else {
286 286
                 $payment_info['expire_date'] = 'Never';
287 287
             }
@@ -302,8 +302,8 @@  discard block
 block discarded – undo
302 302
             $extrafields = $val['extra_fields'];
303 303
 
304 304
             if (trim($type) == 'address') {
305
-                $prefix = $name . '_';
306
-                $address = $prefix . 'address';
305
+                $prefix = $name.'_';
306
+                $address = $prefix.'address';
307 307
 
308 308
                 if (isset($request_info[$address]) && $request_info[$address] != '') {
309 309
                     $gd_post_info[$address] = wp_slash($request_info[$address]);
@@ -313,59 +313,59 @@  discard block
 block discarded – undo
313 313
                     $extrafields = unserialize($extrafields);
314 314
 
315 315
 
316
-                    if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
316
+                    if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') {
317 317
 
318 318
                         $location_result = geodir_get_default_location();
319 319
 
320
-                        $gd_post_info[$prefix . 'city'] = $location_result->city;
321
-                        $gd_post_info[$prefix . 'region'] = $location_result->region;
322
-                        $gd_post_info[$prefix . 'country'] = $location_result->country;
320
+                        $gd_post_info[$prefix.'city'] = $location_result->city;
321
+                        $gd_post_info[$prefix.'region'] = $location_result->region;
322
+                        $gd_post_info[$prefix.'country'] = $location_result->country;
323 323
 
324
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
324
+                        $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location
325 325
 
326 326
                     } else {
327 327
 
328
-                        $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city'];
329
-                        $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region'];
330
-                        $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country'];
328
+                        $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city'];
329
+                        $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region'];
330
+                        $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country'];
331 331
 
332 332
                         //----------set post locations when import dummy data-------
333 333
                         $location_result = geodir_get_default_location();
334 334
 
335
-                        $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location
335
+                        $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location
336 336
                         //-----------------------------------------------------------------
337 337
 
338 338
                     }
339 339
 
340 340
 
341
-                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
342
-                        $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip'];
341
+                    if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) {
342
+                        $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip'];
343 343
                     }
344 344
 
345 345
 
346 346
                     if (isset($extrafields['show_map']) && $extrafields['show_map']) {
347 347
 
348
-                        if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
349
-                            $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude'];
348
+                        if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') {
349
+                            $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude'];
350 350
                         }
351 351
 
352
-                        if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
353
-                            $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude'];
352
+                        if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') {
353
+                            $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude'];
354 354
                         }
355 355
 
356
-                        if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
357
-                            $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview'];
356
+                        if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') {
357
+                            $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview'];
358 358
                         }
359 359
 
360
-                        if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
361
-                            $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom'];
360
+                        if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') {
361
+                            $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom'];
362 362
                         }
363 363
 
364 364
                     }
365 365
 
366 366
                     // show lat lng
367
-                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
368
-                        $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng'];
367
+                    if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) {
368
+                        $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng'];
369 369
                     }
370 370
                 }
371 371
 
@@ -390,16 +390,16 @@  discard block
 block discarded – undo
390 390
 
391 391
                     // check if we need to change the format or not
392 392
                     $date_format_len = strlen(str_replace(' ', '', $date_format));
393
-                    if($date_format_len>5){// if greater then 5 then it's the old style format.
393
+                    if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
394 394
 
395
-                        $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
396
-                        $replace = array('d','j','l','m','n','F','Y');//PHP date format
395
+                        $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
396
+                        $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
397 397
 
398 398
                         $date_format = str_replace($search, $replace, $date_format);
399 399
 
400 400
                         $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
401 401
 
402
-                    }else{
402
+                    } else {
403 403
                         $post_htmlvar_value = $request_info[$name];
404 404
                     }
405 405
 
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
                 if (isset($request_info[$name])) {
415 415
                     $gd_post_info[$name] = $request_info[$name];
416 416
                 } else {
417
-                    if (isset($request_info['gd_field_' . $name])) {
417
+                    if (isset($request_info['gd_field_'.$name])) {
418 418
                         $gd_post_info[$name] = ''; /* fix de-select for multiselect */
419 419
                     }
420 420
                 }
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
         }
475 475
 
476 476
         if (is_array($post_tags)) {
477
-            $taxonomy = $request_info['listing_type'] . '_tags';
477
+            $taxonomy = $request_info['listing_type'].'_tags';
478 478
             wp_set_object_terms($last_post_id, $post_tags, $taxonomy);
479 479
         }
480 480
 
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
                 $tmpimgArr = trim($request_info['post_images'], ",");
487 487
                 $tmpimgArr = explode(",", $tmpimgArr);
488 488
                 geodir_save_post_images($last_post_id, $tmpimgArr, $dummy);
489
-            } else{
489
+            } else {
490 490
                 geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy);
491 491
             }
492 492
 
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
     if (!in_array($post_type, $all_postypes))
568 568
         return false;
569 569
 
570
-    $table = $plugin_prefix . $post_type . '_detail';
570
+    $table = $plugin_prefix.$post_type.'_detail';
571 571
 
572 572
     /**
573 573
      * Apply Filter to change Post info
@@ -577,7 +577,7 @@  discard block
 block discarded – undo
577 577
      * @since 1.0.0
578 578
      * @package GeoDirectory
579 579
      */
580
-    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
580
+    $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd
581 581
 			  WHERE p.ID = pd.post_id
582 582
 			  AND post_id = " . $post_id);
583 583
 
@@ -640,7 +640,7 @@  discard block
 block discarded – undo
640 640
 
641 641
         $post_type = get_post_type($post_id);
642 642
 
643
-        $table = $plugin_prefix . $post_type . '_detail';
643
+        $table = $plugin_prefix.$post_type.'_detail';
644 644
 
645 645
         /**
646 646
          * Filter to change Post info
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
                         $mval = implode(",", $mval);
664 664
                     }
665 665
 
666
-                    $post_meta_set_query .= $mkey . " = '" . addslashes_gpc($mval) . "', ";
666
+                    $post_meta_set_query .= $mkey." = '".addslashes_gpc($mval)."', ";
667 667
                 }
668 668
             }
669 669
 
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
                 return false;
674 674
             }
675 675
 
676
-            $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
676
+            $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query); // escape %
677 677
 
678 678
 
679 679
             /**
@@ -686,11 +686,11 @@  discard block
 block discarded – undo
686 686
              */
687 687
             do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
688 688
 
689
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
689
+            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
690 690
 
691 691
                 $wpdb->query(
692 692
                     $wpdb->prepare(
693
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d",
693
+                        "UPDATE ".$table." SET ".$post_meta_set_query." where post_id =%d",
694 694
                         array($post_id)
695 695
                     )
696 696
                 );
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
 
701 701
                 $wpdb->query(
702 702
                     $wpdb->prepare(
703
-                        "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query,
703
+                        "INSERT INTO ".$table." SET post_id = %d,".$post_meta_set_query,
704 704
                         array($post_id)
705 705
                     )
706 706
                 );
@@ -746,7 +746,7 @@  discard block
 block discarded – undo
746 746
 
747 747
         $post_type = get_post_type($post_id);
748 748
 
749
-        $table = $plugin_prefix . $post_type . '_detail';
749
+        $table = $plugin_prefix.$post_type.'_detail';
750 750
 
751 751
         if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
752 752
 
@@ -754,11 +754,11 @@  discard block
 block discarded – undo
754 754
                 $meta_value = implode(",", $meta_value);
755 755
             }
756 756
 
757
-            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
757
+            if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
758 758
 
759 759
                 $wpdb->query(
760 760
                     $wpdb->prepare(
761
-                        "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d",
761
+                        "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d",
762 762
                         array($post_id)
763 763
                     )
764 764
                 );
@@ -767,7 +767,7 @@  discard block
 block discarded – undo
767 767
 
768 768
                 $wpdb->query(
769 769
                     $wpdb->prepare(
770
-                        "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'",
770
+                        "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'",
771 771
                         array($post_id)
772 772
                     )
773 773
                 );
@@ -800,14 +800,14 @@  discard block
 block discarded – undo
800 800
 
801 801
         $post_type = get_post_type($post_id);
802 802
 
803
-        $table = $plugin_prefix . $post_type . '_detail';
803
+        $table = $plugin_prefix.$post_type.'_detail';
804 804
 
805 805
         if (is_array($postmeta) && !empty($postmeta) && $post_id) {
806 806
             $post_meta_set_query = '';
807 807
 
808 808
             foreach ($postmeta as $mkey) {
809 809
                 if ($mval != '')
810
-                    $post_meta_set_query .= $mkey . " = '', ";
810
+                    $post_meta_set_query .= $mkey." = '', ";
811 811
             }
812 812
 
813 813
             $post_meta_set_query = trim($post_meta_set_query, ", ");
@@ -816,11 +816,11 @@  discard block
 block discarded – undo
816 816
                 return false;
817 817
             }
818 818
 
819
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
819
+            if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
820 820
 
821 821
                 $wpdb->query(
822 822
                     $wpdb->prepare(
823
-                        "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d",
823
+                        "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d",
824 824
                         array($post_id)
825 825
                     )
826 826
                 );
@@ -829,11 +829,11 @@  discard block
 block discarded – undo
829 829
             }
830 830
 
831 831
         } elseif ($postmeta != '' && $post_id) {
832
-            if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
832
+            if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
833 833
 
834 834
                 $wpdb->query(
835 835
                     $wpdb->prepare(
836
-                        "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d",
836
+                        "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d",
837 837
                         array($post_id)
838 838
                     )
839 839
                 );
@@ -875,10 +875,10 @@  discard block
 block discarded – undo
875 875
         if (!in_array($post_type, $all_postypes))
876 876
             return false;
877 877
 
878
-        $table = $plugin_prefix . $post_type . '_detail';
878
+        $table = $plugin_prefix.$post_type.'_detail';
879 879
 
880
-        if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
881
-            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
880
+        if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') {
881
+            $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id)));
882 882
             
883 883
             if ($meta_value && $meta_value !== '') {
884 884
                 return maybe_serialize($meta_value);
@@ -912,13 +912,13 @@  discard block
 block discarded – undo
912 912
 
913 913
         $post_type = get_post_type($post_id);
914 914
 
915
-        $table = $plugin_prefix . $post_type . '_detail';
915
+        $table = $plugin_prefix.$post_type.'_detail';
916 916
 
917 917
         $post_images = geodir_get_images($post_id);
918 918
 
919 919
         $wpdb->query(
920 920
             $wpdb->prepare(
921
-                "UPDATE " . $table . " SET featured_image = '' where post_id =%d",
921
+                "UPDATE ".$table." SET featured_image = '' where post_id =%d",
922 922
                 array($post_id)
923 923
             )
924 924
         );
@@ -948,12 +948,12 @@  discard block
 block discarded – undo
948 948
                 $file_path = '';
949 949
                 /* --------- start ------- */
950 950
 
951
-                $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
951
+                $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
952 952
 
953 953
                 $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
954 954
 
955 955
 
956
-                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)))) {
956
+                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)))) {
957 957
 
958 958
                     /* --------- end ------- */
959 959
                     $curr_img_url = $post_image[$m];
@@ -997,7 +997,7 @@  discard block
 block discarded – undo
997 997
                     // If the uploaded file is the right format
998 998
                     if (in_array($uploaded_file_type, $allowed_file_types)) {
999 999
                         if (!function_exists('wp_handle_upload')) {
1000
-                            require_once(ABSPATH . 'wp-admin/includes/file.php');
1000
+                            require_once(ABSPATH.'wp-admin/includes/file.php');
1001 1001
                         }
1002 1002
 
1003 1003
                         if (!is_dir($geodir_uploadpath)) {
@@ -1005,41 +1005,41 @@  discard block
 block discarded – undo
1005 1005
                         }
1006 1006
 
1007 1007
                         $external_img = false;
1008
-                        if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
1008
+                        if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
1009 1009
                         } else {
1010 1010
                             $external_img = true;
1011 1011
                         }
1012 1012
 
1013 1013
                         if ($dummy || $external_img) {
1014 1014
                             $uploaded_file = array();
1015
-                            $uploaded = (array)fetch_remote_file($curr_img_url);
1015
+                            $uploaded = (array) fetch_remote_file($curr_img_url);
1016 1016
 
1017 1017
                             if (isset($uploaded['error']) && empty($uploaded['error'])) {
1018 1018
                                 $new_name = basename($uploaded['file']);
1019 1019
                                 $uploaded_file = $uploaded;
1020
-                            }else{
1021
-                                print_r($uploaded);exit;
1020
+                            } else {
1021
+                                print_r($uploaded); exit;
1022 1022
                             }
1023 1023
                             $external_img = false;
1024 1024
                         } else {
1025
-                            $new_name = $post_id . '_' . $file_name;
1025
+                            $new_name = $post_id.'_'.$file_name;
1026 1026
 
1027 1027
                             if ($curr_img_dir == $sub_dir) {
1028
-                                $img_path = $geodir_uploadpath . '/' . $filename;
1029
-                                $img_url = $geodir_uploadurl . '/' . $filename;
1028
+                                $img_path = $geodir_uploadpath.'/'.$filename;
1029
+                                $img_url = $geodir_uploadurl.'/'.$filename;
1030 1030
                             } else {
1031
-                                $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename;
1032
-                                $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename;
1031
+                                $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename;
1032
+                                $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename;
1033 1033
                             }
1034 1034
 
1035 1035
                             $uploaded_file = '';
1036 1036
 
1037 1037
                             if (file_exists($img_path)) {
1038
-                                $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name);
1038
+                                $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name);
1039 1039
                                 $file_path = '';
1040
-                            } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
1040
+                            } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
1041 1041
                                 $uploaded_file = true;
1042
-                                $file_path = $curr_img_dir . '/' . $filename;
1042
+                                $file_path = $curr_img_dir.'/'.$filename;
1043 1043
                             }
1044 1044
 
1045 1045
                             if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path))
@@ -1048,14 +1048,14 @@  discard block
 block discarded – undo
1048 1048
 
1049 1049
                         if (!empty($uploaded_file)) {
1050 1050
                             if (!isset($file_path) || !$file_path) {
1051
-                                $file_path = $sub_dir . '/' . $new_name;
1051
+                                $file_path = $sub_dir.'/'.$new_name;
1052 1052
                             }
1053 1053
 
1054
-                            $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
1054
+                            $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
1055 1055
 
1056 1056
                             if ($menu_order == 1) {
1057 1057
 
1058
-                                $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1058
+                                $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
1059 1059
 
1060 1060
                             }
1061 1061
 
@@ -1073,12 +1073,12 @@  discard block
 block discarded – undo
1073 1073
 
1074 1074
                             foreach ($attachment as $key => $val) {
1075 1075
                                 if ($val != '')
1076
-                                    $attachment_set .= $key . " = '" . $val . "', ";
1076
+                                    $attachment_set .= $key." = '".$val."', ";
1077 1077
                             }
1078 1078
 
1079 1079
                             $attachment_set = trim($attachment_set, ", ");
1080 1080
 
1081
-                            $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
1081
+                            $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
1082 1082
 
1083 1083
                             $valid_file_ids[] = $wpdb->insert_id;
1084 1084
                         }
@@ -1089,17 +1089,17 @@  discard block
 block discarded – undo
1089 1089
                 } else {
1090 1090
                     $valid_file_ids[] = $find_image;
1091 1091
 
1092
-                    $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
1092
+                    $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
1093 1093
 
1094 1094
                     $wpdb->query(
1095 1095
                         $wpdb->prepare(
1096
-                            "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d",
1096
+                            "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d",
1097 1097
                             array($menu_order, $split_img_path[1], $post_id)
1098 1098
                         )
1099 1099
                     );
1100 1100
 
1101 1101
                     if ($menu_order == 1)
1102
-                        $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1102
+                        $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
1103 1103
 
1104 1104
                 }
1105 1105
 
@@ -1123,9 +1123,9 @@  discard block
 block discarded – undo
1123 1123
 
1124 1124
                 foreach ($post_images as $img) {
1125 1125
 
1126
-                    if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
1126
+                    if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
1127 1127
 
1128
-                        $invalid_files[] = (object)array('src' => $img->src);
1128
+                        $invalid_files[] = (object) array('src' => $img->src);
1129 1129
 
1130 1130
                     }
1131 1131
 
@@ -1133,12 +1133,12 @@  discard block
 block discarded – undo
1133 1133
 
1134 1134
             }
1135 1135
 
1136
-            $invalid_files = (object)$invalid_files;
1136
+            $invalid_files = (object) $invalid_files;
1137 1137
         }
1138 1138
 
1139 1139
         $remove_files[] = $post_id;
1140 1140
 
1141
-        $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
1141
+        $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
1142 1142
 
1143 1143
         if (!empty($invalid_files))
1144 1144
             geodir_remove_attachments($invalid_files);
@@ -1178,7 +1178,7 @@  discard block
 block discarded – undo
1178 1178
 			rmdir($dirPath);
1179 1179
 	}	*/
1180 1180
 
1181
-    $dirname = $uploads_dir . '/temp_' . $current_user->ID;
1181
+    $dirname = $uploads_dir.'/temp_'.$current_user->ID;
1182 1182
     geodir_delete_directory($dirname);
1183 1183
 }
1184 1184
 
@@ -1200,10 +1200,10 @@  discard block
 block discarded – undo
1200 1200
         return false;
1201 1201
     while ($file = readdir($dir_handle)) {
1202 1202
         if ($file != "." && $file != "..") {
1203
-            if (!is_dir($dirname . "/" . $file))
1204
-                unlink($dirname . "/" . $file);
1203
+            if (!is_dir($dirname."/".$file))
1204
+                unlink($dirname."/".$file);
1205 1205
             else
1206
-                geodir_delete_directory($dirname . '/' . $file);
1206
+                geodir_delete_directory($dirname.'/'.$file);
1207 1207
         }
1208 1208
     }
1209 1209
     closedir($dir_handle);
@@ -1232,8 +1232,8 @@  discard block
 block discarded – undo
1232 1232
             foreach ($postcurr_images as $postimg) {
1233 1233
                 $image_name_arr = explode('/', $postimg->src);
1234 1234
                 $filename = end($image_name_arr);
1235
-                if (file_exists($uploads_dir . '/' . $filename))
1236
-                    unlink($uploads_dir . '/' . $filename);
1235
+                if (file_exists($uploads_dir.'/'.$filename))
1236
+                    unlink($uploads_dir.'/'.$filename);
1237 1237
             }
1238 1238
 
1239 1239
         } // endif
@@ -1274,16 +1274,16 @@  discard block
 block discarded – undo
1274 1274
         }
1275 1275
 
1276 1276
         if (!in_array($post_type, geodir_get_posttypes())) {
1277
-            return false;// if not a GD CPT return;
1277
+            return false; // if not a GD CPT return;
1278 1278
         }
1279 1279
 
1280
-        $table = $plugin_prefix . $post_type . '_detail';
1280
+        $table = $plugin_prefix.$post_type.'_detail';
1281 1281
 
1282 1282
         if (!$file) {
1283 1283
             if (isset($post->featured_image)) {
1284 1284
                 $file = $post->featured_image;
1285 1285
             } else {
1286
-                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
1286
+                $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
1287 1287
             }
1288 1288
         }
1289 1289
 
@@ -1301,7 +1301,7 @@  discard block
 block discarded – undo
1301 1301
 
1302 1302
             $file_name = $file_info['basename'];
1303 1303
 
1304
-            $uploads_url = $uploads_baseurl . $sub_dir;
1304
+            $uploads_url = $uploads_baseurl.$sub_dir;
1305 1305
             /*
1306 1306
              * Allows the filter of image src for such things as CDN change.
1307 1307
              *
@@ -1311,8 +1311,8 @@  discard block
 block discarded – undo
1311 1311
              * @param string $uploads_url The server upload directory url.
1312 1312
              * @param string $uploads_baseurl The uploads dir base url.
1313 1313
              */
1314
-            $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1315
-            $img_arr['path'] = $uploads_path . '/' . $file_name;
1314
+            $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1315
+            $img_arr['path'] = $uploads_path.'/'.$file_name;
1316 1316
             $width = 0;
1317 1317
             $height = 0;
1318 1318
             if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1355,7 +1355,7 @@  discard block
 block discarded – undo
1355 1355
                 $file_name = $file_info['basename'];
1356 1356
 
1357 1357
                 $img_arr['src'] = $default_img;
1358
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1358
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1359 1359
 
1360 1360
                 $width = 0;
1361 1361
                 $height = 0;
@@ -1372,7 +1372,7 @@  discard block
 block discarded – undo
1372 1372
         }
1373 1373
 
1374 1374
         if (!empty($img_arr))
1375
-            return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path );
1375
+            return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path );
1376 1376
         else
1377 1377
             return false;
1378 1378
     }
@@ -1435,7 +1435,7 @@  discard block
 block discarded – undo
1435 1435
 
1436 1436
         $arrImages = $wpdb->get_results(
1437 1437
             $wpdb->prepare(
1438
-                "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 ",
1438
+                "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 ",
1439 1439
                 array('%image%', $post_id)
1440 1440
             )
1441 1441
         );
@@ -1461,7 +1461,7 @@  discard block
 block discarded – undo
1461 1461
 
1462 1462
                 $file_name = $file_info['basename'];
1463 1463
 
1464
-                $uploads_url = $uploads_baseurl . $sub_dir;
1464
+                $uploads_url = $uploads_baseurl.$sub_dir;
1465 1465
                 /*
1466 1466
                 * Allows the filter of image src for such things as CDN change.
1467 1467
                 *
@@ -1471,8 +1471,8 @@  discard block
 block discarded – undo
1471 1471
                 * @param string $uploads_url The server upload directory url.
1472 1472
                 * @param string $uploads_baseurl The uploads dir base url.
1473 1473
                 */
1474
-                $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
1475
-                $img_arr['path'] = $uploads_path . '/' . $file_name;
1474
+                $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
1475
+                $img_arr['path'] = $uploads_path.'/'.$file_name;
1476 1476
                 $width = 0;
1477 1477
                 $height = 0;
1478 1478
                 if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
@@ -1489,11 +1489,11 @@  discard block
 block discarded – undo
1489 1489
                 $img_arr['content'] = $attechment->content; // add the description to the array
1490 1490
                 $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1.
1491 1491
 
1492
-                $return_arr[] = (object)$img_arr;
1492
+                $return_arr[] = (object) $img_arr;
1493 1493
 
1494 1494
                 $counter++;
1495 1495
             }
1496
-            return (object)$return_arr;
1496
+            return (object) $return_arr;
1497 1497
         } else if ($no_images) {
1498 1498
             $default_img = '';
1499 1499
             $default_cat = geodir_get_post_meta($post_id, 'default_category', true);
@@ -1532,7 +1532,7 @@  discard block
 block discarded – undo
1532 1532
                 $img_arr['title'] = $file_info['filename']; // add the title to the array
1533 1533
                 $img_arr['content'] = $file_info['filename']; // add the description to the array
1534 1534
 
1535
-                $return_arr[] = (object)$img_arr;
1535
+                $return_arr[] = (object) $img_arr;
1536 1536
 
1537 1537
                 return $return_arr;
1538 1538
             } else
@@ -1559,8 +1559,8 @@  discard block
 block discarded – undo
1559 1559
 
1560 1560
         $html = '';
1561 1561
         if (!empty($request)) {
1562
-            if (!is_object($request)){
1563
-                $request = (object)$request;
1562
+            if (!is_object($request)) {
1563
+                $request = (object) $request;
1564 1564
             }
1565 1565
 
1566 1566
             if (isset($request->src) && !isset($request->path)) {
@@ -1574,7 +1574,7 @@  discard block
 block discarded – undo
1574 1574
             $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
1575 1575
             $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
1576 1576
             if (strpos($img_no_http, $upload_no_http) !== false) {
1577
-                $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path);
1577
+                $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path);
1578 1578
             }
1579 1579
             
1580 1580
             $width = 0;
@@ -1589,7 +1589,7 @@  discard block
 block discarded – undo
1589 1589
             $image->width = $width;
1590 1590
             $image->height = $height;
1591 1591
 
1592
-            $max_size = (object)geodir_get_imagesize($size);
1592
+            $max_size = (object) geodir_get_imagesize($size);
1593 1593
 
1594 1594
             if (!is_wp_error($max_size)) {
1595 1595
                 if ($image->width) {
@@ -1601,15 +1601,15 @@  discard block
 block discarded – undo
1601 1601
                         $width_per = 100;
1602 1602
                 }
1603 1603
 
1604
-                if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
1605
-                    $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '"  /></div>';
1604
+                if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
1605
+                    $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'"  /></div>';
1606 1606
                 } else {
1607
-                    if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
1608
-                        $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1609
-                    }else{
1607
+                    if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) {
1608
+                        $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>';
1609
+                    } else {
1610 1610
                         //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>';
1611 1611
                         //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>';
1612
-                        $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1612
+                        $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
1613 1613
 
1614 1614
                     }
1615 1615
 
@@ -1645,15 +1645,15 @@  discard block
 block discarded – undo
1645 1645
 
1646 1646
         $post_type = get_post_type($post_id);
1647 1647
 
1648
-        $table = $plugin_prefix . $post_type . '_detail';
1648
+        $table = $plugin_prefix.$post_type.'_detail';
1649 1649
 
1650 1650
         if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
1651 1651
 
1652
-            if ($taxonomy == $post_type . '_tags') {
1652
+            if ($taxonomy == $post_type.'_tags') {
1653 1653
                 if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
1654 1654
                     geodir_save_post_meta($post_id, 'post_tags', $terms);
1655 1655
                 }
1656
-            } elseif ($taxonomy == $post_type . 'category') {
1656
+            } elseif ($taxonomy == $post_type.'category') {
1657 1657
                 $srcharr = array('"', '\\');
1658 1658
                 $replarr = array("&quot;", '');
1659 1659
 
@@ -1675,7 +1675,7 @@  discard block
 block discarded – undo
1675 1675
 
1676 1676
                     $wpdb->get_var(
1677 1677
                         $wpdb->prepare(
1678
-                            "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ",
1678
+                            "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ",
1679 1679
                             $cat_ids_array_del
1680 1680
                         )
1681 1681
                     );
@@ -1683,7 +1683,7 @@  discard block
 block discarded – undo
1683 1683
 
1684 1684
                     $post_term = $wpdb->get_col(
1685 1685
                         $wpdb->prepare(
1686
-                            "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1686
+                            "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id",
1687 1687
                             $cat_ids_array
1688 1688
                         )
1689 1689
                     );
@@ -1705,16 +1705,16 @@  discard block
 block discarded – undo
1705 1705
                         $lat = geodir_get_post_meta($post_id, 'post_latitude', true);
1706 1706
                         $lng = geodir_get_post_meta($post_id, 'post_longitude', true);
1707 1707
 
1708
-                        $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1709
-                        $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true);
1708
+                        $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
1709
+                        $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true);
1710 1710
 
1711 1711
                         $json = '{';
1712
-                        $json .= '"id":"' . $post_id . '",';
1713
-                        $json .= '"lat_pos": "' . $lat . '",';
1714
-                        $json .= '"long_pos": "' . $lng . '",';
1715
-                        $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",';
1716
-                        $json .= '"icon":"' . $term_icon . '",';
1717
-                        $json .= '"group":"catgroup' . $cat_id . '"';
1712
+                        $json .= '"id":"'.$post_id.'",';
1713
+                        $json .= '"lat_pos": "'.$lat.'",';
1714
+                        $json .= '"long_pos": "'.$lng.'",';
1715
+                        $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",';
1716
+                        $json .= '"icon":"'.$term_icon.'",';
1717
+                        $json .= '"group":"catgroup'.$cat_id.'"';
1718 1718
                         $json .= '}';
1719 1719
 
1720 1720
 
@@ -1722,9 +1722,9 @@  discard block
 block discarded – undo
1722 1722
                             $post_marker_json = $json;
1723 1723
 
1724 1724
 
1725
-                        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)))) {
1725
+                        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)))) {
1726 1726
 
1727
-                            $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
1727
+                            $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
1728 1728
 										post_title = %s,
1729 1729
 										json = %s
1730 1730
 										WHERE post_id = %d AND cat_id = %d ",
@@ -1732,7 +1732,7 @@  discard block
 block discarded – undo
1732 1732
 
1733 1733
                         } else {
1734 1734
 
1735
-                            $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
1735
+                            $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
1736 1736
 										post_id = %d,
1737 1737
 										post_title = %s,
1738 1738
 										cat_id = %d,
@@ -1750,17 +1750,17 @@  discard block
 block discarded – undo
1750 1750
                 if (!empty($post_term) && is_array($post_term)) {
1751 1751
                     $categories = implode(',', $post_term);
1752 1752
 
1753
-                    if ($categories != '' && $categories != 0) $categories = ',' . $categories . ',';
1753
+                    if ($categories != '' && $categories != 0) $categories = ','.$categories.',';
1754 1754
 
1755 1755
                     if (empty($post_marker_json))
1756 1756
                         $post_marker_json = isset($json) ? $json : '';
1757 1757
 
1758
-                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
1758
+                    if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
1759 1759
 
1760 1760
                         $wpdb->query(
1761 1761
                             $wpdb->prepare(
1762
-                                "UPDATE " . $table . " SET
1763
-								" . $taxonomy . " = %s,
1762
+                                "UPDATE ".$table." SET
1763
+								" . $taxonomy." = %s,
1764 1764
 								marker_json = %s
1765 1765
 								where post_id = %d",
1766 1766
                                 array($categories, $post_marker_json, $post_id)
@@ -1781,7 +1781,7 @@  discard block
 block discarded – undo
1781 1781
 
1782 1782
                                     $wpdb->query(
1783 1783
                                         $wpdb->prepare(
1784
-                                            "UPDATE " . $table . " SET
1784
+                                            "UPDATE ".$table." SET
1785 1785
 											default_category = %s
1786 1786
 											where post_id = %d",
1787 1787
                                             array($categories[0], $post_id)
@@ -1806,9 +1806,9 @@  discard block
 block discarded – undo
1806 1806
 
1807 1807
                         $wpdb->query(
1808 1808
                             $wpdb->prepare(
1809
-                                "INSERT INTO " . $table . " SET
1809
+                                "INSERT INTO ".$table." SET
1810 1810
 								post_id = %d,
1811
-								" . $taxonomy . " = %s,
1811
+								" . $taxonomy." = %s,
1812 1812
 								marker_json = %s ",
1813 1813
 
1814 1814
                                 array($post_id, $categories, $post_marker_json)
@@ -1931,7 +1931,7 @@  discard block
 block discarded – undo
1931 1931
                                     } ?>"><img alt="bubble image" style="max-height:50px;"
1932 1932
                                                src="<?php echo $post_images[0]; ?>"/></a></div>
1933 1933
                             <?php
1934
-                            }else{
1934
+                            } else {
1935 1935
                                 echo '<div class="geodir-bubble_image"></div>';
1936 1936
                             }
1937 1937
                         } else {
@@ -1939,7 +1939,7 @@  discard block
 block discarded – undo
1939 1939
                                 ?>
1940 1940
                                 <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div>
1941 1941
                             <?php
1942
-                            }else{
1942
+                            } else {
1943 1943
                                 echo '<div class="geodir-bubble_image"></div>';
1944 1944
                             }
1945 1945
                         }
@@ -1972,7 +1972,7 @@  discard block
 block discarded – undo
1972 1972
                              * @param object $postinfo_obj The posts info as an object.
1973 1973
                              * @param bool|string $post_preview True if currently in post preview page. Empty string if not.                           *
1974 1974
                              */
1975
-                            do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
1975
+                            do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
1976 1976
                             ?>
1977 1977
                         </div>
1978 1978
                         <?php
@@ -1984,10 +1984,10 @@  discard block
 block discarded – undo
1984 1984
                             <div class="geodir-bubble-meta-fade"></div>
1985 1985
 
1986 1986
                             <div class="geodir-bubble-meta-bottom">
1987
-                                <span class="geodir-bubble-rating"><?php echo $rating_star;?></span>
1987
+                                <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span>
1988 1988
 
1989 1989
                                 <span
1990
-                                    class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span>
1990
+                                    class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span>
1991 1991
                   <span class="geodir-bubble-reviews"><a href="<?php echo get_comments_link($ID); ?>"
1992 1992
                                                          class="geodir-pcomments"><i class="fa fa-comments"></i>
1993 1993
                           <?php echo get_comments_number($ID); ?>
@@ -2052,11 +2052,11 @@  discard block
 block discarded – undo
2052 2052
 
2053 2053
         $post_type = get_post_type($post_id);
2054 2054
 
2055
-        $table = $plugin_prefix . $post_type . '_detail';
2055
+        $table = $plugin_prefix.$post_type.'_detail';
2056 2056
 
2057 2057
         $wpdb->query(
2058 2058
             $wpdb->prepare(
2059
-                "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d",
2059
+                "UPDATE ".$table." SET post_status=%s WHERE post_id=%d",
2060 2060
                 array($status, $post_id)
2061 2061
             )
2062 2062
         );
@@ -2128,18 +2128,18 @@  discard block
 block discarded – undo
2128 2128
 
2129 2129
         $post_type = get_post_type($post_id);
2130 2130
 
2131
-        $table = $plugin_prefix . $post_type . '_detail';
2131
+        $table = $plugin_prefix.$post_type.'_detail';
2132 2132
 
2133 2133
         $wpdb->query(
2134 2134
             $wpdb->prepare(
2135
-                "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d",
2135
+                "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d",
2136 2136
                 array($updatingpost, $temppost)
2137 2137
             )
2138 2138
         );
2139 2139
 
2140 2140
         $wpdb->query(
2141 2141
             $wpdb->prepare(
2142
-                "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2142
+                "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2143 2143
                 array($updatingpost, $temppost)
2144 2144
             )
2145 2145
         );
@@ -2148,7 +2148,7 @@  discard block
 block discarded – undo
2148 2148
 
2149 2149
         $wpdb->query(
2150 2150
             $wpdb->prepare(
2151
-                "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d",
2151
+                "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d",
2152 2152
                 array($updatingpost, $temppost)
2153 2153
             )
2154 2154
         );
@@ -2186,12 +2186,12 @@  discard block
 block discarded – undo
2186 2186
         if (!in_array($post_type, $all_postypes))
2187 2187
             return false;
2188 2188
 
2189
-        $table = $plugin_prefix . $post_type . '_detail';
2189
+        $table = $plugin_prefix.$post_type.'_detail';
2190 2190
 
2191 2191
         /* Delete custom post meta*/
2192 2192
         $wpdb->query(
2193 2193
             $wpdb->prepare(
2194
-                "DELETE FROM " . $table . " WHERE `post_id` = %d",
2194
+                "DELETE FROM ".$table." WHERE `post_id` = %d",
2195 2195
                 array($deleted_postid)
2196 2196
             )
2197 2197
         );
@@ -2200,7 +2200,7 @@  discard block
 block discarded – undo
2200 2200
 
2201 2201
         $wpdb->query(
2202 2202
             $wpdb->prepare(
2203
-                "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d",
2203
+                "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d",
2204 2204
                 array($deleted_postid)
2205 2205
             )
2206 2206
         );
@@ -2210,7 +2210,7 @@  discard block
 block discarded – undo
2210 2210
 
2211 2211
         $wpdb->query(
2212 2212
             $wpdb->prepare(
2213
-                "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d",
2213
+                "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d",
2214 2214
                 array($deleted_postid)
2215 2215
             )
2216 2216
         );
@@ -2282,7 +2282,7 @@  discard block
 block discarded – undo
2282 2282
          */
2283 2283
         do_action('geodir_before_add_from_favorite', $post_id);
2284 2284
 
2285
-        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>';
2285
+        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>';
2286 2286
 
2287 2287
         /**
2288 2288
          * Called after adding the post from favourites.
@@ -2361,7 +2361,7 @@  discard block
 block discarded – undo
2361 2361
          */
2362 2362
         do_action('geodir_before_remove_from_favorite', $post_id);
2363 2363
 
2364
-        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>';
2364
+        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>';
2365 2365
 
2366 2366
         /**
2367 2367
          * Called after removing the post from favourites.
@@ -2456,24 +2456,24 @@  discard block
 block discarded – undo
2456 2456
             $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true);
2457 2457
 
2458 2458
         if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
2459
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"  ><a
2459
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"  ><a
2460 2460
                 class="geodir-removetofav-icon" href="javascript:void(0);"
2461
-                onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');"
2462
-                title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?>
2461
+                onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');"
2462
+                title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?>
2463 2463
             </a>   </span><?php
2464 2464
 
2465 2465
         } else {
2466 2466
 
2467 2467
             if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
2468
-                $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\'';
2468
+                $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\'';
2469 2469
             } else
2470
-                $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
2470
+                $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
2471 2471
 
2472
-            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon"
2472
+            ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon"
2473 2473
                                                                                         href="javascript:void(0);"
2474
-                                                                                        onclick="<?php echo $script_text;?>"
2475
-                                                                                        title="<?php echo $add_favourite_text;?>"><i
2476
-                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span>
2474
+                                                                                        onclick="<?php echo $script_text; ?>"
2475
+                                                                                        title="<?php echo $add_favourite_text; ?>"><i
2476
+                    class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span>
2477 2477
         <?php }
2478 2478
     }
2479 2479
 }
@@ -2503,7 +2503,7 @@  discard block
 block discarded – undo
2503 2503
 
2504 2504
             $post_type = $taxonomy_obj->object_type[0];
2505 2505
 
2506
-            $table = $plugin_prefix . $post_type . '_detail';
2506
+            $table = $plugin_prefix.$post_type.'_detail';
2507 2507
 
2508 2508
             /**
2509 2509
              * Filter to modify the 'join' query
@@ -2526,8 +2526,8 @@  discard block
 block discarded – undo
2526 2526
             $where = apply_filters('geodir_cat_post_count_where', $where, $term);
2527 2527
 
2528 2528
             $count_query = "SELECT count(post_id) FROM
2529
-							" . $table . " as pd " . $join . "
2530
-							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
2529
+							" . $table." as pd ".$join."
2530
+							WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
2531 2531
 
2532 2532
             $cat_post_count = $wpdb->get_var($count_query);
2533 2533
             if (empty($cat_post_count) || is_wp_error($cat_post_count))
@@ -2610,7 +2610,7 @@  discard block
 block discarded – undo
2610 2610
     global $post;
2611 2611
     $all_postypes = geodir_get_posttypes();
2612 2612
     if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
2613
-        return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>';
2613
+        return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>';
2614 2614
     }
2615 2615
 
2616 2616
     return $more;
@@ -2637,14 +2637,14 @@  discard block
 block discarded – undo
2637 2637
     if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
2638 2638
 
2639 2639
         $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy);
2640
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
2640
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
2641 2641
 
2642 2642
         $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']);
2643
-        $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png';
2643
+        $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png';
2644 2644
 
2645 2645
         $posts = $wpdb->get_results(
2646 2646
             $wpdb->prepare(
2647
-                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ",
2647
+                "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ",
2648 2648
                 array($term_id, $taxonomy)
2649 2649
             )
2650 2650
         );
@@ -2656,19 +2656,19 @@  discard block
 block discarded – undo
2656 2656
                 $lng = $post_obj->post_longitude;
2657 2657
 
2658 2658
                 $json = '{';
2659
-                $json .= '"id":"' . $post_obj->post_id . '",';
2660
-                $json .= '"lat_pos": "' . $lat . '",';
2661
-                $json .= '"long_pos": "' . $lng . '",';
2662
-                $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",';
2663
-                $json .= '"icon":"' . $term_icon . '",';
2664
-                $json .= '"group":"catgroup' . $term_id . '"';
2659
+                $json .= '"id":"'.$post_obj->post_id.'",';
2660
+                $json .= '"lat_pos": "'.$lat.'",';
2661
+                $json .= '"long_pos": "'.$lng.'",';
2662
+                $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",';
2663
+                $json .= '"icon":"'.$term_icon.'",';
2664
+                $json .= '"group":"catgroup'.$term_id.'"';
2665 2665
                 $json .= '}';
2666 2666
 
2667 2667
                 if ($post_obj->default_category == $term_id) {
2668 2668
 
2669 2669
                     $wpdb->query(
2670 2670
                         $wpdb->prepare(
2671
-                            "UPDATE " . $table . " SET marker_json = %s where post_id = %d",
2671
+                            "UPDATE ".$table." SET marker_json = %s where post_id = %d",
2672 2672
                             array($json, $post_obj->post_id)
2673 2673
                         )
2674 2674
                     );
@@ -2676,7 +2676,7 @@  discard block
 block discarded – undo
2676 2676
 
2677 2677
                 $wpdb->query(
2678 2678
                     $wpdb->prepare(
2679
-                        "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d",
2679
+                        "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d",
2680 2680
                         array($json, $post_obj->post_id, $term_id)
2681 2681
                     )
2682 2682
                 );
@@ -2800,7 +2800,7 @@  discard block
 block discarded – undo
2800 2800
 //	print_r($uploads ) ;
2801 2801
     $post_first_image = $wpdb->get_results(
2802 2802
         $wpdb->prepare(
2803
-            "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1  ", array($post_id)
2803
+            "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1  ", array($post_id)
2804 2804
         )
2805 2805
     );
2806 2806
 
@@ -2821,9 +2821,9 @@  discard block
 block discarded – undo
2821 2821
 
2822 2822
         $post_type = get_post_type($post_id);
2823 2823
 
2824
-        $table_name = $plugin_prefix . $post_type . '_detail';
2824
+        $table_name = $plugin_prefix.$post_type.'_detail';
2825 2825
 
2826
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
2826
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
2827 2827
 
2828 2828
         $new_attachment_name = basename($post_first_image[0]->file);
2829 2829
 
@@ -2836,11 +2836,11 @@  discard block
 block discarded – undo
2836 2836
                 wp_delete_attachment($post_thumbnail_id);
2837 2837
 
2838 2838
             }
2839
-            $filename = $uploads['basedir'] . $post_first_image[0]->file;
2839
+            $filename = $uploads['basedir'].$post_first_image[0]->file;
2840 2840
 
2841 2841
             $attachment = array(
2842 2842
                 'post_mime_type' => $post_first_image[0]->mime_type,
2843
-                'guid' => $uploads['baseurl'] . $post_first_image[0]->file,
2843
+                'guid' => $uploads['baseurl'].$post_first_image[0]->file,
2844 2844
                 'post_parent' => $post_id,
2845 2845
                 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
2846 2846
                 'post_content' => ''
@@ -2853,7 +2853,7 @@  discard block
 block discarded – undo
2853 2853
 
2854 2854
                 set_post_thumbnail($post_id, $id);
2855 2855
 
2856
-                require_once(ABSPATH . 'wp-admin/includes/image.php');
2856
+                require_once(ABSPATH.'wp-admin/includes/image.php');
2857 2857
                 wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
2858 2858
 
2859 2859
             }
@@ -2886,35 +2886,35 @@  discard block
 block discarded – undo
2886 2886
         $post_id = absint($_POST['post_id']);
2887 2887
         $upload_dir = wp_upload_dir();
2888 2888
         $post_type = get_post_type($_POST['post_id']);
2889
-        $table = $plugin_prefix . $post_type . '_detail';
2889
+        $table = $plugin_prefix.$post_type.'_detail';
2890 2890
 
2891 2891
         $post_arr = $wpdb->get_results($wpdb->prepare(
2892
-            "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2892
+            "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1",
2893 2893
             array($post_id)
2894 2894
         )
2895 2895
             , ARRAY_A);
2896 2896
 
2897 2897
         $arrImages = $wpdb->get_results(
2898 2898
             $wpdb->prepare(
2899
-                "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2899
+                "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ",
2900 2900
                 array('%image%', $post_id)
2901 2901
             )
2902 2902
         );
2903 2903
         if ($arrImages) {
2904 2904
             $image_arr = array();
2905 2905
             foreach ($arrImages as $img) {
2906
-                $image_arr[] = $upload_dir['baseurl'] . $img->file;
2906
+                $image_arr[] = $upload_dir['baseurl'].$img->file;
2907 2907
             }
2908 2908
             $comma_separated = implode(",", $image_arr);
2909 2909
             $post_arr[0]['post_images'] = $comma_separated;
2910 2910
         }
2911 2911
 
2912 2912
 
2913
-        $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category'];
2913
+        $cats = $post_arr[0][$post_arr[0]['post_type'].'category'];
2914 2914
         $cat_arr = array_filter(explode(",", $cats));
2915 2915
         $trans_cat = array();
2916 2916
         foreach ($cat_arr as $cat) {
2917
-            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false);
2917
+            $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false);
2918 2918
         }
2919 2919
 
2920 2920
 
@@ -2956,7 +2956,7 @@  discard block
 block discarded – undo
2956 2956
 
2957 2957
     $get_data = $wpdb->get_results(
2958 2958
         $wpdb->prepare(
2959
-            "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'",
2959
+            "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'",
2960 2960
             array($listing_type)
2961 2961
         )
2962 2962
     );
@@ -2969,12 +2969,12 @@  discard block
 block discarded – undo
2969 2969
 
2970 2970
                 $extra_fields = unserialize($data->extra_fields);
2971 2971
 
2972
-                $prefix = $data->htmlvar_name . '_';
2972
+                $prefix = $data->htmlvar_name.'_';
2973 2973
 
2974
-                $fields_info[$prefix . 'address'] = $data->field_type;
2974
+                $fields_info[$prefix.'address'] = $data->field_type;
2975 2975
 
2976 2976
                 if (isset($extra_fields['show_zip']) && $extra_fields['show_zip'])
2977
-                    $fields_info[$prefix . 'zip'] = $data->field_type;
2977
+                    $fields_info[$prefix.'zip'] = $data->field_type;
2978 2978
 
2979 2979
             } else {
2980 2980
 
@@ -3072,13 +3072,13 @@  discard block
 block discarded – undo
3072 3072
  * @since 1.4.9
3073 3073
  * @package GeoDirectory
3074 3074
  */
3075
-function geodir_fb_like_thumbnail(){
3075
+function geodir_fb_like_thumbnail() {
3076 3076
 
3077 3077
     // return if not a single post
3078
-    if(!is_single()){return;}
3078
+    if (!is_single()) {return; }
3079 3079
 
3080 3080
     global $post;
3081
-    if(isset($post->featured_image) && $post->featured_image){
3081
+    if (isset($post->featured_image) && $post->featured_image) {
3082 3082
         $upload_dir = wp_upload_dir();
3083 3083
         $thumb = $upload_dir['baseurl'].$post->featured_image;
3084 3084
         echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n";
Please login to merge, or discard this patch.
geodirectory-admin/option-pages/create_field.php 3 patches
Braces   +12 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,23 +35,26 @@  discard block
 block discarded – undo
35 35
 
36 36
 /* ---- Delete field ---- */
37 37
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
38
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
39
-        return;
38
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
39
+            return;
40
+    }
40 41
     
41 42
     echo geodir_custom_field_delete($field_id);
42 43
 }
43 44
 
44 45
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
45
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
46
-        return;
46
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
47
+            return;
48
+    }
47 49
     
48 50
     echo geodir_custom_sort_field_delete($field_id);
49 51
 }
50 52
 
51 53
 /* ---- Save field  ---- */
52 54
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
53
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
54
-        return;
55
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
56
+            return;
57
+    }
55 58
 
56 59
     foreach ($_REQUEST as $pkey => $pval) {
57 60
         if (is_array($_REQUEST[$pkey])) {
@@ -77,8 +80,9 @@  discard block
 block discarded – undo
77 80
 
78 81
 /* ---- Save sort field  ---- */
79 82
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
80
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
81
-        return;
83
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) {
84
+            return;
85
+    }
82 86
 
83 87
     foreach ($_REQUEST as $pkey => $pval) {
84 88
         if (is_array($_REQUEST[$pkey])) {
Please login to merge, or discard this patch.
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -16,100 +16,100 @@
 block discarded – undo
16 16
 
17 17
 $field_ids = array();
18 18
 if (!empty($_REQUEST['licontainer']) && is_array($_REQUEST['licontainer'])) {
19
-    foreach ($_REQUEST['licontainer'] as $lic_id) {
20
-        $field_ids[] = sanitize_text_field($lic_id);
21
-    }
19
+	foreach ($_REQUEST['licontainer'] as $lic_id) {
20
+		$field_ids[] = sanitize_text_field($lic_id);
21
+	}
22 22
 }
23 23
 
24 24
 /* ------- check nonce field ------- */
25 25
 if (isset($_REQUEST['update']) && $_REQUEST['update'] == "update" && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
26
-    echo godir_set_field_order($field_ids);
26
+	echo godir_set_field_order($field_ids);
27 27
 }
28 28
 
29 29
 if (isset($_REQUEST['update']) && $_REQUEST['update'] == "update" && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
30
-    $response = godir_set_sort_field_order($field_ids);
31
-    if (is_array($response)) {
32
-        wp_send_json($response);
33
-    } else {
34
-        echo $response;
35
-    }
30
+	$response = godir_set_sort_field_order($field_ids);
31
+	if (is_array($response)) {
32
+		wp_send_json($response);
33
+	} else {
34
+		echo $response;
35
+	}
36 36
 }
37 37
 
38 38
 /* ---- Show field form in admin ---- */
39 39
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
40
-    geodir_custom_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
40
+	geodir_custom_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
41 41
 }
42 42
 
43 43
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
44
-    geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
44
+	geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
45 45
 }
46 46
 
47 47
 /* ---- Delete field ---- */
48 48
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
49
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
50
-        return;
49
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
50
+		return;
51 51
     
52
-    echo geodir_custom_field_delete($field_id);
52
+	echo geodir_custom_field_delete($field_id);
53 53
 }
54 54
 
55 55
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
56
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
57
-        return;
56
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
57
+		return;
58 58
     
59
-    echo geodir_custom_sort_field_delete($field_id);
59
+	echo geodir_custom_sort_field_delete($field_id);
60 60
 }
61 61
 
62 62
 /* ---- Save field  ---- */
63 63
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
64
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
65
-        return;
66
-
67
-    foreach ($_REQUEST as $pkey => $pval) {
68
-        if (is_array($_REQUEST[$pkey])) {
69
-            $tags = 'skip_field';
70
-        } else {
71
-            $tags = '';
72
-        }
73
-
74
-        if ($tags != 'skip_field') {
75
-            $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
76
-        }
77
-    }
78
-
79
-    $return = geodir_custom_field_save($_REQUEST);
80
-
81
-    if (is_int($return)) {
82
-        $lastid = $return;
83
-        geodir_custom_field_adminhtml($field_type, $lastid, 'submit',$field_type_key);
84
-    } else {
85
-        echo $return;
86
-    }
64
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
65
+		return;
66
+
67
+	foreach ($_REQUEST as $pkey => $pval) {
68
+		if (is_array($_REQUEST[$pkey])) {
69
+			$tags = 'skip_field';
70
+		} else {
71
+			$tags = '';
72
+		}
73
+
74
+		if ($tags != 'skip_field') {
75
+			$_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
76
+		}
77
+	}
78
+
79
+	$return = geodir_custom_field_save($_REQUEST);
80
+
81
+	if (is_int($return)) {
82
+		$lastid = $return;
83
+		geodir_custom_field_adminhtml($field_type, $lastid, 'submit',$field_type_key);
84
+	} else {
85
+		echo $return;
86
+	}
87 87
 }
88 88
 
89 89
 /* ---- Save sort field  ---- */
90 90
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
91
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
92
-        return;
93
-
94
-    foreach ($_REQUEST as $pkey => $pval) {
95
-        if (is_array($_REQUEST[$pkey])) {
96
-            $tags = 'skip_field';
97
-        } else {
98
-            $tags = '';
99
-        }
100
-
101
-        if ($tags != 'skip_field') {
102
-            $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
103
-        }
104
-    }
105
-
106
-    $return = geodir_custom_sort_field_save($_REQUEST);
107
-
108
-    if (is_int($return)) {
109
-        $lastid = $return;
110
-        $default = false;
111
-        geodir_custom_sort_field_adminhtml($field_type, $lastid, 'submit', $default);
112
-    } else {
113
-        echo $return;
114
-    }
91
+	if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
92
+		return;
93
+
94
+	foreach ($_REQUEST as $pkey => $pval) {
95
+		if (is_array($_REQUEST[$pkey])) {
96
+			$tags = 'skip_field';
97
+		} else {
98
+			$tags = '';
99
+		}
100
+
101
+		if ($tags != 'skip_field') {
102
+			$_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
103
+		}
104
+	}
105
+
106
+	$return = geodir_custom_sort_field_save($_REQUEST);
107
+
108
+	if (is_int($return)) {
109
+		$lastid = $return;
110
+		$default = false;
111
+		geodir_custom_sort_field_adminhtml($field_type, $lastid, 'submit', $default);
112
+	} else {
113
+		echo $return;
114
+	}
115 115
 }
116 116
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -37,23 +37,23 @@  discard block
 block discarded – undo
37 37
 
38 38
 /* ---- Show field form in admin ---- */
39 39
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
40
-    geodir_custom_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
40
+    geodir_custom_field_adminhtml($field_type, $field_id, $field_action, $field_type_key);
41 41
 }
42 42
 
43 43
 if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
44
-    geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action,$field_type_key);
44
+    geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action, $field_type_key);
45 45
 }
46 46
 
47 47
 /* ---- Delete field ---- */
48 48
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
49
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
49
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
50 50
         return;
51 51
     
52 52
     echo geodir_custom_field_delete($field_id);
53 53
 }
54 54
 
55 55
 if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
56
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
56
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
57 57
         return;
58 58
     
59 59
     echo geodir_custom_sort_field_delete($field_id);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
 /* ---- Save field  ---- */
63 63
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') {
64
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
64
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
65 65
         return;
66 66
 
67 67
     foreach ($_REQUEST as $pkey => $pval) {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 
81 81
     if (is_int($return)) {
82 82
         $lastid = $return;
83
-        geodir_custom_field_adminhtml($field_type, $lastid, 'submit',$field_type_key);
83
+        geodir_custom_field_adminhtml($field_type, $lastid, 'submit', $field_type_key);
84 84
     } else {
85 85
         echo $return;
86 86
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
 /* ---- Save sort field  ---- */
90 90
 if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') {
91
-    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id))
91
+    if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_'.$field_id))
92 92
         return;
93 93
 
94 94
     foreach ($_REQUEST as $pkey => $pval) {
Please login to merge, or discard this patch.
geodirectory-admin/admin_db_install.php 3 patches
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,12 @@
 block discarded – undo
23 23
 
24 24
         $collate = '';
25 25
         if ($wpdb->has_cap('collation')) {
26
-            if (!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset";
27
-            if (!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate";
26
+            if (!empty($wpdb->charset)) {
27
+            	$collate = "DEFAULT CHARACTER SET $wpdb->charset";
28
+            }
29
+            if (!empty($wpdb->collate)) {
30
+            	$collate .= " COLLATE $wpdb->collate";
31
+            }
28 32
         }
29 33
 
30 34
 		/**
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -32,35 +32,35 @@  discard block
 block discarded – undo
32 32
 		 *
33 33
 		 * @since 1.0.0
34 34
 		 */
35
-		require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
35
+		require_once(ABSPATH.'wp-admin/includes/upgrade.php');
36 36
 
37 37
 
38 38
 // rename tables if we need to
39
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_countries'") == 0) {
40
-            $wpdb->query("RENAME TABLE geodir_countries TO " . $wpdb->prefix . "geodir_countries");
39
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_countries'") == 0) {
40
+            $wpdb->query("RENAME TABLE geodir_countries TO ".$wpdb->prefix."geodir_countries");
41 41
         }
42
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_fields'") == 0) {
43
-            $wpdb->query("RENAME TABLE geodir_custom_fields TO " . $wpdb->prefix . "geodir_custom_fields");
42
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_custom_fields'") == 0) {
43
+            $wpdb->query("RENAME TABLE geodir_custom_fields TO ".$wpdb->prefix."geodir_custom_fields");
44 44
         }
45
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_icon'") == 0) {
46
-            $wpdb->query("RENAME TABLE geodir_post_icon TO " . $wpdb->prefix . "geodir_post_icon");
45
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_post_icon'") == 0) {
46
+            $wpdb->query("RENAME TABLE geodir_post_icon TO ".$wpdb->prefix."geodir_post_icon");
47 47
         }
48
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_attachments'") == 0) {
49
-            $wpdb->query("RENAME TABLE geodir_attachments TO " . $wpdb->prefix . "geodir_attachments");
48
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_attachments'") == 0) {
49
+            $wpdb->query("RENAME TABLE geodir_attachments TO ".$wpdb->prefix."geodir_attachments");
50 50
         }
51
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_review'") == 0) {
52
-            $wpdb->query("RENAME TABLE geodir_post_review TO " . $wpdb->prefix . "geodir_post_review");
51
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_post_review'") == 0) {
52
+            $wpdb->query("RENAME TABLE geodir_post_review TO ".$wpdb->prefix."geodir_post_review");
53 53
         }
54
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_sort_fields'") == 0) {
55
-            $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO " . $wpdb->prefix . "geodir_custom_sort_fields");
54
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_custom_sort_fields'") == 0) {
55
+            $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO ".$wpdb->prefix."geodir_custom_sort_fields");
56 56
         }
57
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_gd_place_detail'") == 0) {
58
-            $wpdb->query("RENAME TABLE geodir_gd_place_detail TO " . $wpdb->prefix . "geodir_gd_place_detail");
57
+        if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '".$wpdb->prefix."geodir_gd_place_detail'") == 0) {
58
+            $wpdb->query("RENAME TABLE geodir_gd_place_detail TO ".$wpdb->prefix."geodir_gd_place_detail");
59 59
         }
60 60
 
61 61
 
62 62
         // Table for storing Countries
63
-        $GEODIR_COUNTRIES_TABLE = "CREATE TABLE " . GEODIR_COUNTRIES_TABLE . " (
63
+        $GEODIR_COUNTRIES_TABLE = "CREATE TABLE ".GEODIR_COUNTRIES_TABLE." (
64 64
 						CountryId smallint AUTO_INCREMENT NOT NULL ,
65 65
 						Country varchar (50) NOT NULL ,
66 66
 						FIPS104 varchar (2) NOT NULL ,
@@ -89,11 +89,11 @@  discard block
 block discarded – undo
89 89
         dbDelta($GEODIR_COUNTRIES_TABLE);
90 90
 
91 91
 
92
-        $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM " . GEODIR_COUNTRIES_TABLE . "");
92
+        $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM ".GEODIR_COUNTRIES_TABLE."");
93 93
 
94 94
         if ($country_table_empty == 0) {
95 95
 
96
-            $countries_insert = "INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES
96
+            $countries_insert = "INSERT INTO ".GEODIR_COUNTRIES_TABLE." (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES
97 97
 	(1, 'Afghanistan', 'AF', 'AF', 'AFG', '4', 'AF', 'Kabul ', 'Asia ', 'Afghan', 'Afghans', 'Afghani ', 'AFA', 26813057, 'Afghanistan', ''),
98 98
 	(2, 'Albania', 'AL', 'AL', 'ALB', '8', 'AL', 'Tirana ', 'Europe ', 'Albanian', 'Albanians', 'Lek ', 'ALL', 3510484, 'Albania', ''),
99 99
 	(3, 'Algeria', 'AG', 'DZ', 'DZA', '12', 'DZ', 'Algiers ', 'Africa ', 'Algerian', 'Algerians', 'Algerian Dinar ', 'DZD', 31736053, 'Algeria', ''),
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 
383 383
         // Table for storing location attribute - these are user defined
384 384
 
385
-        $icon_table = "CREATE TABLE " . GEODIR_ICON_TABLE . " (
385
+        $icon_table = "CREATE TABLE ".GEODIR_ICON_TABLE." (
386 386
 						id int NOT NULL AUTO_INCREMENT,
387 387
 						post_id int( 10 ) NOT NULL,
388 388
 						post_title varchar(254) NOT NULL,
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 
404 404
         // Table for storing post custom fields - these are user defined
405 405
 
406
-        $post_custom_fields = "CREATE TABLE " . GEODIR_CUSTOM_FIELDS_TABLE . " (
406
+        $post_custom_fields = "CREATE TABLE ".GEODIR_CUSTOM_FIELDS_TABLE." (
407 407
 							  id int(11) NOT NULL AUTO_INCREMENT,
408 408
 							  post_type varchar(100) NULL,
409 409
 							  data_type varchar(100) NULL DEFAULT NULL,
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
         dbDelta($post_custom_fields);
449 449
 
450 450
         // Table for storing place attribute - these are user defined
451
-        $post_detail = "CREATE TABLE " . $plugin_prefix . "gd_place_detail (
451
+        $post_detail = "CREATE TABLE ".$plugin_prefix."gd_place_detail (
452 452
 						post_id int(11) NOT NULL,
453 453
 						post_title text NULL DEFAULT NULL,
454 454
 						post_status varchar(20) NULL DEFAULT NULL,
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
 
490 490
         // Table for storing place images - these are user defined
491 491
 
492
-        $attechment_table = "CREATE TABLE " . GEODIR_ATTACHMENT_TABLE . " (
492
+        $attechment_table = "CREATE TABLE ".GEODIR_ATTACHMENT_TABLE." (
493 493
 						ID int(11) NOT NULL AUTO_INCREMENT,
494 494
 						post_id int(11) NOT NULL,
495 495
 						user_id int(11) DEFAULT NULL,
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
         dbDelta($attechment_table);
517 517
 
518 518
 
519
-        $custom_sort_fields_table = "CREATE TABLE " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " (
519
+        $custom_sort_fields_table = "CREATE TABLE ".GEODIR_CUSTOM_SORT_FIELDS_TABLE." (
520 520
 			id int(11) NOT NULL AUTO_INCREMENT,
521 521
 			post_type varchar(255) NOT NULL,
522 522
 			data_type varchar(255) NOT NULL,
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
         dbDelta($custom_sort_fields_table);
546 546
 
547 547
 
548
-            $review_table = "CREATE TABLE " . GEODIR_REVIEW_TABLE . " (
548
+            $review_table = "CREATE TABLE ".GEODIR_REVIEW_TABLE." (
549 549
 			id int(11) NOT NULL AUTO_INCREMENT,
550 550
 			post_id int(11) DEFAULT NULL,
551 551
 			post_title varchar( 255 ) NULL DEFAULT NULL,
Please login to merge, or discard this patch.
Indentation   +155 added lines, -155 removed lines patch added patch discarded remove patch
@@ -6,26 +6,26 @@  discard block
 block discarded – undo
6 6
  * @package GeoDirectory
7 7
  */
8 8
 if (!function_exists('geodir_create_tables')) {
9
-    /**
10
-     * Creates custom db tables for storing GeoDirectory plugin data.
11
-     *
12
-     * @since 1.0.0
13
-     * @package GeoDirectory
14
-     * @global object $wpdb WordPress Database object.
15
-     * @global string $plugin_prefix GeoDirectory plugin table prefix.
16
-     */
17
-    function geodir_create_tables()
18
-    {
19
-
20
-        global $wpdb, $plugin_prefix;
21
-
22
-        $wpdb->hide_errors();
23
-
24
-        $collate = '';
25
-        if ($wpdb->has_cap('collation')) {
26
-            if (!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset";
27
-            if (!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate";
28
-        }
9
+	/**
10
+	 * Creates custom db tables for storing GeoDirectory plugin data.
11
+	 *
12
+	 * @since 1.0.0
13
+	 * @package GeoDirectory
14
+	 * @global object $wpdb WordPress Database object.
15
+	 * @global string $plugin_prefix GeoDirectory plugin table prefix.
16
+	 */
17
+	function geodir_create_tables()
18
+	{
19
+
20
+		global $wpdb, $plugin_prefix;
21
+
22
+		$wpdb->hide_errors();
23
+
24
+		$collate = '';
25
+		if ($wpdb->has_cap('collation')) {
26
+			if (!empty($wpdb->charset)) $collate = "DEFAULT CHARACTER SET $wpdb->charset";
27
+			if (!empty($wpdb->collate)) $collate .= " COLLATE $wpdb->collate";
28
+		}
29 29
 
30 30
 		/**
31 31
 		 * Include any functions needed for upgrades.
@@ -36,31 +36,31 @@  discard block
 block discarded – undo
36 36
 
37 37
 
38 38
 // rename tables if we need to
39
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_countries'") == 0) {
40
-            $wpdb->query("RENAME TABLE geodir_countries TO " . $wpdb->prefix . "geodir_countries");
41
-        }
42
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_fields'") == 0) {
43
-            $wpdb->query("RENAME TABLE geodir_custom_fields TO " . $wpdb->prefix . "geodir_custom_fields");
44
-        }
45
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_icon'") == 0) {
46
-            $wpdb->query("RENAME TABLE geodir_post_icon TO " . $wpdb->prefix . "geodir_post_icon");
47
-        }
48
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_attachments'") == 0) {
49
-            $wpdb->query("RENAME TABLE geodir_attachments TO " . $wpdb->prefix . "geodir_attachments");
50
-        }
51
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_review'") == 0) {
52
-            $wpdb->query("RENAME TABLE geodir_post_review TO " . $wpdb->prefix . "geodir_post_review");
53
-        }
54
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_sort_fields'") == 0) {
55
-            $wpdb->query("RENAME TABLE geodir_custom_sort_fields TO " . $wpdb->prefix . "geodir_custom_sort_fields");
56
-        }
57
-        if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_gd_place_detail'") == 0) {
58
-            $wpdb->query("RENAME TABLE geodir_gd_place_detail TO " . $wpdb->prefix . "geodir_gd_place_detail");
59
-        }
60
-
61
-
62
-        // Table for storing Countries
63
-        $GEODIR_COUNTRIES_TABLE = "CREATE TABLE " . GEODIR_COUNTRIES_TABLE . " (
39
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_countries'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_countries'") == 0) {
40
+			$wpdb->query("RENAME TABLE geodir_countries TO " . $wpdb->prefix . "geodir_countries");
41
+		}
42
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_fields'") == 0) {
43
+			$wpdb->query("RENAME TABLE geodir_custom_fields TO " . $wpdb->prefix . "geodir_custom_fields");
44
+		}
45
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_icon'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_icon'") == 0) {
46
+			$wpdb->query("RENAME TABLE geodir_post_icon TO " . $wpdb->prefix . "geodir_post_icon");
47
+		}
48
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_attachments'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_attachments'") == 0) {
49
+			$wpdb->query("RENAME TABLE geodir_attachments TO " . $wpdb->prefix . "geodir_attachments");
50
+		}
51
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_post_review'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_post_review'") == 0) {
52
+			$wpdb->query("RENAME TABLE geodir_post_review TO " . $wpdb->prefix . "geodir_post_review");
53
+		}
54
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_custom_sort_fields'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_custom_sort_fields'") == 0) {
55
+			$wpdb->query("RENAME TABLE geodir_custom_sort_fields TO " . $wpdb->prefix . "geodir_custom_sort_fields");
56
+		}
57
+		if ($wpdb->query("SHOW TABLES LIKE 'geodir_gd_place_detail'") > 0 && $wpdb->query("SHOW TABLES LIKE '" . $wpdb->prefix . "geodir_gd_place_detail'") == 0) {
58
+			$wpdb->query("RENAME TABLE geodir_gd_place_detail TO " . $wpdb->prefix . "geodir_gd_place_detail");
59
+		}
60
+
61
+
62
+		// Table for storing Countries
63
+		$GEODIR_COUNTRIES_TABLE = "CREATE TABLE " . GEODIR_COUNTRIES_TABLE . " (
64 64
 						CountryId smallint AUTO_INCREMENT NOT NULL ,
65 65
 						Country varchar (50) NOT NULL ,
66 66
 						FIPS104 varchar (2) NOT NULL ,
@@ -79,21 +79,21 @@  discard block
 block discarded – undo
79 79
 						Comment varchar (255) NULL ,
80 80
 						PRIMARY KEY  (CountryId)) $collate ";
81 81
 
82
-        /**
83
-         * Filter the SQL query that creates/updates the country DB table structure.
84
-         *
85
-         * @since 1.0.0
86
-         * @param string $sql The SQL insert query string.
87
-         */
88
-        $GEODIR_COUNTRIES_TABLE = apply_filters('geodir_before_country_table_create', $GEODIR_COUNTRIES_TABLE);
89
-        dbDelta($GEODIR_COUNTRIES_TABLE);
82
+		/**
83
+		 * Filter the SQL query that creates/updates the country DB table structure.
84
+		 *
85
+		 * @since 1.0.0
86
+		 * @param string $sql The SQL insert query string.
87
+		 */
88
+		$GEODIR_COUNTRIES_TABLE = apply_filters('geodir_before_country_table_create', $GEODIR_COUNTRIES_TABLE);
89
+		dbDelta($GEODIR_COUNTRIES_TABLE);
90 90
 
91 91
 
92
-        $country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM " . GEODIR_COUNTRIES_TABLE . "");
92
+		$country_table_empty = $wpdb->get_var("SELECT COUNT(CountryId) FROM " . GEODIR_COUNTRIES_TABLE . "");
93 93
 
94
-        if ($country_table_empty == 0) {
94
+		if ($country_table_empty == 0) {
95 95
 
96
-            $countries_insert = "INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES
96
+			$countries_insert = "INSERT INTO " . GEODIR_COUNTRIES_TABLE . " (`CountryId`, `Country`, `FIPS104`, `ISO2`, `ISO3`, `ISON`, `Internet`, `Capital`, `MapReference`, `NationalitySingular`, `NationalityPlural`, `Currency`, `CurrencyCode`, `Population`, `Title`, `COMMENT`) VALUES
97 97
 	(1, 'Afghanistan', 'AF', 'AF', 'AFG', '4', 'AF', 'Kabul ', 'Asia ', 'Afghan', 'Afghans', 'Afghani ', 'AFA', 26813057, 'Afghanistan', ''),
98 98
 	(2, 'Albania', 'AL', 'AL', 'ALB', '8', 'AL', 'Tirana ', 'Europe ', 'Albanian', 'Albanians', 'Lek ', 'ALL', 3510484, 'Albania', ''),
99 99
 	(3, 'Algeria', 'AG', 'DZ', 'DZA', '12', 'DZ', 'Algiers ', 'Africa ', 'Algerian', 'Algerians', 'Algerian Dinar ', 'DZD', 31736053, 'Algeria', ''),
@@ -368,21 +368,21 @@  discard block
 block discarded – undo
368 368
 	(277, 'Caribbean Netherlands', '--', 'BQ', 'BES', '535', 'BQ', '--', 'Central America and the Caribbean', '--', '--', 'United States dollar', 'USD', 21133, 'Caribbean Netherlands', ''),
369 369
 	(278, 'Kosovo', 'XK', 'XK', '--', '--', 'XK', 'Pristina', 'Europe', '--', '--', 'Euro', 'EUR', 1859203, 'Caribbean Netherlands', 'Kosovo')";
370 370
 
371
-            /**
372
-             * Filter the SQL query that inserts the country DB table data.
373
-             *
374
-             * @since 1.0.0
375
-             * @param string $sql The SQL insert query string.
376
-             */
377
-            $countries_insert = apply_filters('geodir_before_country_data_insert', $countries_insert);
378
-            $wpdb->query($countries_insert);
371
+			/**
372
+			 * Filter the SQL query that inserts the country DB table data.
373
+			 *
374
+			 * @since 1.0.0
375
+			 * @param string $sql The SQL insert query string.
376
+			 */
377
+			$countries_insert = apply_filters('geodir_before_country_data_insert', $countries_insert);
378
+			$wpdb->query($countries_insert);
379 379
 
380
-        }
380
+		}
381 381
 
382 382
 
383
-        // Table for storing location attribute - these are user defined
383
+		// Table for storing location attribute - these are user defined
384 384
 
385
-        $icon_table = "CREATE TABLE " . GEODIR_ICON_TABLE . " (
385
+		$icon_table = "CREATE TABLE " . GEODIR_ICON_TABLE . " (
386 386
 						id int NOT NULL AUTO_INCREMENT,
387 387
 						post_id int( 10 ) NOT NULL,
388 388
 						post_title varchar(254) NOT NULL,
@@ -391,19 +391,19 @@  discard block
 block discarded – undo
391 391
 						PRIMARY KEY  (id)
392 392
 						) $collate ";
393 393
 
394
-        /**
395
-         * Filter the SQL query that creates/updates the post_icon DB table structure.
396
-         *
397
-         * @since 1.0.0
398
-         * @param string $sql The SQL insert query string.
399
-         */
400
-        $icon_table = apply_filters('geodir_before_icon_table_create', $icon_table);
394
+		/**
395
+		 * Filter the SQL query that creates/updates the post_icon DB table structure.
396
+		 *
397
+		 * @since 1.0.0
398
+		 * @param string $sql The SQL insert query string.
399
+		 */
400
+		$icon_table = apply_filters('geodir_before_icon_table_create', $icon_table);
401 401
 
402
-        dbDelta($icon_table);
402
+		dbDelta($icon_table);
403 403
 
404
-        // Table for storing post custom fields - these are user defined
404
+		// Table for storing post custom fields - these are user defined
405 405
 
406
-        $post_custom_fields = "CREATE TABLE " . GEODIR_CUSTOM_FIELDS_TABLE . " (
406
+		$post_custom_fields = "CREATE TABLE " . GEODIR_CUSTOM_FIELDS_TABLE . " (
407 407
 							  id int(11) NOT NULL AUTO_INCREMENT,
408 408
 							  post_type varchar(100) NULL,
409 409
 							  data_type varchar(100) NULL DEFAULT NULL,
@@ -439,18 +439,18 @@  discard block
 block discarded – undo
439 439
 							  PRIMARY KEY  (id)
440 440
 							  ) $collate";
441 441
 
442
-        /**
443
-         * Filter the SQL query that creates/updates the custom_fields DB table structure.
444
-         *
445
-         * @since 1.0.0
446
-         * @param string $sql The SQL insert query string.
447
-         */
448
-        $post_custom_fields = apply_filters('geodir_before_custom_field_table_create', $post_custom_fields);
442
+		/**
443
+		 * Filter the SQL query that creates/updates the custom_fields DB table structure.
444
+		 *
445
+		 * @since 1.0.0
446
+		 * @param string $sql The SQL insert query string.
447
+		 */
448
+		$post_custom_fields = apply_filters('geodir_before_custom_field_table_create', $post_custom_fields);
449 449
 
450
-        dbDelta($post_custom_fields);
450
+		dbDelta($post_custom_fields);
451 451
 
452
-        // Table for storing place attribute - these are user defined
453
-        $post_detail = "CREATE TABLE " . $plugin_prefix . "gd_place_detail (
452
+		// Table for storing place attribute - these are user defined
453
+		$post_detail = "CREATE TABLE " . $plugin_prefix . "gd_place_detail (
454 454
 						post_id int(11) NOT NULL,
455 455
 						post_title text NULL DEFAULT NULL,
456 456
 						post_status varchar(20) NULL DEFAULT NULL,
@@ -477,22 +477,22 @@  discard block
 block discarded – undo
477 477
 						PRIMARY KEY  (post_id)
478 478
 						) $collate ";
479 479
 
480
-        /**
481
-         * Filter the SQL query that creates/updates the post_detail DB table structure.
482
-         *
483
-         * @since 1.0.0
484
-         * @param string $sql The SQL insert query string.
485
-         */
486
-        $post_detail = apply_filters('geodir_before_post_detail_table_create', $post_detail);
480
+		/**
481
+		 * Filter the SQL query that creates/updates the post_detail DB table structure.
482
+		 *
483
+		 * @since 1.0.0
484
+		 * @param string $sql The SQL insert query string.
485
+		 */
486
+		$post_detail = apply_filters('geodir_before_post_detail_table_create', $post_detail);
487 487
 
488
-        dbDelta($post_detail);
488
+		dbDelta($post_detail);
489 489
 
490
-        // alter post_title
491
-        //$wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_gd_place_detail MODIFY `post_title` text NULL");
490
+		// alter post_title
491
+		//$wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_gd_place_detail MODIFY `post_title` text NULL");
492 492
 
493
-        // Table for storing place images - these are user defined
493
+		// Table for storing place images - these are user defined
494 494
 
495
-        $attechment_table = "CREATE TABLE " . GEODIR_ATTACHMENT_TABLE . " (
495
+		$attechment_table = "CREATE TABLE " . GEODIR_ATTACHMENT_TABLE . " (
496 496
 						ID int(11) NOT NULL AUTO_INCREMENT,
497 497
 						post_id int(11) NOT NULL,
498 498
 						user_id int(11) DEFAULT NULL,
@@ -508,18 +508,18 @@  discard block
 block discarded – undo
508 508
 						PRIMARY KEY  (ID)
509 509
 						) $collate ";
510 510
 
511
-        /**
512
-         * Filter the SQL query that creates/updates the attachments DB table structure.
513
-         *
514
-         * @since 1.0.0
515
-         * @param string $sql The SQL insert query string.
516
-         */
517
-        $attechment_table = apply_filters('geodir_before_attachment_table_create', $attechment_table);
511
+		/**
512
+		 * Filter the SQL query that creates/updates the attachments DB table structure.
513
+		 *
514
+		 * @since 1.0.0
515
+		 * @param string $sql The SQL insert query string.
516
+		 */
517
+		$attechment_table = apply_filters('geodir_before_attachment_table_create', $attechment_table);
518 518
 
519
-        dbDelta($attechment_table);
519
+		dbDelta($attechment_table);
520 520
 
521 521
 
522
-        $custom_sort_fields_table = "CREATE TABLE " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " (
522
+		$custom_sort_fields_table = "CREATE TABLE " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " (
523 523
 			id int(11) NOT NULL AUTO_INCREMENT,
524 524
 			post_type varchar(255) NOT NULL,
525 525
 			data_type varchar(255) NOT NULL,
@@ -537,18 +537,18 @@  discard block
 block discarded – undo
537 537
 			PRIMARY KEY  (id)
538 538
 			) $collate ";
539 539
 
540
-        /**
541
-         * Filter the SQL query that creates/updates the custom_sort_fields DB table structure.
542
-         *
543
-         * @since 1.0.0
544
-         * @param string $sql The SQL insert query string.
545
-         */
546
-        $custom_sort_fields_table = apply_filters('geodir_before_sort_fields_table_create', $custom_sort_fields_table);
540
+		/**
541
+		 * Filter the SQL query that creates/updates the custom_sort_fields DB table structure.
542
+		 *
543
+		 * @since 1.0.0
544
+		 * @param string $sql The SQL insert query string.
545
+		 */
546
+		$custom_sort_fields_table = apply_filters('geodir_before_sort_fields_table_create', $custom_sort_fields_table);
547 547
 
548
-        dbDelta($custom_sort_fields_table);
548
+		dbDelta($custom_sort_fields_table);
549 549
 
550 550
 
551
-            $review_table = "CREATE TABLE " . GEODIR_REVIEW_TABLE . " (
551
+			$review_table = "CREATE TABLE " . GEODIR_REVIEW_TABLE . " (
552 552
 			id int(11) NOT NULL AUTO_INCREMENT,
553 553
 			post_id int(11) DEFAULT NULL,
554 554
 			post_title varchar( 255 ) NULL DEFAULT NULL,
@@ -572,51 +572,51 @@  discard block
 block discarded – undo
572 572
 			PRIMARY KEY  (id)
573 573
 			) $collate  ";
574 574
 
575
-            /**
576
-             * Filter the SQL query that creates the review DB table structure.
577
-             *
578
-             * @since 1.0.0
579
-             * @param string $sql The SQL insert query string.
580
-             */
581
-            $review_table = apply_filters('geodir_before_review_table_create', $review_table);
582
-            dbDelta($review_table);
575
+			/**
576
+			 * Filter the SQL query that creates the review DB table structure.
577
+			 *
578
+			 * @since 1.0.0
579
+			 * @param string $sql The SQL insert query string.
580
+			 */
581
+			$review_table = apply_filters('geodir_before_review_table_create', $review_table);
582
+			dbDelta($review_table);
583 583
 
584 584
 
585 585
 
586
-        // Alter terms table
587
-        $term_icon_column = $wpdb->get_var("SHOW COLUMNS FROM $wpdb->terms where field='term_icon'");
588
-        if (!$term_icon_column) {
589
-            $wpdb->query("ALTER TABLE $wpdb->terms ADD `term_icon` TEXT NULL DEFAULT NULL");
590
-        }
586
+		// Alter terms table
587
+		$term_icon_column = $wpdb->get_var("SHOW COLUMNS FROM $wpdb->terms where field='term_icon'");
588
+		if (!$term_icon_column) {
589
+			$wpdb->query("ALTER TABLE $wpdb->terms ADD `term_icon` TEXT NULL DEFAULT NULL");
590
+		}
591 591
 
592
-        //require_once(geodir_plugin_path() . '/upgrade.php');
592
+		//require_once(geodir_plugin_path() . '/upgrade.php');
593 593
 
594 594
 
595
-    }
595
+	}
596 596
 } // END MAIN FUNCTION geodir_tables_install
597 597
 
598 598
 if (!function_exists('geodir_create_default_fields')) {
599
-    /**
600
-     * Inserts default custom fields table data into database.
601
-     *
602
-     * @since 1.0.0
603
-     * @package GeoDirectory
604
-     */
605
-    function geodir_create_default_fields()
606
-    {
607
-
608
-        $fields = geodir_default_custom_fields('gd_place');
609
-
610
-        /**
611
-         * Filter the array of default custom fields DB table data.
612
-         *
613
-         * @since 1.0.0
614
-         * @param string $fields The default custom fields as an array.
615
-         */
616
-        $fields = apply_filters('geodir_before_default_custom_fields_saved', $fields);
617
-        foreach ($fields as $field_index => $field) {
618
-            geodir_custom_field_save($field);
619
-
620
-        }
621
-    }
599
+	/**
600
+	 * Inserts default custom fields table data into database.
601
+	 *
602
+	 * @since 1.0.0
603
+	 * @package GeoDirectory
604
+	 */
605
+	function geodir_create_default_fields()
606
+	{
607
+
608
+		$fields = geodir_default_custom_fields('gd_place');
609
+
610
+		/**
611
+		 * Filter the array of default custom fields DB table data.
612
+		 *
613
+		 * @since 1.0.0
614
+		 * @param string $fields The default custom fields as an array.
615
+		 */
616
+		$fields = apply_filters('geodir_before_default_custom_fields_saved', $fields);
617
+		foreach ($fields as $field_index => $field) {
618
+			geodir_custom_field_save($field);
619
+
620
+		}
621
+	}
622 622
 }
623 623
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-admin/option-pages/permalink_settings_array.php 1 patch
Indentation   +178 added lines, -178 removed lines patch added patch discarded remove patch
@@ -16,184 +16,184 @@
 block discarded – undo
16 16
  */
17 17
 $geodir_settings['permalink_settings'] = apply_filters('geodir_permalink_settings', array(
18 18
 
19
-    /* Listing Permalink Settings start */
20
-    array('name' => __('Permalink', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set permalink', 'id' => 'geodir_permalink_settings '),
21
-
22
-
23
-    array('name' => __('Listing Detail Permalink Settings', 'geodirectory'),
24
-        'type' => 'sectionstart',
25
-        'desc' => '',
26
-        'id' => 'geodir_permalink'),
27
-
28
-    array(
29
-        'name' => __('Add location in urls', 'geodirectory'),
30
-        'desc' => __('Add location slug in listing urls', 'geodirectory'),
31
-        'id' => 'geodir_add_location_url',
32
-        'type' => 'checkbox',
33
-        'std' => '1',
34
-        'checkboxgroup' => 'start'
35
-    ),
36
-
37
-    array(
38
-        'name' => __('Add full location in listing urls', 'geodirectory'),
39
-        'desc' => __('Add full location info with country, region and city slug in listing urls', 'geodirectory'),
40
-        'id' => 'geodir_show_location_url',
41
-        'type' => 'radio',
42
-        'value' => 'all',
43
-        'std' => 'all',
44
-        'radiogroup' => ''
45
-    ),
46
-
47
-	array(
48
-        'name' => __('Add country and city slug in listing urls', 'geodirectory'),
49
-        'desc' => __('Add country and city slug in listing urls (/country/city/)', 'geodirectory'),
50
-        'id' => 'geodir_show_location_url',
51
-        'type' => 'radio',
52
-        'std' => 'all',
53
-        'value' => 'country_city',
54
-        'radiogroup' => ''
55
-    ),
56
-	array(
57
-        'name' => __('Add region and city slug in listing urls', 'geodirectory'),
58
-        'desc' => __('Add region and city slug in listing urls (/region/city/)', 'geodirectory'),
59
-        'id' => 'geodir_show_location_url',
60
-        'type' => 'radio',
61
-        'std' => 'all',
62
-        'value' => 'region_city',
63
-        'radiogroup' => ''
64
-    ),
65
-    array(
66
-        'name' => __('Add only city in listing urls', 'geodirectory'),
67
-        'desc' => __('Add city slug in listing urls', 'geodirectory'),
68
-        'id' => 'geodir_show_location_url',
69
-        'type' => 'radio',
70
-        'std' => 'all',
71
-        'value' => 'city',
72
-        'radiogroup' => 'end'
73
-    ),
74
-
75
-
76
-
77
-    array(
78
-        'name' => __('Add category in listing urls', 'geodirectory'),
79
-        'desc' => __('Add requested category slugs in listing urls', 'geodirectory'),
80
-        'id' => 'geodir_add_categories_url',
81
-        'type' => 'checkbox',
82
-        'std' => '1',
83
-    ),
84
-
85
-    array(
86
-        'name' => __('Listing url prefix', 'geodirectory'),
87
-        'desc' => __('Listing prefix to show in url', 'geodirectory'),
88
-        'id' => 'geodir_listing_prefix',
89
-        'type' => 'text',
90
-        'css' => 'min-width:300px;',
91
-        'std' => 'places'
92
-    ),
93
-
94
-    array(
95
-        'name' => __('Location url prefix', 'geodirectory'),
96
-        'desc' => __('Depreciated, now uses the location page slug', 'geodirectory'),
97
-        'id' => 'geodir_location_prefix',
98
-        'type' => 'text',
99
-        'css' => 'min-width:300px;',
100
-        'std' => 'location' // Default value to show home top section
101
-    ),
102
-
103
-    array(
104
-        'name' => __('Location and category url separator', 'geodirectory'),
105
-        'desc' => __('Separator to show between location and category url slugs in listing urls', 'geodirectory'),
106
-        'id' => 'geodir_listingurl_separator',
107
-        'type' => 'text',
108
-        'css' => 'min-width:300px;',
109
-        'std' => 'C' // Default value to show home top section
110
-    ),
111
-
112
-    array(
113
-        'name' => __('Listing detail url separator', 'geodirectory'),
114
-        'desc' => __('Separator to show before listing slug in listing detail urls', 'geodirectory'),
115
-        'id' => 'geodir_detailurl_separator',
116
-        'type' => 'text',
117
-        'css' => 'min-width:300px;',
118
-        'std' => 'info' // Default value to show home top section
119
-    ),
120
-
121
-
122
-    array('type' => 'sectionend', 'id' => 'geodir_permalink'),
123
-
124
-    array('name' => __('GeoDirectory Pages', 'geodirectory'),
125
-        'type' => 'sectionstart',
126
-        'desc' => '',
127
-        'id' => 'geodir_pages'),
128
-
129
-    array(
130
-        'name' => __('GD Home page', 'geodirectory'),
131
-        'desc' => __('Select the page to use for the GD homepage (you must also set this page in Settings>Reading>Front page for it to work)', 'geodirectory'),
132
-        'id' => 'geodir_home_page',
133
-        'type' => 'single_select_page',
134
-        'class' => 'chosen_select'
135
-    ),
136
-
137
-    array(
138
-        'name' => __('Add listing page', 'geodirectory'),
139
-        'desc' => __('Select the page to use for adding listings', 'geodirectory'),
140
-        'id' => 'geodir_add_listing_page',
141
-        'type' => 'single_select_page',
142
-        'class' => 'chosen_select'
143
-    ),
144
-
145
-    array(
146
-        'name' => __('Listing preview page', 'geodirectory'),
147
-        'desc' => __('Select the page to use for listing preview', 'geodirectory'),
148
-        'id' => 'geodir_preview_page',
149
-        'type' => 'single_select_page',
150
-        'class' => 'chosen_select'
151
-    ),
152
-
153
-    array(
154
-        'name' => __('Listing success page', 'geodirectory'),
155
-        'desc' => __('Select the page to use for listing success', 'geodirectory'),
156
-        'id' => 'geodir_success_page',
157
-        'type' => 'single_select_page',
158
-        'class' => 'chosen_select'
159
-    ),
160
-
161
-    array(
162
-        'name' => __('Location page', 'geodirectory'),
163
-        'desc' => __('Select the page to use for locations', 'geodirectory'),
164
-        'id' => 'geodir_location_page',
165
-        'type' => 'single_select_page',
166
-        'class' => 'chosen_select'
167
-    ),
168
-
169
-    array(
170
-        'name' => __('Terms and Conditions page', 'geodirectory'),
171
-        'desc' => __('Select the page to use for Terms and Conditions (if enabled)', 'geodirectory'),
172
-        'id' => 'geodir_term_condition_page',
173
-        'type' => 'single_select_page',
174
-        'class' => 'chosen_select'
175
-    ),
176
-
177
-    array(
178
-        'name' => __('Info page', 'geodirectory'),
179
-        'desc' => __('Select the page to use for Gd general Info', 'geodirectory'),
180
-        'id' => 'geodir_info_page',
181
-        'type' => 'single_select_page',
182
-        'class' => 'chosen_select'
183
-    ),
184
-
185
-    array(
186
-        'name' => __('Login page', 'geodirectory'),
187
-        'desc' => __('Select the page to use for Login / Register', 'geodirectory'),
188
-        'id' => 'geodir_login_page',
189
-        'type' => 'single_select_page',
190
-        'class' => 'chosen_select'
191
-    ),
192
-
193
-
194
-    array('type' => 'sectionend', 'id' => 'geodir_pages'),
195
-
196
-    /* Listing Detail Permalink Settings End */
19
+	/* Listing Permalink Settings start */
20
+	array('name' => __('Permalink', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set permalink', 'id' => 'geodir_permalink_settings '),
21
+
22
+
23
+	array('name' => __('Listing Detail Permalink Settings', 'geodirectory'),
24
+		'type' => 'sectionstart',
25
+		'desc' => '',
26
+		'id' => 'geodir_permalink'),
27
+
28
+	array(
29
+		'name' => __('Add location in urls', 'geodirectory'),
30
+		'desc' => __('Add location slug in listing urls', 'geodirectory'),
31
+		'id' => 'geodir_add_location_url',
32
+		'type' => 'checkbox',
33
+		'std' => '1',
34
+		'checkboxgroup' => 'start'
35
+	),
36
+
37
+	array(
38
+		'name' => __('Add full location in listing urls', 'geodirectory'),
39
+		'desc' => __('Add full location info with country, region and city slug in listing urls', 'geodirectory'),
40
+		'id' => 'geodir_show_location_url',
41
+		'type' => 'radio',
42
+		'value' => 'all',
43
+		'std' => 'all',
44
+		'radiogroup' => ''
45
+	),
46
+
47
+	array(
48
+		'name' => __('Add country and city slug in listing urls', 'geodirectory'),
49
+		'desc' => __('Add country and city slug in listing urls (/country/city/)', 'geodirectory'),
50
+		'id' => 'geodir_show_location_url',
51
+		'type' => 'radio',
52
+		'std' => 'all',
53
+		'value' => 'country_city',
54
+		'radiogroup' => ''
55
+	),
56
+	array(
57
+		'name' => __('Add region and city slug in listing urls', 'geodirectory'),
58
+		'desc' => __('Add region and city slug in listing urls (/region/city/)', 'geodirectory'),
59
+		'id' => 'geodir_show_location_url',
60
+		'type' => 'radio',
61
+		'std' => 'all',
62
+		'value' => 'region_city',
63
+		'radiogroup' => ''
64
+	),
65
+	array(
66
+		'name' => __('Add only city in listing urls', 'geodirectory'),
67
+		'desc' => __('Add city slug in listing urls', 'geodirectory'),
68
+		'id' => 'geodir_show_location_url',
69
+		'type' => 'radio',
70
+		'std' => 'all',
71
+		'value' => 'city',
72
+		'radiogroup' => 'end'
73
+	),
74
+
75
+
76
+
77
+	array(
78
+		'name' => __('Add category in listing urls', 'geodirectory'),
79
+		'desc' => __('Add requested category slugs in listing urls', 'geodirectory'),
80
+		'id' => 'geodir_add_categories_url',
81
+		'type' => 'checkbox',
82
+		'std' => '1',
83
+	),
84
+
85
+	array(
86
+		'name' => __('Listing url prefix', 'geodirectory'),
87
+		'desc' => __('Listing prefix to show in url', 'geodirectory'),
88
+		'id' => 'geodir_listing_prefix',
89
+		'type' => 'text',
90
+		'css' => 'min-width:300px;',
91
+		'std' => 'places'
92
+	),
93
+
94
+	array(
95
+		'name' => __('Location url prefix', 'geodirectory'),
96
+		'desc' => __('Depreciated, now uses the location page slug', 'geodirectory'),
97
+		'id' => 'geodir_location_prefix',
98
+		'type' => 'text',
99
+		'css' => 'min-width:300px;',
100
+		'std' => 'location' // Default value to show home top section
101
+	),
102
+
103
+	array(
104
+		'name' => __('Location and category url separator', 'geodirectory'),
105
+		'desc' => __('Separator to show between location and category url slugs in listing urls', 'geodirectory'),
106
+		'id' => 'geodir_listingurl_separator',
107
+		'type' => 'text',
108
+		'css' => 'min-width:300px;',
109
+		'std' => 'C' // Default value to show home top section
110
+	),
111
+
112
+	array(
113
+		'name' => __('Listing detail url separator', 'geodirectory'),
114
+		'desc' => __('Separator to show before listing slug in listing detail urls', 'geodirectory'),
115
+		'id' => 'geodir_detailurl_separator',
116
+		'type' => 'text',
117
+		'css' => 'min-width:300px;',
118
+		'std' => 'info' // Default value to show home top section
119
+	),
120
+
121
+
122
+	array('type' => 'sectionend', 'id' => 'geodir_permalink'),
123
+
124
+	array('name' => __('GeoDirectory Pages', 'geodirectory'),
125
+		'type' => 'sectionstart',
126
+		'desc' => '',
127
+		'id' => 'geodir_pages'),
128
+
129
+	array(
130
+		'name' => __('GD Home page', 'geodirectory'),
131
+		'desc' => __('Select the page to use for the GD homepage (you must also set this page in Settings>Reading>Front page for it to work)', 'geodirectory'),
132
+		'id' => 'geodir_home_page',
133
+		'type' => 'single_select_page',
134
+		'class' => 'chosen_select'
135
+	),
136
+
137
+	array(
138
+		'name' => __('Add listing page', 'geodirectory'),
139
+		'desc' => __('Select the page to use for adding listings', 'geodirectory'),
140
+		'id' => 'geodir_add_listing_page',
141
+		'type' => 'single_select_page',
142
+		'class' => 'chosen_select'
143
+	),
144
+
145
+	array(
146
+		'name' => __('Listing preview page', 'geodirectory'),
147
+		'desc' => __('Select the page to use for listing preview', 'geodirectory'),
148
+		'id' => 'geodir_preview_page',
149
+		'type' => 'single_select_page',
150
+		'class' => 'chosen_select'
151
+	),
152
+
153
+	array(
154
+		'name' => __('Listing success page', 'geodirectory'),
155
+		'desc' => __('Select the page to use for listing success', 'geodirectory'),
156
+		'id' => 'geodir_success_page',
157
+		'type' => 'single_select_page',
158
+		'class' => 'chosen_select'
159
+	),
160
+
161
+	array(
162
+		'name' => __('Location page', 'geodirectory'),
163
+		'desc' => __('Select the page to use for locations', 'geodirectory'),
164
+		'id' => 'geodir_location_page',
165
+		'type' => 'single_select_page',
166
+		'class' => 'chosen_select'
167
+	),
168
+
169
+	array(
170
+		'name' => __('Terms and Conditions page', 'geodirectory'),
171
+		'desc' => __('Select the page to use for Terms and Conditions (if enabled)', 'geodirectory'),
172
+		'id' => 'geodir_term_condition_page',
173
+		'type' => 'single_select_page',
174
+		'class' => 'chosen_select'
175
+	),
176
+
177
+	array(
178
+		'name' => __('Info page', 'geodirectory'),
179
+		'desc' => __('Select the page to use for Gd general Info', 'geodirectory'),
180
+		'id' => 'geodir_info_page',
181
+		'type' => 'single_select_page',
182
+		'class' => 'chosen_select'
183
+	),
184
+
185
+	array(
186
+		'name' => __('Login page', 'geodirectory'),
187
+		'desc' => __('Select the page to use for Login / Register', 'geodirectory'),
188
+		'id' => 'geodir_login_page',
189
+		'type' => 'single_select_page',
190
+		'class' => 'chosen_select'
191
+	),
192
+
193
+
194
+	array('type' => 'sectionend', 'id' => 'geodir_pages'),
195
+
196
+	/* Listing Detail Permalink Settings End */
197 197
 
198 198
 
199 199
 )); // End Design settings
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/Divi.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -18,11 +18,11 @@  discard block
 block discarded – undo
18 18
  */
19 19
 function geodir_divi_signup_body_class($classes)
20 20
 {
21
-    if (geodir_is_page('login')) {
22
-        $classes = str_replace('et_right_sidebar', 'et_full_width_page', $classes);
23
-        $classes[] = 'divi-gd-signup';
24
-    }
25
-    return $classes;
21
+	if (geodir_is_page('login')) {
22
+		$classes = str_replace('et_right_sidebar', 'et_full_width_page', $classes);
23
+		$classes[] = 'divi-gd-signup';
24
+	}
25
+	return $classes;
26 26
 }
27 27
 
28 28
 add_action('geodir_wrapper_close', 'geodir_divi_action_wrapper_close', 11);
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
  */
35 35
 function geodir_divi_action_wrapper_close()
36 36
 {
37
-    if (geodir_is_page('login')) {
38
-        // We need to close extra divs generated by WRAPPER BEFORE MAIN CONTENT (below) because there is no sidebar on this page
39
-        echo '</div></div>';
40
-    }
37
+	if (geodir_is_page('login')) {
38
+		// We need to close extra divs generated by WRAPPER BEFORE MAIN CONTENT (below) because there is no sidebar on this page
39
+		echo '</div></div>';
40
+	}
41 41
 }
42 42
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/compatibility/Multi_News.php 3 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,8 +126,10 @@
 block discarded – undo
126 126
     $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
127 127
     if (preg_match_all("/$regexp/siU", $crums, $matches)) {
128 128
         return $matches[0];
129
-    } else return '';
130
-}
129
+    } else {
130
+    	return '';
131
+    }
132
+    }
131 133
 
132 134
 
133 135
 /**
Please login to merge, or discard this patch.
Indentation   +87 added lines, -87 removed lines patch added patch discarded remove patch
@@ -16,36 +16,36 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function multi_news_action_calls()
18 18
 {
19
-    // REMOVE BREADCRUMB
20
-    remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
21
-    remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
22
-    remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
23
-    remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
24
-    remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
25
-    remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
26
-
27
-    //ADD BREADCRUMS
28
-    add_action('geodir_detail_before_main_content', 'gd_mn_replace_breadcrums', 20);
29
-    add_action('geodir_listings_before_main_content', 'gd_mn_replace_breadcrums', 20);
30
-    add_action('geodir_author_before_main_content', 'gd_mn_replace_breadcrums', 20);
31
-    add_action('geodir_search_before_main_content', 'gd_mn_replace_breadcrums', 20);
32
-    //add_action('geodir_home_before_main_content', 'gd_mn_replace_breadcrums', 20);
33
-    add_action('geodir_location_before_main_content', 'gd_mn_replace_breadcrums', 20);
34
-
35
-
36
-    // fix breadcrums
37
-    add_filter('breadcrumbs_plus_items', 'gd_breadcrumbs_plus_items', 1);
38
-
39
-    // REMOVE PAGE TITLES
40
-    remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
41
-    // remove_action( 'geodir_add_listing_page_title', 'geodir_action_add_listing_page_title',10);
42
-    remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
43
-    remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
44
-    remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
45
-
46
-
47
-    add_action('geodir_wrapper_content_open', 'gd_mn_extra_wrap', 30, 1);
48
-    add_action('geodir_wrapper_content_close', 'gd_mn_extra_wrap_end', 3, 1);
19
+	// REMOVE BREADCRUMB
20
+	remove_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
21
+	remove_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
22
+	remove_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
23
+	remove_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
24
+	remove_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
25
+	remove_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
26
+
27
+	//ADD BREADCRUMS
28
+	add_action('geodir_detail_before_main_content', 'gd_mn_replace_breadcrums', 20);
29
+	add_action('geodir_listings_before_main_content', 'gd_mn_replace_breadcrums', 20);
30
+	add_action('geodir_author_before_main_content', 'gd_mn_replace_breadcrums', 20);
31
+	add_action('geodir_search_before_main_content', 'gd_mn_replace_breadcrums', 20);
32
+	//add_action('geodir_home_before_main_content', 'gd_mn_replace_breadcrums', 20);
33
+	add_action('geodir_location_before_main_content', 'gd_mn_replace_breadcrums', 20);
34
+
35
+
36
+	// fix breadcrums
37
+	add_filter('breadcrumbs_plus_items', 'gd_breadcrumbs_plus_items', 1);
38
+
39
+	// REMOVE PAGE TITLES
40
+	remove_action('geodir_listings_page_title', 'geodir_action_listings_title', 10);
41
+	// remove_action( 'geodir_add_listing_page_title', 'geodir_action_add_listing_page_title',10);
42
+	remove_action('geodir_details_main_content', 'geodir_action_page_title', 20);
43
+	remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10);
44
+	remove_action('geodir_author_page_title', 'geodir_action_author_page_title', 10);
45
+
46
+
47
+	add_action('geodir_wrapper_content_open', 'gd_mn_extra_wrap', 30, 1);
48
+	add_action('geodir_wrapper_content_close', 'gd_mn_extra_wrap_end', 3, 1);
49 49
 }
50 50
 
51 51
 /**
@@ -57,11 +57,11 @@  discard block
 block discarded – undo
57 57
  */
58 58
 function gd_mn_extra_wrap($page)
59 59
 {
60
-    if ($page == 'add-listing-page') {
61
-        echo '<div class="site-content page-wrap">';
62
-    } elseif ($page == 'signup-page') {
63
-        echo '</div><div class="section full-width-section" style="float: left;width:100%;">';
64
-    }
60
+	if ($page == 'add-listing-page') {
61
+		echo '<div class="site-content page-wrap">';
62
+	} elseif ($page == 'signup-page') {
63
+		echo '</div><div class="section full-width-section" style="float: left;width:100%;">';
64
+	}
65 65
 
66 66
 }
67 67
 
@@ -75,9 +75,9 @@  discard block
 block discarded – undo
75 75
  */
76 76
 function gd_mn_extra_wrap_end($page)
77 77
 {
78
-    if ($page == 'add-listing-page') {
79
-        echo '</div>';
80
-    }
78
+	if ($page == 'add-listing-page') {
79
+		echo '</div>';
80
+	}
81 81
 
82 82
 }
83 83
 
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
 function gd_mn_replace_breadcrums()
92 92
 {
93 93
 
94
-    if (mom_option('breadcrumb') != 0) { ?>
94
+	if (mom_option('breadcrumb') != 0) { ?>
95 95
         <?php if (mom_option('cats_bread')) {
96
-            $cclass = '';
97
-            if (mom_option('cat_slider') == false) {
98
-                $cclass = 'post-crumbs ';
99
-            }
100
-            ?>
96
+			$cclass = '';
97
+			if (mom_option('cat_slider') == false) {
98
+				$cclass = 'post-crumbs ';
99
+			}
100
+			?>
101 101
             <div class="<?php echo $cclass; ?>entry-crumbs" xmlns:v="http://rdf.data-vocabulary.org/#">
102 102
 
103 103
                 <?php mom_breadcrumb(); ?>
@@ -119,14 +119,14 @@  discard block
 block discarded – undo
119 119
  */
120 120
 function gd_get_breadcrum_links()
121 121
 {
122
-    ob_start();
123
-    geodir_breadcrumb();
124
-    $crums = ob_get_contents();
125
-    ob_get_clean();
126
-    $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
127
-    if (preg_match_all("/$regexp/siU", $crums, $matches)) {
128
-        return $matches[0];
129
-    } else return '';
122
+	ob_start();
123
+	geodir_breadcrumb();
124
+	$crums = ob_get_contents();
125
+	ob_get_clean();
126
+	$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";
127
+	if (preg_match_all("/$regexp/siU", $crums, $matches)) {
128
+		return $matches[0];
129
+	} else return '';
130 130
 }
131 131
 
132 132
 
@@ -140,30 +140,30 @@  discard block
 block discarded – undo
140 140
  */
141 141
 function gd_breadcrumbs_plus_items($items)
142 142
 {   //print_r($items);exit;
143
-    $bits = array();
144
-    $pieces = gd_get_breadcrum_links();
145
-    //unset($pieces[0]);
146
-    $bits = $pieces;
143
+	$bits = array();
144
+	$pieces = gd_get_breadcrum_links();
145
+	//unset($pieces[0]);
146
+	$bits = $pieces;
147 147
 
148
-    $title = $items['last'];
149
-    if (is_page_geodir_home() || geodir_is_page('location')) {
148
+	$title = $items['last'];
149
+	if (is_page_geodir_home() || geodir_is_page('location')) {
150 150
 
151
-    } elseif (geodir_is_page('listing')) {
151
+	} elseif (geodir_is_page('listing')) {
152 152
 
153
-    } elseif (geodir_is_page('detail')) {
154
-        ob_start();
155
-        geodir_action_page_title();
156
-        $title = ob_get_contents();
157
-        ob_end_clean();
158
-    } elseif (geodir_is_page('search')) {
159
-    } elseif (geodir_is_page('author')) {
160
-    }
153
+	} elseif (geodir_is_page('detail')) {
154
+		ob_start();
155
+		geodir_action_page_title();
156
+		$title = ob_get_contents();
157
+		ob_end_clean();
158
+	} elseif (geodir_is_page('search')) {
159
+	} elseif (geodir_is_page('author')) {
160
+	}
161 161
 
162
-    $title = strip_tags($title);
163
-    $items = gd_breadcrumbs_plus_items_add($items, $bits, $title);
162
+	$title = strip_tags($title);
163
+	$items = gd_breadcrumbs_plus_items_add($items, $bits, $title);
164 164
 
165 165
 
166
-    return $items;
166
+	return $items;
167 167
 }
168 168
 
169 169
 
@@ -179,28 +179,28 @@  discard block
 block discarded – undo
179 179
  */
180 180
 function gd_breadcrumbs_plus_items_add($items, $bits, $last)
181 181
 {
182
-    //$pieces = explode("</div>", $items[0]);
183
-    if (is_array($bits)) {
184
-        $items = array();
185
-        $pieces = '';
186
-        foreach ($bits as $bit) {
187
-            $pieces .= $bit;
188
-        }
189
-        $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">' . $pieces . "</div>";
190
-        if (isset($last) && $last) {
191
-            $items['last'] = $last;
192
-        }
193
-    }
194
-
195
-    //print_r($items);
196
-    return $items;
182
+	//$pieces = explode("</div>", $items[0]);
183
+	if (is_array($bits)) {
184
+		$items = array();
185
+		$pieces = '';
186
+		foreach ($bits as $bit) {
187
+			$pieces .= $bit;
188
+		}
189
+		$items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">' . $pieces . "</div>";
190
+		if (isset($last) && $last) {
191
+			$items['last'] = $last;
192
+		}
193
+	}
194
+
195
+	//print_r($items);
196
+	return $items;
197 197
 
198 198
 }
199 199
 
200 200
 add_filter('geodir_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1);
201 201
 add_filter('geodir_location_switcher_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1);
202 202
 function gd_multinews_mobile_menu_caret($html){
203
-    $html .= '<i class="responsive-caret"></i>';
204
-    return $html;
203
+	$html .= '<i class="responsive-caret"></i>';
204
+	return $html;
205 205
 
206 206
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         foreach ($bits as $bit) {
187 187
             $pieces .= $bit;
188 188
         }
189
-        $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">' . $pieces . "</div>";
189
+        $items[0] = '<div class="vbreadcrumb" typeof="v:Breadcrumb">'.$pieces."</div>";
190 190
         if (isset($last) && $last) {
191 191
             $items['last'] = $last;
192 192
         }
@@ -197,9 +197,9 @@  discard block
 block discarded – undo
197 197
 
198 198
 }
199 199
 
200
-add_filter('geodir_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1);
201
-add_filter('geodir_location_switcher_menu_after_sub_ul','gd_multinews_mobile_menu_caret',10,1);
202
-function gd_multinews_mobile_menu_caret($html){
200
+add_filter('geodir_menu_after_sub_ul', 'gd_multinews_mobile_menu_caret', 10, 1);
201
+add_filter('geodir_location_switcher_menu_after_sub_ul', 'gd_multinews_mobile_menu_caret', 10, 1);
202
+function gd_multinews_mobile_menu_caret($html) {
203 203
     $html .= '<i class="responsive-caret"></i>';
204 204
     return $html;
205 205
 
Please login to merge, or discard this patch.
geodirectory-templates/geodir-signup.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
  * If user is not signed in, redirect home.
14 14
  */
15 15
 if (get_current_user_id()) {
16
-    wp_redirect(home_url(), 302);
17
-    exit;
16
+	wp_redirect(home_url(), 302);
17
+	exit;
18 18
 }
19 19
 
20 20
 // call header
Please login to merge, or discard this patch.
geodirectory-templates/preview-success.php 2 patches
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -15,29 +15,29 @@  discard block
 block discarded – undo
15 15
     <?php
16 16
 
17 17
 
18
-    global $wpdb;
18
+	global $wpdb;
19 19
 
20
-    $post_id = $_REQUEST['pid'];
21
-    $post_info = get_post($post_id);
20
+	$post_id = $_REQUEST['pid'];
21
+	$post_info = get_post($post_id);
22 22
 
23
-    $posted_date = $post_info->post_date;
24
-    $productlink = get_permalink($post_id);
25
-    $siteName = get_bloginfo('name');
26
-    $siteurl = home_url();
27
-    $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
23
+	$posted_date = $post_info->post_date;
24
+	$productlink = get_permalink($post_id);
25
+	$siteName = get_bloginfo('name');
26
+	$siteurl = home_url();
27
+	$siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
28 28
 
29
-    $loginurl = geodir_login_url();
30
-    $loginurl_link = '<a href="' . $loginurl . '">login</a>';
29
+	$loginurl = geodir_login_url();
30
+	$loginurl_link = '<a href="' . $loginurl . '">login</a>';
31 31
 
32
-    $post_author = $post_info->post_author;
32
+	$post_author = $post_info->post_author;
33 33
 
34
-    $user_info = get_userdata($post_author);
35
-    $username = $user_info->user_login;
36
-    $user_email = $user_info->user_email;
34
+	$user_info = get_userdata($post_author);
35
+	$username = $user_info->user_login;
36
+	$user_email = $user_info->user_email;
37 37
 
38
-    $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')),'geodirectory'));
38
+	$message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')),'geodirectory'));
39 39
 
40
-    /*
40
+	/*
41 41
      * Filter the success page message before variable replacements.
42 42
      *
43 43
      * @since 1.5.7
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
      * @param object $post_info Post object.
46 46
      * @param object $user_info User object.
47 47
      */
48
-    $message = apply_filters('geodir_success_page_msg_before_var_replace', $message,$post_info, $user_info);
48
+	$message = apply_filters('geodir_success_page_msg_before_var_replace', $message,$post_info, $user_info);
49 49
 
50
-    $search_array = array('[#submited_information_link#]', '[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#user_email#]', '[#username#]', '[#login_url#]', '[#posted_date#]');
51
-    $replace_array = array($productlink, $productlink, $siteurl_link, $post_id, $siteName, $user_email, $username, $loginurl_link, $posted_date);
52
-    $message = str_replace($search_array, $replace_array, $message);
50
+	$search_array = array('[#submited_information_link#]', '[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#user_email#]', '[#username#]', '[#login_url#]', '[#posted_date#]');
51
+	$replace_array = array($productlink, $productlink, $siteurl_link, $post_id, $siteName, $user_email, $username, $loginurl_link, $posted_date);
52
+	$message = str_replace($search_array, $replace_array, $message);
53 53
 
54
-    /*
54
+	/*
55 55
      * Filter the success page message after variable replacements.
56 56
      *
57 57
      * @since 1.5.7
@@ -59,15 +59,15 @@  discard block
 block discarded – undo
59 59
      * @param object $post_info Post object.
60 60
      * @param object $user_info User object.
61 61
      */
62
-    $message = apply_filters('geodir_success_page_msg_after_var_replace', $message,$post_info, $user_info);
62
+	$message = apply_filters('geodir_success_page_msg_after_var_replace', $message,$post_info, $user_info);
63 63
 
64 64
 
65 65
 
66
-    ?>
66
+	?>
67 67
 
68 68
     <?php
69 69
 
70
-    /*
70
+	/*
71 71
      * Action called before the success page message wrapper.
72 72
      *
73 73
      * @since 1.5.7
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
      * @param object $post_info Post object.
76 76
      * @param object $user_info User object.
77 77
      */
78
-    do_action('geodir_before_success_page_msg_wrapper', $message,$post_info, $user_info);
79
-    echo '<h5 class="geodir_information">';
80
-    echo $message;
81
-    echo '</h5>';
82
-    /*
78
+	do_action('geodir_before_success_page_msg_wrapper', $message,$post_info, $user_info);
79
+	echo '<h5 class="geodir_information">';
80
+	echo $message;
81
+	echo '</h5>';
82
+	/*
83 83
      * Action called after the success page message wrapper.
84 84
      *
85 85
      * @since 1.5.7
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
      * @param object $post_info Post object.
88 88
      * @param object $user_info User object.
89 89
      */
90
-    do_action('geodir_after_success_page_msg_wrapper', $message,$post_info, $user_info);
90
+	do_action('geodir_after_success_page_msg_wrapper', $message,$post_info, $user_info);
91 91
 
92
-    ?>
92
+	?>
93 93
 
94 94
 </div>
95 95
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@  discard block
 block discarded – undo
24 24
     $productlink = get_permalink($post_id);
25 25
     $siteName = get_bloginfo('name');
26 26
     $siteurl = home_url();
27
-    $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
27
+    $siteurl_link = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
28 28
 
29 29
     $loginurl = geodir_login_url();
30
-    $loginurl_link = '<a href="' . $loginurl . '">login</a>';
30
+    $loginurl_link = '<a href="'.$loginurl.'">login</a>';
31 31
 
32 32
     $post_author = $post_info->post_author;
33 33
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     $username = $user_info->user_login;
36 36
     $user_email = $user_info->user_email;
37 37
 
38
-    $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')),'geodirectory'));
38
+    $message = wpautop(__(stripslashes_deep(get_option('geodir_post_added_success_msg_content')), 'geodirectory'));
39 39
 
40 40
     /*
41 41
      * Filter the success page message before variable replacements.
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * @param object $post_info Post object.
46 46
      * @param object $user_info User object.
47 47
      */
48
-    $message = apply_filters('geodir_success_page_msg_before_var_replace', $message,$post_info, $user_info);
48
+    $message = apply_filters('geodir_success_page_msg_before_var_replace', $message, $post_info, $user_info);
49 49
 
50 50
     $search_array = array('[#submited_information_link#]', '[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#user_email#]', '[#username#]', '[#login_url#]', '[#posted_date#]');
51 51
     $replace_array = array($productlink, $productlink, $siteurl_link, $post_id, $siteName, $user_email, $username, $loginurl_link, $posted_date);
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @param object $post_info Post object.
60 60
      * @param object $user_info User object.
61 61
      */
62
-    $message = apply_filters('geodir_success_page_msg_after_var_replace', $message,$post_info, $user_info);
62
+    $message = apply_filters('geodir_success_page_msg_after_var_replace', $message, $post_info, $user_info);
63 63
 
64 64
 
65 65
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * @param object $post_info Post object.
76 76
      * @param object $user_info User object.
77 77
      */
78
-    do_action('geodir_before_success_page_msg_wrapper', $message,$post_info, $user_info);
78
+    do_action('geodir_before_success_page_msg_wrapper', $message, $post_info, $user_info);
79 79
     echo '<h5 class="geodir_information">';
80 80
     echo $message;
81 81
     echo '</h5>';
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
      * @param object $post_info Post object.
88 88
      * @param object $user_info User object.
89 89
      */
90
-    do_action('geodir_after_success_page_msg_wrapper', $message,$post_info, $user_info);
90
+    do_action('geodir_after_success_page_msg_wrapper', $message, $post_info, $user_info);
91 91
 
92 92
     ?>
93 93
 
Please login to merge, or discard this patch.
geodirectory-widgets/geodirectory_popular_widget.php 3 patches
Braces   +37 added lines, -14 removed lines patch added patch discarded remove patch
@@ -190,10 +190,11 @@  discard block
 block discarded – undo
190 190
         $instance['listing_width'] = strip_tags($new_instance['listing_width']);
191 191
         $instance['list_sort'] = strip_tags($new_instance['list_sort']);
192 192
         $instance['character_count'] = $new_instance['character_count'];
193
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
194
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
195
-        else
196
-            $instance['add_location_filter'] = '0';
193
+        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') {
194
+                    $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
195
+        } else {
196
+                    $instance['add_location_filter'] = '0';
197
+        }
197 198
 
198 199
         $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
199 200
         $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0;
@@ -319,8 +320,9 @@  discard block
 block discarded – undo
319 320
 
320 321
                 $all_postypes = geodir_get_posttypes();
321 322
 
322
-                if (!in_array($post_type, $all_postypes))
323
-                    $post_type = 'gd_place';
323
+                if (!in_array($post_type, $all_postypes)) {
324
+                                    $post_type = 'gd_place';
325
+                }
324 326
 
325 327
                 $category_taxonomy = geodir_get_taxonomies($post_type);
326 328
                 $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
@@ -335,8 +337,9 @@  discard block
 block discarded – undo
335 337
                     } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
336 338
                     <?php foreach ($categories as $category_obj) {
337 339
                         $selected = '';
338
-                        if (is_array($category) && in_array($category_obj->term_id, $category))
339
-                            echo $selected = 'selected="selected"';
340
+                        if (is_array($category) && in_array($category_obj->term_id, $category)) {
341
+                                                    echo $selected = 'selected="selected"';
342
+                        }
340 343
 
341 344
                         ?>
342 345
 
@@ -350,7 +353,12 @@  discard block
 block discarded – undo
350 353
 
351 354
                 <input type="hidden" name="<?php echo $this->get_field_name('category_title'); ?>"
352 355
                        id="<?php echo $this->get_field_id('category_title'); ?>"
353
-                       value="<?php if ($category_title != '') echo $category_title; else echo __('All', 'geodirectory');?>"/>
356
+                       value="<?php if ($category_title != '') {
357
+	echo $category_title;
358
+} else {
359
+	echo __('All', 'geodirectory');
360
+}
361
+?>"/>
354 362
 
355 363
             </label>
356 364
         </p>
@@ -453,7 +461,10 @@  discard block
 block discarded – undo
453 461
             <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
454 462
                 <?php _e('Enable Location Filter:', 'geodirectory');?>
455 463
                 <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
456
-                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
464
+                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) {
465
+	echo 'checked="checked"';
466
+}
467
+?>
457 468
                        value="1"/>
458 469
             </label>
459 470
         </p>
@@ -461,7 +472,10 @@  discard block
 block discarded – undo
461 472
             <label for="<?php echo $this->get_field_id('show_featured_only'); ?>">
462 473
                 <?php _e('Show only featured listings:', 'geodirectory');?> <input type="checkbox"
463 474
                                                                                             id="<?php echo $this->get_field_id('show_featured_only'); ?>"
464
-                                                                                            name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"';?>
475
+                                                                                            name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) {
476
+	echo 'checked="checked"';
477
+}
478
+?>
465 479
                                                                                             value="1"/>
466 480
             </label>
467 481
         </p>
@@ -469,7 +483,10 @@  discard block
 block discarded – undo
469 483
             <label for="<?php echo $this->get_field_id('show_special_only'); ?>">
470 484
                 <?php _e('Show only listings with special offers:', 'geodirectory');?> <input type="checkbox"
471 485
                                                                                                        id="<?php echo $this->get_field_id('show_special_only'); ?>"
472
-                                                                                                       name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) echo 'checked="checked"';?>
486
+                                                                                                       name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) {
487
+	echo 'checked="checked"';
488
+}
489
+?>
473 490
                                                                                                        value="1"/>
474 491
             </label>
475 492
         </p>
@@ -477,7 +494,10 @@  discard block
 block discarded – undo
477 494
             <label for="<?php echo $this->get_field_id('with_pics_only'); ?>">
478 495
                 <?php _e('Show only listings with pics:', 'geodirectory');?> <input type="checkbox"
479 496
                                                                                              id="<?php echo $this->get_field_id('with_pics_only'); ?>"
480
-                                                                                             name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) echo 'checked="checked"';?>
497
+                                                                                             name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) {
498
+	echo 'checked="checked"';
499
+}
500
+?>
481 501
                                                                                              value="1"/>
482 502
             </label>
483 503
         </p>
@@ -485,7 +505,10 @@  discard block
 block discarded – undo
485 505
             <label for="<?php echo $this->get_field_id('with_videos_only'); ?>">
486 506
                 <?php _e('Show only listings with videos:', 'geodirectory');?> <input type="checkbox"
487 507
                                                                                                id="<?php echo $this->get_field_id('with_videos_only'); ?>"
488
-                                                                                               name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) echo 'checked="checked"';?>
508
+                                                                                               name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) {
509
+	echo 'checked="checked"';
510
+}
511
+?>
489 512
                                                                                                value="1"/>
490 513
             </label>
491 514
         </p>
Please login to merge, or discard this patch.
Indentation   +204 added lines, -204 removed lines patch added patch discarded remove patch
@@ -14,83 +14,83 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class geodir_popular_post_category extends WP_Widget
16 16
 {
17
-    /**
18
-     * Register the popular post category widget.
19
-     *
20
-     * @since 1.0.0
21
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
-     */
23
-    public function __construct() {
24
-        $widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
25
-        parent::__construct(
26
-            'popular_post_category', // Base ID
27
-            __('GD > Popular Post Category', 'geodirectory'), // Name
28
-            $widget_ops// Args
29
-        );
30
-    }
31
-
32
-    /**
33
-     * Front-end display content for popular post category widget.
34
-     *
35
-     * @since 1.0.0
36
-     * @since 1.5.1 Declare function public.
37
-     *
38
-     * @param array $args     Widget arguments.
39
-     * @param array $instance Saved values from database.
40
-     */
41
-    public function widget($args, $instance)
42
-    {
43
-        geodir_popular_post_category_output($args, $instance);
44
-    }
45
-
46
-    /**
47
-     * Sanitize popular post category widget form values as they are saved.
48
-     *
49
-     * @since 1.0.0
50
-     * @since 1.5.1 Declare function public.
51
-     * @since 1.5.1 Added default_post_type parameter.
52
-     * @since 1.6.9 Added parent_only parameter.
53
-     *
54
-     * @param array $new_instance Values just sent to be saved.
55
-     * @param array $old_instance Previously saved values from database.
56
-     *
57
-     * @return array Updated safe values to be saved.
58
-     */ 
59
-    public function update($new_instance, $old_instance)
60
-    {
61
-        //save the widget
62
-        $instance = $old_instance;
63
-        $instance['title'] = strip_tags($new_instance['title']);
64
-        $category_limit = (int)$new_instance['category_limit'];
65
-        $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15;
66
-        $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : '';
67
-        $instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false;
68
-        return $instance;
69
-    }
70
-
71
-    /**
72
-     * Back-end popular post category widget settings form.
73
-     *
74
-     * @since 1.0.0
75
-     * @since 1.5.1 Declare function public.
76
-     * @since 1.5.1 Added option to set default post type.
77
-     * @since 1.6.9 Added option to show parent categories only.
78
-     *
79
-     * @param array $instance Previously saved values from database.
80
-     */
81
-    public function form($instance) 
82
-    {
83
-        //widgetform in backend
84
-        $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
85
-
86
-        $title = strip_tags($instance['title']);
87
-        $category_limit = (int)$instance['category_limit'];
88
-        $category_limit = $category_limit > 0 ? $category_limit : 15;
89
-        $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : '';
90
-        $parent_only = !empty($instance['parent_only']) ? true: false;
17
+	/**
18
+	 * Register the popular post category widget.
19
+	 *
20
+	 * @since 1.0.0
21
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
+	 */
23
+	public function __construct() {
24
+		$widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
25
+		parent::__construct(
26
+			'popular_post_category', // Base ID
27
+			__('GD > Popular Post Category', 'geodirectory'), // Name
28
+			$widget_ops// Args
29
+		);
30
+	}
31
+
32
+	/**
33
+	 * Front-end display content for popular post category widget.
34
+	 *
35
+	 * @since 1.0.0
36
+	 * @since 1.5.1 Declare function public.
37
+	 *
38
+	 * @param array $args     Widget arguments.
39
+	 * @param array $instance Saved values from database.
40
+	 */
41
+	public function widget($args, $instance)
42
+	{
43
+		geodir_popular_post_category_output($args, $instance);
44
+	}
45
+
46
+	/**
47
+	 * Sanitize popular post category widget form values as they are saved.
48
+	 *
49
+	 * @since 1.0.0
50
+	 * @since 1.5.1 Declare function public.
51
+	 * @since 1.5.1 Added default_post_type parameter.
52
+	 * @since 1.6.9 Added parent_only parameter.
53
+	 *
54
+	 * @param array $new_instance Values just sent to be saved.
55
+	 * @param array $old_instance Previously saved values from database.
56
+	 *
57
+	 * @return array Updated safe values to be saved.
58
+	 */ 
59
+	public function update($new_instance, $old_instance)
60
+	{
61
+		//save the widget
62
+		$instance = $old_instance;
63
+		$instance['title'] = strip_tags($new_instance['title']);
64
+		$category_limit = (int)$new_instance['category_limit'];
65
+		$instance['category_limit'] = $category_limit > 0 ? $category_limit : 15;
66
+		$instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : '';
67
+		$instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false;
68
+		return $instance;
69
+	}
70
+
71
+	/**
72
+	 * Back-end popular post category widget settings form.
73
+	 *
74
+	 * @since 1.0.0
75
+	 * @since 1.5.1 Declare function public.
76
+	 * @since 1.5.1 Added option to set default post type.
77
+	 * @since 1.6.9 Added option to show parent categories only.
78
+	 *
79
+	 * @param array $instance Previously saved values from database.
80
+	 */
81
+	public function form($instance) 
82
+	{
83
+		//widgetform in backend
84
+		$instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
85
+
86
+		$title = strip_tags($instance['title']);
87
+		$category_limit = (int)$instance['category_limit'];
88
+		$category_limit = $category_limit > 0 ? $category_limit : 15;
89
+		$default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : '';
90
+		$parent_only = !empty($instance['parent_only']) ? true: false;
91 91
         
92
-        $post_type_options = geodir_get_posttypes('options');
93
-        ?>
92
+		$post_type_options = geodir_get_posttypes('options');
93
+		?>
94 94
         <p>
95 95
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
96 96
                 <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>"/>
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             <label for="<?php echo $this->get_field_id('parent_only'); ?>"><?php _e( 'Show parent categories only', 'geodirectory' ); ?></label>
117 117
         </p>
118 118
     <?php
119
-    }
119
+	}
120 120
 } // class geodir_popular_post_category
121 121
 
122 122
 register_widget('geodir_popular_post_category');
@@ -130,40 +130,40 @@  discard block
 block discarded – undo
130 130
 class geodir_popular_postview extends WP_Widget
131 131
 {
132 132
 
133
-    /**
133
+	/**
134 134
 	 * Register the popular posts widget.
135 135
 	 *
136 136
 	 * @since 1.0.0
137
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
137
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
138 138
 	 */
139
-    public function __construct() {
140
-        $widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
141
-        parent::__construct(
142
-            'popular_post_view', // Base ID
143
-            __('GD > Popular Post View', 'geodirectory'), // Name
144
-            $widget_ops// Args
145
-        );
146
-    }
139
+	public function __construct() {
140
+		$widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
141
+		parent::__construct(
142
+			'popular_post_view', // Base ID
143
+			__('GD > Popular Post View', 'geodirectory'), // Name
144
+			$widget_ops// Args
145
+		);
146
+	}
147 147
 
148 148
 	/**
149 149
 	 * Front-end display content for popular posts widget.
150 150
 	 *
151 151
 	 * @since 1.0.0
152
-     * @since 1.5.1 Declare function public.
152
+	 * @since 1.5.1 Declare function public.
153 153
 	 *
154 154
 	 * @param array $args     Widget arguments.
155 155
 	 * @param array $instance Saved values from database.
156 156
 	 */
157 157
 	public function widget($args, $instance)
158
-    {
159
-        geodir_popular_postview_output($args, $instance);
160
-    }
158
+	{
159
+		geodir_popular_postview_output($args, $instance);
160
+	}
161 161
 
162 162
 	/**
163 163
 	 * Sanitize popular posts widget form values as they are saved.
164 164
 	 *
165 165
 	 * @since 1.0.0
166
-     * @since 1.5.1 Declare function public.
166
+	 * @since 1.5.1 Declare function public.
167 167
 	 *
168 168
 	 * @param array $new_instance Values just sent to be saved.
169 169
 	 * @param array $old_instance Previously saved values from database.
@@ -171,99 +171,99 @@  discard block
 block discarded – undo
171 171
 	 * @return array Updated safe values to be saved.
172 172
 	 */
173 173
 	public function update($new_instance, $old_instance)
174
-    {
175
-        //save the widget
176
-        $instance = $old_instance;
177
-
178
-        if ($new_instance['title'] == '') {
179
-            $title = geodir_ucwords(strip_tags($new_instance['category_title']));
180
-            //$instance['title'] = $title;
181
-        }
182
-        $instance['title'] = strip_tags($new_instance['title']);
183
-
184
-        $instance['post_type'] = strip_tags($new_instance['post_type']);
185
-        //$instance['category'] = strip_tags($new_instance['category']);
186
-        $instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : '';
187
-        $instance['category_title'] = strip_tags($new_instance['category_title']);
188
-        $instance['post_number'] = strip_tags($new_instance['post_number']);
189
-        $instance['layout'] = strip_tags($new_instance['layout']);
190
-        $instance['listing_width'] = strip_tags($new_instance['listing_width']);
191
-        $instance['list_sort'] = strip_tags($new_instance['list_sort']);
192
-        $instance['character_count'] = $new_instance['character_count'];
193
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
194
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
195
-        else
196
-            $instance['add_location_filter'] = '0';
197
-
198
-        $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
199
-        $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0;
200
-        $instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0;
201
-        $instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0;
202
-        $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
203
-
204
-        return $instance;
205
-    }
174
+	{
175
+		//save the widget
176
+		$instance = $old_instance;
177
+
178
+		if ($new_instance['title'] == '') {
179
+			$title = geodir_ucwords(strip_tags($new_instance['category_title']));
180
+			//$instance['title'] = $title;
181
+		}
182
+		$instance['title'] = strip_tags($new_instance['title']);
183
+
184
+		$instance['post_type'] = strip_tags($new_instance['post_type']);
185
+		//$instance['category'] = strip_tags($new_instance['category']);
186
+		$instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : '';
187
+		$instance['category_title'] = strip_tags($new_instance['category_title']);
188
+		$instance['post_number'] = strip_tags($new_instance['post_number']);
189
+		$instance['layout'] = strip_tags($new_instance['layout']);
190
+		$instance['listing_width'] = strip_tags($new_instance['listing_width']);
191
+		$instance['list_sort'] = strip_tags($new_instance['list_sort']);
192
+		$instance['character_count'] = $new_instance['character_count'];
193
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
194
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
195
+		else
196
+			$instance['add_location_filter'] = '0';
197
+
198
+		$instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
199
+		$instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0;
200
+		$instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0;
201
+		$instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0;
202
+		$instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
203
+
204
+		return $instance;
205
+	}
206 206
 
207 207
 	/**
208 208
 	 * Back-end popular posts widget settings form.
209 209
 	 *
210 210
 	 * @since 1.0.0
211
-     * @since 1.5.1 Declare function public.
211
+	 * @since 1.5.1 Declare function public.
212 212
 	 *
213 213
 	 * @param array $instance Previously saved values from database.
214 214
 	 */
215 215
 	public function form($instance)
216
-    {
217
-        //widgetform in backend
218
-        $instance = wp_parse_args((array)$instance,
219
-            array('title' => '',
220
-                'post_type' => '',
221
-                'category' => array(),
222
-                'category_title' => '',
223
-                'list_sort' => '',
224
-                'list_order' => '',
225
-                'post_number' => '5',
226
-                'layout' => 'gridview_onehalf',
227
-                'listing_width' => '',
228
-                'add_location_filter' => '1',
229
-                'character_count' => '20',
230
-                'show_featured_only' => '',
231
-                'show_special_only' => '',
232
-                'with_pics_only' => '',
233
-                'with_videos_only' => '',
234
-                'use_viewing_post_type' => ''
235
-            )
236
-        );
216
+	{
217
+		//widgetform in backend
218
+		$instance = wp_parse_args((array)$instance,
219
+			array('title' => '',
220
+				'post_type' => '',
221
+				'category' => array(),
222
+				'category_title' => '',
223
+				'list_sort' => '',
224
+				'list_order' => '',
225
+				'post_number' => '5',
226
+				'layout' => 'gridview_onehalf',
227
+				'listing_width' => '',
228
+				'add_location_filter' => '1',
229
+				'character_count' => '20',
230
+				'show_featured_only' => '',
231
+				'show_special_only' => '',
232
+				'with_pics_only' => '',
233
+				'with_videos_only' => '',
234
+				'use_viewing_post_type' => ''
235
+			)
236
+		);
237 237
 
238
-        $title = strip_tags($instance['title']);
238
+		$title = strip_tags($instance['title']);
239 239
 
240
-        $post_type = strip_tags($instance['post_type']);
240
+		$post_type = strip_tags($instance['post_type']);
241 241
 
242
-        $category = $instance['category'];
242
+		$category = $instance['category'];
243 243
 
244
-        $category_title = strip_tags($instance['category_title']);
244
+		$category_title = strip_tags($instance['category_title']);
245 245
 
246
-        $list_sort = strip_tags($instance['list_sort']);
246
+		$list_sort = strip_tags($instance['list_sort']);
247 247
 
248
-        $list_order = strip_tags($instance['list_order']);
248
+		$list_order = strip_tags($instance['list_order']);
249 249
 
250
-        $post_number = strip_tags($instance['post_number']);
250
+		$post_number = strip_tags($instance['post_number']);
251 251
 
252
-        $layout = strip_tags($instance['layout']);
252
+		$layout = strip_tags($instance['layout']);
253 253
 
254
-        $listing_width = strip_tags($instance['listing_width']);
254
+		$listing_width = strip_tags($instance['listing_width']);
255 255
 
256
-        $add_location_filter = strip_tags($instance['add_location_filter']);
256
+		$add_location_filter = strip_tags($instance['add_location_filter']);
257 257
 
258
-        $character_count = $instance['character_count'];
258
+		$character_count = $instance['character_count'];
259 259
 
260
-        $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
261
-        $show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false;
262
-        $with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false;
263
-        $with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false;
264
-        $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
260
+		$show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
261
+		$show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false;
262
+		$with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false;
263
+		$with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false;
264
+		$use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
265 265
 
266
-        ?>
266
+		?>
267 267
 
268 268
         <p>
269 269
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
@@ -298,9 +298,9 @@  discard block
 block discarded – undo
298 298
                     <?php foreach ($postypes as $postypes_obj) { ?>
299 299
 
300 300
                         <option <?php if ($post_type == $postypes_obj) {
301
-                            echo 'selected="selected"';
302
-                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
303
-                            echo ucfirst($extvalue[1]); ?></option>
301
+							echo 'selected="selected"';
302
+						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
303
+							echo ucfirst($extvalue[1]); ?></option>
304 304
 
305 305
                     <?php } ?>
306 306
 
@@ -315,30 +315,30 @@  discard block
 block discarded – undo
315 315
 
316 316
                 <?php
317 317
 
318
-                $post_type = ($post_type != '') ? $post_type : 'gd_place';
318
+				$post_type = ($post_type != '') ? $post_type : 'gd_place';
319 319
 
320
-                $all_postypes = geodir_get_posttypes();
320
+				$all_postypes = geodir_get_posttypes();
321 321
 
322
-                if (!in_array($post_type, $all_postypes))
323
-                    $post_type = 'gd_place';
322
+				if (!in_array($post_type, $all_postypes))
323
+					$post_type = 'gd_place';
324 324
 
325
-                $category_taxonomy = geodir_get_taxonomies($post_type);
326
-                $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
325
+				$category_taxonomy = geodir_get_taxonomies($post_type);
326
+				$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
327 327
 
328
-                ?>
328
+				?>
329 329
 
330 330
                 <select multiple="multiple" class="widefat" name="<?php echo $this->get_field_name('category'); ?>[]"
331 331
                         onchange="geodir_popular_widget_cat_title(this)">
332 332
 
333 333
                     <option <?php if (!is_array($category) || (is_array($category) && in_array('0', $category))) {
334
-                        echo 'selected="selected"';
335
-                    } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
334
+						echo 'selected="selected"';
335
+					} ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
336 336
                     <?php foreach ($categories as $category_obj) {
337
-                        $selected = '';
338
-                        if (is_array($category) && in_array($category_obj->term_id, $category))
339
-                            echo $selected = 'selected="selected"';
337
+						$selected = '';
338
+						if (is_array($category) && in_array($category_obj->term_id, $category))
339
+							echo $selected = 'selected="selected"';
340 340
 
341
-                        ?>
341
+						?>
342 342
 
343 343
                         <option <?php echo $selected; ?>
344 344
                             value="<?php echo $category_obj->term_id; ?>"><?php echo ucfirst($category_obj->name); ?></option>
@@ -363,28 +363,28 @@  discard block
 block discarded – undo
363 363
                         name="<?php echo $this->get_field_name('list_sort'); ?>">
364 364
 
365 365
                     <option <?php if ($list_sort == 'az') {
366
-                        echo 'selected="selected"';
367
-                    } ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
366
+						echo 'selected="selected"';
367
+					} ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
368 368
 
369 369
                     <option <?php if ($list_sort == 'latest') {
370
-                        echo 'selected="selected"';
371
-                    } ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
370
+						echo 'selected="selected"';
371
+					} ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
372 372
 
373 373
                     <option <?php if ($list_sort == 'featured') {
374
-                        echo 'selected="selected"';
375
-                    } ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
374
+						echo 'selected="selected"';
375
+					} ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
376 376
 
377 377
                     <option <?php if ($list_sort == 'high_review') {
378
-                        echo 'selected="selected"';
379
-                    } ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
378
+						echo 'selected="selected"';
379
+					} ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
380 380
 
381 381
                     <option <?php if ($list_sort == 'high_rating') {
382
-                        echo 'selected="selected"';
383
-                    } ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
382
+						echo 'selected="selected"';
383
+					} ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
384 384
 
385 385
                     <option <?php if ($list_sort == 'random') {
386
-                        echo 'selected="selected"';
387
-                    } ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
386
+						echo 'selected="selected"';
387
+					} ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
388 388
 
389 389
                 </select>
390 390
             </label>
@@ -407,24 +407,24 @@  discard block
 block discarded – undo
407 407
                 <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
408 408
                         name="<?php echo $this->get_field_name('layout'); ?>">
409 409
                     <option <?php if ($layout == 'gridview_onehalf') {
410
-                        echo 'selected="selected"';
411
-                    } ?>
410
+						echo 'selected="selected"';
411
+					} ?>
412 412
                         value="gridview_onehalf"><?php _e('Grid View (Two Columns)', 'geodirectory'); ?></option>
413 413
                     <option <?php if ($layout == 'gridview_onethird') {
414
-                        echo 'selected="selected"';
415
-                    } ?>
414
+						echo 'selected="selected"';
415
+					} ?>
416 416
                         value="gridview_onethird"><?php _e('Grid View (Three Columns)', 'geodirectory'); ?></option>
417 417
                     <option <?php if ($layout == 'gridview_onefourth') {
418
-                        echo 'selected="selected"';
419
-                    } ?>
418
+						echo 'selected="selected"';
419
+					} ?>
420 420
                         value="gridview_onefourth"><?php _e('Grid View (Four Columns)', 'geodirectory'); ?></option>
421 421
                     <option <?php if ($layout == 'gridview_onefifth') {
422
-                        echo 'selected="selected"';
423
-                    } ?>
422
+						echo 'selected="selected"';
423
+					} ?>
424 424
                         value="gridview_onefifth"><?php _e('Grid View (Five Columns)', 'geodirectory'); ?></option>
425 425
                     <option <?php if ($layout == 'list') {
426
-                        echo 'selected="selected"';
427
-                    } ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
426
+						echo 'selected="selected"';
427
+					} ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
428 428
 
429 429
                 </select>
430 430
             </label>
@@ -494,8 +494,8 @@  discard block
 block discarded – undo
494 494
                 for="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"><?php _e('Use current viewing post type:', 'geodirectory'); ?>
495 495
                 <input type="checkbox" id="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"
496 496
                        name="<?php echo $this->get_field_name('use_viewing_post_type'); ?>" <?php if ($use_viewing_post_type) {
497
-                    echo 'checked="checked"';
498
-                } ?>  value="1"/>
497
+					echo 'checked="checked"';
498
+				} ?>  value="1"/>
499 499
             </label>
500 500
         </p>
501 501
 
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
         </script>
540 540
 
541 541
     <?php
542
-    }
542
+	}
543 543
 } // class geodir_popular_postview
544 544
 
545 545
 register_widget('geodir_popular_postview');
546 546
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         //save the widget
62 62
         $instance = $old_instance;
63 63
         $instance['title'] = strip_tags($new_instance['title']);
64
-        $category_limit = (int)$new_instance['category_limit'];
64
+        $category_limit = (int) $new_instance['category_limit'];
65 65
         $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15;
66 66
         $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : '';
67 67
         $instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false;
@@ -81,13 +81,13 @@  discard block
 block discarded – undo
81 81
     public function form($instance) 
82 82
     {
83 83
         //widgetform in backend
84
-        $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
84
+        $instance = wp_parse_args((array) $instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
85 85
 
86 86
         $title = strip_tags($instance['title']);
87
-        $category_limit = (int)$instance['category_limit'];
87
+        $category_limit = (int) $instance['category_limit'];
88 88
         $category_limit = $category_limit > 0 ? $category_limit : 15;
89 89
         $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : '';
90
-        $parent_only = !empty($instance['parent_only']) ? true: false;
90
+        $parent_only = !empty($instance['parent_only']) ? true : false;
91 91
         
92 92
         $post_type_options = geodir_get_posttypes('options');
93 93
         ?>
@@ -97,23 +97,23 @@  discard block
 block discarded – undo
97 97
             </label>
98 98
         </p>
99 99
         <p>
100
-            <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Default post type to use (if not set by page)', 'geodirectory');?>
100
+            <label for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Default post type to use (if not set by page)', 'geodirectory'); ?>
101 101
                 <select class="widefat" id="<?php echo $this->get_field_id('default_post_type'); ?>" name="<?php echo $this->get_field_name('default_post_type'); ?>">
102 102
                 <?php foreach ($post_type_options as $name => $title) { ?>
103
-                    <option value="<?php echo $name;?>" <?php selected($name, $default_post_type);?>><?php echo $title; ?></option>
103
+                    <option value="<?php echo $name; ?>" <?php selected($name, $default_post_type); ?>><?php echo $title; ?></option>
104 104
                 <?php } ?>
105 105
                 </select>
106 106
             </label>
107 107
         </p>
108 108
         <p>
109 109
             <label for="<?php echo $this->get_field_id('category_limit'); ?>"><?php _e('Customize categories count to appear by default:', 'geodirectory'); ?>
110
-                <input class="widefat" id="<?php echo $this->get_field_id('category_limit'); ?>" name="<?php echo $this->get_field_name('category_limit'); ?>" type="text" value="<?php echo (int)esc_attr($category_limit); ?>"/>
110
+                <input class="widefat" id="<?php echo $this->get_field_id('category_limit'); ?>" name="<?php echo $this->get_field_name('category_limit'); ?>" type="text" value="<?php echo (int) esc_attr($category_limit); ?>"/>
111 111
                 <p class="description" style="padding:0"><?php _e('After categories count reaches this limit option More Categories / Less Categoris will be displayed to show/hide categories. Default: 15', 'geodirectory'); ?></p>
112 112
             </label>
113 113
         </p>
114 114
         <p>
115
-            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('parent_only'); ?>" name="<?php echo $this->get_field_name('parent_only'); ?>"<?php checked( $parent_only ); ?> value="1" />
116
-            <label for="<?php echo $this->get_field_id('parent_only'); ?>"><?php _e( 'Show parent categories only', 'geodirectory' ); ?></label>
115
+            <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id('parent_only'); ?>" name="<?php echo $this->get_field_name('parent_only'); ?>"<?php checked($parent_only); ?> value="1" />
116
+            <label for="<?php echo $this->get_field_id('parent_only'); ?>"><?php _e('Show parent categories only', 'geodirectory'); ?></label>
117 117
         </p>
118 118
     <?php
119 119
     }
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	public function form($instance)
216 216
     {
217 217
         //widgetform in backend
218
-        $instance = wp_parse_args((array)$instance,
218
+        $instance = wp_parse_args((array) $instance,
219 219
             array('title' => '',
220 220
                 'post_type' => '',
221 221
                 'category' => array(),
@@ -266,9 +266,9 @@  discard block
 block discarded – undo
266 266
         ?>
267 267
 
268 268
         <p>
269
-            <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
269
+            <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
270 270
                 <small>(%posttype_singular_label% ,
271
-                    %posttype_plural_label% <?php _e('can be used', 'geodirectory');?>)
271
+                    %posttype_plural_label% <?php _e('can be used', 'geodirectory'); ?>)
272 272
                 </small>
273 273
 
274 274
                 <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>"
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
         <p>
281 281
             <label
282
-                for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?>
282
+                for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory'); ?>
283 283
 
284 284
                 <?php $postypes = geodir_get_posttypes();
285 285
 				/**
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
 
312 312
         <p id="post_type_cats">
313 313
             <label
314
-                for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
314
+                for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory'); ?>
315 315
 
316 316
                 <?php
317 317
 
@@ -350,14 +350,14 @@  discard block
 block discarded – undo
350 350
 
351 351
                 <input type="hidden" name="<?php echo $this->get_field_name('category_title'); ?>"
352 352
                        id="<?php echo $this->get_field_id('category_title'); ?>"
353
-                       value="<?php if ($category_title != '') echo $category_title; else echo __('All', 'geodirectory');?>"/>
353
+                       value="<?php if ($category_title != '') echo $category_title; else echo __('All', 'geodirectory'); ?>"/>
354 354
 
355 355
             </label>
356 356
         </p>
357 357
 
358 358
         <p>
359 359
             <label
360
-                for="<?php echo $this->get_field_id('list_sort'); ?>"><?php _e('Sort by:', 'geodirectory');?>
360
+                for="<?php echo $this->get_field_id('list_sort'); ?>"><?php _e('Sort by:', 'geodirectory'); ?>
361 361
 
362 362
                 <select class="widefat" id="<?php echo $this->get_field_id('list_sort'); ?>"
363 363
                         name="<?php echo $this->get_field_name('list_sort'); ?>">
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
         <p>
394 394
 
395 395
             <label
396
-                for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts:', 'geodirectory');?>
396
+                for="<?php echo $this->get_field_id('post_number'); ?>"><?php _e('Number of posts:', 'geodirectory'); ?>
397 397
 
398 398
                 <input class="widefat" id="<?php echo $this->get_field_id('post_number'); ?>"
399 399
                        name="<?php echo $this->get_field_name('post_number'); ?>" type="text"
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 
404 404
         <p>
405 405
             <label for="<?php echo $this->get_field_id('layout'); ?>">
406
-                <?php _e('Layout:', 'geodirectory');?>
406
+                <?php _e('Layout:', 'geodirectory'); ?>
407 407
                 <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
408 408
                         name="<?php echo $this->get_field_name('layout'); ?>">
409 409
                     <option <?php if ($layout == 'gridview_onehalf') {
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
 
433 433
         <p>
434 434
             <label
435
-                for="<?php echo $this->get_field_id('listing_width'); ?>"><?php _e('Listing width:', 'geodirectory');?>
435
+                for="<?php echo $this->get_field_id('listing_width'); ?>"><?php _e('Listing width:', 'geodirectory'); ?>
436 436
 
437 437
                 <input class="widefat" id="<?php echo $this->get_field_id('listing_width'); ?>"
438 438
                        name="<?php echo $this->get_field_name('listing_width'); ?>" type="text"
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
 
443 443
         <p>
444 444
             <label
445
-                for="<?php echo $this->get_field_id('character_count'); ?>"><?php _e('Post Content excerpt character count :', 'geodirectory');?>
445
+                for="<?php echo $this->get_field_id('character_count'); ?>"><?php _e('Post Content excerpt character count :', 'geodirectory'); ?>
446 446
                 <input class="widefat" id="<?php echo $this->get_field_id('character_count'); ?>"
447 447
                        name="<?php echo $this->get_field_name('character_count'); ?>" type="text"
448 448
                        value="<?php echo esc_attr($character_count); ?>"/>
@@ -451,41 +451,41 @@  discard block
 block discarded – undo
451 451
 
452 452
         <p>
453 453
             <label for="<?php echo $this->get_field_id('add_location_filter'); ?>">
454
-                <?php _e('Enable Location Filter:', 'geodirectory');?>
454
+                <?php _e('Enable Location Filter:', 'geodirectory'); ?>
455 455
                 <input type="checkbox" id="<?php echo $this->get_field_id('add_location_filter'); ?>"
456
-                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"';?>
456
+                       name="<?php echo $this->get_field_name('add_location_filter'); ?>" <?php if ($add_location_filter) echo 'checked="checked"'; ?>
457 457
                        value="1"/>
458 458
             </label>
459 459
         </p>
460 460
         <p>
461 461
             <label for="<?php echo $this->get_field_id('show_featured_only'); ?>">
462
-                <?php _e('Show only featured listings:', 'geodirectory');?> <input type="checkbox"
462
+                <?php _e('Show only featured listings:', 'geodirectory'); ?> <input type="checkbox"
463 463
                                                                                             id="<?php echo $this->get_field_id('show_featured_only'); ?>"
464
-                                                                                            name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"';?>
464
+                                                                                            name="<?php echo $this->get_field_name('show_featured_only'); ?>" <?php if ($show_featured_only) echo 'checked="checked"'; ?>
465 465
                                                                                             value="1"/>
466 466
             </label>
467 467
         </p>
468 468
         <p>
469 469
             <label for="<?php echo $this->get_field_id('show_special_only'); ?>">
470
-                <?php _e('Show only listings with special offers:', 'geodirectory');?> <input type="checkbox"
470
+                <?php _e('Show only listings with special offers:', 'geodirectory'); ?> <input type="checkbox"
471 471
                                                                                                        id="<?php echo $this->get_field_id('show_special_only'); ?>"
472
-                                                                                                       name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) echo 'checked="checked"';?>
472
+                                                                                                       name="<?php echo $this->get_field_name('show_special_only'); ?>" <?php if ($show_special_only) echo 'checked="checked"'; ?>
473 473
                                                                                                        value="1"/>
474 474
             </label>
475 475
         </p>
476 476
         <p>
477 477
             <label for="<?php echo $this->get_field_id('with_pics_only'); ?>">
478
-                <?php _e('Show only listings with pics:', 'geodirectory');?> <input type="checkbox"
478
+                <?php _e('Show only listings with pics:', 'geodirectory'); ?> <input type="checkbox"
479 479
                                                                                              id="<?php echo $this->get_field_id('with_pics_only'); ?>"
480
-                                                                                             name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) echo 'checked="checked"';?>
480
+                                                                                             name="<?php echo $this->get_field_name('with_pics_only'); ?>" <?php if ($with_pics_only) echo 'checked="checked"'; ?>
481 481
                                                                                              value="1"/>
482 482
             </label>
483 483
         </p>
484 484
         <p>
485 485
             <label for="<?php echo $this->get_field_id('with_videos_only'); ?>">
486
-                <?php _e('Show only listings with videos:', 'geodirectory');?> <input type="checkbox"
486
+                <?php _e('Show only listings with videos:', 'geodirectory'); ?> <input type="checkbox"
487 487
                                                                                                id="<?php echo $this->get_field_id('with_videos_only'); ?>"
488
-                                                                                               name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) echo 'checked="checked"';?>
488
+                                                                                               name="<?php echo $this->get_field_name('with_videos_only'); ?>" <?php if ($with_videos_only) echo 'checked="checked"'; ?>
489 489
                                                                                                value="1"/>
490 490
             </label>
491 491
         </p>
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
 
532 532
             }
533 533
 
534
-            <?php if(is_active_widget( false, false, $this->id_base, true )){ ?>
534
+            <?php if (is_active_widget(false, false, $this->id_base, true)) { ?>
535 535
             var post_type = jQuery('#<?php echo $this->get_field_id('post_type'); ?>').val();
536 536
 
537 537
             <?php } ?>
Please login to merge, or discard this patch.