@@ -17,10 +17,11 @@ discard block |
||
| 17 | 17 | update_option($post_type.'_dummy_data_type','standard_places'); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if (geodir_dummy_folder_exists()) |
|
| 20 | +if (geodir_dummy_folder_exists()) { |
|
| 21 | 21 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 22 | -else |
|
| 22 | +} else { |
|
| 23 | 23 | $dummy_image_url = 'https://wpgeodirectory.com/dummy'; |
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 26 | 27 | |
@@ -1814,16 +1815,18 @@ discard block |
||
| 1814 | 1815 | |
| 1815 | 1816 | foreach ($post_info as $post_info) { |
| 1816 | 1817 | $default_location = geodir_get_default_location(); |
| 1817 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1818 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1819 | - else |
|
| 1820 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1818 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 1819 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1820 | + } else { |
|
| 1821 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1822 | + } |
|
| 1821 | 1823 | |
| 1822 | 1824 | |
| 1823 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1824 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1825 | - else |
|
| 1826 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1825 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 1826 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1827 | + } else { |
|
| 1828 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1829 | + } |
|
| 1827 | 1830 | |
| 1828 | 1831 | $load_map = get_option('geodir_load_map'); |
| 1829 | 1832 | |
@@ -488,10 +488,11 @@ discard block |
||
| 488 | 488 | } |
| 489 | 489 | } |
| 490 | 490 | |
| 491 | -if (geodir_dummy_folder_exists()) |
|
| 491 | +if (geodir_dummy_folder_exists()) { |
|
| 492 | 492 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 493 | -else |
|
| 493 | +} else { |
|
| 494 | 494 | $dummy_image_url = 'https://wpgeodirectory.com/dummy'; |
| 495 | +} |
|
| 495 | 496 | |
| 496 | 497 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 497 | 498 | |
@@ -948,16 +949,18 @@ discard block |
||
| 948 | 949 | |
| 949 | 950 | foreach ($post_info as $post_info) { |
| 950 | 951 | $default_location = geodir_get_default_location(); |
| 951 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 952 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | - else |
|
| 954 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 952 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 953 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 954 | + } else { |
|
| 955 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 956 | + } |
|
| 955 | 957 | |
| 956 | 958 | |
| 957 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 958 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 959 | - else |
|
| 960 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 959 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 960 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 961 | + } else { |
|
| 962 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 963 | + } |
|
| 961 | 964 | |
| 962 | 965 | $load_map = get_option('geodir_load_map'); |
| 963 | 966 | |
@@ -251,10 +251,11 @@ discard block |
||
| 251 | 251 | update_option($post_type.'_dummy_data_type','property_sale'); |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | -if (geodir_dummy_folder_exists()) |
|
| 254 | +if (geodir_dummy_folder_exists()) { |
|
| 255 | 255 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 256 | -else |
|
| 256 | +} else { |
|
| 257 | 257 | $dummy_image_url = 'http://wpgeodirectory.com/dummy'; |
| 258 | +} |
|
| 258 | 259 | |
| 259 | 260 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 260 | 261 | |
@@ -711,16 +712,18 @@ discard block |
||
| 711 | 712 | |
| 712 | 713 | foreach ($post_info as $post_info) { |
| 713 | 714 | $default_location = geodir_get_default_location(); |
| 714 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 715 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 716 | - else |
|
| 717 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 715 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 716 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 717 | + } else { |
|
| 718 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 719 | + } |
|
| 718 | 720 | |
| 719 | 721 | |
| 720 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 721 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 722 | - else |
|
| 723 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 722 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 723 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 724 | + } else { |
|
| 725 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 726 | + } |
|
| 724 | 727 | |
| 725 | 728 | $load_map = get_option('geodir_load_map'); |
| 726 | 729 | |
@@ -487,10 +487,11 @@ discard block |
||
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | -if (geodir_dummy_folder_exists()) |
|
| 490 | +if (geodir_dummy_folder_exists()) { |
|
| 491 | 491 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 492 | -else |
|
| 492 | +} else { |
|
| 493 | 493 | $dummy_image_url = 'https://wpgeodirectory.com/dummy'; |
| 494 | +} |
|
| 494 | 495 | |
| 495 | 496 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 496 | 497 | |
@@ -947,16 +948,18 @@ discard block |
||
| 947 | 948 | |
| 948 | 949 | foreach ($post_info as $post_info) { |
| 949 | 950 | $default_location = geodir_get_default_location(); |
| 950 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | - else |
|
| 953 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 951 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 952 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | + } else { |
|
| 954 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 955 | + } |
|
| 954 | 956 | |
| 955 | 957 | |
| 956 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | - else |
|
| 959 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 958 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 959 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 960 | + } else { |
|
| 961 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 962 | + } |
|
| 960 | 963 | |
| 961 | 964 | $load_map = get_option('geodir_load_map'); |
| 962 | 965 | |
@@ -42,10 +42,11 @@ discard block |
||
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | |
| 45 | - if (geodir_dummy_folder_exists()) |
|
| 46 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | - else |
|
| 48 | - $dummy_image_url = 'http://wpgeodirectory.com/dummy/cat_icon'; |
|
| 45 | + if (geodir_dummy_folder_exists()) { |
|
| 46 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | + } else { |
|
| 48 | + $dummy_image_url = 'http://wpgeodirectory.com/dummy/cat_icon'; |
|
| 49 | + } |
|
| 49 | 50 | |
| 50 | 51 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
| 51 | 52 | |
@@ -86,10 +87,11 @@ discard block |
||
| 86 | 87 | if (!term_exists($catname, $post_type.'category')) { |
| 87 | 88 | $last_catid = wp_insert_term($catname, $post_type.'category'); |
| 88 | 89 | |
| 89 | - if (geodir_dummy_folder_exists()) |
|
| 90 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 91 | - else |
|
| 92 | - $dummy_image_url = 'http://wpgeodirectory.com/dummy/cat_icon'; |
|
| 90 | + if (geodir_dummy_folder_exists()) { |
|
| 91 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 92 | + } else { |
|
| 93 | + $dummy_image_url = 'http://wpgeodirectory.com/dummy/cat_icon'; |
|
| 94 | + } |
|
| 93 | 95 | |
| 94 | 96 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
| 95 | 97 | |
@@ -220,7 +222,7 @@ discard block |
||
| 220 | 222 | * @package GeoDirectory |
| 221 | 223 | */ |
| 222 | 224 | include_once( 'dummy-data/standard_places.php' ); |
| 223 | - }elseif($key=='property_sale'){ |
|
| 225 | + } elseif($key=='property_sale'){ |
|
| 224 | 226 | /** |
| 225 | 227 | * Contains dummy property for sale post content. |
| 226 | 228 | * |
@@ -228,7 +230,7 @@ discard block |
||
| 228 | 230 | * @package GeoDirectory |
| 229 | 231 | */ |
| 230 | 232 | include_once( 'dummy-data/property_sale.php' ); |
| 231 | - }elseif($key=='property_rent'){ |
|
| 233 | + } elseif($key=='property_rent'){ |
|
| 232 | 234 | /** |
| 233 | 235 | * Contains dummy property for sale post content. |
| 234 | 236 | * |
@@ -337,7 +339,7 @@ discard block |
||
| 337 | 339 | |
| 338 | 340 | if($post_counts > 0){ |
| 339 | 341 | echo '<td><input type="button" value="'.__('Remove data','geodirectory').'" class="button-primary geodir_dummy_button gd-remove-data" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
| 340 | - }else{ |
|
| 342 | + } else{ |
|
| 341 | 343 | echo '<td><input type="button" value="'.__('Insert data','geodirectory').'" class="button-primary geodir_dummy_button" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
| 342 | 344 | } |
| 343 | 345 | |